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\r\n \r\n \r\n 1\r\n \r\n \r\n", - "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", - "typeName": "CancelOrder" - } - ] - }, - "responses": [ - { - "statusCode": 200, - "description": "IFazioService_CancelOrder_OutputMessage", - "representations": [ - { - "contentType": "text/xml", - "sample": "\r\n\r\n \r\n \r\n 1\r\n \r\n \r\n", - "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", - "typeName": "CancelOrderResponse" - } - ], - "headers": [] - } - ] + "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\r\n \r\n \r\n 1\r\n \r\n \r\n", + "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", + "typeName": "CancelOrder" + } + ] + }, + "responses": [ + { + "statusCode": 200, + "description": "IFazioService_CancelOrder_OutputMessage", + "representations": [ + { + "contentType": "text/xml", + "sample": "\r\n\r\n \r\n \r\n 1\r\n \r\n \r\n", + "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", + "typeName": "CancelOrderResponse" } + ], + "headers": [] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationPetStore.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationPetStore.json index 8cb2bae00f97..2886744fd34b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationPetStore.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationPetStore.json @@ -1,91 +1,91 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "swagger-petstore", - "operationId": "loginUser" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/swagger-petstore/operations/loginUser", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "loginUser", - "properties": { - "displayName": "Logs user into the system", - "method": "GET", - "urlTemplate": "/user/login?username={username}&password={password}", - "templateParameters": [ - { - "name": "username", - "description": "The user name for login", - "type": "string", - "required": true, - "values": [] - }, - { - "name": "password", - "description": "The password for login in clear text", - "type": "string", - "required": true, - "values": [] - } - ], - "description": "", - "request": { - "queryParameters": [], - "headers": [], - "representations": [] - }, - "responses": [ - { - "statusCode": 200, - "description": "successful operation", - "representations": [ - { - "contentType": "application/xml", - "schemaId": "5ba91a35f373b513a0bf31c6", - "typeName": "UserLoginGet200ApplicationXmlResponse" - }, - { - "contentType": "application/json", - "schemaId": "5ba91a35f373b513a0bf31c6", - "typeName": "UserLoginGet200ApplicationJsonResponse" - } - ], - "headers": [ - { - "name": "X-Rate-Limit", - "description": "calls per hour allowed by the user", - "type": "integer", - "values": [] - }, - { - "name": "X-Expires-After", - "description": "date in UTC when token expires", - "type": "string", - "values": [] - } - ] - }, - { - "statusCode": 400, - "description": "Invalid username/password supplied", - "representations": [ - { - "contentType": "application/xml" - }, - { - "contentType": "application/json" - } - ], - "headers": [] - } - ] + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "swagger-petstore", + "operationId": "loginUser" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/swagger-petstore/operations/loginUser", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "loginUser", + "properties": { + "displayName": "Logs user into the system", + "method": "GET", + "urlTemplate": "/user/login?username={username}&password={password}", + "templateParameters": [ + { + "name": "username", + "description": "The user name for login", + "type": "string", + "required": true, + "values": [] + }, + { + "name": "password", + "description": "The password for login in clear text", + "type": "string", + "required": true, + "values": [] + } + ], + "description": "", + "request": { + "queryParameters": [], + "headers": [], + "representations": [] + }, + "responses": [ + { + "statusCode": 200, + "description": "successful operation", + "representations": [ + { + "contentType": "application/xml", + "schemaId": "5ba91a35f373b513a0bf31c6", + "typeName": "UserLoginGet200ApplicationXmlResponse" + }, + { + "contentType": "application/json", + "schemaId": "5ba91a35f373b513a0bf31c6", + "typeName": "UserLoginGet200ApplicationJsonResponse" + } + ], + "headers": [ + { + "name": "X-Rate-Limit", + "description": "calls per hour allowed by the user", + "type": "integer", + "values": [] + }, + { + "name": "X-Expires-After", + "description": "date in UTC when token expires", + "type": "string", + "values": [] + } + ] + }, + { + "statusCode": 400, + "description": "Invalid username/password supplied", + "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/ApiManagementGetApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationPolicy.json index eeff1e933c0e..11ec3626ddd6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationPolicy.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "5600b539c53f5b0062040001", - "operationId": "5600b53ac53f5b0062080006", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b539c53f5b0062040001/operations/5600b53ac53f5b0062080006/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/operations/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n This is a sample\r\n \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "5600b539c53f5b0062040001", + "operationId": "5600b53ac53f5b0062080006", + "policyId": "policy" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b539c53f5b0062040001/operations/5600b53ac53f5b0062080006/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/operations/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n This is a sample\r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationTag.json index 95a96cb7cb58..bd1e6da242f2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperationTag.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/ApiManagementGetApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiPolicy.json index f02d59d54f76..7040b4df3468 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiPolicy.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "5600b59475ff190048040001", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "5600b59475ff190048040001", + "policyId": "policy" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiRelease.json index b89feab83967..b08408868e5a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiRelease.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "5a7cb545298324c53224a799" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", - "type": "Microsoft.ApiManagement/service/apis/releases", - "name": "5a7cb545298324c53224a799", - "properties": { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", - "createdDateTime": "2018-02-08T20:38:29.173Z", - "updatedDateTime": "2018-02-08T20:38:29.173Z", - "notes": "yahoo" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "5a7cb545298324c53224a799" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", + "type": "Microsoft.ApiManagement/service/apis/releases", + "name": "5a7cb545298324c53224a799", + "properties": { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", + "createdDateTime": "2018-02-08T20:38:29.173Z", + "updatedDateTime": "2018-02-08T20:38:29.173Z", + "notes": "yahoo" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiRevision.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiRevision.json index 5a1ada142d29..1b0f91c20f61 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiRevision.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiRevision.json @@ -1,32 +1,32 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "echo-api;rev=3" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api;rev=3", - "type": "Microsoft.ApiManagement/service/apis", - "name": "echo-api;rev=3", - "properties": { - "displayName": "Service", - "apiRevision": "3", - "serviceUrl": "https://api.plexonline.com/DataSource/Service.asmx", - "path": "schulte", - "protocols": [ - "https" - ], - "subscriptionKeyParameterNames": { - "header": "Ocp-Apim-Subscription-Key", - "query": "subscription-key" - }, - "apiRevisionDescription": "fixed bug in contract" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "echo-api;rev=3" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api;rev=3", + "type": "Microsoft.ApiManagement/service/apis", + "name": "echo-api;rev=3", + "properties": { + "displayName": "Service", + "apiRevision": "3", + "serviceUrl": "https://api.plexonline.com/DataSource/Service.asmx", + "path": "schulte", + "protocols": [ + "https" + ], + "subscriptionKeyParameterNames": { + "header": "Ocp-Apim-Subscription-Key", + "query": "subscription-key" + }, + "apiRevisionDescription": "fixed bug in contract" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiSchema.json index a466ce876304..31e4393d40fe 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiSchema.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "59d6bb8f1f7fab13dc67ec9b", - "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d6bb8f1f7fab13dc67ec9b/schemas/ec12520d-9d48-4e7b-8f39-698ca2ac63f1", - "type": "Microsoft.ApiManagement/service/apis/schemas", - "name": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1", - "properties": { - "contentType": "application/vnd.ms-azure-apim.xsd+xml", - "document": { - "value": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "59d6bb8f1f7fab13dc67ec9b", + "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d6bb8f1f7fab13dc67ec9b/schemas/ec12520d-9d48-4e7b-8f39-698ca2ac63f1", + "type": "Microsoft.ApiManagement/service/apis/schemas", + "name": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1", + "properties": { + "contentType": "application/vnd.ms-azure-apim.xsd+xml", + "document": { + "value": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiTag.json index dadcf818d4da..6765c4f28aa4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiTag.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiTagDescription.json index 38a5b4d5b2c4..e89575966ebd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiTagDescription.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiVersionSet.json index 87fef449eb0c..8a358cb2363e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiVersionSet.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "versionSetId": "vs1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs1", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs1", - "properties": { - "displayName" : "Version Set 1", - "versioningScheme" : "Segment", - "description" : "Version configuration" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "versionSetId": "vs1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs1", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs1", + "properties": { + "displayName": "Version Set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetAuthorizationServer.json index 9a7aeb6f031c..743302f5d3af 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetAuthorizationServer.json @@ -1,44 +1,44 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "authsid": "newauthServer2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer2", - "properties": { - "displayName": "test3", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "clientAuthenticationMethod": [ - "Basic" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "authsid": "newauthServer2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer2", + "properties": { + "displayName": "test3", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "clientAuthenticationMethod": [ + "Basic" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetBackend.json index 4debcdfdf483..bb9984affded 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetBackend.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/ApiManagementGetCache.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetCache.json index 76e4309228aa..4609fd125278 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetCache.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetCache.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/ApiManagementGetCaches.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetCaches.json index 185e287ba22d..f750b04a7356 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetCaches.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetCaches.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetCertificate.json index b43845c82186..d6eec2e9e651 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetCertificate.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "certificateId": "templateCert1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/templateCert1", - "type": "Microsoft.ApiManagement/service/certificates", - "name": "templateCert1", - "properties": { - "subject": "CN=mutual-authcert", - "thumbprint": "EBA**********************8594A6", - "expirationDate": "2017-04-23T17:03:41Z" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "certificateId": "templateCert1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/templateCert1", + "type": "Microsoft.ApiManagement/service/certificates", + "name": "templateCert1", + "properties": { + "subject": "CN=mutual-authcert", + "thumbprint": "EBA**********************8594A6", + "expirationDate": "2017-04-23T17:03:41Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetDiagnostic.json index 5ee5a7f02197..a18946b9455e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetDiagnostic.json @@ -1,11 +1,11 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "diagnosticId": "applicationinsights" - }, + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "diagnosticId": "applicationinsights" + }, "responses": { "200": { "body": { @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetEmailTemplate.json index 2aae0287e19a..b67ba05b8410 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetEmailTemplate.json @@ -1,51 +1,51 @@ { - "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\n \r\n

Dear $DevFirstName $DevLastName,

\r\n

Thank 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\n

Best,

\r\n

The $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\n \r\n

Dear $DevFirstName $DevLastName,

\r\n

Thank 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\n

Best,

\r\n

The $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\n\r\n \r\n \r\n \r\n \r\n \r\n" - } - } + "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\n\r\n \r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProduct.json index b85f7c19e2f3..0c92e65a991e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProduct.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "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": "2018-06-01-preview", + "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/preview/2018-06-01-preview/examples/ApiManagementGetProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProductPolicy.json index 10193e4f77ce..112f496ff224 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProductPolicy.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "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": { - "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "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": { + "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProductTag.json index f2d97070847f..c1066bcc9d01 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProductTag.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProperty.json index 1c35fdcbb98f..e944b83d8813 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetProperty.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "propId": "testarmTemplateproperties2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", - "type": "Microsoft.ApiManagement/service/properties", - "name": "testarmTemplateproperties2", - "properties": { - "displayName": "propName", - "value": "propValue", - "tags": [ - "foo", - "bar" - ], - "secret": false - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "propId": "testarmTemplateproperties2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", + "type": "Microsoft.ApiManagement/service/properties", + "name": "testarmTemplateproperties2", + "properties": { + "displayName": "propName", + "value": "propValue", + "tags": [ + "foo", + "bar" + ], + "secret": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetQuotaCounterKeys.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetQuotaCounterKeys.json index 3376d53a572c..069b617f15fb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetQuotaCounterKeys.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetQuotaCounterKeys.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "quotaCounterKey": "ba" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "counterKey": "ba", - "periodKey": "0_P3Y6M4DT12H30M5S", - "periodStartTime": "2014-08-04T04:24:35Z", - "periodEndTime": "2018-02-08T16:54:40Z", - "value": { - "callsCount": 5, - "kbTransferred": 2.5830078125 - } - } - ], - "count": 1, - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "quotaCounterKey": "ba" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "counterKey": "ba", + "periodKey": "0_P3Y6M4DT12H30M5S", + "periodStartTime": "2014-08-04T04:24:35Z", + "periodEndTime": "2018-02-08T16:54:40Z", + "value": { + "callsCount": 5, + "kbTransferred": 2.5830078125 } - } + } + ], + "count": 1, + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json index acb3b99c9db8..096203448fb0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json @@ -1,24 +1,24 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "quotaCounterKey": "ba", - "quotaPeriodKey": "0_P3Y6M4DT12H30M5S" - }, - "responses": { - "200": { - "body": { - "counterKey": "ba", - "periodKey": "0_P3Y6M4DT12H30M5S", - "periodStartTime": "2014-08-04T04:24:35Z", - "periodEndTime": "2018-02-08T16:54:40Z", - "value": { - "callsCount": 0, - "kbTransferred": 2.5625 - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "quotaCounterKey": "ba", + "quotaPeriodKey": "0_P3Y6M4DT12H30M5S" + }, + "responses": { + "200": { + "body": { + "counterKey": "ba", + "periodKey": "0_P3Y6M4DT12H30M5S", + "periodStartTime": "2014-08-04T04:24:35Z", + "periodEndTime": "2018-02-08T16:54:40Z", + "value": { + "callsCount": 0, + "kbTransferred": 2.5625 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByApi.json index e5591cd4964e..710c12f39040 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByApi.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByGeo.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByGeo.json index 86a505ef99c0..cc9d2f9aa814 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByGeo.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByGeo.json @@ -1,38 +1,38 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByOperation.json index ca8c415b9afd..7fe94d269347 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByOperation.json @@ -1,76 +1,76 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByProduct.json index 6a92c3a4f031..8db3c55f75f4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByProduct.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByRequest.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByRequest.json index ddc41cb6ddd3..92dbef06c496 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByRequest.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByRequest.json @@ -1,56 +1,56 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsBySubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsBySubscription.json index d11542d7cbe4..4154fdc36c94 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsBySubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsBySubscription.json @@ -1,79 +1,79 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByTime.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByTime.json index 11a12bb4c352..d0e3a10f06e5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByTime.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByTime.json @@ -1,56 +1,56 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByUser.json index c5fa0a494182..e589de19b577 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetReportsByUser.json @@ -1,73 +1,73 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetSubscription.json index 8c65ebd48a67..9d5b62a4adfa 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetSubscription.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "sid": "5931a769d8d14f0ad8ce13b8" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5931a769d8d14f0ad8ce13b8", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", - "displayName": "Unlimited", - "state": "submitted", - "createdDate": "2017-06-02T17:59:06.223Z", - "primaryKey": "6de0a3b2da204e459148d2f6785873f0", - "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "sid": "5931a769d8d14f0ad8ce13b8" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5931a769d8d14f0ad8ce13b8", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", + "displayName": "Unlimited", + "state": "submitted", + "createdDate": "2017-06-02T17:59:06.223Z", + "primaryKey": "6de0a3b2da204e459148d2f6785873f0", + "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTag.json index 135027691a2f..438aea25b0dc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTag.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "tagId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/tags", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "tag1" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "tagId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/tags", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "tag1" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTagsForOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTagsForOperation.json index 51139d8b3923..ed19bcd7fe50 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTagsForOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTagsForOperation.json @@ -7,21 +7,21 @@ "apiId": "57d2ef278aa04f0888cba3f3", "operationId": "57d2ef278aa04f0888cba3f6" }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTenantAccess.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTenantAccess.json index 2444f0d15ce3..31ad65009cd4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTenantAccess.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetTenantAccess.json @@ -1,19 +1,19 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "accessName": "access" - }, - "responses": { - "200": { - "body": { - "id": "5600b59375ff190048030003", - "primaryKey": "qr5nbjNoZkgtLojXgU+OA/ntYMgko3XPSVyt+ObwR1sqp2ZkM9tGhwxkeEz7bfAuPS5ss61b2S3ZrZmqa9v3Mw==", - "secondaryKey": "2dCJv1CasJl286SZiKxyBFDiIYCUdbwM1YrFNDcFMXCjCKbFzomrGkv+exAbnV5E3DEk91VP4jbeJ2eV/qtejA==", - "enabled": true - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "accessName": "access" + }, + "responses": { + "200": { + "body": { + "id": "5600b59375ff190048030003", + "primaryKey": "qr5nbjNoZkgtLojXgU+OA/ntYMgko3XPSVyt+ObwR1sqp2ZkM9tGhwxkeEz7bfAuPS5ss61b2S3ZrZmqa9v3Mw==", + "secondaryKey": "2dCJv1CasJl286SZiKxyBFDiIYCUdbwM1YrFNDcFMXCjCKbFzomrGkv+exAbnV5E3DEk91VP4jbeJ2eV/qtejA==", + "enabled": true + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetUser.json index 2e528cb129fa..16441b094a29 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetUser.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "userId": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "type": "Microsoft.ApiManagement/service/users", - "name": "5931a75ae4bbd512a88c680b", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foobar@outlook.com", - "state": "active", - "registrationDate": "2017-06-02T17:58:50.357Z", - "identities": [ - { - "provider": "Microsoft", - "id": "*************" - } - ] - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "userId": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "type": "Microsoft.ApiManagement/service/users", + "name": "5931a75ae4bbd512a88c680b", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foobar@outlook.com", + "state": "active", + "registrationDate": "2017-06-02T17:58:50.357Z", + "identities": [ + { + "provider": "Microsoft", + "id": "*************" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetUserIdentity.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetUserIdentity.json index 4d5903dd3554..23ea437e02c7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetUserIdentity.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetUserIdentity.json @@ -1,15 +1,15 @@ { - "parameters": { - "resourceGroupName": "rg1", - "serviceName": "apimService1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "1" - } - } + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "1" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApi.json index e7e5c74704cd..fa2e6a03006d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApi.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiDiagnostic.json index fc7307762cd2..ac542d2a2d1e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiDiagnostic.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "diagnosticId": "applicationinsights", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "diagnosticId": "applicationinsights", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssue.json index f490f90199a8..11dc93b0505d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssue.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssueAttachment.json index d025bec53d49..fb1ae6e17939 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssueAttachment.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "attachmentId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "attachmentId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssueComment.json index 14efc224f0a6..8fe7ea50c2af 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiIssueComment.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "commentId": "599e29ab193c3c0bd0b3e2fb" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "commentId": "599e29ab193c3c0bd0b3e2fb" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperation.json index dff9ac493180..8488326ddc00 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperation.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "operationId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperationPolicy.json index aa5fdacafce3..2b7c7b9dfa40 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperationPolicy.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "5600b539c53f5b0062040001", - "operationId": "5600b53ac53f5b0062080006", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "5600b539c53f5b0062040001", + "operationId": "5600b53ac53f5b0062080006", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperationTag.json index cb550dfc6bf8..1b00305e2f1c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiOperationTag.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiPolicy.json index d1123d0531bd..642fb54a6c9b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiPolicy.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiRelease.json index 9a183cfbe1dd..850b10679cdd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiRelease.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "5a7cb545298324c53224a799" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "5a7cb545298324c53224a799" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiSchema.json index 6b52bebfc4a7..d3481e64a7b0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiSchema.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiTag.json index c9a854957fa9..6b7fd87f8769 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiTag.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiTagDescription.json index c9a854957fa9..6b7fd87f8769 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiTagDescription.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiVersionSet.json index 3993aa51de92..e17e145e709b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadApiVersionSet.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "versionSetId": "vs1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "versionSetId": "vs1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadAuthorizationServer.json index a1220ef6f03c..4fa282152801 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadAuthorizationServer.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "authsid": "newauthServer2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "authsid": "newauthServer2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadBackend.json index 18e5b871f39b..741e481a7753 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadBackend.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "backendId": "sfbackend" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "backendId": "sfbackend" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadCache.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadCache.json index 1175e0939109..6d50a0809bac 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadCache.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadCache.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadCertificate.json index 7d9162b43f5a..e618effc0a13 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadCertificate.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "certificateId": "templateCert1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "certificateId": "templateCert1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadDelegationSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadDelegationSettings.json index eaa776723f51..0f01d4bc380a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadDelegationSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadDelegationSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadDiagnostic.json index f16360a82939..e0181890d316 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadDiagnostic.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "diagnosticId": "applicationinsights" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "diagnosticId": "applicationinsights" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadEmailTemplate.json index 79370fa1a798..9c448d438b80 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadEmailTemplate.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "templateName": "newIssueNotificationMessage" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadGroup.json index cc59973303de..df454d98285f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadGroup.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadGroupUser.json index c126b8bb1669..32eae02b782a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadGroupUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadGroupUser.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9", - "userId": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9", + "userId": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadIdentityProvider.json index 4a27c1afefc5..88ec10e9b8ee 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadIdentityProvider.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "identityProviderName": "aadB2C" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "identityProviderName": "aadB2C" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadLogger.json index 0573df29dc58..4c46819f8d49 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadLogger.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "loggerId": "templateLogger" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "loggerId": "templateLogger" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadNotificationRecipientEmail.json index 43d28adf202b..0c53a305001c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadNotificationRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadNotificationRecipientEmail.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "email": "contoso@live.com" - }, - "responses": { - "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": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadNotificationRecipientUser.json index 09ea0101fbe2..5f42ec6d6617 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadNotificationRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadNotificationRecipientUser.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "userId": "576823d0a40f7e74ec07d642" - }, - "responses": { - "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": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadOpenIdConnectProvider.json index 469eca3b01e0..711caccc304d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadOpenIdConnectProvider.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadOperationTag.json index cb550dfc6bf8..1b00305e2f1c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadOperationTag.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadPolicy.json index 369708c82c32..a02bf2e1a8b0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadPolicy.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProduct.json index aa66246c488f..6e013ea137f9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProduct.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "productId": "unlimited" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "productId": "unlimited" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductApi.json index f40035f9e570..8a32992eeb8c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductApi.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "productId": "5931a75ae4bbd512a88c680b", - "apiId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "productId": "5931a75ae4bbd512a88c680b", + "apiId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductGroup.json index e1d1e6eaa590..53c80fac827a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductGroup.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "productId": "5931a75ae4bbd512a88c680b", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "productId": "5931a75ae4bbd512a88c680b", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductPolicy.json index e06f180be4e6..0d9ee512bc29 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductPolicy.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "productId": "unlimited", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "productId": "unlimited", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductTag.json index 430fb575754d..bd45a9e019b2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProductTag.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProperty.json index 4b3491c9af19..67d1580e2aa1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadProperty.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "propId": "testarmTemplateproperties2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "propId": "testarmTemplateproperties2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSignInSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSignInSettings.json index eaa776723f51..0f01d4bc380a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSignInSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSignInSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSignUpSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSignUpSettings.json index eaa776723f51..0f01d4bc380a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSignUpSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSignUpSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSubscription.json index 7bc9b4ba85c9..9e3992bb106e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadSubscription.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "sid": "5931a769d8d14f0ad8ce13b8" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "sid": "5931a769d8d14f0ad8ce13b8" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadTag.json index 5c62213ccedf..5d57eed551ea 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadTag.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "tagId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "headers": { - "Etag": "AAAAAAAACCI=" - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "tagId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "headers": { + "Etag": "AAAAAAAACCI=" } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadTenantAccess.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadTenantAccess.json index 0c55dedccf3b..fcbd3aa4c366 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadTenantAccess.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadTenantAccess.json @@ -7,6 +7,6 @@ "accessName": "access" }, "responses": { - "200": { } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadUser.json index 8e58ce61828a..d866888caa12 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementHeadUser.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "userId": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "userId": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiDiagnostics.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiDiagnostics.json index 48e3108e13fd..9619312bd613 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiDiagnostics.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiDiagnostics.json @@ -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/ApiManagementListApiIssueAttachments.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssueAttachments.json index 0abe2c939866..54c219f3ff52 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssueAttachments.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssueAttachments.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssueComments.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssueComments.json index 0cc92c33e334..5e5c738ec0c3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssueComments.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssueComments.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssues.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssues.json index eeb6370b6fb7..7a343d194a7b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssues.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiIssues.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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", - "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", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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", + "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/ApiManagementListApiOperationPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperationPolicies.json index 6799b3c08bed..49f55a6b9759 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperationPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperationPolicies.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/ApiManagementListApiOperationTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperationTags.json index 51139d8b3923..ed19bcd7fe50 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperationTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperationTags.json @@ -7,21 +7,21 @@ "apiId": "57d2ef278aa04f0888cba3f3", "operationId": "57d2ef278aa04f0888cba3f6" }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperations.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperations.json index 8f49113dc33c..c3de8eda0f9e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperations.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperations.json @@ -1,69 +1,69 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "operationId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cda", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cda", - "properties": { - "displayName": "GetMostRecentOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetMostRecentOrder" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd9", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cd9", - "properties": { - "displayName": "GetOpenOrders", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOpenOrders" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cdb", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cdb", - "properties": { - "displayName": "GetOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOrder" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd8", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cd8", - "properties": { - "displayName": "submitOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/submitOrder" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cda", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cda", + "properties": { + "displayName": "GetMostRecentOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetMostRecentOrder" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd9", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cd9", + "properties": { + "displayName": "GetOpenOrders", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOpenOrders" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cdb", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cdb", + "properties": { + "displayName": "GetOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOrder" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd8", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cd8", + "properties": { + "displayName": "submitOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/submitOrder" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperationsByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperationsByTags.json index fb79ab0fe4e4..07e9a9cd8ecc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperationsByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiOperationsByTags.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/ApiManagementListApiPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiPolicies.json index 8670cead052c..ff8922f480ab 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiPolicies.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/ApiManagementListApiProducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiProducts.json index 51598ddf28a3..f94b3adb9480 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiProducts.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiProducts.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiReleases.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiReleases.json index 94cd5c9dbfc0..8a02fc69ab2a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiReleases.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiReleases.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "a1" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", - "type": "Microsoft.ApiManagement/service/apis/releases", - "name": "5a7cb545298324c53224a799", - "properties": { - "createdDateTime": "2018-02-08T20:38:29.173Z", - "updatedDateTime": "2018-02-08T20:38:29.173Z", - "notes": "yahoo" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "a1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", + "type": "Microsoft.ApiManagement/service/apis/releases", + "name": "5a7cb545298324c53224a799", + "properties": { + "createdDateTime": "2018-02-08T20:38:29.173Z", + "updatedDateTime": "2018-02-08T20:38:29.173Z", + "notes": "yahoo" } - } + } + ], + "nextLink": "" + } } + } } diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiRevisions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiRevisions.json index 67b9c59478d5..3cd805cba1e6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiRevisions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiRevisions.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1;rev=1", - "apiRevision": "1", - "createdDateTime": "2018-02-01T22:21:20.467Z", - "updatedDateTime": "2018-02-01T22:21:20.467Z", - "isOnline": true, - "isCurrent": true - } - ], - "nextLink": "" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1;rev=1", + "apiRevision": "1", + "createdDateTime": "2018-02-01T22:21:20.467Z", + "updatedDateTime": "2018-02-01T22:21:20.467Z", + "isOnline": true, + "isCurrent": true + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiSchemas.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiSchemas.json index a42f674e7c58..2c4337937610 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiSchemas.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiSchemas.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "59d5b28d1f7fab116c282650" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d5b28d1f7fab116c282650/schemas/59d5b28e1f7fab116402044e", - "type": "Microsoft.ApiManagement/service/apis/schemas", - "name": "59d5b28e1f7fab116402044e", - "properties": { - "contentType": "application/vnd.ms-azure-apim.swagger.definitions+json" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d5b28d1f7fab116c282650/schemas/59d5b28e1f7fab116402044e", + "type": "Microsoft.ApiManagement/service/apis/schemas", + "name": "59d5b28e1f7fab116402044e", + "properties": { + "contentType": "application/vnd.ms-azure-apim.swagger.definitions+json" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiTagDescriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiTagDescriptions.json index 6da2c01f227e..2d99e891da67 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiTagDescriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiTagDescriptions.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1", - "externalDocsDescription": "some additional info", - "externalDocsUrl": "http://some_url.com" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1", + "externalDocsDescription": "some additional info", + "externalDocsUrl": "http://some_url.com" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiTags.json index c0a8e977f48e..1f8a3d4122ca 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiTags.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiVersionSets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiVersionSets.json index 475cc3788aaa..b4ec99c190b6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiVersionSets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApiVersionSets.json @@ -1,37 +1,37 @@ { - "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/api-version-sets/vs1", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs1", - "properties": { - "displayName": "api set 1", - "versioningScheme": "Segment", - "description": "Version configuration" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs2", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs2", - "properties": { - "displayName": "api set 2", - "versioningScheme": "Query", - "description": "Version configuration 2" - } - } - ], - "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/api-version-sets/vs1", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs1", + "properties": { + "displayName": "api set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs2", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs2", + "properties": { + "displayName": "api set 2", + "versioningScheme": "Query", + "description": "Version configuration 2" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApis.json index c3eb8039cc7a..7dd4c39428ec 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApis.json @@ -1,81 +1,81 @@ { - "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/apis/a1", - "type": "Microsoft.ApiManagement/service/apis", - "name": "a1", - "properties": { - "displayName": "api1", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "api1", - "protocols": [ - "https" - ], - "isCurrent": true, - "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a73933b8f27f7cc82a2d533", - "type": "Microsoft.ApiManagement/service/apis", - "name": "5a73933b8f27f7cc82a2d533", - "properties": { - "displayName": "api1", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "api1", - "protocols": [ - "https" - ], - "isCurrent": true, - "apiVersion": "v1", - "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", - "type": "Microsoft.ApiManagement/service/apis", - "name": "echo-api", - "properties": { - "displayName": "Echo API", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "echo", - "protocols": [ - "https" - ], - "isCurrent": true - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a7390baa5816a110435aee0", - "type": "Microsoft.ApiManagement/service/apis", - "name": "5a7390baa5816a110435aee0", - "properties": { - "displayName": "Swagger Petstore Extensive", - "apiRevision": "1", - "description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", - "serviceUrl": "http://petstore.swagger.wordnik.com/api", - "path": "vvv", - "protocols": [ - "https" - ], - "isCurrent": true - } - } - ], - "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/apis/a1", + "type": "Microsoft.ApiManagement/service/apis", + "name": "a1", + "properties": { + "displayName": "api1", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "api1", + "protocols": [ + "https" + ], + "isCurrent": true, + "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a73933b8f27f7cc82a2d533", + "type": "Microsoft.ApiManagement/service/apis", + "name": "5a73933b8f27f7cc82a2d533", + "properties": { + "displayName": "api1", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "api1", + "protocols": [ + "https" + ], + "isCurrent": true, + "apiVersion": "v1", + "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", + "type": "Microsoft.ApiManagement/service/apis", + "name": "echo-api", + "properties": { + "displayName": "Echo API", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "echo", + "protocols": [ + "https" + ], + "isCurrent": true + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a7390baa5816a110435aee0", + "type": "Microsoft.ApiManagement/service/apis", + "name": "5a7390baa5816a110435aee0", + "properties": { + "displayName": "Swagger Petstore Extensive", + "apiRevision": "1", + "description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", + "serviceUrl": "http://petstore.swagger.wordnik.com/api", + "path": "vvv", + "protocols": [ + "https" + ], + "isCurrent": true + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApisByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApisByTags.json index c1aede0791dc..66cd0d46f316 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApisByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListApisByTags.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListAuthorizationServers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListAuthorizationServers.json index dfed4755514b..a75e311407a0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListAuthorizationServers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListAuthorizationServers.json @@ -1,76 +1,76 @@ { - "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/authorizationServers/newauthServer", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer", - "properties": { - "displayName": "test2", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer2", - "properties": { - "displayName": "test3", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "clientAuthenticationMethod": [ - "Basic" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - } - ], - "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/authorizationServers/newauthServer", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer", + "properties": { + "displayName": "test2", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer2", + "properties": { + "displayName": "test3", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "clientAuthenticationMethod": [ + "Basic" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListBackends.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListBackends.json index f94e2f216613..41fa4e95900c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListBackends.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListBackends.json @@ -1,80 +1,80 @@ { - "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/backends/proxybackend", - "type": "Microsoft.ApiManagement/service/backends", - "name": "proxybackend", - "properties": { - "description": "description5308", - "url": "https://backendname2644/", - "protocol": "http", - "credentials": { - "query": { - "sv": [ - "xx", - "bb", - "cc" - ] - }, - "header": { - "x-my-1": [ - "val1", - "val2" - ] - }, - "authorization": { - "scheme": "Basic", - "parameter": "opensesma" - } - }, - "proxy": { - "url": "http://192.168.1.1:8080", - "username": "Contoso\\admin", - "password": "opensesame" - }, - "tls": { - "validateCertificateChain": false, - "validateCertificateName": false - } - } - }, + "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/backends/proxybackend", + "type": "Microsoft.ApiManagement/service/backends", + "name": "proxybackend", + "properties": { + "description": "description5308", + "url": "https://backendname2644/", + "protocol": "http", + "credentials": { + "query": { + "sv": [ + "xx", + "bb", + "cc" + ] + }, + "header": { + "x-my-1": [ + "val1", + "val2" + ] + }, + "authorization": { + "scheme": "Basic", + "parameter": "opensesma" + } + }, + "proxy": { + "url": "http://192.168.1.1:8080", + "username": "Contoso\\admin", + "password": "opensesame" + }, + "tls": { + "validateCertificateChain": false, + "validateCertificateName": false + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", + "type": "Microsoft.ApiManagement/service/backends", + "name": "sfbackend", + "properties": { + "description": "Service Fabric Test App 1", + "url": "fabric:/mytestapp/mytestservice", + "protocol": "http", + "properties": { + "serviceFabricCluster": { + "managementEndpoints": [ + "https://somecluster.com" + ], + "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", + "serverX509Names": [ { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", - "type": "Microsoft.ApiManagement/service/backends", - "name": "sfbackend", - "properties": { - "description": "Service Fabric Test App 1", - "url": "fabric:/mytestapp/mytestservice", - "protocol": "http", - "properties": { - "serviceFabricCluster": { - "managementEndpoints": [ - "https://somecluster.com" - ], - "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", - "serverX509Names": [ - { - "name": "ServerCommonName1", - "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" - } - ], - "maxPartitionResolutionRetries": 5 - } - } - } + "name": "ServerCommonName1", + "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" } - ], - "nextLink": "" + ], + "maxPartitionResolutionRetries": 5 + } + } } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListCaches.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListCaches.json index 82069ec27432..89e15cec505f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListCaches.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListCaches.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/ApiManagementListCertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListCertificates.json index c49a0881650f..74b937fc6971 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListCertificates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListCertificates.json @@ -1,27 +1,27 @@ { - "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/certificates/kjoshiarmtemplateCert1", - "type": "Microsoft.ApiManagement/service/certificates", - "name": "templateCert1", - "properties": { - "subject": "CN=mutual-authcert", - "thumbprint": "EBA************************48594A6", - "expirationDate": "2017-04-23T17:03:41Z" - } - } - ], - "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/certificates/kjoshiarmtemplateCert1", + "type": "Microsoft.ApiManagement/service/certificates", + "name": "templateCert1", + "properties": { + "subject": "CN=mutual-authcert", + "thumbprint": "EBA************************48594A6", + "expirationDate": "2017-04-23T17:03:41Z" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListEmailTemplates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListEmailTemplates.json index d81611051391..40f5ed2300b3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListEmailTemplates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListEmailTemplates.json @@ -1,55 +1,55 @@ { - "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\n \r\n

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\n

Best,

\r\n

The $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\n \r\n

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\n

Best,

\r\n

The $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\n\r\n \r\n \r\n \r\n \r\n \r\n" - } - } - ], - "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/policies/policy", + "type": "Microsoft.ApiManagement/service/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListPolicySnippets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListPolicySnippets.json index 54f9527cefa7..67cf10a48029 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListPolicySnippets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListPolicySnippets.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "scope":"Api" - }, - "responses": { - "200": { - "body": [ - { - "name": "Authenticate with Basic", - "content": "", - "toolTip": "Authenticate with the backend service using Basic authentication. Use in the inbound section at API scope.", - "scope": 268435471 - } - ] + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "scope": "Api" + }, + "responses": { + "200": { + "body": [ + { + "name": "Authenticate with Basic", + "content": "", + "toolTip": "Authenticate with the backend service using Basic authentication. Use in the inbound section at API scope.", + "scope": 268435471 } + ] } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductApis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductApis.json index 89f928008cd7..01a71ebe363a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductApis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductApis.json @@ -1,34 +1,34 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "productId": "5768181ea40f7eb6c49f6ac7" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7/apis/57681820a40f7eb6c49f6aca", - "type": "Microsoft.ApiManagement/service/products/apis", - "name": "57681820a40f7eb6c49f6aca", - "properties": { - "displayName": "api_57681820a40f7eb6c49f6acb", - "apiRevision": "1", - "description": "description_57681820a40f7eb6c49f6acc", - "serviceUrl": "http://contoso/57681820a40f7eb6c49f6acd", - "path": "suffix_57681820a40f7eb6c49f6ace", - "protocols": [ - "https" - ], - "isCurrent": true - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "productId": "5768181ea40f7eb6c49f6ac7" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7/apis/57681820a40f7eb6c49f6aca", + "type": "Microsoft.ApiManagement/service/products/apis", + "name": "57681820a40f7eb6c49f6aca", + "properties": { + "displayName": "api_57681820a40f7eb6c49f6acb", + "apiRevision": "1", + "description": "description_57681820a40f7eb6c49f6acc", + "serviceUrl": "http://contoso/57681820a40f7eb6c49f6acd", + "path": "suffix_57681820a40f7eb6c49f6ace", + "protocols": [ + "https" + ], + "isCurrent": true } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductGroups.json index fc25a3a70716..ca82d1c86281 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductGroups.json @@ -1,51 +1,51 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "productId": "5600b57e7e8880006a060002" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020001", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020001", - "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020002", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020002", - "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020003", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020003", - "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", + "productId": "5600b57e7e8880006a060002" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020001", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020001", + "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020002", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020002", + "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020003", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020003", + "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/ApiManagementListProductPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductPolicies.json index 66ffcbd1c7c5..06ca7538fd4c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductPolicies.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/ApiManagementListProductSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductSubscriptions.json index cd42d83973da..7f7f3ad62302 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductSubscriptions.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "productId": "5600b57e7e8880006a060002" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/subscriptions/5600b57e7e8880006a070002", - "type": "Microsoft.ApiManagement/service/products/subscriptions", - "name": "5600b57e7e8880006a070002", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002", - "state": "active", - "createdDate": "2015-09-22T01:57:18.723Z", - "primaryKey": "ba95768e868648848e215f0290eec023", - "secondaryKey": "140f866def81419b9bb9732d05d24535" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "productId": "5600b57e7e8880006a060002" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/subscriptions/5600b57e7e8880006a070002", + "type": "Microsoft.ApiManagement/service/products/subscriptions", + "name": "5600b57e7e8880006a070002", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002", + "state": "active", + "createdDate": "2015-09-22T01:57:18.723Z", + "primaryKey": "ba95768e868648848e215f0290eec023", + "secondaryKey": "140f866def81419b9bb9732d05d24535" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductTags.json index 2ad37158e198..878a12f9c0ff 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductTags.json @@ -6,21 +6,21 @@ "subscriptionId": "subid", "productId": "57d2ef278aa04f0888cba3f1" }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProducts.json index a35ce162df62..98ce749d9295 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProducts.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProducts.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/products/kjoshiarmtemplateCert1", - "type": "Microsoft.ApiManagement/service/products", - "name": "kjoshiarmtemplateCert1", - "properties": { - "displayName": "Dev", - "description": "Development Product", - "subscriptionRequired": false, - "state": "published" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/starter", - "type": "Microsoft.ApiManagement/service/products", - "name": "starter", - "properties": { - "displayName": "Starter", - "description": "Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.", - "terms": "", - "subscriptionRequired": true, - "approvalRequired": false, - "subscriptionsLimit": 1, - "state": "published" - } - }, - { - "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" - } - } - ], - "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/products/kjoshiarmtemplateCert1", + "type": "Microsoft.ApiManagement/service/products", + "name": "kjoshiarmtemplateCert1", + "properties": { + "displayName": "Dev", + "description": "Development Product", + "subscriptionRequired": false, + "state": "published" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/starter", + "type": "Microsoft.ApiManagement/service/products", + "name": "starter", + "properties": { + "displayName": "Starter", + "description": "Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.", + "terms": "", + "subscriptionRequired": true, + "approvalRequired": false, + "subscriptionsLimit": 1, + "state": "published" + } + }, + { + "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" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductsByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductsByTags.json index e9bef912cef0..179d5d24a43b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductsByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProductsByTags.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/ApiManagementListProperties.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProperties.json index 1ca29ecb739f..fcaeb878cf58 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProperties.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListProperties.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/ApiManagementListRegions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListRegions.json index e95a5bf6d1fe..092e560ca863 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListRegions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListRegions.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "West US", - "isMasterRegion": true, - "isDeleted": false - } - ], - "count": 1, - "nextLink": "" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "West US", + "isMasterRegion": true, + "isDeleted": false + } + ], + "count": 1, + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSKUs-Consumption.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSKUs-Consumption.json index e1e8a0389c81..aaef3aafbd39 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSKUs-Consumption.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSKUs-Consumption.json @@ -1,24 +1,24 @@ { - "parameters": { - "api-version": "2018-06-01-preview", - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Consumption" - }, - "capacity": null - } - ], - "nextLink": null - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2018-06-01-preview", + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Consumption" + }, + "capacity": null + } + ], + "nextLink": null + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSKUs-Dedicated.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSKUs-Dedicated.json index f015537bb4ee..484c33a4c203 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSKUs-Dedicated.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSKUs-Dedicated.json @@ -1,65 +1,65 @@ { - "parameters": { - "api-version": "2018-06-01-preview", - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Developer" - }, - "capacity": { - "minimum": 1, - "maximum": 1, - "default": 1, - "scaleType": "none" - } - }, - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Basic" - }, - "capacity": { - "minimum": 1, - "maximum": 2, - "default": 1, - "scaleType": "manual" - } - }, - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Standard" - }, - "capacity": { - "minimum": 1, - "maximum": 4, - "default": 1, - "scaleType": "automatic" - } - }, - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Premium" - }, - "capacity": { - "minimum": 1, - "maximum": 10, - "default": 1, - "scaleType": "automatic" - } - } - ], - "nextLink": null - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2018-06-01-preview", + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Developer" + }, + "capacity": { + "minimum": 1, + "maximum": 1, + "default": 1, + "scaleType": "none" + } + }, + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Basic" + }, + "capacity": { + "minimum": 1, + "maximum": 2, + "default": 1, + "scaleType": "manual" + } + }, + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Standard" + }, + "capacity": { + "minimum": 1, + "maximum": 4, + "default": 1, + "scaleType": "automatic" + } + }, + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Premium" + }, + "capacity": { + "minimum": 1, + "maximum": 10, + "default": 1, + "scaleType": "automatic" + } + } + ], + "nextLink": null + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListServiceBySubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListServiceBySubscription.json index 499fe7d76c25..f52d9eb1eb99 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListServiceBySubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListServiceBySubscription.json @@ -1,164 +1,164 @@ { - "parameters": { - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", - "name": "apimService3", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXXAQ=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-27T15:33:55.5426123Z", - "gatewayUrl": "https://apimService3.azure-api.net", - "portalUrl": "https://apimService3.portal.azure-api.net", - "managementApiUrl": "https://apimService3.management.azure-api.net", - "scmUrl": "https://apimService3.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.88.16.64" - ], - "additionalLocations": [ - { - "location": "West Europe", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "52.233.184.197" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.ApiManagement/service/apimService2", - "name": "apimService2", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW4U=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "MS", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T23:55:31.1405115Z", - "gatewayUrl": "https://apimService2.azure-api.net", - "portalUrl": "https://apimService2.portal.azure-api.net", - "managementApiUrl": "https://apimService2.management.azure-api.net", - "scmUrl": "https://apimService2.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.64.237.151" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Developer", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", - "name": "apimService5", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW5c=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T18:13:02.0196315Z", - "gatewayUrl": "https://apimService5.azure-api.net", - "portalUrl": "https://apimService5.portal.azure-api.net", - "managementApiUrl": "https://apimService5.management.azure-api.net", - "scmUrl": "https://apimService5.scm.azure-api.net", - "hostnameConfigurations": [ - { - "type": "Proxy", - "hostName": "proxytemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname1.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname2.contoso.com", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname2.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname3.azure-api.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname3.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname4.azure-api.net", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname4.contoso.com" - } - }, - { - "type": "Portal", - "hostName": "portaltemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=portaltemplatehostname1.contoso.com" - } - } - ], - "publicIPAddresses": [ - "13.93.167.166" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - } - ] + "parameters": { + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", + "name": "apimService3", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXXAQ=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-27T15:33:55.5426123Z", + "gatewayUrl": "https://apimService3.azure-api.net", + "portalUrl": "https://apimService3.portal.azure-api.net", + "managementApiUrl": "https://apimService3.management.azure-api.net", + "scmUrl": "https://apimService3.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.88.16.64" + ], + "additionalLocations": [ + { + "location": "West Europe", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "52.233.184.197" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.ApiManagement/service/apimService2", + "name": "apimService2", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW4U=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "MS", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T23:55:31.1405115Z", + "gatewayUrl": "https://apimService2.azure-api.net", + "portalUrl": "https://apimService2.portal.azure-api.net", + "managementApiUrl": "https://apimService2.management.azure-api.net", + "scmUrl": "https://apimService2.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.64.237.151" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Developer", + "capacity": 1 + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", + "name": "apimService5", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW5c=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T18:13:02.0196315Z", + "gatewayUrl": "https://apimService5.azure-api.net", + "portalUrl": "https://apimService5.portal.azure-api.net", + "managementApiUrl": "https://apimService5.management.azure-api.net", + "scmUrl": "https://apimService5.scm.azure-api.net", + "hostnameConfigurations": [ + { + "type": "Proxy", + "hostName": "proxytemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname1.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname2.contoso.com", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname2.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname3.azure-api.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname3.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname4.azure-api.net", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname4.contoso.com" + } + }, + { + "type": "Portal", + "hostName": "portaltemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=portaltemplatehostname1.contoso.com" + } + } + ], + "publicIPAddresses": [ + "13.93.167.166" + ], + "virtualNetworkType": "None" + }, + "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/ApiManagementListServiceBySubscriptionAndResourceGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json index f49dc57a9640..f89adc48b196 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json @@ -1,162 +1,162 @@ { - "parameters": { - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", - "name": "apimService3", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXXAQ=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-27T15:33:55.5426123Z", - "gatewayUrl": "https://apimService3.azure-api.net", - "portalUrl": "https://apimService3.portal.azure-api.net", - "managementApiUrl": "https://apimService3.management.azure-api.net", - "scmUrl": "https://apimService3.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.88.16.64" - ], - "additionalLocations": [ - { - "location": "West Europe", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "52.233.184.197" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService2", - "name": "apimService2", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW4U=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "MS", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T23:55:31.1405115Z", - "gatewayUrl": "https://apimService2.azure-api.net", - "portalUrl": "https://apimService2.portal.azure-api.net", - "managementApiUrl": "https://apimService2.management.azure-api.net", - "scmUrl": "https://apimService2.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.64.237.151" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Developer", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", - "name": "apimService5", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW5c=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T18:13:02.0196315Z", - "gatewayUrl": "https://apimService5.azure-api.net", - "portalUrl": "https://apimService5.portal.azure-api.net", - "managementApiUrl": "https://apimService5.management.azure-api.net", - "scmUrl": "https://apimService5.scm.azure-api.net", - "hostnameConfigurations": [ - { - "type": "Proxy", - "hostName": "proxytemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname1.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname2.contoso.com", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname2.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname3.azure-api.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname3.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname4.azure-api.net", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname4.contoso.com" - } - }, - { - "type": "Portal", - "hostName": "portaltemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=portaltemplatehostname1.contoso.com" - } - } - ], - "publicIPAddresses": [ - "13.93.167.166" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - } - ] + "parameters": { + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", + "name": "apimService3", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXXAQ=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-27T15:33:55.5426123Z", + "gatewayUrl": "https://apimService3.azure-api.net", + "portalUrl": "https://apimService3.portal.azure-api.net", + "managementApiUrl": "https://apimService3.management.azure-api.net", + "scmUrl": "https://apimService3.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.88.16.64" + ], + "additionalLocations": [ + { + "location": "West Europe", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "52.233.184.197" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService2", + "name": "apimService2", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW4U=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "MS", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T23:55:31.1405115Z", + "gatewayUrl": "https://apimService2.azure-api.net", + "portalUrl": "https://apimService2.portal.azure-api.net", + "managementApiUrl": "https://apimService2.management.azure-api.net", + "scmUrl": "https://apimService2.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.64.237.151" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Developer", + "capacity": 1 + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", + "name": "apimService5", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW5c=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T18:13:02.0196315Z", + "gatewayUrl": "https://apimService5.azure-api.net", + "portalUrl": "https://apimService5.portal.azure-api.net", + "managementApiUrl": "https://apimService5.management.azure-api.net", + "scmUrl": "https://apimService5.scm.azure-api.net", + "hostnameConfigurations": [ + { + "type": "Proxy", + "hostName": "proxytemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname1.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname2.contoso.com", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname2.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname3.azure-api.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname3.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname4.azure-api.net", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname4.contoso.com" + } + }, + { + "type": "Portal", + "hostName": "portaltemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=portaltemplatehostname1.contoso.com" + } + } + ], + "publicIPAddresses": [ + "13.93.167.166" + ], + "virtualNetworkType": "None" + }, + "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/ApiManagementListSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSubscriptions.json index ce12064a75d6..ea1c482da643 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListSubscriptions.json @@ -1,61 +1,61 @@ { - "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/subscriptions/5600b59475ff190048070001", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5600b59475ff190048070001", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", - "state": "active", - "createdDate": "2015-09-22T01:57:40.3Z", - "primaryKey": "a24782fc06f648cbb1c3406c41dc9a3a", - "secondaryKey": "b366198986614a7497a5a68fae19119d" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/56eaed3dbaf08b06e46d27fe", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "56eaed3dbaf08b06e46d27fe", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", - "displayName": "Starter", - "state": "active", - "createdDate": "2016-03-17T17:45:33.837Z", - "startDate": "2016-03-17T00:00:00Z", - "expirationDate": "2016-04-01T00:00:00Z", - "notificationDate": "2016-03-20T00:00:00Z", - "primaryKey": "77708695e79a495bb99b95f32adfa1f0", - "secondaryKey": "12e2e4ba857e420b88450dc8fe2a6cf9" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5931a769d8d14f0ad8ce13b8", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", - "displayName": "Unlimited", - "state": "submitted", - "createdDate": "2017-06-02T17:59:06.223Z", - "primaryKey": "6de0a3b2da204e459148d2f6785873f0", - "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" - } - } - ], - "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/subscriptions/5600b59475ff190048070001", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5600b59475ff190048070001", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", + "state": "active", + "createdDate": "2015-09-22T01:57:40.3Z", + "primaryKey": "a24782fc06f648cbb1c3406c41dc9a3a", + "secondaryKey": "b366198986614a7497a5a68fae19119d" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/56eaed3dbaf08b06e46d27fe", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "56eaed3dbaf08b06e46d27fe", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", + "displayName": "Starter", + "state": "active", + "createdDate": "2016-03-17T17:45:33.837Z", + "startDate": "2016-03-17T00:00:00Z", + "expirationDate": "2016-04-01T00:00:00Z", + "notificationDate": "2016-03-20T00:00:00Z", + "primaryKey": "77708695e79a495bb99b95f32adfa1f0", + "secondaryKey": "12e2e4ba857e420b88450dc8fe2a6cf9" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5931a769d8d14f0ad8ce13b8", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", + "displayName": "Unlimited", + "state": "submitted", + "createdDate": "2017-06-02T17:59:06.223Z", + "primaryKey": "6de0a3b2da204e459148d2f6785873f0", + "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListTagResources.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListTagResources.json index 11c8b9780acb..31309fd2e1b5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListTagResources.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListTagResources.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListTags.json index a8de2300e652..83b92267480b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListTags.json @@ -1,33 +1,33 @@ { - "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/tags/5600b59375ff190048020001", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b59375ff190048020001", - "properties": { - "displayName": "tag1" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b59375ff190048020002", - "properties": { - "displayName": "tag2" - } - } - ], - "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/tags/5600b59375ff190048020001", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b59375ff190048020001", + "properties": { + "displayName": "tag1" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b59375ff190048020002", + "properties": { + "displayName": "tag2" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserGroups.json index 62def5602566..0c9fd225d0d6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserGroups.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "userId": "57681833a40f7eb6c49f6acf" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/groups/5600b57e7e8880006a020002", - "type": "Microsoft.ApiManagement/service/users/groups", - "name": "5600b57e7e8880006a020002", - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "userId": "57681833a40f7eb6c49f6acf" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/groups/5600b57e7e8880006a020002", + "type": "Microsoft.ApiManagement/service/users/groups", + "name": "5600b57e7e8880006a020002", + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserIdentities.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserIdentities.json index c6d10bafe53e..c537c6708f80 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserIdentities.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserIdentities.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/ApiManagementListUserSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserSubscriptions.json index 01581d961725..946c4f7b605d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUserSubscriptions.json @@ -1,48 +1,48 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "userId": "57681833a40f7eb6c49f6acf" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6ae3", - "type": "Microsoft.ApiManagement/service/users/subscriptions", - "name": "57681850a40f7eb6c49f6ae3", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", - "displayName": "57681850a40f7eb6c49f6ae5", - "state": "active", - "createdDate": "2016-06-20T16:22:39.547Z", - "startDate": "2016-06-20T00:00:00Z", - "primaryKey": "57681850a40f7eb6c49f6ae4", - "secondaryKey": "bbd884a96b3c41b49f34422dac74b345" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6b2b", - "type": "Microsoft.ApiManagement/service/users/subscriptions", - "name": "57681850a40f7eb6c49f6b2b", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", - "displayName": "57681850a40f7eb6c49f6b2d", - "state": "active", - "createdDate": "2016-06-20T16:22:41.103Z", - "startDate": "2016-06-20T00:00:00Z", - "primaryKey": "57681850a40f7eb6c49f6b2c", - "secondaryKey": "125f565d276647dc825d7f25ea40ee57" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "userId": "57681833a40f7eb6c49f6acf" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6ae3", + "type": "Microsoft.ApiManagement/service/users/subscriptions", + "name": "57681850a40f7eb6c49f6ae3", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", + "displayName": "57681850a40f7eb6c49f6ae5", + "state": "active", + "createdDate": "2016-06-20T16:22:39.547Z", + "startDate": "2016-06-20T00:00:00Z", + "primaryKey": "57681850a40f7eb6c49f6ae4", + "secondaryKey": "bbd884a96b3c41b49f34422dac74b345" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6b2b", + "type": "Microsoft.ApiManagement/service/users/subscriptions", + "name": "57681850a40f7eb6c49f6b2b", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", + "displayName": "57681850a40f7eb6c49f6b2d", + "state": "active", + "createdDate": "2016-06-20T16:22:41.103Z", + "startDate": "2016-06-20T00:00:00Z", + "primaryKey": "57681850a40f7eb6c49f6b2c", + "secondaryKey": "125f565d276647dc825d7f25ea40ee57" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUsers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUsers.json index 4c6445001ae7..fae99ead2089 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUsers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListUsers.json @@ -1,71 +1,71 @@ { - "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/users/1", - "type": "Microsoft.ApiManagement/service/users", - "name": "1", - "properties": { - "firstName": "Administrator", - "lastName": "", - "email": "admin@live.com", - "state": "active", - "registrationDate": "2015-09-22T01:57:39.677Z", - "identities": [ - { - "provider": "Azure", - "id": "admin@live.com" - } - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", - "type": "Microsoft.ApiManagement/service/users", - "name": "56eaec62baf08b06e46d27fd", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foo.bar.83@gmail.com", - "state": "active", - "registrationDate": "2016-03-17T17:41:56.327Z", - "identities": [ - { - "provider": "Basic", - "id": "foo.bar.83@gmail.com" - } - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "type": "Microsoft.ApiManagement/service/users", - "name": "5931a75ae4bbd512a88c680b", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foobar@outlook.com", - "state": "active", - "registrationDate": "2017-06-02T17:58:50.357Z", - "identities": [ - { - "provider": "Microsoft", - "id": "*************" - } - ] - } - } - ], - "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/users/1", + "type": "Microsoft.ApiManagement/service/users", + "name": "1", + "properties": { + "firstName": "Administrator", + "lastName": "", + "email": "admin@live.com", + "state": "active", + "registrationDate": "2015-09-22T01:57:39.677Z", + "identities": [ + { + "provider": "Azure", + "id": "admin@live.com" + } + ] } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", + "type": "Microsoft.ApiManagement/service/users", + "name": "56eaec62baf08b06e46d27fd", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foo.bar.83@gmail.com", + "state": "active", + "registrationDate": "2016-03-17T17:41:56.327Z", + "identities": [ + { + "provider": "Basic", + "id": "foo.bar.83@gmail.com" + } + ] + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "type": "Microsoft.ApiManagement/service/users", + "name": "5931a75ae4bbd512a88c680b", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foobar@outlook.com", + "state": "active", + "registrationDate": "2017-06-02T17:58:50.357Z", + "identities": [ + { + "provider": "Microsoft", + "id": "*************" + } + ] + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetDelegation.json index 00b57df099b4..1c245fd3a072 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetDelegation.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/delegation", - "type": "Microsoft.ApiManagement/service/portalsettings", - "name": "delegation", - "properties": { - "url": "http://contoso.com/delegation", - "validationKey": "nVF7aKIvr9mV/RM5lOD0sYoi8ThXTRHQP7o66hvUmjCDkPKR3qxPu/otJcNciz2aQdqPuzJH3ECG4TU2yZjQ7Q==", - "subscriptions": { - "enabled": true - }, - "userRegistration": { - "enabled": true - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/delegation", + "type": "Microsoft.ApiManagement/service/portalsettings", + "name": "delegation", + "properties": { + "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/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetSignIn.json index 12488dfa8a31..8a52c356fafc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetSignIn.json @@ -1,20 +1,20 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signin", - "type": "Microsoft.ApiManagement/service/portalsettings", - "name": "signin", - "properties": { - "enabled": true - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signin", + "type": "Microsoft.ApiManagement/service/portalsettings", + "name": "signin", + "properties": { + "enabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetSignUp.json index 8d842a61e3fa..0c33a8e5d5ad 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsGetSignUp.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signup", - "type": "Microsoft.ApiManagement/service/portalsettings", - "name": "signup", - "properties": { - "enabled": true, - "termsOfService": { - "text": "Terms of service text.", - "enabled": true, - "consentRequired": true - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signup", + "type": "Microsoft.ApiManagement/service/portalsettings", + "name": "signup", + "properties": { + "enabled": true, + "termsOfService": { + "text": "Terms of service text.", + "enabled": true, + "consentRequired": true + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsPutDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsPutDelegation.json index 4d866e0e14b6..591dce8c8aef 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsPutDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsPutDelegation.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/ApiManagementPortalSettingsPutSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsPutSignIn.json index c7e99e5283fa..c5fd7a034f2a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsPutSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsPutSignIn.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/ApiManagementPortalSettingsPutSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsPutSignUp.json index 2184d04f420b..2638525c6e71 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsPutSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsPutSignUp.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/ApiManagementPortalSettingsUpdateDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateDelegation.json index 1f3bdb15735f..0e3a6e51b14c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateDelegation.json @@ -22,4 +22,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateSignIn.json index 1aec7b9ea167..5ed63c8a4bdc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateSignIn.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateSignUp.json index 3824225176d6..31ba808bdd41 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementPortalSettingsUpdateSignUp.json @@ -20,4 +20,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementRestoreService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementRestoreService.json index d8b18a9ad78e..6ab738692da8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementRestoreService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementRestoreService.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/ApiManagementServiceCheckNameAvailability.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceCheckNameAvailability.json index 3e7233f6c0b9..c2ed06a5dfa6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceCheckNameAvailability.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceCheckNameAvailability.json @@ -4,7 +4,7 @@ "api-version": "2018-06-01-preview", "subscriptionId": "subid", "parameters": { - "name" : "apimService1" + "name": "apimService1" } }, "responses": { @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceDeleteService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceDeleteService.json index d23e103d852f..eccd0c8ba3c2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceDeleteService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceDeleteService.json @@ -57,4 +57,4 @@ "204": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetMultiRegionInternalVnet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetMultiRegionInternalVnet.json index f9f0002195df..462bcfb5e810 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetMultiRegionInternalVnet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetMultiRegionInternalVnet.json @@ -1,88 +1,88 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimservice1", - "name": "apimservice1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAADqC0c=", - "properties": { - "publisherEmail": "abcs@contoso.com", - "publisherName": "contoso publisher", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2018-02-02T01:42:09.1268424Z", - "gatewayUrl": "https://apimservice1.azure-api.net", - "gatewayRegionalUrl": "https://apimservice1-westus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "apimgatewaytest.preview.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2019-08-16T16:51:34+00:00", - "thumbprint": "B4330123DBAXXXXXXXXX1F35E84493476", - "subject": "CN=*.preview.net" - }, - "defaultSslBinding": true - } - ], - "publicIPAddresses": [ - "137.XXX.11.74" - ], - "privateIPAddresses": [ - "172.XX.0.5" - ], - "additionalLocations": [ - { - "location": "West US 2", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "40.XXX.79.187" - ], - "privateIPAddresses": [ - "10.0.X.6" - ], - "virtualNetworkConfiguration": { - "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/APIMVNet/subnets/apim-internal-sub" - }, - "gatewayRegionalUrl": "https://apimservice1-westus2-01.regional.azure-api.net" - } - ], - "virtualNetworkConfiguration": { - "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/apim-appGateway-vnet/subnets/apim-subnet" - }, - "customProperties": { - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30": "False", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30": "False" - }, - "virtualNetworkType": "Internal" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimservice1", + "name": "apimservice1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAADqC0c=", + "properties": { + "publisherEmail": "abcs@contoso.com", + "publisherName": "contoso publisher", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2018-02-02T01:42:09.1268424Z", + "gatewayUrl": "https://apimservice1.azure-api.net", + "gatewayRegionalUrl": "https://apimservice1-westus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "apimgatewaytest.preview.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2019-08-16T16:51:34+00:00", + "thumbprint": "B4330123DBAXXXXXXXXX1F35E84493476", + "subject": "CN=*.preview.net" + }, + "defaultSslBinding": true } + ], + "publicIPAddresses": [ + "137.XXX.11.74" + ], + "privateIPAddresses": [ + "172.XX.0.5" + ], + "additionalLocations": [ + { + "location": "West US 2", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "40.XXX.79.187" + ], + "privateIPAddresses": [ + "10.0.X.6" + ], + "virtualNetworkConfiguration": { + "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/APIMVNet/subnets/apim-internal-sub" + }, + "gatewayRegionalUrl": "https://apimservice1-westus2-01.regional.azure-api.net" + } + ], + "virtualNetworkConfiguration": { + "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/apim-appGateway-vnet/subnets/apim-subnet" + }, + "customProperties": { + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30": "False", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30": "False" + }, + "virtualNetworkType": "Internal" + }, + "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/ApiManagementServiceGetNetworkStatus.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetNetworkStatus.json index dd4f1a5223d0..833d1b3a52b1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetNetworkStatus.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetNetworkStatus.json @@ -108,4 +108,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetNetworkStatusByLocation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetNetworkStatusByLocation.json index c95a69cc53d9..9a1e5d094a63 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetNetworkStatusByLocation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetNetworkStatusByLocation.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetService.json index ff2b9adb9ed7..c80848d284e4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetService.json @@ -1,89 +1,89 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "Central US", - "etag": "AAAAAAAYP5M=", - "properties": { - "publisherEmail": "contoso@microsoft.com", - "publisherName": "admin", - "notificationSenderEmail": "contoso@live.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-06-28T23:01:33.0667959Z", - "gatewayUrl": "https://apimService1.azure-api.net", - "gatewayRegionalUrl": "https://apimService1-centralus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "proxyhostname4.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Proxy", - "hostName": "proxyhostname9.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Portal", - "hostName": "portalhostname2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - } - ], - "publicIPAddresses": [ - "52.173.22.222" - ], - "additionalLocations": [ - { - "location": "West US", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "40.78.99.244" - ], - "gatewayRegionalUrl": "https://apimService1-westus-01.regional.azure-api.net" - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "Central US", + "etag": "AAAAAAAYP5M=", + "properties": { + "publisherEmail": "contoso@microsoft.com", + "publisherName": "admin", + "notificationSenderEmail": "contoso@live.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-06-28T23:01:33.0667959Z", + "gatewayUrl": "https://apimService1.azure-api.net", + "gatewayRegionalUrl": "https://apimService1-centralus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "proxyhostname4.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Proxy", + "hostName": "proxyhostname9.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Portal", + "hostName": "portalhostname2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } } + ], + "publicIPAddresses": [ + "52.173.22.222" + ], + "additionalLocations": [ + { + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "40.78.99.244" + ], + "gatewayRegionalUrl": "https://apimService1-westus-01.regional.azure-api.net" + } + ], + "virtualNetworkType": "None" + }, + "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/ApiManagementServiceGetServiceHavingMsi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetServiceHavingMsi.json index 015950500622..632ed79c63fb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetServiceHavingMsi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetServiceHavingMsi.json @@ -1,58 +1,58 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAC2jkE=", - "properties": { - "publisherEmail": "admin@contoso.com", - "publisherName": "Contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "createdAtUtc": "2017-10-13T16:56:47.0174063Z", - "gatewayUrl": "https://apimService1.azure-api.net", - "gatewayRegionalUrl": "https://apimService1-westus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "foobar.msitesting.net", - "keyVaultId": "https://constoso-msi-keyvault.vault.azure.net/secrets/msitestingCert", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2036-01-01T07:00:00+00:00", - "thumbprint": "8E98XXX52CAXXXXXXX2C91F1D174FDB3A2", - "subject": "CN=*.msitesting.net" - }, - "defaultSslBinding": true - } - ], - "publicIPAddresses": [ - "13.xx.76.xxx" - ] - }, - "sku": { - "name": "Developer", - "capacity": 1 - }, - "identity": { - "type": "SystemAssigned", - "principalId": "ae7d906a-xxx-408a-xxxx-6b9d60e5756b", - "tenantId": "72f988bf-xxx-41af-xxxx-2d7cd011db47" - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAC2jkE=", + "properties": { + "publisherEmail": "admin@contoso.com", + "publisherName": "Contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "createdAtUtc": "2017-10-13T16:56:47.0174063Z", + "gatewayUrl": "https://apimService1.azure-api.net", + "gatewayRegionalUrl": "https://apimService1-westus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "foobar.msitesting.net", + "keyVaultId": "https://constoso-msi-keyvault.vault.azure.net/secrets/msitestingCert", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2036-01-01T07:00:00+00:00", + "thumbprint": "8E98XXX52CAXXXXXXX2C91F1D174FDB3A2", + "subject": "CN=*.msitesting.net" + }, + "defaultSslBinding": true } + ], + "publicIPAddresses": [ + "13.xx.76.xxx" + ] + }, + "sku": { + "name": "Developer", + "capacity": 1 + }, + "identity": { + "type": "SystemAssigned", + "principalId": "ae7d906a-xxx-408a-xxxx-6b9d60e5756b", + "tenantId": "72f988bf-xxx-41af-xxxx-2d7cd011db47" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetSsoToken.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetSsoToken.json index e0d5698b2458..5aad156e212d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetSsoToken.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceGetSsoToken.json @@ -12,4 +12,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceUpdateHostName.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceUpdateHostName.json index 39963987ce5b..4492f0f8d7d2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceUpdateHostName.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceUpdateHostName.json @@ -1,183 +1,183 @@ { + "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": { - "update": [ - { - "type": "Proxy", - "hostname": "internalproxy2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Portal", - "hostname": "internalportal2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Management", - "hostname": "internalmgmt2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Scm", - "hostname": "internalscm2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - } - ] + "update": [ + { + "type": "Proxy", + "hostname": "internalproxy2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Portal", + "hostname": "internalportal2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Management", + "hostname": "internalmgmt2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Scm", + "hostname": "internalscm2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } } + ] + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + }, + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "Central US", + "etag": "AAAAAAAYP5M=", + "properties": { + "publisherEmail": "contoso@microsoft.com", + "publisherName": "admin", + "notificationSenderEmail": "contoso@live.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-06-28T23:01:33.0667959Z", + "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", + "publicIPAddresses": [ + "52.173.22.222" + ], + "additionalLocations": [ + { + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "40.78.99.244" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 + } + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "Central US", + "etag": "AAAAAAAYP5M=", + "properties": { + "publisherEmail": "contoso@microsoft.com", + "publisherName": "admin", + "notificationSenderEmail": "contoso@live.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-06-28T23:01:33.0667959Z", + "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": [ + { + "type": "Proxy", + "hostName": "internalproxy2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Portal", + "hostName": "internalportal2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Management", + "hostName": "internalmgmt2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } }, - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "Central US", - "etag": "AAAAAAAYP5M=", - "properties": { - "publisherEmail": "contoso@microsoft.com", - "publisherName": "admin", - "notificationSenderEmail": "contoso@live.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-06-28T23:01:33.0667959Z", - "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", - "publicIPAddresses": [ - "52.173.22.222" - ], - "additionalLocations": [ - { - "location": "West US", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "40.78.99.244" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + { + "type": "Scm", + "hostName": "internalscm2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } } - }, - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "Central US", - "etag": "AAAAAAAYP5M=", - "properties": { - "publisherEmail": "contoso@microsoft.com", - "publisherName": "admin", - "notificationSenderEmail": "contoso@live.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-06-28T23:01:33.0667959Z", - "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": [ - { - "type": "Proxy", - "hostName": "internalproxy2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Portal", - "hostName": "internalportal2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Management", - "hostName": "internalmgmt2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Scm", - "hostName": "internalscm2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - } - ], - "publicIPAddresses": [ - "52.173.22.222" - ], - "additionalLocations": [ - { - "location": "West US", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "40.78.99.244" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + ], + "publicIPAddresses": [ + "52.173.22.222" + ], + "additionalLocations": [ + { + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "40.78.99.244" + ] } + ], + "virtualNetworkType": "None" + }, + "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/ApiManagementServiceUploadProxyCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceUploadProxyCertificate.json index daef165cb6b5..e7e8685fd6d4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceUploadProxyCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementServiceUploadProxyCertificate.json @@ -5,9 +5,9 @@ "api-version": "2018-06-01-preview", "subscriptionId": "subid", "parameters": { - "type" : "Proxy", - "certificate" : "MIIZ7wI************************************************************", - "certificate_password": "******" + "type": "Proxy", + "certificate": "MIIZ7wI************************************************************", + "certificate_password": "******" } }, "responses": { @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementSubscriptionRegeneratePrimaryKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementSubscriptionRegeneratePrimaryKey.json index ee96523a6f05..e152be924932 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementSubscriptionRegeneratePrimaryKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementSubscriptionRegeneratePrimaryKey.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "sid": "testsub" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "sid": "testsub" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementSubscriptionRegenerateSecondaryKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementSubscriptionRegenerateSecondaryKey.json index ee96523a6f05..e152be924932 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementSubscriptionRegenerateSecondaryKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementSubscriptionRegenerateSecondaryKey.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "sid": "testsub" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "sid": "testsub" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantAccessRegenerateKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantAccessRegenerateKey.json index cd6b957e675e..33777d2d48a7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantAccessRegenerateKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantAccessRegenerateKey.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "accessName": "access" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "accessName": "access" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantAccessSyncState.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantAccessSyncState.json index 21c3079b56d4..5dc12cb7aa17 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantAccessSyncState.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantAccessSyncState.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "configurationName": "configuration" - }, - "responses": { - "200": { - "body": { - "branch": "master", - "commitId": "44c29c27a876372e2ea18d9c381cc493a6a89fc5", - "isExport": true, - "isSynced": false, - "isGitEnabled": true, - "syncDate": "2016-10-24T19:17:14.3641403Z", - "configurationChangeDate": "2017-06-03T00:41:30.9670873Z" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "configurationName": "configuration" + }, + "responses": { + "200": { + "body": { + "branch": "master", + "commitId": "44c29c27a876372e2ea18d9c381cc493a6a89fc5", + "isExport": true, + "isSynced": false, + "isGitEnabled": true, + "syncDate": "2016-10-24T19:17:14.3641403Z", + "configurationChangeDate": "2017-06-03T00:41:30.9670873Z" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationDeploy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationDeploy.json index 1ddd943f3348..0e133be7b376 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationDeploy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationDeploy.json @@ -1,31 +1,31 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "configurationName": "configuration", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "configurationName": "configuration", - "parameters": { - "branch": "master" - } + "branch": "master" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af4ae2a6d2e0b688d7517?api-version=2018-06-01-preview" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af4ae2a6d2e0b688d7517?api-version=2018-06-01-preview" - } - }, - "200": { - "body": { - "id": "5a1af4ae2a6d2e0b688d7517", - "status": "Failed", - "started": "2017-11-26T17:06:54.303Z", - "updated": "2017-11-26T17:07:21.777Z", - "error": { - "code": "ValidationError", - "message": "File not found: 'api-management/configuration.json'" - } - } + "200": { + "body": { + "id": "5a1af4ae2a6d2e0b688d7517", + "status": "Failed", + "started": "2017-11-26T17:06:54.303Z", + "updated": "2017-11-26T17:07:21.777Z", + "error": { + "code": "ValidationError", + "message": "File not found: 'api-management/configuration.json'" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationSave.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationSave.json index b1a6240dd34c..26fc67221e1e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationSave.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationSave.json @@ -1,29 +1,29 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "configurationName": "configuration", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "configurationName": "configuration", - "parameters": { - "branch": "master" - } + "branch": "master" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af57d2a6d2e0b688d751b?api-version=2018-06-01-preview" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af57d2a6d2e0b688d751b?api-version=2018-06-01-preview" - } - }, - "200": { - "body": { - "id": "5a1af57d2a6d2e0b688d751b", - "status": "Succeeded", - "started": "2017-11-26T17:10:21.957Z", - "updated": "2017-11-26T17:10:36.06Z", - "resultInfo": "The configuration was successfully saved to master as commit cdb6878db80159cc0e9a53f5ad38581883882974.", - "actionLog": [] - } - } + "200": { + "body": { + "id": "5a1af57d2a6d2e0b688d751b", + "status": "Succeeded", + "started": "2017-11-26T17:10:21.957Z", + "updated": "2017-11-26T17:10:36.06Z", + "resultInfo": "The configuration was successfully saved to master as commit cdb6878db80159cc0e9a53f5ad38581883882974.", + "actionLog": [] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationValidate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationValidate.json index 34bc6b27215b..adefcc723ec4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationValidate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementTenantConfigurationValidate.json @@ -1,170 +1,170 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "configurationName": "configuration", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "configurationName": "configuration", - "parameters": { - "branch": "master" - } + "branch": "master" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af64e2a6d2e0b688d751e?api-version=2018-06-01-preview" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af64e2a6d2e0b688d751e?api-version=2018-06-01-preview" - } - }, - "200": { - "body": { - "id": "5a1af64e2a6d2e0b688d751e", - "status": "Succeeded", - "started": "2017-11-26T17:13:50.787Z", - "updated": "2017-11-26T17:13:59.723Z", - "resultInfo": "Validation is successfull", - "actionLog": [ - { - "objectType": "ApiSpecificationContract", - "action": "Updated", - "objectKey": "57914cb351f68a16889be190;rev=1" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5768181ea40f7eb6c49f6ac7" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "576819c9a40f7e86289fb3e3" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "576819f1a40f7e86289fb6de" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681a67a40f7e72b4132522" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681a73a40f7e72b413281d" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681a7ea40f7e72b4132b18" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681b88a40f7ea0f017f099" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681b9fa40f7ea0f017f682" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bb5a40f7ea0f017fc6b" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bcaa40f7ea0f0180254" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bdfa40f7ea0f018083d" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bf5a40f7ea0f0180e26" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681c0ea40f7ea0f018140f" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681c26a40f7ea0f01819f8" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681c83a40f7e85f44db237" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681cb2a40f7e85f44dbcd0" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681ce3a40f7e85f44dc769" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681d1fa40f7e85f44dd202" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681d60a40f7e85f44ddc9b" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681db4a40f7e85f44de735" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681e11a40f7e85f44df1ce" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681e73a40f7e85f44dfc67" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681f06a40f7e74ec07785c" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5768211fa40f7e74ec07a74a" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "576823cfa40f7e74ec07d63a" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5600b57e7e8880006a060001" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5600b57e7e8880006a060002" - } - ] - } - } + "200": { + "body": { + "id": "5a1af64e2a6d2e0b688d751e", + "status": "Succeeded", + "started": "2017-11-26T17:13:50.787Z", + "updated": "2017-11-26T17:13:59.723Z", + "resultInfo": "Validation is successfull", + "actionLog": [ + { + "objectType": "ApiSpecificationContract", + "action": "Updated", + "objectKey": "57914cb351f68a16889be190;rev=1" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5768181ea40f7eb6c49f6ac7" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "576819c9a40f7e86289fb3e3" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "576819f1a40f7e86289fb6de" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681a67a40f7e72b4132522" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681a73a40f7e72b413281d" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681a7ea40f7e72b4132b18" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681b88a40f7ea0f017f099" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681b9fa40f7ea0f017f682" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bb5a40f7ea0f017fc6b" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bcaa40f7ea0f0180254" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bdfa40f7ea0f018083d" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bf5a40f7ea0f0180e26" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681c0ea40f7ea0f018140f" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681c26a40f7ea0f01819f8" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681c83a40f7e85f44db237" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681cb2a40f7e85f44dbcd0" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681ce3a40f7e85f44dc769" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681d1fa40f7e85f44dd202" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681d60a40f7e85f44ddc9b" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681db4a40f7e85f44de735" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681e11a40f7e85f44df1ce" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681e73a40f7e85f44dfc67" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681f06a40f7e74ec07785c" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5768211fa40f7e74ec07a74a" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "576823cfa40f7e74ec07d63a" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5600b57e7e8880006a060001" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5600b57e7e8880006a060002" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApi.json index fa4d6ca2942c..79737e07e30d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApi.json @@ -17,4 +17,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiDiagnostic.json index af8ef02ea3f3..d13ead626fc4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiDiagnostic.json @@ -57,4 +57,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiIssue.json index 5408e77690f3..c3c1a43fe099 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiIssue.json @@ -1,19 +1,19 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "If-Match": "*", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "apiId": "57d1f7558aa04f15146d9d8a", - "If-Match": "*", - "parameters": { - "properties": { - "state": "closed" - } + "properties": { + "state": "closed" } - }, - "responses": { - "204": { } } - } \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiOperation.json index 9f58164d18fc..4ba2aed4c44c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiOperation.json @@ -5,7 +5,7 @@ "api-version": "2018-06-01-preview", "subscriptionId": "subid", "apiId": "echo-api", - "operationId":"operationId", + "operationId": "operationId", "If-Match": "*", "parameters": { "properties": { @@ -47,4 +47,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiRelease.json index b70872fa4f36..f65eeb410d32 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiRelease.json @@ -1,20 +1,20 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "testrev", + "If-Match": "*", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "testrev", - "If-Match": "*", - "parameters": { - "properties": { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", - "notes": "yahooagain" - } - } - }, - "responses": { - "204": { } + "properties": { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", + "notes": "yahooagain" + } } -} \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiVersionSet.json index e619eefef9bf..942fa11db6f4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateApiVersionSet.json @@ -1,20 +1,20 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "versionSetId": "api1", + "If-Match": "*", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "versionSetId": "api1", - "If-Match":"*", - "parameters": { - "properties": { - "displayName" : "api set 1", - "versioningScheme" : "Segment", - "description" : "Version configuration" - } + "properties": { + "displayName": "api set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } - }, - "responses": { - "204": { } } - } \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateAuthorizationServer.json index 52a5f0c5985f..825fecdcb886 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateAuthorizationServer.json @@ -14,6 +14,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateBackend.json index 789aabb3a838..08affa549f3e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateBackend.json @@ -19,4 +19,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateCache.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateCache.json index 8b2f26300e9c..61eb79cad800 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateCache.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateCache.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateDiagnostic.json index 43101dbb0f12..5f63bcd8a470 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateDiagnostic.json @@ -56,4 +56,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateEmailTemplate.json index ae63f7d0a089..e9ee2458234b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateEmailTemplate.json @@ -14,6 +14,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateGroup.json index 8a5e0e85ee85..7a19db1797ba 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateGroup.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateIdentityProvider.json index 2177eeeb6198..06f62f691687 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateIdentityProvider.json @@ -16,4 +16,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateLogger.json index 1aee91e94023..75a21038cac0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateLogger.json @@ -18,4 +18,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateOpenIdConnectProvider.json index 68957114c82f..074f00f3f014 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateOpenIdConnectProvider.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateProduct.json index 8e1fe288bf05..63d05bf6832e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateProduct.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateProperty.json index aba9892e4632..c5f15d1bac15 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateProperty.json @@ -19,4 +19,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateQuotaCounterKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateQuotaCounterKey.json index b79f476e2115..02a047192d6f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateQuotaCounterKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateQuotaCounterKey.json @@ -13,4 +13,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json index f90a752a1c71..ba53576ffed9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json @@ -14,4 +14,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateServiceDisableTls10.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateServiceDisableTls10.json index 5f15a08043d0..3448ae90538a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateServiceDisableTls10.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateServiceDisableTls10.json @@ -87,4 +87,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateServicePublisherDetails.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateServicePublisherDetails.json index 59083597a22e..3fb414abef6a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateServicePublisherDetails.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateServicePublisherDetails.json @@ -61,7 +61,7 @@ "location": "West US", "etag": "AAAAAAAYRPs=", "properties": { - "publisherEmail": "foobar@live.com", + "publisherEmail": "foobar@live.com", "publisherName": "Contoso Vnext", "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", "provisioningState": "Succeeded", @@ -86,4 +86,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateSubscription.json index f508e0617011..157b9e6ae341 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateSubscription.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateTag.json index 55dfaa9b7bad..2c7809b89f86 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateTag.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateTenantAccess.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateTenantAccess.json index 8181090e0b4a..bd4f01d36571 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateTenantAccess.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateTenantAccess.json @@ -13,4 +13,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateUser.json index 38c3a6b5b7a3..b3e14c951d4d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUpdateUser.json @@ -15,6 +15,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserConfirmationPasswordSend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserConfirmationPasswordSend.json index 3210d6c6b3e6..4bbe76f6420b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserConfirmationPasswordSend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserConfirmationPasswordSend.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "userId": "57127d485157a511ace86ae7" - }, - "responses": { - "204": { } - } - } \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "userId": "57127d485157a511ace86ae7" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserGenerateSsoUrl.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserGenerateSsoUrl.json index cf3049ecdc1e..f25f61eed684 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserGenerateSsoUrl.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserGenerateSsoUrl.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserToken.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserToken.json index 36ad537e03fa..689e78f5fe3f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserToken.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementUserToken.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-07-07/apimanagement.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-07-07/apimanagement.json index 21e9cd7b6412..95d7789cdb07 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-07-07/apimanagement.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-07-07/apimanagement.json @@ -83,7 +83,7 @@ "schema": { "$ref": "#/definitions/ErrorBodyContract" } - } + } }, "x-ms-pageable": { "nextLinkName": "nextLink" @@ -127,11 +127,11 @@ "schema": { "$ref": "#/definitions/ApiContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -185,7 +185,7 @@ "201": { "description": "API was successfully created." }, - "204":{ + "204": { "description": "API was successfully updated." }, "default": { @@ -380,11 +380,11 @@ "schema": { "$ref": "#/definitions/OperationContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -434,7 +434,7 @@ "201": { "description": "Operation was successfully created." }, - "204":{ + "204": { "description": "Operation was successfully updated." }, "default": { @@ -533,7 +533,7 @@ } ], "responses": { - "204": { + "204": { "description": "The operation was successfully deleted." }, "default": { @@ -693,11 +693,11 @@ "schema": { "$ref": "#/definitions/SubscriptionContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -806,7 +806,7 @@ } ], "responses": { - "204": { + "204": { "description": "The subscription details were successfully updated." }, "default": { @@ -852,7 +852,7 @@ } ], "responses": { - "204": { + "204": { "description": "The subscription details were successfully deleted." }, "default": { @@ -934,7 +934,7 @@ } ], "responses": { - "204": { + "204": { "description": "The secondary key was successfully regenerated." }, "default": { @@ -1040,11 +1040,11 @@ "schema": { "$ref": "#/definitions/ProductContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -1473,7 +1473,7 @@ "400": { "description": "Request validation failed.This is typically caused by an invalid product or group id.", "schema": { - "$ref": "#/definitions/ErrorBodyContract" + "$ref": "#/definitions/ErrorBodyContract" } }, "default": { @@ -1566,11 +1566,11 @@ "schema": { "$ref": "#/definitions/GroupContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -1675,7 +1675,6 @@ "description": "The specified group cannot be updated because it is a built-in group.", "schema": { "$ref": "#/definitions/ErrorBodyContract" - } }, "default": { @@ -1724,7 +1723,6 @@ "description": "The specified group cannot be updated because it is a built-in group.", "schema": { "$ref": "#/definitions/ErrorBodyContract" - } }, "default": { @@ -1785,7 +1783,7 @@ "schema": { "$ref": "#/definitions/ErrorBodyContract" } - } + } }, "x-ms-pageable": { "nextLinkName": "nextLink" @@ -1830,7 +1828,7 @@ "405": { "description": "Attempt was made to add a user to a built-in group. Built-in group membership is managed by the system.", "schema": { - "$ref": "#/definitions/ErrorBodyContract" + "$ref": "#/definitions/ErrorBodyContract" } }, "default": { @@ -1868,14 +1866,13 @@ } ], "responses": { - "204": { + "204": { "description": "The user was successfully removed from the group.." }, "405": { "description": "Attempt was made to add a user to a built-in group. Built-in group membership is managed by the system.", "schema": { "$ref": "#/definitions/ErrorBodyContract" - } }, "default": { @@ -1978,11 +1975,11 @@ "schema": { "$ref": "#/definitions/CertificateContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -2047,7 +2044,7 @@ "201": { "description": "The new certificate was successfully added." }, - "204":{ + "204": { "description": "The certificate details were successfully updated." }, "default": { @@ -2301,11 +2298,11 @@ "schema": { "$ref": "#/definitions/UserContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -2349,10 +2346,10 @@ } ], "responses": { - "201": { + "201": { "description": "User was successfully created." }, - "204":{ + "204": { "description": "User was successfully updated." }, "default": { @@ -2464,7 +2461,7 @@ "405": { "description": "Administrator user cannot be modified.", "schema": { - "$ref": "#/definitions/ErrorBodyContract" + "$ref": "#/definitions/ErrorBodyContract" } }, "default": { @@ -2653,7 +2650,7 @@ "in": "query", "required": false, "type": "string", - "description": "| Field | Supported operators | Supported functions |\n|-------|------------------------|---------------------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| name | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |" + "description": "| Field | Supported operators | Supported functions |\n|-------|------------------------|---------------------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| name | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |" }, { "$ref": "#/parameters/TopQueryParameter" @@ -2674,7 +2671,7 @@ "schema": { "$ref": "#/definitions/AuthorizationServerCollection" } - } + } }, "x-ms-pageable": { "nextLinkName": "nextLink" @@ -2696,7 +2693,7 @@ { "$ref": "#/parameters/ServiceNameParameter" }, - { + { "name": "authsid", "in": "path", "required": true, @@ -2718,11 +2715,11 @@ "schema": { "$ref": "#/definitions/OAuth2AuthorizationServerContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -3067,11 +3064,11 @@ "schema": { "$ref": "#/definitions/AccessInformationContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } } } @@ -3113,7 +3110,7 @@ } ], "responses": { - "201": { + "201": { "description": "Tenant's access information updated successfully." }, "default": { @@ -3181,7 +3178,7 @@ } ], "responses": { - "204": { + "204": { "description": "The secondary key was successfully regenerated." }, "default": { @@ -3284,11 +3281,11 @@ "schema": { "$ref": "#/definitions/LoggerResponse" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -3396,7 +3393,7 @@ } ], "responses": { - "204": { + "204": { "description": "The existing logger was successfully updated." }, "default": { @@ -3539,11 +3536,11 @@ "schema": { "$ref": "#/definitions/PropertyContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -3593,8 +3590,8 @@ } ], "responses": { - "201": { - "description": "Property was successfully created." + "201": { + "description": "Property was successfully created." }, "204": { "description": "Property was successfully updated." @@ -3703,7 +3700,7 @@ "405": { "description": "The specified property cannot be deleted because it is in use in a policy. You must remove all references to this property before it can be deleted.", "schema": { - "$ref": "#/definitions/ErrorBodyContract" + "$ref": "#/definitions/ErrorBodyContract" } }, "default": { @@ -3797,11 +3794,11 @@ "schema": { "$ref": "#/definitions/OpenidConnectProviderContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -3809,7 +3806,7 @@ "schema": { "$ref": "#/definitions/ErrorBodyContract" } - } + } } }, "put": { @@ -3832,7 +3829,7 @@ "type": "string", "description": "Identifier of the OpenID Connect Provider.", "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$" + "pattern": "^[^*#&+:<>?]+$" }, { "name": "parameters", @@ -3852,7 +3849,7 @@ ], "responses": { "201": { - "description": "OpenIdConnect Provider was successfully created." + "description": "OpenIdConnect Provider was successfully created." }, "204": { "description": "OpenIdConnect Provider was successfully updated." @@ -3961,7 +3958,7 @@ "405": { "description": "The specified OpenIdConnect Provider cannot be deleted because it is in use in a policy. You must remove all references to this property before it can be deleted.", "schema": { - "$ref": "#/definitions/ErrorBodyContract" + "$ref": "#/definitions/ErrorBodyContract" } }, "default": { @@ -4000,11 +3997,11 @@ "schema": { "$ref": "#/definitions/AccessInformationContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -4351,11 +4348,11 @@ "schema": { "$ref": "#/definitions/BackendResponse" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -4453,7 +4450,7 @@ } ], "responses": { - "204": { + "204": { "description": "The existing backend was successfully updated." }, "default": { @@ -4526,7 +4523,7 @@ }, { "$ref": "#/parameters/ApiVersionParameter" - } + } ], "responses": { "200": { @@ -4574,11 +4571,11 @@ "schema": { "$ref": "#/definitions/IdentityProviderContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -4676,7 +4673,7 @@ } ], "responses": { - "204": { + "204": { "description": "The existing identity provider configuration was successfully updated." }, "default": { @@ -4806,7 +4803,7 @@ } ], "responses": { - "204": { + "204": { "description": "All the quota counter periods were successfully updated." }, "default": { @@ -4891,7 +4888,7 @@ "$ref": "#/definitions/QuotaCounterValueContract" }, "description": "The value of the Quota counter to be applied on the specified period." - }, + }, { "$ref": "#/parameters/ApiVersionParameter" }, @@ -4900,7 +4897,7 @@ } ], "responses": { - "204": { + "204": { "description": "The quota counter value was successfully updated." }, "default": { @@ -4914,7 +4911,7 @@ } }, "x-ms-paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}?export=true": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}?export=true": { "get": { "tags": [ "Apis" @@ -4922,7 +4919,7 @@ "operationId": "Apis_Export", "description": "Gets the details of the API specified by its identifier.", "parameters": [ - { + { "$ref": "#/parameters/ResourceGroupNameParameter" }, { @@ -4955,7 +4952,7 @@ } } }, - "definitions": { + "definitions": { "OAuth2AuthenticationSettingsContract": { "properties": { "authorizationServerId": { @@ -4990,7 +4987,7 @@ }, "description": "Subscription key parameter names details.", "example": { - "subscriptionKeyParameterNames" : { + "subscriptionKeyParameterNames": { "query": "customQueryParameterName", "header": "customHeaderParameterName" } @@ -5067,7 +5064,7 @@ "path", "protocols" ], - "description": "API details." + "description": "API details." }, "ApiCollection": { "properties": { @@ -5112,12 +5109,12 @@ "statusCode": { "type": "string", "enum": [ - "Continue", + "Continue", "OK", "Created", - "Accepted", - "NotFound", - "Conflict" + "Accepted", + "NotFound", + "Conflict" ], "x-ms-enum": { "name": "HttpStatusCode", @@ -5219,7 +5216,7 @@ "format": "int32", "description": "Operation response HTTP status code.", "minimum": 100, - "maximum": 599 + "maximum": 599 }, "description": { "type": "string", @@ -5257,7 +5254,7 @@ "externalDocs": { "description": "As defined by RFC.", "url": "http://www.rfc-editor.org/rfc/rfc7230.txt" - } + } }, "urlTemplate": { "type": "string", @@ -5571,13 +5568,13 @@ "primaryKey": { "type": "string", "description": "Primary subscription key.", - "minLength": 1, + "minLength": 1, "maxLength": 256 }, "secondaryKey": { "type": "string", "description": "Secondary subscription key.", - "minLength": 1, + "minLength": 1, "maxLength": 256 }, "state": { @@ -6093,7 +6090,7 @@ "id": { "readOnly": true, "type": "string", - "description": "Uniquely identifies the authorization server within the current API Management service instance. The value is a valid relative URL in the format of /authorizationServers/{authsid} where {authsid} is an authorization server identifier." + "description": "Uniquely identifies the authorization server within the current API Management service instance. The value is a valid relative URL in the format of /authorizationServers/{authsid} where {authsid} is an authorization server identifier." }, "name": { "type": "string", @@ -6164,7 +6161,7 @@ } }, "supportState": { - "type": "boolean", + "type": "boolean", "description": "If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.", "externalDocs": { "url": "http://tools.ietf.org/html/rfc6749#section-3.1" @@ -6241,31 +6238,31 @@ ], "description": "External OAuth authorization server settings.", "example": { - "id": "/authorizationServers/554be23d0fce600674232c33", - "name": "AAD OAuth A/S", - "description": null, - "clientRegistrationEndpoint": "https://contoso.com/", - "authorizationEndpoint": "https://login.microsoftonline.com/55abb68a-8ews-4565-8675-927722a8a005/oauth2/authorize?api-version=1.0", - "authorizationMethods": [ - "GET" - ], - "clientAuthenticationMethod": [ - "Body" - ], - "tokenBodyParameters": [], - "tokenEndpoint": "https://login.microsoftonline.com/55abb68a-8ews-4565-8675-927722a8a005/oauth2/token?api-version=1.0", - "supportState": false, - "defaultScope": null, - "grantTypes": [ - "authorizationCode" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "demo", - "clientSecret": "demo", - "resourceOwnerUsername": null, - "resourceOwnerPassword": null + "id": "/authorizationServers/554be23d0fce600674232c33", + "name": "AAD OAuth A/S", + "description": null, + "clientRegistrationEndpoint": "https://contoso.com/", + "authorizationEndpoint": "https://login.microsoftonline.com/55abb68a-8ews-4565-8675-927722a8a005/oauth2/authorize?api-version=1.0", + "authorizationMethods": [ + "GET" + ], + "clientAuthenticationMethod": [ + "Body" + ], + "tokenBodyParameters": [], + "tokenEndpoint": "https://login.microsoftonline.com/55abb68a-8ews-4565-8675-927722a8a005/oauth2/token?api-version=1.0", + "supportState": false, + "defaultScope": null, + "grantTypes": [ + "authorizationCode" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "demo", + "clientSecret": "demo", + "resourceOwnerUsername": null, + "resourceOwnerPassword": null } }, "AuthorizationServerCollection": { @@ -6288,9 +6285,9 @@ } }, "description": "Paged OAuth2 Authorization Servers list representation." - }, + }, "OAuth2AuthorizationServerUpdateContract": { - "properties": { + "properties": { "name": { "type": "string", "description": "User-friendly authorization server name.", @@ -6360,7 +6357,7 @@ } }, "supportState": { - "type": "boolean", + "type": "boolean", "description": "If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.", "externalDocs": { "url": "http://tools.ietf.org/html/rfc6749#section-3.1" @@ -6428,8 +6425,8 @@ "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password." } }, - "description": "External OAuth authorization server Update settings contract." - }, + "description": "External OAuth authorization server Update settings contract." + }, "RegionContract": { "properties": { "name": { @@ -6669,15 +6666,15 @@ "type": "string" }, "description": "The name and SendRule connection string of the event hub.", - "example":{ - "name" : "apim", - "connectionString" : "Endpoint=sb://contoso-ns.servicebus.windows.net/;SharedAccessKeyName=Sender;SharedAccessKey=..." - } + "example": { + "name": "apim", + "connectionString": "Endpoint=sb://contoso-ns.servicebus.windows.net/;SharedAccessKeyName=Sender;SharedAccessKey=..." + } }, "isBuffered": { "type": "boolean", "description": "Whether records are buffered in the logger before publishing. Default is assumed to be true.", - "default": true + "default": true } }, "required": [ @@ -6730,9 +6727,9 @@ "type": "string" }, "description": "The name and SendRule connection string of the event hub.", - "example":{ - "name" : "Event hub name. This is optional.", - "connectionString" : "Endpoint=endpoint and key from Azure classic portal. This property in credentials is must." + "example": { + "name": "Event hub name. This is optional.", + "connectionString": "Endpoint=endpoint and key from Azure classic portal. This property in credentials is must." } }, "isBuffered": { @@ -6779,7 +6776,7 @@ "type" ], "description": "Parameters supplied to the Update Logger operation." - }, + }, "BackendResponse": { "properties": { "id": { @@ -6816,7 +6813,7 @@ }, "description": "Paged Backend list representation." }, - "BackendContract": { + "BackendContract": { "properties": { "host": { "type": "string", @@ -6827,7 +6824,7 @@ "skipCertificateChainValidation": { "type": "boolean", "description": "Flag indicating whether SSL certificate chain validation should be skipped when using self-signed certificates for this backend host.", - "default": false + "default": false } }, "required": [ @@ -6846,7 +6843,7 @@ "skipCertificateChainValidation": { "type": "boolean", "description": "Flag indicating whether SSL certificate chain validation should be skipped when using self-signed certificates for this backend host.", - "default": false + "default": false } }, "description": "Parameters supplied to the Update Backend operation." @@ -6887,14 +6884,14 @@ "twitter", "aad" ], - "x-ms-enum": { - "name": "IdentityProviderNameType", - "modelAsString": true + "x-ms-enum": { + "name": "IdentityProviderNameType", + "modelAsString": true }, - "description": "Identity Provider Type identifier." + "description": "Identity Provider Type identifier." }, "allowedTenants": { - "type": "array", + "type": "array", "items": { "type": "string" }, @@ -6910,7 +6907,7 @@ }, "IdentityProviderUpdateParameters": { "properties": { - "clientId": { + "clientId": { "type": "string", "description": "Client Id of the Application in the external Identity Provider. It is App ID for Facebook login, Client ID for Google login, App ID for Microsoft.", "minLength": 1 @@ -6921,7 +6918,7 @@ "minLength": 1 }, "allowedTenants": { - "type": "array", + "type": "array", "items": { "type": "string" }, @@ -7027,7 +7024,7 @@ }, "PropertyUpdateParameters": { "properties": { - "name": { + "name": { "type": "string", "description": "Unique name of Property. It may contain only letters, digits, period, dash, and underscore characters.", "minLength": 1, @@ -7211,12 +7208,12 @@ "statusCode": { "type": "string", "enum": [ - "Continue", + "Continue", "OK", "Created", - "Accepted", - "NotFound", - "Conflict" + "Accepted", + "NotFound", + "Conflict" ], "x-ms-enum": { "name": "HttpStatusCode", @@ -7378,7 +7375,7 @@ }, "description": "Paged Quota Counter list representation." }, - "QuotaCounterContract": { + "QuotaCounterContract": { "properties": { "counterKey": { "type": "string", @@ -7414,7 +7411,7 @@ ], "description": "Quota counter details." }, - "QuotaCounterValueContract": { + "QuotaCounterValueContract": { "properties": { "callsCount": { "type": "integer", @@ -7474,7 +7471,7 @@ "maxLength": 256, "pattern": "^[^*#&+:<>?]+$", "x-ms-parameter-location": "method" - }, + }, "OperationIdParameter": { "name": "operationId", "in": "path", @@ -7573,17 +7570,17 @@ "name": "quotaCounterKey", "in": "path", "required": true, - "type": "string", - "description": "Quota counter key identifier.", + "type": "string", + "description": "Quota counter key identifier.", "x-ms-parameter-location": "method" }, "QuotaPeriodKeyParameter": { "name": "quotaPeriodKey", "in": "path", "required": true, - "type": "string", - "description": "Quota period key identifier.", + "type": "string", + "description": "Quota period key identifier.", "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-07-07/apimdeployment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-07-07/apimdeployment.json index 33442505f330..3dc134781289 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-07-07/apimdeployment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-07-07/apimdeployment.json @@ -342,7 +342,7 @@ } ], "responses": { - "200": { + "200": { "description": "Service was successfully deleted." }, "204": { @@ -388,8 +388,8 @@ } } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.ApiManagement/service/": { - "get": { + "/subscriptions/{subscriptionId}/providers/Microsoft.ApiManagement/service/": { + "get": { "tags": [ "ApiManagementService" ], @@ -946,10 +946,10 @@ } }, "allOf": [ - { - "$ref" : "#/definitions/ApiManagementServiceBaseParameters" - } - ], + { + "$ref": "#/definitions/ApiManagementServiceBaseParameters" + } + ], "required": [ "sku", "properties", @@ -1157,4 +1157,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimanagement.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimanagement.json index 0e12b9c9991d..6b25b9b9a145 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimanagement.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimanagement.json @@ -76,8 +76,8 @@ "responses": { "200": { "description": "Returns an array of Policy Contracts.", - "schema": { - "$ref": "#/definitions/PolicySnippetsCollection" + "schema": { + "$ref": "#/definitions/PolicySnippetsCollection" } } } @@ -118,7 +118,7 @@ } } }, - "definitions": { + "definitions": { "ErrorFieldContract": { "properties": { "code": { @@ -235,58 +235,58 @@ } }, "parameters": { - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Version of the API to be used with the client request." - }, - "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group.", - "x-ms-parameter-location": "method" - }, - "ServiceNameParameter": { - "name": "serviceName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the API Management service.", - "minLength": 1, - "maxLength": 50, - "pattern": "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$", - "x-ms-parameter-location": "method" - }, - "SkipQueryParameter": { - "name": "$skip", - "in": "query", - "required": false, - "type": "integer", - "format": "int32", - "description": "Number of records to skip.", - "minimum": 0, - "x-ms-parameter-location": "method" - }, - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." - }, - "TopQueryParameter": { - "name": "$top", - "in": "query", - "required": false, - "type": "integer", - "format": "int32", - "description": "Number of records to return.", - "minimum": 1, - "x-ms-parameter-location": "method" - } + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Version of the API to be used with the client request." + }, + "ResourceGroupNameParameter": { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the resource group.", + "x-ms-parameter-location": "method" + }, + "ServiceNameParameter": { + "name": "serviceName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the API Management service.", + "minLength": 1, + "maxLength": 50, + "pattern": "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$", + "x-ms-parameter-location": "method" + }, + "SkipQueryParameter": { + "name": "$skip", + "in": "query", + "required": false, + "type": "integer", + "format": "int32", + "description": "Number of records to skip.", + "minimum": 0, + "x-ms-parameter-location": "method" + }, + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "required": true, + "type": "string", + "description": "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." + }, + "TopQueryParameter": { + "name": "$top", + "in": "query", + "required": false, + "type": "integer", + "format": "int32", + "description": "Number of records to return.", + "minimum": 1, + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimapis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimapis.json index 8cd734f95254..aed2a784c398 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimapis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimapis.json @@ -83,7 +83,7 @@ "schema": { "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" } - } + } }, "x-ms-pageable": { "nextLinkName": "nextLink" @@ -127,11 +127,11 @@ "schema": { "$ref": "#/definitions/ApiContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -185,7 +185,7 @@ "201": { "description": "API was successfully created." }, - "204":{ + "204": { "description": "API was successfully updated." }, "default": { @@ -380,11 +380,11 @@ "schema": { "$ref": "#/definitions/OperationContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -434,7 +434,7 @@ "201": { "description": "Operation was successfully created." }, - "204":{ + "204": { "description": "Operation was successfully updated." }, "default": { @@ -533,7 +533,7 @@ } ], "responses": { - "204": { + "204": { "description": "The operation was successfully deleted." }, "default": { @@ -576,16 +576,16 @@ } ], "responses": { - "200": { + "200": { "description": "Api Operation Policy information.", "schema": { "type": "file" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } } } @@ -640,7 +640,7 @@ "201": { "description": "Api Operation policy configuration was successfully created." }, - "204":{ + "204": { "description": "Api Operation policy configuration of the tenant was successfully updated." }, "default": { @@ -650,7 +650,7 @@ } } } - }, + }, "delete": { "tags": [ "ApiOperationsPolicy" @@ -685,7 +685,7 @@ } ], "responses": { - "204": { + "204": { "description": "Successfully deleted the policy configuration at the API Operation level." }, "default": { @@ -782,16 +782,16 @@ } ], "responses": { - "200": { + "200": { "description": "Api Policy information.", "schema": { "type": "file" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } } } @@ -843,7 +843,7 @@ "201": { "description": "Api policy configuration was successfully created." }, - "204":{ + "204": { "description": "Api policy configuration of the tenant was successfully updated." }, "default": { @@ -853,7 +853,7 @@ } } } - }, + }, "delete": { "tags": [ "ApiPolicy" @@ -885,7 +885,7 @@ } ], "responses": { - "204": { + "204": { "description": "Successfully deleted the policy configuration at the API level." }, "default": { @@ -899,7 +899,7 @@ } }, "x-ms-paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}?export=true": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}?export=true": { "get": { "tags": [ "Apis" @@ -907,7 +907,7 @@ "operationId": "ApiExport_Get", "description": "Gets the details of the API specified by its identifier.", "parameters": [ - { + { "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" }, { @@ -940,7 +940,7 @@ } } }, - "definitions": { + "definitions": { "ApiCollection": { "properties": { "value": { @@ -1395,27 +1395,27 @@ } }, "parameters": { - "ApiIdParameter": { - "name": "apiId", - "in": "path", - "required": true, - "type": "string", - "description": "API identifier. Must be unique in the current API Management service instance.", - "minLength": 1, - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" - }, - "OperationIdParameter": { - "name": "operationId", - "in": "path", - "required": true, - "type": "string", - "description": "Operation identifier within an API. Must be unique in the current API Management service instance.", - "minLength": 1, - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" - } + "ApiIdParameter": { + "name": "apiId", + "in": "path", + "required": true, + "type": "string", + "description": "API identifier. Must be unique in the current API Management service instance.", + "minLength": 1, + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" + }, + "OperationIdParameter": { + "name": "operationId", + "in": "path", + "required": true, + "type": "string", + "description": "Operation identifier within an API. Must be unique in the current API Management service instance.", + "minLength": 1, + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimauthorizationservers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimauthorizationservers.json index 4840f2a600ec..866a79abf6d0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimauthorizationservers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimauthorizationservers.json @@ -56,7 +56,7 @@ "in": "query", "required": false, "type": "string", - "description": "| Field | Supported operators | Supported functions |\n|-------|------------------------|---------------------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| name | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |" + "description": "| Field | Supported operators | Supported functions |\n|-------|------------------------|---------------------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| name | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |" }, { "$ref": "./apimanagement.json#/parameters/TopQueryParameter" @@ -77,7 +77,7 @@ "schema": { "$ref": "#/definitions/AuthorizationServerCollection" } - } + } }, "x-ms-pageable": { "nextLinkName": "nextLink" @@ -101,7 +101,7 @@ }, { "$ref": "#/parameters/AuthenticationServerIdParameter" - }, + }, { "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" }, @@ -115,11 +115,11 @@ "schema": { "$ref": "#/definitions/OAuth2AuthorizationServerContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -272,339 +272,339 @@ } } }, - "definitions": { - "AuthorizationServerCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/OAuth2AuthorizationServerContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged OAuth2 Authorization Servers list representation." - }, - "OAuth2AuthorizationServerContract": { - "properties": { - "id": { - "readOnly": true, - "type": "string", - "description": "Uniquely identifies the authorization server within the current API Management service instance. The value is a valid relative URL in the format of /authorizationServers/{authsid} where {authsid} is an authorization server identifier." - }, - "name": { - "type": "string", - "description": "User-friendly authorization server name.", - "minLength": 1, - "maxLength": 50 - }, - "description": { - "type": "string", - "description": "Description of the authorization server. Can contain HTML formatting tags." - }, - "clientRegistrationEndpoint": { - "type": "string", - "description": "Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced." - }, - "authorizationEndpoint": { - "type": "string", - "description": "OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2." - }, - "authorizationMethods": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "HEAD", - "OPTIONS", - "TRACE", - "GET", - "POST", - "PUT", - "PATCH", - "DELETE" - ], - "x-ms-enum": { - "name": "MethodContract", - "modelAsString": false - } - }, - "description": "HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional." - }, - "clientAuthenticationMethod": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "Basic", - "Body" - ], - "x-ms-enum": { - "name": "ClientAuthenticationMethodContract", - "modelAsString": false - } - }, - "description": "Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format." - }, - "tokenBodyParameters": { - "type": "array", - "items": { - "$ref": "#/definitions/TokenBodyParameterContract" - }, - "description": "Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {\"name\" : \"name value\", \"value\": \"a value\"}." - }, - "tokenEndpoint": { - "type": "string", - "description": "OAuth token endpoint. Contains absolute URI to entity being referenced.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-3.1" - } - }, - "supportState": { - "type": "boolean", - "description": "If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-3.1" - } - }, - "defaultScope": { - "type": "string", - "description": "Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-3.3" - } - }, - "grantTypes": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "authorizationCode", - "implicit", - "resourceOwnerPassword", - "clientCredentials" - ], - "x-ms-enum": { - "name": "GrantTypesContract", - "modelAsString": false - } - }, - "description": "Form of an authorization grant, which the client uses to request the access token.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-4" - } - }, - "bearerTokenSendingMethods": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "authorizationHeader", - "query" - ], - "x-ms-enum": { - "name": "BearerTokenSendingMethodsContract", - "modelAsString": false - } - }, - "description": "Specifies the mechanism by which access token is passed to the API. ", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-4" - } - }, - "clientId": { - "type": "string", - "description": "Client or app id registered with this authorization server." - }, - "clientSecret": { - "type": "string", - "description": "Client or app secret registered with this authorization server." - }, - "resourceOwnerUsername": { - "type": "string", - "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username." - }, - "resourceOwnerPassword": { - "type": "string", - "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password." - } - }, - "required": [ - "name", - "clientRegistrationEndpoint", - "authorizationEndpoint", - "clientId", - "grantTypes" - ], - "description": "External OAuth authorization server settings." - }, - "OAuth2AuthorizationServerUpdateContract": { - "properties": { - "name": { - "type": "string", - "description": "User-friendly authorization server name.", - "minLength": 1, - "maxLength": 50 - }, - "description": { - "type": "string", - "description": "Description of the authorization server. Can contain HTML formatting tags." - }, - "clientRegistrationEndpoint": { - "type": "string", - "description": "Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced." - }, - "authorizationEndpoint": { - "type": "string", - "description": "OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2." - }, - "authorizationMethods": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "HEAD", - "OPTIONS", - "TRACE", - "GET", - "POST", - "PUT", - "PATCH", - "DELETE" - ], - "x-ms-enum": { - "name": "MethodContract", - "modelAsString": false - } - }, - "description": "HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional." - }, - "clientAuthenticationMethod": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "Basic", - "Body" - ], - "x-ms-enum": { - "name": "ClientAuthenticationMethodContract", - "modelAsString": false - } - }, - "description": "Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format." - }, - "tokenBodyParameters": { - "type": "array", - "items": { - "$ref": "#/definitions/TokenBodyParameterContract" - }, - "description": "Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {\"name\" : \"name value\", \"value\": \"a value\"}." - }, - "tokenEndpoint": { - "type": "string", - "description": "OAuth token endpoint. Contains absolute URI to entity being referenced.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-3.1" - } - }, - "supportState": { - "type": "boolean", - "description": "If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-3.1" - } - }, - "defaultScope": { - "type": "string", - "description": "Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-3.3" - } - }, - "grantTypes": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "authorizationCode", - "implicit", - "resourceOwnerPassword", - "clientCredentials" - ], - "x-ms-enum": { - "name": "GrantTypesContract", - "modelAsString": false - } - }, - "description": "Form of an authorization grant, which the client uses to request the access token.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-4" - } - }, - "bearerTokenSendingMethods": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "authorizationHeader", - "query" - ], - "x-ms-enum": { - "name": "BearerTokenSendingMethodsContract", - "modelAsString": false - } - }, - "description": "Specifies the mechanism by which access token is passed to the API. ", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-4" - } - }, - "clientId": { - "type": "string", - "description": "Client or app id registered with this authorization server." - }, - "clientSecret": { - "type": "string", - "description": "Client or app secret registered with this authorization server." - }, - "resourceOwnerUsername": { - "type": "string", - "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username." - }, - "resourceOwnerPassword": { - "type": "string", - "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password." - } - }, - "description": "External OAuth authorization server Update settings contract." - }, - "TokenBodyParameterContract": { - "properties": { - "name": { - "type": "string", - "description": "body parameter name." - }, - "value": { - "type": "string", - "description": "body parameter value." - } - }, - "required": [ - "name", - "value" - ], - "description": "OAuth acquire token request body parameter (www-url-form-encoded)." - } + "definitions": { + "AuthorizationServerCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/OAuth2AuthorizationServerContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged OAuth2 Authorization Servers list representation." + }, + "OAuth2AuthorizationServerContract": { + "properties": { + "id": { + "readOnly": true, + "type": "string", + "description": "Uniquely identifies the authorization server within the current API Management service instance. The value is a valid relative URL in the format of /authorizationServers/{authsid} where {authsid} is an authorization server identifier." + }, + "name": { + "type": "string", + "description": "User-friendly authorization server name.", + "minLength": 1, + "maxLength": 50 + }, + "description": { + "type": "string", + "description": "Description of the authorization server. Can contain HTML formatting tags." + }, + "clientRegistrationEndpoint": { + "type": "string", + "description": "Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced." + }, + "authorizationEndpoint": { + "type": "string", + "description": "OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2." + }, + "authorizationMethods": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "HEAD", + "OPTIONS", + "TRACE", + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], + "x-ms-enum": { + "name": "MethodContract", + "modelAsString": false + } + }, + "description": "HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional." + }, + "clientAuthenticationMethod": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "Basic", + "Body" + ], + "x-ms-enum": { + "name": "ClientAuthenticationMethodContract", + "modelAsString": false + } + }, + "description": "Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format." + }, + "tokenBodyParameters": { + "type": "array", + "items": { + "$ref": "#/definitions/TokenBodyParameterContract" + }, + "description": "Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {\"name\" : \"name value\", \"value\": \"a value\"}." + }, + "tokenEndpoint": { + "type": "string", + "description": "OAuth token endpoint. Contains absolute URI to entity being referenced.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-3.1" + } + }, + "supportState": { + "type": "boolean", + "description": "If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-3.1" + } + }, + "defaultScope": { + "type": "string", + "description": "Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-3.3" + } + }, + "grantTypes": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "authorizationCode", + "implicit", + "resourceOwnerPassword", + "clientCredentials" + ], + "x-ms-enum": { + "name": "GrantTypesContract", + "modelAsString": false + } + }, + "description": "Form of an authorization grant, which the client uses to request the access token.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-4" + } + }, + "bearerTokenSendingMethods": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "authorizationHeader", + "query" + ], + "x-ms-enum": { + "name": "BearerTokenSendingMethodsContract", + "modelAsString": false + } + }, + "description": "Specifies the mechanism by which access token is passed to the API. ", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-4" + } + }, + "clientId": { + "type": "string", + "description": "Client or app id registered with this authorization server." + }, + "clientSecret": { + "type": "string", + "description": "Client or app secret registered with this authorization server." + }, + "resourceOwnerUsername": { + "type": "string", + "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username." + }, + "resourceOwnerPassword": { + "type": "string", + "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password." + } + }, + "required": [ + "name", + "clientRegistrationEndpoint", + "authorizationEndpoint", + "clientId", + "grantTypes" + ], + "description": "External OAuth authorization server settings." + }, + "OAuth2AuthorizationServerUpdateContract": { + "properties": { + "name": { + "type": "string", + "description": "User-friendly authorization server name.", + "minLength": 1, + "maxLength": 50 + }, + "description": { + "type": "string", + "description": "Description of the authorization server. Can contain HTML formatting tags." + }, + "clientRegistrationEndpoint": { + "type": "string", + "description": "Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced." + }, + "authorizationEndpoint": { + "type": "string", + "description": "OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2." + }, + "authorizationMethods": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "HEAD", + "OPTIONS", + "TRACE", + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], + "x-ms-enum": { + "name": "MethodContract", + "modelAsString": false + } + }, + "description": "HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional." + }, + "clientAuthenticationMethod": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "Basic", + "Body" + ], + "x-ms-enum": { + "name": "ClientAuthenticationMethodContract", + "modelAsString": false + } + }, + "description": "Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format." + }, + "tokenBodyParameters": { + "type": "array", + "items": { + "$ref": "#/definitions/TokenBodyParameterContract" + }, + "description": "Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {\"name\" : \"name value\", \"value\": \"a value\"}." + }, + "tokenEndpoint": { + "type": "string", + "description": "OAuth token endpoint. Contains absolute URI to entity being referenced.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-3.1" + } + }, + "supportState": { + "type": "boolean", + "description": "If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-3.1" + } + }, + "defaultScope": { + "type": "string", + "description": "Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-3.3" + } + }, + "grantTypes": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "authorizationCode", + "implicit", + "resourceOwnerPassword", + "clientCredentials" + ], + "x-ms-enum": { + "name": "GrantTypesContract", + "modelAsString": false + } + }, + "description": "Form of an authorization grant, which the client uses to request the access token.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-4" + } + }, + "bearerTokenSendingMethods": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "authorizationHeader", + "query" + ], + "x-ms-enum": { + "name": "BearerTokenSendingMethodsContract", + "modelAsString": false + } + }, + "description": "Specifies the mechanism by which access token is passed to the API. ", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-4" + } + }, + "clientId": { + "type": "string", + "description": "Client or app id registered with this authorization server." + }, + "clientSecret": { + "type": "string", + "description": "Client or app secret registered with this authorization server." + }, + "resourceOwnerUsername": { + "type": "string", + "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username." + }, + "resourceOwnerPassword": { + "type": "string", + "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password." + } + }, + "description": "External OAuth authorization server Update settings contract." + }, + "TokenBodyParameterContract": { + "properties": { + "name": { + "type": "string", + "description": "body parameter name." + }, + "value": { + "type": "string", + "description": "body parameter value." + } + }, + "required": [ + "name", + "value" + ], + "description": "OAuth acquire token request body parameter (www-url-form-encoded)." + } }, "parameters": { "AuthenticationServerIdParameter": { @@ -618,4 +618,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimbackends.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimbackends.json index 6d94733c69b4..57496f66450f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimbackends.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimbackends.json @@ -121,11 +121,11 @@ "schema": { "$ref": "#/definitions/BackendResponse" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -223,7 +223,7 @@ } ], "responses": { - "204": { + "204": { "description": "The existing backend was successfully updated." }, "default": { @@ -278,255 +278,255 @@ } } }, - "definitions": { - "BackendAuthorizationHeaderCredentials": { - "properties": { - "scheme": { - "type": "string", - "description": "Authentication Scheme name.", - "minLength": 1, - "maxLength": 100 - }, - "parameter": { - "type": "string", - "description": "Authentication Parameter value.", - "minLength": 1, - "maxLength": 300 - } - }, - "required": [ - "scheme", - "parameter" - ], - "description": "Authorization header information." - }, - "BackendBaseParameters": { - "properties": { - "title": { - "type": "string", - "description": "Backend Title.", - "minLength": 1, - "maxLength": 300 - }, - "description": { - "type": "string", - "description": "Backend Description.", - "minLength": 1, - "maxLength": 2000 - }, - "resourceId": { - "type": "string", - "description": "Management Uri of the Resource in External System. This url can be the Arm Resource Id of Logic Apps, Function Apps or Api Apps.", - "minLength": 1, - "maxLength": 2000 - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/BackendProperties" - } - }, - "allOf": [ - { - "$ref": "#/definitions/BackendCredentialsContract" - }, - { - "$ref": "#/definitions/BackendProxyContract" - } - ], - "description": "Backend entity base Parameter set." - }, - "BackendCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/BackendResponse" - }, - "description": "Backend values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged Backend list representation." - }, - "BackendContract": { - "properties": { - "id": { - "type": "string", - "description": "Uniquely identifies the backend within the current API Management service instance. The value is a valid relative URL in the format of /backends/{backendId} where {backendId} is a backend identifier.", - "readOnly": true - }, - "url": { - "type": "string", - "description": "Runtime Url of the Backend.", - "minLength": 1, - "maxLength": 2000 - }, - "protocol": { - "type": "string", - "enum": [ - "http", - "soap" - ], - "x-ms-enum": { - "name": "BackendProtocol", - "modelAsString": true - }, - "description": "Backend communication protocol." - } - }, - "allOf": [ - { - "$ref": "#/definitions/BackendBaseParameters" - } - ], - "required": [ - "url", - "protocol" - ], - "description": "Parameters supplied to the Create Backend operation." - }, - "BackendCredentialsContract": { - "properties": { - "certificate": { - "type": "array", - "items": { - "type": "string" - }, - "maxItems": 32, - "description": "List of Client Certificate Thumbprint." - }, - "query": { - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - }, - "description": "Query Parameter description." - }, - "header": { - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - }, - "description": "Header Parameter description." - } - }, - "allOf": [ - { - "$ref": "#/definitions/BackendAuthorizationHeaderCredentials" - } - ], - "description": "Details of the Credentials used to connect to Backend." - }, - "BackendProperties": { - "properties": { - "skipCertificateChainValidation": { - "type": "boolean", - "description": "Flag indicating whether SSL certificate chain validation should be skipped when using self-signed certificates for this backend host.", - "default": false - }, - "skipCertificateNameValidation": { - "type": "boolean", - "description": "Flag indicating whether SSL certificate name validation should be skipped when using self-signed certificates for this backend host.", - "default": false - } - }, - "description": "Properties specific to a Backend." - }, - "BackendProxyContract": { - "externalDocs": { - "url": "https://msdn.microsoft.com/en-us/library/system.net.webproxy(v=vs.110).aspx", - "description": "Backend entity uses these details to connect to a WebProxy." - }, - "properties": { - "url": { - "type": "string", - "description": "WebProxy Server AbsoluteUri property which includes the entire URI stored in the Uri instance, including all fragments and query strings.", - "minLength": 1, - "maxLength": 2000 - }, - "username": { - "type": "string", - "description": "Username to connect to the WebProxy server" - }, - "password": { - "type": "string", - "description": "Password to connect to the WebProxy Server" - } - }, - "required": [ - "url" - ], - "description": "Details of the Backend WebProxy Server to use in the Request to Backend." - }, - "BackendResponse": { - "properties": { - "id": { - "type": "string", - "description": "Uniquely identifies the backend within the current API Management service instance. The value is a valid relative URL in the format of /backends/{backendId} where {backendId} is a backend identifier.", - "readOnly": true - } - }, - "allOf": [ - { - "$ref": "#/definitions/BackendContract" - } - ], - "description": "The Backend entity in API Management represents a backend service that is configured to skip certification chain validation when using a self-signed certificate to test mutual certificate authentication." - }, - "BackendUpdateParameters": { - "properties": { - "url": { - "type": "string", - "description": "Runtime Url of the Backend.", - "minLength": 1, - "maxLength": 2000 - }, - "protocol": { - "type": "string", - "enum": [ - "http", - "soap" - ], - "x-ms-enum": { - "name": "BackendProtocol", - "modelAsString": true - }, - "description": "Backend communication protocol." - } - }, - "allOf": [ - { - "$ref": "#/definitions/BackendBaseParameters" - } - ], - "description": "Parameters supplied to the Update Backend operation." - } + "definitions": { + "BackendAuthorizationHeaderCredentials": { + "properties": { + "scheme": { + "type": "string", + "description": "Authentication Scheme name.", + "minLength": 1, + "maxLength": 100 + }, + "parameter": { + "type": "string", + "description": "Authentication Parameter value.", + "minLength": 1, + "maxLength": 300 + } + }, + "required": [ + "scheme", + "parameter" + ], + "description": "Authorization header information." + }, + "BackendBaseParameters": { + "properties": { + "title": { + "type": "string", + "description": "Backend Title.", + "minLength": 1, + "maxLength": 300 + }, + "description": { + "type": "string", + "description": "Backend Description.", + "minLength": 1, + "maxLength": 2000 + }, + "resourceId": { + "type": "string", + "description": "Management Uri of the Resource in External System. This url can be the Arm Resource Id of Logic Apps, Function Apps or Api Apps.", + "minLength": 1, + "maxLength": 2000 + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/BackendProperties" + } + }, + "allOf": [ + { + "$ref": "#/definitions/BackendCredentialsContract" + }, + { + "$ref": "#/definitions/BackendProxyContract" + } + ], + "description": "Backend entity base Parameter set." + }, + "BackendCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/BackendResponse" + }, + "description": "Backend values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Backend list representation." + }, + "BackendContract": { + "properties": { + "id": { + "type": "string", + "description": "Uniquely identifies the backend within the current API Management service instance. The value is a valid relative URL in the format of /backends/{backendId} where {backendId} is a backend identifier.", + "readOnly": true + }, + "url": { + "type": "string", + "description": "Runtime Url of the Backend.", + "minLength": 1, + "maxLength": 2000 + }, + "protocol": { + "type": "string", + "enum": [ + "http", + "soap" + ], + "x-ms-enum": { + "name": "BackendProtocol", + "modelAsString": true + }, + "description": "Backend communication protocol." + } + }, + "allOf": [ + { + "$ref": "#/definitions/BackendBaseParameters" + } + ], + "required": [ + "url", + "protocol" + ], + "description": "Parameters supplied to the Create Backend operation." + }, + "BackendCredentialsContract": { + "properties": { + "certificate": { + "type": "array", + "items": { + "type": "string" + }, + "maxItems": 32, + "description": "List of Client Certificate Thumbprint." + }, + "query": { + "type": "object", + "additionalProperties": { + "type": "array", + "items": { + "type": "string" + } + }, + "description": "Query Parameter description." + }, + "header": { + "type": "object", + "additionalProperties": { + "type": "array", + "items": { + "type": "string" + } + }, + "description": "Header Parameter description." + } + }, + "allOf": [ + { + "$ref": "#/definitions/BackendAuthorizationHeaderCredentials" + } + ], + "description": "Details of the Credentials used to connect to Backend." + }, + "BackendProperties": { + "properties": { + "skipCertificateChainValidation": { + "type": "boolean", + "description": "Flag indicating whether SSL certificate chain validation should be skipped when using self-signed certificates for this backend host.", + "default": false + }, + "skipCertificateNameValidation": { + "type": "boolean", + "description": "Flag indicating whether SSL certificate name validation should be skipped when using self-signed certificates for this backend host.", + "default": false + } + }, + "description": "Properties specific to a Backend." + }, + "BackendProxyContract": { + "externalDocs": { + "url": "https://msdn.microsoft.com/en-us/library/system.net.webproxy(v=vs.110).aspx", + "description": "Backend entity uses these details to connect to a WebProxy." + }, + "properties": { + "url": { + "type": "string", + "description": "WebProxy Server AbsoluteUri property which includes the entire URI stored in the Uri instance, including all fragments and query strings.", + "minLength": 1, + "maxLength": 2000 + }, + "username": { + "type": "string", + "description": "Username to connect to the WebProxy server" + }, + "password": { + "type": "string", + "description": "Password to connect to the WebProxy Server" + } + }, + "required": [ + "url" + ], + "description": "Details of the Backend WebProxy Server to use in the Request to Backend." + }, + "BackendResponse": { + "properties": { + "id": { + "type": "string", + "description": "Uniquely identifies the backend within the current API Management service instance. The value is a valid relative URL in the format of /backends/{backendId} where {backendId} is a backend identifier.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/BackendContract" + } + ], + "description": "The Backend entity in API Management represents a backend service that is configured to skip certification chain validation when using a self-signed certificate to test mutual certificate authentication." + }, + "BackendUpdateParameters": { + "properties": { + "url": { + "type": "string", + "description": "Runtime Url of the Backend.", + "minLength": 1, + "maxLength": 2000 + }, + "protocol": { + "type": "string", + "enum": [ + "http", + "soap" + ], + "x-ms-enum": { + "name": "BackendProtocol", + "modelAsString": true + }, + "description": "Backend communication protocol." + } + }, + "allOf": [ + { + "$ref": "#/definitions/BackendBaseParameters" + } + ], + "description": "Parameters supplied to the Update Backend operation." + } }, "parameters": { - "BackendIdParameter": { - "name": "backendid", - "in": "path", - "required": true, - "type": "string", - "description": "Identifier of the Backend entity. Must be unique in the current API Management service instance.", - "minLength": 1, - "maxLength": 255, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" - } + "BackendIdParameter": { + "name": "backendid", + "in": "path", + "required": true, + "type": "string", + "description": "Identifier of the Backend entity. Must be unique in the current API Management service instance.", + "minLength": 1, + "maxLength": 255, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimcertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimcertificates.json index 7cc24179b4d9..b3d4adf28d25 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimcertificates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimcertificates.json @@ -121,11 +121,11 @@ "schema": { "$ref": "#/definitions/CertificateContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -183,7 +183,7 @@ "201": { "description": "The new certificate was successfully added." }, - "204":{ + "204": { "description": "The certificate details were successfully updated." }, "default": { @@ -240,83 +240,83 @@ }, "definitions": { "CertificateCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/CertificateContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged Certificates list representation." - }, - "CertificateContract": { - "properties": { - "id": { - "type": "string", - "description": "Certificate identifier path: /certificates/{certificateId}", - "readOnly": true - }, - "subject": { - "type": "string", - "description": "Subject attribute of the certificate." - }, - "thumbprint": { - "type": "string", - "description": "Thumbprint of the certificate." - }, - "expirationDate": { - "type": "string", - "format": "date-time", - "description": "Expiration date of the certificate. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - } - }, - "required": [ - "subject", - "thumbprint", - "expirationDate" - ], - "description": "Certificate details." - }, - "CertificateCreateOrUpdateParameters": { - "properties": { - "data": { - "type": "string", - "description": "Base 64 encoded certificate using the application/x-pkcs12 representation." - }, - "password": { - "type": "string", - "description": "Password for the Certificate" - } - }, - "required": [ - "data", - "password" - ], - "description": "Parameters supplied to the CreateOrUpdate certificate operation." - } + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/CertificateContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Certificates list representation." + }, + "CertificateContract": { + "properties": { + "id": { + "type": "string", + "description": "Certificate identifier path: /certificates/{certificateId}", + "readOnly": true + }, + "subject": { + "type": "string", + "description": "Subject attribute of the certificate." + }, + "thumbprint": { + "type": "string", + "description": "Thumbprint of the certificate." + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "description": "Expiration date of the certificate. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + } + }, + "required": [ + "subject", + "thumbprint", + "expirationDate" + ], + "description": "Certificate details." + }, + "CertificateCreateOrUpdateParameters": { + "properties": { + "data": { + "type": "string", + "description": "Base 64 encoded certificate using the application/x-pkcs12 representation." + }, + "password": { + "type": "string", + "description": "Password for the Certificate" + } + }, + "required": [ + "data", + "password" + ], + "description": "Parameters supplied to the CreateOrUpdate certificate operation." + } }, "parameters": { - "CertificateIdParameter": { - "name": "certificateId", - "in": "path", - "required": true, - "type": "string", - "description": "Identifier of the certificate entity. Must be unique in the current API Management service instance.", - "minLength": 1, - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" - } + "CertificateIdParameter": { + "name": "certificateId", + "in": "path", + "required": true, + "type": "string", + "description": "Identifier of the certificate entity. Must be unique in the current API Management service instance.", + "minLength": 1, + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimdeployment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimdeployment.json index 50770775b5df..08f240e852fc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimdeployment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimdeployment.json @@ -66,8 +66,10 @@ ], "operationId": "ApiManagementServices_ManageDeployments", "description": "Manages deployments of an API Management service. This operation can be used to do the following: Change SKU, Change SKU Units, Change Service Tier (Developer/Standard/Premium) and Manage VPN Configuration. This is a long running operation and can take several minutes to complete.", - "x-ms-examples": { - "ApiManagementServiceManageDeployment": { "$ref": "./examples/ApiManagementServiceManageDeployment.json" } + "x-ms-examples": { + "ApiManagementServiceManageDeployment": { + "$ref": "./examples/ApiManagementServiceManageDeployment.json" + } }, "parameters": [ { @@ -122,8 +124,10 @@ ], "operationId": "ApiManagementServices_Restore", "description": "Restores a backup of an API Management service created using the ApiManagementServices_Backup operation on the current service. This is a long running operation and could take several minutes to complete.", - "x-ms-examples": { - "ApiManagementRestoreService": { "$ref": "./examples/ApiManagementRestoreService.json" } + "x-ms-examples": { + "ApiManagementRestoreService": { + "$ref": "./examples/ApiManagementRestoreService.json" + } }, "parameters": [ { @@ -175,8 +179,10 @@ ], "operationId": "ApiManagementServices_Backup", "description": "Creates a backup of the API Management service to the given Azure Storage Account. This is long running operation and could take several minutes to complete.", - "x-ms-examples": { - "ApiManagementCreateBackup": { "$ref": "./examples/ApiManagementCreateBackup.json" } + "x-ms-examples": { + "ApiManagementCreateBackup": { + "$ref": "./examples/ApiManagementCreateBackup.json" + } }, "parameters": [ { @@ -228,8 +234,10 @@ ], "operationId": "ApiManagementServices_CreateOrUpdate", "description": "Creates or updates an API Management service. This is long running operation and could take several minutes to complete.", - "x-ms-examples": { - "ApiManagementCreateService": { "$ref": "./examples/ApiManagementCreateService.json" } + "x-ms-examples": { + "ApiManagementCreateService": { + "$ref": "./examples/ApiManagementCreateService.json" + } }, "parameters": [ { @@ -379,7 +387,7 @@ } ], "responses": { - "200": { + "200": { "description": "Service was successfully deleted." }, "204": { @@ -425,14 +433,14 @@ } } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.ApiManagement/service/": { - "get": { + "/subscriptions/{subscriptionId}/providers/Microsoft.ApiManagement/service/": { + "get": { "tags": [ "ApiManagementService" ], "operationId": "ApiManagementServices_List", "description": "Lists all API Management services within an Azure subscription.", - "parameters": [ + "parameters": [ { "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" }, @@ -460,8 +468,10 @@ ], "operationId": "ApiManagementServices_GetSsoToken", "description": "Gets the Single-Sign-On token for the API Management Service which is valid for 5 Minutes.", - "x-ms-examples": { - "ApiManagementServiceGetSsoToken": { "$ref": "./examples/ApiManagementServiceGetSsoToken.json" } + "x-ms-examples": { + "ApiManagementServiceGetSsoToken": { + "$ref": "./examples/ApiManagementServiceGetSsoToken.json" + } }, "parameters": [ { @@ -495,8 +505,10 @@ ], "operationId": "ApiManagementServices_CheckNameAvailability", "description": "Checks availability and correctness of a name for an API Management service.", - "x-ms-examples": { - "ApiManagementServiceCheckNameAvailability": { "$ref": "./examples/ApiManagementServiceCheckNameAvailability.json" } + "x-ms-examples": { + "ApiManagementServiceCheckNameAvailability": { + "$ref": "./examples/ApiManagementServiceCheckNameAvailability.json" + } }, "parameters": [ { @@ -532,8 +544,10 @@ ], "operationId": "ApiManagementServices_UploadCertificate", "description": "Upload Custom Domain SSL certificate for an API Management service.", - "x-ms-examples": { - "ApiManagementServiceUploadProxyCertificate": { "$ref": "./examples/ApiManagementServiceUploadProxyCertificate.json" } + "x-ms-examples": { + "ApiManagementServiceUploadProxyCertificate": { + "$ref": "./examples/ApiManagementServiceUploadProxyCertificate.json" + } }, "parameters": [ { @@ -570,7 +584,7 @@ "schema": { "$ref": "#/definitions/ErrorResponse" } - } + } } } }, @@ -581,8 +595,10 @@ ], "operationId": "ApiManagementServices_UpdateHostname", "description": "Creates, updates, or deletes the custom hostnames for an API Management service. The custom hostname can be applied to the Proxy and Portal endpoint. This is a long running operation and could take several minutes to complete.", - "x-ms-examples": { - "ApiManagementServiceUpdateHostName": { "$ref": "./examples/ApiManagementServiceUpdateHostName.json" } + "x-ms-examples": { + "ApiManagementServiceUpdateHostName": { + "$ref": "./examples/ApiManagementServiceUpdateHostName.json" + } }, "parameters": [ { @@ -637,8 +653,10 @@ ], "operationId": "ApiManagementServices_ApplyNetworkConfigurationUpdates", "description": "Updates the Microsoft.ApiManagement resource running in the Virtual network to pick the updated network settings.", - "x-ms-examples": { - "ApiManagementApplyNetworkConfigurationUpdates": { "$ref": "./examples/ApiManagementApplyNetworkConfigurationUpdates.json" } + "x-ms-examples": { + "ApiManagementApplyNetworkConfigurationUpdates": { + "$ref": "./examples/ApiManagementApplyNetworkConfigurationUpdates.json" + } }, "parameters": [ { @@ -730,7 +748,7 @@ "certificate" ], "description": "Custom hostname configuration." - }, + }, "VirtualNetworkConfiguration": { "properties": { "vnetid": { @@ -763,7 +781,7 @@ }, "skuType": { "type": "string", - "description": "The SKU type in the location.", + "description": "The SKU type in the location.", "enum": [ "Developer", "Standard", @@ -914,7 +932,7 @@ "runtimeUrl": { "type": "string", "description": "Proxy endpoint URL of the API Management service.", - "readOnly": true + "readOnly": true }, "portalUrl": { "type": "string", @@ -952,7 +970,7 @@ }, "vpnconfiguration": { "$ref": "#/definitions/VirtualNetworkConfiguration", - "description": "Virtual network configuration of the API Management service." + "description": "Virtual network configuration of the API Management service." }, "additionalLocations": { "type": "array", @@ -981,7 +999,7 @@ "name": "VirtualNetworkType", "modelAsString": false } - } + } }, "required": [ "publisherEmail", @@ -1019,27 +1037,27 @@ ], "description": "API Management service resource SKU properties." }, - "ApiManagementServiceResource":{ + "ApiManagementServiceResource": { "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ApiManagementServiceProperties", - "description": "Properties of the API Management service." - }, - "sku": { - "$ref": "#/definitions/ApiManagementServiceSkuProperties", - "description": "SKU properties of the API Management service." - }, - "etag": { - "type": "string", - "description": "ETag of the resource.", - "readOnly": true + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ApiManagementServiceProperties", + "description": "Properties of the API Management service." + }, + "sku": { + "$ref": "#/definitions/ApiManagementServiceSkuProperties", + "description": "SKU properties of the API Management service." + }, + "etag": { + "type": "string", + "description": "ETag of the resource.", + "readOnly": true } }, "allOf": [ - { - "$ref": "#/definitions/Resource" - } + { + "$ref": "#/definitions/Resource" + } ], "required": [ "sku", @@ -1058,7 +1076,7 @@ "name": { "type": "string", "description": "Resource name.", - "x-ms-mutability":[ + "x-ms-mutability": [ "read", "create" ] @@ -1071,7 +1089,7 @@ "location": { "type": "string", "description": "Resource location.", - "x-ms-mutability":[ + "x-ms-mutability": [ "read", "create" ] @@ -1240,7 +1258,7 @@ }, "description": "Parameters supplied to the UpdateHostname operation." }, - "ErrorResponse": { + "ErrorResponse": { "properties": { "code": { "description": "Error code.", @@ -1285,7 +1303,7 @@ } }, "OperationListResult": { - "description": "Result of the request to list REST API operations. It contains a list of operations and a URL nextLink to get the next set of results.", + "description": "Result of the request to list REST API operations. It contains a list of operations and a URL nextLink to get the next set of results.", "properties": { "value": { "type": "array", @@ -1301,6 +1319,5 @@ } } }, - "parameters": { - } + "parameters": {} } diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimgroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimgroups.json index 087a6639dd89..5ba866a33f01 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimgroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimgroups.json @@ -115,11 +115,11 @@ "schema": { "$ref": "#/definitions/GroupContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -224,7 +224,6 @@ "description": "The specified group cannot be updated because it is a built-in group.", "schema": { "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" - } }, "default": { @@ -273,7 +272,6 @@ "description": "The specified group cannot be updated because it is a built-in group.", "schema": { "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" - } }, "default": { @@ -334,7 +332,7 @@ "schema": { "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" } - } + } }, "x-ms-pageable": { "nextLinkName": "nextLink" @@ -379,7 +377,7 @@ "405": { "description": "Attempt was made to add a user to a built-in group. Built-in group membership is managed by the system.", "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" + "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" } }, "default": { @@ -417,14 +415,13 @@ } ], "responses": { - "204": { + "204": { "description": "The user was successfully removed from the group." }, "405": { "description": "Attempt was made to delete a user from a built-in group. Built-in group membership is managed by the API Management service.", "schema": { "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" - } }, "default": { @@ -438,153 +435,154 @@ } }, "definitions": { - "GroupCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/GroupContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged Group list representation." - }, - "GroupContract": { - "properties": { - "id": { - "type": "string", - "description": "Uniquely identifies the group within the current API Management service instance. The value is a valid relative URL in the format of /groups/{groupId} where {groupId} is a group identifier.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "Group name.", - "maxLength": 300, - "minLength": 1 - }, - "description": { - "type": "string", - "description": "Group description. Can contain HTML formatting tags.", - "maxLength": 1000 - }, - "builtIn": { - "readOnly": true, - "type": "boolean", - "description": "true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false." - }, - "type": { - "type": "string", - "description": "Group type.", - "readOnly": true, - "enum": [ - "Custom", - "System", - "External" - ], - "x-ms-enum": { - "name": "GroupTypeContract", - "modelAsString": false - } - }, - "externalId": { - "type": "string", - "description": "For external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://.onmicrosoft.com/groups/; otherwise the value is null.", - "readOnly": true - } - }, - "required": [ - "name" - ], - "description": "Developer group." - }, - "GroupCreateParameters": { - "properties": { - "name": { - "type": "string", - "description": "Group name.", - "maxLength": 300, - "minLength": 1 - }, - "description": { - "type": "string", - "description": "Group description." - }, - "type": { - "type": "string", - "description": "Group type.", - "enum": [ - "Custom", - "System", - "External" - ], - "x-ms-enum": { - "name": "GroupTypeContract", - "modelAsString": false - } - }, - "externalId": { - "type": "string", - "description": "Identifier of the external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://.onmicrosoft.com/groups/; otherwise the value is null." - } - }, - "required": [ - "name" - ], - "description": "Parameters supplied to the Create Group operation." - }, - "GroupUpdateParameters": { - "properties": { - "name": { - "type": "string", - "description": "Group name.", - "maxLength": 300, - "minLength": 1 - }, - "description": { - "type": "string", - "description": "Group description." - }, - "type": { - "type": "string", - "description": "Group type.", - "enum": [ - "Custom", - "System", - "External" - ], - "x-ms-enum": { - "name": "GroupTypeContract", - "modelAsString": false - } - }, - "externalId": { - "type": "string", - "description": "Identifier of the external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://.onmicrosoft.com/groups/; otherwise the value is null." } - }, - "description": "Parameters supplied to the Update Group operation." - } + "GroupCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/GroupContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Group list representation." + }, + "GroupContract": { + "properties": { + "id": { + "type": "string", + "description": "Uniquely identifies the group within the current API Management service instance. The value is a valid relative URL in the format of /groups/{groupId} where {groupId} is a group identifier.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Group name.", + "maxLength": 300, + "minLength": 1 + }, + "description": { + "type": "string", + "description": "Group description. Can contain HTML formatting tags.", + "maxLength": 1000 + }, + "builtIn": { + "readOnly": true, + "type": "boolean", + "description": "true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false." + }, + "type": { + "type": "string", + "description": "Group type.", + "readOnly": true, + "enum": [ + "Custom", + "System", + "External" + ], + "x-ms-enum": { + "name": "GroupTypeContract", + "modelAsString": false + } + }, + "externalId": { + "type": "string", + "description": "For external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://.onmicrosoft.com/groups/; otherwise the value is null.", + "readOnly": true + } + }, + "required": [ + "name" + ], + "description": "Developer group." + }, + "GroupCreateParameters": { + "properties": { + "name": { + "type": "string", + "description": "Group name.", + "maxLength": 300, + "minLength": 1 + }, + "description": { + "type": "string", + "description": "Group description." + }, + "type": { + "type": "string", + "description": "Group type.", + "enum": [ + "Custom", + "System", + "External" + ], + "x-ms-enum": { + "name": "GroupTypeContract", + "modelAsString": false + } + }, + "externalId": { + "type": "string", + "description": "Identifier of the external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://.onmicrosoft.com/groups/; otherwise the value is null." + } + }, + "required": [ + "name" + ], + "description": "Parameters supplied to the Create Group operation." + }, + "GroupUpdateParameters": { + "properties": { + "name": { + "type": "string", + "description": "Group name.", + "maxLength": 300, + "minLength": 1 + }, + "description": { + "type": "string", + "description": "Group description." + }, + "type": { + "type": "string", + "description": "Group type.", + "enum": [ + "Custom", + "System", + "External" + ], + "x-ms-enum": { + "name": "GroupTypeContract", + "modelAsString": false + } + }, + "externalId": { + "type": "string", + "description": "Identifier of the external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://.onmicrosoft.com/groups/; otherwise the value is null." + } + }, + "description": "Parameters supplied to the Update Group operation." + } }, "parameters": { - "GroupIdParameter": { - "name": "groupId", - "in": "path", - "required": true, - "type": "string", - "description": "Group identifier. Must be unique in the current API Management service instance.", - "minLength": 1, - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" - } + "GroupIdParameter": { + "name": "groupId", + "in": "path", + "required": true, + "type": "string", + "description": "Group identifier. Must be unique in the current API Management service instance.", + "minLength": 1, + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimidentityprovider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimidentityprovider.json index f57fa0307049..9f51dc8ae511 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimidentityprovider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimidentityprovider.json @@ -53,7 +53,7 @@ }, { "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - } + } ], "responses": { "200": { @@ -101,11 +101,11 @@ "schema": { "$ref": "#/definitions/IdentityProviderContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -203,7 +203,7 @@ } ], "responses": { - "204": { + "204": { "description": "The existing identity provider configuration was successfully updated." }, "default": { @@ -342,25 +342,25 @@ } }, "parameters": { - "IdentityProviderNameParameter": { - "name": "identityProviderName", - "in": "path", - "required": true, - "type": "string", - "enum": [ - "facebook", - "google", - "microsoft", - "twitter", - "aad", - "aadB2C" - ], - "x-ms-enum": { - "name": "IdentityProviderNameType", - "modelAsString": true - }, - "description": "Identity Provider Type identifier.", - "x-ms-parameter-location": "method" - } + "IdentityProviderNameParameter": { + "name": "identityProviderName", + "in": "path", + "required": true, + "type": "string", + "enum": [ + "facebook", + "google", + "microsoft", + "twitter", + "aad", + "aadB2C" + ], + "x-ms-enum": { + "name": "IdentityProviderNameType", + "modelAsString": true + }, + "description": "Identity Provider Type identifier.", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimloggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimloggers.json index b3f57fbfb00b..4fcfce7039ef 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimloggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimloggers.json @@ -3,7 +3,7 @@ "info": { "title": "ApiManagementClient", "description": "Use these REST APIs for performing operations on logger entity Azure API Management deployment.The Logger entity in API Management represents an event sink that you can use to log API Management events. Currently the Logger entity supports logging API Management events to Azure EventHub.", - "version": "2016-10-10" + "version": "2016-10-10" }, "host": "management.azure.com", "schemes": [ @@ -121,11 +121,11 @@ "schema": { "$ref": "#/definitions/LoggerResponse" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -223,7 +223,7 @@ } ], "responses": { - "204": { + "204": { "description": "The existing logger was successfully updated." }, "default": { @@ -421,15 +421,15 @@ } }, "parameters": { - "LoggerIdParameter": { - "name": "loggerid", - "in": "path", - "required": true, - "type": "string", - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "description": "Logger identifier. Must be unique in the API Management service instance.", - "x-ms-parameter-location": "method" - } + "LoggerIdParameter": { + "name": "loggerid", + "in": "path", + "required": true, + "type": "string", + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "description": "Logger identifier. Must be unique in the API Management service instance.", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimnetworkstatus.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimnetworkstatus.json index 7c75eed6844a..1667783df136 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimnetworkstatus.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimnetworkstatus.json @@ -41,8 +41,10 @@ ], "operationId": "NetworkStatus_GetByService", "description": "Gets the Connectivity Status to the external resources on which the Api Management service depends from inside the Cloud Service. This also returns the DNS Servers as visible to the CloudService.", - "x-ms-examples": { - "ApiManagementServiceGetNetworkStatus": { "$ref": "./examples/ApiManagementServiceGetNetworkStatus.json" } + "x-ms-examples": { + "ApiManagementServiceGetNetworkStatus": { + "$ref": "./examples/ApiManagementServiceGetNetworkStatus.json" + } }, "parameters": [ { @@ -75,7 +77,7 @@ } } }, - "definitions": { + "definitions": { "ConnectivityStatusContract": { "properties": { "name": { @@ -143,6 +145,5 @@ "description": "Network Status details." } }, - "parameters": { - } + "parameters": {} } diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimopenidconnectproviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimopenidconnectproviders.json index 90b3c674780c..f3a26765e4a3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimopenidconnectproviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimopenidconnectproviders.json @@ -112,11 +112,11 @@ "schema": { "$ref": "#/definitions/OpenidConnectProviderContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -124,7 +124,7 @@ "schema": { "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" } - } + } } }, "put": { @@ -142,7 +142,7 @@ }, { "$ref": "#/parameters/OpenIdConnectIdParameter" - }, + }, { "name": "parameters", "in": "body", @@ -161,7 +161,7 @@ ], "responses": { "201": { - "description": "OpenIdConnect Provider was successfully created." + "description": "OpenIdConnect Provider was successfully created." }, "204": { "description": "OpenIdConnect Provider was successfully updated." @@ -262,7 +262,7 @@ "405": { "description": "The specified OpenIdConnect Provider cannot be deleted because it is in use in a policy. You must remove all references to this property before it can be deleted.", "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" + "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" } }, "default": { @@ -276,130 +276,130 @@ } }, "definitions": { - "OpenIdConnectProviderCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/OpenidConnectProviderContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged OpenIdProviders list representation." - }, - "OpenidConnectProviderContract": { - "properties": { - "id": { - "type": "string", - "description": "OpenID Connect Provider identifier." - }, - "name": { - "type": "string", - "description": "User-friendly OpenID Connect Provider name.", - "maxLength": 50 - }, - "description": { - "type": "string", - "description": "User-friendly description of OpenID Connect Provider." - }, - "metadataEndpoint": { - "type": "string", - "description": "Metadata endpoint URI." - }, - "clientId": { - "type": "string", - "description": "Client ID of developer console which is the client application." - }, - "clientSecret": { - "type": "string", - "description": "Client Secret of developer console which is the client application." - } - }, - "required": [ - "name", - "metadataEndpoint", - "clientId" - ], - "description": "OpenID Connect Providers Contract." - }, - "OpenidConnectProviderCreateContract": { - "properties": { - "name": { - "type": "string", - "description": "User-friendly OpenID Connect Provider name.", - "maxLength": 50 - }, - "description": { - "type": "string", - "description": "User-friendly description of OpenID Connect Provider." - }, - "metadataEndpoint": { - "type": "string", - "description": "Metadata endpoint URI." - }, - "clientId": { - "type": "string", - "description": "Client ID of developer console which is the client application." - }, - "clientSecret": { - "type": "string", - "description": "Client Secret of developer console which is the client application." - } - }, - "required": [ - "name", - "metadataEndpoint", - "clientId" - ], - "description": "Parameters supplied to the Create OpenID Connect Provider operation." - }, - "OpenidConnectProviderUpdateContract": { - "properties": { - "name": { - "type": "string", - "description": "User-friendly OpenID Connect Provider name.", - "maxLength": 50 - }, - "description": { - "type": "string", - "description": "User-friendly description of OpenID Connect Provider." - }, - "metadataEndpoint": { - "type": "string", - "description": "Metadata endpoint URI." - }, - "clientId": { - "type": "string", - "description": "Client ID of developer console which is the client application." - }, - "clientSecret": { - "type": "string", - "description": "Client Secret of developer console which is the client application." - } - }, - "description": "Parameters supplied to the Update OpenID Connect Provider operation." - } + "OpenIdConnectProviderCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/OpenidConnectProviderContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged OpenIdProviders list representation." + }, + "OpenidConnectProviderContract": { + "properties": { + "id": { + "type": "string", + "description": "OpenID Connect Provider identifier." + }, + "name": { + "type": "string", + "description": "User-friendly OpenID Connect Provider name.", + "maxLength": 50 + }, + "description": { + "type": "string", + "description": "User-friendly description of OpenID Connect Provider." + }, + "metadataEndpoint": { + "type": "string", + "description": "Metadata endpoint URI." + }, + "clientId": { + "type": "string", + "description": "Client ID of developer console which is the client application." + }, + "clientSecret": { + "type": "string", + "description": "Client Secret of developer console which is the client application." + } + }, + "required": [ + "name", + "metadataEndpoint", + "clientId" + ], + "description": "OpenID Connect Providers Contract." + }, + "OpenidConnectProviderCreateContract": { + "properties": { + "name": { + "type": "string", + "description": "User-friendly OpenID Connect Provider name.", + "maxLength": 50 + }, + "description": { + "type": "string", + "description": "User-friendly description of OpenID Connect Provider." + }, + "metadataEndpoint": { + "type": "string", + "description": "Metadata endpoint URI." + }, + "clientId": { + "type": "string", + "description": "Client ID of developer console which is the client application." + }, + "clientSecret": { + "type": "string", + "description": "Client Secret of developer console which is the client application." + } + }, + "required": [ + "name", + "metadataEndpoint", + "clientId" + ], + "description": "Parameters supplied to the Create OpenID Connect Provider operation." + }, + "OpenidConnectProviderUpdateContract": { + "properties": { + "name": { + "type": "string", + "description": "User-friendly OpenID Connect Provider name.", + "maxLength": 50 + }, + "description": { + "type": "string", + "description": "User-friendly description of OpenID Connect Provider." + }, + "metadataEndpoint": { + "type": "string", + "description": "Metadata endpoint URI." + }, + "clientId": { + "type": "string", + "description": "Client ID of developer console which is the client application." + }, + "clientSecret": { + "type": "string", + "description": "Client Secret of developer console which is the client application." + } + }, + "description": "Parameters supplied to the Update OpenID Connect Provider operation." + } }, "parameters": { - "OpenIdConnectIdParameter": { - "name": "opid", - "in": "path", - "required": true, - "type": "string", - "description": "Identifier of the OpenID Connect Provider.", - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" - } + "OpenIdConnectIdParameter": { + "name": "opid", + "in": "path", + "required": true, + "type": "string", + "description": "Identifier of the OpenID Connect Provider.", + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimproducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimproducts.json index 939531ee1cd2..24a54f3eba94 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimproducts.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimproducts.json @@ -128,11 +128,11 @@ "schema": { "$ref": "#/definitions/ProductContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -561,7 +561,7 @@ "400": { "description": "Request validation failed.This is typically caused by an invalid product or group id.", "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" + "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" } }, "default": { @@ -629,7 +629,7 @@ }, "x-ms-odata": "./apimsubscriptions.json#/definitions/SubscriptionContract" } - }, + }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/policy": { "get": { "tags": [ @@ -658,16 +658,16 @@ } ], "responses": { - "200": { + "200": { "description": "Product Policy information.", "schema": { "type": "file" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } } } @@ -687,7 +687,7 @@ }, { "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, + }, { "$ref": "#/parameters/ProductIdParameter" }, @@ -719,7 +719,7 @@ "201": { "description": "Product policy configuration was successfully created." }, - "204":{ + "204": { "description": "Product policy configuration of the tenant was successfully updated." }, "default": { @@ -729,7 +729,7 @@ } } } - }, + }, "delete": { "tags": [ "ProductPolicy" @@ -742,7 +742,7 @@ }, { "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, + }, { "$ref": "#/parameters/ProductIdParameter" }, @@ -761,7 +761,7 @@ } ], "responses": { - "204": { + "204": { "description": "Successfully deleted the policy configuration at the Product level." }, "default": { @@ -775,141 +775,141 @@ } }, "definitions": { - "ProductCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ProductContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged Products list representation." - }, - "ProductContract": { - "properties": { - "id": { - "type": "string", - "description": "Uniquely identifies the product within the current API Management service instance. The value is a valid relative URL in the format of /products/{productId} where {productId} is a product identifier.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "Product name.", - "minLength": 1, - "maxLength": 300 - }, - "description": { - "type": "string", - "description": "Product description. May include HTML formatting tags.", - "minLength": 1, - "maxLength": 1000 - }, - "terms": { - "type": "string", - "description": "Product terms of use. Developers trying to subscribe to the product will be presented and required to accept these terms before they can complete the subscription process." - }, - "subscriptionRequired": { - "type": "boolean", - "description": "Whether a product subscription is required for accessing APIs included in this product. If true, the product is referred to as \"protected\" and a valid subscription key is required for a request to an API included in the product to succeed. If false, the product is referred to as \"open\" and requests to an API included in the product can be made without a subscription key. If property is omitted when creating a new product it's value is assumed to be true.", - "default": true - }, - "approvalRequired": { - "type": "boolean", - "description": "whether subscription approval is required. If false, new subscriptions will be approved automatically enabling developers to call the product’s APIs immediately after subscribing. If true, administrators must manually approve the subscription before the developer can any of the product’s APIs. Can be present only if subscriptionRequired property is present and has a value of false." - }, - "subscriptionsLimit": { - "type": "integer", - "format": "int32", - "description": "Whether the number of subscriptions a user can have to this product at the same time. Set to null or omit to allow unlimited per user subscriptions. Can be present only if subscriptionRequired property is present and has a value of false." - }, - "state": { - "type": "string", - "description": "whether product is published or not. Published products are discoverable by users of developer portal. Non published products are visible only to administrators. Default state of Product is NotPublished.", - "enum": [ - "NotPublished", - "Published" - ], - "default": "NotPublished", - "x-ms-enum": { - "name": "ProductStateContract", - "modelAsString": false - } - } - }, - "required": [ - "name" - ], - "description": "Product profile." - }, - "ProductUpdateParameters": { - "properties": { - "name": { - "type": "string", - "description": "Product name.", - "maxLength": 300, - "minLength": 1 - }, - "description": { - "type": "string", - "description": "Product description.", - "maxLength": 500, - "minLength": 1 - }, - "terms": { - "type": "string", - "description": "Product terms and conditions. Developer will have to accept these terms before he's allowed to call product API." - }, - "subscriptionRequired": { - "type": "boolean", - "description": "whether a product subscription is required for accessing APIs included in this product. If true, the product is referred to as \"protected\" and a valid subscription key is required for a request to an API included in the product to succeed. If false, the product is referred to as \"open\" and requests to an API included in the product can be made without a subscription key. If property is omitted when creating a new product it's value is assumed to be true." - }, - "approvalRequired": { - "type": "boolean", - "description": "whether subscription approval is required. If false, new subscriptions will be approved automatically enabling developers to call the product’s APIs immediately after subscribing. If true, administrators must manually approve the subscription before the developer can any of the product’s APIs. Can be present only if subscriptionRequired property is present and has a value of false." - }, - "subscriptionsLimit": { - "type": "integer", - "format": "int32", - "description": "whether the number of subscriptions a user can have to this product at the same time. Set to null or omit to allow unlimited per user subscriptions. Can be present only if subscriptionRequired property is present and has a value of false." - }, - "state": { - "type": "string", - "description": "whether product is published or not. Published products are discoverable by users of developer portal. Non published products are visible only to administrators.", - "enum": [ - "NotPublished", - "Published" - ], - "x-ms-enum": { - "name": "ProductStateContract", - "modelAsString": false - } - } - }, - "description": "Parameters supplied to the CreateOrUpdate Product operation." - } + "ProductCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ProductContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Products list representation." + }, + "ProductContract": { + "properties": { + "id": { + "type": "string", + "description": "Uniquely identifies the product within the current API Management service instance. The value is a valid relative URL in the format of /products/{productId} where {productId} is a product identifier.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Product name.", + "minLength": 1, + "maxLength": 300 + }, + "description": { + "type": "string", + "description": "Product description. May include HTML formatting tags.", + "minLength": 1, + "maxLength": 1000 + }, + "terms": { + "type": "string", + "description": "Product terms of use. Developers trying to subscribe to the product will be presented and required to accept these terms before they can complete the subscription process." + }, + "subscriptionRequired": { + "type": "boolean", + "description": "Whether a product subscription is required for accessing APIs included in this product. If true, the product is referred to as \"protected\" and a valid subscription key is required for a request to an API included in the product to succeed. If false, the product is referred to as \"open\" and requests to an API included in the product can be made without a subscription key. If property is omitted when creating a new product it's value is assumed to be true.", + "default": true + }, + "approvalRequired": { + "type": "boolean", + "description": "whether subscription approval is required. If false, new subscriptions will be approved automatically enabling developers to call the product’s APIs immediately after subscribing. If true, administrators must manually approve the subscription before the developer can any of the product’s APIs. Can be present only if subscriptionRequired property is present and has a value of false." + }, + "subscriptionsLimit": { + "type": "integer", + "format": "int32", + "description": "Whether the number of subscriptions a user can have to this product at the same time. Set to null or omit to allow unlimited per user subscriptions. Can be present only if subscriptionRequired property is present and has a value of false." + }, + "state": { + "type": "string", + "description": "whether product is published or not. Published products are discoverable by users of developer portal. Non published products are visible only to administrators. Default state of Product is NotPublished.", + "enum": [ + "NotPublished", + "Published" + ], + "default": "NotPublished", + "x-ms-enum": { + "name": "ProductStateContract", + "modelAsString": false + } + } + }, + "required": [ + "name" + ], + "description": "Product profile." + }, + "ProductUpdateParameters": { + "properties": { + "name": { + "type": "string", + "description": "Product name.", + "maxLength": 300, + "minLength": 1 + }, + "description": { + "type": "string", + "description": "Product description.", + "maxLength": 500, + "minLength": 1 + }, + "terms": { + "type": "string", + "description": "Product terms and conditions. Developer will have to accept these terms before he's allowed to call product API." + }, + "subscriptionRequired": { + "type": "boolean", + "description": "whether a product subscription is required for accessing APIs included in this product. If true, the product is referred to as \"protected\" and a valid subscription key is required for a request to an API included in the product to succeed. If false, the product is referred to as \"open\" and requests to an API included in the product can be made without a subscription key. If property is omitted when creating a new product it's value is assumed to be true." + }, + "approvalRequired": { + "type": "boolean", + "description": "whether subscription approval is required. If false, new subscriptions will be approved automatically enabling developers to call the product’s APIs immediately after subscribing. If true, administrators must manually approve the subscription before the developer can any of the product’s APIs. Can be present only if subscriptionRequired property is present and has a value of false." + }, + "subscriptionsLimit": { + "type": "integer", + "format": "int32", + "description": "whether the number of subscriptions a user can have to this product at the same time. Set to null or omit to allow unlimited per user subscriptions. Can be present only if subscriptionRequired property is present and has a value of false." + }, + "state": { + "type": "string", + "description": "whether product is published or not. Published products are discoverable by users of developer portal. Non published products are visible only to administrators.", + "enum": [ + "NotPublished", + "Published" + ], + "x-ms-enum": { + "name": "ProductStateContract", + "modelAsString": false + } + } + }, + "description": "Parameters supplied to the CreateOrUpdate Product operation." + } }, "parameters": { - "ProductIdParameter": { - "name": "productId", - "in": "path", - "required": true, - "type": "string", - "description": "Product identifier. Must be unique in the current API Management service instance.", - "minLength": 1, - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" - } + "ProductIdParameter": { + "name": "productId", + "in": "path", + "required": true, + "type": "string", + "description": "Product identifier. Must be unique in the current API Management service instance.", + "minLength": 1, + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimproperties.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimproperties.json index a0ee7b187701..b3e29ebfe4ac 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimproperties.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimproperties.json @@ -115,11 +115,11 @@ "schema": { "$ref": "#/definitions/PropertyContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -163,8 +163,8 @@ } ], "responses": { - "201": { - "description": "Property was successfully created." + "201": { + "description": "Property was successfully created." }, "204": { "description": "Property was successfully updated." @@ -265,7 +265,7 @@ "405": { "description": "The specified property cannot be deleted because it is in use in a policy. You must remove all references to this property before it can be deleted.", "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" + "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" } }, "default": { @@ -279,141 +279,141 @@ } }, "definitions": { - "PropertyCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/PropertyContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged Property list representation." - }, - "PropertyContract": { - "properties": { - "id": { - "type": "string", - "description": "Uniquely identifies the property within the current API Management service instance. The value is a valid relative URL in the format of /properties/{propId} where {propId} is a property identifier.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "Unique name of Property. It may contain only letters, digits, period, dash, and underscore characters.", - "minLength": 1, - "maxLength": 256, - "pattern": "^[A-Z0-9-._]+$" - }, - "value": { - "type": "string", - "description": "Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.", - "minLength": 1, - "maxLength": 4096 - }, - "tags": { - "type": "array", - "items": { - "type": "string" - }, - "maxItems": 32, - "description": "Optional tags that when provided can be used to filter the property list." - }, - "secret": { - "type": "boolean", - "description": "Determines whether the value is a secret and should be encrypted or not. Default value is false." - } - }, - "required": [ - "name", - "value" - ], - "description": "Property details." - }, - "PropertyCreateParameters": { - "properties": { - "name": { - "type": "string", - "description": "Unique name of Property. It may contain only letters, digits, period, dash, and underscore characters.", - "minLength": 1, - "maxLength": 256, - "pattern": "^[A-Z0-9-._]+$" - }, - "value": { - "type": "string", - "description": "Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.", - "minLength": 1, - "maxLength": 4096 - }, - "tags": { - "type": "array", - "items": { - "type": "string" - }, - "maxItems": 32, - "description": "Optional tags that when provided can be used to filter the property list." - }, - "secret": { - "type": "boolean", - "description": "Determines whether the value is a secret and should be encrypted or not. Default value is false." - } - }, - "required": [ - "name", - "value" - ], - "description": "Parameters supplied to the Create Property operation." - }, - "PropertyUpdateParameters": { - "properties": { - "name": { - "type": "string", - "description": "Unique name of Property. It may contain only letters, digits, period, dash, and underscore characters.", - "minLength": 1, - "maxLength": 256, - "pattern": "^[A-Z0-9-._]+$" - }, - "value": { - "type": "string", - "description": "Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.", - "minLength": 1, - "maxLength": 4096 - }, - "tags": { - "type": "array", - "items": { - "type": "string" - }, - "maxItems": 32, - "description": "Optional tags that when provided can be used to filter the property list." - }, - "secret": { - "type": "boolean", - "description": "Determines whether the value is a secret and should be encrypted or not. Default value is false." - } - }, - "description": "Parameters supplied to the Update Property operation." - } + "PropertyCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/PropertyContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Property list representation." + }, + "PropertyContract": { + "properties": { + "id": { + "type": "string", + "description": "Uniquely identifies the property within the current API Management service instance. The value is a valid relative URL in the format of /properties/{propId} where {propId} is a property identifier.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Unique name of Property. It may contain only letters, digits, period, dash, and underscore characters.", + "minLength": 1, + "maxLength": 256, + "pattern": "^[A-Z0-9-._]+$" + }, + "value": { + "type": "string", + "description": "Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.", + "minLength": 1, + "maxLength": 4096 + }, + "tags": { + "type": "array", + "items": { + "type": "string" + }, + "maxItems": 32, + "description": "Optional tags that when provided can be used to filter the property list." + }, + "secret": { + "type": "boolean", + "description": "Determines whether the value is a secret and should be encrypted or not. Default value is false." + } + }, + "required": [ + "name", + "value" + ], + "description": "Property details." + }, + "PropertyCreateParameters": { + "properties": { + "name": { + "type": "string", + "description": "Unique name of Property. It may contain only letters, digits, period, dash, and underscore characters.", + "minLength": 1, + "maxLength": 256, + "pattern": "^[A-Z0-9-._]+$" + }, + "value": { + "type": "string", + "description": "Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.", + "minLength": 1, + "maxLength": 4096 + }, + "tags": { + "type": "array", + "items": { + "type": "string" + }, + "maxItems": 32, + "description": "Optional tags that when provided can be used to filter the property list." + }, + "secret": { + "type": "boolean", + "description": "Determines whether the value is a secret and should be encrypted or not. Default value is false." + } + }, + "required": [ + "name", + "value" + ], + "description": "Parameters supplied to the Create Property operation." + }, + "PropertyUpdateParameters": { + "properties": { + "name": { + "type": "string", + "description": "Unique name of Property. It may contain only letters, digits, period, dash, and underscore characters.", + "minLength": 1, + "maxLength": 256, + "pattern": "^[A-Z0-9-._]+$" + }, + "value": { + "type": "string", + "description": "Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.", + "minLength": 1, + "maxLength": 4096 + }, + "tags": { + "type": "array", + "items": { + "type": "string" + }, + "maxItems": 32, + "description": "Optional tags that when provided can be used to filter the property list." + }, + "secret": { + "type": "boolean", + "description": "Determines whether the value is a secret and should be encrypted or not. Default value is false." + } + }, + "description": "Parameters supplied to the Update Property operation." + } }, "parameters": { - "PropertyIdParameter": { - "name": "propId", - "in": "path", - "required": true, - "type": "string", - "description": "Identifier of the property.", - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" - } + "PropertyIdParameter": { + "name": "propId", + "in": "path", + "required": true, + "type": "string", + "description": "Identifier of the property.", + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimquotas.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimquotas.json index 5cdf4949232e..7e876be845d2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimquotas.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimquotas.json @@ -110,7 +110,7 @@ } ], "responses": { - "204": { + "204": { "description": "All the quota counter periods were successfully updated." }, "default": { @@ -195,7 +195,7 @@ "$ref": "#/definitions/QuotaCounterValueContract" }, "description": "The value of the Quota counter to be applied on the specified period." - }, + }, { "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" }, @@ -204,7 +204,7 @@ } ], "responses": { - "204": { + "204": { "description": "The quota counter value was successfully updated." }, "default": { @@ -218,95 +218,95 @@ } }, "definitions": { - "QuotaCounterCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/QuotaCounterContract" - }, - "description": "Quota counter values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged Quota Counter list representation." - }, - "QuotaCounterContract": { - "properties": { - "counterKey": { - "type": "string", - "description": "The Key value of the Counter. Must not be empty.", - "minLength": 1 - }, - "periodKey": { - "type": "string", - "description": "Identifier of the Period for which the counter was collected. Must not be empty.", - "minLength": 1 - }, - "periodStartTime": { - "type": "string", - "format": "date-time", - "description": "The date of the start of Counter Period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - }, - "periodEndTime": { - "type": "string", - "format": "date-time", - "description": "The date of the end of Counter Period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - } - }, - "allOf": [ - { - "$ref": "#/definitions/QuotaCounterValueContract" - } - ], - "required": [ - "counterKey", - "periodKey", - "periodStartTime", - "periodEndTime" - ], - "description": "Quota counter details." - }, - "QuotaCounterValueContract": { - "properties": { - "callsCount": { - "type": "integer", - "format": "int32", - "description": "Number of times Counter was called." - }, - "kbTransferred": { - "type": "number", - "format": "double", - "description": "Data Transferred in KiloBytes." - } - }, - "description": "Quota counter value details." - } + "QuotaCounterCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/QuotaCounterContract" + }, + "description": "Quota counter values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Quota Counter list representation." + }, + "QuotaCounterContract": { + "properties": { + "counterKey": { + "type": "string", + "description": "The Key value of the Counter. Must not be empty.", + "minLength": 1 + }, + "periodKey": { + "type": "string", + "description": "Identifier of the Period for which the counter was collected. Must not be empty.", + "minLength": 1 + }, + "periodStartTime": { + "type": "string", + "format": "date-time", + "description": "The date of the start of Counter Period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + }, + "periodEndTime": { + "type": "string", + "format": "date-time", + "description": "The date of the end of Counter Period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + } + }, + "allOf": [ + { + "$ref": "#/definitions/QuotaCounterValueContract" + } + ], + "required": [ + "counterKey", + "periodKey", + "periodStartTime", + "periodEndTime" + ], + "description": "Quota counter details." + }, + "QuotaCounterValueContract": { + "properties": { + "callsCount": { + "type": "integer", + "format": "int32", + "description": "Number of times Counter was called." + }, + "kbTransferred": { + "type": "number", + "format": "double", + "description": "Data Transferred in KiloBytes." + } + }, + "description": "Quota counter value details." + } }, "parameters": { - "QuotaCounterKeyParameter": { - "name": "quotaCounterKey", - "in": "path", - "required": true, - "type": "string", - "description": "Quota counter key identifier.", - "x-ms-parameter-location": "method" - }, - "QuotaPeriodKeyParameter": { - "name": "quotaPeriodKey", - "in": "path", - "required": true, - "type": "string", - "description": "Quota period key identifier.", - "x-ms-parameter-location": "method" - } + "QuotaCounterKeyParameter": { + "name": "quotaCounterKey", + "in": "path", + "required": true, + "type": "string", + "description": "Quota counter key identifier.", + "x-ms-parameter-location": "method" + }, + "QuotaPeriodKeyParameter": { + "name": "quotaPeriodKey", + "in": "path", + "required": true, + "type": "string", + "description": "Quota period key identifier.", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimreports.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimreports.json index 1e472cc2f61f..39578e3b0710 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimreports.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimreports.json @@ -86,7 +86,7 @@ "in": "query", "required": false, "type": "string", - "format": "duration", + "format": "duration", "description": "By time interval. This value is only applicable to ByTime aggregation. Interval must be multiple of 15 minutes and may not be zero. The value should be in ISO 8601 format (http://en.wikipedia.org/wiki/ISO_8601#Durations).This code can be used to convert TimSpan to a valid interval string: XmlConvert.ToString(new TimeSpan(hours, minutes, seconds))" }, { @@ -111,156 +111,155 @@ } } }, - "definitions": { - "ReportCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ReportRecordContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged Report records list representation." - }, - "ReportRecordContract": { - "properties": { - "name": { - "type": "string", - "description": "Name depending on report endpoint specifies product, API, operation or developer name." - }, - "timestamp": { - "type": "string", - "format": "date-time", - "description": "Start of aggregation period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - }, - "interval": { - "type": "integer", - "format": "int64", - "description": "Length of aggregation period." - }, - "country": { - "type": "string", - "description": "Country to which this record data is related." - }, - "region": { - "type": "string", - "description": "Country region to which this record data is related." - }, - "zip": { - "type": "string", - "description": "Zip code to which this record data is related." - }, - "userId": { - "readOnly": true, - "type": "string", - "description": "User identifier path. /users/{userId}" - }, - "productId": { - "readOnly": true, - "type": "string", - "description": "Product identifier path. /products/{productId}" - }, - "apiId": { - "type": "string", - "description": "API identifier path. /apis/{apiId}" - }, - "operationId": { - "type": "string", - "description": "Operation identifier path. /apis/{apiId}/operations/{operationId}" - }, - "apiRegion": { - "type": "string", - "description": "API region identifier." - }, - "subscriptionId": { - "type": "string", - "description": "Subscription identifier path. /subscriptions/{subscriptionId}" - }, - "callCountSuccess": { - "type": "integer", - "format": "int32", - "description": "Number of successful calls. This includes calls returning HttpStatusCode <= 301 and HttpStatusCode.NotModified and HttpStatusCode.TemporaryRedirect" - }, - "callCountBlocked": { - "type": "integer", - "format": "int32", - "description": "Number of calls blocked due to invalid credentials. This includes calls returning HttpStatusCode.Unauthorized and HttpStatusCode.Forbidden and HttpStatusCode.TooManyRequests" - }, - "callCountFailed": { - "type": "integer", - "format": "int32", - "description": "Number of calls failed due to proxy or backend errors. This includes calls returning HttpStatusCode.BadRequest(400) and any Code between HttpStatusCode.InternalServerError (500) and 600" - }, - "callCountOther": { - "type": "integer", - "format": "int32", - "description": "Number of other calls." - }, - "callCountTotal": { - "type": "integer", - "format": "int32", - "description": "Total number of calls." - }, - "bandwidth": { - "type": "integer", - "format": "int64", - "description": "Bandwidth consumed." - }, - "cacheHitCount": { - "type": "integer", - "format": "int32", - "description": "Number of times when content was served from cache policy." - }, - "cacheMissCount": { - "type": "integer", - "format": "int32", - "description": "Number of times content was fetched from backend." - }, - "apiTimeAvg": { - "type": "number", - "format": "double", - "description": "Average time it took to process request." - }, - "apiTimeMin": { - "type": "number", - "format": "double", - "description": "Minimum time it took to process request." - }, - "apiTimeMax": { - "type": "number", - "format": "double", - "description": "Maximum time it took to process request." - }, - "serviceTimeAvg": { - "type": "number", - "format": "double", - "description": "Average time it took to process request on backend." - }, - "serviceTimeMin": { - "type": "number", - "format": "double", - "description": "Minimum time it took to process request on backend." - }, - "serviceTimeMax": { - "type": "number", - "format": "double", - "description": "Maximum time it took to process request on backend." - } - }, - "description": "Report data." - } + "definitions": { + "ReportCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ReportRecordContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Report records list representation." + }, + "ReportRecordContract": { + "properties": { + "name": { + "type": "string", + "description": "Name depending on report endpoint specifies product, API, operation or developer name." + }, + "timestamp": { + "type": "string", + "format": "date-time", + "description": "Start of aggregation period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + }, + "interval": { + "type": "integer", + "format": "int64", + "description": "Length of aggregation period." + }, + "country": { + "type": "string", + "description": "Country to which this record data is related." + }, + "region": { + "type": "string", + "description": "Country region to which this record data is related." + }, + "zip": { + "type": "string", + "description": "Zip code to which this record data is related." + }, + "userId": { + "readOnly": true, + "type": "string", + "description": "User identifier path. /users/{userId}" + }, + "productId": { + "readOnly": true, + "type": "string", + "description": "Product identifier path. /products/{productId}" + }, + "apiId": { + "type": "string", + "description": "API identifier path. /apis/{apiId}" + }, + "operationId": { + "type": "string", + "description": "Operation identifier path. /apis/{apiId}/operations/{operationId}" + }, + "apiRegion": { + "type": "string", + "description": "API region identifier." + }, + "subscriptionId": { + "type": "string", + "description": "Subscription identifier path. /subscriptions/{subscriptionId}" + }, + "callCountSuccess": { + "type": "integer", + "format": "int32", + "description": "Number of successful calls. This includes calls returning HttpStatusCode <= 301 and HttpStatusCode.NotModified and HttpStatusCode.TemporaryRedirect" + }, + "callCountBlocked": { + "type": "integer", + "format": "int32", + "description": "Number of calls blocked due to invalid credentials. This includes calls returning HttpStatusCode.Unauthorized and HttpStatusCode.Forbidden and HttpStatusCode.TooManyRequests" + }, + "callCountFailed": { + "type": "integer", + "format": "int32", + "description": "Number of calls failed due to proxy or backend errors. This includes calls returning HttpStatusCode.BadRequest(400) and any Code between HttpStatusCode.InternalServerError (500) and 600" + }, + "callCountOther": { + "type": "integer", + "format": "int32", + "description": "Number of other calls." + }, + "callCountTotal": { + "type": "integer", + "format": "int32", + "description": "Total number of calls." + }, + "bandwidth": { + "type": "integer", + "format": "int64", + "description": "Bandwidth consumed." + }, + "cacheHitCount": { + "type": "integer", + "format": "int32", + "description": "Number of times when content was served from cache policy." + }, + "cacheMissCount": { + "type": "integer", + "format": "int32", + "description": "Number of times content was fetched from backend." + }, + "apiTimeAvg": { + "type": "number", + "format": "double", + "description": "Average time it took to process request." + }, + "apiTimeMin": { + "type": "number", + "format": "double", + "description": "Minimum time it took to process request." + }, + "apiTimeMax": { + "type": "number", + "format": "double", + "description": "Maximum time it took to process request." + }, + "serviceTimeAvg": { + "type": "number", + "format": "double", + "description": "Average time it took to process request on backend." + }, + "serviceTimeMin": { + "type": "number", + "format": "double", + "description": "Minimum time it took to process request on backend." + }, + "serviceTimeMax": { + "type": "number", + "format": "double", + "description": "Maximum time it took to process request on backend." + } + }, + "description": "Report data." + } }, - "parameters": { - } -} \ No newline at end of file + "parameters": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimsubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimsubscriptions.json index e89012bdc0bd..093919177acf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimsubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimsubscriptions.json @@ -121,11 +121,11 @@ "schema": { "$ref": "#/definitions/SubscriptionContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -223,7 +223,7 @@ } ], "responses": { - "204": { + "204": { "description": "The subscription details were successfully updated." }, "default": { @@ -265,7 +265,7 @@ } ], "responses": { - "204": { + "204": { "description": "The subscription details were successfully deleted." }, "default": { @@ -339,7 +339,7 @@ } ], "responses": { - "204": { + "204": { "description": "The secondary key was successfully regenerated." }, "default": { @@ -353,226 +353,226 @@ } }, "definitions": { - "SubscriptionCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/SubscriptionContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged Subscriptions list representation." - }, - "SubscriptionContract": { - "properties": { - "id": { - "type": "string", - "description": "Uniquely identifies the subscription within the current API Management service instance. The value is a valid relative URL in the format of /subscriptions/{sid} where {sid} is a subscription identifier.", - "readOnly": true - }, - "userId": { - "type": "string", - "description": "The user resource identifier of the subscription owner. The value is a valid relative URL in the format of /users/{uid} where {uid} is a user identifier." - }, - "productId": { - "type": "string", - "description": "The product resource identifier of the subscribed product. The value is a valid relative URL in the format of /products/{productId} where {productId} is a product identifier." - }, - "name": { - "type": "string", - "description": "The name of the subscription, or null if the subscription has no name.", - "minLength": 0, - "maxLength": 100 - }, - "state": { - "type": "string", - "description": "Subscription state. Possible states are * active – the subscription is active, * suspended – the subscription is blocked, and the subscriber cannot call any APIs of the product, * submitted – the subscription request has been made by the developer, but has not yet been approved or rejected, * rejected – the subscription request has been denied by an administrator, * cancelled – the subscription has been cancelled by the developer or administrator, * expired – the subscription reached its expiration date and was deactivated.", - "enum": [ - "Suspended", - "Active", - "Expired", - "Submitted", - "Rejected", - "Cancelled" - ], - "x-ms-enum": { - "name": "SubscriptionStateContract", - "modelAsString": false - } - }, - "createdDate": { - "type": "string", - "format": "date-time", - "description": "Subscription creation date. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n", - "readOnly": true - }, - "startDate": { - "type": "string", - "format": "date-time", - "description": "Subscription activation date. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - }, - "expirationDate": { - "type": "string", - "format": "date-time", - "description": "Subscription expiration date. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - }, - "endDate": { - "type": "string", - "format": "date-time", - "description": "Date when subscription was cancelled or expired. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - }, - "notificationDate": { - "type": "string", - "format": "date-time", - "description": "Upcoming subscription expiration notification date. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - }, - "primaryKey": { - "type": "string", - "description": "Subscription primary key.", - "minLength": 1, - "maxLength": 256 - }, - "secondaryKey": { - "type": "string", - "description": "Subscription secondary key.", - "minLength": 1, - "maxLength": 256 - }, - "stateComment": { - "type": "string", - "description": "Optional subscription comment added by an administrator." - } - }, - "description": "Subscription details." - }, - "SubscriptionCreateParameters": { - "properties": { - "userId": { - "type": "string", - "description": "User (user id path) for whom subscription is being created in form /users/{uid}" - }, - "productId": { - "type": "string", - "description": "Product (product id path) for which subscription is being created in form /products/{productId}" - }, - "name": { - "type": "string", - "description": "Subscription name.", - "minLength": 1, - "maxLength": 100 - }, - "primaryKey": { - "type": "string", - "description": "Primary subscription key. If not specified during request key will be generated automatically.", - "minLength": 1, - "maxLength": 256 - }, - "secondaryKey": { - "type": "string", - "description": "Secondary subscription key. If not specified during request key will be generated automatically.", - "minLength": 1, - "maxLength": 256 - }, - "state": { - "type": "string", - "description": "Initial subscription state. If no value is specified, subscription is created with Submitted state. Possible states are * active – the subscription is active, * suspended – the subscription is blocked, and the subscriber cannot call any APIs of the product, * submitted – the subscription request has been made by the developer, but has not yet been approved or rejected, * rejected – the subscription request has been denied by an administrator, * cancelled – the subscription has been cancelled by the developer or administrator, * expired – the subscription reached its expiration date and was deactivated.", - "enum": [ - "Suspended", - "Active", - "Expired", - "Submitted", - "Rejected", - "Cancelled" - ], - "x-ms-enum": { - "name": "SubscriptionStateContract", - "modelAsString": false - } - } - }, - "required": [ - "userId", - "productId", - "name" - ], - "description": "Parameters supplied to the Create subscription operation." - }, - "SubscriptionUpdateParameters": { - "properties": { - "userId": { - "type": "string", - "description": "User identifier path: /users/{uid}" - }, - "productId": { - "type": "string", - "description": "Product identifier path: /products/{productId}" - }, - "expirationDate": { - "type": "string", - "format": "date-time", - "description": "New subscription expiration date." - }, - "name": { - "type": "string", - "description": "Subscription name." - }, - "primaryKey": { - "type": "string", - "description": "Primary subscription key.", - "minLength": 1, - "maxLength": 256 - }, - "secondaryKey": { - "type": "string", - "description": "Secondary subscription key.", - "minLength": 1, - "maxLength": 256 - }, - "state": { - "type": "string", - "description": "Subscription state. Possible states are * active – the subscription is active, * suspended – the subscription is blocked, and the subscriber cannot call any APIs of the product, * submitted – the subscription request has been made by the developer, but has not yet been approved or rejected, * rejected – the subscription request has been denied by an administrator, * cancelled – the subscription has been cancelled by the developer or administrator, * expired – the subscription reached its expiration date and was deactivated.", - "enum": [ - "Suspended", - "Active", - "Expired", - "Submitted", - "Rejected", - "Cancelled" - ], - "x-ms-enum": { - "name": "SubscriptionStateContract", - "modelAsString": false - } - }, - "stateComment": { - "type": "string", - "description": "Comments describing subscription state change by the administrator." - } - }, - "description": "Parameters supplied to the Update subscription operation." - } + "SubscriptionCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/SubscriptionContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Subscriptions list representation." + }, + "SubscriptionContract": { + "properties": { + "id": { + "type": "string", + "description": "Uniquely identifies the subscription within the current API Management service instance. The value is a valid relative URL in the format of /subscriptions/{sid} where {sid} is a subscription identifier.", + "readOnly": true + }, + "userId": { + "type": "string", + "description": "The user resource identifier of the subscription owner. The value is a valid relative URL in the format of /users/{uid} where {uid} is a user identifier." + }, + "productId": { + "type": "string", + "description": "The product resource identifier of the subscribed product. The value is a valid relative URL in the format of /products/{productId} where {productId} is a product identifier." + }, + "name": { + "type": "string", + "description": "The name of the subscription, or null if the subscription has no name.", + "minLength": 0, + "maxLength": 100 + }, + "state": { + "type": "string", + "description": "Subscription state. Possible states are * active – the subscription is active, * suspended – the subscription is blocked, and the subscriber cannot call any APIs of the product, * submitted – the subscription request has been made by the developer, but has not yet been approved or rejected, * rejected – the subscription request has been denied by an administrator, * cancelled – the subscription has been cancelled by the developer or administrator, * expired – the subscription reached its expiration date and was deactivated.", + "enum": [ + "Suspended", + "Active", + "Expired", + "Submitted", + "Rejected", + "Cancelled" + ], + "x-ms-enum": { + "name": "SubscriptionStateContract", + "modelAsString": false + } + }, + "createdDate": { + "type": "string", + "format": "date-time", + "description": "Subscription creation date. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n", + "readOnly": true + }, + "startDate": { + "type": "string", + "format": "date-time", + "description": "Subscription activation date. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "description": "Subscription expiration date. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + }, + "endDate": { + "type": "string", + "format": "date-time", + "description": "Date when subscription was cancelled or expired. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + }, + "notificationDate": { + "type": "string", + "format": "date-time", + "description": "Upcoming subscription expiration notification date. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + }, + "primaryKey": { + "type": "string", + "description": "Subscription primary key.", + "minLength": 1, + "maxLength": 256 + }, + "secondaryKey": { + "type": "string", + "description": "Subscription secondary key.", + "minLength": 1, + "maxLength": 256 + }, + "stateComment": { + "type": "string", + "description": "Optional subscription comment added by an administrator." + } + }, + "description": "Subscription details." + }, + "SubscriptionCreateParameters": { + "properties": { + "userId": { + "type": "string", + "description": "User (user id path) for whom subscription is being created in form /users/{uid}" + }, + "productId": { + "type": "string", + "description": "Product (product id path) for which subscription is being created in form /products/{productId}" + }, + "name": { + "type": "string", + "description": "Subscription name.", + "minLength": 1, + "maxLength": 100 + }, + "primaryKey": { + "type": "string", + "description": "Primary subscription key. If not specified during request key will be generated automatically.", + "minLength": 1, + "maxLength": 256 + }, + "secondaryKey": { + "type": "string", + "description": "Secondary subscription key. If not specified during request key will be generated automatically.", + "minLength": 1, + "maxLength": 256 + }, + "state": { + "type": "string", + "description": "Initial subscription state. If no value is specified, subscription is created with Submitted state. Possible states are * active – the subscription is active, * suspended – the subscription is blocked, and the subscriber cannot call any APIs of the product, * submitted – the subscription request has been made by the developer, but has not yet been approved or rejected, * rejected – the subscription request has been denied by an administrator, * cancelled – the subscription has been cancelled by the developer or administrator, * expired – the subscription reached its expiration date and was deactivated.", + "enum": [ + "Suspended", + "Active", + "Expired", + "Submitted", + "Rejected", + "Cancelled" + ], + "x-ms-enum": { + "name": "SubscriptionStateContract", + "modelAsString": false + } + } + }, + "required": [ + "userId", + "productId", + "name" + ], + "description": "Parameters supplied to the Create subscription operation." + }, + "SubscriptionUpdateParameters": { + "properties": { + "userId": { + "type": "string", + "description": "User identifier path: /users/{uid}" + }, + "productId": { + "type": "string", + "description": "Product identifier path: /products/{productId}" + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "description": "New subscription expiration date." + }, + "name": { + "type": "string", + "description": "Subscription name." + }, + "primaryKey": { + "type": "string", + "description": "Primary subscription key.", + "minLength": 1, + "maxLength": 256 + }, + "secondaryKey": { + "type": "string", + "description": "Secondary subscription key.", + "minLength": 1, + "maxLength": 256 + }, + "state": { + "type": "string", + "description": "Subscription state. Possible states are * active – the subscription is active, * suspended – the subscription is blocked, and the subscriber cannot call any APIs of the product, * submitted – the subscription request has been made by the developer, but has not yet been approved or rejected, * rejected – the subscription request has been denied by an administrator, * cancelled – the subscription has been cancelled by the developer or administrator, * expired – the subscription reached its expiration date and was deactivated.", + "enum": [ + "Suspended", + "Active", + "Expired", + "Submitted", + "Rejected", + "Cancelled" + ], + "x-ms-enum": { + "name": "SubscriptionStateContract", + "modelAsString": false + } + }, + "stateComment": { + "type": "string", + "description": "Comments describing subscription state change by the administrator." + } + }, + "description": "Parameters supplied to the Update subscription operation." + } }, "parameters": { - "SubscriptionEntityIdParameter": { - "name": "sid", - "in": "path", - "required": true, - "type": "string", - "description": "Subscription entity Identifier. The entity represents the association between a user and a product in API Management.", - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" - } + "SubscriptionEntityIdParameter": { + "name": "sid", + "in": "path", + "required": true, + "type": "string", + "description": "Subscription entity Identifier. The entity represents the association between a user and a product in API Management.", + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimtenant.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimtenant.json index 7c536e545f2c..87dd6ef15f8d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimtenant.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimtenant.json @@ -61,11 +61,11 @@ "schema": { "$ref": "#/definitions/AccessInformationContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } } } @@ -107,7 +107,7 @@ } ], "responses": { - "201": { + "201": { "description": "Tenant's access information updated successfully." }, "default": { @@ -175,7 +175,7 @@ } ], "responses": { - "204": { + "204": { "description": "The secondary key was successfully regenerated." }, "default": { @@ -214,11 +214,11 @@ "schema": { "$ref": "#/definitions/AccessInformationContract" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } }, "default": { @@ -503,16 +503,16 @@ } ], "responses": { - "200": { + "200": { "description": "Tenant Global Policy information.", "schema": { "type": "file" }, - "headers": { + "headers": { "ETag": { "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", "type": "string" - } + } } } } @@ -561,7 +561,7 @@ "201": { "description": "Global policy configuration was successfully created." }, - "204":{ + "204": { "description": "Global policy configuration of the tenant was successfully updated." }, "default": { @@ -571,7 +571,7 @@ } } } - }, + }, "delete": { "tags": [ "TenantPolicy" @@ -600,7 +600,7 @@ } ], "responses": { - "204": { + "204": { "description": "Successfully deleted the global policy configuration of the Tenant." }, "default": { @@ -613,148 +613,147 @@ } } }, - "definitions": { - "AccessInformationContract": { - "properties": { - "id": { - "type": "string", - "description": "Identifier." - }, - "primaryKey": { - "type": "string", - "description": "Primary access key." - }, - "secondaryKey": { - "type": "string", - "description": "Secondary access key." - }, - "enabled": { - "type": "boolean", - "description": "Tenant access information of the API Management service." - } - }, - "description": "Tenant access information contract of the API Management service." - }, - "AccessInformationUpdateParameters": { - "properties": { - "enabled": { - "type": "boolean", - "description": "Tenant access information of the API Management service." - } - }, - "required": [ - "enabled" - ], - "description": "Tenant access information update parameters of the API Management service." - }, - "DeployConfigurationParameters": { - "properties": { - "branch": { - "type": "string", - "description": "The name of the Git branch from which the configuration is to be deployed to the configuration database." - }, - "force": { - "type": "boolean", - "description": "The value enforcing deleting subscriptions to products that are deleted in this update." - } - }, - "required": [ - "branch" - ], - "description": "Parameters supplied to the Deploy Configuration operation." - }, - "OperationResultContract": { - "properties": { - "id": { - "type": "string", - "description": "Operation result identifier." - }, - "status": { - "type": "string", - "description": "Status of an async operation.", - "enum": [ - "Started", - "InProgress", - "Succeeded", - "Failed" - ], - "x-ms-enum": { - "name": "AsyncOperationState", - "modelAsString": false - } - }, - "started": { - "type": "string", - "format": "date-time", - "description": "Start time of an async operation. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - }, - "updated": { - "type": "string", - "format": "date-time", - "description": "Last update time of an async operation. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - }, - "resultInfo": { - "type": "string", - "description": "Optional result info." - }, - "error": { - "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" - } - }, - "description": "Operation Result." - }, - "SaveConfigurationParameter": { - "properties": { - "branch": { - "type": "string", - "description": "The name of the Git branch in which to commit the current configuration snapshot." - }, - "force": { - "type": "boolean", - "description": "The value if true, the current configuration database is committed to the Git repository, even if the Git repository has newer changes that would be overwritten." - } - }, - "required": [ - "branch" - ], - "description": "Parameters supplied to the Save Tenant Configuration operation." - }, - "TenantConfigurationSyncStateContract": { - "properties": { - "branch": { - "type": "string", - "description": "The name of Git branch." - }, - "commitId": { - "type": "string", - "description": "The latest commit Id." - }, - "isExport": { - "type": "boolean", - "description": "value indicating if last sync was save (true) or deploy (false) operation." - }, - "isSynced": { - "type": "boolean", - "description": "value indicating if last synchronization was later than the configuration change." - }, - "isGitEnabled": { - "type": "boolean", - "description": "value indicating whether Git configuration access is enabled." - }, - "syncDate": { - "type": "string", - "format": "date-time", - "description": "The date of the latest synchronization. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - }, - "configurationChangeDate": { - "type": "string", - "format": "date-time", - "description": "The date of the latest configuration change. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - } - }, - "description": "Tenant Configuration Synchronization State." - } + "definitions": { + "AccessInformationContract": { + "properties": { + "id": { + "type": "string", + "description": "Identifier." + }, + "primaryKey": { + "type": "string", + "description": "Primary access key." + }, + "secondaryKey": { + "type": "string", + "description": "Secondary access key." + }, + "enabled": { + "type": "boolean", + "description": "Tenant access information of the API Management service." + } + }, + "description": "Tenant access information contract of the API Management service." + }, + "AccessInformationUpdateParameters": { + "properties": { + "enabled": { + "type": "boolean", + "description": "Tenant access information of the API Management service." + } + }, + "required": [ + "enabled" + ], + "description": "Tenant access information update parameters of the API Management service." + }, + "DeployConfigurationParameters": { + "properties": { + "branch": { + "type": "string", + "description": "The name of the Git branch from which the configuration is to be deployed to the configuration database." + }, + "force": { + "type": "boolean", + "description": "The value enforcing deleting subscriptions to products that are deleted in this update." + } + }, + "required": [ + "branch" + ], + "description": "Parameters supplied to the Deploy Configuration operation." + }, + "OperationResultContract": { + "properties": { + "id": { + "type": "string", + "description": "Operation result identifier." + }, + "status": { + "type": "string", + "description": "Status of an async operation.", + "enum": [ + "Started", + "InProgress", + "Succeeded", + "Failed" + ], + "x-ms-enum": { + "name": "AsyncOperationState", + "modelAsString": false + } + }, + "started": { + "type": "string", + "format": "date-time", + "description": "Start time of an async operation. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + }, + "updated": { + "type": "string", + "format": "date-time", + "description": "Last update time of an async operation. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + }, + "resultInfo": { + "type": "string", + "description": "Optional result info." + }, + "error": { + "$ref": "./apimanagement.json#/definitions/ErrorBodyContract" + } + }, + "description": "Operation Result." + }, + "SaveConfigurationParameter": { + "properties": { + "branch": { + "type": "string", + "description": "The name of the Git branch in which to commit the current configuration snapshot." + }, + "force": { + "type": "boolean", + "description": "The value if true, the current configuration database is committed to the Git repository, even if the Git repository has newer changes that would be overwritten." + } + }, + "required": [ + "branch" + ], + "description": "Parameters supplied to the Save Tenant Configuration operation." + }, + "TenantConfigurationSyncStateContract": { + "properties": { + "branch": { + "type": "string", + "description": "The name of Git branch." + }, + "commitId": { + "type": "string", + "description": "The latest commit Id." + }, + "isExport": { + "type": "boolean", + "description": "value indicating if last sync was save (true) or deploy (false) operation." + }, + "isSynced": { + "type": "boolean", + "description": "value indicating if last synchronization was later than the configuration change." + }, + "isGitEnabled": { + "type": "boolean", + "description": "value indicating whether Git configuration access is enabled." + }, + "syncDate": { + "type": "string", + "format": "date-time", + "description": "The date of the latest synchronization. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + }, + "configurationChangeDate": { + "type": "string", + "format": "date-time", + "description": "The date of the latest configuration change. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + } + }, + "description": "Tenant Configuration Synchronization State." + } }, - "parameters": { - } -} \ No newline at end of file + "parameters": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimusers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimusers.json index 79ce9671c2ed..54c147ba4fda 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimusers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/apimusers.json @@ -794,4 +794,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementApplyNetworkConfigurationUpdates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementApplyNetworkConfigurationUpdates.json index d898031f365e..80d20681682a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementApplyNetworkConfigurationUpdates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementApplyNetworkConfigurationUpdates.json @@ -7,9 +7,9 @@ }, "responses": { "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" - } + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + } }, "200": { "body": { @@ -17,36 +17,36 @@ "name": "apimService1", "type": "Microsoft.ApiManagement/service", "tags": { - "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", - "Pool": "Manual", - "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" + "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", + "Pool": "Manual", + "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" }, "location": "West US", "etag": "AAAAAAAV8XM=", "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "Contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2015-09-22T01:52:02.4307221Z", - "runtimeUrl": "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", - "staticIPs": [ + "publisherEmail": "admin@live.com", + "publisherName": "Contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2015-09-22T01:52:02.4307221Z", + "runtimeUrl": "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", + "staticIPs": [ "xx.xxx.xx.xxx" - ], - "vpnconfiguration": { - "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/dfVirtualNetwork/subnets/backendSubnet", - "location": "West US" - }, - "vpnType": "External" + ], + "vpnconfiguration": { + "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/dfVirtualNetwork/subnets/backendSubnet", + "location": "West US" + }, + "vpnType": "External" }, "sku": { - "name": "Premium", - "capacity": 1 + "name": "Premium", + "capacity": 1 } - } + } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementCreateBackup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementCreateBackup.json index 66b375fad899..aedcdeaf9c83 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementCreateBackup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementCreateBackup.json @@ -5,17 +5,17 @@ "api-version": "2016-10-10", "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=2016-10-10" - } + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + } }, "200": { "body": { @@ -23,32 +23,32 @@ "name": "apimService1", "type": "Microsoft.ApiManagement/service", "tags": { - "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", - "Pool": "Manual", - "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" + "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", + "Pool": "Manual", + "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" }, "location": "West US", "etag": "AAAAAAAV8XM=", "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "Contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2015-09-22T01:52:02.4307221Z", - "runtimeUrl": "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", - "staticIPs": [ + "publisherEmail": "admin@live.com", + "publisherName": "Contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2015-09-22T01:52:02.4307221Z", + "runtimeUrl": "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", + "staticIPs": [ "xx.xxx.xx.xxx" - ], - "vpnType": "None" + ], + "vpnType": "None" }, "sku": { - "name": "Premium", - "capacity": 1 + "name": "Premium", + "capacity": 1 } - } + } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementCreateService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementCreateService.json index 0a5cde1bab25..ec0e961b9d62 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementCreateService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementCreateService.json @@ -5,23 +5,23 @@ "api-version": "2016-10-10", "subscriptionId": "subid", "parameters": { - "location" : "West US", - "sku" : { - "name" : "Premium", - "capacity" : 1 - }, - "properties" : { - "publisherEmail" : "admin@live.com", - "publisherName": "contoso" - } + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso" + } } }, "responses": { "201": { "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" - }, - "body" : { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + }, + "body": { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", "name": "apimService1", "type": "Microsoft.ApiManagement/service", @@ -29,18 +29,18 @@ "location": "West US", "etag": "AAAAAAAV8Yo=", "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "provisioningState": "Created", - "targetProvisioningState": "Activating", - "createdAtUtc": "2017-03-19T21:55:27.7443915Z", - "hostnameConfigurations": [], - "staticIPs": [], - "vpnType": "None" + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "provisioningState": "Created", + "targetProvisioningState": "Activating", + "createdAtUtc": "2017-03-19T21:55:27.7443915Z", + "hostnameConfigurations": [], + "staticIPs": [], + "vpnType": "None" }, "sku": { - "name": "Premium", - "capacity": 1 + "name": "Premium", + "capacity": 1 } } }, @@ -49,29 +49,29 @@ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", "name": "apimService1", "type": "Microsoft.ApiManagement/service", - "tags": { }, + "tags": {}, "location": "West US", "etag": "AAAAAAAV8XM=", "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2015-09-22T01:52:02.4307221Z", - "runtimeUrl": "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", - "staticIPs": [ + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2015-09-22T01:52:02.4307221Z", + "runtimeUrl": "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", + "staticIPs": [ "xx.xx.250.222" - ], - "vpnType": "None" + ], + "vpnType": "None" }, "sku": { - "name": "Premium", - "capacity": 1 + "name": "Premium", + "capacity": 1 } - } + } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementRestoreService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementRestoreService.json index 498544ae1a7b..aedcdeaf9c83 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementRestoreService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementRestoreService.json @@ -5,17 +5,17 @@ "api-version": "2016-10-10", "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=2016-10-10" - } + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + } }, "200": { "body": { @@ -23,32 +23,32 @@ "name": "apimService1", "type": "Microsoft.ApiManagement/service", "tags": { - "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", - "Pool": "Manual", - "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" + "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", + "Pool": "Manual", + "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" }, "location": "West US", "etag": "AAAAAAAV8XM=", "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "Contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2015-09-22T01:52:02.4307221Z", - "runtimeUrl": "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", - "staticIPs": [ + "publisherEmail": "admin@live.com", + "publisherName": "Contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2015-09-22T01:52:02.4307221Z", + "runtimeUrl": "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", + "staticIPs": [ "xx.xxx.xx.xxx" - ], - "vpnType": "None" + ], + "vpnType": "None" }, "sku": { - "name": "Premium", - "capacity": 1 + "name": "Premium", + "capacity": 1 } - } + } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceCheckNameAvailability.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceCheckNameAvailability.json index aee9435aa0b8..4b250b1a9aca 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceCheckNameAvailability.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceCheckNameAvailability.json @@ -4,7 +4,7 @@ "api-version": "2016-10-10", "subscriptionId": "subid", "parameters": { - "name" : "apimService1" + "name": "apimService1" } }, "responses": { @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceGetNetworkStatus.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceGetNetworkStatus.json index bf557f9011d9..7510e32707f8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceGetNetworkStatus.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceGetNetworkStatus.json @@ -9,25 +9,25 @@ "200": { "body": { "dnsServers": [ - "10.xx.3.87", - "10.xx.5.29", - "10.xx.32.105" + "10.xx.3.87", + "10.xx.5.29", + "10.xx.32.105" ], "connectivityStatus": [ - { + { "name": "xxxxx.database.windows.net", "status": "success", "lastUpdated": "2017-03-20T08:47:20.7043553Z", "lastStatusChange": "2017-03-20T08:47:20.7981057Z" - }, - { + }, + { "name": "xxxxxxx.blob.core.windows.net", "status": "success", "lastUpdated": "2017-03-20T08:47:20.720918Z", "lastStatusChange": "2017-03-20T08:47:20.9075183Z" - } + } ] } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceGetSsoToken.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceGetSsoToken.json index 852360062dd7..57b3d54e0e91 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceGetSsoToken.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceGetSsoToken.json @@ -12,4 +12,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceManageDeployment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceManageDeployment.json index d8d79866c43c..afac29226160 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceManageDeployment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceManageDeployment.json @@ -5,49 +5,49 @@ "api-version": "2016-10-10", "subscriptionId": "subid", "parameters": { - "location" : "West US", - "skuType" : "Developer", - "skuUnitCount" : 1, - "vpnConfiguration": { - "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/dfVirtualNetwork/subnets/backendSubnet", - "location": "West US" - }, - "vpnType":"External" + "location": "West US", + "skuType": "Developer", + "skuUnitCount": 1, + "vpnConfiguration": { + "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/dfVirtualNetwork/subnets/backendSubnet", + "location": "West US" + }, + "vpnType": "External" } }, "responses": { "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + }, + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAAjQM=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "Contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-03-20T03:45:14.1412986Z", + "runtimeUrl": "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": [], + "staticIPs": [ + "xx.xxx.xx.xxx" + ], + "vpnType": "None" }, - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAAjQM=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "Contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-03-20T03:45:14.1412986Z", - "runtimeUrl": "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": [], - "staticIPs": [ - "xx.xxx.xx.xxx" - ], - "vpnType": "None" - }, - "sku": { - "name": "Developer", - "capacity": 1 - } + "sku": { + "name": "Developer", + "capacity": 1 } + } }, "200": { "body": { @@ -55,36 +55,36 @@ "name": "apimService1", "type": "Microsoft.ApiManagement/service", "tags": { - "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", - "Pool": "Manual", - "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" + "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", + "Pool": "Manual", + "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" }, "location": "West US", "etag": "AAAAAAAV8XM=", "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "Contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2015-09-22T01:52:02.4307221Z", - "runtimeUrl": "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", - "staticIPs": [ + "publisherEmail": "admin@live.com", + "publisherName": "Contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2015-09-22T01:52:02.4307221Z", + "runtimeUrl": "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", + "staticIPs": [ "xx.xx.xxx.xxx" - ], - "vpnconfiguration": { - "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/dfVirtualNetwork/subnets/backendSubnet", - "location": "West US" - }, - "vpnType": "External" + ], + "vpnconfiguration": { + "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/dfVirtualNetwork/subnets/backendSubnet", + "location": "West US" + }, + "vpnType": "External" }, "sku": { - "name": "Developer", - "capacity": 1 + "name": "Developer", + "capacity": 1 } - } + } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceUpdateHostName.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceUpdateHostName.json index 2c91b41fbb88..b571ba54d9e1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceUpdateHostName.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceUpdateHostName.json @@ -5,86 +5,82 @@ "api-version": "2016-10-10", "subscriptionId": "subid", "parameters": { - "update": [ - { - "type": "Proxy", - "hostname": "internalproxy2.contoso.com", - "certificate": - { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Portal", - "hostname": "internalportal2.contoso.com", - "certificate": - { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Management", - "hostname": "internalmgmt2.contoso.com", - "certificate": - { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Scm", - "hostname": "internalscm2.contoso.com", - "certificate": - { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - } - ] + "update": [ + { + "type": "Proxy", + "hostname": "internalproxy2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Portal", + "hostname": "internalportal2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Management", + "hostname": "internalmgmt2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Scm", + "hostname": "internalscm2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + } + ] } }, "responses": { "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + }, + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "tags": { + "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", + "Pool": "Manual", + "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" }, - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "tags": { - "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", - "Pool": "Manual", - "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" - }, - "location": "West US", - "etag": "AAAAAAAV8ZY=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "Contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2015-09-22T01:52:02.4307221Z", - "runtimeUrl": "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", - "staticIPs": [ - "xx.xx.xxxx.xxxx" - ], - "vpnType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - }, - "name": "apimService1", - "type": "Microsoft.ApiManagement/service" - } + "location": "West US", + "etag": "AAAAAAAV8ZY=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "Contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2015-09-22T01:52:02.4307221Z", + "runtimeUrl": "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", + "staticIPs": [ + "xx.xx.xxxx.xxxx" + ], + "vpnType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 + }, + "name": "apimService1", + "type": "Microsoft.ApiManagement/service" + } }, "200": { "body": { @@ -92,70 +88,70 @@ "name": "apimService1", "type": "Microsoft.ApiManagement/service", "tags": { - "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", - "Pool": "Manual", - "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" + "TestExpiration": "Tue, 22 Sep 2015 02:52:00 GMT", + "Pool": "Manual", + "TestSuiteExpiration": "Tue, 22 Sep 2015 05:10:46 GMT" }, "location": "West US", "etag": "AAAAAAAV8aU=", "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "Contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2015-09-22T01:52:02.4307221Z", - "runtimeUrl": "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": [ - { - "type": "Portal", - "hostname": "internalportal2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "*******************************", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Proxy", - "hostname": "internalproxy2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "*******************************", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Management", - "hostname": "internalmgmt2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "*******************************", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Scm", - "hostname": "internalscm2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "*******************************", - "subject": "CN=*.contoso.com" - } - } - ], - "staticIPs": [ - "xx.xxx.xx.xxx" - ], - "vpnType": "None" + "publisherEmail": "admin@live.com", + "publisherName": "Contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2015-09-22T01:52:02.4307221Z", + "runtimeUrl": "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": [ + { + "type": "Portal", + "hostname": "internalportal2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "*******************************", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Proxy", + "hostname": "internalproxy2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "*******************************", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Management", + "hostname": "internalmgmt2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "*******************************", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Scm", + "hostname": "internalscm2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "*******************************", + "subject": "CN=*.contoso.com" + } + } + ], + "staticIPs": [ + "xx.xxx.xx.xxx" + ], + "vpnType": "None" }, "sku": { - "name": "Premium", - "capacity": 1 - } + "name": "Premium", + "capacity": 1 } + } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceUploadProxyCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceUploadProxyCertificate.json index 8103ff471d09..9097e475e7e0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceUploadProxyCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementServiceUploadProxyCertificate.json @@ -5,9 +5,9 @@ "api-version": "2016-10-10", "subscriptionId": "subid", "parameters": { - "type" : "Proxy", - "certificate" : "MIIZ7wI************************************************************", - "certificate_password": "******" + "type": "Proxy", + "certificate": "MIIZ7wI************************************************************", + "certificate_password": "******" } }, "responses": { @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementUsersGetToken.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementUsersGetToken.json index d37980b43505..baf8c5b40f1c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementUsersGetToken.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-10-10/examples/ApiManagementUsersGetToken.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimanagement.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimanagement.json index 202622d61791..dc7bcaedc997 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimanagement.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimanagement.json @@ -597,4 +597,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimapis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimapis.json index a844d40dd12e..6451b183124b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimapis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimapis.json @@ -2426,7 +2426,7 @@ { "$ref": "./apimdiagnostics.json#/parameters/DiagnosticIdParameter" }, - { + { "$ref": "./apimloggers.json#/parameters/LoggerIdParameter" }, { @@ -2448,7 +2448,7 @@ } } }, - "put": { + "put": { "tags": [ "ApiDiagnosticLoggers" ], @@ -3681,8 +3681,8 @@ }, "description": "Describes on which protocols the operations in this API can be invoked." }, - "apiVersionSet" : { - "$ref" : "./apimversionsets.json#/definitions/ApiVersionSetContract" + "apiVersionSet": { + "$ref": "./apimversionsets.json#/definitions/ApiVersionSetContract" } }, "allOf": [ @@ -3837,25 +3837,25 @@ "ApiRevisionContractProperties": { "properties": { "apiId": { - "type":"string", + "type": "string", "readOnly": true, "description": "Identifier of the API Revision." }, "apiRevision": { - "type":"string", + "type": "string", "minLength": 1, "maxLength": 100, "readOnly": true, "description": "Revision number of API." }, "createdDateTime": { - "type":"string", + "type": "string", "readOnly": true, "format": "date-time", "description": "The time the API Revision was created. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard." }, "updatedDateTime": { - "type":"string", + "type": "string", "readOnly": true, "format": "date-time", "description": "The time the API Revision were updated. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard." @@ -3884,28 +3884,28 @@ }, "description": "Summary of revision metadata." }, - "ApiRevisionInfoContract" : { - "description": "Object used to create an API Revision or Version based on an existing API Revision", - "properties": { - "sourceApiId": { - "type": "string", - "description": "Resource identifier of API to be used to create the revision from." - }, - "apiVersionName": { - "type": "string", - "maxLength": 100, - "description": "Version identifier for the new API Version." - }, - "apiRevisionDescription": { - "type": "string", - "maxLength": 256, - "description": "Description of new API Revision." - }, - "apiVersionSet" : { - "description": "Version set details", - "$ref" : "./apimversionsets.json#/definitions/ApiVersionSetContractProperties" - } + "ApiRevisionInfoContract": { + "description": "Object used to create an API Revision or Version based on an existing API Revision", + "properties": { + "sourceApiId": { + "type": "string", + "description": "Resource identifier of API to be used to create the revision from." + }, + "apiVersionName": { + "type": "string", + "maxLength": 100, + "description": "Version identifier for the new API Version." + }, + "apiRevisionDescription": { + "type": "string", + "maxLength": 256, + "description": "Description of new API Revision." + }, + "apiVersionSet": { + "description": "Version set details", + "$ref": "./apimversionsets.json#/definitions/ApiVersionSetContractProperties" } + } }, "ApiReleaseCollection": { "properties": { @@ -3948,13 +3948,13 @@ "description": "Identifier of the API the release belongs to." }, "createdDateTime": { - "type":"string", + "type": "string", "readOnly": true, "format": "date-time", "description": "The time the API was released. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard." }, "updatedDateTime": { - "type":"string", + "type": "string", "readOnly": true, "format": "date-time", "description": "The time the API release was updated." @@ -4377,7 +4377,7 @@ "description": "Text describing the issue." }, "createdDate": { - "type":"string", + "type": "string", "format": "date-time", "description": "Date and time when the issue was created." }, @@ -4474,7 +4474,7 @@ "description": "Comment text." }, "createdDate": { - "type":"string", + "type": "string", "format": "date-time", "description": "Date and time when the comment was created." }, @@ -4529,7 +4529,7 @@ "description": "Filename by which the binary data will be saved." }, "contentFormat": { - "type":"string", + "type": "string", "description": "Either 'link' if content is provided via an HTTP link or the MIME type of the Base64-encoded binary data provided in the 'content' property." }, "content": { diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimauthorizationservers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimauthorizationservers.json index 3685d48944dd..a16fbea78208 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimauthorizationservers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimauthorizationservers.json @@ -1,683 +1,683 @@ { - "swagger": "2.0", - "info": { - "title": "ApiManagementClient", - "description": "Use these REST APIs for managing OAuth2 servers configuration in your Azure API Management deployment. OAuth 2.0 can be used to authorize developer accounts for Azure API Management. For more information refer to [How to OAuth2](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-oauth2).", - "version": "2017-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}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/authorizationServers": { - "get": { - "tags": [ - "AuthorizationServers" - ], - "operationId": "AuthorizationServer_ListByService", - "description": "Lists a collection of authorization servers defined within a service instance.", - "x-ms-examples": { - "ApiManagementListAuthorizationServers": { - "$ref": "./examples/ApiManagementListAuthorizationServers.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "name": "$filter", - "in": "query", - "required": false, - "type": "string", - "description": "| Field | Supported operators | Supported functions |\n|-------|------------------------|---------------------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| name | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |" - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "A Collection of the Authorization Server entities for the specified API Management service instance.", - "schema": { - "$ref": "#/definitions/AuthorizationServerCollection" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/AuthorizationServerContract" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/authorizationServers/{authsid}": { - "head": { - "tags": [ - "AuthorizationServers" - ], - "operationId": "AuthorizationServer_GetEntityTag", - "description": "Gets the entity state (Etag) version of the authorizationServer specified by its identifier.", - "x-ms-examples": { - "ApiManagementHeadAuthorizationServer": { - "$ref": "./examples/ApiManagementHeadAuthorizationServer.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "#/parameters/AuthenticationServerIdParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Specified authorization server entity exists and current entity state version is present in the ETag header.", - "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - }, - "get": { - "tags": [ - "AuthorizationServers" - ], - "operationId": "AuthorizationServer_Get", - "description": "Gets the details of the authorization server specified by its identifier.", - "x-ms-examples": { - "ApiManagementGetAuthorizationServer": { - "$ref": "./examples/ApiManagementGetAuthorizationServer.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "#/parameters/AuthenticationServerIdParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Gets the details of the specified authorization server.", - "schema": { - "$ref": "#/definitions/AuthorizationServerContract" - }, - "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - }, - "put": { - "tags": [ - "AuthorizationServers" - ], - "operationId": "AuthorizationServer_CreateOrUpdate", - "description": "Creates new authorization server or updates an existing authorization server.", - "x-ms-examples": { - "ApiManagementCreateAuthorizationServer": { - "$ref": "./examples/ApiManagementCreateAuthorizationServer.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "#/parameters/AuthenticationServerIdParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/AuthorizationServerContract" - }, - "description": "Create or update parameters." - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "201": { - "description": "Authorization server was successfully registered.", - "schema": { - "$ref": "#/definitions/AuthorizationServerContract" - } - }, - "200": { - "description": "Authorization server is already registered.", - "schema": { - "$ref": "#/definitions/AuthorizationServerContract" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - }, - "patch": { - "tags": [ - "AuthorizationServers" - ], - "operationId": "AuthorizationServer_Update", - "description": "Updates the details of the authorization server specified by its identifier.", - "x-ms-examples": { - "ApiManagementUpdateAuthorizationServer": { - "$ref": "./examples/ApiManagementUpdateAuthorizationServer.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "#/parameters/AuthenticationServerIdParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/AuthorizationServerUpdateContract" - }, - "description": "OAuth2 Server settings Update parameters." - }, - { - "name": "If-Match", - "in": "header", - "required": true, - "description": "The entity state (Etag) version of the authorization server to update. A value of \"*\" can be used for If-Match to unconditionally apply the operation.", - "type": "string" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "204": { - "description": "The authorization server settings were successfully updated." - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "tags": [ - "AuthorizationServers" - ], - "operationId": "AuthorizationServer_Delete", - "description": "Deletes specific authorization server instance.", - "x-ms-examples": { - "ApiManagementDeleteAuthorizationServer": { - "$ref": "./examples/ApiManagementDeleteAuthorizationServer.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "#/parameters/AuthenticationServerIdParameter" - }, - { - "name": "If-Match", - "in": "header", - "required": true, - "description": "The entity state (Etag) version of the authentication server to delete. A value of \"*\" can be used for If-Match to unconditionally apply the operation.", - "type": "string" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "204": { - "description": "The authorization server settings were successfully deleted." - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - } - } - }, - "definitions": { - "AuthorizationServerCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/AuthorizationServerContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged OAuth2 Authorization Servers list representation." - }, - "AuthorizationServerContract": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/AuthorizationServerContractProperties", - "description": "Properties of the External OAuth authorization server Contract." - } - }, - "allOf": [ - { - "$ref": "./apimanagement.json#/definitions/Resource" - } - ], - "description": "External OAuth authorization server settings." - }, - "AuthorizationServerContractProperties": { - "properties": { - "displayName": { - "type": "string", - "description": "User-friendly authorization server name.", - "minLength": 1, - "maxLength": 50 - }, - "clientRegistrationEndpoint": { - "type": "string", - "description": "Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced." - }, - "authorizationEndpoint": { - "type": "string", - "description": "OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2." - }, - "grantTypes": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "authorizationCode", - "implicit", - "resourceOwnerPassword", - "clientCredentials" - ], - "x-ms-enum": { - "name": "GrantType", - "modelAsString": true, - "values": [ - { - "value": "authorizationCode", - "description": "Authorization Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.1." - }, - { - "value": "implicit", - "description": "Implicit Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.2." - }, - { - "value": "resourceOwnerPassword", - "description": "Resource Owner Password Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.3." - }, - { - "value": "clientCredentials", - "description": "Client Credentials Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.4." - } - ] - } - }, - "description": "Form of an authorization grant, which the client uses to request the access token.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-4" - } - }, - "clientId": { - "type": "string", - "description": "Client or app id registered with this authorization server." - } - }, - "allOf": [ - { - "$ref": "#/definitions/AuthorizationServerContractBaseProperties" - } - ], - "required": [ - "displayName", - "clientRegistrationEndpoint", - "authorizationEndpoint", - "clientId", - "grantTypes" - ], - "description": "External OAuth authorization server settings Properties." - }, - "AuthorizationServerUpdateContract": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/AuthorizationServerUpdateContractProperties", - "description": "Properties of the External OAuth authorization server update Contract." - } - }, - "allOf": [ - { - "$ref": "./apimanagement.json#/definitions/Resource" - } - ], - "description": "External OAuth authorization server settings." - }, - "AuthorizationServerUpdateContractProperties": { - "properties": { - "displayName": { - "type": "string", - "description": "User-friendly authorization server name.", - "minLength": 1, - "maxLength": 50 - }, - "clientRegistrationEndpoint": { - "type": "string", - "description": "Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced." - }, - "authorizationEndpoint": { - "type": "string", - "description": "OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2." - }, - "grantTypes": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "authorizationCode", - "implicit", - "resourceOwnerPassword", - "clientCredentials" - ], - "x-ms-enum": { - "name": "GrantType", - "modelAsString": true, - "values": [ - { - "value": "authorizationCode", - "description": "Authorization Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.1." - }, - { - "value": "implicit", - "description": "Implicit Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.2." - }, - { - "value": "resourceOwnerPassword", - "description": "Resource Owner Password Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.3." - }, - { - "value": "clientCredentials", - "description": "Client Credentials Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.4." - } - ] - } - }, - "description": "Form of an authorization grant, which the client uses to request the access token.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-4" - } - }, - "clientId": { - "type": "string", - "description": "Client or app id registered with this authorization server." - } - }, - "allOf": [ - { - "$ref": "#/definitions/AuthorizationServerContractBaseProperties" - } - ], - "description": "External OAuth authorization server Update settings contract." - }, - "AuthorizationServerContractBaseProperties": { - "properties": { - "description": { - "type": "string", - "description": "Description of the authorization server. Can contain HTML formatting tags." - }, - "authorizationMethods": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "HEAD", - "OPTIONS", - "TRACE", - "GET", - "POST", - "PUT", - "PATCH", - "DELETE" - ], - "x-ms-enum": { - "name": "AuthorizationMethod", - "modelAsString": false - } - }, - "description": "HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional." - }, - "clientAuthenticationMethod": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "Basic", - "Body" - ], - "x-ms-enum": { - "name": "ClientAuthenticationMethod", - "modelAsString": true, - "values": [ - { - "value": "Basic", - "description": "Basic Client Authentication method." - }, - { - "value": "Body", - "description": "Body based Authentication method." - } - ] - } - }, - "description": "Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format." - }, - "tokenBodyParameters": { - "type": "array", - "items": { - "$ref": "#/definitions/TokenBodyParameterContract" - }, - "description": "Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {\"name\" : \"name value\", \"value\": \"a value\"}." - }, - "tokenEndpoint": { - "type": "string", - "description": "OAuth token endpoint. Contains absolute URI to entity being referenced.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-3.1" - } - }, - "supportState": { - "type": "boolean", - "description": "If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-3.1" - } - }, - "defaultScope": { - "type": "string", - "description": "Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-3.3" - } - }, - "bearerTokenSendingMethods": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "authorizationHeader", - "query" - ], - "x-ms-enum": { - "name": "BearerTokenSendingMethod", - "modelAsString": true - } - }, - "description": "Specifies the mechanism by which access token is passed to the API. ", - "externalDocs": { - "url": "http://tools.ietf.org/html/rfc6749#section-4" - } - }, - "clientSecret": { - "type": "string", - "description": "Client or app secret registered with this authorization server." - }, - "resourceOwnerUsername": { - "type": "string", - "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username." - }, - "resourceOwnerPassword": { - "type": "string", - "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password." - } - }, - "description": "External OAuth authorization server Update settings contract." - }, - "TokenBodyParameterContract": { - "properties": { - "name": { - "type": "string", - "description": "body parameter name." - }, - "value": { - "type": "string", - "description": "body parameter value." - } - }, - "required": [ - "name", - "value" - ], - "description": "OAuth acquire token request body parameter (www-url-form-encoded)." - } - }, - "parameters": { - "AuthenticationServerIdParameter": { - "name": "authsid", - "in": "path", - "required": true, - "type": "string", - "description": "Identifier of the authorization server.", - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" - } - } -} \ No newline at end of file + "swagger": "2.0", + "info": { + "title": "ApiManagementClient", + "description": "Use these REST APIs for managing OAuth2 servers configuration in your Azure API Management deployment. OAuth 2.0 can be used to authorize developer accounts for Azure API Management. For more information refer to [How to OAuth2](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-oauth2).", + "version": "2017-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}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/authorizationServers": { + "get": { + "tags": [ + "AuthorizationServers" + ], + "operationId": "AuthorizationServer_ListByService", + "description": "Lists a collection of authorization servers defined within a service instance.", + "x-ms-examples": { + "ApiManagementListAuthorizationServers": { + "$ref": "./examples/ApiManagementListAuthorizationServers.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "name": "$filter", + "in": "query", + "required": false, + "type": "string", + "description": "| Field | Supported operators | Supported functions |\n|-------|------------------------|---------------------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| name | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |" + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "A Collection of the Authorization Server entities for the specified API Management service instance.", + "schema": { + "$ref": "#/definitions/AuthorizationServerCollection" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/AuthorizationServerContract" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/authorizationServers/{authsid}": { + "head": { + "tags": [ + "AuthorizationServers" + ], + "operationId": "AuthorizationServer_GetEntityTag", + "description": "Gets the entity state (Etag) version of the authorizationServer specified by its identifier.", + "x-ms-examples": { + "ApiManagementHeadAuthorizationServer": { + "$ref": "./examples/ApiManagementHeadAuthorizationServer.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "#/parameters/AuthenticationServerIdParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Specified authorization server entity exists and current entity state version is present in the ETag header.", + "headers": { + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + }, + "get": { + "tags": [ + "AuthorizationServers" + ], + "operationId": "AuthorizationServer_Get", + "description": "Gets the details of the authorization server specified by its identifier.", + "x-ms-examples": { + "ApiManagementGetAuthorizationServer": { + "$ref": "./examples/ApiManagementGetAuthorizationServer.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "#/parameters/AuthenticationServerIdParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Gets the details of the specified authorization server.", + "schema": { + "$ref": "#/definitions/AuthorizationServerContract" + }, + "headers": { + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + }, + "put": { + "tags": [ + "AuthorizationServers" + ], + "operationId": "AuthorizationServer_CreateOrUpdate", + "description": "Creates new authorization server or updates an existing authorization server.", + "x-ms-examples": { + "ApiManagementCreateAuthorizationServer": { + "$ref": "./examples/ApiManagementCreateAuthorizationServer.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "#/parameters/AuthenticationServerIdParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/AuthorizationServerContract" + }, + "description": "Create or update parameters." + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "201": { + "description": "Authorization server was successfully registered.", + "schema": { + "$ref": "#/definitions/AuthorizationServerContract" + } + }, + "200": { + "description": "Authorization server is already registered.", + "schema": { + "$ref": "#/definitions/AuthorizationServerContract" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "tags": [ + "AuthorizationServers" + ], + "operationId": "AuthorizationServer_Update", + "description": "Updates the details of the authorization server specified by its identifier.", + "x-ms-examples": { + "ApiManagementUpdateAuthorizationServer": { + "$ref": "./examples/ApiManagementUpdateAuthorizationServer.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "#/parameters/AuthenticationServerIdParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/AuthorizationServerUpdateContract" + }, + "description": "OAuth2 Server settings Update parameters." + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "description": "The entity state (Etag) version of the authorization server to update. A value of \"*\" can be used for If-Match to unconditionally apply the operation.", + "type": "string" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "204": { + "description": "The authorization server settings were successfully updated." + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + }, + "delete": { + "tags": [ + "AuthorizationServers" + ], + "operationId": "AuthorizationServer_Delete", + "description": "Deletes specific authorization server instance.", + "x-ms-examples": { + "ApiManagementDeleteAuthorizationServer": { + "$ref": "./examples/ApiManagementDeleteAuthorizationServer.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "#/parameters/AuthenticationServerIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "description": "The entity state (Etag) version of the authentication server to delete. A value of \"*\" can be used for If-Match to unconditionally apply the operation.", + "type": "string" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "204": { + "description": "The authorization server settings were successfully deleted." + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + } + } + }, + "definitions": { + "AuthorizationServerCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/AuthorizationServerContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged OAuth2 Authorization Servers list representation." + }, + "AuthorizationServerContract": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/AuthorizationServerContractProperties", + "description": "Properties of the External OAuth authorization server Contract." + } + }, + "allOf": [ + { + "$ref": "./apimanagement.json#/definitions/Resource" + } + ], + "description": "External OAuth authorization server settings." + }, + "AuthorizationServerContractProperties": { + "properties": { + "displayName": { + "type": "string", + "description": "User-friendly authorization server name.", + "minLength": 1, + "maxLength": 50 + }, + "clientRegistrationEndpoint": { + "type": "string", + "description": "Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced." + }, + "authorizationEndpoint": { + "type": "string", + "description": "OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2." + }, + "grantTypes": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "authorizationCode", + "implicit", + "resourceOwnerPassword", + "clientCredentials" + ], + "x-ms-enum": { + "name": "GrantType", + "modelAsString": true, + "values": [ + { + "value": "authorizationCode", + "description": "Authorization Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.1." + }, + { + "value": "implicit", + "description": "Implicit Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.2." + }, + { + "value": "resourceOwnerPassword", + "description": "Resource Owner Password Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.3." + }, + { + "value": "clientCredentials", + "description": "Client Credentials Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.4." + } + ] + } + }, + "description": "Form of an authorization grant, which the client uses to request the access token.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-4" + } + }, + "clientId": { + "type": "string", + "description": "Client or app id registered with this authorization server." + } + }, + "allOf": [ + { + "$ref": "#/definitions/AuthorizationServerContractBaseProperties" + } + ], + "required": [ + "displayName", + "clientRegistrationEndpoint", + "authorizationEndpoint", + "clientId", + "grantTypes" + ], + "description": "External OAuth authorization server settings Properties." + }, + "AuthorizationServerUpdateContract": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/AuthorizationServerUpdateContractProperties", + "description": "Properties of the External OAuth authorization server update Contract." + } + }, + "allOf": [ + { + "$ref": "./apimanagement.json#/definitions/Resource" + } + ], + "description": "External OAuth authorization server settings." + }, + "AuthorizationServerUpdateContractProperties": { + "properties": { + "displayName": { + "type": "string", + "description": "User-friendly authorization server name.", + "minLength": 1, + "maxLength": 50 + }, + "clientRegistrationEndpoint": { + "type": "string", + "description": "Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced." + }, + "authorizationEndpoint": { + "type": "string", + "description": "OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2." + }, + "grantTypes": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "authorizationCode", + "implicit", + "resourceOwnerPassword", + "clientCredentials" + ], + "x-ms-enum": { + "name": "GrantType", + "modelAsString": true, + "values": [ + { + "value": "authorizationCode", + "description": "Authorization Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.1." + }, + { + "value": "implicit", + "description": "Implicit Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.2." + }, + { + "value": "resourceOwnerPassword", + "description": "Resource Owner Password Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.3." + }, + { + "value": "clientCredentials", + "description": "Client Credentials Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.4." + } + ] + } + }, + "description": "Form of an authorization grant, which the client uses to request the access token.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-4" + } + }, + "clientId": { + "type": "string", + "description": "Client or app id registered with this authorization server." + } + }, + "allOf": [ + { + "$ref": "#/definitions/AuthorizationServerContractBaseProperties" + } + ], + "description": "External OAuth authorization server Update settings contract." + }, + "AuthorizationServerContractBaseProperties": { + "properties": { + "description": { + "type": "string", + "description": "Description of the authorization server. Can contain HTML formatting tags." + }, + "authorizationMethods": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "HEAD", + "OPTIONS", + "TRACE", + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], + "x-ms-enum": { + "name": "AuthorizationMethod", + "modelAsString": false + } + }, + "description": "HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional." + }, + "clientAuthenticationMethod": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "Basic", + "Body" + ], + "x-ms-enum": { + "name": "ClientAuthenticationMethod", + "modelAsString": true, + "values": [ + { + "value": "Basic", + "description": "Basic Client Authentication method." + }, + { + "value": "Body", + "description": "Body based Authentication method." + } + ] + } + }, + "description": "Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format." + }, + "tokenBodyParameters": { + "type": "array", + "items": { + "$ref": "#/definitions/TokenBodyParameterContract" + }, + "description": "Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {\"name\" : \"name value\", \"value\": \"a value\"}." + }, + "tokenEndpoint": { + "type": "string", + "description": "OAuth token endpoint. Contains absolute URI to entity being referenced.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-3.1" + } + }, + "supportState": { + "type": "boolean", + "description": "If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-3.1" + } + }, + "defaultScope": { + "type": "string", + "description": "Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-3.3" + } + }, + "bearerTokenSendingMethods": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "authorizationHeader", + "query" + ], + "x-ms-enum": { + "name": "BearerTokenSendingMethod", + "modelAsString": true + } + }, + "description": "Specifies the mechanism by which access token is passed to the API. ", + "externalDocs": { + "url": "http://tools.ietf.org/html/rfc6749#section-4" + } + }, + "clientSecret": { + "type": "string", + "description": "Client or app secret registered with this authorization server." + }, + "resourceOwnerUsername": { + "type": "string", + "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username." + }, + "resourceOwnerPassword": { + "type": "string", + "description": "Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password." + } + }, + "description": "External OAuth authorization server Update settings contract." + }, + "TokenBodyParameterContract": { + "properties": { + "name": { + "type": "string", + "description": "body parameter name." + }, + "value": { + "type": "string", + "description": "body parameter value." + } + }, + "required": [ + "name", + "value" + ], + "description": "OAuth acquire token request body parameter (www-url-form-encoded)." + } + }, + "parameters": { + "AuthenticationServerIdParameter": { + "name": "authsid", + "in": "path", + "required": true, + "type": "string", + "description": "Identifier of the authorization server.", + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimbackends.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimbackends.json index f36d7725f6db..91f67dd2f81c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimbackends.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimbackends.json @@ -126,10 +126,10 @@ "200": { "description": "Specified backend entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -140,7 +140,7 @@ } } }, - "get": { + "get": { "tags": [ "Backends" ], @@ -732,7 +732,7 @@ }, "BackendReconnectContract": { "properties": { - "properties":{ + "properties": { "x-ms-client-flatten": true, "$ref": "#/definitions/BackendReconnectProperties", "description": "Reconnect request properties." @@ -771,4 +771,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimcertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimcertificates.json index 57c6c10526cf..dff20959823d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimcertificates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimcertificates.json @@ -41,7 +41,7 @@ ], "operationId": "Certificate_ListByService", "description": "Lists a collection of all certificates in the specified service instance.", - "x-ms-examples": { + "x-ms-examples": { "ApiManagementListCertificates": { "$ref": "./examples/ApiManagementListCertificates.json" } @@ -126,10 +126,10 @@ "200": { "description": "Specified certificate entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -140,7 +140,7 @@ } } }, - "get": { + "get": { "tags": [ "Certificates" ], @@ -362,8 +362,8 @@ ], "description": "Properties of the Certificate contract." }, - "CertificateCreateOrUpdateParameters":{ - "properties": { + "CertificateCreateOrUpdateParameters": { + "properties": { "properties": { "x-ms-client-flatten": true, "$ref": "#/definitions/CertificateCreateOrUpdateProperties", @@ -403,4 +403,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimdiagnostics.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimdiagnostics.json index 4264715afcae..0f1174a4ed3e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimdiagnostics.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimdiagnostics.json @@ -442,7 +442,7 @@ { "$ref": "#/parameters/DiagnosticIdParameter" }, - { + { "$ref": "./apimloggers.json#/parameters/LoggerIdParameter" }, { @@ -464,7 +464,7 @@ } } }, - "put": { + "put": { "tags": [ "DiagnosticLoggers" ], diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimemailtemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimemailtemplate.json index 0cd80e168e70..ec7128082aba 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimemailtemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimemailtemplate.json @@ -112,10 +112,10 @@ "200": { "description": "Specified email template entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -126,7 +126,7 @@ } } }, - "get": { + "get": { "tags": [ "EmailTemplates" ], @@ -500,4 +500,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimgroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimgroups.json index a60cb1560060..b4561e4f73ef 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimgroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimgroups.json @@ -123,10 +123,10 @@ "200": { "description": "Specified group entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -137,7 +137,7 @@ } } }, - "get": { + "get": { "tags": [ "Groups" ], @@ -457,7 +457,7 @@ } } }, - "put": { + "put": { "tags": [ "GroupUsers" ], @@ -728,4 +728,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimidentityprovider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimidentityprovider.json index 7d9a7735275e..8a819d6d7951 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimidentityprovider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimidentityprovider.json @@ -112,10 +112,10 @@ "200": { "description": "Specified identity provider entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -126,7 +126,7 @@ } } }, - "get": { + "get": { "tags": [ "IdentityProvider" ], @@ -386,7 +386,7 @@ "$ref": "#/definitions/IdentityProviderContract" }, "description": "Identity Provider configuration values." - }, + }, "nextLink": { "type": "string", "description": "Next page link if any." @@ -394,8 +394,8 @@ }, "description": "List of all the Identity Providers configured on the service instance." }, - "IdentityProviderUpdateParameters":{ - "properties": { + "IdentityProviderUpdateParameters": { + "properties": { "properties": { "x-ms-client-flatten": true, "$ref": "#/definitions/IdentityProviderUpdateProperties", @@ -415,7 +415,7 @@ "type": "string", "description": "Client secret of the Application in external Identity Provider, used to authenticate login request. For example, it is App Secret for Facebook login, API Key for Google login, Public Key for Microsoft.", "minLength": 1 - } + } }, "allOf": [ { @@ -548,4 +548,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimloggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimloggers.json index b979e08bc884..8f98165ef47a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimloggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimloggers.json @@ -129,10 +129,10 @@ "200": { "description": "Specified logger entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -143,7 +143,7 @@ } } }, - "get": { + "get": { "tags": [ "Loggers" ], @@ -439,8 +439,8 @@ "type": "boolean", "description": "Whether records are buffered in the logger before publishing. Default is assumed to be true." }, - "sampling" : { - "$ref" : "#/definitions/LoggerSamplingContract", + "sampling": { + "$ref": "#/definitions/LoggerSamplingContract", "description": "Sampling settings for an ApplicationInsights logger.", "example": { "sampling": { @@ -543,14 +543,14 @@ } }, "percentage": { - "type": "number", - "format": "double", - "description": "Rate of sampling for fixed-rate sampling." + "type": "number", + "format": "double", + "description": "Rate of sampling for fixed-rate sampling." }, "maxTelemetryItemsPerSecond": { - "type": "integer", - "format": "int32", - "description": "Target rate of telemetry items per second." + "type": "integer", + "format": "int32", + "description": "Target rate of telemetry items per second." }, "evaluationInterval": { "type": "string", @@ -574,24 +574,24 @@ "maxLength": 2000 }, "minPercentage": { - "type": "number", - "format": "double", - "description": "Minimum allowed rate of sampling." + "type": "number", + "format": "double", + "description": "Minimum allowed rate of sampling." }, "maxPercentage": { - "type": "number", - "format": "double", - "description": "Maximum allowed rate of sampling." + "type": "number", + "format": "double", + "description": "Maximum allowed rate of sampling." }, "movingAverageRatio": { - "type": "number", - "format": "double", - "description": "Moving average ration assigned to most recent value." + "type": "number", + "format": "double", + "description": "Moving average ration assigned to most recent value." }, "initialPercentage": { - "type": "number", - "format": "double", - "description": "Initial sampling rate." + "type": "number", + "format": "double", + "description": "Initial sampling rate." } }, "description": "Sampling settings for an ApplicationInsights logger." @@ -609,4 +609,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimnetworkstatus.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimnetworkstatus.json index f7b828ea7126..c715b6ae1f53 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimnetworkstatus.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimnetworkstatus.json @@ -201,4 +201,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimnotifications.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimnotifications.json index 4ece25c081e4..af3a3d7d033a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimnotifications.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimnotifications.json @@ -753,4 +753,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimopenidconnectproviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimopenidconnectproviders.json index cce29db19336..2cfb1096526d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimopenidconnectproviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimopenidconnectproviders.json @@ -120,10 +120,10 @@ "200": { "description": "Specified openidConnectProvider entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -134,7 +134,7 @@ } } }, - "get": { + "get": { "tags": [ "OpenIdConnectProviders" ], @@ -458,4 +458,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimportalsettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimportalsettings.json index 4fab75fe7926..bbe69eabc6bf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimportalsettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimportalsettings.json @@ -722,4 +722,4 @@ "description": "User registration delegation settings properties." } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimproducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimproducts.json index 792eba383f65..6ce08fc02df5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimproducts.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimproducts.json @@ -133,10 +133,10 @@ "200": { "description": "Specified Product entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -147,7 +147,7 @@ } } }, - "get": { + "get": { "tags": [ "Products" ], @@ -471,7 +471,7 @@ } } }, - "put": { + "put": { "tags": [ "ProductApis" ], @@ -673,7 +673,7 @@ } } }, - "put": { + "put": { "tags": [ "ProductGroups" ], @@ -1189,4 +1189,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimproperties.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimproperties.json index 0fdf926423a1..a295222d1820 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimproperties.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimproperties.json @@ -123,10 +123,10 @@ "200": { "description": "Specified Property entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -137,7 +137,7 @@ } } }, - "get": { + "get": { "tags": [ "Property" ], @@ -471,4 +471,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimquotas.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimquotas.json index ad1630e53c61..42e97fd0fb0b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimquotas.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimquotas.json @@ -338,4 +338,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimreports.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimreports.json index 3cfc28e6b785..5a9b95bb1bcb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimreports.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimreports.json @@ -1,722 +1,722 @@ { - "swagger": "2.0", - "info": { - "title": "ApiManagementClient", - "description": "Use these REST APIs to get the analytics reports associated with your Azure API Management deployment.", - "version": "2017-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}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byApi": { - "get": { - "tags": [ - "Reports" - ], - "operationId": "Reports_ListByApi", - "description": "Lists report records by API.", - "x-ms-examples": { - "ApiManagementGetReportsByApi": { - "$ref": "./examples/ApiManagementGetReportsByApi.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "name": "$filter", - "in": "query", - "required": true, - "type": "string", - "description": "The filter to apply on the operation." - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Lists a collection of Report record.", - "schema": { - "$ref": "#/definitions/ReportCollection" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/ReportRecordContract" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byUser": { - "get": { - "tags": [ - "Reports" - ], - "operationId": "Reports_ListByUser", - "description": "Lists report records by User.", - "x-ms-examples": { - "ApiManagementGetReportsByUser": { - "$ref": "./examples/ApiManagementGetReportsByUser.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "name": "$filter", - "in": "query", - "required": true, - "type": "string", - "description": "The filter to apply on the operation." - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Lists a collection of Report record.", - "schema": { - "$ref": "#/definitions/ReportCollection" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/ReportRecordContract" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byOperation": { - "get": { - "tags": [ - "Reports" - ], - "operationId": "Reports_ListByOperation", - "description": "Lists report records by API Operations.", - "x-ms-examples": { - "ApiManagementGetReportsByOperation": { - "$ref": "./examples/ApiManagementGetReportsByOperation.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "name": "$filter", - "in": "query", - "required": true, - "type": "string", - "description": "The filter to apply on the operation." - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Lists a collection of Report record.", - "schema": { - "$ref": "#/definitions/ReportCollection" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/ReportRecordContract" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byProduct": { - "get": { - "tags": [ - "Reports" - ], - "operationId": "Reports_ListByProduct", - "description": "Lists report records by Product.", - "x-ms-examples": { - "ApiManagementGetReportsByProduct": { - "$ref": "./examples/ApiManagementGetReportsByProduct.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "name": "$filter", - "in": "query", - "required": true, - "type": "string", - "description": "The filter to apply on the operation." - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Lists a collection of Report record.", - "schema": { - "$ref": "#/definitions/ReportCollection" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/ReportRecordContract" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byGeo": { - "get": { - "tags": [ - "Reports" - ], - "operationId": "Reports_ListByGeo", - "description": "Lists report records by geography.", - "x-ms-examples": { - "ApiManagementGetReportsByGeo": { - "$ref": "./examples/ApiManagementGetReportsByGeo.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "name": "$filter", - "in": "query", - "required": false, - "type": "string", - "description": "The filter to apply on the operation." - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Lists a collection of Report record.", - "schema": { - "$ref": "#/definitions/ReportCollection" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/ReportRecordContract" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/bySubscription": { - "get": { - "tags": [ - "Reports" - ], - "operationId": "Reports_ListBySubscription", - "description": "Lists report records by subscription.", - "x-ms-examples": { - "ApiManagementGetReportsBySubscription": { - "$ref": "./examples/ApiManagementGetReportsBySubscription.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "name": "$filter", - "in": "query", - "required": false, - "type": "string", - "description": "The filter to apply on the operation." - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Lists a collection of Report record.", - "schema": { - "$ref": "#/definitions/ReportCollection" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/ReportRecordContract" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byTime": { - "get": { - "tags": [ - "Reports" - ], - "operationId": "Reports_ListByTime", - "description": "Lists report records by Time.", - "x-ms-examples": { - "ApiManagementGetReportsByTime": { - "$ref": "./examples/ApiManagementGetReportsByTime.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "name": "$filter", - "in": "query", - "required": false, - "type": "string", - "description": "The filter to apply on the operation." - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - }, - { - "name": "interval", - "in": "query", - "required": true, - "type": "string", - "format": "duration", - "description": "By time interval. Interval must be multiple of 15 minutes and may not be zero. The value should be in ISO 8601 format (http://en.wikipedia.org/wiki/ISO_8601#Durations).This code can be used to convert TimeSpan to a valid interval string: XmlConvert.ToString(new TimeSpan(hours, minutes, seconds))" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Lists a collection of Report record.", - "schema": { - "$ref": "#/definitions/ReportCollection" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/ReportRecordContract" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byRequest": { - "get": { - "tags": [ - "Reports" - ], - "operationId": "Reports_ListByRequest", - "description": "Lists report records by Request.", - "x-ms-examples": { - "ApiManagementGetReportsByRequest": { - "$ref": "./examples/ApiManagementGetReportsByRequest.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "name": "$filter", - "in": "query", - "required": true, - "type": "string", - "description": "The filter to apply on the operation." - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Lists a collection of Report record.", - "schema": { - "$ref": "#/definitions/RequestReportCollection" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "x-ms-odata": "#/definitions/RequestReportRecordContract" - } - } - }, - "definitions": { - "ReportCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ReportRecordContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged Report records list representation." - }, - "ReportRecordContract": { - "properties": { - "name": { - "type": "string", - "description": "Name depending on report endpoint specifies product, API, operation or developer name." - }, - "timestamp": { - "type": "string", - "format": "date-time", - "description": "Start of aggregation period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" - }, - "interval": { - "type": "string", - "description": "Length of aggregation period. Interval must be multiple of 15 minutes and may not be zero. The value should be in ISO 8601 format (http://en.wikipedia.org/wiki/ISO_8601#Durations)." - }, - "country": { - "type": "string", - "description": "Country to which this record data is related." - }, - "region": { - "type": "string", - "description": "Country region to which this record data is related." - }, - "zip": { - "type": "string", - "description": "Zip code to which this record data is related." - }, - "userId": { - "readOnly": true, - "type": "string", - "description": "User identifier path. /users/{userId}" - }, - "productId": { - "readOnly": true, - "type": "string", - "description": "Product identifier path. /products/{productId}" - }, - "apiId": { - "type": "string", - "description": "API identifier path. /apis/{apiId}" - }, - "operationId": { - "type": "string", - "description": "Operation identifier path. /apis/{apiId}/operations/{operationId}" - }, - "apiRegion": { - "type": "string", - "description": "API region identifier." - }, - "subscriptionId": { - "type": "string", - "description": "Subscription identifier path. /subscriptions/{subscriptionId}" - }, - "callCountSuccess": { - "type": "integer", - "format": "int32", - "description": "Number of successful calls. This includes calls returning HttpStatusCode <= 301 and HttpStatusCode.NotModified and HttpStatusCode.TemporaryRedirect" - }, - "callCountBlocked": { - "type": "integer", - "format": "int32", - "description": "Number of calls blocked due to invalid credentials. This includes calls returning HttpStatusCode.Unauthorized and HttpStatusCode.Forbidden and HttpStatusCode.TooManyRequests" - }, - "callCountFailed": { - "type": "integer", - "format": "int32", - "description": "Number of calls failed due to proxy or backend errors. This includes calls returning HttpStatusCode.BadRequest(400) and any Code between HttpStatusCode.InternalServerError (500) and 600" - }, - "callCountOther": { - "type": "integer", - "format": "int32", - "description": "Number of other calls." - }, - "callCountTotal": { - "type": "integer", - "format": "int32", - "description": "Total number of calls." - }, - "bandwidth": { - "type": "integer", - "format": "int64", - "description": "Bandwidth consumed." - }, - "cacheHitCount": { - "type": "integer", - "format": "int32", - "description": "Number of times when content was served from cache policy." - }, - "cacheMissCount": { - "type": "integer", - "format": "int32", - "description": "Number of times content was fetched from backend." - }, - "apiTimeAvg": { - "type": "number", - "format": "double", - "description": "Average time it took to process request." - }, - "apiTimeMin": { - "type": "number", - "format": "double", - "description": "Minimum time it took to process request." - }, - "apiTimeMax": { - "type": "number", - "format": "double", - "description": "Maximum time it took to process request." - }, - "serviceTimeAvg": { - "type": "number", - "format": "double", - "description": "Average time it took to process request on backend." - }, - "serviceTimeMin": { - "type": "number", - "format": "double", - "description": "Minimum time it took to process request on backend." - }, - "serviceTimeMax": { - "type": "number", - "format": "double", - "description": "Maximum time it took to process request on backend." - } - }, - "description": "Report data." - }, - "RequestReportCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/RequestReportRecordContract" - }, - "description": "Page values." - }, - "count": { - "type": "integer", - "format": "int64", - "description": "Total record count number across all pages." - } - }, - "description": "Paged Report records list representation." - }, - "RequestReportRecordContract": { - "properties": { - "apiId": { - "type": "string", - "description": "API identifier path. /apis/{apiId}" - }, - "operationId": { - "type": "string", - "description": "Operation identifier path. /apis/{apiId}/operations/{operationId}" - }, - "productId": { - "readOnly": true, - "type": "string", - "description": "Product identifier path. /products/{productId}" - }, - "userId": { - "readOnly": true, - "type": "string", - "description": "User identifier path. /users/{userId}" - }, - "method": { - "type": "string", - "description": "The HTTP method associated with this request.." - }, - "url": { - "type": "string", - "description": "The full URL associated with this request." - }, - "ipAddress": { - "type": "string", - "description": "The client IP address associated with this request." - }, - "backendResponseCode": { - "type": "string", - "description": "The HTTP status code received by the gateway as a result of forwarding this request to the backend." - }, - "responseCode": { - "type": "integer", - "format": "int32", - "description": "The HTTP status code returned by the gateway." - }, - "responseSize": { - "type": "integer", - "format": "int32", - "description": "The size of the response returned by the gateway." - }, - "timestamp": { - "type": "string", - "format": "date-time", - "description": "The date and time when this request was received by the gateway in ISO 8601 format." - }, - "cache": { - "type": "string", - "description": "Specifies if response cache was involved in generating the response. If the value is none, the cache was not used. If the value is hit, cached response was returned. If the value is miss, the cache was used but lookup resulted in a miss and request was fulfilled by the backend." - }, - "apiTime": { - "type": "number", - "format": "double", - "description": "The total time it took to process this request." - }, - "serviceTime": { - "type": "number", - "format": "double", - "description": "he time it took to forward this request to the backend and get the response back." - }, - "apiRegion": { - "type": "string", - "description": "Azure region where the gateway that processed this request is located." - }, - "subscriptionId": { - "type": "string", - "description": "Subscription identifier path. /subscriptions/{subscriptionId}" - }, - "requestId": { - "type": "string", - "description": "Request Identifier." - }, - "requestSize": { - "type": "integer", - "format": "int32", - "description": "The size of this request.." - } - }, - "description": "Request Report data." - } - }, - "parameters": {} -} \ No newline at end of file + "swagger": "2.0", + "info": { + "title": "ApiManagementClient", + "description": "Use these REST APIs to get the analytics reports associated with your Azure API Management deployment.", + "version": "2017-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}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byApi": { + "get": { + "tags": [ + "Reports" + ], + "operationId": "Reports_ListByApi", + "description": "Lists report records by API.", + "x-ms-examples": { + "ApiManagementGetReportsByApi": { + "$ref": "./examples/ApiManagementGetReportsByApi.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "name": "$filter", + "in": "query", + "required": true, + "type": "string", + "description": "The filter to apply on the operation." + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Lists a collection of Report record.", + "schema": { + "$ref": "#/definitions/ReportCollection" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ReportRecordContract" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byUser": { + "get": { + "tags": [ + "Reports" + ], + "operationId": "Reports_ListByUser", + "description": "Lists report records by User.", + "x-ms-examples": { + "ApiManagementGetReportsByUser": { + "$ref": "./examples/ApiManagementGetReportsByUser.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "name": "$filter", + "in": "query", + "required": true, + "type": "string", + "description": "The filter to apply on the operation." + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Lists a collection of Report record.", + "schema": { + "$ref": "#/definitions/ReportCollection" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ReportRecordContract" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byOperation": { + "get": { + "tags": [ + "Reports" + ], + "operationId": "Reports_ListByOperation", + "description": "Lists report records by API Operations.", + "x-ms-examples": { + "ApiManagementGetReportsByOperation": { + "$ref": "./examples/ApiManagementGetReportsByOperation.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "name": "$filter", + "in": "query", + "required": true, + "type": "string", + "description": "The filter to apply on the operation." + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Lists a collection of Report record.", + "schema": { + "$ref": "#/definitions/ReportCollection" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ReportRecordContract" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byProduct": { + "get": { + "tags": [ + "Reports" + ], + "operationId": "Reports_ListByProduct", + "description": "Lists report records by Product.", + "x-ms-examples": { + "ApiManagementGetReportsByProduct": { + "$ref": "./examples/ApiManagementGetReportsByProduct.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "name": "$filter", + "in": "query", + "required": true, + "type": "string", + "description": "The filter to apply on the operation." + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Lists a collection of Report record.", + "schema": { + "$ref": "#/definitions/ReportCollection" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ReportRecordContract" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byGeo": { + "get": { + "tags": [ + "Reports" + ], + "operationId": "Reports_ListByGeo", + "description": "Lists report records by geography.", + "x-ms-examples": { + "ApiManagementGetReportsByGeo": { + "$ref": "./examples/ApiManagementGetReportsByGeo.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "name": "$filter", + "in": "query", + "required": false, + "type": "string", + "description": "The filter to apply on the operation." + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Lists a collection of Report record.", + "schema": { + "$ref": "#/definitions/ReportCollection" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ReportRecordContract" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/bySubscription": { + "get": { + "tags": [ + "Reports" + ], + "operationId": "Reports_ListBySubscription", + "description": "Lists report records by subscription.", + "x-ms-examples": { + "ApiManagementGetReportsBySubscription": { + "$ref": "./examples/ApiManagementGetReportsBySubscription.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "name": "$filter", + "in": "query", + "required": false, + "type": "string", + "description": "The filter to apply on the operation." + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Lists a collection of Report record.", + "schema": { + "$ref": "#/definitions/ReportCollection" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ReportRecordContract" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byTime": { + "get": { + "tags": [ + "Reports" + ], + "operationId": "Reports_ListByTime", + "description": "Lists report records by Time.", + "x-ms-examples": { + "ApiManagementGetReportsByTime": { + "$ref": "./examples/ApiManagementGetReportsByTime.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "name": "$filter", + "in": "query", + "required": false, + "type": "string", + "description": "The filter to apply on the operation." + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + }, + { + "name": "interval", + "in": "query", + "required": true, + "type": "string", + "format": "duration", + "description": "By time interval. Interval must be multiple of 15 minutes and may not be zero. The value should be in ISO 8601 format (http://en.wikipedia.org/wiki/ISO_8601#Durations).This code can be used to convert TimeSpan to a valid interval string: XmlConvert.ToString(new TimeSpan(hours, minutes, seconds))" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Lists a collection of Report record.", + "schema": { + "$ref": "#/definitions/ReportCollection" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ReportRecordContract" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/reports/byRequest": { + "get": { + "tags": [ + "Reports" + ], + "operationId": "Reports_ListByRequest", + "description": "Lists report records by Request.", + "x-ms-examples": { + "ApiManagementGetReportsByRequest": { + "$ref": "./examples/ApiManagementGetReportsByRequest.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "name": "$filter", + "in": "query", + "required": true, + "type": "string", + "description": "The filter to apply on the operation." + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Lists a collection of Report record.", + "schema": { + "$ref": "#/definitions/RequestReportCollection" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + }, + "x-ms-odata": "#/definitions/RequestReportRecordContract" + } + } + }, + "definitions": { + "ReportCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ReportRecordContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + }, + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Report records list representation." + }, + "ReportRecordContract": { + "properties": { + "name": { + "type": "string", + "description": "Name depending on report endpoint specifies product, API, operation or developer name." + }, + "timestamp": { + "type": "string", + "format": "date-time", + "description": "Start of aggregation period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n" + }, + "interval": { + "type": "string", + "description": "Length of aggregation period. Interval must be multiple of 15 minutes and may not be zero. The value should be in ISO 8601 format (http://en.wikipedia.org/wiki/ISO_8601#Durations)." + }, + "country": { + "type": "string", + "description": "Country to which this record data is related." + }, + "region": { + "type": "string", + "description": "Country region to which this record data is related." + }, + "zip": { + "type": "string", + "description": "Zip code to which this record data is related." + }, + "userId": { + "readOnly": true, + "type": "string", + "description": "User identifier path. /users/{userId}" + }, + "productId": { + "readOnly": true, + "type": "string", + "description": "Product identifier path. /products/{productId}" + }, + "apiId": { + "type": "string", + "description": "API identifier path. /apis/{apiId}" + }, + "operationId": { + "type": "string", + "description": "Operation identifier path. /apis/{apiId}/operations/{operationId}" + }, + "apiRegion": { + "type": "string", + "description": "API region identifier." + }, + "subscriptionId": { + "type": "string", + "description": "Subscription identifier path. /subscriptions/{subscriptionId}" + }, + "callCountSuccess": { + "type": "integer", + "format": "int32", + "description": "Number of successful calls. This includes calls returning HttpStatusCode <= 301 and HttpStatusCode.NotModified and HttpStatusCode.TemporaryRedirect" + }, + "callCountBlocked": { + "type": "integer", + "format": "int32", + "description": "Number of calls blocked due to invalid credentials. This includes calls returning HttpStatusCode.Unauthorized and HttpStatusCode.Forbidden and HttpStatusCode.TooManyRequests" + }, + "callCountFailed": { + "type": "integer", + "format": "int32", + "description": "Number of calls failed due to proxy or backend errors. This includes calls returning HttpStatusCode.BadRequest(400) and any Code between HttpStatusCode.InternalServerError (500) and 600" + }, + "callCountOther": { + "type": "integer", + "format": "int32", + "description": "Number of other calls." + }, + "callCountTotal": { + "type": "integer", + "format": "int32", + "description": "Total number of calls." + }, + "bandwidth": { + "type": "integer", + "format": "int64", + "description": "Bandwidth consumed." + }, + "cacheHitCount": { + "type": "integer", + "format": "int32", + "description": "Number of times when content was served from cache policy." + }, + "cacheMissCount": { + "type": "integer", + "format": "int32", + "description": "Number of times content was fetched from backend." + }, + "apiTimeAvg": { + "type": "number", + "format": "double", + "description": "Average time it took to process request." + }, + "apiTimeMin": { + "type": "number", + "format": "double", + "description": "Minimum time it took to process request." + }, + "apiTimeMax": { + "type": "number", + "format": "double", + "description": "Maximum time it took to process request." + }, + "serviceTimeAvg": { + "type": "number", + "format": "double", + "description": "Average time it took to process request on backend." + }, + "serviceTimeMin": { + "type": "number", + "format": "double", + "description": "Minimum time it took to process request on backend." + }, + "serviceTimeMax": { + "type": "number", + "format": "double", + "description": "Maximum time it took to process request on backend." + } + }, + "description": "Report data." + }, + "RequestReportCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/RequestReportRecordContract" + }, + "description": "Page values." + }, + "count": { + "type": "integer", + "format": "int64", + "description": "Total record count number across all pages." + } + }, + "description": "Paged Report records list representation." + }, + "RequestReportRecordContract": { + "properties": { + "apiId": { + "type": "string", + "description": "API identifier path. /apis/{apiId}" + }, + "operationId": { + "type": "string", + "description": "Operation identifier path. /apis/{apiId}/operations/{operationId}" + }, + "productId": { + "readOnly": true, + "type": "string", + "description": "Product identifier path. /products/{productId}" + }, + "userId": { + "readOnly": true, + "type": "string", + "description": "User identifier path. /users/{userId}" + }, + "method": { + "type": "string", + "description": "The HTTP method associated with this request.." + }, + "url": { + "type": "string", + "description": "The full URL associated with this request." + }, + "ipAddress": { + "type": "string", + "description": "The client IP address associated with this request." + }, + "backendResponseCode": { + "type": "string", + "description": "The HTTP status code received by the gateway as a result of forwarding this request to the backend." + }, + "responseCode": { + "type": "integer", + "format": "int32", + "description": "The HTTP status code returned by the gateway." + }, + "responseSize": { + "type": "integer", + "format": "int32", + "description": "The size of the response returned by the gateway." + }, + "timestamp": { + "type": "string", + "format": "date-time", + "description": "The date and time when this request was received by the gateway in ISO 8601 format." + }, + "cache": { + "type": "string", + "description": "Specifies if response cache was involved in generating the response. If the value is none, the cache was not used. If the value is hit, cached response was returned. If the value is miss, the cache was used but lookup resulted in a miss and request was fulfilled by the backend." + }, + "apiTime": { + "type": "number", + "format": "double", + "description": "The total time it took to process this request." + }, + "serviceTime": { + "type": "number", + "format": "double", + "description": "he time it took to forward this request to the backend and get the response back." + }, + "apiRegion": { + "type": "string", + "description": "Azure region where the gateway that processed this request is located." + }, + "subscriptionId": { + "type": "string", + "description": "Subscription identifier path. /subscriptions/{subscriptionId}" + }, + "requestId": { + "type": "string", + "description": "Request Identifier." + }, + "requestSize": { + "type": "integer", + "format": "int32", + "description": "The size of this request.." + } + }, + "description": "Request Report data." + } + }, + "parameters": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimsubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimsubscriptions.json index 44e5ab3a4f0c..ccd464b6951d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimsubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimsubscriptions.json @@ -126,10 +126,10 @@ "200": { "description": "Specified apimanagement subscription entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -140,7 +140,7 @@ } } }, - "get": { + "get": { "tags": [ "Subscriptions" ], @@ -691,4 +691,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtagresources.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtagresources.json index 15a95d020572..115cf30ba3ed 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtagresources.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtagresources.json @@ -9,8 +9,7 @@ "schemes": [ "https" ], - "consumes": [ - ], + "consumes": [], "produces": [ "application/json" ], @@ -200,6 +199,5 @@ "description": "Operation Entity contract Properties." } }, - "parameters": { - } -} \ No newline at end of file + "parameters": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtags.json index 30500bef3da7..db9edf47eaed 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtags.json @@ -1521,7 +1521,6 @@ } } } - }, "definitions": { "TagCollection": { @@ -1668,4 +1667,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtenant.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtenant.json index 1ff1ea3cd7db..0339673ad56d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtenant.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimtenant.json @@ -773,4 +773,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimusers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimusers.json index cd68db086810..4d1124d1010f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimusers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimusers.json @@ -126,10 +126,10 @@ "200": { "description": "Specified user entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -140,7 +140,7 @@ } } }, - "get": { + "get": { "tags": [ "Users" ], @@ -950,4 +950,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimversionsets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimversionsets.json index c103e1150e12..94048a68923b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimversionsets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/apimversionsets.json @@ -1,467 +1,467 @@ { - "swagger": "2.0", - "info": { - "title": "ApiManagementClient", - "description": "Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning.", - "version": "2017-03-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "security": [ + "swagger": "2.0", + "info": { + "title": "ApiManagementClient", + "description": "Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning.", + "version": "2017-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}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets": { + "parameters": [ { - "azure_auth": [ - "user_impersonation" - ] + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" } - ], - "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" + ], + "get": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_ListByService", + "description": "Lists a collection of API Version Sets in the specified service instance.", + "x-ms-examples": { + "ApiManagementListApiVersionSets": { + "$ref": "./examples/ApiManagementListApiVersionSets.json" + } + }, + "parameters": [ + { + "name": "$filter", + "in": "query", + "required": false, + "type": "string", + "description": "| Field | Supported operators | Supported functions |\n|------------------|------------------------|-----------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| firstName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| lastName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| email | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| state | eq | N/A |\n| registrationDate | ge, le, eq, ne, gt, lt | N/A |\n| note | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |" + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + } + ], + "responses": { + "200": { + "description": "Lists a collection of Api Version Set entities.", + "schema": { + "$ref": "#/definitions/ApiVersionSetCollection" } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ApiVersionSetContract" + } }, - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets": { - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - } - ], - "get": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_ListByService", - "description": "Lists a collection of API Version Sets in the specified service instance.", - "x-ms-examples": { - "ApiManagementListApiVersionSets": { - "$ref": "./examples/ApiManagementListApiVersionSets.json" - } - }, - "parameters": [ - { - "name": "$filter", - "in": "query", - "required": false, - "type": "string", - "description": "| Field | Supported operators | Supported functions |\n|------------------|------------------------|-----------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| firstName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| lastName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| email | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| state | eq | N/A |\n| registrationDate | ge, le, eq, ne, gt, lt | N/A |\n| note | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |" - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - } - ], - "responses": { - "200": { - "description": "Lists a collection of Api Version Set entities.", - "schema": { - "$ref": "#/definitions/ApiVersionSetCollection" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/ApiVersionSetContract" + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets/{versionSetId}": { + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionSetIdParameter" + } + ], + "head": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_GetEntityTag", + "description": "Gets the entity state (Etag) version of the Api Version Set specified by its identifier.", + "x-ms-examples": { + "ApiManagementHeadApiVersionSet": { + "$ref": "./examples/ApiManagementHeadApiVersionSet.json" + } + }, + "responses": { + "200": { + "description": "Specified Api Version Set entity exists and current entity state version is present in the ETag header.", + "headers": { + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" } + } + } + }, + "get": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_Get", + "description": "Gets the details of the Api Version Set specified by its identifier.", + "x-ms-examples": { + "ApiManagementGetApiVersionSet": { + "$ref": "./examples/ApiManagementGetApiVersionSet.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets/{versionSetId}": { - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionSetIdParameter" - } - ], - "head": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_GetEntityTag", - "description": "Gets the entity state (Etag) version of the Api Version Set specified by its identifier.", - "x-ms-examples": { - "ApiManagementHeadApiVersionSet": { - "$ref": "./examples/ApiManagementHeadApiVersionSet.json" - } - }, - "responses": { - "200": { - "description": "Specified Api Version Set entity exists and current entity state version is present in the ETag header.", - "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - }, - "get": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_Get", - "description": "Gets the details of the Api Version Set specified by its identifier.", - "x-ms-examples": { - "ApiManagementGetApiVersionSet": { - "$ref": "./examples/ApiManagementGetApiVersionSet.json" - } - }, - "responses": { - "200": { - "description": "Gets the specified Api Version Set entity.", - "schema": { - "$ref": "#/definitions/ApiVersionSetContract" - }, - "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } + "responses": { + "200": { + "description": "Gets the specified Api Version Set entity.", + "schema": { + "$ref": "#/definitions/ApiVersionSetContract" }, - "put": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_CreateOrUpdate", - "description": "Creates or Updates a Api Version Set.", - "x-ms-examples": { - "ApiManagementCreateApiVersionSet": { - "$ref": "./examples/ApiManagementCreateApiVersionSet.json" - } - }, - "parameters": [ - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ApiVersionSetContract" - }, - "description": "Create or update parameters." - }, - { - "name": "If-Match", - "in": "header", - "required": false, - "description": "The entity state (Etag) version of the user to update. A value of \"*\" can be used for If-Match to unconditionally apply the operation.", - "type": "string" - } - ], - "responses": { - "200": { - "description": "Api Version Set was successfully updated.", - "schema": { - "$ref": "#/definitions/ApiVersionSetContract" - } - }, - "201": { - "description": "Api Version Set was successfully created.", - "schema": { - "$ref": "#/definitions/ApiVersionSetContract" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - }, - "patch": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_Update", - "description": "Updates the details of the Api VersionSet specified by its identifier.", - "x-ms-examples": { - "ApiManagementUpdateApiVersionSet": { - "$ref": "./examples/ApiManagementUpdateApiVersionSet.json" - } - }, - "parameters": [ - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ApiVersionSetUpdateParameters" - }, - "description": "Update parameters." - }, - { - "name": "If-Match", - "in": "header", - "required": true, - "description": "The entity state (Etag) version of the user to update. A value of \"*\" can be used for If-Match to unconditionally apply the operation.", - "type": "string" - } - ], - "responses": { - "204": { - "description": "The Api Version Set details were successfully updated." - }, - "default": { - "description": "*** Error Responses: ***\n\n * 4XX Error response giving details why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_Delete", - "description": "Deletes specific Api Version Set.", - "x-ms-examples": { - "ApiManagementDeleteApiVersionSet": { - "$ref": "./examples/ApiManagementDeleteApiVersionSet.json" - } - }, - "parameters": [ - { - "name": "If-Match", - "in": "header", - "required": true, - "description": "The entity state (Etag) version of the Api Version Set to delete. A value of \"*\" can be used for If-Match to unconditionally apply the operation.", - "type": "string" - } - ], - "responses": { - "204": { - "description": "The ApiVersion Set details were successfully deleted." - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } + "headers": { + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } } - }, - "definitions": { - "ApiVersionSetCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ApiVersionSetContract" - }, - "description": "Page values." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } + }, + "put": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_CreateOrUpdate", + "description": "Creates or Updates a Api Version Set.", + "x-ms-examples": { + "ApiManagementCreateApiVersionSet": { + "$ref": "./examples/ApiManagementCreateApiVersionSet.json" + } + }, + "parameters": [ + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ApiVersionSetContract" }, - "description": "Paged Api Version Set list representation." + "description": "Create or update parameters." }, - "ApiVersionSetEntityBase": { - "properties": { - "description": { - "type": "string", - "description": "Description of API Version Set." - }, - "versionQueryName": { - "type": "string", - "description": "Name of query parameter that indicates the API Version if versioningScheme is set to `query`.", - "minLength": 1, - "maxLength": 100 - }, - "versionHeaderName": { - "type": "string", - "description": "Name of HTTP header parameter that indicates the API Version if versioningScheme is set to `header`.", - "minLength": 1, - "maxLength": 100 - } + { + "name": "If-Match", + "in": "header", + "required": false, + "description": "The entity state (Etag) version of the user to update. A value of \"*\" can be used for If-Match to unconditionally apply the operation.", + "type": "string" + } + ], + "responses": { + "200": { + "description": "Api Version Set was successfully updated.", + "schema": { + "$ref": "#/definitions/ApiVersionSetContract" } + }, + "201": { + "description": "Api Version Set was successfully created.", + "schema": { + "$ref": "#/definitions/ApiVersionSetContract" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_Update", + "description": "Updates the details of the Api VersionSet specified by its identifier.", + "x-ms-examples": { + "ApiManagementUpdateApiVersionSet": { + "$ref": "./examples/ApiManagementUpdateApiVersionSet.json" + } }, - "ApiVersionSetContractProperties": { - "properties": { - "displayName": { - "type": "string", - "description": "Name of API Version Set", - "minLength": 1, - "maxLength": 100 - }, - "versioningScheme": { - "type": "string", - "description": "An value that determines where the API Version identifer will be located in a HTTP request.", - "enum": [ - "Segment", - "Query", - "Header" - ], - "x-ms-enum": { - "name": "versioningScheme", - "modelAsString": true, - "values": [ - { - "value": "Segment", - "description": "The API Version is passed in a path segment." - }, - { - "value": "Query", - "description": "The API Version is passed in a query parameter." - }, - { - "value": "Header", - "description": "The API Version is passed in a HTTP header." - } - ] - } - } + "parameters": [ + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ApiVersionSetUpdateParameters" }, - "allOf": [ - { - "$ref": "#/definitions/ApiVersionSetEntityBase" - } - ], - "required": [ - "displayName", - "versioningScheme" - ], - "description": "Properties of an API Version Set." + "description": "Update parameters." + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "description": "The entity state (Etag) version of the user to update. A value of \"*\" can be used for If-Match to unconditionally apply the operation.", + "type": "string" + } + ], + "responses": { + "204": { + "description": "The Api Version Set details were successfully updated." + }, + "default": { + "description": "*** Error Responses: ***\n\n * 4XX Error response giving details why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + }, + "delete": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_Delete", + "description": "Deletes specific Api Version Set.", + "x-ms-examples": { + "ApiManagementDeleteApiVersionSet": { + "$ref": "./examples/ApiManagementDeleteApiVersionSet.json" + } }, - "ApiVersionSetContract": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ApiVersionSetContractProperties" - } - }, - "allOf": [ - { - "$ref": "./apimanagement.json#/definitions/Resource" - } - ], - "description": "Api Version Set Contract details." + "parameters": [ + { + "name": "If-Match", + "in": "header", + "required": true, + "description": "The entity state (Etag) version of the Api Version Set to delete. A value of \"*\" can be used for If-Match to unconditionally apply the operation.", + "type": "string" + } + ], + "responses": { + "204": { + "description": "The ApiVersion Set details were successfully deleted." + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + } + } + }, + "definitions": { + "ApiVersionSetCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ApiVersionSetContract" + }, + "description": "Page values." }, - "ApiVersionSetUpdateParametersProperties": { - "properties": { - "displayName": { - "type": "string", - "description": "Name of API Version Set", - "minLength": 1, - "maxLength": 100 - }, - "versioningScheme": { - "type": "string", - "description": "An value that determines where the API Version identifer will be located in a HTTP request.", - "enum": [ - "Segment", - "Query", - "Header" - ], - "x-ms-enum": { - "name": "versioningScheme", - "modelAsString": true, - "values": [ - { - "value": "Segment", - "description": "The API Version is passed in a path segment." - }, - { - "value": "Query", - "description": "The API Version is passed in a query parameter." - }, - { - "value": "Header", - "description": "The API Version is passed in a HTTP header." - } - ] - } - } - }, - "allOf": [ - { - "$ref": "#/definitions/ApiVersionSetEntityBase" - } - ], - "description": "Properties used to create or update an API Version Set." + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Api Version Set list representation." + }, + "ApiVersionSetEntityBase": { + "properties": { + "description": { + "type": "string", + "description": "Description of API Version Set." + }, + "versionQueryName": { + "type": "string", + "description": "Name of query parameter that indicates the API Version if versioningScheme is set to `query`.", + "minLength": 1, + "maxLength": 100 }, - "ApiVersionSetUpdateParameters": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ApiVersionSetUpdateParametersProperties", - "description": "Parameters to update or create an Api Version Set Contract." - } + "versionHeaderName": { + "type": "string", + "description": "Name of HTTP header parameter that indicates the API Version if versioningScheme is set to `header`.", + "minLength": 1, + "maxLength": 100 + } + } + }, + "ApiVersionSetContractProperties": { + "properties": { + "displayName": { + "type": "string", + "description": "Name of API Version Set", + "minLength": 1, + "maxLength": 100 + }, + "versioningScheme": { + "type": "string", + "description": "An value that determines where the API Version identifer will be located in a HTTP request.", + "enum": [ + "Segment", + "Query", + "Header" + ], + "x-ms-enum": { + "name": "versioningScheme", + "modelAsString": true, + "values": [ + { + "value": "Segment", + "description": "The API Version is passed in a path segment." + }, + { + "value": "Query", + "description": "The API Version is passed in a query parameter." }, - "description": "Parameters to update or create an Api Version Set Contract." + { + "value": "Header", + "description": "The API Version is passed in a HTTP header." + } + ] + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/ApiVersionSetEntityBase" } + ], + "required": [ + "displayName", + "versioningScheme" + ], + "description": "Properties of an API Version Set." }, - "parameters": { - "ApiVersionSetIdParameter": { - "name": "versionSetId", - "in": "path", - "required": true, - "type": "string", - "description": "Api Version Set identifier. Must be unique in the current API Management service instance.", - "minLength": 1, - "maxLength": 256, - "pattern": "^[^*#&+:<>?]+$", - "x-ms-parameter-location": "method" + "ApiVersionSetContract": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ApiVersionSetContractProperties" + } + }, + "allOf": [ + { + "$ref": "./apimanagement.json#/definitions/Resource" + } + ], + "description": "Api Version Set Contract details." + }, + "ApiVersionSetUpdateParametersProperties": { + "properties": { + "displayName": { + "type": "string", + "description": "Name of API Version Set", + "minLength": 1, + "maxLength": 100 + }, + "versioningScheme": { + "type": "string", + "description": "An value that determines where the API Version identifer will be located in a HTTP request.", + "enum": [ + "Segment", + "Query", + "Header" + ], + "x-ms-enum": { + "name": "versioningScheme", + "modelAsString": true, + "values": [ + { + "value": "Segment", + "description": "The API Version is passed in a path segment." + }, + { + "value": "Query", + "description": "The API Version is passed in a query parameter." + }, + { + "value": "Header", + "description": "The API Version is passed in a HTTP header." + } + ] + } } + }, + "allOf": [ + { + "$ref": "#/definitions/ApiVersionSetEntityBase" + } + ], + "description": "Properties used to create or update an API Version Set." + }, + "ApiVersionSetUpdateParameters": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ApiVersionSetUpdateParametersProperties", + "description": "Parameters to update or create an Api Version Set Contract." + } + }, + "description": "Parameters to update or create an Api Version Set Contract." + } + }, + "parameters": { + "ApiVersionSetIdParameter": { + "name": "versionSetId", + "in": "path", + "required": true, + "type": "string", + "description": "Api Version Set identifier. Must be unique in the current API Management service instance.", + "minLength": 1, + "maxLength": 256, + "pattern": "^[^*#&+:<>?]+$", + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json index 552be4b6fbc4..9e34be4b31da 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json @@ -1,53 +1,53 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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=2017-03-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2017-03-01" - } + "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": [], + "staticIps": [ + "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": [], - "staticIps": [ - "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/stable/2017-03-01/examples/ApiManagementBackendReconnect.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementBackendReconnect.json index 7d9cfc569fdd..50ec8a18ec39 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementBackendReconnect.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementBackendReconnect.json @@ -1,17 +1,17 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "backendid": "proxybackend", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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/stable/2017-03-01/examples/ApiManagementCreateAILogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateAILogger.json index 5e5abb8f80b6..aa20c80ae6bc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateAILogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateAILogger.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApi.json index 87a68cb73845..ad997ec97701 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApi.json @@ -90,4 +90,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiDiagnostic.json index 3d2905df169d..d4118ee50539 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiDiagnostic.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiDiagnosticLogger.json index 771472517938..bb7500db4ef3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiDiagnosticLogger.json @@ -1,44 +1,44 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "applicationinsights", - "apiId": "57d1f7558aa04f15146d9d8a", - "parameters": { } - }, - "responses": { - "201": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "applicationinsights", + "apiId": "57d1f7558aa04f15146d9d8a", + "parameters": {} + }, + "responses": { + "201": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } - }, - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } + } + }, + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } } } - } \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiIssue.json index c3924f239769..e1854ec46ae1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiIssue.json @@ -1,49 +1,49 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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/stable/2017-03-01/examples/ApiManagementCreateApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiIssueAttachment.json index 37cf9b88b6b8..38b16ca9309c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiIssueAttachment.json @@ -1,44 +1,44 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "attachmentId": "57d2ef278aa04f0888cba3f3", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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/stable/2017-03-01/examples/ApiManagementCreateApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiIssueComment.json index 50f4ff76747a..cbe89de20955 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiIssueComment.json @@ -1,44 +1,44 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "commentId": "599e29ab193c3c0bd0b3e2fb", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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/stable/2017-03-01/examples/ApiManagementCreateApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiOperation.json index 6b75200a0247..ee06bb8d4485 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiOperation.json @@ -1,131 +1,131 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "PetStoreTemplate2", + "operationId": "newoperations", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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/stable/2017-03-01/examples/ApiManagementCreateApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiOperationPolicy.json index 46d8f7949bc7..0ca51398aec6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiOperationPolicy.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiPolicy.json index 894a7e13e988..feafd42a2300 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiPolicy.json @@ -6,7 +6,7 @@ "subscriptionId": "subid", "apiId": "5600b57e7e8880006a040001", "policyId": "policy", - "If-Match":"*", + "If-Match": "*", "parameters": { "properties": { "policyContent": " " @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiRelease.json index 3f8d61b0f891..9cad7321a931 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiRelease.json @@ -1,44 +1,44 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "testrev", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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/stable/2017-03-01/examples/ApiManagementCreateApiRevision.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiRevision.json index 6879f79629a1..3b490f3e901e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiRevision.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiRevision.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiSchema.json index 3d32a35bd0f5..0181fa032c9d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiSchema.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiTag.json index 4d8e0343241d..f86159bfeab0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiTag.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiTagDescription.json index ee404b0137f6..c4192c0c6650 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiTagDescription.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingSwaggerImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingSwaggerImport.json index b993d6d28eb9..82a265990bab 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingSwaggerImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingSwaggerImport.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingWadlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingWadlImport.json index e56d0bc799df..1d55fd6b8c28 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingWadlImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingWadlImport.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingWsdlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingWsdlImport.json index b5074a7c540a..0472f4ca0e18 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingWsdlImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiUsingWsdlImport.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiVersionSet.json index d1af443aac44..eda2d9e6a5ba 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateApiVersionSet.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateAuthorizationServer.json index 625f9db68773..d3dc6e3f7437 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateAuthorizationServer.json @@ -93,4 +93,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackendProxyBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackendProxyBackend.json index 3b2bc6859204..300b778f5698 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackendProxyBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackendProxyBackend.json @@ -123,4 +123,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackendServiceFabric.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackendServiceFabric.json index 2fae49b72d2c..07317e7c9ef8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackendServiceFabric.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackendServiceFabric.json @@ -84,4 +84,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackup.json index f7d616e6d852..54964764e322 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateBackup.json @@ -1,53 +1,53 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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=2017-03-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2017-03-01" - } + "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": [], + "staticIps": [ + "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": [], - "staticIps": [ - "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/stable/2017-03-01/examples/ApiManagementCreateCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateCertificate.json index 690cdb64d508..c6c882bd75ea 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateCertificate.json @@ -4,7 +4,7 @@ "resourceGroupName": "rg1", "api-version": "2017-03-01", "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/stable/2017-03-01/examples/ApiManagementCreateDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateDiagnostic.json index ebe34a4529e0..8ab9054e33b8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateDiagnostic.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateDiagnosticLogger.json index 9d74857a5f29..f3b078ae1b45 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateDiagnosticLogger.json @@ -1,43 +1,43 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "applicationinsights", - "parameters": { } - }, - "responses": { - "201": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "applicationinsights", + "parameters": {} + }, + "responses": { + "201": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } - }, - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } + } + }, + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } } } - } \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateEHLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateEHLogger.json index fe6173e951b4..234ef09c3ef5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateEHLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateEHLogger.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateEmailTemplate.json index 850e6ae6097f..612b02b75cd7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateEmailTemplate.json @@ -93,4 +93,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateGroup.json index 5fa2d39d53a7..537d2d2f3055 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/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/stable/2017-03-01/examples/ApiManagementCreateGroupExternal.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateGroupExternal.json index e47f854d7c97..7a94eb35e3f7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateGroupExternal.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateGroupExternal.json @@ -4,11 +4,11 @@ "resourceGroupName": "rg1", "api-version": "2017-03-01", "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/stable/2017-03-01/examples/ApiManagementCreateGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateGroupUser.json index f857b79e0ebb..4c6bddc17a78 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateGroupUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/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/stable/2017-03-01/examples/ApiManagementCreateIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateIdentityProvider.json index 2a0ce9e2fe87..9731579d44e1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateIdentityProvider.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateOpenIdConnectProvider.json index a3d0a8ee68c2..e7b0101e473c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/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/stable/2017-03-01/examples/ApiManagementCreateOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateOperationTag.json index 672e3774f58c..22e4a9dfb607 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateOperationTag.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreatePolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreatePolicy.json index 11c2df4f9fbd..dacac78e4c63 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreatePolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreatePolicy.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductApi.json index 2bf58319bf38..634b1cf2bc98 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/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/stable/2017-03-01/examples/ApiManagementCreateProductBasic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductBasic.json index bf4ba8b81eb5..61ba685d3486 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductBasic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductBasic.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductGroup.json index b9fc03d5d641..d7288ad913e0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductGroup.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductPolicy.json index e7394272122c..d4e371a96073 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductPolicy.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductTag.json index 675c7f6b7c16..4813c8806df7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProductTag.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProperty.json index 527ba9f507aa..8f1b6aae66c9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateProperty.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateRecipientEmail.json index 6fbf6926c8d3..a54a67ad262e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateRecipientEmail.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/stable/2017-03-01/examples/ApiManagementCreateRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateRecipientUser.json index 2ad74d01b905..e84fb65f329f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateRecipientUser.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateSubscription.json index b735fa4dc26f..bfc7504fe2eb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateSubscription.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateTag.json index 840a4a655512..bec2848afbbd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateTag.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateUserBasic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateUserBasic.json index f15f5c0ae0b4..492d7022a56d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateUserBasic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementCreateUserBasic.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApi.json index 807327351469..cc4769cd059c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApi.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "echo-api", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "echo-api", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiDiagnostic.json index f6bf95cee51d..ec5a7b700181 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiDiagnostic.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "apiId": "57d1f7558aa04f15146d9d8a", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "apiId": "57d1f7558aa04f15146d9d8a", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiDiagnosticLogger.json index 3f1e527dc0a0..2ebdacd3c52e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiDiagnosticLogger.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "applicationinsights", - "apiId": "57d1f7558aa04f15146d9d8a", - "parameters": { } - }, - "responses": { - "204": {} - } - } \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "applicationinsights", + "apiId": "57d1f7558aa04f15146d9d8a", + "parameters": {} + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssue.json index 55c9d8f87e1c..70d41cea038b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssue.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "apiId": "57d1f7558aa04f15146d9d8a", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssueAttachment.json index 065a4fd4c822..92cc53d4ae95 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssueAttachment.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "apiId": "57d1f7558aa04f15146d9d8a", - "attachmentId": "57d2ef278aa04f0888cba3f3", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "attachmentId": "57d2ef278aa04f0888cba3f3", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssueComment.json index 20e805694db9..410afe6828a7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiIssueComment.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "apiId": "57d1f7558aa04f15146d9d8a", - "commentId": "599e29ab193c3c0bd0b3e2fb", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "commentId": "599e29ab193c3c0bd0b3e2fb", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiOperation.json index ad06b1878677..a21a55fff6a2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiOperation.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "operationId": "57d2ef278aa04f0ad01d6cdc", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiPolicy.json index 2698732b91ed..c53606969db6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiPolicy.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "loggerId", - "policyId": "policy", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "loggerId", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiRelease.json index ecdd5c67d2bd..dde4374ba89d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiRelease.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "5a5fcc09124a7fa9b89f2f1d", - "releaseId": "testrev", - "If-Match": "*" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "5a5fcc09124a7fa9b89f2f1d", + "releaseId": "testrev", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiSchema.json index 49c9fad00430..0f9f864d906d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiSchema.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "59d5b28d1f7fab116c282650", - "schemaId": "59d5b28e1f7fab116402044e", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650", + "schemaId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiTag.json index a1325e35cc65..6f1a01ce1401 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiTag.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "59d5b28d1f7fab116c282650", - "tagId": "59d5b28e1f7fab116402044e", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650", + "tagId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiTagDescription.json index a1325e35cc65..6f1a01ce1401 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiTagDescription.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "59d5b28d1f7fab116c282650", - "tagId": "59d5b28e1f7fab116402044e", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650", + "tagId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiVersionSet.json index ba801cceeb2c..758aa107cbb5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteApiVersionSet.json @@ -1,14 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "versionSetId": "a1", - "If-Match": "*" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "versionSetId": "a1", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteAuthorizationServer.json index cc717547e2d7..2639dd7414f0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteAuthorizationServer.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "authsid": "newauthServer2", - "If-Match": "*" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "authsid": "newauthServer2", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteBackend.json index 4af138942787..e1a29d89c564 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteBackend.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "backendid": "sfbackend", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "backendid": "sfbackend", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteCertificate.json index dea2e06f9164..454191f49365 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteCertificate.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "certificateId": "tempcert", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "certificateId": "tempcert", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteDiagnostic.json index 9d19c52b375f..adb9ff8c49d7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteDiagnostic.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteDiagnosticLogger.json index fca5918fae40..fbd42fa5eeaf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteDiagnosticLogger.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "applicationinsights", - "parameters": { } - }, - "responses": { - "204": {} - } - } \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "applicationinsights", + "parameters": {} + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteEmailTemplate.json index ae1ddb0bcfa8..55323290926e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteEmailTemplate.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "templateName": "newIssueNotificationMessage", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteGroup.json index e18d7a47e918..510d8ffffad1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteGroup.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "groupId": "aadGroup", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "groupId": "aadGroup", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteGroupUser.json index 80ae5acd664c..7ad7cd9c99d4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteGroupUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteGroupUser.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "groupId": "templategroup", - "uid": "59307d350af58404d8a26300", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "groupId": "templategroup", + "uid": "59307d350af58404d8a26300", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteIdentityProvider.json index d0e40a821138..caf7aabfe3ac 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteIdentityProvider.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "identityProviderName": "aad", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "identityProviderName": "aad", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteLogger.json index 9ea5f18c6558..9c26b202189d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteLogger.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "loggerid": "loggerId", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "loggerid": "loggerId", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteNotificationRecipientEmail.json index d1dfd0d2d7b2..bff43eecaf7c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteNotificationRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteNotificationRecipientEmail.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "email": "contoso@live.com" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "email": "contoso@live.com" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteNotificationRecipientUser.json index aa45a19fe01e..4feaf50991d5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteNotificationRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteNotificationRecipientUser.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "uid": "576823d0a40f7e74ec07d642" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "uid": "576823d0a40f7e74ec07d642" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOpenIdConnectProvider.json index b9b3ef7c8d7b..f2916bc3a3b2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOpenIdConnectProvider.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect3", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect3", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOperationPolicy.json index ec222434092e..b402935c08c4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOperationPolicy.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "testapi", - "operationId": "testoperation", - "policyId": "policy", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "testapi", + "operationId": "testoperation", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOperationTag.json index 387c69dec790..eb52c4f32573 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteOperationTag.json @@ -9,7 +9,7 @@ "tagId": "59d5b28e1f7fab116402044e", "If-Match": "*" }, - "responses": { - "204": {} - } -} \ No newline at end of file + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeletePolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeletePolicy.json index a9993f828be7..8673e5405651 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeletePolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeletePolicy.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "policyId": "policy", - "If-Match": "*" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProduct.json index e42074c92f2c..9f8f5c95c1ae 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProduct.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "testproduct", - "deleteSubscriptions": true, - "If-Match": "*" - }, - "responses": { - "204": {} - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "testproduct", + "deleteSubscriptions": true, + "If-Match": "*" + }, + "responses": { + "204": {} + } } diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductApi.json index fdada65404f8..a3e6796bbea9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductApi.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "testproduct", - "apiId": "echo-api", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "testproduct", + "apiId": "echo-api", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductGroup.json index 50a788e1b317..46068f1096ef 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductGroup.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "testproduct", - "groupId": "templateGroup", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "testproduct", + "groupId": "templateGroup", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductPolicy.json index 00ee789d91f7..4fe1bbc839a7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductPolicy.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "testproduct", - "policyId": "policy", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "testproduct", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductTag.json index ef8fe4c18062..2f4608f46e91 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProductTag.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "59d5b28d1f7fab116c282650", - "tagId": "59d5b28e1f7fab116402044e", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "59d5b28d1f7fab116c282650", + "tagId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProperty.json index 0239d388d14e..d9968c9ba917 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteProperty.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "propId": "testprop2", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "propId": "testprop2", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteSubscription.json index 86d0cef8d7f1..a4e35731323b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteSubscription.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "sid": "testsub", - "If-Match": "*" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "sid": "testsub", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteTag.json index e7dc93aa5572..7de417e0c7cd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteTag.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "tagId": "tagId1", - "If-Match": "*" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "tagId": "tagId1", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteUser.json index f4fa3c0385f8..0d5b5f6cad71 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementDeleteUser.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "uid": "5931a75ae4bbd512288c680b", - "If-Match": "*" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "uid": "5931a75ae4bbd512288c680b", + "If-Match": "*" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiContract.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiContract.json index f6ef1112cc64..152e2e87cd9b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiContract.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiContract.json @@ -1,34 +1,34 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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": "2017-03-01", + "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/stable/2017-03-01/examples/ApiManagementGetApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiDiagnostic.json index 0976ed490c1e..51bcc8885883 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiDiagnostic.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default", - "type": "Microsoft.ApiManagement/service/apis/diagnostics", - "name": "default", - "properties": { - "enabled": false - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default", + "type": "Microsoft.ApiManagement/service/apis/diagnostics", + "name": "default", + "properties": { + "enabled": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json index ac556935eb92..566b179fc5bd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "echo-api", - "Accept": "application/vnd.swagger.link+json", - "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": "2017-03-01", + "subscriptionId": "subid", + "apiId": "echo-api", + "Accept": "application/vnd.swagger.link+json", + "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/stable/2017-03-01/examples/ApiManagementGetApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiIssue.json index a00f0919fe35..c0e265f575f9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiIssue.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "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", - "apiId": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "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", + "apiId": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiIssueAttachment.json index 9ad3a14f64a2..7eb97ccbff22 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiIssueAttachment.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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": "2017-03-01", + "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/stable/2017-03-01/examples/ApiManagementGetApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiIssueComment.json index 92952716046c..b8084b56a7d4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiIssueComment.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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": "2017-03-01", + "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/stable/2017-03-01/examples/ApiManagementGetApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiOperation.json index 5de9379d8859..774b25f079d1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiOperation.json @@ -1,53 +1,53 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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\r\n \r\n \r\n 1\r\n \r\n \r\n", - "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", - "typeName": "CancelOrder" - } - ] - }, - "responses": [ - { - "statusCode": 200, - "description": "IFazioService_CancelOrder_OutputMessage", - "representations": [ - { - "contentType": "text/xml", - "sample": "\r\n\r\n \r\n \r\n 1\r\n \r\n \r\n", - "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", - "typeName": "CancelOrderResponse" - } - ], - "headers": [] - } - ] + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "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\r\n \r\n \r\n 1\r\n \r\n \r\n", + "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", + "typeName": "CancelOrder" + } + ] + }, + "responses": [ + { + "statusCode": 200, + "description": "IFazioService_CancelOrder_OutputMessage", + "representations": [ + { + "contentType": "text/xml", + "sample": "\r\n\r\n \r\n \r\n 1\r\n \r\n \r\n", + "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", + "typeName": "CancelOrderResponse" } + ], + "headers": [] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiOperationPolicy.json index f9403605d727..9e8c381cf404 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiOperationPolicy.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "5600b539c53f5b0062040001", - "operationId": "5600b53ac53f5b0062080006", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b539c53f5b0062040001/operations/5600b53ac53f5b0062080006/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/operations/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n This is a sample\r\n \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "5600b539c53f5b0062040001", + "operationId": "5600b53ac53f5b0062080006", + "policyId": "policy" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b539c53f5b0062040001/operations/5600b53ac53f5b0062080006/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/operations/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n This is a sample\r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiPolicy.json index e5cc1f8a2d42..11475334dcb9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiPolicy.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "5600b59475ff190048040001", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "5600b59475ff190048040001", + "policyId": "policy" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiRelease.json index 5f812ff44aee..de334251e423 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiRelease.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "5a7cb545298324c53224a799" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", - "type": "Microsoft.ApiManagement/service/apis/releases", - "name": "5a7cb545298324c53224a799", - "properties": { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", - "createdDateTime": "2018-02-08T20:38:29.173Z", - "updatedDateTime": "2018-02-08T20:38:29.173Z", - "notes": "yahoo" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "5a7cb545298324c53224a799" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", + "type": "Microsoft.ApiManagement/service/apis/releases", + "name": "5a7cb545298324c53224a799", + "properties": { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", + "createdDateTime": "2018-02-08T20:38:29.173Z", + "updatedDateTime": "2018-02-08T20:38:29.173Z", + "notes": "yahoo" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiSchema.json index 96eb09ecc2c1..cbecccaa9f52 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiSchema.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "59d6bb8f1f7fab13dc67ec9b", - "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d6bb8f1f7fab13dc67ec9b/schemas/ec12520d-9d48-4e7b-8f39-698ca2ac63f1", - "type": "Microsoft.ApiManagement/service/apis/schemas", - "name": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1", - "properties": { - "contentType": "application/vnd.ms-azure-apim.xsd+xml", - "document": { - "value": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "59d6bb8f1f7fab13dc67ec9b", + "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d6bb8f1f7fab13dc67ec9b/schemas/ec12520d-9d48-4e7b-8f39-698ca2ac63f1", + "type": "Microsoft.ApiManagement/service/apis/schemas", + "name": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1", + "properties": { + "contentType": "application/vnd.ms-azure-apim.xsd+xml", + "document": { + "value": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiTag.json index d848a359e959..257aa3cf24fe 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiTag.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiTagDescription.json index f1c4dcea328e..1d57174a5baf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiTagDescription.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiVersionSet.json index d5d525d7b00a..00d71a4c2c5d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetApiVersionSet.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "versionSetId": "vs1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs1", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs1", - "properties": { - "displayName" : "Version Set 1", - "versioningScheme" : "Segment", - "description" : "Version configuration" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "versionSetId": "vs1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs1", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs1", + "properties": { + "displayName": "Version Set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetAuthorizationServer.json index c6b3a38bab60..8fd0f755db98 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetAuthorizationServer.json @@ -1,44 +1,44 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "authsid": "newauthServer2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer2", - "properties": { - "displayName": "test3", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "clientAuthenticationMethod": [ - "Basic" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "authsid": "newauthServer2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer2", + "properties": { + "displayName": "test3", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "clientAuthenticationMethod": [ + "Basic" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetBackend.json index 3e8754ebe818..05047b46db03 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetBackend.json @@ -1,38 +1,38 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "backendid": "sfbackend" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", - "type": "Microsoft.ApiManagement/service/backends", - "name": "sfbackend", - "properties": { - "description": "Service Fabric Test App 1", - "url": "fabric:/mytestapp/mytestservice", - "protocol": "http", - "properties": { - "serviceFabricCluster": { - "managementEndpoints": [ - "https://somecluster.com" - ], - "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", - "serverX509Names": [ - { - "name": "ServerCommonName1", - "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" - } - ], - "maxPartitionResolutionRetries": 5 - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "backendid": "sfbackend" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", + "type": "Microsoft.ApiManagement/service/backends", + "name": "sfbackend", + "properties": { + "description": "Service Fabric Test App 1", + "url": "fabric:/mytestapp/mytestservice", + "protocol": "http", + "properties": { + "serviceFabricCluster": { + "managementEndpoints": [ + "https://somecluster.com" + ], + "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", + "serverX509Names": [ + { + "name": "ServerCommonName1", + "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" } + ], + "maxPartitionResolutionRetries": 5 } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetCertificate.json index cd1fc4e6ddec..529cb1de5055 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetCertificate.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "certificateId": "templateCert1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/templateCert1", - "type": "Microsoft.ApiManagement/service/certificates", - "name": "templateCert1", - "properties": { - "subject": "CN=mutual-authcert", - "thumbprint": "EBA**********************8594A6", - "expirationDate": "2017-04-23T17:03:41Z" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "certificateId": "templateCert1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/templateCert1", + "type": "Microsoft.ApiManagement/service/certificates", + "name": "templateCert1", + "properties": { + "subject": "CN=mutual-authcert", + "thumbprint": "EBA**********************8594A6", + "expirationDate": "2017-04-23T17:03:41Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetDiagnostic.json index f2853f287cc2..266950d7fd27 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetDiagnostic.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default", - "type": "Microsoft.ApiManagement/service/diagnostics", - "name": "default", - "properties": { - "enabled": false - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default", + "type": "Microsoft.ApiManagement/service/diagnostics", + "name": "default", + "properties": { + "enabled": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetEmailTemplate.json index 2486b63dfa99..e1f44ee21468 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetEmailTemplate.json @@ -1,51 +1,51 @@ { - "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\n \r\n \r\n

Dear $DevFirstName $DevLastName,

\r\n

Thank 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\n

Best,

\r\n

The $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\n \r\n \r\n

Dear $DevFirstName $DevLastName,

\r\n

Thank 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\n

Best,

\r\n

The $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\n\r\n \r\n \r\n \r\n \r\n \r\n" - } - } + "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\n\r\n \r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProduct.json index 2a78ef6c6518..be5344bc11d4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProduct.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-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": "2017-03-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/2017-03-01/examples/ApiManagementGetProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductPolicy.json index 26611769ad6c..b1898dc7ee14 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductPolicy.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-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": { - "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-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": { + "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductTag.json index 31b38d38475a..53ff2dbbb222 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductTag.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductsForApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductsForApi.json index 0ab24eca3a05..8488a44a80e7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductsForApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProductsForApi.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/apis/products", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "Unlimited", - "description": "Subscribers have completely unlimited access to the API. Administrator approval is required.", - "subscriptionRequired": true, - "approvalRequired": true, - "subscriptionsLimit": 1, - "state": "published" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/apis/products", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "Unlimited", + "description": "Subscribers have completely unlimited access to the API. Administrator approval is required.", + "subscriptionRequired": true, + "approvalRequired": true, + "subscriptionsLimit": 1, + "state": "published" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProperty.json index aa48136226a8..5107ab2aaeae 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetProperty.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "propId": "testarmTemplateproperties2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", - "type": "Microsoft.ApiManagement/service/properties", - "name": "testarmTemplateproperties2", - "properties": { - "displayName": "propName", - "value": "propValue", - "tags": [ - "foo", - "bar" - ], - "secret": false - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "propId": "testarmTemplateproperties2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", + "type": "Microsoft.ApiManagement/service/properties", + "name": "testarmTemplateproperties2", + "properties": { + "displayName": "propName", + "value": "propValue", + "tags": [ + "foo", + "bar" + ], + "secret": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetQuotaCounterKeys.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetQuotaCounterKeys.json index a97d163039a4..29627d0fbbf5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetQuotaCounterKeys.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetQuotaCounterKeys.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "quotaCounterKey": "ba" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "counterKey": "ba", - "periodKey": "0_P3Y6M4DT12H30M5S", - "periodStartTime": "2014-08-04T04:24:35Z", - "periodEndTime": "2018-02-08T16:54:40Z", - "Value": { - "callsCount": 5, - "kbTransferred": 2.5830078125 - } - } - ], - "count": 1, - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "quotaCounterKey": "ba" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "counterKey": "ba", + "periodKey": "0_P3Y6M4DT12H30M5S", + "periodStartTime": "2014-08-04T04:24:35Z", + "periodEndTime": "2018-02-08T16:54:40Z", + "Value": { + "callsCount": 5, + "kbTransferred": 2.5830078125 } - } + } + ], + "count": 1, + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json index 5b92cc06f0fd..d1904fa419eb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json @@ -1,24 +1,24 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "quotaCounterKey": "ba", - "quotaPeriodKey": "0_P3Y6M4DT12H30M5S" - }, - "responses": { - "200": { - "body": { - "counterKey": "ba", - "periodKey": "0_P3Y6M4DT12H30M5S", - "periodStartTime": "2014-08-04T04:24:35Z", - "periodEndTime": "2018-02-08T16:54:40Z", - "Value": { - "callsCount": 0, - "kbTransferred": 2.5625 - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "quotaCounterKey": "ba", + "quotaPeriodKey": "0_P3Y6M4DT12H30M5S" + }, + "responses": { + "200": { + "body": { + "counterKey": "ba", + "periodKey": "0_P3Y6M4DT12H30M5S", + "periodStartTime": "2014-08-04T04:24:35Z", + "periodEndTime": "2018-02-08T16:54:40Z", + "Value": { + "callsCount": 0, + "kbTransferred": 2.5625 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByApi.json index cc4e2a5d73d0..ee67b2f81617 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByApi.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByGeo.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByGeo.json index f77d9140b754..9eed8d172e7a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByGeo.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByGeo.json @@ -1,38 +1,38 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByOperation.json index 8abacebc356a..274bdd1eedc4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByOperation.json @@ -1,76 +1,76 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByProduct.json index ada23f540718..5028757fccb6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByProduct.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByRequest.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByRequest.json index 59fe6b8ee5ba..c250dc19bc8c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByRequest.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByRequest.json @@ -1,56 +1,56 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsBySubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsBySubscription.json index 1d7e13c714e9..5bd746f9c466 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsBySubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsBySubscription.json @@ -1,79 +1,79 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByTime.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByTime.json index 19d99f6ad5b3..155d3c53fa27 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByTime.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByTime.json @@ -1,56 +1,56 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByUser.json index 5e3e378254d6..24a933985bb1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetReportsByUser.json @@ -1,73 +1,73 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetSubscription.json index 45c36fdc58c4..676beede3db6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetSubscription.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "sid": "5931a769d8d14f0ad8ce13b8" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5931a769d8d14f0ad8ce13b8", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", - "displayName": "Unlimited", - "state": "submitted", - "createdDate": "2017-06-02T17:59:06.223Z", - "primaryKey": "6de0a3b2da204e459148d2f6785873f0", - "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "sid": "5931a769d8d14f0ad8ce13b8" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5931a769d8d14f0ad8ce13b8", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", + "displayName": "Unlimited", + "state": "submitted", + "createdDate": "2017-06-02T17:59:06.223Z", + "primaryKey": "6de0a3b2da204e459148d2f6785873f0", + "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTag.json index e996a2b50ef9..864a33b63e0e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTag.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "tagId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/tags", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "tag1" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "tagId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/tags", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "tag1" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagDescriptionsForApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagDescriptionsForApi.json index 21c457cd89e5..288a5a1240bc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagDescriptionsForApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagDescriptionsForApi.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1", - "description": null, - "externalDocsDescription": "some additional info", - "externalDocsUrl": "http://some_url.com" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1", + "description": null, + "externalDocsDescription": "some additional info", + "externalDocsUrl": "http://some_url.com" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForApi.json index bf01a40320be..c11dc0b7f023 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForApi.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForOperation.json index 11f36ef3aab1..7608d9c5f21f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForOperation.json @@ -7,21 +7,21 @@ "apiId": "57d2ef278aa04f0888cba3f3", "operationId": "57d2ef278aa04f0888cba3f6" }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForProduct.json index 0bed111f55ca..0968948b0ae9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTagsForProduct.json @@ -6,21 +6,21 @@ "subscriptionId": "subid", "productId": "57d2ef278aa04f0888cba3f1" }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTenantAccess.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTenantAccess.json index 9ad9926bab06..f45fbf9d24fe 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTenantAccess.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetTenantAccess.json @@ -1,19 +1,19 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "accessName": "access" - }, - "responses": { - "200": { - "body": { - "id": "5600b59375ff190048030003", - "primaryKey": "qr5nbjNoZkgtLojXgU+OA/ntYMgko3XPSVyt+ObwR1sqp2ZkM9tGhwxkeEz7bfAuPS5ss61b2S3ZrZmqa9v3Mw==", - "secondaryKey": "2dCJv1CasJl286SZiKxyBFDiIYCUdbwM1YrFNDcFMXCjCKbFzomrGkv+exAbnV5E3DEk91VP4jbeJ2eV/qtejA==", - "enabled": true - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "accessName": "access" + }, + "responses": { + "200": { + "body": { + "id": "5600b59375ff190048030003", + "primaryKey": "qr5nbjNoZkgtLojXgU+OA/ntYMgko3XPSVyt+ObwR1sqp2ZkM9tGhwxkeEz7bfAuPS5ss61b2S3ZrZmqa9v3Mw==", + "secondaryKey": "2dCJv1CasJl286SZiKxyBFDiIYCUdbwM1YrFNDcFMXCjCKbFzomrGkv+exAbnV5E3DEk91VP4jbeJ2eV/qtejA==", + "enabled": true + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetUser.json index c89dc74fe314..1b7d76f47fda 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetUser.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "uid": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "type": "Microsoft.ApiManagement/service/users", - "name": "5931a75ae4bbd512a88c680b", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foobar@outlook.com", - "state": "active", - "registrationDate": "2017-06-02T17:58:50.357Z", - "identities": [ - { - "provider": "Microsoft", - "id": "*************" - } - ] - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "uid": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "type": "Microsoft.ApiManagement/service/users", + "name": "5931a75ae4bbd512a88c680b", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foobar@outlook.com", + "state": "active", + "registrationDate": "2017-06-02T17:58:50.357Z", + "identities": [ + { + "provider": "Microsoft", + "id": "*************" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApi.json index 448078ea3416..fd4c3a579f13 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApi.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiDiagnostic.json index 9b756c16c5e2..c0c4ac68cd9a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiDiagnostic.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiDiagnosticLogger.json index bd9bb685aa61..a3631ef81801 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiDiagnosticLogger.json @@ -1,15 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "templateLogger", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "templateLogger", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssue.json index 9570771b1278..7fe6a5c67dfc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssue.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssueAttachment.json index 990bf33e30c5..f129d73a0885 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssueAttachment.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "attachmentId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "attachmentId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssueComment.json index 5474d13ceabb..4b4d027fb870 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiIssueComment.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "commentId": "599e29ab193c3c0bd0b3e2fb" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "commentId": "599e29ab193c3c0bd0b3e2fb" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiOperation.json index 0a0dd14aecb5..a3aaaf896a48 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiOperation.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "operationId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiOperationPolicy.json index 5f0ae6f42efc..9f260070dc6c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiOperationPolicy.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "5600b539c53f5b0062040001", - "operationId": "5600b53ac53f5b0062080006", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "5600b539c53f5b0062040001", + "operationId": "5600b53ac53f5b0062080006", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiPolicy.json index 3e9722dd523c..046c9eda861d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiPolicy.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiSchema.json index 1b5542986398..4ca07a1c6cce 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiSchema.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiTag.json index e1783f4b1260..b9256a660b48 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiTag.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiTagDescription.json index e1783f4b1260..b9256a660b48 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiTagDescription.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiVersionSet.json index 7998c33a1416..e9bd2236b066 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadApiVersionSet.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "versionSetId": "vs1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "versionSetId": "vs1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadAuthorizationServer.json index 7d4732b448b7..2172ac5a6551 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadAuthorizationServer.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "authsid": "newauthServer2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "authsid": "newauthServer2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadBackend.json index 56024bbfc5f9..8ee55e444c80 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadBackend.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "backendid": "sfbackend" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "backendid": "sfbackend" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadCertificate.json index ba4bf5dc1f17..3a04d70ad328 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadCertificate.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "certificateId": "templateCert1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "certificateId": "templateCert1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDelegationSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDelegationSettings.json index a4f15cb2c8a7..cfd87d3d41f6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDelegationSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDelegationSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDiagnostic.json index 49156a96b0db..31a5fc78e162 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDiagnostic.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDiagnosticLogger.json index 4e52d880e773..0d7b4c6d707e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadDiagnosticLogger.json @@ -1,14 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "templateLogger" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "templateLogger" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadEmailTemplate.json index b4318439709f..65618c89b44e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadEmailTemplate.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "templateName": "newIssueNotificationMessage" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadGroup.json index bdccd5726435..218e538ee248 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadGroup.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadGroupUser.json index 8cadc401e33b..27395e890061 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadGroupUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadGroupUser.json @@ -1,14 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9", - "uid": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9", + "uid": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadIdentityProvider.json index 20c141c0eb46..42549a7e1e43 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadIdentityProvider.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "identityProviderName": "aadB2C" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "identityProviderName": "aadB2C" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadLogger.json index d123817e011b..1ea3be53459c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadLogger.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "loggerid": "templateLogger" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "loggerid": "templateLogger" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadNotificationRecipientEmail.json index c1975521c12a..bff43eecaf7c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadNotificationRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadNotificationRecipientEmail.json @@ -1,14 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "email": "contoso@live.com" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "email": "contoso@live.com" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadNotificationRecipientUser.json index 8c11740b3f78..4feaf50991d5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadNotificationRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadNotificationRecipientUser.json @@ -1,14 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "uid": "576823d0a40f7e74ec07d642" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "uid": "576823d0a40f7e74ec07d642" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadOpenIdConnectProvider.json index c5ce345b70c1..c1e4a8994b06 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadOpenIdConnectProvider.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadOperationTag.json index cbfd8d40ef65..76b1ce86b1fc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadOperationTag.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProduct.json index 8b30f43ef649..bac56d77852f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProduct.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "unlimited" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "unlimited" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductApi.json index 4c1e998542fe..95525c99af6a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductApi.json @@ -1,14 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "5931a75ae4bbd512a88c680b", - "apiId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "5931a75ae4bbd512a88c680b", + "apiId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductGroup.json index 6dec4b991447..4c72d2a4bbd8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductGroup.json @@ -1,14 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "5931a75ae4bbd512a88c680b", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "5931a75ae4bbd512a88c680b", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductTag.json index cee1e485086a..b96b1f275ce9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProductTag.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProperty.json index e79bc40865dd..7f8fb7abd905 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadProperty.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "propId": "testarmTemplateproperties2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "propId": "testarmTemplateproperties2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSignInSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSignInSettings.json index a4f15cb2c8a7..cfd87d3d41f6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSignInSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSignInSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSignUpSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSignUpSettings.json index a4f15cb2c8a7..cfd87d3d41f6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSignUpSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSignUpSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSubscription.json index 67829b28afee..bf31e04c0d53 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadSubscription.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "sid": "5931a769d8d14f0ad8ce13b8" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "sid": "5931a769d8d14f0ad8ce13b8" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadTag.json index 6b643a6fb5e1..08548293711f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadTag.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "tagId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "headers": { - "Etag": "AAAAAAAACCI=" - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "tagId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "headers": { + "Etag": "AAAAAAAACCI=" } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadUser.json index 431c684bd56c..2ba6500ed931 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementHeadUser.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "uid": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "uid": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiDiagnosticLoggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiDiagnosticLoggers.json index 6f2a12f0300c..5a9f970fbc1f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiDiagnosticLoggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiDiagnosticLoggers.json @@ -1,32 +1,32 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiDiagnostics.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiDiagnostics.json index bbd91a51e8b6..b3332281468a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiDiagnostics.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiDiagnostics.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default", - "type": "Microsoft.ApiManagement/service/apis/diagnostics", - "name": "default", - "properties": { - "enabled": false - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default", + "type": "Microsoft.ApiManagement/service/apis/diagnostics", + "name": "default", + "properties": { + "enabled": false } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssueAttachments.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssueAttachments.json index ec594c46fa6b..4f92cb0439b2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssueAttachments.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssueAttachments.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssueComments.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssueComments.json index 41b8390c985d..9d2b24373f10 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssueComments.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssueComments.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssues.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssues.json index c330abfb911c..47c617bd5499 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssues.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiIssues.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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", - "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", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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", + "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/2017-03-01/examples/ApiManagementListApiOperationPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiOperationPolicies.json index c5817f8dbe8e..bffe8ed25b60 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiOperationPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiOperationPolicies.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "599e2953193c3c0bd0b3e2fa", - "operationId": "599e29ab193c3c0bd0b3e2fb" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/599e2953193c3c0bd0b3e2fa/operations/599e29ab193c3c0bd0b3e2fb/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/operations/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n xxx\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "599e2953193c3c0bd0b3e2fa", + "operationId": "599e29ab193c3c0bd0b3e2fb" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/599e2953193c3c0bd0b3e2fa/operations/599e29ab193c3c0bd0b3e2fb/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/operations/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n xxx\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiOperations.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiOperations.json index 5972d1b6e41d..5ffe17deec16 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiOperations.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiOperations.json @@ -1,69 +1,69 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "operationId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cda", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cda", - "properties": { - "displayName": "GetMostRecentOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetMostRecentOrder" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd9", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cd9", - "properties": { - "displayName": "GetOpenOrders", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOpenOrders" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cdb", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cdb", - "properties": { - "displayName": "GetOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOrder" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd8", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cd8", - "properties": { - "displayName": "submitOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/submitOrder" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cda", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cda", + "properties": { + "displayName": "GetMostRecentOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetMostRecentOrder" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd9", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cd9", + "properties": { + "displayName": "GetOpenOrders", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOpenOrders" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cdb", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cdb", + "properties": { + "displayName": "GetOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOrder" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd8", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cd8", + "properties": { + "displayName": "submitOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/submitOrder" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiPolicies.json index 6751eda0fc75..6121fcb3d415 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiPolicies.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "5600b59475ff190048040001" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "5600b59475ff190048040001" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiReleases.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiReleases.json index 584aa8ab73ed..6c5924d1e4e4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiReleases.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiReleases.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "a1" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", - "type": "Microsoft.ApiManagement/service/apis/releases", - "name": "5a7cb545298324c53224a799", - "properties": { - "createdDateTime": "2018-02-08T20:38:29.173Z", - "updatedDateTime": "2018-02-08T20:38:29.173Z", - "notes": "yahoo" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "a1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", + "type": "Microsoft.ApiManagement/service/apis/releases", + "name": "5a7cb545298324c53224a799", + "properties": { + "createdDateTime": "2018-02-08T20:38:29.173Z", + "updatedDateTime": "2018-02-08T20:38:29.173Z", + "notes": "yahoo" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiRevisions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiRevisions.json index ac317c119be8..9fc7d8cb74dc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiRevisions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiRevisions.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/revisions/5a7cb545298324c53224a799", - "type": "Microsoft.ApiManagement/service/apis/revisions", - "name": "5a7cb545298324c53224a799", - "properties": { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1;rev=1", - "apiRevision": "1", - "createdDateTime": "2018-02-01T22:21:20.467Z", - "updatedDateTime": "2018-02-01T22:21:20.467Z", - "isOnline": true, - "isCurrent": true - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/revisions/5a7cb545298324c53224a799", + "type": "Microsoft.ApiManagement/service/apis/revisions", + "name": "5a7cb545298324c53224a799", + "properties": { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1;rev=1", + "apiRevision": "1", + "createdDateTime": "2018-02-01T22:21:20.467Z", + "updatedDateTime": "2018-02-01T22:21:20.467Z", + "isOnline": true, + "isCurrent": true } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiSchemas.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiSchemas.json index 5b8578d14b02..f363438f208e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiSchemas.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiSchemas.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "59d5b28d1f7fab116c282650" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d5b28d1f7fab116c282650/schemas/59d5b28e1f7fab116402044e", - "type": "Microsoft.ApiManagement/service/apis/schemas", - "name": "59d5b28e1f7fab116402044e", - "properties": { - "contentType": "application/vnd.ms-azure-apim.swagger.definitions+json" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d5b28d1f7fab116c282650/schemas/59d5b28e1f7fab116402044e", + "type": "Microsoft.ApiManagement/service/apis/schemas", + "name": "59d5b28e1f7fab116402044e", + "properties": { + "contentType": "application/vnd.ms-azure-apim.swagger.definitions+json" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiVersionSets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiVersionSets.json index 18d0216cdf23..87e3725a4445 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiVersionSets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApiVersionSets.json @@ -1,37 +1,37 @@ { - "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/api-version-sets/vs1", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs1", - "properties": { - "displayName": "api set 1", - "versioningScheme": "Segment", - "description": "Version configuration" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs2", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs2", - "properties": { - "displayName": "api set 2", - "versioningScheme": "Query", - "description": "Version configuration 2" - } - } - ], - "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/api-version-sets/vs1", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs1", + "properties": { + "displayName": "api set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs2", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs2", + "properties": { + "displayName": "api set 2", + "versioningScheme": "Query", + "description": "Version configuration 2" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApis.json index 90d5b4e30687..8bc639c3c05b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApis.json @@ -1,81 +1,81 @@ { - "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/apis/a1", - "type": "Microsoft.ApiManagement/service/apis", - "name": "a1", - "properties": { - "displayName": "api1", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "api1", - "protocols": [ - "https" - ], - "isCurrent": true, - "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a73933b8f27f7cc82a2d533", - "type": "Microsoft.ApiManagement/service/apis", - "name": "5a73933b8f27f7cc82a2d533", - "properties": { - "displayName": "api1", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "api1", - "protocols": [ - "https" - ], - "isCurrent": true, - "apiVersion": "v1", - "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", - "type": "Microsoft.ApiManagement/service/apis", - "name": "echo-api", - "properties": { - "displayName": "Echo API", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "echo", - "protocols": [ - "https" - ], - "isCurrent": true - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a7390baa5816a110435aee0", - "type": "Microsoft.ApiManagement/service/apis", - "name": "5a7390baa5816a110435aee0", - "properties": { - "displayName": "Swagger Petstore Extensive", - "apiRevision": "1", - "description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", - "serviceUrl": "http://petstore.swagger.wordnik.com/api", - "path": "vvv", - "protocols": [ - "https" - ], - "isCurrent": true - } - } - ], - "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/apis/a1", + "type": "Microsoft.ApiManagement/service/apis", + "name": "a1", + "properties": { + "displayName": "api1", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "api1", + "protocols": [ + "https" + ], + "isCurrent": true, + "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a73933b8f27f7cc82a2d533", + "type": "Microsoft.ApiManagement/service/apis", + "name": "5a73933b8f27f7cc82a2d533", + "properties": { + "displayName": "api1", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "api1", + "protocols": [ + "https" + ], + "isCurrent": true, + "apiVersion": "v1", + "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", + "type": "Microsoft.ApiManagement/service/apis", + "name": "echo-api", + "properties": { + "displayName": "Echo API", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "echo", + "protocols": [ + "https" + ], + "isCurrent": true + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a7390baa5816a110435aee0", + "type": "Microsoft.ApiManagement/service/apis", + "name": "5a7390baa5816a110435aee0", + "properties": { + "displayName": "Swagger Petstore Extensive", + "apiRevision": "1", + "description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", + "serviceUrl": "http://petstore.swagger.wordnik.com/api", + "path": "vvv", + "protocols": [ + "https" + ], + "isCurrent": true + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApisByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApisByTags.json index e9f833e72527..f944d747806f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApisByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListApisByTags.json @@ -15,7 +15,9 @@ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", "type": "Microsoft.ApiManagement/service/tags", "name": "5600b59375ff190048020002", - "properties": { "displayName": "tag2" } + "properties": { + "displayName": "tag2" + } }, "api": { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", @@ -41,7 +43,9 @@ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", "type": "Microsoft.ApiManagement/service/tags", "name": "5600b59375ff190048020002", - "properties": { "displayName": "tag2" } + "properties": { + "displayName": "tag2" + } }, "api": { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api2", @@ -67,7 +71,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" + } }, "api": { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", @@ -92,4 +98,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListAuthorizationServers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListAuthorizationServers.json index f05eb180734f..d8b921117cec 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListAuthorizationServers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListAuthorizationServers.json @@ -1,76 +1,76 @@ { - "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/authorizationServers/newauthServer", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer", - "properties": { - "displayName": "test2", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer2", - "properties": { - "displayName": "test3", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "clientAuthenticationMethod": [ - "Basic" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - } - ], - "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/authorizationServers/newauthServer", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer", + "properties": { + "displayName": "test2", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer2", + "properties": { + "displayName": "test3", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "clientAuthenticationMethod": [ + "Basic" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListBackends.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListBackends.json index 90a170e5c931..b01de30a677a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListBackends.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListBackends.json @@ -1,80 +1,80 @@ { - "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/backends/proxybackend", - "type": "Microsoft.ApiManagement/service/backends", - "name": "proxybackend", - "properties": { - "description": "description5308", - "url": "https://backendname2644/", - "protocol": "http", - "credentials": { - "query": { - "sv": [ - "xx", - "bb", - "cc" - ] - }, - "header": { - "x-my-1": [ - "val1", - "val2" - ] - }, - "authorization": { - "scheme": "Basic", - "parameter": "opensesma" - } - }, - "proxy": { - "url": "http://192.168.1.1:8080", - "username": "Contoso\\admin", - "password": "opensesame" - }, - "tls": { - "validateCertificateChain": false, - "validateCertificateName": false - } - } - }, + "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/backends/proxybackend", + "type": "Microsoft.ApiManagement/service/backends", + "name": "proxybackend", + "properties": { + "description": "description5308", + "url": "https://backendname2644/", + "protocol": "http", + "credentials": { + "query": { + "sv": [ + "xx", + "bb", + "cc" + ] + }, + "header": { + "x-my-1": [ + "val1", + "val2" + ] + }, + "authorization": { + "scheme": "Basic", + "parameter": "opensesma" + } + }, + "proxy": { + "url": "http://192.168.1.1:8080", + "username": "Contoso\\admin", + "password": "opensesame" + }, + "tls": { + "validateCertificateChain": false, + "validateCertificateName": false + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", + "type": "Microsoft.ApiManagement/service/backends", + "name": "sfbackend", + "properties": { + "description": "Service Fabric Test App 1", + "url": "fabric:/mytestapp/mytestservice", + "protocol": "http", + "properties": { + "serviceFabricCluster": { + "managementEndpoints": [ + "https://somecluster.com" + ], + "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", + "serverX509Names": [ { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", - "type": "Microsoft.ApiManagement/service/backends", - "name": "sfbackend", - "properties": { - "description": "Service Fabric Test App 1", - "url": "fabric:/mytestapp/mytestservice", - "protocol": "http", - "properties": { - "serviceFabricCluster": { - "managementEndpoints": [ - "https://somecluster.com" - ], - "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", - "serverX509Names": [ - { - "name": "ServerCommonName1", - "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" - } - ], - "maxPartitionResolutionRetries": 5 - } - } - } + "name": "ServerCommonName1", + "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" } - ], - "nextLink": "" + ], + "maxPartitionResolutionRetries": 5 + } + } } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListCertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListCertificates.json index e245e402d3e1..b1c567dc06b7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListCertificates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListCertificates.json @@ -1,27 +1,27 @@ { - "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/certificates/kjoshiarmtemplateCert1", - "type": "Microsoft.ApiManagement/service/certificates", - "name": "templateCert1", - "properties": { - "subject": "CN=mutual-authcert", - "thumbprint": "EBA************************48594A6", - "expirationDate": "2017-04-23T17:03:41Z" - } - } - ], - "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/certificates/kjoshiarmtemplateCert1", + "type": "Microsoft.ApiManagement/service/certificates", + "name": "templateCert1", + "properties": { + "subject": "CN=mutual-authcert", + "thumbprint": "EBA************************48594A6", + "expirationDate": "2017-04-23T17:03:41Z" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListDiagnosticLoggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListDiagnosticLoggers.json index 745ff10aa22e..1b36e1ad8def 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListDiagnosticLoggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListDiagnosticLoggers.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "diagnosticId": "default" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "diagnosticId": "default" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListDiagnostics.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListDiagnostics.json index 381df3afa911..e355097cf50a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListDiagnostics.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListDiagnostics.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/diagnostics/default", - "type": "Microsoft.ApiManagement/service/diagnostics", - "name": "default", - "properties": { - "enabled": false - } - } - ], - "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/diagnostics/default", + "type": "Microsoft.ApiManagement/service/diagnostics", + "name": "default", + "properties": { + "enabled": false } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListEmailTemplates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListEmailTemplates.json index 92b10abd6ea2..6f8392d046c1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListEmailTemplates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListEmailTemplates.json @@ -1,55 +1,55 @@ { - "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\n \r\n \r\n

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\n

Best,

\r\n

The $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\n \r\n \r\n

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\n

Best,

\r\n

The $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\n\r\n \r\n \r\n \r\n \r\n \r\n" - } - } - ], - "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/policies/policy", + "type": "Microsoft.ApiManagement/service/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListPolicySnippets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListPolicySnippets.json index 8dcd91dc36b2..2db6484eb0f3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListPolicySnippets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListPolicySnippets.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "scope":"Api" - }, - "responses": { - "200": { - "body": [ - { - "name": "Authenticate with Basic", - "content": "", - "toolTip": "Authenticate with the backend service using Basic authentication. Use in the inbound section at API scope.", - "scope": 268435471 - } - ] + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "scope": "Api" + }, + "responses": { + "200": { + "body": [ + { + "name": "Authenticate with Basic", + "content": "", + "toolTip": "Authenticate with the backend service using Basic authentication. Use in the inbound section at API scope.", + "scope": 268435471 } + ] } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductApis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductApis.json index 8bacb19b5a66..491612209a36 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductApis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductApis.json @@ -1,34 +1,34 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "5768181ea40f7eb6c49f6ac7" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7/apis/57681820a40f7eb6c49f6aca", - "type": "Microsoft.ApiManagement/service/products/apis", - "name": "57681820a40f7eb6c49f6aca", - "properties": { - "displayName": "api_57681820a40f7eb6c49f6acb", - "apiRevision": "1", - "description": "description_57681820a40f7eb6c49f6acc", - "serviceUrl": "http://contoso/57681820a40f7eb6c49f6acd", - "path": "suffix_57681820a40f7eb6c49f6ace", - "protocols": [ - "https" - ], - "isCurrent": true - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "5768181ea40f7eb6c49f6ac7" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7/apis/57681820a40f7eb6c49f6aca", + "type": "Microsoft.ApiManagement/service/products/apis", + "name": "57681820a40f7eb6c49f6aca", + "properties": { + "displayName": "api_57681820a40f7eb6c49f6acb", + "apiRevision": "1", + "description": "description_57681820a40f7eb6c49f6acc", + "serviceUrl": "http://contoso/57681820a40f7eb6c49f6acd", + "path": "suffix_57681820a40f7eb6c49f6ace", + "protocols": [ + "https" + ], + "isCurrent": true } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductGroups.json index 079f5ebbc33c..6620cb326cfe 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductGroups.json @@ -1,51 +1,51 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "5600b57e7e8880006a060002" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020001", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020001", - "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020002", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020002", - "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020003", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020003", - "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", + "productId": "5600b57e7e8880006a060002" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020001", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020001", + "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020002", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020002", + "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020003", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020003", + "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/ApiManagementListProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductPolicy.json index 820a005bc6e2..d531c15b0508 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductPolicy.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "armTemplateProduct4" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/armTemplateProduct4/policies/policy", - "type": "Microsoft.ApiManagement/service/products/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "armTemplateProduct4" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/armTemplateProduct4/policies/policy", + "type": "Microsoft.ApiManagement/service/products/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductSubscriptions.json index 294ca1c2a7f6..1817289512cf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProductSubscriptions.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "productId": "5600b57e7e8880006a060002" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/subscriptions/5600b57e7e8880006a070002", - "type": "Microsoft.ApiManagement/service/products/subscriptions", - "name": "5600b57e7e8880006a070002", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002", - "state": "active", - "createdDate": "2015-09-22T01:57:18.723Z", - "primaryKey": "ba95768e868648848e215f0290eec023", - "secondaryKey": "140f866def81419b9bb9732d05d24535" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "productId": "5600b57e7e8880006a060002" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/subscriptions/5600b57e7e8880006a070002", + "type": "Microsoft.ApiManagement/service/products/subscriptions", + "name": "5600b57e7e8880006a070002", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002", + "state": "active", + "createdDate": "2015-09-22T01:57:18.723Z", + "primaryKey": "ba95768e868648848e215f0290eec023", + "secondaryKey": "140f866def81419b9bb9732d05d24535" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProducts.json index 20b7d94e0e96..fdca473a8d6c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProducts.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProducts.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/products/kjoshiarmtemplateCert1", - "type": "Microsoft.ApiManagement/service/products", - "name": "kjoshiarmtemplateCert1", - "properties": { - "displayName": "Dev", - "description": "Development Product", - "subscriptionRequired": false, - "state": "published" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/starter", - "type": "Microsoft.ApiManagement/service/products", - "name": "starter", - "properties": { - "displayName": "Starter", - "description": "Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.", - "terms": "", - "subscriptionRequired": true, - "approvalRequired": false, - "subscriptionsLimit": 1, - "state": "published" - } - }, - { - "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" - } - } - ], - "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/products/kjoshiarmtemplateCert1", + "type": "Microsoft.ApiManagement/service/products", + "name": "kjoshiarmtemplateCert1", + "properties": { + "displayName": "Dev", + "description": "Development Product", + "subscriptionRequired": false, + "state": "published" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/starter", + "type": "Microsoft.ApiManagement/service/products", + "name": "starter", + "properties": { + "displayName": "Starter", + "description": "Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.", + "terms": "", + "subscriptionRequired": true, + "approvalRequired": false, + "subscriptionsLimit": 1, + "state": "published" + } + }, + { + "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" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProperties.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProperties.json index 4e9cf194f3cb..223ba8125454 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProperties.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListProperties.json @@ -1,41 +1,41 @@ { - "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/properties/592f1174cc83890dc4f32686", - "type": "Microsoft.ApiManagement/service/properties", - "name": "592f1174cc83890dc4f32686", - "properties": { - "displayName": "Logger-Credentials-592f1174cc83890dc4f32687", - "value": "Endpoint=sb://testtemplatetesteh.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=...", - "secret": true - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", - "type": "Microsoft.ApiManagement/service/properties", - "name": "testarmTemplateproperties2", - "properties": { - "displayName": "propName", - "value": "propValue", - "tags": [ - "foo", - "bar" - ], - "secret": false - } - } - ], - "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/properties/592f1174cc83890dc4f32686", + "type": "Microsoft.ApiManagement/service/properties", + "name": "592f1174cc83890dc4f32686", + "properties": { + "displayName": "Logger-Credentials-592f1174cc83890dc4f32687", + "value": "Endpoint=sb://testtemplatetesteh.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=...", + "secret": true } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", + "type": "Microsoft.ApiManagement/service/properties", + "name": "testarmTemplateproperties2", + "properties": { + "displayName": "propName", + "value": "propValue", + "tags": [ + "foo", + "bar" + ], + "secret": false + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListRegions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListRegions.json index 1f902058815c..2b5ac4ae2afe 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListRegions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListRegions.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "West US", - "isMasterRegion": true, - "isDeleted": false - } - ], - "count": 1, - "nextLink": "" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "West US", + "isMasterRegion": true, + "isDeleted": false + } + ], + "count": 1, + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListServiceBySubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListServiceBySubscription.json index 7ae866c8b67b..4c3bc8487136 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListServiceBySubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListServiceBySubscription.json @@ -1,164 +1,164 @@ { - "parameters": { - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", - "name": "apimService3", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXXAQ=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-27T15:33:55.5426123Z", - "gatewayUrl": "https://apimService3.azure-api.net", - "portalUrl": "https://apimService3.portal.azure-api.net", - "managementApiUrl": "https://apimService3.management.azure-api.net", - "scmUrl": "https://apimService3.scm.azure-api.net", - "hostnameConfigurations": [], - "staticIps": [ - "13.88.16.64" - ], - "additionalLocations": [ - { - "location": "West Europe", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "staticIps": [ - "52.233.184.197" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.ApiManagement/service/apimService2", - "name": "apimService2", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW4U=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "MS", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T23:55:31.1405115Z", - "gatewayUrl": "https://apimService2.azure-api.net", - "portalUrl": "https://apimService2.portal.azure-api.net", - "managementApiUrl": "https://apimService2.management.azure-api.net", - "scmUrl": "https://apimService2.scm.azure-api.net", - "hostnameConfigurations": [], - "staticIps": [ - "13.64.237.151" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Developer", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", - "name": "apimService5", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW5c=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T18:13:02.0196315Z", - "gatewayUrl": "https://apimService5.azure-api.net", - "portalUrl": "https://apimService5.portal.azure-api.net", - "managementApiUrl": "https://apimService5.management.azure-api.net", - "scmUrl": "https://apimService5.scm.azure-api.net", - "hostnameConfigurations": [ - { - "type": "Proxy", - "hostName": "proxytemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname1.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname2.contoso.com", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname2.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname3.azure-api.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname3.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname4.azure-api.net", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname4.contoso.com" - } - }, - { - "type": "Portal", - "hostName": "portaltemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=portaltemplatehostname1.contoso.com" - } - } - ], - "staticIps": [ - "13.93.167.166" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - } - ] + "parameters": { + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", + "name": "apimService3", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXXAQ=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-27T15:33:55.5426123Z", + "gatewayUrl": "https://apimService3.azure-api.net", + "portalUrl": "https://apimService3.portal.azure-api.net", + "managementApiUrl": "https://apimService3.management.azure-api.net", + "scmUrl": "https://apimService3.scm.azure-api.net", + "hostnameConfigurations": [], + "staticIps": [ + "13.88.16.64" + ], + "additionalLocations": [ + { + "location": "West Europe", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "staticIps": [ + "52.233.184.197" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.ApiManagement/service/apimService2", + "name": "apimService2", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW4U=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "MS", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T23:55:31.1405115Z", + "gatewayUrl": "https://apimService2.azure-api.net", + "portalUrl": "https://apimService2.portal.azure-api.net", + "managementApiUrl": "https://apimService2.management.azure-api.net", + "scmUrl": "https://apimService2.scm.azure-api.net", + "hostnameConfigurations": [], + "staticIps": [ + "13.64.237.151" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Developer", + "capacity": 1 + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", + "name": "apimService5", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW5c=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T18:13:02.0196315Z", + "gatewayUrl": "https://apimService5.azure-api.net", + "portalUrl": "https://apimService5.portal.azure-api.net", + "managementApiUrl": "https://apimService5.management.azure-api.net", + "scmUrl": "https://apimService5.scm.azure-api.net", + "hostnameConfigurations": [ + { + "type": "Proxy", + "hostName": "proxytemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname1.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname2.contoso.com", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname2.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname3.azure-api.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname3.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname4.azure-api.net", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname4.contoso.com" + } + }, + { + "type": "Portal", + "hostName": "portaltemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=portaltemplatehostname1.contoso.com" + } + } + ], + "staticIps": [ + "13.93.167.166" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json index f42032dc4fa6..e1d96983eb6c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json @@ -1,162 +1,162 @@ { - "parameters": { - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", - "name": "apimService3", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXXAQ=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-27T15:33:55.5426123Z", - "gatewayUrl": "https://apimService3.azure-api.net", - "portalUrl": "https://apimService3.portal.azure-api.net", - "managementApiUrl": "https://apimService3.management.azure-api.net", - "scmUrl": "https://apimService3.scm.azure-api.net", - "hostnameConfigurations": [], - "staticIps": [ - "13.88.16.64" - ], - "additionalLocations": [ - { - "location": "West Europe", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "staticIps": [ - "52.233.184.197" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService2", - "name": "apimService2", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW4U=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "MS", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T23:55:31.1405115Z", - "gatewayUrl": "https://apimService2.azure-api.net", - "portalUrl": "https://apimService2.portal.azure-api.net", - "managementApiUrl": "https://apimService2.management.azure-api.net", - "scmUrl": "https://apimService2.scm.azure-api.net", - "hostnameConfigurations": [], - "staticIps": [ - "13.64.237.151" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Developer", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", - "name": "apimService5", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW5c=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T18:13:02.0196315Z", - "gatewayUrl": "https://apimService5.azure-api.net", - "portalUrl": "https://apimService5.portal.azure-api.net", - "managementApiUrl": "https://apimService5.management.azure-api.net", - "scmUrl": "https://apimService5.scm.azure-api.net", - "hostnameConfigurations": [ - { - "type": "Proxy", - "hostName": "proxytemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname1.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname2.contoso.com", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname2.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname3.azure-api.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname3.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname4.azure-api.net", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname4.contoso.com" - } - }, - { - "type": "Portal", - "hostName": "portaltemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=portaltemplatehostname1.contoso.com" - } - } - ], - "staticIps": [ - "13.93.167.166" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - } - ] + "parameters": { + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", + "name": "apimService3", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXXAQ=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-27T15:33:55.5426123Z", + "gatewayUrl": "https://apimService3.azure-api.net", + "portalUrl": "https://apimService3.portal.azure-api.net", + "managementApiUrl": "https://apimService3.management.azure-api.net", + "scmUrl": "https://apimService3.scm.azure-api.net", + "hostnameConfigurations": [], + "staticIps": [ + "13.88.16.64" + ], + "additionalLocations": [ + { + "location": "West Europe", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "staticIps": [ + "52.233.184.197" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService2", + "name": "apimService2", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW4U=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "MS", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T23:55:31.1405115Z", + "gatewayUrl": "https://apimService2.azure-api.net", + "portalUrl": "https://apimService2.portal.azure-api.net", + "managementApiUrl": "https://apimService2.management.azure-api.net", + "scmUrl": "https://apimService2.scm.azure-api.net", + "hostnameConfigurations": [], + "staticIps": [ + "13.64.237.151" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Developer", + "capacity": 1 + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", + "name": "apimService5", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW5c=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T18:13:02.0196315Z", + "gatewayUrl": "https://apimService5.azure-api.net", + "portalUrl": "https://apimService5.portal.azure-api.net", + "managementApiUrl": "https://apimService5.management.azure-api.net", + "scmUrl": "https://apimService5.scm.azure-api.net", + "hostnameConfigurations": [ + { + "type": "Proxy", + "hostName": "proxytemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname1.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname2.contoso.com", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname2.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname3.azure-api.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname3.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname4.azure-api.net", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname4.contoso.com" + } + }, + { + "type": "Portal", + "hostName": "portaltemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=portaltemplatehostname1.contoso.com" + } + } + ], + "staticIps": [ + "13.93.167.166" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListSubscriptions.json index 298aeb3a9f3f..7a41d1795555 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListSubscriptions.json @@ -1,61 +1,61 @@ { - "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/subscriptions/5600b59475ff190048070001", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5600b59475ff190048070001", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", - "state": "active", - "createdDate": "2015-09-22T01:57:40.3Z", - "primaryKey": "a24782fc06f648cbb1c3406c41dc9a3a", - "secondaryKey": "b366198986614a7497a5a68fae19119d" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/56eaed3dbaf08b06e46d27fe", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "56eaed3dbaf08b06e46d27fe", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", - "displayName": "Starter", - "state": "active", - "createdDate": "2016-03-17T17:45:33.837Z", - "startDate": "2016-03-17T00:00:00Z", - "expirationDate": "2016-04-01T00:00:00Z", - "notificationDate": "2016-03-20T00:00:00Z", - "primaryKey": "77708695e79a495bb99b95f32adfa1f0", - "secondaryKey": "12e2e4ba857e420b88450dc8fe2a6cf9" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5931a769d8d14f0ad8ce13b8", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", - "displayName": "Unlimited", - "state": "submitted", - "createdDate": "2017-06-02T17:59:06.223Z", - "primaryKey": "6de0a3b2da204e459148d2f6785873f0", - "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" - } - } - ], - "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/subscriptions/5600b59475ff190048070001", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5600b59475ff190048070001", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", + "state": "active", + "createdDate": "2015-09-22T01:57:40.3Z", + "primaryKey": "a24782fc06f648cbb1c3406c41dc9a3a", + "secondaryKey": "b366198986614a7497a5a68fae19119d" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/56eaed3dbaf08b06e46d27fe", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "56eaed3dbaf08b06e46d27fe", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", + "displayName": "Starter", + "state": "active", + "createdDate": "2016-03-17T17:45:33.837Z", + "startDate": "2016-03-17T00:00:00Z", + "expirationDate": "2016-04-01T00:00:00Z", + "notificationDate": "2016-03-20T00:00:00Z", + "primaryKey": "77708695e79a495bb99b95f32adfa1f0", + "secondaryKey": "12e2e4ba857e420b88450dc8fe2a6cf9" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5931a769d8d14f0ad8ce13b8", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", + "displayName": "Unlimited", + "state": "submitted", + "createdDate": "2017-06-02T17:59:06.223Z", + "primaryKey": "6de0a3b2da204e459148d2f6785873f0", + "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListTagResources.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListTagResources.json index f6f5a38416ab..b1bd54c5f130 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListTagResources.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListTagResources.json @@ -15,7 +15,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/opid1", @@ -39,7 +41,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,7 +67,9 @@ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", "type": "Microsoft.ApiManagement/service/tags", "name": "5600b59375ff190048020002", - "properties": { "displayName": "tag2" } + "properties": { + "displayName": "tag2" + } }, "api": { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", @@ -89,7 +95,9 @@ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", "type": "Microsoft.ApiManagement/service/tags", "name": "5600b59375ff190048020002", - "properties": { "displayName": "tag2" } + "properties": { + "displayName": "tag2" + } }, "product": { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/starter", diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListTags.json index 99e0191f3024..8a8390567f74 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListTags.json @@ -1,33 +1,33 @@ { - "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/tags/5600b59375ff190048020001", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b59375ff190048020001", - "properties": { - "displayName": "tag1" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b59375ff190048020002", - "properties": { - "displayName": "tag2" - } - } - ], - "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/tags/5600b59375ff190048020001", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b59375ff190048020001", + "properties": { + "displayName": "tag1" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b59375ff190048020002", + "properties": { + "displayName": "tag2" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUserGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUserGroups.json index a4402a3d7bf3..584c5db03b5a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUserGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUserGroups.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "uid": "57681833a40f7eb6c49f6acf" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/groups/5600b57e7e8880006a020002", - "type": "Microsoft.ApiManagement/service/users/groups", - "name": "5600b57e7e8880006a020002", - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "uid": "57681833a40f7eb6c49f6acf" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/groups/5600b57e7e8880006a020002", + "type": "Microsoft.ApiManagement/service/users/groups", + "name": "5600b57e7e8880006a020002", + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUserSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUserSubscriptions.json index 4f0509346a42..4b9fdffa8c1b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUserSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUserSubscriptions.json @@ -1,48 +1,48 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "uid": "57681833a40f7eb6c49f6acf" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6ae3", - "type": "Microsoft.ApiManagement/service/users/subscriptions", - "name": "57681850a40f7eb6c49f6ae3", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", - "displayName": "57681850a40f7eb6c49f6ae5", - "state": "active", - "createdDate": "2016-06-20T16:22:39.547Z", - "startDate": "2016-06-20T00:00:00Z", - "primaryKey": "57681850a40f7eb6c49f6ae4", - "secondaryKey": "bbd884a96b3c41b49f34422dac74b345" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6b2b", - "type": "Microsoft.ApiManagement/service/users/subscriptions", - "name": "57681850a40f7eb6c49f6b2b", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", - "displayName": "57681850a40f7eb6c49f6b2d", - "state": "active", - "createdDate": "2016-06-20T16:22:41.103Z", - "startDate": "2016-06-20T00:00:00Z", - "primaryKey": "57681850a40f7eb6c49f6b2c", - "secondaryKey": "125f565d276647dc825d7f25ea40ee57" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "uid": "57681833a40f7eb6c49f6acf" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6ae3", + "type": "Microsoft.ApiManagement/service/users/subscriptions", + "name": "57681850a40f7eb6c49f6ae3", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", + "displayName": "57681850a40f7eb6c49f6ae5", + "state": "active", + "createdDate": "2016-06-20T16:22:39.547Z", + "startDate": "2016-06-20T00:00:00Z", + "primaryKey": "57681850a40f7eb6c49f6ae4", + "secondaryKey": "bbd884a96b3c41b49f34422dac74b345" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6b2b", + "type": "Microsoft.ApiManagement/service/users/subscriptions", + "name": "57681850a40f7eb6c49f6b2b", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", + "displayName": "57681850a40f7eb6c49f6b2d", + "state": "active", + "createdDate": "2016-06-20T16:22:41.103Z", + "startDate": "2016-06-20T00:00:00Z", + "primaryKey": "57681850a40f7eb6c49f6b2c", + "secondaryKey": "125f565d276647dc825d7f25ea40ee57" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUsers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUsers.json index d082d10001c7..c8cc2e7ac767 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUsers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUsers.json @@ -1,71 +1,71 @@ { - "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/users/1", - "type": "Microsoft.ApiManagement/service/users", - "name": "1", - "properties": { - "firstName": "Administrator", - "lastName": "", - "email": "admin@live.com", - "state": "active", - "registrationDate": "2015-09-22T01:57:39.677Z", - "identities": [ - { - "provider": "Azure", - "id": "admin@live.com" - } - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", - "type": "Microsoft.ApiManagement/service/users", - "name": "56eaec62baf08b06e46d27fd", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foo.bar.83@gmail.com", - "state": "active", - "registrationDate": "2016-03-17T17:41:56.327Z", - "identities": [ - { - "provider": "Basic", - "id": "foo.bar.83@gmail.com" - } - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "type": "Microsoft.ApiManagement/service/users", - "name": "5931a75ae4bbd512a88c680b", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foobar@outlook.com", - "state": "active", - "registrationDate": "2017-06-02T17:58:50.357Z", - "identities": [ - { - "provider": "Microsoft", - "id": "*************" - } - ] - } - } - ], - "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/users/1", + "type": "Microsoft.ApiManagement/service/users", + "name": "1", + "properties": { + "firstName": "Administrator", + "lastName": "", + "email": "admin@live.com", + "state": "active", + "registrationDate": "2015-09-22T01:57:39.677Z", + "identities": [ + { + "provider": "Azure", + "id": "admin@live.com" + } + ] } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", + "type": "Microsoft.ApiManagement/service/users", + "name": "56eaec62baf08b06e46d27fd", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foo.bar.83@gmail.com", + "state": "active", + "registrationDate": "2016-03-17T17:41:56.327Z", + "identities": [ + { + "provider": "Basic", + "id": "foo.bar.83@gmail.com" + } + ] + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "type": "Microsoft.ApiManagement/service/users", + "name": "5931a75ae4bbd512a88c680b", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foobar@outlook.com", + "state": "active", + "registrationDate": "2017-06-02T17:58:50.357Z", + "identities": [ + { + "provider": "Microsoft", + "id": "*************" + } + ] + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUsersIdentities.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUsersIdentities.json index 398abf8bfa13..ffc60a29dd98 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUsersIdentities.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListUsersIdentities.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/ApiManagementPortalSettingsGetDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetDelegation.json index bcafdd1ba77c..f7fcfd2b3bef 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetDelegation.json @@ -1,24 +1,24 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "properties": { - "url": "http://contoso.com/delegation", - "validationKey": "nVF7aKIvr9mV/RM5lOD0sYoi8ThXTRHQP7o66hvUmjCDkPKR3qxPu/otJcNciz2aQdqPuzJH3ECG4TU2yZjQ7Q==", - "subscriptions": { - "enabled": true - }, - "userRegistration": { - "enabled": true - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "properties": { + "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/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetSignIn.json index ed43e675a875..8f9052c14aea 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetSignIn.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "properties": { - "enabled": true - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "properties": { + "enabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetSignUp.json index 73ee5051c9dc..f88aa4b5c1bb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsGetSignUp.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "properties": { - "enabled": true, - "termsOfService": { - "text": "Terms of service text.", - "enabled": true, - "consentRequired": true - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "properties": { + "enabled": true, + "termsOfService": { + "text": "Terms of service text.", + "enabled": true, + "consentRequired": true + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateDelegation.json index d448375d1a3b..dce4adc88a66 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateDelegation.json @@ -22,4 +22,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateSignIn.json index 1e6ac4839a16..2bc430ab6a2e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateSignIn.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateSignUp.json index 144e52479ccf..64bd2746837e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementPortalSettingsUpdateSignUp.json @@ -20,4 +20,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementRestoreService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementRestoreService.json index 1acef5f63f39..54964764e322 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementRestoreService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementRestoreService.json @@ -1,53 +1,53 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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=2017-03-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2017-03-01" - } + "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": [], + "staticIps": [ + "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": [], - "staticIps": [ - "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/stable/2017-03-01/examples/ApiManagementServiceCheckNameAvailability.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceCheckNameAvailability.json index 0c58cfd0249c..6285b445a86a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceCheckNameAvailability.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceCheckNameAvailability.json @@ -4,7 +4,7 @@ "api-version": "2017-03-01", "subscriptionId": "subid", "parameters": { - "name" : "apimService1" + "name": "apimService1" } }, "responses": { @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceDeleteService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceDeleteService.json index 0019cd7b7fbb..57669b5d1c02 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceDeleteService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceDeleteService.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetNetworkStatus.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetNetworkStatus.json index a5861146061f..e5e3163aba44 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetNetworkStatus.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetNetworkStatus.json @@ -84,4 +84,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json index 078ec1da5134..6849c8380c32 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetService.json index 8531fb99c254..ec40dd357aa4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetService.json @@ -1,89 +1,89 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "Central US", - "etag": "AAAAAAAYP5M=", - "properties": { - "publisherEmail": "contoso@microsoft.com", - "publisherName": "admin", - "notificationSenderEmail": "contoso@live.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-06-28T23:01:33.0667959Z", - "gatewayUrl": "https://apimService1.azure-api.net", - "gatewayRegionalUrl": "https://apimService1-centralus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "proxyhostname4.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Proxy", - "hostName": "proxyhostname9.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Portal", - "hostName": "portalhostname2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - } - ], - "staticIps": [ - "52.173.22.222" - ], - "additionalLocations": [ - { - "location": "West US", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "staticIps": [ - "40.78.99.244" - ], - "gatewayRegionalUrl": "https://apimService1-westus-01.regional.azure-api.net" - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "Central US", + "etag": "AAAAAAAYP5M=", + "properties": { + "publisherEmail": "contoso@microsoft.com", + "publisherName": "admin", + "notificationSenderEmail": "contoso@live.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-06-28T23:01:33.0667959Z", + "gatewayUrl": "https://apimService1.azure-api.net", + "gatewayRegionalUrl": "https://apimService1-centralus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "proxyhostname4.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Proxy", + "hostName": "proxyhostname9.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Portal", + "hostName": "portalhostname2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } } + ], + "staticIps": [ + "52.173.22.222" + ], + "additionalLocations": [ + { + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "staticIps": [ + "40.78.99.244" + ], + "gatewayRegionalUrl": "https://apimService1-westus-01.regional.azure-api.net" + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetServiceHavingMsi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetServiceHavingMsi.json index df64f1ede1e5..bb2ffdd22d48 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetServiceHavingMsi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetServiceHavingMsi.json @@ -1,58 +1,58 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAC2jkE=", - "properties": { - "publisherEmail": "admin@contoso.com", - "publisherName": "Contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "createdAtUtc": "2017-10-13T16:56:47.0174063Z", - "gatewayUrl": "https://apimService1.azure-api.net", - "gatewayRegionalUrl": "https://apimService1-westus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "foobar.msitesting.net", - "keyVaultId": "https://constoso-msi-keyvault.vault.azure.net/secrets/msitestingCert", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2036-01-01T07:00:00+00:00", - "thumbprint": "8E98XXX52CAXXXXXXX2C91F1D174FDB3A2", - "subject": "CN=*.msitesting.net" - }, - "defaultSslBinding": true - } - ], - "staticIps": [ - "13.xx.76.xxx" - ] - }, - "sku": { - "name": "Developer", - "capacity": 1 - }, - "identity": { - "type": "SystemAssigned", - "principalId": "ae7d906a-xxx-408a-xxxx-6b9d60e5756b", - "tenantId": "72f988bf-xxx-41af-xxxx-2d7cd011db47" - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAC2jkE=", + "properties": { + "publisherEmail": "admin@contoso.com", + "publisherName": "Contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "createdAtUtc": "2017-10-13T16:56:47.0174063Z", + "gatewayUrl": "https://apimService1.azure-api.net", + "gatewayRegionalUrl": "https://apimService1-westus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "foobar.msitesting.net", + "keyVaultId": "https://constoso-msi-keyvault.vault.azure.net/secrets/msitestingCert", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2036-01-01T07:00:00+00:00", + "thumbprint": "8E98XXX52CAXXXXXXX2C91F1D174FDB3A2", + "subject": "CN=*.msitesting.net" + }, + "defaultSslBinding": true } + ], + "staticIps": [ + "13.xx.76.xxx" + ] + }, + "sku": { + "name": "Developer", + "capacity": 1 + }, + "identity": { + "type": "SystemAssigned", + "principalId": "ae7d906a-xxx-408a-xxxx-6b9d60e5756b", + "tenantId": "72f988bf-xxx-41af-xxxx-2d7cd011db47" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetSsoToken.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetSsoToken.json index 560269f00951..98adb98b497a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetSsoToken.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceGetSsoToken.json @@ -12,4 +12,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceUpdateHostName.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceUpdateHostName.json index ceb3e4271eb6..ea5ceec377ba 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceUpdateHostName.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceUpdateHostName.json @@ -1,183 +1,183 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "parameters": { - "update": [ - { - "type": "Proxy", - "hostname": "internalproxy2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Portal", - "hostname": "internalportal2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Management", - "hostname": "internalmgmt2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Scm", - "hostname": "internalscm2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - } - ] + "update": [ + { + "type": "Proxy", + "hostname": "internalproxy2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Portal", + "hostname": "internalportal2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Management", + "hostname": "internalmgmt2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Scm", + "hostname": "internalscm2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } } + ] + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + }, + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "Central US", + "etag": "AAAAAAAYP5M=", + "properties": { + "publisherEmail": "contoso@microsoft.com", + "publisherName": "admin", + "notificationSenderEmail": "contoso@live.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-06-28T23:01:33.0667959Z", + "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", + "staticIps": [ + "52.173.22.222" + ], + "additionalLocations": [ + { + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "staticIps": [ + "40.78.99.244" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 + } + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "Central US", + "etag": "AAAAAAAYP5M=", + "properties": { + "publisherEmail": "contoso@microsoft.com", + "publisherName": "admin", + "notificationSenderEmail": "contoso@live.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-06-28T23:01:33.0667959Z", + "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": [ + { + "type": "Proxy", + "hostName": "internalproxy2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Portal", + "hostName": "internalportal2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Management", + "hostName": "internalmgmt2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } }, - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "Central US", - "etag": "AAAAAAAYP5M=", - "properties": { - "publisherEmail": "contoso@microsoft.com", - "publisherName": "admin", - "notificationSenderEmail": "contoso@live.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-06-28T23:01:33.0667959Z", - "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", - "staticIps": [ - "52.173.22.222" - ], - "additionalLocations": [ - { - "location": "West US", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "staticIps": [ - "40.78.99.244" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + { + "type": "Scm", + "hostName": "internalscm2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } } - }, - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "Central US", - "etag": "AAAAAAAYP5M=", - "properties": { - "publisherEmail": "contoso@microsoft.com", - "publisherName": "admin", - "notificationSenderEmail": "contoso@live.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-06-28T23:01:33.0667959Z", - "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": [ - { - "type": "Proxy", - "hostName": "internalproxy2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Portal", - "hostName": "internalportal2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Management", - "hostName": "internalmgmt2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Scm", - "hostName": "internalscm2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - } - ], - "staticIps": [ - "52.173.22.222" - ], - "additionalLocations": [ - { - "location": "West US", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "staticIps": [ - "40.78.99.244" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + ], + "staticIps": [ + "52.173.22.222" + ], + "additionalLocations": [ + { + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "staticIps": [ + "40.78.99.244" + ] } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceUploadProxyCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceUploadProxyCertificate.json index 8103ff471d09..9097e475e7e0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceUploadProxyCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementServiceUploadProxyCertificate.json @@ -5,9 +5,9 @@ "api-version": "2016-10-10", "subscriptionId": "subid", "parameters": { - "type" : "Proxy", - "certificate" : "MIIZ7wI************************************************************", - "certificate_password": "******" + "type": "Proxy", + "certificate": "MIIZ7wI************************************************************", + "certificate_password": "******" } }, "responses": { @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementSubscriptionRegenerateKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementSubscriptionRegenerateKey.json index 73012aee7068..80fa33e21997 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementSubscriptionRegenerateKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementSubscriptionRegenerateKey.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "sid": "testsub" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "sid": "testsub" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantAccessRegenerateKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantAccessRegenerateKey.json index 602e2b0985b1..03bb9c9f5d8c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantAccessRegenerateKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantAccessRegenerateKey.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "accessName": "access" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "accessName": "access" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantAccessSyncState.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantAccessSyncState.json index 55ab2ecdacc4..54555cf5b3ca 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantAccessSyncState.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantAccessSyncState.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "configurationName": "configuration" - }, - "responses": { - "200": { - "body": { - "branch": "master", - "commitId": "44c29c27a876372e2ea18d9c381cc493a6a89fc5", - "isExport": true, - "isSynced": false, - "isGitEnabled": true, - "syncDate": "2016-10-24T19:17:14.3641403Z", - "configurationChangeDate": "2017-06-03T00:41:30.9670873Z" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "configurationName": "configuration" + }, + "responses": { + "200": { + "body": { + "branch": "master", + "commitId": "44c29c27a876372e2ea18d9c381cc493a6a89fc5", + "isExport": true, + "isSynced": false, + "isGitEnabled": true, + "syncDate": "2016-10-24T19:17:14.3641403Z", + "configurationChangeDate": "2017-06-03T00:41:30.9670873Z" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationDeploy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationDeploy.json index 17ae91e8a1bc..6fb00c3332cd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationDeploy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationDeploy.json @@ -1,31 +1,31 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "configurationName": "configuration", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "configurationName": "configuration", - "parameters": { - "branch": "master" - } + "branch": "master" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af4ae2a6d2e0b688d7517?api-version=2017-03-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af4ae2a6d2e0b688d7517?api-version=2017-03-01" - } - }, - "200": { - "body": { - "id": "5a1af4ae2a6d2e0b688d7517", - "status": "Failed", - "started": "2017-11-26T17:06:54.303Z", - "updated": "2017-11-26T17:07:21.777Z", - "error": { - "code": "ValidationError", - "message": "File not found: 'api-management/configuration.json'" - } - } + "200": { + "body": { + "id": "5a1af4ae2a6d2e0b688d7517", + "status": "Failed", + "started": "2017-11-26T17:06:54.303Z", + "updated": "2017-11-26T17:07:21.777Z", + "error": { + "code": "ValidationError", + "message": "File not found: 'api-management/configuration.json'" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationSave.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationSave.json index f9902fd0b24f..80763b7ed932 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationSave.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationSave.json @@ -1,29 +1,29 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "configurationName": "configuration", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "configurationName": "configuration", - "parameters": { - "branch": "master" - } + "branch": "master" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af57d2a6d2e0b688d751b?api-version=2017-03-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af57d2a6d2e0b688d751b?api-version=2017-03-01" - } - }, - "200": { - "body": { - "id": "5a1af57d2a6d2e0b688d751b", - "status": "Succeeded", - "started": "2017-11-26T17:10:21.957Z", - "updated": "2017-11-26T17:10:36.06Z", - "resultInfo": "The configuration was successfully saved to master as commit cdb6878db80159cc0e9a53f5ad38581883882974.", - "actionLog": [] - } - } + "200": { + "body": { + "id": "5a1af57d2a6d2e0b688d751b", + "status": "Succeeded", + "started": "2017-11-26T17:10:21.957Z", + "updated": "2017-11-26T17:10:36.06Z", + "resultInfo": "The configuration was successfully saved to master as commit cdb6878db80159cc0e9a53f5ad38581883882974.", + "actionLog": [] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationValidate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationValidate.json index 1792e7a447ce..87d044dee1b7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationValidate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementTenantConfigurationValidate.json @@ -1,170 +1,170 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "configurationName": "configuration", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "configurationName": "configuration", - "parameters": { - "branch": "master" - } + "branch": "master" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af64e2a6d2e0b688d751e?api-version=2017-03-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af64e2a6d2e0b688d751e?api-version=2017-03-01" - } - }, - "200": { - "body": { - "id": "5a1af64e2a6d2e0b688d751e", - "status": "Succeeded", - "started": "2017-11-26T17:13:50.787Z", - "updated": "2017-11-26T17:13:59.723Z", - "resultInfo": "Validation is successfull", - "actionLog": [ - { - "objectType": "ApiSpecificationContract", - "action": "Updated", - "objectKey": "57914cb351f68a16889be190;rev=1" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5768181ea40f7eb6c49f6ac7" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "576819c9a40f7e86289fb3e3" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "576819f1a40f7e86289fb6de" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681a67a40f7e72b4132522" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681a73a40f7e72b413281d" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681a7ea40f7e72b4132b18" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681b88a40f7ea0f017f099" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681b9fa40f7ea0f017f682" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bb5a40f7ea0f017fc6b" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bcaa40f7ea0f0180254" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bdfa40f7ea0f018083d" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bf5a40f7ea0f0180e26" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681c0ea40f7ea0f018140f" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681c26a40f7ea0f01819f8" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681c83a40f7e85f44db237" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681cb2a40f7e85f44dbcd0" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681ce3a40f7e85f44dc769" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681d1fa40f7e85f44dd202" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681d60a40f7e85f44ddc9b" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681db4a40f7e85f44de735" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681e11a40f7e85f44df1ce" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681e73a40f7e85f44dfc67" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681f06a40f7e74ec07785c" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5768211fa40f7e74ec07a74a" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "576823cfa40f7e74ec07d63a" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5600b57e7e8880006a060001" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5600b57e7e8880006a060002" - } - ] - } - } + "200": { + "body": { + "id": "5a1af64e2a6d2e0b688d751e", + "status": "Succeeded", + "started": "2017-11-26T17:13:50.787Z", + "updated": "2017-11-26T17:13:59.723Z", + "resultInfo": "Validation is successfull", + "actionLog": [ + { + "objectType": "ApiSpecificationContract", + "action": "Updated", + "objectKey": "57914cb351f68a16889be190;rev=1" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5768181ea40f7eb6c49f6ac7" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "576819c9a40f7e86289fb3e3" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "576819f1a40f7e86289fb6de" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681a67a40f7e72b4132522" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681a73a40f7e72b413281d" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681a7ea40f7e72b4132b18" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681b88a40f7ea0f017f099" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681b9fa40f7ea0f017f682" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bb5a40f7ea0f017fc6b" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bcaa40f7ea0f0180254" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bdfa40f7ea0f018083d" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bf5a40f7ea0f0180e26" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681c0ea40f7ea0f018140f" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681c26a40f7ea0f01819f8" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681c83a40f7e85f44db237" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681cb2a40f7e85f44dbcd0" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681ce3a40f7e85f44dc769" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681d1fa40f7e85f44dd202" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681d60a40f7e85f44ddc9b" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681db4a40f7e85f44de735" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681e11a40f7e85f44df1ce" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681e73a40f7e85f44dfc67" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681f06a40f7e74ec07785c" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5768211fa40f7e74ec07a74a" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "576823cfa40f7e74ec07d63a" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5600b57e7e8880006a060001" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5600b57e7e8880006a060002" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApi.json index c1ca65745ebe..69030927e4f1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApi.json @@ -17,4 +17,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiDiagnostic.json index b18caf04bccc..fd3fb59bfc74 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiDiagnostic.json @@ -16,4 +16,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiOperation.json index bd61462e55e7..c4bb477392f7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiOperation.json @@ -5,7 +5,7 @@ "api-version": "2017-03-01", "subscriptionId": "subid", "apiId": "echo-api", - "operationId":"operationId", + "operationId": "operationId", "If-Match": "*", "parameters": { "properties": { @@ -47,4 +47,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiRelease.json index e81981a1f73e..e22847f9e211 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiRelease.json @@ -1,20 +1,20 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "testrev", + "If-Match": "*", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "testrev", - "If-Match": "*", - "parameters": { - "properties": { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", - "notes": "yahooagain" - } - } - }, - "responses": { - "204": { } + "properties": { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", + "notes": "yahooagain" + } } -} \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiVersionSet.json index 4e8931405308..5aa1415e1e4e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateApiVersionSet.json @@ -1,20 +1,20 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "versionSetId": "api1", + "If-Match": "*", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "versionSetId": "api1", - "If-Match":"*", - "parameters": { - "properties": { - "displayName" : "api set 1", - "versioningScheme" : "Segment", - "description" : "Version configuration" - } + "properties": { + "displayName": "api set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } - }, - "responses": { - "204": { } } - } \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateAuthorizationServer.json index 5e1c9d199a7e..b35440a2f3cb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateAuthorizationServer.json @@ -14,6 +14,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateBackend.json index eff067b633c4..602e7f5c886e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateBackend.json @@ -19,4 +19,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateDiagnostic.json index 95720097492c..ee9ede76a579 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateDiagnostic.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateEmailTemplate.json index f6f9fe2e310e..873a7b3c5505 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateEmailTemplate.json @@ -14,6 +14,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateGroup.json index 61ebf8ddb6ba..483ee2491de8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateGroup.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateIdentityProvider.json index b1c1d98ef67f..2094a9f132d0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateIdentityProvider.json @@ -16,4 +16,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateLogger.json index 4f4a953b2690..38d860dfc88e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateLogger.json @@ -18,4 +18,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateOpenIdConnectProvider.json index f7f66eaface1..b17c41f31f8c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateOpenIdConnectProvider.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateProductBasic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateProductBasic.json index 63e04552e27f..080fe9e5e460 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateProductBasic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateProductBasic.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateProperty.json index 6f2f51bfaa5c..8c3f5af9883a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateProperty.json @@ -19,4 +19,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateQuotaCounterKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateQuotaCounterKey.json index 86ab64408838..337a8aa19329 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateQuotaCounterKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateQuotaCounterKey.json @@ -13,4 +13,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json index 4f5cb5b5acb3..1c5f3cc6d551 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json @@ -14,4 +14,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateServiceDisableTls10.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateServiceDisableTls10.json index d38bc2361ad6..392a705c8c1d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateServiceDisableTls10.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateServiceDisableTls10.json @@ -87,4 +87,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateServicePublisherDetails.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateServicePublisherDetails.json index ae7946a1f49a..1804de0fbbe0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateServicePublisherDetails.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateServicePublisherDetails.json @@ -61,7 +61,7 @@ "location": "West US", "etag": "AAAAAAAYRPs=", "properties": { - "publisherEmail": "foobar@live.com", + "publisherEmail": "foobar@live.com", "publisherName": "Contoso Vnext", "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", "provisioningState": "Succeeded", @@ -86,4 +86,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateSubscription.json index 86b972797efb..9feb06db5c6d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateSubscription.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateTag.json index 5b925d576bab..755386d78e1f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateTag.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateTenantAccess.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateTenantAccess.json index 4e5d8f5c09d9..93a8b1c80807 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateTenantAccess.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateTenantAccess.json @@ -13,4 +13,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateUserBasic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateUserBasic.json index 007ef4615689..b5ab486dec6a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateUserBasic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUpdateUserBasic.json @@ -15,6 +15,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUsersGenerateSsoUrl.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUsersGenerateSsoUrl.json index c946fe5418ca..04be5c0e132e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUsersGenerateSsoUrl.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUsersGenerateSsoUrl.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUsersGetToken.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUsersGetToken.json index ce3a3a265153..e3ccdc853ba3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUsersGetToken.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementUsersGetToken.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimanagement.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimanagement.json index fbd19af1e87a..7f01a57f00df 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimanagement.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimanagement.json @@ -403,7 +403,7 @@ }, "ErrorResponse": { "properties": { - "error" : { + "error": { "x-ms-client-flatten": true, "$ref": "#/definitions/ErrorResponseBody", "description": "Properties of the Error Response." @@ -691,4 +691,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimapis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimapis.json index a393af3575dd..aa32e3778715 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimapis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimapis.json @@ -4919,4 +4919,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimauthorizationservers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimauthorizationservers.json index 0ad2bbfb1346..d1a806bc7108 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimauthorizationservers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimauthorizationservers.json @@ -679,4 +679,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimbackends.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimbackends.json index 8680355c2a8e..0ae71d34bc2d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimbackends.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimbackends.json @@ -767,4 +767,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimcertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimcertificates.json index e895ee01e226..98e5acbe4bc4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimcertificates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimcertificates.json @@ -398,4 +398,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimdeployment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimdeployment.json index b97403a1359d..64e033dce9bc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimdeployment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimdeployment.json @@ -1571,4 +1571,4 @@ } }, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimdiagnostics.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimdiagnostics.json index 0a46a4020ab5..ec5f361e8ea5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimdiagnostics.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimdiagnostics.json @@ -616,4 +616,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimemailtemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimemailtemplate.json index 6ffa8a5a4a57..c688868bf496 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimemailtemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimemailtemplate.json @@ -502,4 +502,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimgroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimgroups.json index c759fba75274..973f49e4c303 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimgroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimgroups.json @@ -447,7 +447,7 @@ "204": { "description": "Entity exists" }, - "404" : { + "404": { "description": "Entity does not exists." }, "default": { @@ -458,7 +458,7 @@ } } }, - "put": { + "put": { "tags": [ "GroupUsers" ], @@ -732,4 +732,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimidentityprovider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimidentityprovider.json index 0297039b15d9..0e2636675c79 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimidentityprovider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimidentityprovider.json @@ -115,10 +115,10 @@ "200": { "description": "Specified identity provider entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -129,7 +129,7 @@ } } }, - "get": { + "get": { "tags": [ "IdentityProvider" ], @@ -549,4 +549,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimissues.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimissues.json index 749225ebcc87..fc8d699d762e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimissues.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimissues.json @@ -94,4 +94,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimloggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimloggers.json index a7be9704d423..91b24cc0c8ed 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimloggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimloggers.json @@ -129,10 +129,10 @@ "200": { "description": "Specified logger entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -143,7 +143,7 @@ } } }, - "get": { + "get": { "tags": [ "Loggers" ], @@ -509,4 +509,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimnetworkstatus.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimnetworkstatus.json index 0a5d95a5ac36..9f6580c492b4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimnetworkstatus.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimnetworkstatus.json @@ -219,4 +219,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimnotifications.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimnotifications.json index 7abf971b664f..a89786b3f98d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimnotifications.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimnotifications.json @@ -251,7 +251,7 @@ "204": { "description": "The User is subscribed to receive the notification." }, - "404" : { + "404": { "description": "Entity does not exists." }, "default": { @@ -442,7 +442,7 @@ "204": { "description": "The Users is subscribed to receive the notification." }, - "404" : { + "404": { "description": "The Users is not subscribed to receive the notification." }, "default": { @@ -768,4 +768,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimopenidconnectproviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimopenidconnectproviders.json index 2c2fd499266a..44c2cd81f61f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimopenidconnectproviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimopenidconnectproviders.json @@ -120,10 +120,10 @@ "200": { "description": "Specified openidConnectProvider entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -134,7 +134,7 @@ } } }, - "get": { + "get": { "tags": [ "OpenIdConnectProviders" ], @@ -456,4 +456,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimportalsettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimportalsettings.json index 86bd39436d2d..a5a5da526b16 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimportalsettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimportalsettings.json @@ -710,4 +710,4 @@ "description": "User registration delegation settings properties." } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimproducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimproducts.json index 8ba536db5863..d2106e08cd2f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimproducts.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimproducts.json @@ -1240,4 +1240,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimproperties.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimproperties.json index 52feddada7aa..958b016a6d9e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimproperties.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimproperties.json @@ -123,10 +123,10 @@ "200": { "description": "Specified Property entity exists and current entity state version is present in the ETag header.", "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } } }, "default": { @@ -137,7 +137,7 @@ } } }, - "get": { + "get": { "tags": [ "Property" ], @@ -469,4 +469,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimquotas.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimquotas.json index 789255ef73de..226d0f0ee3c8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimquotas.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimquotas.json @@ -338,4 +338,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimreports.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimreports.json index eb27c6bc67eb..f3accf51cde9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimreports.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimreports.json @@ -719,4 +719,4 @@ } }, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimsubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimsubscriptions.json index 7a2793cf572f..2e274a0993d4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimsubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimsubscriptions.json @@ -703,4 +703,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtagresources.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtagresources.json index 93c9b457c67a..4a2d276cdeb3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtagresources.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtagresources.json @@ -267,4 +267,4 @@ } }, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtags.json index 1fc6c77f883b..942baa0b5850 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtags.json @@ -1642,4 +1642,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtenant.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtenant.json index 588672d22d9a..d0ff259329cb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtenant.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimtenant.json @@ -769,4 +769,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimusers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimusers.json index 2413c3b71f61..b788fa691ae9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimusers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimusers.json @@ -1007,4 +1007,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimversionsets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimversionsets.json index 0631a85c9fe8..3d88711b6b1e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimversionsets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimversionsets.json @@ -1,520 +1,520 @@ { - "swagger": "2.0", - "info": { - "title": "ApiManagementClient", - "description": "Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning.", - "version": "2018-01-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" + "swagger": "2.0", + "info": { + "title": "ApiManagementClient", + "description": "Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning.", + "version": "2018-01-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}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets": { + "get": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_ListByService", + "description": "Lists a collection of API Version Sets in the specified service instance.", + "x-ms-examples": { + "ApiManagementListApiVersionSets": { + "$ref": "./examples/ApiManagementListApiVersionSets.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "$filter", + "in": "query", + "required": false, + "type": "string", + "description": "| Field | Supported operators | Supported functions |\n|------------------|------------------------|-----------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| firstName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| lastName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| email | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| state | eq | N/A |\n| registrationDate | ge, le, eq, ne, gt, lt | N/A |\n| note | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |" + }, + { + "$ref": "./apimanagement.json#/parameters/TopQueryParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" + } + ], + "responses": { + "200": { + "description": "Lists a collection of Api Version Set entities.", + "schema": { + "$ref": "#/definitions/ApiVersionSetCollection" } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ApiVersionSetContract" + } }, - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets": { - "get": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_ListByService", - "description": "Lists a collection of API Version Sets in the specified service instance.", - "x-ms-examples": { - "ApiManagementListApiVersionSets": { - "$ref": "./examples/ApiManagementListApiVersionSets.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "$filter", - "in": "query", - "required": false, - "type": "string", - "description": "| Field | Supported operators | Supported functions |\n|------------------|------------------------|-----------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| firstName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| lastName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| email | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| state | eq | N/A |\n| registrationDate | ge, le, eq, ne, gt, lt | N/A |\n| note | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |" - }, - { - "$ref": "./apimanagement.json#/parameters/TopQueryParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SkipQueryParameter" - } - ], - "responses": { - "200": { - "description": "Lists a collection of Api Version Set entities.", - "schema": { - "$ref": "#/definitions/ApiVersionSetCollection" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/ApiVersionSetContract" + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets/{versionSetId}": { + "head": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_GetEntityTag", + "description": "Gets the entity state (Etag) version of the Api Version Set specified by its identifier.", + "x-ms-examples": { + "ApiManagementHeadApiVersionSet": { + "$ref": "./examples/ApiManagementHeadApiVersionSet.json" + } + }, + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionSetIdParameter" + } + ], + "responses": { + "200": { + "description": "Specified Api Version Set entity exists and current entity state version is present in the ETag header.", + "headers": { + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" } + } + } + }, + "get": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_Get", + "description": "Gets the details of the Api Version Set specified by its identifier.", + "x-ms-examples": { + "ApiManagementGetApiVersionSet": { + "$ref": "./examples/ApiManagementGetApiVersionSet.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets/{versionSetId}": { - "head": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_GetEntityTag", - "description": "Gets the entity state (Etag) version of the Api Version Set specified by its identifier.", - "x-ms-examples": { - "ApiManagementHeadApiVersionSet": { - "$ref": "./examples/ApiManagementHeadApiVersionSet.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionSetIdParameter" - } - ], - "responses": { - "200": { - "description": "Specified Api Version Set entity exists and current entity state version is present in the ETag header.", - "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionSetIdParameter" + } + ], + "responses": { + "200": { + "description": "Gets the specified Api Version Set entity.", + "schema": { + "$ref": "#/definitions/ApiVersionSetContract" }, - "get": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_Get", - "description": "Gets the details of the Api Version Set specified by its identifier.", - "x-ms-examples": { - "ApiManagementGetApiVersionSet": { - "$ref": "./examples/ApiManagementGetApiVersionSet.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionSetIdParameter" - } - ], - "responses": { - "200": { - "description": "Gets the specified Api Version Set entity.", - "schema": { - "$ref": "#/definitions/ApiVersionSetContract" - }, - "headers": { - "ETag": { - "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", - "type": "string" - } - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - }, - "put": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_CreateOrUpdate", - "description": "Creates or Updates a Api Version Set.", - "x-ms-examples": { - "ApiManagementCreateApiVersionSet": { - "$ref": "./examples/ApiManagementCreateApiVersionSet.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionSetIdParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ApiVersionSetContract" - }, - "description": "Create or update parameters." - }, - { - "$ref": "./apimanagement.json#/parameters/IfMatchOptionalParameter" - } - ], - "responses": { - "200": { - "description": "Api Version Set was successfully updated.", - "schema": { - "$ref": "#/definitions/ApiVersionSetContract" - } - }, - "201": { - "description": "Api Version Set was successfully created.", - "schema": { - "$ref": "#/definitions/ApiVersionSetContract" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - }, - "patch": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_Update", - "description": "Updates the details of the Api VersionSet specified by its identifier.", - "x-ms-examples": { - "ApiManagementUpdateApiVersionSet": { - "$ref": "./examples/ApiManagementUpdateApiVersionSet.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionSetIdParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ApiVersionSetUpdateParameters" - }, - "description": "Update parameters." - }, - { - "$ref": "./apimanagement.json#/parameters/IfMatchRequiredParameter" - } - ], - "responses": { - "204": { - "description": "The Api Version Set details were successfully updated." - }, - "default": { - "description": "*** Error Responses: ***\n\n * 4XX Error response giving details why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "tags": [ - "ApiVersionSets" - ], - "operationId": "ApiVersionSet_Delete", - "description": "Deletes specific Api Version Set.", - "x-ms-examples": { - "ApiManagementDeleteApiVersionSet": { - "$ref": "./examples/ApiManagementDeleteApiVersionSet.json" - } - }, - "parameters": [ - { - "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionSetIdParameter" - }, - { - "$ref": "./apimanagement.json#/parameters/IfMatchRequiredParameter" - } - ], - "responses": { - "200": { - "description": "The ApiVersion Set details were successfully deleted." - }, - "204": { - "description": "The ApiVersion Set details were successfully deleted." - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "./apimanagement.json#/definitions/ErrorResponse" - } - } - } + "headers": { + "ETag": { + "description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.", + "type": "string" + } + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" } + } } - }, - "definitions": { - "ApiVersionSetCollection": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ApiVersionSetContract" - }, - "description": "Page values." - }, - "nextLink": { - "type": "string", - "description": "Next page link if any." - } - }, - "description": "Paged Api Version Set list representation." + }, + "put": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_CreateOrUpdate", + "description": "Creates or Updates a Api Version Set.", + "x-ms-examples": { + "ApiManagementCreateApiVersionSet": { + "$ref": "./examples/ApiManagementCreateApiVersionSet.json" + } }, - "ApiVersionSetEntityBase": { - "properties": { - "description": { - "type": "string", - "description": "Description of API Version Set." - }, - "versionQueryName": { - "type": "string", - "description": "Name of query parameter that indicates the API Version if versioningScheme is set to `query`.", - "minLength": 1, - "maxLength": 100 - }, - "versionHeaderName": { - "type": "string", - "description": "Name of HTTP header parameter that indicates the API Version if versioningScheme is set to `header`.", - "minLength": 1, - "maxLength": 100 - } + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionSetIdParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ApiVersionSetContract" }, - "description": "Api Version set base parameters" + "description": "Create or update parameters." + }, + { + "$ref": "./apimanagement.json#/parameters/IfMatchOptionalParameter" + } + ], + "responses": { + "200": { + "description": "Api Version Set was successfully updated.", + "schema": { + "$ref": "#/definitions/ApiVersionSetContract" + } + }, + "201": { + "description": "Api Version Set was successfully created.", + "schema": { + "$ref": "#/definitions/ApiVersionSetContract" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_Update", + "description": "Updates the details of the Api VersionSet specified by its identifier.", + "x-ms-examples": { + "ApiManagementUpdateApiVersionSet": { + "$ref": "./examples/ApiManagementUpdateApiVersionSet.json" + } }, - "ApiVersionSetContractProperties": { - "properties": { - "displayName": { - "type": "string", - "description": "Name of API Version Set", - "minLength": 1, - "maxLength": 100 - }, - "versioningScheme": { - "type": "string", - "description": "An value that determines where the API Version identifer will be located in a HTTP request.", - "enum": [ - "Segment", - "Query", - "Header" - ], - "x-ms-enum": { - "name": "versioningScheme", - "modelAsString": true, - "values": [ - { - "value": "Segment", - "description": "The API Version is passed in a path segment." - }, - { - "value": "Query", - "description": "The API Version is passed in a query parameter." - }, - { - "value": "Header", - "description": "The API Version is passed in a HTTP header." - } - ] - } - } + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionSetIdParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ApiVersionSetUpdateParameters" }, - "allOf": [ - { - "$ref": "#/definitions/ApiVersionSetEntityBase" - } - ], - "required": [ - "displayName", - "versioningScheme" - ], - "description": "Properties of an API Version Set." + "description": "Update parameters." + }, + { + "$ref": "./apimanagement.json#/parameters/IfMatchRequiredParameter" + } + ], + "responses": { + "204": { + "description": "The Api Version Set details were successfully updated." + }, + "default": { + "description": "*** Error Responses: ***\n\n * 4XX Error response giving details why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + }, + "delete": { + "tags": [ + "ApiVersionSets" + ], + "operationId": "ApiVersionSet_Delete", + "description": "Deletes specific Api Version Set.", + "x-ms-examples": { + "ApiManagementDeleteApiVersionSet": { + "$ref": "./examples/ApiManagementDeleteApiVersionSet.json" + } }, - "ApiVersionSetContract": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ApiVersionSetContractProperties", - "description": "Api VersionSet contract properties." - } - }, - "allOf": [ - { - "$ref": "./apimanagement.json#/definitions/Resource" - } - ], - "description": "Api Version Set Contract details." + "parameters": [ + { + "$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ServiceNameParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionSetIdParameter" + }, + { + "$ref": "./apimanagement.json#/parameters/IfMatchRequiredParameter" + } + ], + "responses": { + "200": { + "description": "The ApiVersion Set details were successfully deleted." + }, + "204": { + "description": "The ApiVersion Set details were successfully deleted." + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "./apimanagement.json#/definitions/ErrorResponse" + } + } + } + } + } + }, + "definitions": { + "ApiVersionSetCollection": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ApiVersionSetContract" + }, + "description": "Page values." }, - "ApiVersionSetUpdateParametersProperties": { - "properties": { - "displayName": { - "type": "string", - "description": "Name of API Version Set", - "minLength": 1, - "maxLength": 100 - }, - "versioningScheme": { - "type": "string", - "description": "An value that determines where the API Version identifer will be located in a HTTP request.", - "enum": [ - "Segment", - "Query", - "Header" - ], - "x-ms-enum": { - "name": "versioningScheme", - "modelAsString": true, - "values": [ - { - "value": "Segment", - "description": "The API Version is passed in a path segment." - }, - { - "value": "Query", - "description": "The API Version is passed in a query parameter." - }, - { - "value": "Header", - "description": "The API Version is passed in a HTTP header." - } - ] - } - } - }, - "allOf": [ - { - "$ref": "#/definitions/ApiVersionSetEntityBase" - } - ], - "description": "Properties used to create or update an API Version Set." + "nextLink": { + "type": "string", + "description": "Next page link if any." + } + }, + "description": "Paged Api Version Set list representation." + }, + "ApiVersionSetEntityBase": { + "properties": { + "description": { + "type": "string", + "description": "Description of API Version Set." }, - "ApiVersionSetUpdateParameters": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ApiVersionSetUpdateParametersProperties", - "description": "Parameters to update or create an Api Version Set Contract." - } - }, - "description": "Parameters to update or create an Api Version Set Contract." + "versionQueryName": { + "type": "string", + "description": "Name of query parameter that indicates the API Version if versioningScheme is set to `query`.", + "minLength": 1, + "maxLength": 100 + }, + "versionHeaderName": { + "type": "string", + "description": "Name of HTTP header parameter that indicates the API Version if versioningScheme is set to `header`.", + "minLength": 1, + "maxLength": 100 } + }, + "description": "Api Version set base parameters" }, - "parameters": { - "ApiVersionSetIdParameter": { - "name": "versionSetId", - "in": "path", - "required": true, - "type": "string", - "description": "Api Version Set identifier. Must be unique in the current API Management service instance.", - "minLength": 1, - "maxLength": 80, - "pattern": "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)", - "x-ms-parameter-location": "method" + "ApiVersionSetContractProperties": { + "properties": { + "displayName": { + "type": "string", + "description": "Name of API Version Set", + "minLength": 1, + "maxLength": 100 + }, + "versioningScheme": { + "type": "string", + "description": "An value that determines where the API Version identifer will be located in a HTTP request.", + "enum": [ + "Segment", + "Query", + "Header" + ], + "x-ms-enum": { + "name": "versioningScheme", + "modelAsString": true, + "values": [ + { + "value": "Segment", + "description": "The API Version is passed in a path segment." + }, + { + "value": "Query", + "description": "The API Version is passed in a query parameter." + }, + { + "value": "Header", + "description": "The API Version is passed in a HTTP header." + } + ] + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/ApiVersionSetEntityBase" + } + ], + "required": [ + "displayName", + "versioningScheme" + ], + "description": "Properties of an API Version Set." + }, + "ApiVersionSetContract": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ApiVersionSetContractProperties", + "description": "Api VersionSet contract properties." + } + }, + "allOf": [ + { + "$ref": "./apimanagement.json#/definitions/Resource" + } + ], + "description": "Api Version Set Contract details." + }, + "ApiVersionSetUpdateParametersProperties": { + "properties": { + "displayName": { + "type": "string", + "description": "Name of API Version Set", + "minLength": 1, + "maxLength": 100 + }, + "versioningScheme": { + "type": "string", + "description": "An value that determines where the API Version identifer will be located in a HTTP request.", + "enum": [ + "Segment", + "Query", + "Header" + ], + "x-ms-enum": { + "name": "versioningScheme", + "modelAsString": true, + "values": [ + { + "value": "Segment", + "description": "The API Version is passed in a path segment." + }, + { + "value": "Query", + "description": "The API Version is passed in a query parameter." + }, + { + "value": "Header", + "description": "The API Version is passed in a HTTP header." + } + ] + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/ApiVersionSetEntityBase" } + ], + "description": "Properties used to create or update an API Version Set." + }, + "ApiVersionSetUpdateParameters": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ApiVersionSetUpdateParametersProperties", + "description": "Parameters to update or create an Api Version Set Contract." + } + }, + "description": "Parameters to update or create an Api Version Set Contract." + } + }, + "parameters": { + "ApiVersionSetIdParameter": { + "name": "versionSetId", + "in": "path", + "required": true, + "type": "string", + "description": "Api Version Set identifier. Must be unique in the current API Management service instance.", + "minLength": 1, + "maxLength": 80, + "pattern": "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)", + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json index db6923df1ed8..d88f5651e4b7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json @@ -1,53 +1,53 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2018-01-01" - } + "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/stable/2018-01-01/examples/ApiManagementBackendReconnect.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementBackendReconnect.json index 0919d31f0a51..8919197128ec 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementBackendReconnect.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementBackendReconnect.json @@ -1,17 +1,17 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "backendid": "proxybackend", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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/stable/2018-01-01/examples/ApiManagementCreateAILogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateAILogger.json index 5cd1ff07cba4..b635d96d61b7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateAILogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateAILogger.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApi.json index 79f391068c57..00bfa6281d72 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApi.json @@ -90,4 +90,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiDiagnostic.json index 016886fe7c9c..ce18c9c0ac57 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiDiagnostic.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiDiagnosticLogger.json index a6b7d515edfc..09010b58e283 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiDiagnosticLogger.json @@ -1,44 +1,44 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "applicationinsights", - "apiId": "57d1f7558aa04f15146d9d8a", - "parameters": { } - }, - "responses": { - "201": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "applicationinsights", + "apiId": "57d1f7558aa04f15146d9d8a", + "parameters": {} + }, + "responses": { + "201": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } - }, - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } + } + }, + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } } } - } \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiIssue.json index c3924f239769..e1854ec46ae1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiIssue.json @@ -1,49 +1,49 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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/stable/2018-01-01/examples/ApiManagementCreateApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiIssueAttachment.json index 37cf9b88b6b8..38b16ca9309c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiIssueAttachment.json @@ -1,44 +1,44 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "attachmentId": "57d2ef278aa04f0888cba3f3", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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/stable/2018-01-01/examples/ApiManagementCreateApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiIssueComment.json index 50f4ff76747a..cbe89de20955 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiIssueComment.json @@ -1,44 +1,44 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "commentId": "599e29ab193c3c0bd0b3e2fb", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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/stable/2018-01-01/examples/ApiManagementCreateApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiOperation.json index 8f73ff5d6346..fa08192b281d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiOperation.json @@ -1,131 +1,131 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "PetStoreTemplate2", + "operationId": "newoperations", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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/stable/2018-01-01/examples/ApiManagementCreateApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiOperationPolicy.json index 2cae66c70fb0..5a9e1195876c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiOperationPolicy.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiPolicy.json index 13a0921fe4b5..6ba8ba5b5080 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/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/stable/2018-01-01/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json index e525ce4da05e..3d13f411b203 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiRelease.json index 12bf5273a2cc..2233ca866c71 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiRelease.json @@ -1,44 +1,44 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "testrev", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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/stable/2018-01-01/examples/ApiManagementCreateApiRevision.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiRevision.json index cb3e6d083c6a..f7d5bbe5f647 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiRevision.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiRevision.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiSchema.json index a3769dcf6be9..5d946bce387c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiSchema.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiTag.json index 853c99adb1e1..4a4d413d27e0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiTag.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiTagDescription.json index 661eb100e408..37983e6bdc0e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiTagDescription.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiUsingSwaggerImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiUsingSwaggerImport.json index 6a2e73dc68fb..7e454f52d1a6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiUsingSwaggerImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiUsingSwaggerImport.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiUsingWadlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiUsingWadlImport.json index 5da5b5f5d31d..325b00068393 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiUsingWadlImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiUsingWadlImport.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiVersionSet.json index 26799a04e930..90f09b2d54e3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiVersionSet.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiWithOpenIdConnect.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiWithOpenIdConnect.json index 2e18b4aa455a..6f2a4556d4f9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiWithOpenIdConnect.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateApiWithOpenIdConnect.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateAuthorizationServer.json index 23ff11d1d90a..d2eb6320fa02 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateAuthorizationServer.json @@ -93,4 +93,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackendProxyBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackendProxyBackend.json index 13249c076945..7e814653dfc0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackendProxyBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackendProxyBackend.json @@ -123,4 +123,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackendServiceFabric.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackendServiceFabric.json index 1efb701e38eb..91920f93ef9a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackendServiceFabric.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackendServiceFabric.json @@ -84,4 +84,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackup.json index 36e3f0ebc376..0569ac128560 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateBackup.json @@ -1,53 +1,53 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2018-01-01" - } + "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/stable/2018-01-01/examples/ApiManagementCreateCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateCertificate.json index a02b02462e60..e9f0d61f341f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateCertificate.json @@ -4,7 +4,7 @@ "resourceGroupName": "rg1", "api-version": "2018-01-01", "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/stable/2018-01-01/examples/ApiManagementCreateDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateDiagnostic.json index 8df0ffe2af21..58dfb3a80fdd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateDiagnostic.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateDiagnosticLogger.json index 677358721a45..1124b7c23055 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateDiagnosticLogger.json @@ -1,43 +1,43 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "applicationinsights", - "parameters": { } - }, - "responses": { - "201": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "applicationinsights", + "parameters": {} + }, + "responses": { + "201": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } - }, - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } + } + }, + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } } } - } \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateEHLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateEHLogger.json index ff84cf1e0118..c26b9c79e207 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateEHLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateEHLogger.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateEmailTemplate.json index 2864c5acea1e..004c91f1dfaa 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateEmailTemplate.json @@ -93,4 +93,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateGroup.json index 86d1962fbde5..681a32d21599 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/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/stable/2018-01-01/examples/ApiManagementCreateGroupExternal.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateGroupExternal.json index b3c2ade5f936..f47d9a00eb3f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateGroupExternal.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateGroupExternal.json @@ -4,11 +4,11 @@ "resourceGroupName": "rg1", "api-version": "2018-01-01", "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/stable/2018-01-01/examples/ApiManagementCreateGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateGroupUser.json index 39fab4b7f593..833e8545d505 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateGroupUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/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/stable/2018-01-01/examples/ApiManagementCreateIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateIdentityProvider.json index 505e8ca54c65..d088c327e2e1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateIdentityProvider.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json index 8160466ad97d..45c4fa456dad 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json @@ -4,7 +4,7 @@ "resourceGroupName": "rg1", "api-version": "2018-01-01", "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/stable/2018-01-01/examples/ApiManagementCreateOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateOpenIdConnectProvider.json index 35a818ce1633..448c19fd6df9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/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/stable/2018-01-01/examples/ApiManagementCreateOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateOperationTag.json index 250b29dd6d87..585809caebed 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateOperationTag.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/ApiManagementCreatePolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreatePolicy.json index 1c309641f58f..30f33439d8ba 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreatePolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreatePolicy.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductApi.json index ffd6634aef6e..d42cdd8ac106 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/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/stable/2018-01-01/examples/ApiManagementCreateProductBasic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductBasic.json index 11cd248c852c..0f1f3fe545b6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductBasic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductBasic.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductGroup.json index 72f47886ac53..915c7a5de142 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductGroup.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductPolicy.json index 642e89902e2d..c4bb414a3d3d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductPolicy.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductTag.json index a906213ebb04..8d9c10b70157 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProductTag.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProperty.json index 060e0c035487..38dff8e5ba7a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateProperty.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateRecipientEmail.json index 711b2de23a4b..595bae0d3043 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateRecipientEmail.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/stable/2018-01-01/examples/ApiManagementCreateRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateRecipientUser.json index 973e9c679e1a..11f5a1cff869 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateRecipientUser.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateService.json index 4a2fa14eaec9..41a777505853 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateService.json @@ -107,4 +107,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateServiceHavingMsi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateServiceHavingMsi.json index 37f349524608..c063f67dacae 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateServiceHavingMsi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateServiceHavingMsi.json @@ -117,4 +117,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateServiceWithSystemCertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateServiceWithSystemCertificates.json index 42f987dad858..a7e470bac209 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateServiceWithSystemCertificates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateServiceWithSystemCertificates.json @@ -159,4 +159,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json index 9a44a23e1085..78787c770243 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json index 478084f6cb6c..b57f1b4a60db 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSubscription.json index 2d3ac5b98d8e..71407539b5b9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateSubscription.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateTag.json index 004f1910892c..f0f80f0fb1ff 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateTag.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateUserBasic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateUserBasic.json index 94e3116e47c0..a0e07d9524b7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateUserBasic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementCreateUserBasic.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApi.json index 07c6b192f293..212a4490703d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApi.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "echo-api", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "echo-api", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiDiagnostic.json index 730724b7042f..fb534e86658e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiDiagnostic.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "apiId": "57d1f7558aa04f15146d9d8a", - "If-Match": "*" - }, - "responses": { - "204": {}, - "200":{} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "apiId": "57d1f7558aa04f15146d9d8a", + "If-Match": "*" + }, + "responses": { + "204": {}, + "200": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiDiagnosticLogger.json index e8d961cb79f3..01186b752d68 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiDiagnosticLogger.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "applicationinsights", - "apiId": "57d1f7558aa04f15146d9d8a", - "parameters": { } - }, - "responses": { - "204": {}, - "200":{} - } - } \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "applicationinsights", + "apiId": "57d1f7558aa04f15146d9d8a", + "parameters": {} + }, + "responses": { + "204": {}, + "200": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssue.json index 3e2ead481521..01b42cab5eab 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssue.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "apiId": "57d1f7558aa04f15146d9d8a", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssueAttachment.json index 9a43f099a422..c90c66d9938d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssueAttachment.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "attachmentId": "57d2ef278aa04f0888cba3f3", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssueComment.json index 813ce534e9af..a4e4404efa19 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiIssueComment.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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": "2017-03-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "commentId": "599e29ab193c3c0bd0b3e2fb", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiOperation.json index 83118c82ddf0..6e88f49f975c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiOperation.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiPolicy.json index cc25df790b77..8590706e1955 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiPolicy.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "apiId": "loggerId", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiRelease.json index 7259f4c30e84..3e4205c55d83 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiRelease.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "apiId": "5a5fcc09124a7fa9b89f2f1d", + "releaseId": "testrev", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiSchema.json index 46ac78c46747..c6dd047371c2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiSchema.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650", + "schemaId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiTag.json index f458e7db34cc..343ea53429c4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiTag.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650", + "tagId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiTagDescription.json index f458e7db34cc..343ea53429c4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiTagDescription.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650", + "tagId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiVersionSet.json index 3830bc95003e..6960bd0319ad 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteApiVersionSet.json @@ -1,16 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "versionSetId": "a1", - "If-Match": "*" - }, - "responses": { - "204": { - }, - "200":{ - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "versionSetId": "a1", + "If-Match": "*" + }, + "responses": { + "204": {}, + "200": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteAuthorizationServer.json index 2160255fc3b6..b6d1f126e047 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteAuthorizationServer.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "authsid": "newauthServer2", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "authsid": "newauthServer2", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteBackend.json index 128009de4032..c82e0349eb81 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteBackend.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "backendid": "sfbackend", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "backendid": "sfbackend", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteCertificate.json index a6bffbb09ae4..a8bd3cc403c1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteCertificate.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "certificateId": "tempcert", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "certificateId": "tempcert", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteDiagnostic.json index eaed7f8f24a3..3abb6ff0c444 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteDiagnostic.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteDiagnosticLogger.json index 32872a14c3d4..d84500bc1efc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteDiagnosticLogger.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "applicationinsights", - "parameters": { } - }, - "responses": { - "200": {}, - "204": {} - } - } \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "applicationinsights", + "parameters": {} + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteEmailTemplate.json index 6027ff992175..c0574cf946ec 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteEmailTemplate.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "templateName": "newIssueNotificationMessage", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteGroup.json index fc5abc938862..1624a9f4cc1e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteGroup.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "groupId": "aadGroup", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "groupId": "aadGroup", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteGroupUser.json index 6c95ea25fe0e..2920dfba6922 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteGroupUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteGroupUser.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "groupId": "templategroup", - "uid": "59307d350af58404d8a26300", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "groupId": "templategroup", + "uid": "59307d350af58404d8a26300", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteIdentityProvider.json index 42362fe4cab4..811365858c35 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteIdentityProvider.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "identityProviderName": "aad", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "identityProviderName": "aad", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteLogger.json index f2d5e63ae052..0f86eee1395a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteLogger.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "loggerid": "loggerId", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "loggerid": "loggerId", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteNotificationRecipientEmail.json index ba36c31f4286..cf2a0dd720ab 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteNotificationRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteNotificationRecipientEmail.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "email": "contoso@live.com" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteNotificationRecipientUser.json index 75f246b2e261..372d8da9ac48 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteNotificationRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteNotificationRecipientUser.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "uid": "576823d0a40f7e74ec07d642" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "uid": "576823d0a40f7e74ec07d642" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOpenIdConnectProvider.json index 4df2e30c4583..bf40888c3bb9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOpenIdConnectProvider.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect3", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect3", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOperationPolicy.json index b58ad23969b2..ebc7ea1c1e45 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOperationPolicy.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "apiId": "testapi", + "operationId": "testoperation", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOperationTag.json index 42d7e2baa3c3..4499a58757b7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/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/stable/2018-01-01/examples/ApiManagementDeletePolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeletePolicy.json index 42c234daefbe..c2f306b38599 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeletePolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeletePolicy.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "policyId": "policy", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProduct.json index cba3774a6e40..12c1c5d2ea82 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProduct.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "productId": "testproduct", + "deleteSubscriptions": true, + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductApi.json index b98d0098115d..17982b03eb52 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductApi.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "productId": "testproduct", + "apiId": "echo-api", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductGroup.json index df346737ed1a..8aae2456f591 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductGroup.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "productId": "testproduct", + "groupId": "templateGroup", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductPolicy.json index fcef1f5a5bb3..bc472265fd07 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductPolicy.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "productId": "testproduct", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductTag.json index 19c1ab315129..bd9b5ebcebfc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProductTag.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "subscriptionId": "subid", + "productId": "59d5b28d1f7fab116c282650", + "tagId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProperty.json index 9531fd829061..d15cc28587a1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteProperty.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "propId": "testprop2", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "propId": "testprop2", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteSubscription.json index 32c8c3d09ef3..24b99f15d69a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteSubscription.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "sid": "testsub", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "sid": "testsub", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteTag.json index 6d499a895fb2..c5acce156b95 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteTag.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "tagId": "tagId1", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "tagId": "tagId1", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteUser.json index 7c9063e67027..1746fa190bfc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementDeleteUser.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "uid": "5931a75ae4bbd512288c680b", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "uid": "5931a75ae4bbd512288c680b", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiContract.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiContract.json index 0cf5585c5ecf..7ece27430eeb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiContract.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiContract.json @@ -1,34 +1,34 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "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/stable/2018-01-01/examples/ApiManagementGetApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiDiagnostic.json index cb6b69c83e2a..4103187de314 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiDiagnostic.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default", - "type": "Microsoft.ApiManagement/service/apis/diagnostics", - "name": "default", - "properties": { - "enabled": false - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default", + "type": "Microsoft.ApiManagement/service/apis/diagnostics", + "name": "default", + "properties": { + "enabled": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json index 8ffcafe09e03..a455e1d0f974 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01", + "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/stable/2018-01-01/examples/ApiManagementGetApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiIssue.json index a00f0919fe35..c0e265f575f9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiIssue.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "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", - "apiId": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "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", + "apiId": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiIssueAttachment.json index 9ad3a14f64a2..7eb97ccbff22 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiIssueAttachment.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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": "2017-03-01", + "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/stable/2018-01-01/examples/ApiManagementGetApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiIssueComment.json index 92952716046c..b8084b56a7d4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiIssueComment.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "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": "2017-03-01", + "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/stable/2018-01-01/examples/ApiManagementGetApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiOperation.json index 99c1dd9c6474..f23f27c6cb9c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiOperation.json @@ -1,53 +1,53 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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\r\n \r\n \r\n 1\r\n \r\n \r\n", - "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", - "typeName": "CancelOrder" - } - ] - }, - "responses": [ - { - "statusCode": 200, - "description": "IFazioService_CancelOrder_OutputMessage", - "representations": [ - { - "contentType": "text/xml", - "sample": "\r\n\r\n \r\n \r\n 1\r\n \r\n \r\n", - "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", - "typeName": "CancelOrderResponse" - } - ], - "headers": [] - } - ] + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "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\r\n \r\n \r\n 1\r\n \r\n \r\n", + "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", + "typeName": "CancelOrder" + } + ] + }, + "responses": [ + { + "statusCode": 200, + "description": "IFazioService_CancelOrder_OutputMessage", + "representations": [ + { + "contentType": "text/xml", + "sample": "\r\n\r\n \r\n \r\n 1\r\n \r\n \r\n", + "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", + "typeName": "CancelOrderResponse" } + ], + "headers": [] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiOperationPolicy.json index a8b46901fd99..2fee2be98731 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiOperationPolicy.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "5600b539c53f5b0062040001", - "operationId": "5600b53ac53f5b0062080006", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b539c53f5b0062040001/operations/5600b53ac53f5b0062080006/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/operations/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n This is a sample\r\n \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "5600b539c53f5b0062040001", + "operationId": "5600b53ac53f5b0062080006", + "policyId": "policy" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b539c53f5b0062040001/operations/5600b53ac53f5b0062080006/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/operations/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n This is a sample\r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiPolicy.json index 29eda86d080b..6ea8ba45028c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiPolicy.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "5600b59475ff190048040001", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "5600b59475ff190048040001", + "policyId": "policy" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiRelease.json index 23b64034be13..c1f2c095e284 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiRelease.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "5a7cb545298324c53224a799" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", - "type": "Microsoft.ApiManagement/service/apis/releases", - "name": "5a7cb545298324c53224a799", - "properties": { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", - "createdDateTime": "2018-02-08T20:38:29.173Z", - "updatedDateTime": "2018-02-08T20:38:29.173Z", - "notes": "yahoo" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "5a7cb545298324c53224a799" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", + "type": "Microsoft.ApiManagement/service/apis/releases", + "name": "5a7cb545298324c53224a799", + "properties": { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", + "createdDateTime": "2018-02-08T20:38:29.173Z", + "updatedDateTime": "2018-02-08T20:38:29.173Z", + "notes": "yahoo" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiRevision.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiRevision.json index 81167d6c4767..da7f0777e485 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiRevision.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiRevision.json @@ -1,32 +1,32 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "echo-api;rev=3" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api;rev=3", - "type": "Microsoft.ApiManagement/service/apis", - "name": "echo-api;rev=3", - "properties": { - "displayName": "Service", - "apiRevision": "3", - "serviceUrl": "https://api.plexonline.com/DataSource/Service.asmx", - "path": "schulte", - "protocols": [ - "https" - ], - "subscriptionKeyParameterNames": { - "header": "Ocp-Apim-Subscription-Key", - "query": "subscription-key" - }, - "apiRevisionDescription": "fixed bug in contract" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "echo-api;rev=3" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api;rev=3", + "type": "Microsoft.ApiManagement/service/apis", + "name": "echo-api;rev=3", + "properties": { + "displayName": "Service", + "apiRevision": "3", + "serviceUrl": "https://api.plexonline.com/DataSource/Service.asmx", + "path": "schulte", + "protocols": [ + "https" + ], + "subscriptionKeyParameterNames": { + "header": "Ocp-Apim-Subscription-Key", + "query": "subscription-key" + }, + "apiRevisionDescription": "fixed bug in contract" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiSchema.json index 2dee8293659f..536a491f7a8a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiSchema.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "59d6bb8f1f7fab13dc67ec9b", - "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d6bb8f1f7fab13dc67ec9b/schemas/ec12520d-9d48-4e7b-8f39-698ca2ac63f1", - "type": "Microsoft.ApiManagement/service/apis/schemas", - "name": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1", - "properties": { - "contentType": "application/vnd.ms-azure-apim.xsd+xml", - "document": { - "value": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "59d6bb8f1f7fab13dc67ec9b", + "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d6bb8f1f7fab13dc67ec9b/schemas/ec12520d-9d48-4e7b-8f39-698ca2ac63f1", + "type": "Microsoft.ApiManagement/service/apis/schemas", + "name": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1", + "properties": { + "contentType": "application/vnd.ms-azure-apim.xsd+xml", + "document": { + "value": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiTag.json index 42048288953c..b779c7ef74dc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiTag.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiTagDescription.json index b034067cc150..966513dc2789 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiTagDescription.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiVersionSet.json index 4c05217967bb..acf50b922513 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetApiVersionSet.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "versionSetId": "vs1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs1", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs1", - "properties": { - "displayName" : "Version Set 1", - "versioningScheme" : "Segment", - "description" : "Version configuration" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "versionSetId": "vs1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs1", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs1", + "properties": { + "displayName": "Version Set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetAuthorizationServer.json index 6cccabde4e68..910c0025a061 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetAuthorizationServer.json @@ -1,44 +1,44 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "authsid": "newauthServer2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer2", - "properties": { - "displayName": "test3", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "clientAuthenticationMethod": [ - "Basic" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "authsid": "newauthServer2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer2", + "properties": { + "displayName": "test3", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "clientAuthenticationMethod": [ + "Basic" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetBackend.json index 2f4c22bea1c5..e9701e5063da 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetBackend.json @@ -1,38 +1,38 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "backendid": "sfbackend" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", - "type": "Microsoft.ApiManagement/service/backends", - "name": "sfbackend", - "properties": { - "description": "Service Fabric Test App 1", - "url": "fabric:/mytestapp/mytestservice", - "protocol": "http", - "properties": { - "serviceFabricCluster": { - "managementEndpoints": [ - "https://somecluster.com" - ], - "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", - "serverX509Names": [ - { - "name": "ServerCommonName1", - "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" - } - ], - "maxPartitionResolutionRetries": 5 - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "backendid": "sfbackend" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", + "type": "Microsoft.ApiManagement/service/backends", + "name": "sfbackend", + "properties": { + "description": "Service Fabric Test App 1", + "url": "fabric:/mytestapp/mytestservice", + "protocol": "http", + "properties": { + "serviceFabricCluster": { + "managementEndpoints": [ + "https://somecluster.com" + ], + "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", + "serverX509Names": [ + { + "name": "ServerCommonName1", + "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" } + ], + "maxPartitionResolutionRetries": 5 } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetCertificate.json index fdbbfe8a6957..1313577ded38 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetCertificate.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "certificateId": "templateCert1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/templateCert1", - "type": "Microsoft.ApiManagement/service/certificates", - "name": "templateCert1", - "properties": { - "subject": "CN=mutual-authcert", - "thumbprint": "EBA**********************8594A6", - "expirationDate": "2017-04-23T17:03:41Z" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "certificateId": "templateCert1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/templateCert1", + "type": "Microsoft.ApiManagement/service/certificates", + "name": "templateCert1", + "properties": { + "subject": "CN=mutual-authcert", + "thumbprint": "EBA**********************8594A6", + "expirationDate": "2017-04-23T17:03:41Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetDiagnostic.json index f2cc18cd6c09..bede36b08499 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetDiagnostic.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default", - "type": "Microsoft.ApiManagement/service/diagnostics", - "name": "default", - "properties": { - "enabled": false - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default", + "type": "Microsoft.ApiManagement/service/diagnostics", + "name": "default", + "properties": { + "enabled": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetEmailTemplate.json index 4938dbb5ea21..9b68e303b75e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetEmailTemplate.json @@ -1,51 +1,51 @@ { - "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\n \r\n \r\n

Dear $DevFirstName $DevLastName,

\r\n

Thank 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\n

Best,

\r\n

The $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\n \r\n \r\n

Dear $DevFirstName $DevLastName,

\r\n

Thank 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\n

Best,

\r\n

The $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\n\r\n \r\n \r\n \r\n \r\n \r\n" - } - } + "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\n\r\n \r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProduct.json index 58ab34beea63..f453fe9f8193 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProduct.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-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": "2018-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/2018-01-01/examples/ApiManagementGetProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductPolicy.json index e8503eb78783..8d492b5b49b7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductPolicy.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-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": { - "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-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": { + "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductTag.json index 734fed94cf8b..666a7a11db1f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductTag.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductsForApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductsForApi.json index 8238ff8154ac..1de80d62ad93 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductsForApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProductsForApi.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/apis/products", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "Unlimited", - "description": "Subscribers have completely unlimited access to the API. Administrator approval is required.", - "subscriptionRequired": true, - "approvalRequired": true, - "subscriptionsLimit": 1, - "state": "published" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/apis/products", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "Unlimited", + "description": "Subscribers have completely unlimited access to the API. Administrator approval is required.", + "subscriptionRequired": true, + "approvalRequired": true, + "subscriptionsLimit": 1, + "state": "published" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProperty.json index a249e0994de7..c015a5833b6b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetProperty.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "propId": "testarmTemplateproperties2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", - "type": "Microsoft.ApiManagement/service/properties", - "name": "testarmTemplateproperties2", - "properties": { - "displayName": "propName", - "value": "propValue", - "tags": [ - "foo", - "bar" - ], - "secret": false - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "propId": "testarmTemplateproperties2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", + "type": "Microsoft.ApiManagement/service/properties", + "name": "testarmTemplateproperties2", + "properties": { + "displayName": "propName", + "value": "propValue", + "tags": [ + "foo", + "bar" + ], + "secret": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetQuotaCounterKeys.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetQuotaCounterKeys.json index 729d39e216b9..a5dacae92967 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetQuotaCounterKeys.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetQuotaCounterKeys.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "quotaCounterKey": "ba" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "counterKey": "ba", - "periodKey": "0_P3Y6M4DT12H30M5S", - "periodStartTime": "2014-08-04T04:24:35Z", - "periodEndTime": "2018-02-08T16:54:40Z", - "value": { - "callsCount": 5, - "kbTransferred": 2.5830078125 - } - } - ], - "count": 1, - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "quotaCounterKey": "ba" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "counterKey": "ba", + "periodKey": "0_P3Y6M4DT12H30M5S", + "periodStartTime": "2014-08-04T04:24:35Z", + "periodEndTime": "2018-02-08T16:54:40Z", + "value": { + "callsCount": 5, + "kbTransferred": 2.5830078125 } - } + } + ], + "count": 1, + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json index 81f936a30663..a95ee8fefb0c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json @@ -1,24 +1,24 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "quotaCounterKey": "ba", - "quotaPeriodKey": "0_P3Y6M4DT12H30M5S" - }, - "responses": { - "200": { - "body": { - "counterKey": "ba", - "periodKey": "0_P3Y6M4DT12H30M5S", - "periodStartTime": "2014-08-04T04:24:35Z", - "periodEndTime": "2018-02-08T16:54:40Z", - "value": { - "callsCount": 0, - "kbTransferred": 2.5625 - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "quotaCounterKey": "ba", + "quotaPeriodKey": "0_P3Y6M4DT12H30M5S" + }, + "responses": { + "200": { + "body": { + "counterKey": "ba", + "periodKey": "0_P3Y6M4DT12H30M5S", + "periodStartTime": "2014-08-04T04:24:35Z", + "periodEndTime": "2018-02-08T16:54:40Z", + "value": { + "callsCount": 0, + "kbTransferred": 2.5625 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByApi.json index 81bb1b87ea13..58d01d361d95 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByApi.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByGeo.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByGeo.json index 062395dcdd91..f6406ae6f5f1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByGeo.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByGeo.json @@ -1,38 +1,38 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByOperation.json index 79db8f6f35f4..bd454f887197 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByOperation.json @@ -1,76 +1,76 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByProduct.json index 0cf949750189..632bdac25abd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByProduct.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByRequest.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByRequest.json index c191dde45d37..94005bf0bae4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByRequest.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByRequest.json @@ -1,56 +1,56 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsBySubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsBySubscription.json index 8407fbb10ebd..bd18b86370f1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsBySubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsBySubscription.json @@ -1,79 +1,79 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByTime.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByTime.json index 6f0dc0d3bd84..2d0a97290ee3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByTime.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByTime.json @@ -1,56 +1,56 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByUser.json index 9a4495f8e602..47515a524fbe 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetReportsByUser.json @@ -1,73 +1,73 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetSubscription.json index fd7471610238..b72d039ad4dc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetSubscription.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "sid": "5931a769d8d14f0ad8ce13b8" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5931a769d8d14f0ad8ce13b8", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", - "displayName": "Unlimited", - "state": "submitted", - "createdDate": "2017-06-02T17:59:06.223Z", - "primaryKey": "6de0a3b2da204e459148d2f6785873f0", - "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "sid": "5931a769d8d14f0ad8ce13b8" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5931a769d8d14f0ad8ce13b8", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", + "displayName": "Unlimited", + "state": "submitted", + "createdDate": "2017-06-02T17:59:06.223Z", + "primaryKey": "6de0a3b2da204e459148d2f6785873f0", + "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTag.json index 6e0eda3a5f16..8bd461a99b4a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTag.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "tagId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/tags", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "tag1" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "tagId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/tags", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "tag1" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagDescriptionsForApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagDescriptionsForApi.json index 18663e4ad24c..5cd59d8e482e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagDescriptionsForApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagDescriptionsForApi.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1", - "externalDocsDescription": "some additional info", - "externalDocsUrl": "http://some_url.com" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1", + "externalDocsDescription": "some additional info", + "externalDocsUrl": "http://some_url.com" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForApi.json index 28ea7a82071c..fce4d6798804 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForApi.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForOperation.json index f37dfa372b0f..9d26f5a7eff6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForOperation.json @@ -7,21 +7,21 @@ "apiId": "57d2ef278aa04f0888cba3f3", "operationId": "57d2ef278aa04f0888cba3f6" }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForProduct.json index 80c2fec9dff2..6d3dffadfafd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTagsForProduct.json @@ -6,21 +6,21 @@ "subscriptionId": "subid", "productId": "57d2ef278aa04f0888cba3f1" }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTenantAccess.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTenantAccess.json index 1fc84f10f2c3..2a0bbbdf0650 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTenantAccess.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetTenantAccess.json @@ -1,19 +1,19 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "accessName": "access" - }, - "responses": { - "200": { - "body": { - "id": "5600b59375ff190048030003", - "primaryKey": "qr5nbjNoZkgtLojXgU+OA/ntYMgko3XPSVyt+ObwR1sqp2ZkM9tGhwxkeEz7bfAuPS5ss61b2S3ZrZmqa9v3Mw==", - "secondaryKey": "2dCJv1CasJl286SZiKxyBFDiIYCUdbwM1YrFNDcFMXCjCKbFzomrGkv+exAbnV5E3DEk91VP4jbeJ2eV/qtejA==", - "enabled": true - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "accessName": "access" + }, + "responses": { + "200": { + "body": { + "id": "5600b59375ff190048030003", + "primaryKey": "qr5nbjNoZkgtLojXgU+OA/ntYMgko3XPSVyt+ObwR1sqp2ZkM9tGhwxkeEz7bfAuPS5ss61b2S3ZrZmqa9v3Mw==", + "secondaryKey": "2dCJv1CasJl286SZiKxyBFDiIYCUdbwM1YrFNDcFMXCjCKbFzomrGkv+exAbnV5E3DEk91VP4jbeJ2eV/qtejA==", + "enabled": true + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetUser.json index 5f3bbb3fdd2c..5a5a3e8595be 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetUser.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "uid": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "type": "Microsoft.ApiManagement/service/users", - "name": "5931a75ae4bbd512a88c680b", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foobar@outlook.com", - "state": "active", - "registrationDate": "2017-06-02T17:58:50.357Z", - "identities": [ - { - "provider": "Microsoft", - "id": "*************" - } - ] - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "uid": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "type": "Microsoft.ApiManagement/service/users", + "name": "5931a75ae4bbd512a88c680b", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foobar@outlook.com", + "state": "active", + "registrationDate": "2017-06-02T17:58:50.357Z", + "identities": [ + { + "provider": "Microsoft", + "id": "*************" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetUserIdentity.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetUserIdentity.json index e740bc2d0bf9..dd2eadd48aaa 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetUserIdentity.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetUserIdentity.json @@ -1,15 +1,15 @@ { - "parameters": { - "resourceGroupName": "rg1", - "serviceName": "apimService1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "1" - } - } + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "1" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApi.json index fbe46b3e71b4..67ff5c3b6120 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApi.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiDiagnostic.json index 29e473b960a8..0a04216952e7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiDiagnostic.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiDiagnosticLogger.json index 283755755b0a..f9ad25c2d62a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiDiagnosticLogger.json @@ -1,16 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "templateLogger", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "204": { - }, - "404":{} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "templateLogger", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssue.json index 9570771b1278..7fe6a5c67dfc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssue.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssueAttachment.json index 990bf33e30c5..f129d73a0885 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssueAttachment.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "attachmentId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "attachmentId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssueComment.json index 5474d13ceabb..4b4d027fb870 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiIssueComment.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "commentId": "599e29ab193c3c0bd0b3e2fb" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "commentId": "599e29ab193c3c0bd0b3e2fb" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiOperation.json index ae40079487dd..8a6a227425f7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiOperation.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "operationId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiOperationPolicy.json index d17d35e83bc0..fae0a504233b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiOperationPolicy.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "5600b539c53f5b0062040001", - "operationId": "5600b53ac53f5b0062080006", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "5600b539c53f5b0062040001", + "operationId": "5600b53ac53f5b0062080006", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiPolicy.json index 9e5d86a9b0d9..b825182daa64 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiPolicy.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiRelease.json index fb089733d64f..721dd883b98d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiRelease.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "5a7cb545298324c53224a799" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "5a7cb545298324c53224a799" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiSchema.json index 092f8caba01c..e0ec4b4549d1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiSchema.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiTag.json index 42c82ff487bb..656887f6c9c7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiTag.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiTagDescription.json index 42c82ff487bb..656887f6c9c7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiTagDescription.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiVersionSet.json index 3f302bc8368d..de5719fa3f60 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadApiVersionSet.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "versionSetId": "vs1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "versionSetId": "vs1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadAuthorizationServer.json index a6eb6687e908..3ecc944a03b8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadAuthorizationServer.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "authsid": "newauthServer2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "authsid": "newauthServer2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadBackend.json index 8111abd64088..6385214816dc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadBackend.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "backendid": "sfbackend" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "backendid": "sfbackend" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadCertificate.json index 82fd5f24bbee..4f067455d01b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadCertificate.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "certificateId": "templateCert1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "certificateId": "templateCert1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDelegationSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDelegationSettings.json index 8e2d0d439c79..608a6e5c38e4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDelegationSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDelegationSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDiagnostic.json index 59d870d9f94f..38db1f781052 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDiagnostic.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDiagnosticLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDiagnosticLogger.json index 700d742ff3d9..944a9f827ce4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDiagnosticLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadDiagnosticLogger.json @@ -1,16 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "loggerid": "templateLogger" - }, - "responses": { - "204": { - }, - "404":{ - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "loggerid": "templateLogger" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadEmailTemplate.json index a2eb9e1e19ec..f2c8856c5df7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadEmailTemplate.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "templateName": "newIssueNotificationMessage" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadGroup.json index c8bd1072724b..f0db441a0ad0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadGroup.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadGroupUser.json index feaef80c1d04..04a76487ca9d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadGroupUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadGroupUser.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9", - "uid": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9", + "uid": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadIdentityProvider.json index c431c3e40a64..1769c8fdcb9e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadIdentityProvider.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "identityProviderName": "aadB2C" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "identityProviderName": "aadB2C" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadLogger.json index bf09183c1cf2..ddda90ac82cf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadLogger.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "loggerid": "templateLogger" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "loggerid": "templateLogger" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadNotificationRecipientEmail.json index e82babd50d7c..d7fdd43b65c8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadNotificationRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadNotificationRecipientEmail.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "email": "contoso@live.com" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "email": "contoso@live.com" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadNotificationRecipientUser.json index ed404b6405e9..f2cc388861f2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadNotificationRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadNotificationRecipientUser.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "uid": "576823d0a40f7e74ec07d642" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "uid": "576823d0a40f7e74ec07d642" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadOpenIdConnectProvider.json index 720c2b85cb14..f3615dbfa3f7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadOpenIdConnectProvider.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadOperationTag.json index 2d2760d9950e..b05bec7d7866 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadOperationTag.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadPolicy.json index 5498eea90289..c98fb3e7e5ec 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadPolicy.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProduct.json index 791ca38ad9b5..b4fe8945845e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProduct.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "productId": "unlimited" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "productId": "unlimited" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductApi.json index 6e1ad8480883..2f301ca6efc6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductApi.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "productId": "5931a75ae4bbd512a88c680b", - "apiId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "productId": "5931a75ae4bbd512a88c680b", + "apiId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductGroup.json index 712f223518db..e74640396536 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductGroup.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "productId": "5931a75ae4bbd512a88c680b", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "productId": "5931a75ae4bbd512a88c680b", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductPolicy.json index be6c967f62b4..ef41e028f8f8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductPolicy.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "productId": "unlimited", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "productId": "unlimited", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductTag.json index e1ef1239e44f..2b92e780ae0b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProductTag.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProperty.json index 3bf748a66af3..a0d340520cf1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadProperty.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "propId": "testarmTemplateproperties2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "propId": "testarmTemplateproperties2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSignInSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSignInSettings.json index 8e2d0d439c79..608a6e5c38e4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSignInSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSignInSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSignUpSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSignUpSettings.json index 8e2d0d439c79..608a6e5c38e4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSignUpSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSignUpSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSubscription.json index cad0874466b1..35f5e15f9c60 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadSubscription.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "sid": "5931a769d8d14f0ad8ce13b8" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "sid": "5931a769d8d14f0ad8ce13b8" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadTag.json index 253eb0ec2f12..5fba16b61bf4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadTag.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "tagId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "headers": { - "Etag": "AAAAAAAACCI=" - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "tagId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "headers": { + "Etag": "AAAAAAAACCI=" } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadUser.json index da1fe70f223a..5b3b9a1cc5b2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementHeadUser.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "uid": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "uid": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiDiagnosticLoggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiDiagnosticLoggers.json index a9affe58c112..e21cc40c1fe2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiDiagnosticLoggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiDiagnosticLoggers.json @@ -1,32 +1,32 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/apis/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiDiagnostics.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiDiagnostics.json index 64b5338b32f6..1c3a42841f8d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiDiagnostics.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiDiagnostics.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default", - "type": "Microsoft.ApiManagement/service/apis/diagnostics", - "name": "default", - "properties": { - "enabled": false - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/diagnostics/default", + "type": "Microsoft.ApiManagement/service/apis/diagnostics", + "name": "default", + "properties": { + "enabled": false } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssueAttachments.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssueAttachments.json index ec594c46fa6b..4f92cb0439b2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssueAttachments.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssueAttachments.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssueComments.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssueComments.json index 41b8390c985d..9d2b24373f10 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssueComments.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssueComments.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssues.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssues.json index c330abfb911c..47c617bd5499 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssues.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiIssues.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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", - "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", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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", + "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/ApiManagementListApiOperationPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiOperationPolicies.json index c2148c258c3a..3c35b51d6da1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiOperationPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiOperationPolicies.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "599e2953193c3c0bd0b3e2fa", - "operationId": "599e29ab193c3c0bd0b3e2fb" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/599e2953193c3c0bd0b3e2fa/operations/599e29ab193c3c0bd0b3e2fb/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/operations/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n xxx\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "599e2953193c3c0bd0b3e2fa", + "operationId": "599e29ab193c3c0bd0b3e2fb" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/599e2953193c3c0bd0b3e2fa/operations/599e29ab193c3c0bd0b3e2fb/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/operations/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n xxx\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiOperations.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiOperations.json index f4c0d29fb65b..1bd66c277f7a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiOperations.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiOperations.json @@ -1,69 +1,69 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "operationId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cda", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cda", - "properties": { - "displayName": "GetMostRecentOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetMostRecentOrder" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd9", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cd9", - "properties": { - "displayName": "GetOpenOrders", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOpenOrders" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cdb", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cdb", - "properties": { - "displayName": "GetOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOrder" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd8", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cd8", - "properties": { - "displayName": "submitOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/submitOrder" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cda", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cda", + "properties": { + "displayName": "GetMostRecentOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetMostRecentOrder" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd9", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cd9", + "properties": { + "displayName": "GetOpenOrders", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOpenOrders" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cdb", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cdb", + "properties": { + "displayName": "GetOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOrder" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd8", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cd8", + "properties": { + "displayName": "submitOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/submitOrder" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiPolicies.json index 57882d075bbd..4a50af72a895 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiPolicies.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "5600b59475ff190048040001" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "5600b59475ff190048040001" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiReleases.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiReleases.json index 11ce08617eab..2cf9e5bad2e3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiReleases.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiReleases.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "a1" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", - "type": "Microsoft.ApiManagement/service/apis/releases", - "name": "5a7cb545298324c53224a799", - "properties": { - "createdDateTime": "2018-02-08T20:38:29.173Z", - "updatedDateTime": "2018-02-08T20:38:29.173Z", - "notes": "yahoo" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "a1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", + "type": "Microsoft.ApiManagement/service/apis/releases", + "name": "5a7cb545298324c53224a799", + "properties": { + "createdDateTime": "2018-02-08T20:38:29.173Z", + "updatedDateTime": "2018-02-08T20:38:29.173Z", + "notes": "yahoo" } - } + } + ], + "nextLink": "" + } } + } } diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiRevisions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiRevisions.json index e1f60d02c82b..749ab018ed49 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiRevisions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiRevisions.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1;rev=1", - "apiRevision": "1", - "createdDateTime": "2018-02-01T22:21:20.467Z", - "updatedDateTime": "2018-02-01T22:21:20.467Z", - "isOnline": true, - "isCurrent": true - } - ], - "nextLink": "" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1;rev=1", + "apiRevision": "1", + "createdDateTime": "2018-02-01T22:21:20.467Z", + "updatedDateTime": "2018-02-01T22:21:20.467Z", + "isOnline": true, + "isCurrent": true + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiSchemas.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiSchemas.json index 175fa41caae3..7814a72bf614 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiSchemas.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiSchemas.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "59d5b28d1f7fab116c282650" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d5b28d1f7fab116c282650/schemas/59d5b28e1f7fab116402044e", - "type": "Microsoft.ApiManagement/service/apis/schemas", - "name": "59d5b28e1f7fab116402044e", - "properties": { - "contentType": "application/vnd.ms-azure-apim.swagger.definitions+json" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d5b28d1f7fab116c282650/schemas/59d5b28e1f7fab116402044e", + "type": "Microsoft.ApiManagement/service/apis/schemas", + "name": "59d5b28e1f7fab116402044e", + "properties": { + "contentType": "application/vnd.ms-azure-apim.swagger.definitions+json" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiVersionSets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiVersionSets.json index 1ed88d480671..87cefa3defde 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiVersionSets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApiVersionSets.json @@ -1,37 +1,37 @@ { - "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/api-version-sets/vs1", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs1", - "properties": { - "displayName": "api set 1", - "versioningScheme": "Segment", - "description": "Version configuration" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs2", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs2", - "properties": { - "displayName": "api set 2", - "versioningScheme": "Query", - "description": "Version configuration 2" - } - } - ], - "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/api-version-sets/vs1", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs1", + "properties": { + "displayName": "api set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/vs2", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs2", + "properties": { + "displayName": "api set 2", + "versioningScheme": "Query", + "description": "Version configuration 2" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApis.json index 6bf81a916e82..c798a6d94738 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApis.json @@ -1,81 +1,81 @@ { - "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/apis/a1", - "type": "Microsoft.ApiManagement/service/apis", - "name": "a1", - "properties": { - "displayName": "api1", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "api1", - "protocols": [ - "https" - ], - "isCurrent": true, - "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a73933b8f27f7cc82a2d533", - "type": "Microsoft.ApiManagement/service/apis", - "name": "5a73933b8f27f7cc82a2d533", - "properties": { - "displayName": "api1", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "api1", - "protocols": [ - "https" - ], - "isCurrent": true, - "apiVersion": "v1", - "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", - "type": "Microsoft.ApiManagement/service/apis", - "name": "echo-api", - "properties": { - "displayName": "Echo API", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "echo", - "protocols": [ - "https" - ], - "isCurrent": true - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a7390baa5816a110435aee0", - "type": "Microsoft.ApiManagement/service/apis", - "name": "5a7390baa5816a110435aee0", - "properties": { - "displayName": "Swagger Petstore Extensive", - "apiRevision": "1", - "description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", - "serviceUrl": "http://petstore.swagger.wordnik.com/api", - "path": "vvv", - "protocols": [ - "https" - ], - "isCurrent": true - } - } - ], - "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/apis/a1", + "type": "Microsoft.ApiManagement/service/apis", + "name": "a1", + "properties": { + "displayName": "api1", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "api1", + "protocols": [ + "https" + ], + "isCurrent": true, + "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a73933b8f27f7cc82a2d533", + "type": "Microsoft.ApiManagement/service/apis", + "name": "5a73933b8f27f7cc82a2d533", + "properties": { + "displayName": "api1", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "api1", + "protocols": [ + "https" + ], + "isCurrent": true, + "apiVersion": "v1", + "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/api-version-sets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", + "type": "Microsoft.ApiManagement/service/apis", + "name": "echo-api", + "properties": { + "displayName": "Echo API", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "echo", + "protocols": [ + "https" + ], + "isCurrent": true + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a7390baa5816a110435aee0", + "type": "Microsoft.ApiManagement/service/apis", + "name": "5a7390baa5816a110435aee0", + "properties": { + "displayName": "Swagger Petstore Extensive", + "apiRevision": "1", + "description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", + "serviceUrl": "http://petstore.swagger.wordnik.com/api", + "path": "vvv", + "protocols": [ + "https" + ], + "isCurrent": true + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApisByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApisByTags.json index 539c817345c8..11eb41a64634 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApisByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListApisByTags.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListAuthorizationServers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListAuthorizationServers.json index 32f6682b2be1..2fda2fa943fa 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListAuthorizationServers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListAuthorizationServers.json @@ -1,76 +1,76 @@ { - "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/authorizationServers/newauthServer", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer", - "properties": { - "displayName": "test2", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer2", - "properties": { - "displayName": "test3", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "clientAuthenticationMethod": [ - "Basic" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - } - ], - "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/authorizationServers/newauthServer", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer", + "properties": { + "displayName": "test2", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer2", + "properties": { + "displayName": "test3", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "clientAuthenticationMethod": [ + "Basic" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListBackends.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListBackends.json index 5e9ba93cc8e9..b9fe280c34ea 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListBackends.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListBackends.json @@ -1,80 +1,80 @@ { - "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/backends/proxybackend", - "type": "Microsoft.ApiManagement/service/backends", - "name": "proxybackend", - "properties": { - "description": "description5308", - "url": "https://backendname2644/", - "protocol": "http", - "credentials": { - "query": { - "sv": [ - "xx", - "bb", - "cc" - ] - }, - "header": { - "x-my-1": [ - "val1", - "val2" - ] - }, - "authorization": { - "scheme": "Basic", - "parameter": "opensesma" - } - }, - "proxy": { - "url": "http://192.168.1.1:8080", - "username": "Contoso\\admin", - "password": "opensesame" - }, - "tls": { - "validateCertificateChain": false, - "validateCertificateName": false - } - } - }, + "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/backends/proxybackend", + "type": "Microsoft.ApiManagement/service/backends", + "name": "proxybackend", + "properties": { + "description": "description5308", + "url": "https://backendname2644/", + "protocol": "http", + "credentials": { + "query": { + "sv": [ + "xx", + "bb", + "cc" + ] + }, + "header": { + "x-my-1": [ + "val1", + "val2" + ] + }, + "authorization": { + "scheme": "Basic", + "parameter": "opensesma" + } + }, + "proxy": { + "url": "http://192.168.1.1:8080", + "username": "Contoso\\admin", + "password": "opensesame" + }, + "tls": { + "validateCertificateChain": false, + "validateCertificateName": false + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", + "type": "Microsoft.ApiManagement/service/backends", + "name": "sfbackend", + "properties": { + "description": "Service Fabric Test App 1", + "url": "fabric:/mytestapp/mytestservice", + "protocol": "http", + "properties": { + "serviceFabricCluster": { + "managementEndpoints": [ + "https://somecluster.com" + ], + "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", + "serverX509Names": [ { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", - "type": "Microsoft.ApiManagement/service/backends", - "name": "sfbackend", - "properties": { - "description": "Service Fabric Test App 1", - "url": "fabric:/mytestapp/mytestservice", - "protocol": "http", - "properties": { - "serviceFabricCluster": { - "managementEndpoints": [ - "https://somecluster.com" - ], - "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", - "serverX509Names": [ - { - "name": "ServerCommonName1", - "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" - } - ], - "maxPartitionResolutionRetries": 5 - } - } - } + "name": "ServerCommonName1", + "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" } - ], - "nextLink": "" + ], + "maxPartitionResolutionRetries": 5 + } + } } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListCertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListCertificates.json index 8b264123c44d..7ba9bf87a6cd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListCertificates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListCertificates.json @@ -1,27 +1,27 @@ { - "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/certificates/kjoshiarmtemplateCert1", - "type": "Microsoft.ApiManagement/service/certificates", - "name": "templateCert1", - "properties": { - "subject": "CN=mutual-authcert", - "thumbprint": "EBA************************48594A6", - "expirationDate": "2017-04-23T17:03:41Z" - } - } - ], - "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/certificates/kjoshiarmtemplateCert1", + "type": "Microsoft.ApiManagement/service/certificates", + "name": "templateCert1", + "properties": { + "subject": "CN=mutual-authcert", + "thumbprint": "EBA************************48594A6", + "expirationDate": "2017-04-23T17:03:41Z" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListDiagnosticLoggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListDiagnosticLoggers.json index c49255fb4fc6..a55688cbb257 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListDiagnosticLoggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListDiagnosticLoggers.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "diagnosticId": "default" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", - "type": "Microsoft.ApiManagement/service/diagnostics/loggers", - "name": "applicationinsights", - "properties": { - "loggerType": "applicationInsights", - "description": null, - "credentials": { - "instrumentationKey": "{{5a.......2a}}" - }, - "isBuffered": false - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "diagnosticId": "default" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/diagnostics/default/loggers/applicationinsights", + "type": "Microsoft.ApiManagement/service/diagnostics/loggers", + "name": "applicationinsights", + "properties": { + "loggerType": "applicationInsights", + "description": null, + "credentials": { + "instrumentationKey": "{{5a.......2a}}" + }, + "isBuffered": false } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListDiagnostics.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListDiagnostics.json index f462342409c2..1f720c78d579 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListDiagnostics.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListDiagnostics.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/diagnostics/default", - "type": "Microsoft.ApiManagement/service/diagnostics", - "name": "default", - "properties": { - "enabled": false - } - } - ], - "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/diagnostics/default", + "type": "Microsoft.ApiManagement/service/diagnostics", + "name": "default", + "properties": { + "enabled": false } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListEmailTemplates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListEmailTemplates.json index 3207eeada154..54e936bd5fa6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListEmailTemplates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListEmailTemplates.json @@ -1,55 +1,55 @@ { - "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\n \r\n \r\n

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\n

Best,

\r\n

The $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\n \r\n \r\n

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\n

Best,

\r\n

The $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\n\r\n \r\n \r\n \r\n \r\n \r\n" - } - } - ], - "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/policies/policy", + "type": "Microsoft.ApiManagement/service/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListPolicySnippets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListPolicySnippets.json index 8d1a9176e8b4..a78e72b4548e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListPolicySnippets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListPolicySnippets.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "scope":"Api" - }, - "responses": { - "200": { - "body": [ - { - "name": "Authenticate with Basic", - "content": "", - "toolTip": "Authenticate with the backend service using Basic authentication. Use in the inbound section at API scope.", - "scope": 268435471 - } - ] + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "scope": "Api" + }, + "responses": { + "200": { + "body": [ + { + "name": "Authenticate with Basic", + "content": "", + "toolTip": "Authenticate with the backend service using Basic authentication. Use in the inbound section at API scope.", + "scope": 268435471 } + ] } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductApis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductApis.json index 1033fcc757b5..2ecccd2d9f04 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductApis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductApis.json @@ -1,34 +1,34 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "productId": "5768181ea40f7eb6c49f6ac7" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7/apis/57681820a40f7eb6c49f6aca", - "type": "Microsoft.ApiManagement/service/products/apis", - "name": "57681820a40f7eb6c49f6aca", - "properties": { - "displayName": "api_57681820a40f7eb6c49f6acb", - "apiRevision": "1", - "description": "description_57681820a40f7eb6c49f6acc", - "serviceUrl": "http://contoso/57681820a40f7eb6c49f6acd", - "path": "suffix_57681820a40f7eb6c49f6ace", - "protocols": [ - "https" - ], - "isCurrent": true - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "productId": "5768181ea40f7eb6c49f6ac7" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7/apis/57681820a40f7eb6c49f6aca", + "type": "Microsoft.ApiManagement/service/products/apis", + "name": "57681820a40f7eb6c49f6aca", + "properties": { + "displayName": "api_57681820a40f7eb6c49f6acb", + "apiRevision": "1", + "description": "description_57681820a40f7eb6c49f6acc", + "serviceUrl": "http://contoso/57681820a40f7eb6c49f6acd", + "path": "suffix_57681820a40f7eb6c49f6ace", + "protocols": [ + "https" + ], + "isCurrent": true } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductGroups.json index 26a134dd913e..8263f73332bf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductGroups.json @@ -1,51 +1,51 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "productId": "5600b57e7e8880006a060002" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020001", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020001", - "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020002", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020002", - "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020003", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020003", - "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", + "productId": "5600b57e7e8880006a060002" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020001", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020001", + "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020002", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020002", + "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020003", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020003", + "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/ApiManagementListProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductPolicy.json index 0934eb5f21da..fd1b486c2852 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductPolicy.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "productId": "armTemplateProduct4" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/armTemplateProduct4/policies/policy", - "type": "Microsoft.ApiManagement/service/products/policies", - "name": "policy", - "properties": { - "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "productId": "armTemplateProduct4" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/armTemplateProduct4/policies/policy", + "type": "Microsoft.ApiManagement/service/products/policies", + "name": "policy", + "properties": { + "policyContent": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductSubscriptions.json index 90cbe9be32fd..a65ae61feca5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProductSubscriptions.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "productId": "5600b57e7e8880006a060002" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/subscriptions/5600b57e7e8880006a070002", - "type": "Microsoft.ApiManagement/service/products/subscriptions", - "name": "5600b57e7e8880006a070002", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002", - "state": "active", - "createdDate": "2015-09-22T01:57:18.723Z", - "primaryKey": "ba95768e868648848e215f0290eec023", - "secondaryKey": "140f866def81419b9bb9732d05d24535" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "productId": "5600b57e7e8880006a060002" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/subscriptions/5600b57e7e8880006a070002", + "type": "Microsoft.ApiManagement/service/products/subscriptions", + "name": "5600b57e7e8880006a070002", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002", + "state": "active", + "createdDate": "2015-09-22T01:57:18.723Z", + "primaryKey": "ba95768e868648848e215f0290eec023", + "secondaryKey": "140f866def81419b9bb9732d05d24535" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProducts.json index 3970d938f8a2..c8e93496193b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProducts.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProducts.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/products/kjoshiarmtemplateCert1", - "type": "Microsoft.ApiManagement/service/products", - "name": "kjoshiarmtemplateCert1", - "properties": { - "displayName": "Dev", - "description": "Development Product", - "subscriptionRequired": false, - "state": "published" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/starter", - "type": "Microsoft.ApiManagement/service/products", - "name": "starter", - "properties": { - "displayName": "Starter", - "description": "Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.", - "terms": "", - "subscriptionRequired": true, - "approvalRequired": false, - "subscriptionsLimit": 1, - "state": "published" - } - }, - { - "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" - } - } - ], - "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/products/kjoshiarmtemplateCert1", + "type": "Microsoft.ApiManagement/service/products", + "name": "kjoshiarmtemplateCert1", + "properties": { + "displayName": "Dev", + "description": "Development Product", + "subscriptionRequired": false, + "state": "published" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/starter", + "type": "Microsoft.ApiManagement/service/products", + "name": "starter", + "properties": { + "displayName": "Starter", + "description": "Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.", + "terms": "", + "subscriptionRequired": true, + "approvalRequired": false, + "subscriptionsLimit": 1, + "state": "published" + } + }, + { + "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" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProperties.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProperties.json index c212734e64ca..3f239634fe0e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProperties.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListProperties.json @@ -1,41 +1,41 @@ { - "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/properties/592f1174cc83890dc4f32686", - "type": "Microsoft.ApiManagement/service/properties", - "name": "592f1174cc83890dc4f32686", - "properties": { - "displayName": "Logger-Credentials-592f1174cc83890dc4f32687", - "value": "Endpoint=sb://testtemplatetesteh.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=...", - "secret": true - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", - "type": "Microsoft.ApiManagement/service/properties", - "name": "testarmTemplateproperties2", - "properties": { - "displayName": "propName", - "value": "propValue", - "tags": [ - "foo", - "bar" - ], - "secret": false - } - } - ], - "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/properties/592f1174cc83890dc4f32686", + "type": "Microsoft.ApiManagement/service/properties", + "name": "592f1174cc83890dc4f32686", + "properties": { + "displayName": "Logger-Credentials-592f1174cc83890dc4f32687", + "value": "Endpoint=sb://testtemplatetesteh.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=...", + "secret": true } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", + "type": "Microsoft.ApiManagement/service/properties", + "name": "testarmTemplateproperties2", + "properties": { + "displayName": "propName", + "value": "propValue", + "tags": [ + "foo", + "bar" + ], + "secret": false + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListRegions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListRegions.json index ff9f4d6a1585..6428e0665d47 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListRegions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListRegions.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "West US", - "isMasterRegion": true, - "isDeleted": false - } - ], - "count": 1, - "nextLink": "" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "West US", + "isMasterRegion": true, + "isDeleted": false + } + ], + "count": 1, + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListSKUs.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListSKUs.json index 0fbbf306b526..92f7d4fa8e64 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListSKUs.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListSKUs.json @@ -1,65 +1,65 @@ { - "parameters": { - "api-version": "2018-01-01", - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Developer" - }, - "capacity": { - "minimum": 1, - "maximum": 1, - "default": 1, - "scaleType": "none" - } - }, - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Basic" - }, - "capacity": { - "minimum": 1, - "maximum": 2, - "default": 1, - "scaleType": "manual" - } - }, - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Standard" - }, - "capacity": { - "minimum": 1, - "maximum": 4, - "default": 1, - "scaleType": "automatic" - } - }, - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Premium" - }, - "capacity": { - "minimum": 1, - "maximum": 10, - "default": 1, - "scaleType": "automatic" - } - } - ], - "nextLink": null - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2018-01-01", + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Developer" + }, + "capacity": { + "minimum": 1, + "maximum": 1, + "default": 1, + "scaleType": "none" + } + }, + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Basic" + }, + "capacity": { + "minimum": 1, + "maximum": 2, + "default": 1, + "scaleType": "manual" + } + }, + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Standard" + }, + "capacity": { + "minimum": 1, + "maximum": 4, + "default": 1, + "scaleType": "automatic" + } + }, + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Premium" + }, + "capacity": { + "minimum": 1, + "maximum": 10, + "default": 1, + "scaleType": "automatic" + } + } + ], + "nextLink": null + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListServiceBySubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListServiceBySubscription.json index e47bdd7b5281..587af76ddac5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListServiceBySubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListServiceBySubscription.json @@ -1,164 +1,164 @@ { - "parameters": { - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", - "name": "apimService3", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXXAQ=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-27T15:33:55.5426123Z", - "gatewayUrl": "https://apimService3.azure-api.net", - "portalUrl": "https://apimService3.portal.azure-api.net", - "managementApiUrl": "https://apimService3.management.azure-api.net", - "scmUrl": "https://apimService3.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.88.16.64" - ], - "additionalLocations": [ - { - "location": "West Europe", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "52.233.184.197" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.ApiManagement/service/apimService2", - "name": "apimService2", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW4U=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "MS", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T23:55:31.1405115Z", - "gatewayUrl": "https://apimService2.azure-api.net", - "portalUrl": "https://apimService2.portal.azure-api.net", - "managementApiUrl": "https://apimService2.management.azure-api.net", - "scmUrl": "https://apimService2.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.64.237.151" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Developer", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", - "name": "apimService5", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW5c=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T18:13:02.0196315Z", - "gatewayUrl": "https://apimService5.azure-api.net", - "portalUrl": "https://apimService5.portal.azure-api.net", - "managementApiUrl": "https://apimService5.management.azure-api.net", - "scmUrl": "https://apimService5.scm.azure-api.net", - "hostnameConfigurations": [ - { - "type": "Proxy", - "hostName": "proxytemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname1.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname2.contoso.com", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname2.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname3.azure-api.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname3.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname4.azure-api.net", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname4.contoso.com" - } - }, - { - "type": "Portal", - "hostName": "portaltemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=portaltemplatehostname1.contoso.com" - } - } - ], - "publicIPAddresses": [ - "13.93.167.166" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - } - ] + "parameters": { + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", + "name": "apimService3", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXXAQ=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-27T15:33:55.5426123Z", + "gatewayUrl": "https://apimService3.azure-api.net", + "portalUrl": "https://apimService3.portal.azure-api.net", + "managementApiUrl": "https://apimService3.management.azure-api.net", + "scmUrl": "https://apimService3.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.88.16.64" + ], + "additionalLocations": [ + { + "location": "West Europe", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "52.233.184.197" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.ApiManagement/service/apimService2", + "name": "apimService2", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW4U=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "MS", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T23:55:31.1405115Z", + "gatewayUrl": "https://apimService2.azure-api.net", + "portalUrl": "https://apimService2.portal.azure-api.net", + "managementApiUrl": "https://apimService2.management.azure-api.net", + "scmUrl": "https://apimService2.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.64.237.151" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Developer", + "capacity": 1 + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", + "name": "apimService5", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW5c=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T18:13:02.0196315Z", + "gatewayUrl": "https://apimService5.azure-api.net", + "portalUrl": "https://apimService5.portal.azure-api.net", + "managementApiUrl": "https://apimService5.management.azure-api.net", + "scmUrl": "https://apimService5.scm.azure-api.net", + "hostnameConfigurations": [ + { + "type": "Proxy", + "hostName": "proxytemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname1.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname2.contoso.com", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname2.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname3.azure-api.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname3.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname4.azure-api.net", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname4.contoso.com" + } + }, + { + "type": "Portal", + "hostName": "portaltemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=portaltemplatehostname1.contoso.com" + } + } + ], + "publicIPAddresses": [ + "13.93.167.166" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json index 93d441a7fe4c..f2e71dabfafb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json @@ -1,162 +1,162 @@ { - "parameters": { - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", - "name": "apimService3", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXXAQ=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-27T15:33:55.5426123Z", - "gatewayUrl": "https://apimService3.azure-api.net", - "portalUrl": "https://apimService3.portal.azure-api.net", - "managementApiUrl": "https://apimService3.management.azure-api.net", - "scmUrl": "https://apimService3.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.88.16.64" - ], - "additionalLocations": [ - { - "location": "West Europe", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "52.233.184.197" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService2", - "name": "apimService2", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW4U=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "MS", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T23:55:31.1405115Z", - "gatewayUrl": "https://apimService2.azure-api.net", - "portalUrl": "https://apimService2.portal.azure-api.net", - "managementApiUrl": "https://apimService2.management.azure-api.net", - "scmUrl": "https://apimService2.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.64.237.151" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Developer", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", - "name": "apimService5", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW5c=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T18:13:02.0196315Z", - "gatewayUrl": "https://apimService5.azure-api.net", - "portalUrl": "https://apimService5.portal.azure-api.net", - "managementApiUrl": "https://apimService5.management.azure-api.net", - "scmUrl": "https://apimService5.scm.azure-api.net", - "hostnameConfigurations": [ - { - "type": "Proxy", - "hostName": "proxytemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname1.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname2.contoso.com", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname2.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname3.azure-api.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname3.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname4.azure-api.net", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname4.contoso.com" - } - }, - { - "type": "Portal", - "hostName": "portaltemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=portaltemplatehostname1.contoso.com" - } - } - ], - "publicIPAddresses": [ - "13.93.167.166" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - } - ] + "parameters": { + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", + "name": "apimService3", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXXAQ=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-27T15:33:55.5426123Z", + "gatewayUrl": "https://apimService3.azure-api.net", + "portalUrl": "https://apimService3.portal.azure-api.net", + "managementApiUrl": "https://apimService3.management.azure-api.net", + "scmUrl": "https://apimService3.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.88.16.64" + ], + "additionalLocations": [ + { + "location": "West Europe", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "52.233.184.197" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService2", + "name": "apimService2", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW4U=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "MS", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T23:55:31.1405115Z", + "gatewayUrl": "https://apimService2.azure-api.net", + "portalUrl": "https://apimService2.portal.azure-api.net", + "managementApiUrl": "https://apimService2.management.azure-api.net", + "scmUrl": "https://apimService2.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.64.237.151" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Developer", + "capacity": 1 + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", + "name": "apimService5", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW5c=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T18:13:02.0196315Z", + "gatewayUrl": "https://apimService5.azure-api.net", + "portalUrl": "https://apimService5.portal.azure-api.net", + "managementApiUrl": "https://apimService5.management.azure-api.net", + "scmUrl": "https://apimService5.scm.azure-api.net", + "hostnameConfigurations": [ + { + "type": "Proxy", + "hostName": "proxytemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname1.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname2.contoso.com", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname2.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname3.azure-api.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname3.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname4.azure-api.net", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname4.contoso.com" + } + }, + { + "type": "Portal", + "hostName": "portaltemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=portaltemplatehostname1.contoso.com" + } + } + ], + "publicIPAddresses": [ + "13.93.167.166" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListSubscriptions.json index 18bc02f746d7..0d0251b06bf6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListSubscriptions.json @@ -1,61 +1,61 @@ { - "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/subscriptions/5600b59475ff190048070001", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5600b59475ff190048070001", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", - "state": "active", - "createdDate": "2015-09-22T01:57:40.3Z", - "primaryKey": "a24782fc06f648cbb1c3406c41dc9a3a", - "secondaryKey": "b366198986614a7497a5a68fae19119d" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/56eaed3dbaf08b06e46d27fe", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "56eaed3dbaf08b06e46d27fe", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", - "displayName": "Starter", - "state": "active", - "createdDate": "2016-03-17T17:45:33.837Z", - "startDate": "2016-03-17T00:00:00Z", - "expirationDate": "2016-04-01T00:00:00Z", - "notificationDate": "2016-03-20T00:00:00Z", - "primaryKey": "77708695e79a495bb99b95f32adfa1f0", - "secondaryKey": "12e2e4ba857e420b88450dc8fe2a6cf9" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5931a769d8d14f0ad8ce13b8", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", - "displayName": "Unlimited", - "state": "submitted", - "createdDate": "2017-06-02T17:59:06.223Z", - "primaryKey": "6de0a3b2da204e459148d2f6785873f0", - "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" - } - } - ], - "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/subscriptions/5600b59475ff190048070001", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5600b59475ff190048070001", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", + "state": "active", + "createdDate": "2015-09-22T01:57:40.3Z", + "primaryKey": "a24782fc06f648cbb1c3406c41dc9a3a", + "secondaryKey": "b366198986614a7497a5a68fae19119d" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/56eaed3dbaf08b06e46d27fe", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "56eaed3dbaf08b06e46d27fe", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", + "displayName": "Starter", + "state": "active", + "createdDate": "2016-03-17T17:45:33.837Z", + "startDate": "2016-03-17T00:00:00Z", + "expirationDate": "2016-04-01T00:00:00Z", + "notificationDate": "2016-03-20T00:00:00Z", + "primaryKey": "77708695e79a495bb99b95f32adfa1f0", + "secondaryKey": "12e2e4ba857e420b88450dc8fe2a6cf9" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5931a769d8d14f0ad8ce13b8", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", + "displayName": "Unlimited", + "state": "submitted", + "createdDate": "2017-06-02T17:59:06.223Z", + "primaryKey": "6de0a3b2da204e459148d2f6785873f0", + "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListTagResources.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListTagResources.json index 3f0de3338034..0ef8477bed1a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListTagResources.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListTagResources.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListTags.json index 31c9a1091476..16cbc98a66fd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListTags.json @@ -1,33 +1,33 @@ { - "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/tags/5600b59375ff190048020001", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b59375ff190048020001", - "properties": { - "displayName": "tag1" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b59375ff190048020002", - "properties": { - "displayName": "tag2" - } - } - ], - "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/tags/5600b59375ff190048020001", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b59375ff190048020001", + "properties": { + "displayName": "tag1" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b59375ff190048020002", + "properties": { + "displayName": "tag2" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUserGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUserGroups.json index 759acc9d9e37..d2604a5066ab 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUserGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUserGroups.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "uid": "57681833a40f7eb6c49f6acf" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/groups/5600b57e7e8880006a020002", - "type": "Microsoft.ApiManagement/service/users/groups", - "name": "5600b57e7e8880006a020002", - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "uid": "57681833a40f7eb6c49f6acf" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/groups/5600b57e7e8880006a020002", + "type": "Microsoft.ApiManagement/service/users/groups", + "name": "5600b57e7e8880006a020002", + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUserSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUserSubscriptions.json index 0a6bd06366ec..8a247ed0c036 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUserSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUserSubscriptions.json @@ -1,48 +1,48 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "uid": "57681833a40f7eb6c49f6acf" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6ae3", - "type": "Microsoft.ApiManagement/service/users/subscriptions", - "name": "57681850a40f7eb6c49f6ae3", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", - "displayName": "57681850a40f7eb6c49f6ae5", - "state": "active", - "createdDate": "2016-06-20T16:22:39.547Z", - "startDate": "2016-06-20T00:00:00Z", - "primaryKey": "57681850a40f7eb6c49f6ae4", - "secondaryKey": "bbd884a96b3c41b49f34422dac74b345" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6b2b", - "type": "Microsoft.ApiManagement/service/users/subscriptions", - "name": "57681850a40f7eb6c49f6b2b", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", - "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", - "displayName": "57681850a40f7eb6c49f6b2d", - "state": "active", - "createdDate": "2016-06-20T16:22:41.103Z", - "startDate": "2016-06-20T00:00:00Z", - "primaryKey": "57681850a40f7eb6c49f6b2c", - "secondaryKey": "125f565d276647dc825d7f25ea40ee57" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "uid": "57681833a40f7eb6c49f6acf" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6ae3", + "type": "Microsoft.ApiManagement/service/users/subscriptions", + "name": "57681850a40f7eb6c49f6ae3", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", + "displayName": "57681850a40f7eb6c49f6ae5", + "state": "active", + "createdDate": "2016-06-20T16:22:39.547Z", + "startDate": "2016-06-20T00:00:00Z", + "primaryKey": "57681850a40f7eb6c49f6ae4", + "secondaryKey": "bbd884a96b3c41b49f34422dac74b345" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6b2b", + "type": "Microsoft.ApiManagement/service/users/subscriptions", + "name": "57681850a40f7eb6c49f6b2b", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", + "productId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", + "displayName": "57681850a40f7eb6c49f6b2d", + "state": "active", + "createdDate": "2016-06-20T16:22:41.103Z", + "startDate": "2016-06-20T00:00:00Z", + "primaryKey": "57681850a40f7eb6c49f6b2c", + "secondaryKey": "125f565d276647dc825d7f25ea40ee57" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUsers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUsers.json index 0a2eba2fd34f..8ae3fea99e7b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUsers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUsers.json @@ -1,71 +1,71 @@ { - "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/users/1", - "type": "Microsoft.ApiManagement/service/users", - "name": "1", - "properties": { - "firstName": "Administrator", - "lastName": "", - "email": "admin@live.com", - "state": "active", - "registrationDate": "2015-09-22T01:57:39.677Z", - "identities": [ - { - "provider": "Azure", - "id": "admin@live.com" - } - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", - "type": "Microsoft.ApiManagement/service/users", - "name": "56eaec62baf08b06e46d27fd", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foo.bar.83@gmail.com", - "state": "active", - "registrationDate": "2016-03-17T17:41:56.327Z", - "identities": [ - { - "provider": "Basic", - "id": "foo.bar.83@gmail.com" - } - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "type": "Microsoft.ApiManagement/service/users", - "name": "5931a75ae4bbd512a88c680b", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foobar@outlook.com", - "state": "active", - "registrationDate": "2017-06-02T17:58:50.357Z", - "identities": [ - { - "provider": "Microsoft", - "id": "*************" - } - ] - } - } - ], - "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/users/1", + "type": "Microsoft.ApiManagement/service/users", + "name": "1", + "properties": { + "firstName": "Administrator", + "lastName": "", + "email": "admin@live.com", + "state": "active", + "registrationDate": "2015-09-22T01:57:39.677Z", + "identities": [ + { + "provider": "Azure", + "id": "admin@live.com" + } + ] } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", + "type": "Microsoft.ApiManagement/service/users", + "name": "56eaec62baf08b06e46d27fd", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foo.bar.83@gmail.com", + "state": "active", + "registrationDate": "2016-03-17T17:41:56.327Z", + "identities": [ + { + "provider": "Basic", + "id": "foo.bar.83@gmail.com" + } + ] + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "type": "Microsoft.ApiManagement/service/users", + "name": "5931a75ae4bbd512a88c680b", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foobar@outlook.com", + "state": "active", + "registrationDate": "2017-06-02T17:58:50.357Z", + "identities": [ + { + "provider": "Microsoft", + "id": "*************" + } + ] + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUsersIdentities.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUsersIdentities.json index 3fbd9bb6a648..a9e5973ad7b9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUsersIdentities.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListUsersIdentities.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/ApiManagementPortalSettingsGetDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetDelegation.json index b4decdcdaf60..eb0bdb9cc608 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetDelegation.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/delegation", - "type": "Microsoft.ApiManagement/service/portalsettings", - "name": "delegation", - "properties": { - "url": "http://contoso.com/delegation", - "validationKey": "nVF7aKIvr9mV/RM5lOD0sYoi8ThXTRHQP7o66hvUmjCDkPKR3qxPu/otJcNciz2aQdqPuzJH3ECG4TU2yZjQ7Q==", - "subscriptions": { - "enabled": true - }, - "userRegistration": { - "enabled": true - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/delegation", + "type": "Microsoft.ApiManagement/service/portalsettings", + "name": "delegation", + "properties": { + "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/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetSignIn.json index a38bcb01748b..4724c98890ac 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetSignIn.json @@ -1,20 +1,20 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signin", - "type": "Microsoft.ApiManagement/service/portalsettings", - "name": "signin", - "properties": { - "enabled": true - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signin", + "type": "Microsoft.ApiManagement/service/portalsettings", + "name": "signin", + "properties": { + "enabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetSignUp.json index 6112aa83e05b..40e1f06b719d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsGetSignUp.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signup", - "type": "Microsoft.ApiManagement/service/portalsettings", - "name": "signup", - "properties": { - "enabled": true, - "termsOfService": { - "text": "Terms of service text.", - "enabled": true, - "consentRequired": true - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signup", + "type": "Microsoft.ApiManagement/service/portalsettings", + "name": "signup", + "properties": { + "enabled": true, + "termsOfService": { + "text": "Terms of service text.", + "enabled": true, + "consentRequired": true + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutDelegation.json index c1e1bac8fea9..41c1f28ff22e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutDelegation.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutSignIn.json index bbc2e03f6994..cf20c5426dea 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutSignIn.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutSignUp.json index c084783d0d95..d711dc32590e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsPutSignUp.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateDelegation.json index 50e070bfac62..a80f1bacdc0d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateDelegation.json @@ -22,4 +22,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateSignIn.json index f94ebc6fb5af..8b2c1e5601f6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateSignIn.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateSignUp.json index 99fd0ae11700..ed3ebedc79a4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementPortalSettingsUpdateSignUp.json @@ -20,4 +20,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementRestoreService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementRestoreService.json index f180ac71b7a8..0569ac128560 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementRestoreService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementRestoreService.json @@ -1,53 +1,53 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "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-01-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2018-01-01" - } + "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/stable/2018-01-01/examples/ApiManagementServiceCheckNameAvailability.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceCheckNameAvailability.json index c5a9b02dd6a6..fb9f0c9e4339 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceCheckNameAvailability.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceCheckNameAvailability.json @@ -4,7 +4,7 @@ "api-version": "2018-01-01", "subscriptionId": "subid", "parameters": { - "name" : "apimService1" + "name": "apimService1" } }, "responses": { @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceDeleteService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceDeleteService.json index a9c35c7e215d..efe280ec7c7b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceDeleteService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceDeleteService.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetMultiRegionInternalVnet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetMultiRegionInternalVnet.json index 89fdc3b153a1..90808d365f59 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetMultiRegionInternalVnet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetMultiRegionInternalVnet.json @@ -1,88 +1,88 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimservice1", - "name": "apimservice1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAADqC0c=", - "properties": { - "publisherEmail": "abcs@contoso.com", - "publisherName": "contoso publisher", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2018-02-02T01:42:09.1268424Z", - "gatewayUrl": "https://apimservice1.azure-api.net", - "gatewayRegionalUrl": "https://apimservice1-westus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "apimgatewaytest.preview.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2019-08-16T16:51:34+00:00", - "thumbprint": "B4330123DBAXXXXXXXXX1F35E84493476", - "subject": "CN=*.preview.net" - }, - "defaultSslBinding": true - } - ], - "publicIPAddresses": [ - "137.XXX.11.74" - ], - "privateIPAddresses": [ - "172.XX.0.5" - ], - "additionalLocations": [ - { - "location": "West US 2", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "40.XXX.79.187" - ], - "privateIPAddresses": [ - "10.0.X.6" - ], - "virtualNetworkConfiguration": { - "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/APIMVNet/subnets/apim-internal-sub" - }, - "gatewayRegionalUrl": "https://apimservice1-westus2-01.regional.azure-api.net" - } - ], - "virtualNetworkConfiguration": { - "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/apim-appGateway-vnet/subnets/apim-subnet" - }, - "customProperties": { - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30": "False", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30": "False" - }, - "virtualNetworkType": "Internal" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimservice1", + "name": "apimservice1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAADqC0c=", + "properties": { + "publisherEmail": "abcs@contoso.com", + "publisherName": "contoso publisher", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2018-02-02T01:42:09.1268424Z", + "gatewayUrl": "https://apimservice1.azure-api.net", + "gatewayRegionalUrl": "https://apimservice1-westus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "apimgatewaytest.preview.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2019-08-16T16:51:34+00:00", + "thumbprint": "B4330123DBAXXXXXXXXX1F35E84493476", + "subject": "CN=*.preview.net" + }, + "defaultSslBinding": true } + ], + "publicIPAddresses": [ + "137.XXX.11.74" + ], + "privateIPAddresses": [ + "172.XX.0.5" + ], + "additionalLocations": [ + { + "location": "West US 2", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "40.XXX.79.187" + ], + "privateIPAddresses": [ + "10.0.X.6" + ], + "virtualNetworkConfiguration": { + "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/APIMVNet/subnets/apim-internal-sub" + }, + "gatewayRegionalUrl": "https://apimservice1-westus2-01.regional.azure-api.net" + } + ], + "virtualNetworkConfiguration": { + "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/apim-appGateway-vnet/subnets/apim-subnet" + }, + "customProperties": { + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30": "False", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30": "False" + }, + "virtualNetworkType": "Internal" + }, + "sku": { + "name": "Premium", + "capacity": 1 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetNetworkStatus.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetNetworkStatus.json index fc0fb1304d1d..b6e85776b04e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetNetworkStatus.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetNetworkStatus.json @@ -108,4 +108,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json index f0a9b125ff0c..b0916124a392 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetService.json index a60eb0411a01..6e9b7c091f1a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetService.json @@ -1,89 +1,89 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "Central US", - "etag": "AAAAAAAYP5M=", - "properties": { - "publisherEmail": "contoso@microsoft.com", - "publisherName": "admin", - "notificationSenderEmail": "contoso@live.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-06-28T23:01:33.0667959Z", - "gatewayUrl": "https://apimService1.azure-api.net", - "gatewayRegionalUrl": "https://apimService1-centralus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "proxyhostname4.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Proxy", - "hostName": "proxyhostname9.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Portal", - "hostName": "portalhostname2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - } - ], - "publicIPAddresses": [ - "52.173.22.222" - ], - "additionalLocations": [ - { - "location": "West US", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "40.78.99.244" - ], - "gatewayRegionalUrl": "https://apimService1-westus-01.regional.azure-api.net" - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "Central US", + "etag": "AAAAAAAYP5M=", + "properties": { + "publisherEmail": "contoso@microsoft.com", + "publisherName": "admin", + "notificationSenderEmail": "contoso@live.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-06-28T23:01:33.0667959Z", + "gatewayUrl": "https://apimService1.azure-api.net", + "gatewayRegionalUrl": "https://apimService1-centralus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "proxyhostname4.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Proxy", + "hostName": "proxyhostname9.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Portal", + "hostName": "portalhostname2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } } + ], + "publicIPAddresses": [ + "52.173.22.222" + ], + "additionalLocations": [ + { + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "40.78.99.244" + ], + "gatewayRegionalUrl": "https://apimService1-westus-01.regional.azure-api.net" + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetServiceHavingMsi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetServiceHavingMsi.json index bea2e0dd5eb8..5da055aa7e65 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetServiceHavingMsi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetServiceHavingMsi.json @@ -1,58 +1,58 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAC2jkE=", - "properties": { - "publisherEmail": "admin@contoso.com", - "publisherName": "Contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "createdAtUtc": "2017-10-13T16:56:47.0174063Z", - "gatewayUrl": "https://apimService1.azure-api.net", - "gatewayRegionalUrl": "https://apimService1-westus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "foobar.msitesting.net", - "keyVaultId": "https://constoso-msi-keyvault.vault.azure.net/secrets/msitestingCert", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2036-01-01T07:00:00+00:00", - "thumbprint": "8E98XXX52CAXXXXXXX2C91F1D174FDB3A2", - "subject": "CN=*.msitesting.net" - }, - "defaultSslBinding": true - } - ], - "publicIPAddresses": [ - "13.xx.76.xxx" - ] - }, - "sku": { - "name": "Developer", - "capacity": 1 - }, - "identity": { - "type": "SystemAssigned", - "principalId": "ae7d906a-xxx-408a-xxxx-6b9d60e5756b", - "tenantId": "72f988bf-xxx-41af-xxxx-2d7cd011db47" - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAC2jkE=", + "properties": { + "publisherEmail": "admin@contoso.com", + "publisherName": "Contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "createdAtUtc": "2017-10-13T16:56:47.0174063Z", + "gatewayUrl": "https://apimService1.azure-api.net", + "gatewayRegionalUrl": "https://apimService1-westus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "foobar.msitesting.net", + "keyVaultId": "https://constoso-msi-keyvault.vault.azure.net/secrets/msitestingCert", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2036-01-01T07:00:00+00:00", + "thumbprint": "8E98XXX52CAXXXXXXX2C91F1D174FDB3A2", + "subject": "CN=*.msitesting.net" + }, + "defaultSslBinding": true } + ], + "publicIPAddresses": [ + "13.xx.76.xxx" + ] + }, + "sku": { + "name": "Developer", + "capacity": 1 + }, + "identity": { + "type": "SystemAssigned", + "principalId": "ae7d906a-xxx-408a-xxxx-6b9d60e5756b", + "tenantId": "72f988bf-xxx-41af-xxxx-2d7cd011db47" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetSsoToken.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetSsoToken.json index 49e0e4d4af79..cdbd19169486 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetSsoToken.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceGetSsoToken.json @@ -12,4 +12,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceUpdateHostName.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceUpdateHostName.json index 22fa05eb51e9..fbdabf987ffc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceUpdateHostName.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceUpdateHostName.json @@ -1,183 +1,183 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "parameters": { - "update": [ - { - "type": "Proxy", - "hostname": "internalproxy2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Portal", - "hostname": "internalportal2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Management", - "hostname": "internalmgmt2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - }, - { - "type": "Scm", - "hostname": "internalscm2.contoso.com", - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.com" - } - } - ] + "update": [ + { + "type": "Proxy", + "hostname": "internalproxy2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Portal", + "hostname": "internalportal2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Management", + "hostname": "internalmgmt2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } + }, + { + "type": "Scm", + "hostname": "internalscm2.contoso.com", + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.com" + } } + ] + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + }, + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "Central US", + "etag": "AAAAAAAYP5M=", + "properties": { + "publisherEmail": "contoso@microsoft.com", + "publisherName": "admin", + "notificationSenderEmail": "contoso@live.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-06-28T23:01:33.0667959Z", + "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", + "publicIPAddresses": [ + "52.173.22.222" + ], + "additionalLocations": [ + { + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "40.78.99.244" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 + } + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2016-10-10" + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "Central US", + "etag": "AAAAAAAYP5M=", + "properties": { + "publisherEmail": "contoso@microsoft.com", + "publisherName": "admin", + "notificationSenderEmail": "contoso@live.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-06-28T23:01:33.0667959Z", + "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": [ + { + "type": "Proxy", + "hostName": "internalproxy2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Portal", + "hostName": "internalportal2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Management", + "hostName": "internalmgmt2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } }, - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "Central US", - "etag": "AAAAAAAYP5M=", - "properties": { - "publisherEmail": "contoso@microsoft.com", - "publisherName": "admin", - "notificationSenderEmail": "contoso@live.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-06-28T23:01:33.0667959Z", - "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", - "publicIPAddresses": [ - "52.173.22.222" - ], - "additionalLocations": [ - { - "location": "West US", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "40.78.99.244" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + { + "type": "Scm", + "hostName": "internalscm2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "subject": "CN=*.contoso.net" + } } - }, - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "Central US", - "etag": "AAAAAAAYP5M=", - "properties": { - "publisherEmail": "contoso@microsoft.com", - "publisherName": "admin", - "notificationSenderEmail": "contoso@live.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-06-28T23:01:33.0667959Z", - "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": [ - { - "type": "Proxy", - "hostName": "internalproxy2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Portal", - "hostName": "internalportal2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Management", - "hostName": "internalmgmt2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Scm", - "hostName": "internalscm2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "subject": "CN=*.contoso.net" - } - } - ], - "publicIPAddresses": [ - "52.173.22.222" - ], - "additionalLocations": [ - { - "location": "West US", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "40.78.99.244" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + ], + "publicIPAddresses": [ + "52.173.22.222" + ], + "additionalLocations": [ + { + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "40.78.99.244" + ] } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceUploadProxyCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceUploadProxyCertificate.json index 0f9f2081dad8..73b40fbedfb4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceUploadProxyCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementServiceUploadProxyCertificate.json @@ -5,9 +5,9 @@ "api-version": "2018-01-01", "subscriptionId": "subid", "parameters": { - "type" : "Proxy", - "certificate" : "MIIZ7wI************************************************************", - "certificate_password": "******" + "type": "Proxy", + "certificate": "MIIZ7wI************************************************************", + "certificate_password": "******" } }, "responses": { @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementSubscriptionRegenerateKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementSubscriptionRegenerateKey.json index 4359afaf60b2..76476380ea51 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementSubscriptionRegenerateKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementSubscriptionRegenerateKey.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "sid": "testsub" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "sid": "testsub" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantAccessRegenerateKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantAccessRegenerateKey.json index 9fc7399ee88a..80aab0610477 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantAccessRegenerateKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantAccessRegenerateKey.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "accessName": "access" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "accessName": "access" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantAccessSyncState.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantAccessSyncState.json index 52c2d5fa7d85..4c29b2ea8f3c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantAccessSyncState.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantAccessSyncState.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "configurationName": "configuration" - }, - "responses": { - "200": { - "body": { - "branch": "master", - "commitId": "44c29c27a876372e2ea18d9c381cc493a6a89fc5", - "isExport": true, - "isSynced": false, - "isGitEnabled": true, - "syncDate": "2016-10-24T19:17:14.3641403Z", - "configurationChangeDate": "2017-06-03T00:41:30.9670873Z" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "configurationName": "configuration" + }, + "responses": { + "200": { + "body": { + "branch": "master", + "commitId": "44c29c27a876372e2ea18d9c381cc493a6a89fc5", + "isExport": true, + "isSynced": false, + "isGitEnabled": true, + "syncDate": "2016-10-24T19:17:14.3641403Z", + "configurationChangeDate": "2017-06-03T00:41:30.9670873Z" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationDeploy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationDeploy.json index f8db76f18e68..1992795b330b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationDeploy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationDeploy.json @@ -1,31 +1,31 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "configurationName": "configuration", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "configurationName": "configuration", - "parameters": { - "branch": "master" - } + "branch": "master" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af4ae2a6d2e0b688d7517?api-version=2018-01-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af4ae2a6d2e0b688d7517?api-version=2018-01-01" - } - }, - "200": { - "body": { - "id": "5a1af4ae2a6d2e0b688d7517", - "status": "Failed", - "started": "2017-11-26T17:06:54.303Z", - "updated": "2017-11-26T17:07:21.777Z", - "error": { - "code": "ValidationError", - "message": "File not found: 'api-management/configuration.json'" - } - } + "200": { + "body": { + "id": "5a1af4ae2a6d2e0b688d7517", + "status": "Failed", + "started": "2017-11-26T17:06:54.303Z", + "updated": "2017-11-26T17:07:21.777Z", + "error": { + "code": "ValidationError", + "message": "File not found: 'api-management/configuration.json'" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationSave.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationSave.json index 2278ccf03106..4bec55ed86e9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationSave.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationSave.json @@ -1,29 +1,29 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "configurationName": "configuration", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "configurationName": "configuration", - "parameters": { - "branch": "master" - } + "branch": "master" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af57d2a6d2e0b688d751b?api-version=2018-01-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af57d2a6d2e0b688d751b?api-version=2018-01-01" - } - }, - "200": { - "body": { - "id": "5a1af57d2a6d2e0b688d751b", - "status": "Succeeded", - "started": "2017-11-26T17:10:21.957Z", - "updated": "2017-11-26T17:10:36.06Z", - "resultInfo": "The configuration was successfully saved to master as commit cdb6878db80159cc0e9a53f5ad38581883882974.", - "actionLog": [] - } - } + "200": { + "body": { + "id": "5a1af57d2a6d2e0b688d751b", + "status": "Succeeded", + "started": "2017-11-26T17:10:21.957Z", + "updated": "2017-11-26T17:10:36.06Z", + "resultInfo": "The configuration was successfully saved to master as commit cdb6878db80159cc0e9a53f5ad38581883882974.", + "actionLog": [] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationValidate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationValidate.json index ca881f2c013e..d0cc38623257 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationValidate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementTenantConfigurationValidate.json @@ -1,170 +1,170 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "configurationName": "configuration", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "configurationName": "configuration", - "parameters": { - "branch": "master" - } + "branch": "master" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af64e2a6d2e0b688d751e?api-version=2018-01-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af64e2a6d2e0b688d751e?api-version=2018-01-01" - } - }, - "200": { - "body": { - "id": "5a1af64e2a6d2e0b688d751e", - "status": "Succeeded", - "started": "2017-11-26T17:13:50.787Z", - "updated": "2017-11-26T17:13:59.723Z", - "resultInfo": "Validation is successfull", - "actionLog": [ - { - "objectType": "ApiSpecificationContract", - "action": "Updated", - "objectKey": "57914cb351f68a16889be190;rev=1" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5768181ea40f7eb6c49f6ac7" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "576819c9a40f7e86289fb3e3" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "576819f1a40f7e86289fb6de" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681a67a40f7e72b4132522" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681a73a40f7e72b413281d" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681a7ea40f7e72b4132b18" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681b88a40f7ea0f017f099" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681b9fa40f7ea0f017f682" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bb5a40f7ea0f017fc6b" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bcaa40f7ea0f0180254" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bdfa40f7ea0f018083d" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681bf5a40f7ea0f0180e26" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681c0ea40f7ea0f018140f" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681c26a40f7ea0f01819f8" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681c83a40f7e85f44db237" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681cb2a40f7e85f44dbcd0" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681ce3a40f7e85f44dc769" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681d1fa40f7e85f44dd202" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681d60a40f7e85f44ddc9b" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681db4a40f7e85f44de735" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681e11a40f7e85f44df1ce" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681e73a40f7e85f44dfc67" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "57681f06a40f7e74ec07785c" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5768211fa40f7e74ec07a74a" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "576823cfa40f7e74ec07d63a" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5600b57e7e8880006a060001" - }, - { - "objectType": "ProductSpecificationContract", - "action": "Updated", - "objectKey": "5600b57e7e8880006a060002" - } - ] - } - } + "200": { + "body": { + "id": "5a1af64e2a6d2e0b688d751e", + "status": "Succeeded", + "started": "2017-11-26T17:13:50.787Z", + "updated": "2017-11-26T17:13:59.723Z", + "resultInfo": "Validation is successfull", + "actionLog": [ + { + "objectType": "ApiSpecificationContract", + "action": "Updated", + "objectKey": "57914cb351f68a16889be190;rev=1" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5768181ea40f7eb6c49f6ac7" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "576819c9a40f7e86289fb3e3" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "576819f1a40f7e86289fb6de" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681a67a40f7e72b4132522" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681a73a40f7e72b413281d" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681a7ea40f7e72b4132b18" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681b88a40f7ea0f017f099" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681b9fa40f7ea0f017f682" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bb5a40f7ea0f017fc6b" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bcaa40f7ea0f0180254" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bdfa40f7ea0f018083d" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681bf5a40f7ea0f0180e26" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681c0ea40f7ea0f018140f" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681c26a40f7ea0f01819f8" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681c83a40f7e85f44db237" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681cb2a40f7e85f44dbcd0" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681ce3a40f7e85f44dc769" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681d1fa40f7e85f44dd202" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681d60a40f7e85f44ddc9b" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681db4a40f7e85f44de735" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681e11a40f7e85f44df1ce" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681e73a40f7e85f44dfc67" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "57681f06a40f7e74ec07785c" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5768211fa40f7e74ec07a74a" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "576823cfa40f7e74ec07d63a" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5600b57e7e8880006a060001" + }, + { + "objectType": "ProductSpecificationContract", + "action": "Updated", + "objectKey": "5600b57e7e8880006a060002" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApi.json index 32b3c2e34570..84ccd299614e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApi.json @@ -17,4 +17,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiDiagnostic.json index 30a9d4679717..0c3eb8e0a7bb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiDiagnostic.json @@ -16,4 +16,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiIssue.json index 03cfa07b7ce3..8cfdae10d20a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiIssue.json @@ -1,18 +1,18 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "apiId": "57d1f7558aa04f15146d9d8a", - "parameters": { - "properties": { - "state": "closed" - } + "properties": { + "state": "closed" } - }, - "responses": { - "204": { } } - } \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiOperation.json index 51f0f482e3eb..f57463129b15 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiOperation.json @@ -5,7 +5,7 @@ "api-version": "2018-01-01", "subscriptionId": "subid", "apiId": "echo-api", - "operationId":"operationId", + "operationId": "operationId", "If-Match": "*", "parameters": { "properties": { @@ -47,4 +47,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiRelease.json index 9d0e8d6acbc8..57e4514d491b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiRelease.json @@ -1,20 +1,20 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "testrev", + "If-Match": "*", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "testrev", - "If-Match": "*", - "parameters": { - "properties": { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", - "notes": "yahooagain" - } - } - }, - "responses": { - "204": { } + "properties": { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", + "notes": "yahooagain" + } } -} \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiVersionSet.json index 621f0e6483d6..a72a62b784cf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateApiVersionSet.json @@ -1,20 +1,20 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "versionSetId": "api1", + "If-Match": "*", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "versionSetId": "api1", - "If-Match":"*", - "parameters": { - "properties": { - "displayName" : "api set 1", - "versioningScheme" : "Segment", - "description" : "Version configuration" - } + "properties": { + "displayName": "api set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } - }, - "responses": { - "204": { } } - } \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateAuthorizationServer.json index 626b98229c99..21e24627cc3e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateAuthorizationServer.json @@ -14,6 +14,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateBackend.json index 99b0b26bca75..faada7c2bc93 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateBackend.json @@ -19,4 +19,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateDiagnostic.json index 4b7b782fb929..0a625969a0c2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateDiagnostic.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateEmailTemplate.json index ac797dbd8431..4763170a93f0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateEmailTemplate.json @@ -14,6 +14,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateGroup.json index 830d73bbb2b2..1d49c248fc11 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateGroup.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateIdentityProvider.json index 0584a4766b89..1f54c32ef84f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateIdentityProvider.json @@ -16,4 +16,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateLogger.json index d39fb2296656..58646f92b33d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateLogger.json @@ -18,4 +18,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateOpenIdConnectProvider.json index 73d23a18f1ce..5e52b19cb188 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateOpenIdConnectProvider.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateProductBasic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateProductBasic.json index 2e8197e44fa0..2fd72c26f97a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateProductBasic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateProductBasic.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateProperty.json index 43fe6b5a9d4e..48cae5a4458c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateProperty.json @@ -19,4 +19,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateQuotaCounterKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateQuotaCounterKey.json index 08c50fec433a..f9a816a067d6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateQuotaCounterKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateQuotaCounterKey.json @@ -13,4 +13,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json index de387825c5a8..5fd32fac270e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json @@ -14,4 +14,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateServiceDisableTls10.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateServiceDisableTls10.json index 54ccdf4da4b3..57576644ba7b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateServiceDisableTls10.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateServiceDisableTls10.json @@ -87,4 +87,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateServicePublisherDetails.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateServicePublisherDetails.json index 2a7f05eb4393..6a3fb026707d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateServicePublisherDetails.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateServicePublisherDetails.json @@ -61,7 +61,7 @@ "location": "West US", "etag": "AAAAAAAYRPs=", "properties": { - "publisherEmail": "foobar@live.com", + "publisherEmail": "foobar@live.com", "publisherName": "Contoso Vnext", "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", "provisioningState": "Succeeded", @@ -86,4 +86,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateSubscription.json index eeba75da4cd7..a7fd3722e03a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateSubscription.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateTag.json index fb9f7ef010f5..c569666f3af0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateTag.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateTenantAccess.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateTenantAccess.json index ff6301c8e2cc..89c9867cd830 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateTenantAccess.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateTenantAccess.json @@ -13,4 +13,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateUserBasic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateUserBasic.json index 4bf2247efc12..c7c73291acc0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateUserBasic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUpdateUserBasic.json @@ -15,6 +15,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUsersGenerateSsoUrl.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUsersGenerateSsoUrl.json index fc895622f524..e0ebd86f9513 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUsersGenerateSsoUrl.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUsersGenerateSsoUrl.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUsersGetToken.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUsersGetToken.json index 8a324cf21686..80c61f8539c3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUsersGetToken.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementUsersGetToken.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimanagement.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimanagement.json index 7aae28c6cdcc..9e647434220f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimanagement.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimanagement.json @@ -690,4 +690,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapis.json index a48e9aaa738d..0f543b0ff4f4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapis.json @@ -4448,4 +4448,4 @@ }, "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapisByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapisByTags.json index 284f38def7ea..986f789a40cc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapisByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapisByTags.json @@ -103,4 +103,4 @@ }, "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapiversionsets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapiversionsets.json index 076446278b7b..db694f45b086 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimapiversionsets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimauthorizationservers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimauthorizationservers.json index d5f9c2685cb7..b4105be15cee 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimauthorizationservers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimbackends.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimbackends.json index 5299f70c9a2d..0fa366c5fd59 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimbackends.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimcaches.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimcaches.json index 83088b4a5106..e3bd4671e410 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimcaches.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimcaches.json @@ -358,7 +358,6 @@ } } }, - "definitions": { }, - "parameters": { - } -} \ No newline at end of file + "definitions": {}, + "parameters": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimcertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimcertificates.json index 12e54917ce96..830007fc28df 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimcertificates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimdeployment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimdeployment.json index a72bb56223a0..f0f418778d45 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimdeployment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimdeployment.json @@ -1426,4 +1426,4 @@ } }, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimdiagnostics.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimdiagnostics.json index 82a05cc5c6eb..cbab1fb07ee9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimdiagnostics.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimemailtemplates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimemailtemplates.json index 7a816f83685c..0cff1efb0c8f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimemailtemplates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimemailtemplates.json @@ -349,6 +349,6 @@ } } }, - "definitions": { }, - "parameters": { } -} \ No newline at end of file + "definitions": {}, + "parameters": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimgroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimgroups.json index 3a00553de3c3..c8302268c711 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimgroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimidentityprovider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimidentityprovider.json index cc1a3f628a7d..b0e8c7696ca6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimidentityprovider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimissues.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimissues.json index c484f4c357e1..ab8a3d77c671 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimissues.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimissues.json @@ -147,4 +147,4 @@ }, "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimloggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimloggers.json index 78cf4fbb645a..bdb14abc0247 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimloggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimnetworkstatus.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimnetworkstatus.json index 4f61ef2ce162..4459076d514a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimnetworkstatus.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimnotifications.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimnotifications.json index 7c6d17a6bf04..5fca9c1492b2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimnotifications.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimnotifications.json @@ -257,7 +257,7 @@ "204": { "description": "The User is subscribed to receive the notification." }, - "404" : { + "404": { "description": "Entity does not exists." }, "default": { @@ -448,7 +448,7 @@ "204": { "description": "The Users is subscribed to receive the notification." }, - "404" : { + "404": { "description": "The Users is not subscribed to receive the notification." }, "default": { @@ -559,6 +559,6 @@ } } }, - "definitions": { }, - "parameters": { } -} \ No newline at end of file + "definitions": {}, + "parameters": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimopenidconnectproviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimopenidconnectproviders.json index db6de1486755..1445ee139fa5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimopenidconnectproviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimpolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimpolicies.json index e8adcb8daf7b..fc5bb3954e93 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimpolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimpolicies.json @@ -299,6 +299,6 @@ } } }, - "definitions": { }, - "parameters": { } -} \ No newline at end of file + "definitions": {}, + "parameters": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimpolicysnippets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimpolicysnippets.json index fdc873006380..df5544ba5427 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimpolicysnippets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimpolicysnippets.json @@ -95,6 +95,6 @@ } } }, - "definitions": { }, + "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimportalsettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimportalsettings.json index defb6019814c..2c066ed8b4d5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimportalsettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimportalsettings.json @@ -611,5 +611,5 @@ } } }, - "definitions": { } -} \ No newline at end of file + "definitions": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproducts.json index beb2a6de8176..12a8d9d645c4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproducts.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproducts.json @@ -1394,6 +1394,6 @@ } } }, - "definitions": { }, - "parameters": { } -} \ No newline at end of file + "definitions": {}, + "parameters": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproductsByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproductsByTags.json index 34ad559150dd..4d29bd799cc2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproductsByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproductsByTags.json @@ -103,4 +103,4 @@ }, "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproperties.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproperties.json index 13fcf5ccd809..7f9e093179fc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproperties.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproperties.json @@ -365,6 +365,6 @@ } } }, - "definitions": { }, + "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimquotas.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimquotas.json index b38bbb224d0d..3b121904e5ee 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimquotas.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimregions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimregions.json index dc18753a0bdd..c39e96aa0369 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimregions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimregions.json @@ -82,4 +82,4 @@ }, "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimreports.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimreports.json index d3f9c8fed541..d13d0766fed7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimreports.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimreports.json @@ -509,6 +509,6 @@ } } }, - "definitions": { }, + "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimsubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimsubscriptions.json index 23d4412db831..01a9c6faa29f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimsubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/apimtagresources.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtagresources.json index a604b4fc9c25..9b4faefe9688 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtagresources.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtagresources.json @@ -96,4 +96,4 @@ }, "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtags.json index 226453de3213..8d04e29453cd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtags.json @@ -371,4 +371,4 @@ }, "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtenant.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtenant.json index 337b9eff63c8..0064946cdc45 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtenant.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimtenant.json @@ -463,7 +463,7 @@ }, "x-ms-long-running-operation": true, "x-ms-long-running-operation-options": { - "final-state-via":"location" + "final-state-via": "location" } } }, @@ -528,7 +528,7 @@ }, "x-ms-long-running-operation": true, "x-ms-long-running-operation-options": { - "final-state-via":"location" + "final-state-via": "location" } } }, @@ -587,9 +587,9 @@ } } }, - "x-ms-long-running-operation": true, + "x-ms-long-running-operation": true, "x-ms-long-running-operation-options": { - "final-state-via":"location" + "final-state-via": "location" } } }, @@ -635,4 +635,4 @@ }, "definitions": {}, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimusers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimusers.json index 7b9c5346c363..e5fd4d5b45c0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimusers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimusers.json @@ -697,6 +697,6 @@ } } }, - "definitions": { }, - "parameters": { } -} \ No newline at end of file + "definitions": {}, + "parameters": {} +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/definitions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/definitions.json index caddd83c3ee1..b89d61772bcd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/definitions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/definitions.json @@ -5139,4 +5139,4 @@ } }, "parameters": {} -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json index b533e61ce368..a62c9c45b2b8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementApplyNetworkConfigurationUpdates.json @@ -1,53 +1,53 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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=2019-01-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2019-01-01" - } + "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/stable/2019-01-01/examples/ApiManagementBackendReconnect.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementBackendReconnect.json index b3e10e44cdec..e57c984fe74c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementBackendReconnect.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementBackendReconnect.json @@ -1,17 +1,17 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "backendId": "proxybackend", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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/stable/2019-01-01/examples/ApiManagementCreateAILogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateAILogger.json index 99eda79c8e08..f78109b1f46c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateAILogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateAILogger.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApi.json index 0ab3f90c7234..2ae5e01efede 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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=2019-01-01&asyncId=5c730e343244df1b9cb56e85&asyncCode=201" } }, @@ -95,4 +95,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiClone.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiClone.json index 668f0b822557..971beef3391d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiClone.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiClone.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiDiagnostic.json index fbef27bae6e7..40994be74cfa 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiDiagnostic.json @@ -157,4 +157,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiIssue.json index f1d1dff7fcbd..23ebd86d3e82 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiIssue.json @@ -1,49 +1,49 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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/stable/2019-01-01/examples/ApiManagementCreateApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiIssueAttachment.json index 995885871960..bacdfcdfb0f5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiIssueAttachment.json @@ -1,44 +1,44 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "attachmentId": "57d2ef278aa04f0888cba3f3", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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/stable/2019-01-01/examples/ApiManagementCreateApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiIssueComment.json index 6d2100b98fdd..9083962ea811 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiIssueComment.json @@ -1,44 +1,44 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "commentId": "599e29ab193c3c0bd0b3e2fb", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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/stable/2019-01-01/examples/ApiManagementCreateApiNewVersionUsingExistingApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiNewVersionUsingExistingApi.json index f42c4bb54d23..fa764de282a4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiNewVersionUsingExistingApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiNewVersionUsingExistingApi.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperation.json index 653b6f4d83e8..246f91a4172b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperation.json @@ -1,131 +1,131 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "PetStoreTemplate2", + "operationId": "newoperations", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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/stable/2019-01-01/examples/ApiManagementCreateApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperationPolicy.json index 6e62968b7a85..415c510a8927 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperationPolicy.json @@ -10,7 +10,7 @@ "If-Match": "*", "parameters": { "properties": { - "format":"xml", + "format": "xml", "value": " " } } @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperationTag.json index 5ad267568bda..6c8540ad4597 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiOperationTag.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiPolicy.json index 278b56960d1f..ea26561dc1ca 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiPolicy.json @@ -6,10 +6,10 @@ "subscriptionId": "subid", "apiId": "5600b57e7e8880006a040001", "policyId": "policy", - "If-Match":"*", + "If-Match": "*", "parameters": { "properties": { - "format":"xml", + "format": "xml", "value": " " } } @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json index 340431d366c1..84a76fc865db 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json @@ -10,7 +10,7 @@ "parameters": { "properties": { "value": "\r\n \r\n \r\n \r\n \"@(context.Request.Headers.FirstOrDefault(h => h.Ke==\"Via\"))\" \r\n \r\n \r\n ", - "format":"rawxml" + "format": "rawxml" } } }, @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiRelease.json index 3d4b0720929a..b25c002daab3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiRelease.json @@ -1,44 +1,44 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "testrev", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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/stable/2019-01-01/examples/ApiManagementCreateApiRevisionFromExistingApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiRevisionFromExistingApi.json index cf929153ea59..1e51865054f7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiRevisionFromExistingApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiRevisionFromExistingApi.json @@ -65,4 +65,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiSchema.json index c21e7fe9df46..ef785c438fad 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiSchema.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiTag.json index 1d971bd9c2ad..8f21126b6ea4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiTag.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/ApiManagementCreateApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiTagDescription.json index a16f3064780d..89afbf32e3e0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiTagDescription.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingOai3Import.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingOai3Import.json index df9be74339a0..b73fa8c5b3c9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingOai3Import.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingOai3Import.json @@ -7,8 +7,8 @@ "apiId": "petstore", "parameters": { "properties": { - "format":"openapi-link", - "value":"https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v3.0/petstore.yaml", + "format": "openapi-link", + "value": "https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v3.0/petstore.yaml", "path": "petstore" } } @@ -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=2019-01-01&asyncId=5c730e343244df1b9cb56e85&asyncCode=201" } }, @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingSwaggerImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingSwaggerImport.json index 52217a655973..7a58406773ab 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingSwaggerImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingSwaggerImport.json @@ -7,8 +7,8 @@ "apiId": "petstore", "parameters": { "properties": { - "format":"swagger-link-json", - "value":"http://petstore.swagger.io/v2/swagger.json", + "format": "swagger-link-json", + "value": "http://petstore.swagger.io/v2/swagger.json", "path": "petstore" } } @@ -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=2019-01-01&asyncId=5c730e343244df1b9cb56e85&asyncCode=201" } }, @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingWadlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingWadlImport.json index 36fa7df76e0e..d7c6427a820d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingWadlImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiUsingWadlImport.json @@ -7,8 +7,8 @@ "apiId": "petstore", "parameters": { "properties": { - "format":"wadl-link-json", - "value":"https://developer.cisco.com/media/wae-release-6-2-api-reference/wae-collector-rest-api/application.wadl", + "format": "wadl-link-json", + "value": "https://developer.cisco.com/media/wae-release-6-2-api-reference/wae-collector-rest-api/application.wadl", "path": "collector" } } @@ -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=2019-01-01&asyncId=5c730e343244df1b9cb56e85&asyncCode=201" } }, @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiVersionSet.json index 1368d9bee4ae..72d1c4318dc7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiVersionSet.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiWithOpenIdConnect.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiWithOpenIdConnect.json index ae7708c8c337..d7fb19811cc9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateApiWithOpenIdConnect.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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=2019-01-01&asyncId=5c730e343244df1b9cb56e85&asyncCode=201" } }, @@ -96,4 +96,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateAuthorizationServer.json index fce710c6a1ed..d2774285b5e8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateAuthorizationServer.json @@ -93,4 +93,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackendProxyBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackendProxyBackend.json index afbf2675e0a4..f8667932acc1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackendProxyBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackendProxyBackend.json @@ -123,4 +123,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackendServiceFabric.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackendServiceFabric.json index f685fa500ebb..c05c12a154d3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackendServiceFabric.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackendServiceFabric.json @@ -84,4 +84,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackup.json index 2aa35d4bae52..ea769d7ffb93 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateBackup.json @@ -1,53 +1,53 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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=2019-01-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2019-01-01" - } + "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/stable/2019-01-01/examples/ApiManagementCreateCache.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateCache.json index 16bc74ecf9bc..1710ed8dfeaf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateCache.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateCache.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateCertificate.json index 171531dcceb1..79351765faf4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateCertificate.json @@ -4,7 +4,7 @@ "resourceGroupName": "rg1", "api-version": "2019-01-01", "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/stable/2019-01-01/examples/ApiManagementCreateDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateDiagnostic.json index dad9a8eb7cbf..7c539118db35 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateDiagnostic.json @@ -156,4 +156,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateEHLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateEHLogger.json index 952d705bf934..17f609553b57 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateEHLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateEHLogger.json @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateEmailTemplate.json index f1c90bd8a686..27b5bd494611 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateEmailTemplate.json @@ -93,4 +93,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateGroup.json index 9d2e00ced4e4..8a71395e4e15 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/examples/ApiManagementCreateGroupExternal.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateGroupExternal.json index 7be221a484f9..281c0849b4f2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateGroupExternal.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateGroupExternal.json @@ -4,11 +4,11 @@ "resourceGroupName": "rg1", "api-version": "2019-01-01", "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/stable/2019-01-01/examples/ApiManagementCreateGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateGroupUser.json index c11dec4b1fbf..3774b867636b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateGroupUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/examples/ApiManagementCreateIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateIdentityProvider.json index b76bf368dc8d..36a4edb36eee 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateIdentityProvider.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json index e5ec4ffa34ab..8558b2204c18 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json @@ -243,4 +243,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateNotification.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateNotification.json index df986494121a..b6fb1ff77b9f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateNotification.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateNotification.json @@ -1,32 +1,32 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-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": "2019-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/2019-01-01/examples/ApiManagementCreateNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateNotificationRecipientEmail.json index d06f4db5c6e4..cced83eb5209 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateNotificationRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/examples/ApiManagementCreateNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateNotificationRecipientUser.json index 6afcd49bea38..7f99c767bce5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateNotificationRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateNotificationRecipientUser.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/ApiManagementCreateOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateOpenIdConnectProvider.json index e7d857348a8d..45797887dd96 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/examples/ApiManagementCreatePolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreatePolicy.json index 044f1f456674..f03e3af00071 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreatePolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreatePolicy.json @@ -7,7 +7,7 @@ "policyId": "policy", "parameters": { "properties": { - "format":"xml", + "format": "xml", "value": "\r\n \r\n \r\n \r\n \r\n \r\n" } } @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProduct.json index 6681ba277bc8..e6e05e3b4fcf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProduct.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductApi.json index 98e8bbee3200..c309967ec404 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/examples/ApiManagementCreateProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductGroup.json index 5d894ca27586..37f5b8d96c7b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductGroup.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductPolicy.json index feb26df5f1bf..5a74e078a77e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductPolicy.json @@ -8,7 +8,7 @@ "policyId": "policy", "parameters": { "properties": { - "format":"xml", + "format": "xml", "value": "\r\n \r\n \r\n \r\n @( string.Join(\",\", DateTime.UtcNow, context.Deployment.ServiceName, context.RequestId, context.Request.IpAddress, context.Operation.Name) ) \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" } } @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductTag.json index 9d9c3a55253d..4c0b79702ac1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProductTag.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/ApiManagementCreateProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProperty.json index 87c216d8d5da..310e2cadc345 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateProperty.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateService.json index 83e42c74993e..8e81610b48d8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateService.json @@ -119,4 +119,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateServiceHavingMsi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateServiceHavingMsi.json index f5f9d4e627e8..c173224f0321 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateServiceHavingMsi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateServiceHavingMsi.json @@ -115,4 +115,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateServiceWithSystemCertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateServiceWithSystemCertificates.json index d5cecaf2108b..f9470a62d7f3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateServiceWithSystemCertificates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateServiceWithSystemCertificates.json @@ -139,4 +139,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json index df67d1a2336b..f371604d4c7b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json @@ -7,8 +7,8 @@ "apiId": "soapApi", "parameters": { "properties": { - "format":"wsdl-link", - "value":"http://www.webservicex.net/CurrencyConvertor.asmx?WSDL", + "format": "wsdl-link", + "value": "http://www.webservicex.net/CurrencyConvertor.asmx?WSDL", "path": "currency", "apiType": "soap", "wsdlSelector": { @@ -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=2019-01-01&asyncId=5c730e343244df1b9cb56e85&asyncCode=201" } }, @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json index 39f3d0ccff0d..6e3f29d2f4bb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json @@ -7,8 +7,8 @@ "apiId": "soapApi", "parameters": { "properties": { - "format":"wsdl-link", - "value":"http://www.webservicex.net/CurrencyConvertor.asmx?WSDL", + "format": "wsdl-link", + "value": "http://www.webservicex.net/CurrencyConvertor.asmx?WSDL", "path": "currency", "wsdlSelector": { "wsdlServiceName": "CurrencyConvertor", @@ -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=2019-01-01&asyncId=5c730e343244df1b9cb56e85&asyncCode=201" } }, @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSubscription.json index 9d577eb1b843..620736a9665f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateSubscription.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateTag.json index 20b641254096..4187986e5a88 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateTag.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateUser.json index 3e4aa9c81f67..26b4822ae7f8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementCreateUser.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApi.json index cddbef8f1dcf..5250941cf6f3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApi.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "echo-api", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "echo-api", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiDiagnostic.json index 5cbcc80ebf75..962431b67ff3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiDiagnostic.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "diagnosticId": "applicationinsights", - "apiId": "57d1f7558aa04f15146d9d8a", - "If-Match": "*" - }, - "responses": { - "204": {}, - "200":{} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "diagnosticId": "applicationinsights", + "apiId": "57d1f7558aa04f15146d9d8a", + "If-Match": "*" + }, + "responses": { + "204": {}, + "200": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssue.json index e3737645695a..eb1c722ef9e1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssue.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "apiId": "57d1f7558aa04f15146d9d8a", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssueAttachment.json index 8b0607b6f011..401e700cb915 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssueAttachment.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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": "2019-01-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "attachmentId": "57d2ef278aa04f0888cba3f3", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssueComment.json index 71988675fd7c..9f617a9c4bc0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiIssueComment.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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": "2019-01-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "commentId": "599e29ab193c3c0bd0b3e2fb", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperation.json index f761ce1efd20..2b822ec1efba 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperation.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "operationId": "57d2ef278aa04f0ad01d6cdc", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperationPolicy.json index 17208d0c0847..3b25bdc14fbb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperationPolicy.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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": "2019-01-01", + "subscriptionId": "subid", + "apiId": "testapi", + "operationId": "testoperation", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperationTag.json index d8cd0239b03f..4d2e4b892b58 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/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/stable/2019-01-01/examples/ApiManagementDeleteApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiPolicy.json index 68ece52cf42b..1cdfd95faa71 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiPolicy.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "loggerId", - "policyId": "policy", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "loggerId", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiRelease.json index 4365f8993f10..7ab011465bca 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiRelease.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "5a5fcc09124a7fa9b89f2f1d", - "releaseId": "testrev", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "5a5fcc09124a7fa9b89f2f1d", + "releaseId": "testrev", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiSchema.json index 9574a6c0149c..04c38cffb784 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiSchema.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "59d5b28d1f7fab116c282650", - "schemaId": "59d5b28e1f7fab116402044e", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650", + "schemaId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiTag.json index b5e54f788a89..35afaf1d052b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiTag.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "59d5b28d1f7fab116c282650", - "tagId": "59d5b28e1f7fab116402044e", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650", + "tagId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiTagDescription.json index b5e54f788a89..35afaf1d052b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiTagDescription.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "59d5b28d1f7fab116c282650", - "tagId": "59d5b28e1f7fab116402044e", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650", + "tagId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiVersionSet.json index be2d7b8f9f04..dba6159085e5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteApiVersionSet.json @@ -1,16 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "versionSetId": "a1", - "If-Match": "*" - }, - "responses": { - "204": { - }, - "200":{ - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "versionSetId": "a1", + "If-Match": "*" + }, + "responses": { + "204": {}, + "200": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteAuthorizationServer.json index 03afc54563a7..0164157071cd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteAuthorizationServer.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "authsid": "newauthServer2", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "authsid": "newauthServer2", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteBackend.json index f5ab07c2d463..81e179c77db6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteBackend.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "backendId": "sfbackend", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "backendId": "sfbackend", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteCache.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteCache.json index 8dc04805a6ac..465203ab35d2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteCache.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteCache.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteCertificate.json index c7200756ce18..1506995c5ddf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteCertificate.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "certificateId": "tempcert", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "certificateId": "tempcert", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteDiagnostic.json index fed02e6a8dab..051b1acc9aad 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteDiagnostic.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "diagnosticId": "applicationinsights", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "diagnosticId": "applicationinsights", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteEmailTemplate.json index 1ef38fdf4bca..ec65d94b261b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteEmailTemplate.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "templateName": "newIssueNotificationMessage", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteGroup.json index c5e84511ad6c..13e3fd18606a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteGroup.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "groupId": "aadGroup", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "groupId": "aadGroup", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteGroupUser.json index 77a43fa215b4..d0914f1d97f6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteGroupUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteGroupUser.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "groupId": "templategroup", - "userId": "59307d350af58404d8a26300", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "groupId": "templategroup", + "userId": "59307d350af58404d8a26300", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteIdentityProvider.json index 15af3063b3c8..12bad5b8eec2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteIdentityProvider.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "identityProviderName": "aad", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "identityProviderName": "aad", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteLogger.json index e6fa8531f8cb..ff61f5a5109c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteLogger.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "loggerId": "loggerId", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "loggerId": "loggerId", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteNotificationRecipientEmail.json index e30a02efc49f..3460834e6100 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteNotificationRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteNotificationRecipientEmail.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "email": "contoso@live.com" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "email": "contoso@live.com" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteNotificationRecipientUser.json index b7efc7f7417c..3b27da566849 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteNotificationRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteNotificationRecipientUser.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "userId": "576823d0a40f7e74ec07d642" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "userId": "576823d0a40f7e74ec07d642" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteOpenIdConnectProvider.json index d843d5625744..887bb41f267f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteOpenIdConnectProvider.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect3", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect3", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeletePolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeletePolicy.json index 88b963c91a4a..fe44e89030cd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeletePolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeletePolicy.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "policyId": "policy", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProduct.json index 3c3ff8290418..589e984545e6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProduct.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "testproduct", - "deleteSubscriptions": true, - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "testproduct", + "deleteSubscriptions": true, + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductApi.json index b4bbc9ea53bf..ba60cfcff936 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductApi.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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": "2019-01-01", + "subscriptionId": "subid", + "productId": "testproduct", + "apiId": "echo-api", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductGroup.json index 0a6b477a86aa..20ecfabec851 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductGroup.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "testproduct", - "groupId": "templateGroup", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "testproduct", + "groupId": "templateGroup", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductPolicy.json index 0da565865bec..edd39a833a53 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductPolicy.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "testproduct", - "policyId": "policy", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "testproduct", + "policyId": "policy", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductTag.json index 57f8b9ddbcae..936abd25b091 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProductTag.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "59d5b28d1f7fab116c282650", - "tagId": "59d5b28e1f7fab116402044e", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "59d5b28d1f7fab116c282650", + "tagId": "59d5b28e1f7fab116402044e", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProperty.json index 587df4b7bffc..1c5424d23d21 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteProperty.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "propId": "testprop2", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "propId": "testprop2", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteSubscription.json index 3ab8dbf137dd..d123ed87846a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteSubscription.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "sid": "testsub", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "sid": "testsub", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteTag.json index 111e80be695a..148402b152de 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteTag.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "tagId": "tagId1", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "tagId": "tagId1", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteUser.json index 51b599b71ffa..047efda64214 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementDeleteUser.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "userId": "5931a75ae4bbd512288c680b", - "If-Match": "*" - }, - "responses": { - "200": {}, - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "userId": "5931a75ae4bbd512288c680b", + "If-Match": "*" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiContract.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiContract.json index 54fee0552a78..3fa4232f2b85 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiContract.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiContract.json @@ -1,34 +1,34 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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": "2019-01-01", + "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/stable/2019-01-01/examples/ApiManagementGetApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiDiagnostic.json index 06902b44407f..7777b352411f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiDiagnostic.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json index aa2fd38e9b26..136bf1ee2db1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiExportInOpenApi2dot0.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "echo-api", - "format": "swagger-link", - "export": "true" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", - "format": "swagger-link-json", - "value": { - "link": "https://apimgmtstkjpszxxxxxxx.blob.core.windows.net/api-export/Swagger Petstore Extensive.json?sv=2015-07-08&sr=b&sig=mxhLsFuOonu8EXIjyFPV%2FnDra0qTIoip7N7MuU%2BTFsA%3D&se=2019-04-10T22:41:31Z&sp=r" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "echo-api", + "format": "swagger-link", + "export": "true" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", + "format": "swagger-link-json", + "value": { + "link": "https://apimgmtstkjpszxxxxxxx.blob.core.windows.net/api-export/Swagger Petstore Extensive.json?sv=2015-07-08&sr=b&sig=mxhLsFuOonu8EXIjyFPV%2FnDra0qTIoip7N7MuU%2BTFsA%3D&se=2019-04-10T22:41:31Z&sp=r" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiExportInOpenApi3dot0.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiExportInOpenApi3dot0.json index df7e4bff9b87..0afa93ccf384 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiExportInOpenApi3dot0.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiExportInOpenApi3dot0.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssue.json index c0fa22913b8c..6395a9163a6f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssue.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssueAttachment.json index 076f37d8f7c9..6927f2f5e0f4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssueAttachment.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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": "2019-01-01", + "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/stable/2019-01-01/examples/ApiManagementGetApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssueComment.json index f1e633956211..ea317bce8f9f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiIssueComment.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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": "2019-01-01", + "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/stable/2019-01-01/examples/ApiManagementGetApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperation.json index 62bf3bcd1a45..0d662ed02558 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperation.json @@ -1,53 +1,53 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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\r\n \r\n \r\n 1\r\n \r\n \r\n", - "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", - "typeName": "CancelOrder" - } - ] - }, - "responses": [ - { - "statusCode": 200, - "description": "IFazioService_CancelOrder_OutputMessage", - "representations": [ - { - "contentType": "text/xml", - "sample": "\r\n\r\n \r\n \r\n 1\r\n \r\n \r\n", - "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", - "typeName": "CancelOrderResponse" - } - ], - "headers": [] - } - ] + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "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\r\n \r\n \r\n 1\r\n \r\n \r\n", + "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", + "typeName": "CancelOrder" + } + ] + }, + "responses": [ + { + "statusCode": 200, + "description": "IFazioService_CancelOrder_OutputMessage", + "representations": [ + { + "contentType": "text/xml", + "sample": "\r\n\r\n \r\n \r\n 1\r\n \r\n \r\n", + "schemaId": "6980a395-f08b-4a59-8295-1440cbd909b8", + "typeName": "CancelOrderResponse" } + ], + "headers": [] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationPetStore.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationPetStore.json index c193794161e5..21b353763383 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationPetStore.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationPetStore.json @@ -1,91 +1,91 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "swagger-petstore", - "operationId": "loginUser" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/swagger-petstore/operations/loginUser", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "loginUser", - "properties": { - "displayName": "Logs user into the system", - "method": "GET", - "urlTemplate": "/user/login?username={username}&password={password}", - "templateParameters": [ - { - "name": "username", - "description": "The user name for login", - "type": "string", - "required": true, - "values": [] - }, - { - "name": "password", - "description": "The password for login in clear text", - "type": "string", - "required": true, - "values": [] - } - ], - "description": "", - "request": { - "queryParameters": [], - "headers": [], - "representations": [] - }, - "responses": [ - { - "statusCode": 200, - "description": "successful operation", - "representations": [ - { - "contentType": "application/xml", - "schemaId": "5ba91a35f373b513a0bf31c6", - "typeName": "UserLoginGet200ApplicationXmlResponse" - }, - { - "contentType": "application/json", - "schemaId": "5ba91a35f373b513a0bf31c6", - "typeName": "UserLoginGet200ApplicationJsonResponse" - } - ], - "headers": [ - { - "name": "X-Rate-Limit", - "description": "calls per hour allowed by the user", - "type": "integer", - "values": [] - }, - { - "name": "X-Expires-After", - "description": "date in UTC when token expires", - "type": "string", - "values": [] - } - ] - }, - { - "statusCode": 400, - "description": "Invalid username/password supplied", - "representations": [ - { - "contentType": "application/xml" - }, - { - "contentType": "application/json" - } - ], - "headers": [] - } - ] + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "swagger-petstore", + "operationId": "loginUser" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/swagger-petstore/operations/loginUser", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "loginUser", + "properties": { + "displayName": "Logs user into the system", + "method": "GET", + "urlTemplate": "/user/login?username={username}&password={password}", + "templateParameters": [ + { + "name": "username", + "description": "The user name for login", + "type": "string", + "required": true, + "values": [] + }, + { + "name": "password", + "description": "The password for login in clear text", + "type": "string", + "required": true, + "values": [] + } + ], + "description": "", + "request": { + "queryParameters": [], + "headers": [], + "representations": [] + }, + "responses": [ + { + "statusCode": 200, + "description": "successful operation", + "representations": [ + { + "contentType": "application/xml", + "schemaId": "5ba91a35f373b513a0bf31c6", + "typeName": "UserLoginGet200ApplicationXmlResponse" + }, + { + "contentType": "application/json", + "schemaId": "5ba91a35f373b513a0bf31c6", + "typeName": "UserLoginGet200ApplicationJsonResponse" + } + ], + "headers": [ + { + "name": "X-Rate-Limit", + "description": "calls per hour allowed by the user", + "type": "integer", + "values": [] + }, + { + "name": "X-Expires-After", + "description": "date in UTC when token expires", + "type": "string", + "values": [] + } + ] + }, + { + "statusCode": 400, + "description": "Invalid username/password supplied", + "representations": [ + { + "contentType": "application/xml" + }, + { + "contentType": "application/json" } + ], + "headers": [] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationPolicy.json index fbfbed0a752e..c015a8dc3e89 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationPolicy.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "5600b539c53f5b0062040001", - "operationId": "5600b53ac53f5b0062080006", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b539c53f5b0062040001/operations/5600b53ac53f5b0062080006/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/operations/policies", - "name": "policy", - "properties": { - "value": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n This is a sample\r\n \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "5600b539c53f5b0062040001", + "operationId": "5600b53ac53f5b0062080006", + "policyId": "policy" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b539c53f5b0062040001/operations/5600b53ac53f5b0062080006/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/operations/policies", + "name": "policy", + "properties": { + "value": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n This is a sample\r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationTag.json index df90edef8c1c..cca4894a0689 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiOperationTag.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/ApiManagementGetApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiPolicy.json index cc828bef9ef3..14642e9c4eb3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiPolicy.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "5600b59475ff190048040001", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", - "type": "Microsoft.ApiManagement/service/apis/policies", - "name": "policy", - "properties": { - "value": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "5600b59475ff190048040001", + "policyId": "policy" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5600b59475ff190048040001/policies/policy", + "type": "Microsoft.ApiManagement/service/apis/policies", + "name": "policy", + "properties": { + "value": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n@{\r\n\tRandom Random = new Random();\r\n\t\t\t\tconst string Chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz \"; \r\n return string.Join(\",\", DateTime.UtcNow, new string(\r\n Enumerable.Repeat(Chars, Random.Next(2150400))\r\n .Select(s => s[Random.Next(s.Length)])\r\n .ToArray()));\r\n } \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiRelease.json index 0fcafb74279a..68373dfa40e6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiRelease.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "5a7cb545298324c53224a799" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", - "type": "Microsoft.ApiManagement/service/apis/releases", - "name": "5a7cb545298324c53224a799", - "properties": { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", - "createdDateTime": "2018-02-08T20:38:29.173Z", - "updatedDateTime": "2018-02-08T20:38:29.173Z", - "notes": "yahoo" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "5a7cb545298324c53224a799" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", + "type": "Microsoft.ApiManagement/service/apis/releases", + "name": "5a7cb545298324c53224a799", + "properties": { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", + "createdDateTime": "2018-02-08T20:38:29.173Z", + "updatedDateTime": "2018-02-08T20:38:29.173Z", + "notes": "yahoo" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiRevision.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiRevision.json index 9a89fc446aac..7bcda5ea1289 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiRevision.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiRevision.json @@ -1,32 +1,32 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "echo-api;rev=3" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api;rev=3", - "type": "Microsoft.ApiManagement/service/apis", - "name": "echo-api;rev=3", - "properties": { - "displayName": "Service", - "apiRevision": "3", - "serviceUrl": "https://api.plexonline.com/DataSource/Service.asmx", - "path": "schulte", - "protocols": [ - "https" - ], - "subscriptionKeyParameterNames": { - "header": "Ocp-Apim-Subscription-Key", - "query": "subscription-key" - }, - "apiRevisionDescription": "fixed bug in contract" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "echo-api;rev=3" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api;rev=3", + "type": "Microsoft.ApiManagement/service/apis", + "name": "echo-api;rev=3", + "properties": { + "displayName": "Service", + "apiRevision": "3", + "serviceUrl": "https://api.plexonline.com/DataSource/Service.asmx", + "path": "schulte", + "protocols": [ + "https" + ], + "subscriptionKeyParameterNames": { + "header": "Ocp-Apim-Subscription-Key", + "query": "subscription-key" + }, + "apiRevisionDescription": "fixed bug in contract" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiSchema.json index b54bf315d917..8abc966da160 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiSchema.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "59d6bb8f1f7fab13dc67ec9b", - "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d6bb8f1f7fab13dc67ec9b/schemas/ec12520d-9d48-4e7b-8f39-698ca2ac63f1", - "type": "Microsoft.ApiManagement/service/apis/schemas", - "name": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1", - "properties": { - "contentType": "application/vnd.ms-azure-apim.xsd+xml", - "document": { - "value": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "59d6bb8f1f7fab13dc67ec9b", + "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d6bb8f1f7fab13dc67ec9b/schemas/ec12520d-9d48-4e7b-8f39-698ca2ac63f1", + "type": "Microsoft.ApiManagement/service/apis/schemas", + "name": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1", + "properties": { + "contentType": "application/vnd.ms-azure-apim.xsd+xml", + "document": { + "value": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiTag.json index 2f6802e62a29..1da1a0f887a0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiTag.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiTagDescription.json index 10a6298eddfa..04d71289a99a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiTagDescription.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiVersionSet.json index 2a0a478e6328..1e27e9eb9df2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetApiVersionSet.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "versionSetId": "vs1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apiVersionSets/vs1", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs1", - "properties": { - "displayName" : "Version Set 1", - "versioningScheme" : "Segment", - "description" : "Version configuration" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "versionSetId": "vs1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apiVersionSets/vs1", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs1", + "properties": { + "displayName": "Version Set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetAuthorizationServer.json index 314bcca390df..0d2f0f5223f7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetAuthorizationServer.json @@ -1,44 +1,44 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "authsid": "newauthServer2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer2", - "properties": { - "displayName": "test3", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "clientAuthenticationMethod": [ - "Basic" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "authsid": "newauthServer2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer2", + "properties": { + "displayName": "test3", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "clientAuthenticationMethod": [ + "Basic" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetBackend.json index 2d2e9ed6d7ad..0c6daa3cbe50 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetBackend.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetCache.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetCache.json index 4f42b1a02894..c4080c9766a7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetCache.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetCache.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/ApiManagementGetCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetCertificate.json index 0c4540ab74c9..3c02b83d8588 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetCertificate.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "certificateId": "templateCert1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/templateCert1", - "type": "Microsoft.ApiManagement/service/certificates", - "name": "templateCert1", - "properties": { - "subject": "CN=mutual-authcert", - "thumbprint": "EBA**********************8594A6", - "expirationDate": "2017-04-23T17:03:41Z" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "certificateId": "templateCert1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/templateCert1", + "type": "Microsoft.ApiManagement/service/certificates", + "name": "templateCert1", + "properties": { + "subject": "CN=mutual-authcert", + "thumbprint": "EBA**********************8594A6", + "expirationDate": "2017-04-23T17:03:41Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetDiagnostic.json index 024478db6990..ff093e45d988 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetDiagnostic.json @@ -1,11 +1,11 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "diagnosticId": "applicationinsights" - }, + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "diagnosticId": "applicationinsights" + }, "responses": { "200": { "body": { @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetEmailTemplate.json index 748c95fad70f..9e8539bb9ff5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetEmailTemplate.json @@ -1,51 +1,51 @@ { - "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\n \r\n \r\n

Dear $DevFirstName $DevLastName,

\r\n

Thank 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\n

Best,

\r\n

The $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\n \r\n \r\n

Dear $DevFirstName $DevLastName,

\r\n

Thank 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\n

Best,

\r\n

The $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": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" - } - } + "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": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProductTag.json index bd52fdde8aeb..b5e80b1262d5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProductTag.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProperty.json index 57a91182a27d..837d4864d993 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProperty.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "propId": "testarmTemplateproperties2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", - "type": "Microsoft.ApiManagement/service/properties", - "name": "testarmTemplateproperties2", - "properties": { - "displayName": "propName", - "value": "propValue", - "tags": [ - "foo", - "bar" - ], - "secret": false - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "propId": "testarmTemplateproperties2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/properties/testarmTemplateproperties2", + "type": "Microsoft.ApiManagement/service/properties", + "name": "testarmTemplateproperties2", + "properties": { + "displayName": "propName", + "value": "propValue", + "tags": [ + "foo", + "bar" + ], + "secret": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetQuotaCounterKeys.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetQuotaCounterKeys.json index 2dc94cd73615..6242748ed88b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetQuotaCounterKeys.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetQuotaCounterKeys.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "quotaCounterKey": "ba" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "counterKey": "ba", - "periodKey": "0_P3Y6M4DT12H30M5S", - "periodStartTime": "2014-08-04T04:24:35Z", - "periodEndTime": "2018-02-08T16:54:40Z", - "value": { - "callsCount": 5, - "kbTransferred": 2.5830078125 - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "quotaCounterKey": "ba" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "counterKey": "ba", + "periodKey": "0_P3Y6M4DT12H30M5S", + "periodStartTime": "2014-08-04T04:24:35Z", + "periodEndTime": "2018-02-08T16:54:40Z", + "value": { + "callsCount": 5, + "kbTransferred": 2.5830078125 } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json index 2055e1b0514f..29ad0e2fb02c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetQuotaCounterKeysByQuotaPeriod.json @@ -1,24 +1,24 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "quotaCounterKey": "ba", - "quotaPeriodKey": "0_P3Y6M4DT12H30M5S" - }, - "responses": { - "200": { - "body": { - "counterKey": "ba", - "periodKey": "0_P3Y6M4DT12H30M5S", - "periodStartTime": "2014-08-04T04:24:35Z", - "periodEndTime": "2018-02-08T16:54:40Z", - "value": { - "callsCount": 0, - "kbTransferred": 2.5625 - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "quotaCounterKey": "ba", + "quotaPeriodKey": "0_P3Y6M4DT12H30M5S" + }, + "responses": { + "200": { + "body": { + "counterKey": "ba", + "periodKey": "0_P3Y6M4DT12H30M5S", + "periodStartTime": "2014-08-04T04:24:35Z", + "periodEndTime": "2018-02-08T16:54:40Z", + "value": { + "callsCount": 0, + "kbTransferred": 2.5625 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByApi.json index 038f71bbc9c7..ad995316ebbe 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByApi.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByGeo.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByGeo.json index ce8f0bd1db87..a1b10bc028ff 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByGeo.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByGeo.json @@ -1,37 +1,37 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "$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 - } - ], - "nextLink": "" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "$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 + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByOperation.json index 54ddaed0562e..33db72949050 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByOperation.json @@ -1,76 +1,76 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByProduct.json index 9097e233b6c0..f9abb33830ac 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByProduct.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByRequest.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByRequest.json index 0484442bc5a5..1841fb9f2193 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByRequest.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByRequest.json @@ -1,56 +1,56 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsBySubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsBySubscription.json index 9d1e1280e59b..d7c0edcabb82 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsBySubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsBySubscription.json @@ -1,79 +1,79 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByTime.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByTime.json index 57364d6ab1f3..b4b3f6145a5a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByTime.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByTime.json @@ -1,56 +1,56 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByUser.json index e641291e585c..7dc924ad6bda 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetReportsByUser.json @@ -1,73 +1,73 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "$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": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "$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/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetSubscription.json index 25a0bc1feeb0..63f0ff61a314 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetSubscription.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "sid": "5931a769d8d14f0ad8ce13b8" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5931a769d8d14f0ad8ce13b8", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", - "displayName": "Unlimited", - "state": "submitted", - "createdDate": "2017-06-02T17:59:06.223Z", - "primaryKey": "6de0a3b2da204e459148d2f6785873f0", - "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "sid": "5931a769d8d14f0ad8ce13b8" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5931a769d8d14f0ad8ce13b8", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", + "displayName": "Unlimited", + "state": "submitted", + "createdDate": "2017-06-02T17:59:06.223Z", + "primaryKey": "6de0a3b2da204e459148d2f6785873f0", + "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetTag.json index f4bd6f8c21fb..10dc92907c36 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetTag.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "tagId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/tags", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "tag1" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "tagId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/tags", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "tag1" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetTenantAccess.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetTenantAccess.json index 31c3134f608a..29dd54f841ed 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetTenantAccess.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetTenantAccess.json @@ -1,19 +1,19 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "accessName": "access" - }, - "responses": { - "200": { - "body": { - "id": "5600b59375ff190048030003", - "primaryKey": "qr5nbjNoZkgtLojXgU+OA/ntYMgko3XPSVyt+ObwR1sqp2ZkM9tGhwxkeEz7bfAuPS5ss61b2S3ZrZmqa9v3Mw==", - "secondaryKey": "2dCJv1CasJl286SZiKxyBFDiIYCUdbwM1YrFNDcFMXCjCKbFzomrGkv+exAbnV5E3DEk91VP4jbeJ2eV/qtejA==", - "enabled": true - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "accessName": "access" + }, + "responses": { + "200": { + "body": { + "id": "5600b59375ff190048030003", + "primaryKey": "qr5nbjNoZkgtLojXgU+OA/ntYMgko3XPSVyt+ObwR1sqp2ZkM9tGhwxkeEz7bfAuPS5ss61b2S3ZrZmqa9v3Mw==", + "secondaryKey": "2dCJv1CasJl286SZiKxyBFDiIYCUdbwM1YrFNDcFMXCjCKbFzomrGkv+exAbnV5E3DEk91VP4jbeJ2eV/qtejA==", + "enabled": true + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetUser.json index 97b0fad66379..b189fd952073 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetUser.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "userId": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "type": "Microsoft.ApiManagement/service/users", - "name": "5931a75ae4bbd512a88c680b", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foobar@outlook.com", - "state": "active", - "registrationDate": "2017-06-02T17:58:50.357Z", - "identities": [ - { - "provider": "Microsoft", - "id": "*************" - } - ] - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "userId": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "type": "Microsoft.ApiManagement/service/users", + "name": "5931a75ae4bbd512a88c680b", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foobar@outlook.com", + "state": "active", + "registrationDate": "2017-06-02T17:58:50.357Z", + "identities": [ + { + "provider": "Microsoft", + "id": "*************" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApi.json index ffce04519d3d..1a5a668fc937 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApi.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiDiagnostic.json index 5b2f52a4b6a5..724741fc6da7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiDiagnostic.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "diagnosticId": "applicationinsights", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "diagnosticId": "applicationinsights", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssue.json index 2f83899f0b96..19313728801b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssue.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssueAttachment.json index 96b3e67e4e9c..b1b6f5a68fb7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssueAttachment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssueAttachment.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "attachmentId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "attachmentId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssueComment.json index 27b4b080f2c9..c490405e99aa 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssueComment.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiIssueComment.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "commentId": "599e29ab193c3c0bd0b3e2fb" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "commentId": "599e29ab193c3c0bd0b3e2fb" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperation.json index 7a76d4e4a832..3a03e88bbe1e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperation.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "operationId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperationPolicy.json index ab0e2881fe8c..46b868570798 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperationPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperationPolicy.json @@ -1,18 +1,18 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "5600b539c53f5b0062040001", - "operationId": "5600b53ac53f5b0062080006", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "5600b539c53f5b0062040001", + "operationId": "5600b53ac53f5b0062080006", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperationTag.json index 50befa12216a..7400756cd3e9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiOperationTag.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiPolicy.json index 9adb570d1438..64e594bc5ad7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiPolicy.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiRelease.json index 937300a13756..6192e922cfef 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiRelease.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "5a7cb545298324c53224a799" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "5a7cb545298324c53224a799" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiSchema.json index 75382e990288..95d8325c73ac 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiSchema.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiSchema.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "schemaId": "ec12520d-9d48-4e7b-8f39-698ca2ac63f1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiTag.json index 1bb8be574620..8bab9330dad4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiTag.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiTagDescription.json index 1bb8be574620..8bab9330dad4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiTagDescription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiTagDescription.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiVersionSet.json index 10049ad0ed85..9f006577f21d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadApiVersionSet.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "versionSetId": "vs1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "versionSetId": "vs1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadAuthorizationServer.json index ee54db22d341..84d5f462ea54 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadAuthorizationServer.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "authsid": "newauthServer2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "authsid": "newauthServer2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadBackend.json index 7548f4024a1c..5067a4a22079 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadBackend.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "backendId": "sfbackend" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "backendId": "sfbackend" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadCache.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadCache.json index 8a5402aed53b..f043689a5c86 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadCache.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadCache.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadCertificate.json index c570f0e5dcb3..129e83632626 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadCertificate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadCertificate.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "certificateId": "templateCert1" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "certificateId": "templateCert1" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadDelegationSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadDelegationSettings.json index 82c06103321f..d725677f493d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadDelegationSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadDelegationSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadDiagnostic.json index 61f0cbe2fd64..e85d08219455 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadDiagnostic.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "diagnosticId": "applicationinsights" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "diagnosticId": "applicationinsights" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadEmailTemplate.json index 532948b7bea1..d3c406c31d73 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadEmailTemplate.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "templateName": "newIssueNotificationMessage" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadGroup.json index ca58b1bcdcbd..f09acc1db586 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadGroup.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadGroupUser.json index 5bbe3289cee0..992c266d0ac7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadGroupUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadGroupUser.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9", - "userId": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9", + "userId": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadIdentityProvider.json index eda809ed0931..275bff376771 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadIdentityProvider.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "identityProviderName": "aadB2C" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "identityProviderName": "aadB2C" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadLogger.json index 3e012b81512a..199f6e06daf0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadLogger.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "loggerId": "templateLogger" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "loggerId": "templateLogger" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadNotificationRecipientEmail.json index 34f8e99d4afc..9215f59fc684 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadNotificationRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadNotificationRecipientEmail.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "email": "contoso@live.com" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "email": "contoso@live.com" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadNotificationRecipientUser.json index 1116401b7c05..a1824a4d747a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadNotificationRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadNotificationRecipientUser.json @@ -1,14 +1,14 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage", - "userId": "576823d0a40f7e74ec07d642" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage", + "userId": "576823d0a40f7e74ec07d642" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadOpenIdConnectProvider.json index 1406919402f8..52fa3b4a2664 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadOpenIdConnectProvider.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadPolicy.json index d24e14c92b25..d50d3123ee3e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadPolicy.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProduct.json index c3bf71e24bcd..ac73f133e96c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProduct.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "unlimited" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "unlimited" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductApi.json index 2c8dabb61187..7a956877cb8f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductApi.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "5931a75ae4bbd512a88c680b", - "apiId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "5931a75ae4bbd512a88c680b", + "apiId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductGroup.json index 94dee46324b1..4638756008ed 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductGroup.json @@ -1,13 +1,13 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "5931a75ae4bbd512a88c680b", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "5931a75ae4bbd512a88c680b", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductPolicy.json index 4ede639fa402..273ed83f28ff 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductPolicy.json @@ -1,17 +1,17 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "unlimited", - "policyId": "policy" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "unlimited", + "policyId": "policy" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductTag.json index b4ad92c22267..cabc6ba2ad0d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProductTag.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProperty.json index 06f5734ff665..72e4c4c68089 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadProperty.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "propId": "testarmTemplateproperties2" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "propId": "testarmTemplateproperties2" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSignInSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSignInSettings.json index 82c06103321f..d725677f493d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSignInSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSignInSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSignUpSettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSignUpSettings.json index 82c06103321f..d725677f493d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSignUpSettings.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSignUpSettings.json @@ -1,15 +1,15 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSubscription.json index 9ef7cc269e5d..b348b339d3a0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadSubscription.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "sid": "5931a769d8d14f0ad8ce13b8" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "sid": "5931a769d8d14f0ad8ce13b8" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadTag.json index 3abeb18b8a22..06123e4edb54 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadTag.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "tagId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "headers": { - "Etag": "AAAAAAAACCI=" - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "tagId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "headers": { + "Etag": "AAAAAAAACCI=" } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadTenantAccess.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadTenantAccess.json index 0100f08c3b4b..817bccd9156b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadTenantAccess.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadTenantAccess.json @@ -7,6 +7,6 @@ "accessName": "access" }, "responses": { - "200": { } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadUser.json index 6e819c65f734..f9cfac3d1848 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementHeadUser.json @@ -1,16 +1,16 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "userId": "5931a75ae4bbd512a88c680b" - }, - "responses": { - "200": { - "headers": { - "etag": "AAAAAAAAAAa=" - } - } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "userId": "5931a75ae4bbd512a88c680b" + }, + "responses": { + "200": { + "headers": { + "etag": "AAAAAAAAAAa=" + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiDiagnostics.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiDiagnostics.json index f37079ab64d1..2ff4104f2825 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiDiagnostics.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiDiagnostics.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssueAttachments.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssueAttachments.json index b7556fa63f1e..2011466f0784 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssueAttachments.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssueAttachments.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssueComments.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssueComments.json index 6a2b46574d56..4897f2dee58f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssueComments.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssueComments.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a", - "issueId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d1f7558aa04f15146d9d8a", + "issueId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssues.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssues.json index f76ede74f70d..acf873a4d9f8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssues.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiIssues.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d1f7558aa04f15146d9d8a" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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", - "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", + "apiId": "57d1f7558aa04f15146d9d8a" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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", + "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/ApiManagementListApiOperationPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationPolicies.json index c1bebdf9cb7a..36b7028e4aa5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationPolicies.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationTags.json index e0f7be5df4f9..723487394903 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationTags.json @@ -7,21 +7,21 @@ "apiId": "57d2ef278aa04f0888cba3f3", "operationId": "57d2ef278aa04f0888cba3f6" }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperations.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperations.json index bf9f313046db..df32aeb1abcf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperations.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperations.json @@ -1,69 +1,69 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3", - "operationId": "57d2ef278aa04f0ad01d6cdc" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "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" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cda", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cda", - "properties": { - "displayName": "GetMostRecentOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetMostRecentOrder" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd9", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cd9", - "properties": { - "displayName": "GetOpenOrders", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOpenOrders" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cdb", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cdb", - "properties": { - "displayName": "GetOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOrder" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd8", - "type": "Microsoft.ApiManagement/service/apis/operations", - "name": "57d2ef278aa04f0ad01d6cd8", - "properties": { - "displayName": "submitOrder", - "method": "POST", - "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/submitOrder" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3", + "operationId": "57d2ef278aa04f0ad01d6cdc" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "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" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cda", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cda", + "properties": { + "displayName": "GetMostRecentOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetMostRecentOrder" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd9", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cd9", + "properties": { + "displayName": "GetOpenOrders", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOpenOrders" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cdb", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cdb", + "properties": { + "displayName": "GetOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/GetOrder" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cd8", + "type": "Microsoft.ApiManagement/service/apis/operations", + "name": "57d2ef278aa04f0ad01d6cd8", + "properties": { + "displayName": "submitOrder", + "method": "POST", + "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/submitOrder" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationsByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationsByTags.json index 3d0d7840d7b4..2e265efe7cc6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationsByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiOperationsByTags.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/ApiManagementListApiPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiPolicies.json index e53bd5377122..c6e43cbf6d74 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiPolicies.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/ApiManagementListApiProducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiProducts.json index 774762081137..4c5f3f8ddeb3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiProducts.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiProducts.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiReleases.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiReleases.json index 2b54955b3626..772cb7045692 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiReleases.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiReleases.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "a1" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", - "type": "Microsoft.ApiManagement/service/apis/releases", - "name": "5a7cb545298324c53224a799", - "properties": { - "createdDateTime": "2018-02-08T20:38:29.173Z", - "updatedDateTime": "2018-02-08T20:38:29.173Z", - "notes": "yahoo" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "a1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/5a7cb545298324c53224a799", + "type": "Microsoft.ApiManagement/service/apis/releases", + "name": "5a7cb545298324c53224a799", + "properties": { + "createdDateTime": "2018-02-08T20:38:29.173Z", + "updatedDateTime": "2018-02-08T20:38:29.173Z", + "notes": "yahoo" } - } + } + ], + "nextLink": "" + } } + } } diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiRevisions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiRevisions.json index de7c4b99484b..4f37f5f92df3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiRevisions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiRevisions.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1;rev=1", - "apiRevision": "1", - "createdDateTime": "2018-02-01T22:21:20.467Z", - "updatedDateTime": "2018-02-01T22:21:20.467Z", - "isOnline": true, - "isCurrent": true - } - ], - "nextLink": "" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1;rev=1", + "apiRevision": "1", + "createdDateTime": "2018-02-01T22:21:20.467Z", + "updatedDateTime": "2018-02-01T22:21:20.467Z", + "isOnline": true, + "isCurrent": true + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiSchemas.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiSchemas.json index 8081c69ef4ea..91ecdf4f35b0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiSchemas.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiSchemas.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "59d5b28d1f7fab116c282650" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d5b28d1f7fab116c282650/schemas/59d5b28e1f7fab116402044e", - "type": "Microsoft.ApiManagement/service/apis/schemas", - "name": "59d5b28e1f7fab116402044e", - "properties": { - "contentType": "application/vnd.ms-azure-apim.swagger.definitions+json" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "59d5b28d1f7fab116c282650" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/59d5b28d1f7fab116c282650/schemas/59d5b28e1f7fab116402044e", + "type": "Microsoft.ApiManagement/service/apis/schemas", + "name": "59d5b28e1f7fab116402044e", + "properties": { + "contentType": "application/vnd.ms-azure-apim.swagger.definitions+json" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiTagDescriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiTagDescriptions.json index 5b5f459bd959..8f885b519f31 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiTagDescriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiTagDescriptions.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1", - "externalDocsDescription": "some additional info", - "externalDocsUrl": "http://some_url.com" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1", + "externalDocsDescription": "some additional info", + "externalDocsUrl": "http://some_url.com" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiTags.json index 0856405c7edc..57946fc5fa0c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiTags.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiVersionSets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiVersionSets.json index 252ec813e944..82a217af6e88 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiVersionSets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApiVersionSets.json @@ -1,37 +1,37 @@ { - "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/apiVersionSets/vs1", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs1", - "properties": { - "displayName": "api set 1", - "versioningScheme": "Segment", - "description": "Version configuration" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apiVersionSets/vs2", - "type": "Microsoft.ApiManagement/service/api-version-sets", - "name": "vs2", - "properties": { - "displayName": "api set 2", - "versioningScheme": "Query", - "description": "Version configuration 2" - } - } - ], - "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/apiVersionSets/vs1", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs1", + "properties": { + "displayName": "api set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apiVersionSets/vs2", + "type": "Microsoft.ApiManagement/service/api-version-sets", + "name": "vs2", + "properties": { + "displayName": "api set 2", + "versioningScheme": "Query", + "description": "Version configuration 2" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApis.json index 1fd3142ba0dc..6d221bfdd841 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApis.json @@ -1,81 +1,81 @@ { - "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/apis/a1", - "type": "Microsoft.ApiManagement/service/apis", - "name": "a1", - "properties": { - "displayName": "api1", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "api1", - "protocols": [ - "https" - ], - "isCurrent": true, - "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apiVersionSets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a73933b8f27f7cc82a2d533", - "type": "Microsoft.ApiManagement/service/apis", - "name": "5a73933b8f27f7cc82a2d533", - "properties": { - "displayName": "api1", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "api1", - "protocols": [ - "https" - ], - "isCurrent": true, - "apiVersion": "v1", - "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apiVersionSets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", - "type": "Microsoft.ApiManagement/service/apis", - "name": "echo-api", - "properties": { - "displayName": "Echo API", - "apiRevision": "1", - "serviceUrl": "http://echoapi.cloudapp.net/api", - "path": "echo", - "protocols": [ - "https" - ], - "isCurrent": true - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a7390baa5816a110435aee0", - "type": "Microsoft.ApiManagement/service/apis", - "name": "5a7390baa5816a110435aee0", - "properties": { - "displayName": "Swagger Petstore Extensive", - "apiRevision": "1", - "description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", - "serviceUrl": "http://petstore.swagger.wordnik.com/api", - "path": "vvv", - "protocols": [ - "https" - ], - "isCurrent": true - } - } - ], - "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/apis/a1", + "type": "Microsoft.ApiManagement/service/apis", + "name": "a1", + "properties": { + "displayName": "api1", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "api1", + "protocols": [ + "https" + ], + "isCurrent": true, + "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apiVersionSets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a73933b8f27f7cc82a2d533", + "type": "Microsoft.ApiManagement/service/apis", + "name": "5a73933b8f27f7cc82a2d533", + "properties": { + "displayName": "api1", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "api1", + "protocols": [ + "https" + ], + "isCurrent": true, + "apiVersion": "v1", + "apiVersionSetId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apiVersionSets/c48f96c9-1385-4e2d-b410-5ab591ce0fc4" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/echo-api", + "type": "Microsoft.ApiManagement/service/apis", + "name": "echo-api", + "properties": { + "displayName": "Echo API", + "apiRevision": "1", + "serviceUrl": "http://echoapi.cloudapp.net/api", + "path": "echo", + "protocols": [ + "https" + ], + "isCurrent": true + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/5a7390baa5816a110435aee0", + "type": "Microsoft.ApiManagement/service/apis", + "name": "5a7390baa5816a110435aee0", + "properties": { + "displayName": "Swagger Petstore Extensive", + "apiRevision": "1", + "description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", + "serviceUrl": "http://petstore.swagger.wordnik.com/api", + "path": "vvv", + "protocols": [ + "https" + ], + "isCurrent": true + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApisByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApisByTags.json index af2aa7e39c95..b294267fe4bd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApisByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListApisByTags.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListAuthorizationServers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListAuthorizationServers.json index a10fa8bc99a6..bbf9af62c858 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListAuthorizationServers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListAuthorizationServers.json @@ -1,76 +1,76 @@ { - "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/authorizationServers/newauthServer", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer", - "properties": { - "displayName": "test2", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", - "type": "Microsoft.ApiManagement/service/authorizationServers", - "name": "newauthServer2", - "properties": { - "displayName": "test3", - "description": "test server", - "clientRegistrationEndpoint": "https://www.contoso.com/apps", - "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", - "authorizationMethods": [ - "GET" - ], - "clientAuthenticationMethod": [ - "Basic" - ], - "tokenEndpoint": "https://www.contoso.com/oauth2/token", - "supportState": true, - "defaultScope": "read write", - "grantTypes": [ - "authorizationCode", - "implicit" - ], - "bearerTokenSendingMethods": [ - "authorizationHeader" - ], - "clientId": "1", - "clientSecret": "2", - "resourceOwnerUsername": "un", - "resourceOwnerPassword": "pwd" - } - } - ], - "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/authorizationServers/newauthServer", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer", + "properties": { + "displayName": "test2", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer2", + "type": "Microsoft.ApiManagement/service/authorizationServers", + "name": "newauthServer2", + "properties": { + "displayName": "test3", + "description": "test server", + "clientRegistrationEndpoint": "https://www.contoso.com/apps", + "authorizationEndpoint": "https://www.contoso.com/oauth2/auth", + "authorizationMethods": [ + "GET" + ], + "clientAuthenticationMethod": [ + "Basic" + ], + "tokenEndpoint": "https://www.contoso.com/oauth2/token", + "supportState": true, + "defaultScope": "read write", + "grantTypes": [ + "authorizationCode", + "implicit" + ], + "bearerTokenSendingMethods": [ + "authorizationHeader" + ], + "clientId": "1", + "clientSecret": "2", + "resourceOwnerUsername": "un", + "resourceOwnerPassword": "pwd" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListBackends.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListBackends.json index 0e7427a7d014..d452fd02b81c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListBackends.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListBackends.json @@ -1,80 +1,80 @@ { - "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/backends/proxybackend", - "type": "Microsoft.ApiManagement/service/backends", - "name": "proxybackend", - "properties": { - "description": "description5308", - "url": "https://backendname2644/", - "protocol": "http", - "credentials": { - "query": { - "sv": [ - "xx", - "bb", - "cc" - ] - }, - "header": { - "x-my-1": [ - "val1", - "val2" - ] - }, - "authorization": { - "scheme": "Basic", - "parameter": "opensesma" - } - }, - "proxy": { - "url": "http://192.168.1.1:8080", - "username": "Contoso\\admin", - "password": "opensesame" - }, - "tls": { - "validateCertificateChain": false, - "validateCertificateName": false - } - } - }, + "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/backends/proxybackend", + "type": "Microsoft.ApiManagement/service/backends", + "name": "proxybackend", + "properties": { + "description": "description5308", + "url": "https://backendname2644/", + "protocol": "http", + "credentials": { + "query": { + "sv": [ + "xx", + "bb", + "cc" + ] + }, + "header": { + "x-my-1": [ + "val1", + "val2" + ] + }, + "authorization": { + "scheme": "Basic", + "parameter": "opensesma" + } + }, + "proxy": { + "url": "http://192.168.1.1:8080", + "username": "Contoso\\admin", + "password": "opensesame" + }, + "tls": { + "validateCertificateChain": false, + "validateCertificateName": false + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", + "type": "Microsoft.ApiManagement/service/backends", + "name": "sfbackend", + "properties": { + "description": "Service Fabric Test App 1", + "url": "fabric:/mytestapp/mytestservice", + "protocol": "http", + "properties": { + "serviceFabricCluster": { + "managementEndpoints": [ + "https://somecluster.com" + ], + "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", + "serverX509Names": [ { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/sfbackend", - "type": "Microsoft.ApiManagement/service/backends", - "name": "sfbackend", - "properties": { - "description": "Service Fabric Test App 1", - "url": "fabric:/mytestapp/mytestservice", - "protocol": "http", - "properties": { - "serviceFabricCluster": { - "managementEndpoints": [ - "https://somecluster.com" - ], - "clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6", - "serverX509Names": [ - { - "name": "ServerCommonName1", - "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" - } - ], - "maxPartitionResolutionRetries": 5 - } - } - } + "name": "ServerCommonName1", + "issuerCertificateThumbprint": "IssuerCertificateThumbprint1" } - ], - "nextLink": "" + ], + "maxPartitionResolutionRetries": 5 + } + } } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListCaches.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListCaches.json index 2f4a8ab35aba..e9116d0f61e3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListCaches.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListCaches.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/ApiManagementListCertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListCertificates.json index b02343187130..44777a94845a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListCertificates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListCertificates.json @@ -1,27 +1,27 @@ { - "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/certificates/kjoshiarmtemplateCert1", - "type": "Microsoft.ApiManagement/service/certificates", - "name": "templateCert1", - "properties": { - "subject": "CN=mutual-authcert", - "thumbprint": "EBA************************48594A6", - "expirationDate": "2017-04-23T17:03:41Z" - } - } - ], - "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/certificates/kjoshiarmtemplateCert1", + "type": "Microsoft.ApiManagement/service/certificates", + "name": "templateCert1", + "properties": { + "subject": "CN=mutual-authcert", + "thumbprint": "EBA************************48594A6", + "expirationDate": "2017-04-23T17:03:41Z" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListEmailTemplates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListEmailTemplates.json index d4663c02cdd5..e8317e14d096 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListEmailTemplates.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListEmailTemplates.json @@ -1,55 +1,55 @@ { - "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\n \r\n \r\n

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\n

Best,

\r\n

The $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\n \r\n \r\n

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\n

Best,

\r\n

The $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\r\n \r\n \r\n \r\n \r\n \r\n" - } - } - ], - "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/policies/policy", + "type": "Microsoft.ApiManagement/service/policies", + "name": "policy", + "properties": { + "value": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListPolicySnippets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListPolicySnippets.json index cd5da81cfd53..9f6a77d2ca39 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListPolicySnippets.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListPolicySnippets.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "scope":"Api" - }, - "responses": { - "200": { - "body": [ - { - "name": "Authenticate with Basic", - "content": "", - "toolTip": "Authenticate with the backend service using Basic authentication. Use in the inbound section at API scope.", - "scope": 268435471 - } - ] + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "scope": "Api" + }, + "responses": { + "200": { + "body": [ + { + "name": "Authenticate with Basic", + "content": "", + "toolTip": "Authenticate with the backend service using Basic authentication. Use in the inbound section at API scope.", + "scope": 268435471 } + ] } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductApis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductApis.json index 18036907d34f..c5d6531edaad 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductApis.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductApis.json @@ -1,34 +1,34 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "5768181ea40f7eb6c49f6ac7" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7/apis/57681820a40f7eb6c49f6aca", - "type": "Microsoft.ApiManagement/service/products/apis", - "name": "57681820a40f7eb6c49f6aca", - "properties": { - "displayName": "api_57681820a40f7eb6c49f6acb", - "apiRevision": "1", - "description": "description_57681820a40f7eb6c49f6acc", - "serviceUrl": "http://contoso/57681820a40f7eb6c49f6acd", - "path": "suffix_57681820a40f7eb6c49f6ace", - "protocols": [ - "https" - ], - "isCurrent": true - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "5768181ea40f7eb6c49f6ac7" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7/apis/57681820a40f7eb6c49f6aca", + "type": "Microsoft.ApiManagement/service/products/apis", + "name": "57681820a40f7eb6c49f6aca", + "properties": { + "displayName": "api_57681820a40f7eb6c49f6acb", + "apiRevision": "1", + "description": "description_57681820a40f7eb6c49f6acc", + "serviceUrl": "http://contoso/57681820a40f7eb6c49f6acd", + "path": "suffix_57681820a40f7eb6c49f6ace", + "protocols": [ + "https" + ], + "isCurrent": true } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductGroups.json index 99e86518f411..9d346ae80193 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductGroups.json @@ -1,51 +1,51 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "5600b57e7e8880006a060002" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020001", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020001", - "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020002", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020002", - "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020003", - "type": "Microsoft.ApiManagement/service/products/groups", - "name": "5600b57e7e8880006a020003", - "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", + "productId": "5600b57e7e8880006a060002" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020001", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020001", + "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020002", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020002", + "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/products/5600b57e7e8880006a060002/groups/5600b57e7e8880006a020003", + "type": "Microsoft.ApiManagement/service/products/groups", + "name": "5600b57e7e8880006a020003", + "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/ApiManagementListProductPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductPolicies.json index 6f3f9d9c1dea..cf2b43cb5089 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductPolicies.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/ApiManagementListProductSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductSubscriptions.json index 2a2f3be079ef..a3364181e6d8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductSubscriptions.json @@ -1,31 +1,31 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "5600b57e7e8880006a060002" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/subscriptions/5600b57e7e8880006a070002", - "type": "Microsoft.ApiManagement/service/products/subscriptions", - "name": "5600b57e7e8880006a070002", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002", - "state": "active", - "createdDate": "2015-09-22T01:57:18.723Z", - "primaryKey": "ba95768e868648848e215f0290eec023", - "secondaryKey": "140f866def81419b9bb9732d05d24535" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "5600b57e7e8880006a060002" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002/subscriptions/5600b57e7e8880006a070002", + "type": "Microsoft.ApiManagement/service/products/subscriptions", + "name": "5600b57e7e8880006a070002", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b57e7e8880006a060002", + "state": "active", + "createdDate": "2015-09-22T01:57:18.723Z", + "primaryKey": "ba95768e868648848e215f0290eec023", + "secondaryKey": "140f866def81419b9bb9732d05d24535" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductTags.json index afef4f3cfdb5..3ce2e5498a20 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductTags.json @@ -6,21 +6,21 @@ "subscriptionId": "subid", "productId": "57d2ef278aa04f0888cba3f1" }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b539c53f5b0062060002", - "properties": { - "displayName": "tag1" - } - } - ], - "nextLink": "" + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b539c53f5b0062060002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b539c53f5b0062060002", + "properties": { + "displayName": "tag1" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProducts.json index 81ebdb300cb9..57f955c2d42d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProducts.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProducts.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/products/kjoshiarmtemplateCert1", - "type": "Microsoft.ApiManagement/service/products", - "name": "kjoshiarmtemplateCert1", - "properties": { - "displayName": "Dev", - "description": "Development Product", - "subscriptionRequired": false, - "state": "published" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/starter", - "type": "Microsoft.ApiManagement/service/products", - "name": "starter", - "properties": { - "displayName": "Starter", - "description": "Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.", - "terms": "", - "subscriptionRequired": true, - "approvalRequired": false, - "subscriptionsLimit": 1, - "state": "published" - } - }, - { - "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" - } - } - ], - "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/products/kjoshiarmtemplateCert1", + "type": "Microsoft.ApiManagement/service/products", + "name": "kjoshiarmtemplateCert1", + "properties": { + "displayName": "Dev", + "description": "Development Product", + "subscriptionRequired": false, + "state": "published" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/starter", + "type": "Microsoft.ApiManagement/service/products", + "name": "starter", + "properties": { + "displayName": "Starter", + "description": "Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.", + "terms": "", + "subscriptionRequired": true, + "approvalRequired": false, + "subscriptionsLimit": 1, + "state": "published" + } + }, + { + "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" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductsByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductsByTags.json index 4c08b17f828b..d4511cd072cc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductsByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProductsByTags.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/ApiManagementListProperties.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProperties.json index 1af0f16690dc..fdafbcbfad1b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProperties.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListProperties.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListRegions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListRegions.json index 7f41d692eed3..ee5605b47395 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListRegions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListRegions.json @@ -1,23 +1,23 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "West US", - "isMasterRegion": true, - "isDeleted": false - } - ], - "count": 1, - "nextLink": "" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "West US", + "isMasterRegion": true, + "isDeleted": false + } + ], + "count": 1, + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSKUs-Consumption.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSKUs-Consumption.json index 971a6116bc1b..5858c1519ed6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSKUs-Consumption.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSKUs-Consumption.json @@ -1,24 +1,24 @@ { - "parameters": { - "api-version": "2019-01-01", - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Consumption" - }, - "capacity": null - } - ], - "nextLink": null - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01", + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Consumption" + }, + "capacity": null + } + ], + "nextLink": null + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSKUs-Dedicated.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSKUs-Dedicated.json index e7544762e8a3..576ff1d19c40 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSKUs-Dedicated.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSKUs-Dedicated.json @@ -1,65 +1,65 @@ { - "parameters": { - "api-version": "2019-01-01", - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Developer" - }, - "capacity": { - "minimum": 1, - "maximum": 1, - "default": 1, - "scaleType": "none" - } - }, - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Basic" - }, - "capacity": { - "minimum": 1, - "maximum": 2, - "default": 1, - "scaleType": "manual" - } - }, - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Standard" - }, - "capacity": { - "minimum": 1, - "maximum": 4, - "default": 1, - "scaleType": "automatic" - } - }, - { - "resourceType": "Microsoft.ApiManagement/service", - "sku": { - "name": "Premium" - }, - "capacity": { - "minimum": 1, - "maximum": 10, - "default": 1, - "scaleType": "automatic" - } - } - ], - "nextLink": null - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01", + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Developer" + }, + "capacity": { + "minimum": 1, + "maximum": 1, + "default": 1, + "scaleType": "none" + } + }, + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Basic" + }, + "capacity": { + "minimum": 1, + "maximum": 2, + "default": 1, + "scaleType": "manual" + } + }, + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Standard" + }, + "capacity": { + "minimum": 1, + "maximum": 4, + "default": 1, + "scaleType": "automatic" + } + }, + { + "resourceType": "Microsoft.ApiManagement/service", + "sku": { + "name": "Premium" + }, + "capacity": { + "minimum": 1, + "maximum": 10, + "default": 1, + "scaleType": "automatic" + } + } + ], + "nextLink": null + } + } + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListServiceBySubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListServiceBySubscription.json index d8853b820f17..691d11538394 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListServiceBySubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListServiceBySubscription.json @@ -1,164 +1,164 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", - "name": "apimService3", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXXAQ=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-27T15:33:55.5426123Z", - "gatewayUrl": "https://apimService3.azure-api.net", - "portalUrl": "https://apimService3.portal.azure-api.net", - "managementApiUrl": "https://apimService3.management.azure-api.net", - "scmUrl": "https://apimService3.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.88.16.64" - ], - "additionalLocations": [ - { - "location": "West Europe", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "52.233.184.197" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.ApiManagement/service/apimService2", - "name": "apimService2", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW4U=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "MS", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T23:55:31.1405115Z", - "gatewayUrl": "https://apimService2.azure-api.net", - "portalUrl": "https://apimService2.portal.azure-api.net", - "managementApiUrl": "https://apimService2.management.azure-api.net", - "scmUrl": "https://apimService2.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.64.237.151" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Developer", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", - "name": "apimService5", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW5c=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T18:13:02.0196315Z", - "gatewayUrl": "https://apimService5.azure-api.net", - "portalUrl": "https://apimService5.portal.azure-api.net", - "managementApiUrl": "https://apimService5.management.azure-api.net", - "scmUrl": "https://apimService5.scm.azure-api.net", - "hostnameConfigurations": [ - { - "type": "Proxy", - "hostName": "proxytemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname1.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname2.contoso.com", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname2.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname3.azure-api.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname3.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname4.azure-api.net", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname4.contoso.com" - } - }, - { - "type": "Portal", - "hostName": "portaltemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=portaltemplatehostname1.contoso.com" - } - } - ], - "publicIPAddresses": [ - "13.93.167.166" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - } - ] + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", + "name": "apimService3", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXXAQ=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-27T15:33:55.5426123Z", + "gatewayUrl": "https://apimService3.azure-api.net", + "portalUrl": "https://apimService3.portal.azure-api.net", + "managementApiUrl": "https://apimService3.management.azure-api.net", + "scmUrl": "https://apimService3.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.88.16.64" + ], + "additionalLocations": [ + { + "location": "West Europe", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "52.233.184.197" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.ApiManagement/service/apimService2", + "name": "apimService2", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW4U=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "MS", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T23:55:31.1405115Z", + "gatewayUrl": "https://apimService2.azure-api.net", + "portalUrl": "https://apimService2.portal.azure-api.net", + "managementApiUrl": "https://apimService2.management.azure-api.net", + "scmUrl": "https://apimService2.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.64.237.151" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Developer", + "capacity": 1 + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", + "name": "apimService5", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW5c=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T18:13:02.0196315Z", + "gatewayUrl": "https://apimService5.azure-api.net", + "portalUrl": "https://apimService5.portal.azure-api.net", + "managementApiUrl": "https://apimService5.management.azure-api.net", + "scmUrl": "https://apimService5.scm.azure-api.net", + "hostnameConfigurations": [ + { + "type": "Proxy", + "hostName": "proxytemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname1.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname2.contoso.com", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname2.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname3.azure-api.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname3.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname4.azure-api.net", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname4.contoso.com" + } + }, + { + "type": "Portal", + "hostName": "portaltemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=portaltemplatehostname1.contoso.com" + } + } + ], + "publicIPAddresses": [ + "13.93.167.166" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json index 86ace59f82e8..661e02918722 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListServiceBySubscriptionAndResourceGroup.json @@ -1,162 +1,162 @@ { - "parameters": { - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", - "name": "apimService3", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXXAQ=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-27T15:33:55.5426123Z", - "gatewayUrl": "https://apimService3.azure-api.net", - "portalUrl": "https://apimService3.portal.azure-api.net", - "managementApiUrl": "https://apimService3.management.azure-api.net", - "scmUrl": "https://apimService3.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.88.16.64" - ], - "additionalLocations": [ - { - "location": "West Europe", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "52.233.184.197" - ] - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService2", - "name": "apimService2", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW4U=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "MS", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T23:55:31.1405115Z", - "gatewayUrl": "https://apimService2.azure-api.net", - "portalUrl": "https://apimService2.portal.azure-api.net", - "managementApiUrl": "https://apimService2.management.azure-api.net", - "scmUrl": "https://apimService2.scm.azure-api.net", - "hostnameConfigurations": [], - "publicIPAddresses": [ - "13.64.237.151" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Developer", - "capacity": 1 - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", - "name": "apimService5", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAAXW5c=", - "properties": { - "publisherEmail": "admin@live.com", - "publisherName": "contoso", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-05-26T18:13:02.0196315Z", - "gatewayUrl": "https://apimService5.azure-api.net", - "portalUrl": "https://apimService5.portal.azure-api.net", - "managementApiUrl": "https://apimService5.management.azure-api.net", - "scmUrl": "https://apimService5.scm.azure-api.net", - "hostnameConfigurations": [ - { - "type": "Proxy", - "hostName": "proxytemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname1.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname2.contoso.com", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=proxytemplatehostname2.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname3.azure-api.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname3.contoso.com" - } - }, - { - "type": "Proxy", - "hostName": "proxytemplatehostname4.azure-api.net", - "negotiateClientCertificate": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=proxytemplatehostname4.contoso.com" - } - }, - { - "type": "Portal", - "hostName": "portaltemplatehostname1.contoso.com", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", - "subject": "CN=portaltemplatehostname1.contoso.com" - } - } - ], - "publicIPAddresses": [ - "13.93.167.166" - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } - } - ] + "parameters": { + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService3", + "name": "apimService3", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXXAQ=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-27T15:33:55.5426123Z", + "gatewayUrl": "https://apimService3.azure-api.net", + "portalUrl": "https://apimService3.portal.azure-api.net", + "managementApiUrl": "https://apimService3.management.azure-api.net", + "scmUrl": "https://apimService3.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.88.16.64" + ], + "additionalLocations": [ + { + "location": "West Europe", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "52.233.184.197" + ] + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService2", + "name": "apimService2", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW4U=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "MS", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T23:55:31.1405115Z", + "gatewayUrl": "https://apimService2.azure-api.net", + "portalUrl": "https://apimService2.portal.azure-api.net", + "managementApiUrl": "https://apimService2.management.azure-api.net", + "scmUrl": "https://apimService2.scm.azure-api.net", + "hostnameConfigurations": [], + "publicIPAddresses": [ + "13.64.237.151" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Developer", + "capacity": 1 + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService5", + "name": "apimService5", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAAXW5c=", + "properties": { + "publisherEmail": "admin@live.com", + "publisherName": "contoso", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-05-26T18:13:02.0196315Z", + "gatewayUrl": "https://apimService5.azure-api.net", + "portalUrl": "https://apimService5.portal.azure-api.net", + "managementApiUrl": "https://apimService5.management.azure-api.net", + "scmUrl": "https://apimService5.scm.azure-api.net", + "hostnameConfigurations": [ + { + "type": "Proxy", + "hostName": "proxytemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname1.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname2.contoso.com", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=proxytemplatehostname2.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname3.azure-api.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname3.contoso.com" + } + }, + { + "type": "Proxy", + "hostName": "proxytemplatehostname4.azure-api.net", + "negotiateClientCertificate": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=proxytemplatehostname4.contoso.com" + } + }, + { + "type": "Portal", + "hostName": "portaltemplatehostname1.contoso.com", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "DE57B67BA63D21E925DA8BEFA436E6B7553A4C19", + "subject": "CN=portaltemplatehostname1.contoso.com" + } + } + ], + "publicIPAddresses": [ + "13.93.167.166" + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSubscriptions.json index 541492cdedb7..a3e2d9804384 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListSubscriptions.json @@ -1,61 +1,61 @@ { - "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/subscriptions/5600b59475ff190048070001", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5600b59475ff190048070001", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", - "state": "active", - "createdDate": "2015-09-22T01:57:40.3Z", - "primaryKey": "a24782fc06f648cbb1c3406c41dc9a3a", - "secondaryKey": "b366198986614a7497a5a68fae19119d" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/56eaed3dbaf08b06e46d27fe", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "56eaed3dbaf08b06e46d27fe", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", - "displayName": "Starter", - "state": "active", - "createdDate": "2016-03-17T17:45:33.837Z", - "startDate": "2016-03-17T00:00:00Z", - "expirationDate": "2016-04-01T00:00:00Z", - "notificationDate": "2016-03-20T00:00:00Z", - "primaryKey": "77708695e79a495bb99b95f32adfa1f0", - "secondaryKey": "12e2e4ba857e420b88450dc8fe2a6cf9" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", - "type": "Microsoft.ApiManagement/service/subscriptions", - "name": "5931a769d8d14f0ad8ce13b8", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", - "displayName": "Unlimited", - "state": "submitted", - "createdDate": "2017-06-02T17:59:06.223Z", - "primaryKey": "6de0a3b2da204e459148d2f6785873f0", - "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" - } - } - ], - "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/subscriptions/5600b59475ff190048070001", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5600b59475ff190048070001", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", + "state": "active", + "createdDate": "2015-09-22T01:57:40.3Z", + "primaryKey": "a24782fc06f648cbb1c3406c41dc9a3a", + "secondaryKey": "b366198986614a7497a5a68fae19119d" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/56eaed3dbaf08b06e46d27fe", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "56eaed3dbaf08b06e46d27fe", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060001", + "displayName": "Starter", + "state": "active", + "createdDate": "2016-03-17T17:45:33.837Z", + "startDate": "2016-03-17T00:00:00Z", + "expirationDate": "2016-04-01T00:00:00Z", + "notificationDate": "2016-03-20T00:00:00Z", + "primaryKey": "77708695e79a495bb99b95f32adfa1f0", + "secondaryKey": "12e2e4ba857e420b88450dc8fe2a6cf9" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/subscriptions/5931a769d8d14f0ad8ce13b8", + "type": "Microsoft.ApiManagement/service/subscriptions", + "name": "5931a769d8d14f0ad8ce13b8", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5600b59475ff190048060002", + "displayName": "Unlimited", + "state": "submitted", + "createdDate": "2017-06-02T17:59:06.223Z", + "primaryKey": "6de0a3b2da204e459148d2f6785873f0", + "secondaryKey": "c6de00b451f64ea780db1eb8dcf30b62" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListTagResources.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListTagResources.json index 8ca5ea0d25cd..9e9e0087f955 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListTagResources.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListTagResources.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListTags.json index bd3966347dad..c5d05c06118d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListTags.json @@ -1,33 +1,33 @@ { - "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/tags/5600b59375ff190048020001", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b59375ff190048020001", - "properties": { - "displayName": "tag1" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", - "type": "Microsoft.ApiManagement/service/tags", - "name": "5600b59375ff190048020002", - "properties": { - "displayName": "tag2" - } - } - ], - "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/tags/5600b59375ff190048020001", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b59375ff190048020001", + "properties": { + "displayName": "tag1" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020002", + "type": "Microsoft.ApiManagement/service/tags", + "name": "5600b59375ff190048020002", + "properties": { + "displayName": "tag2" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserGroups.json index 6bc4322759ef..ebdc04c038b5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserGroups.json @@ -1,29 +1,29 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "userId": "57681833a40f7eb6c49f6acf" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/groups/5600b57e7e8880006a020002", - "type": "Microsoft.ApiManagement/service/users/groups", - "name": "5600b57e7e8880006a020002", - "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" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "userId": "57681833a40f7eb6c49f6acf" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/groups/5600b57e7e8880006a020002", + "type": "Microsoft.ApiManagement/service/users/groups", + "name": "5600b57e7e8880006a020002", + "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" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserIdentities.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserIdentities.json index 999412f1e2a2..c6e632fbba4f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserIdentities.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserIdentities.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserSubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserSubscriptions.json index 93749316806e..cd83b5c8b0f1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserSubscriptions.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUserSubscriptions.json @@ -1,48 +1,48 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "userId": "57681833a40f7eb6c49f6acf" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6ae3", - "type": "Microsoft.ApiManagement/service/users/subscriptions", - "name": "57681850a40f7eb6c49f6ae3", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", - "displayName": "57681850a40f7eb6c49f6ae5", - "state": "active", - "createdDate": "2016-06-20T16:22:39.547Z", - "startDate": "2016-06-20T00:00:00Z", - "primaryKey": "57681850a40f7eb6c49f6ae4", - "secondaryKey": "bbd884a96b3c41b49f34422dac74b345" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6b2b", - "type": "Microsoft.ApiManagement/service/users/subscriptions", - "name": "57681850a40f7eb6c49f6b2b", - "properties": { - "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", - "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", - "displayName": "57681850a40f7eb6c49f6b2d", - "state": "active", - "createdDate": "2016-06-20T16:22:41.103Z", - "startDate": "2016-06-20T00:00:00Z", - "primaryKey": "57681850a40f7eb6c49f6b2c", - "secondaryKey": "125f565d276647dc825d7f25ea40ee57" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "userId": "57681833a40f7eb6c49f6acf" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6ae3", + "type": "Microsoft.ApiManagement/service/users/subscriptions", + "name": "57681850a40f7eb6c49f6ae3", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", + "displayName": "57681850a40f7eb6c49f6ae5", + "state": "active", + "createdDate": "2016-06-20T16:22:39.547Z", + "startDate": "2016-06-20T00:00:00Z", + "primaryKey": "57681850a40f7eb6c49f6ae4", + "secondaryKey": "bbd884a96b3c41b49f34422dac74b345" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf/subscriptions/57681850a40f7eb6c49f6b2b", + "type": "Microsoft.ApiManagement/service/users/subscriptions", + "name": "57681850a40f7eb6c49f6b2b", + "properties": { + "ownerId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/57681833a40f7eb6c49f6acf", + "scope": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/5768181ea40f7eb6c49f6ac7", + "displayName": "57681850a40f7eb6c49f6b2d", + "state": "active", + "createdDate": "2016-06-20T16:22:41.103Z", + "startDate": "2016-06-20T00:00:00Z", + "primaryKey": "57681850a40f7eb6c49f6b2c", + "secondaryKey": "125f565d276647dc825d7f25ea40ee57" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUsers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUsers.json index 74654aa29801..302b8461aa74 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUsers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListUsers.json @@ -1,71 +1,71 @@ { - "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/users/1", - "type": "Microsoft.ApiManagement/service/users", - "name": "1", - "properties": { - "firstName": "Administrator", - "lastName": "", - "email": "admin@live.com", - "state": "active", - "registrationDate": "2015-09-22T01:57:39.677Z", - "identities": [ - { - "provider": "Azure", - "id": "admin@live.com" - } - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", - "type": "Microsoft.ApiManagement/service/users", - "name": "56eaec62baf08b06e46d27fd", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foo.bar.83@gmail.com", - "state": "active", - "registrationDate": "2016-03-17T17:41:56.327Z", - "identities": [ - { - "provider": "Basic", - "id": "foo.bar.83@gmail.com" - } - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", - "type": "Microsoft.ApiManagement/service/users", - "name": "5931a75ae4bbd512a88c680b", - "properties": { - "firstName": "foo", - "lastName": "bar", - "email": "foobar@outlook.com", - "state": "active", - "registrationDate": "2017-06-02T17:58:50.357Z", - "identities": [ - { - "provider": "Microsoft", - "id": "*************" - } - ] - } - } - ], - "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/users/1", + "type": "Microsoft.ApiManagement/service/users", + "name": "1", + "properties": { + "firstName": "Administrator", + "lastName": "", + "email": "admin@live.com", + "state": "active", + "registrationDate": "2015-09-22T01:57:39.677Z", + "identities": [ + { + "provider": "Azure", + "id": "admin@live.com" + } + ] } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/56eaec62baf08b06e46d27fd", + "type": "Microsoft.ApiManagement/service/users", + "name": "56eaec62baf08b06e46d27fd", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foo.bar.83@gmail.com", + "state": "active", + "registrationDate": "2016-03-17T17:41:56.327Z", + "identities": [ + { + "provider": "Basic", + "id": "foo.bar.83@gmail.com" + } + ] + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/5931a75ae4bbd512a88c680b", + "type": "Microsoft.ApiManagement/service/users", + "name": "5931a75ae4bbd512a88c680b", + "properties": { + "firstName": "foo", + "lastName": "bar", + "email": "foobar@outlook.com", + "state": "active", + "registrationDate": "2017-06-02T17:58:50.357Z", + "identities": [ + { + "provider": "Microsoft", + "id": "*************" + } + ] + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetDelegation.json index 67d5494357d5..ec36bd0a51e2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetDelegation.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/delegation", - "type": "Microsoft.ApiManagement/service/portalsettings", - "name": "delegation", - "properties": { - "url": "http://contoso.com/delegation", - "validationKey": "nVF7aKIvr9mV/RM5lOD0sYoi8ThXTRHQP7o66hvUmjCDkPKR3qxPu/otJcNciz2aQdqPuzJH3ECG4TU2yZjQ7Q==", - "subscriptions": { - "enabled": true - }, - "userRegistration": { - "enabled": true - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/delegation", + "type": "Microsoft.ApiManagement/service/portalsettings", + "name": "delegation", + "properties": { + "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/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetSignIn.json index 0f9218ffa2b8..b6d54ea033d4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetSignIn.json @@ -1,20 +1,20 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signin", - "type": "Microsoft.ApiManagement/service/portalsettings", - "name": "signin", - "properties": { - "enabled": true - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signin", + "type": "Microsoft.ApiManagement/service/portalsettings", + "name": "signin", + "properties": { + "enabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetSignUp.json index 2781d84c29cf..8b84b457ddb0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsGetSignUp.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signup", - "type": "Microsoft.ApiManagement/service/portalsettings", - "name": "signup", - "properties": { - "enabled": true, - "termsOfService": { - "text": "Terms of service text.", - "enabled": true, - "consentRequired": true - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/portalsettings/signup", + "type": "Microsoft.ApiManagement/service/portalsettings", + "name": "signup", + "properties": { + "enabled": true, + "termsOfService": { + "text": "Terms of service text.", + "enabled": true, + "consentRequired": true + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutDelegation.json index 4a9a6bdf8c6c..2d479f6ff32a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutDelegation.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutSignIn.json index 4beed045510a..574fd0667446 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutSignIn.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutSignUp.json index eb58498fbca4..a6a15da30c00 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsPutSignUp.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateDelegation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateDelegation.json index 536e61b78b1c..a11b16bb50cc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateDelegation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateDelegation.json @@ -22,4 +22,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateSignIn.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateSignIn.json index 0000ec30055f..6328b0ed9d25 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateSignIn.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateSignIn.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateSignUp.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateSignUp.json index 8a2049e9832f..3004ff74adab 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateSignUp.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementPortalSettingsUpdateSignUp.json @@ -20,4 +20,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementRestoreService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementRestoreService.json index f805c846207e..ea769d7ffb93 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementRestoreService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementRestoreService.json @@ -1,53 +1,53 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "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=2019-01-01" + } }, - "responses": { - "202": { - "headers": { - "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2019-01-01" - } + "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/stable/2019-01-01/examples/ApiManagementServiceCheckNameAvailability.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceCheckNameAvailability.json index a5686d6d87df..cf1b1f4f5b80 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceCheckNameAvailability.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceCheckNameAvailability.json @@ -4,7 +4,7 @@ "api-version": "2019-01-01", "subscriptionId": "subid", "parameters": { - "name" : "apimService1" + "name": "apimService1" } }, "responses": { @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceDeleteService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceDeleteService.json index c223b3d90e03..5c5ef318f903 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceDeleteService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceDeleteService.json @@ -57,4 +57,4 @@ "204": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetMultiRegionInternalVnet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetMultiRegionInternalVnet.json index d5a0d8ddd444..03f450550fac 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetMultiRegionInternalVnet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetMultiRegionInternalVnet.json @@ -1,88 +1,88 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimservice1", - "name": "apimservice1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAADqC0c=", - "properties": { - "publisherEmail": "abcs@contoso.com", - "publisherName": "contoso publisher", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2018-02-02T01:42:09.1268424Z", - "gatewayUrl": "https://apimservice1.azure-api.net", - "gatewayRegionalUrl": "https://apimservice1-westus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "apimgatewaytest.preview.net", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2019-08-16T16:51:34+00:00", - "thumbprint": "B4330123DBAXXXXXXXXX1F35E84493476", - "subject": "CN=*.preview.net" - }, - "defaultSslBinding": true - } - ], - "publicIPAddresses": [ - "137.XXX.11.74" - ], - "privateIPAddresses": [ - "172.XX.0.5" - ], - "additionalLocations": [ - { - "location": "West US 2", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "40.XXX.79.187" - ], - "privateIPAddresses": [ - "10.0.X.6" - ], - "virtualNetworkConfiguration": { - "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/APIMVNet/subnets/apim-internal-sub" - }, - "gatewayRegionalUrl": "https://apimservice1-westus2-01.regional.azure-api.net" - } - ], - "virtualNetworkConfiguration": { - "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/apim-appGateway-vnet/subnets/apim-subnet" - }, - "customProperties": { - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30": "False", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11": "True", - "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30": "False" - }, - "virtualNetworkType": "Internal" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimservice1", + "name": "apimservice1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAADqC0c=", + "properties": { + "publisherEmail": "abcs@contoso.com", + "publisherName": "contoso publisher", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2018-02-02T01:42:09.1268424Z", + "gatewayUrl": "https://apimservice1.azure-api.net", + "gatewayRegionalUrl": "https://apimservice1-westus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "apimgatewaytest.preview.net", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2019-08-16T16:51:34+00:00", + "thumbprint": "B4330123DBAXXXXXXXXX1F35E84493476", + "subject": "CN=*.preview.net" + }, + "defaultSslBinding": true } + ], + "publicIPAddresses": [ + "137.XXX.11.74" + ], + "privateIPAddresses": [ + "172.XX.0.5" + ], + "additionalLocations": [ + { + "location": "West US 2", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "40.XXX.79.187" + ], + "privateIPAddresses": [ + "10.0.X.6" + ], + "virtualNetworkConfiguration": { + "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/APIMVNet/subnets/apim-internal-sub" + }, + "gatewayRegionalUrl": "https://apimservice1-westus2-01.regional.azure-api.net" + } + ], + "virtualNetworkConfiguration": { + "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/apim-appGateway-vnet/subnets/apim-subnet" + }, + "customProperties": { + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30": "False", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11": "True", + "Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30": "False" + }, + "virtualNetworkType": "Internal" + }, + "sku": { + "name": "Premium", + "capacity": 1 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetNetworkStatus.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetNetworkStatus.json index dd16ff9e9320..97fa0aea7075 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetNetworkStatus.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetNetworkStatus.json @@ -108,4 +108,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json index de6ac8eaaa84..a868ba4e7288 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetNetworkStatusByLocation.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetService.json index d4f4250085fe..782f3982977e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetService.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetService.json @@ -1,89 +1,89 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "Central US", - "etag": "AAAAAAAYP5M=", - "properties": { - "publisherEmail": "contoso@microsoft.com", - "publisherName": "admin", - "notificationSenderEmail": "contoso@live.com", - "provisioningState": "Succeeded", - "targetProvisioningState": "", - "createdAtUtc": "2017-06-28T23:01:33.0667959Z", - "gatewayUrl": "https://apimService1.azure-api.net", - "gatewayRegionalUrl": "https://apimService1-centralus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "proxyhostname4.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Proxy", - "hostName": "proxyhostname9.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": true, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - }, - { - "type": "Portal", - "hostName": "portalhostname2.contoso.net", - "negotiateClientCertificate": false, - "defaultSslBinding": false, - "certificate": { - "expiry": "2018-03-17T21:55:07+00:00", - "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", - "subject": "CN=*.contoso.net" - } - } - ], - "publicIPAddresses": [ - "52.173.22.222" - ], - "additionalLocations": [ - { - "location": "West US", - "sku": { - "name": "Premium", - "capacity": 1 - }, - "publicIPAddresses": [ - "40.78.99.244" - ], - "gatewayRegionalUrl": "https://apimService1-westus-01.regional.azure-api.net" - } - ], - "virtualNetworkType": "None" - }, - "sku": { - "name": "Premium", - "capacity": 1 - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "Central US", + "etag": "AAAAAAAYP5M=", + "properties": { + "publisherEmail": "contoso@microsoft.com", + "publisherName": "admin", + "notificationSenderEmail": "contoso@live.com", + "provisioningState": "Succeeded", + "targetProvisioningState": "", + "createdAtUtc": "2017-06-28T23:01:33.0667959Z", + "gatewayUrl": "https://apimService1.azure-api.net", + "gatewayRegionalUrl": "https://apimService1-centralus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "proxyhostname4.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Proxy", + "hostName": "proxyhostname9.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": true, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } + }, + { + "type": "Portal", + "hostName": "portalhostname2.contoso.net", + "negotiateClientCertificate": false, + "defaultSslBinding": false, + "certificate": { + "expiry": "2018-03-17T21:55:07+00:00", + "thumbprint": "918D7785B926AC5AEE66322778A147BCE7237CF3", + "subject": "CN=*.contoso.net" + } } + ], + "publicIPAddresses": [ + "52.173.22.222" + ], + "additionalLocations": [ + { + "location": "West US", + "sku": { + "name": "Premium", + "capacity": 1 + }, + "publicIPAddresses": [ + "40.78.99.244" + ], + "gatewayRegionalUrl": "https://apimService1-westus-01.regional.azure-api.net" + } + ], + "virtualNetworkType": "None" + }, + "sku": { + "name": "Premium", + "capacity": 1 } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetServiceHavingMsi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetServiceHavingMsi.json index c66a150a02dc..fa494a5a91af 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetServiceHavingMsi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetServiceHavingMsi.json @@ -1,58 +1,58 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", - "name": "apimService1", - "type": "Microsoft.ApiManagement/service", - "tags": {}, - "location": "West US", - "etag": "AAAAAAC2jkE=", - "properties": { - "publisherEmail": "admin@contoso.com", - "publisherName": "Contoso", - "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", - "provisioningState": "Succeeded", - "createdAtUtc": "2017-10-13T16:56:47.0174063Z", - "gatewayUrl": "https://apimService1.azure-api.net", - "gatewayRegionalUrl": "https://apimService1-westus-01.regional.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": [ - { - "type": "Proxy", - "hostName": "foobar.msitesting.net", - "keyVaultId": "https://constoso-msi-keyvault.vault.azure.net/secrets/msitestingCert", - "negotiateClientCertificate": false, - "certificate": { - "expiry": "2036-01-01T07:00:00+00:00", - "thumbprint": "8E98XXX52CAXXXXXXX2C91F1D174FDB3A2", - "subject": "CN=*.msitesting.net" - }, - "defaultSslBinding": true - } - ], - "publicIPAddresses": [ - "13.xx.76.xxx" - ] - }, - "sku": { - "name": "Developer", - "capacity": 1 - }, - "identity": { - "type": "SystemAssigned", - "principalId": "ae7d906a-xxx-408a-xxxx-6b9d60e5756b", - "tenantId": "72f988bf-xxx-41af-xxxx-2d7cd011db47" - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1", + "name": "apimService1", + "type": "Microsoft.ApiManagement/service", + "tags": {}, + "location": "West US", + "etag": "AAAAAAC2jkE=", + "properties": { + "publisherEmail": "admin@contoso.com", + "publisherName": "Contoso", + "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", + "provisioningState": "Succeeded", + "createdAtUtc": "2017-10-13T16:56:47.0174063Z", + "gatewayUrl": "https://apimService1.azure-api.net", + "gatewayRegionalUrl": "https://apimService1-westus-01.regional.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": [ + { + "type": "Proxy", + "hostName": "foobar.msitesting.net", + "keyVaultId": "https://constoso-msi-keyvault.vault.azure.net/secrets/msitestingCert", + "negotiateClientCertificate": false, + "certificate": { + "expiry": "2036-01-01T07:00:00+00:00", + "thumbprint": "8E98XXX52CAXXXXXXX2C91F1D174FDB3A2", + "subject": "CN=*.msitesting.net" + }, + "defaultSslBinding": true } + ], + "publicIPAddresses": [ + "13.xx.76.xxx" + ] + }, + "sku": { + "name": "Developer", + "capacity": 1 + }, + "identity": { + "type": "SystemAssigned", + "principalId": "ae7d906a-xxx-408a-xxxx-6b9d60e5756b", + "tenantId": "72f988bf-xxx-41af-xxxx-2d7cd011db47" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetSsoToken.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetSsoToken.json index 39c1543942d4..ede2565cdbfd 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetSsoToken.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementServiceGetSsoToken.json @@ -12,4 +12,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementSubscriptionRegeneratePrimaryKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementSubscriptionRegeneratePrimaryKey.json index 4cce06771920..b509dcc824ff 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementSubscriptionRegeneratePrimaryKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementSubscriptionRegeneratePrimaryKey.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "sid": "testsub" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "sid": "testsub" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementSubscriptionRegenerateSecondaryKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementSubscriptionRegenerateSecondaryKey.json index 4cce06771920..b509dcc824ff 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementSubscriptionRegenerateSecondaryKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementSubscriptionRegenerateSecondaryKey.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "sid": "testsub" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "sid": "testsub" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantAccessRegenerateKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantAccessRegenerateKey.json index 9a5f903acc2e..9538aa178736 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantAccessRegenerateKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantAccessRegenerateKey.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "accessName": "access" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "accessName": "access" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantAccessSyncState.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantAccessSyncState.json index 67b375c38c70..4ccd9e941543 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantAccessSyncState.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantAccessSyncState.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "configurationName": "configuration" - }, - "responses": { - "200": { - "body": { - "branch": "master", - "commitId": "44c29c27a876372e2ea18d9c381cc493a6a89fc5", - "isExport": true, - "isSynced": false, - "isGitEnabled": true, - "syncDate": "2016-10-24T19:17:14.3641403Z", - "configurationChangeDate": "2017-06-03T00:41:30.9670873Z" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "configurationName": "configuration" + }, + "responses": { + "200": { + "body": { + "branch": "master", + "commitId": "44c29c27a876372e2ea18d9c381cc493a6a89fc5", + "isExport": true, + "isSynced": false, + "isGitEnabled": true, + "syncDate": "2016-10-24T19:17:14.3641403Z", + "configurationChangeDate": "2017-06-03T00:41:30.9670873Z" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationDeploy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationDeploy.json index 4e740e1606df..60ebc18d0a2f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationDeploy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationDeploy.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationSave.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationSave.json index 62123008550d..d7b1aa943df9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationSave.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationSave.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/ApiManagementTenantConfigurationValidate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationValidate.json index 968d21638945..f61b7e494e9e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationValidate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementTenantConfigurationValidate.json @@ -169,4 +169,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApi.json index ae72224d9bb8..e146d0a334cb 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApi.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApi.json @@ -17,4 +17,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiDiagnostic.json index 3d29d7e1f971..b57557445799 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiDiagnostic.json @@ -57,4 +57,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiIssue.json index e951cb5ab38f..b4287790aa1f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiIssue.json @@ -1,19 +1,19 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "issueId": "57d2ef278aa04f0ad01d6cdc", + "apiId": "57d1f7558aa04f15146d9d8a", + "If-Match": "*", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "issueId": "57d2ef278aa04f0ad01d6cdc", - "apiId": "57d1f7558aa04f15146d9d8a", - "If-Match": "*", - "parameters": { - "properties": { - "state": "closed" - } + "properties": { + "state": "closed" } - }, - "responses": { - "204": { } } - } \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiOperation.json index dee1f9894a85..82f3052366f5 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiOperation.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiOperation.json @@ -5,7 +5,7 @@ "api-version": "2019-01-01", "subscriptionId": "subid", "apiId": "echo-api", - "operationId":"operationId", + "operationId": "operationId", "If-Match": "*", "parameters": { "properties": { @@ -47,4 +47,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiRelease.json index 161e332f1231..6d4fba767282 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiRelease.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiRelease.json @@ -1,20 +1,20 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "apiId": "a1", + "releaseId": "testrev", + "If-Match": "*", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "apiId": "a1", - "releaseId": "testrev", - "If-Match": "*", - "parameters": { - "properties": { - "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", - "notes": "yahooagain" - } - } - }, - "responses": { - "204": { } + "properties": { + "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1", + "notes": "yahooagain" + } } -} \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiVersionSet.json index a9655ca050a4..877f98842ff0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiVersionSet.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateApiVersionSet.json @@ -1,20 +1,20 @@ { + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "versionSetId": "api1", + "If-Match": "*", "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "versionSetId": "api1", - "If-Match":"*", - "parameters": { - "properties": { - "displayName" : "api set 1", - "versioningScheme" : "Segment", - "description" : "Version configuration" - } + "properties": { + "displayName": "api set 1", + "versioningScheme": "Segment", + "description": "Version configuration" } - }, - "responses": { - "204": { } } - } \ No newline at end of file + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateAuthorizationServer.json index 6b6698ac2ef7..d5cdd66fdb41 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateAuthorizationServer.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateAuthorizationServer.json @@ -14,6 +14,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateBackend.json index 6f0841238adf..6cd24eb3295e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateBackend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateBackend.json @@ -19,4 +19,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateCache.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateCache.json index ed7d30c90636..cf4fe8535b94 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateCache.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateCache.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateDiagnostic.json index 29a4007fc6ea..3a0a387e5a0b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateDiagnostic.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateDiagnostic.json @@ -56,4 +56,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateEmailTemplate.json index d4c5ff757fd5..7ed6ce5a0d7c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateEmailTemplate.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateEmailTemplate.json @@ -14,6 +14,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateGroup.json index 05ed9777a6ec..bb586591ca51 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateGroup.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateIdentityProvider.json index 5aea6f076f56..e0e6ea521773 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateIdentityProvider.json @@ -16,4 +16,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateLogger.json index 4868a1a0968b..676075eb4707 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateLogger.json @@ -18,4 +18,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateOpenIdConnectProvider.json index f231819b6f04..eb30f5299eaf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateOpenIdConnectProvider.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateProduct.json index c6fb4a10d5bf..db513798b97e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateProduct.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateProperty.json index d0b0915397ca..caa4ca0ff1f4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateProperty.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateProperty.json @@ -19,4 +19,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateQuotaCounterKey.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateQuotaCounterKey.json index 92d57507f457..d15865cc0389 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateQuotaCounterKey.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateQuotaCounterKey.json @@ -13,4 +13,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json index e8664071ea67..60d47d967f40 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json @@ -14,4 +14,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateServiceDisableTls10.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateServiceDisableTls10.json index de2fbd314f32..c4497e25b8db 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateServiceDisableTls10.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateServiceDisableTls10.json @@ -87,4 +87,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateServicePublisherDetails.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateServicePublisherDetails.json index 0db7171133c6..f87e33ecb3fe 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateServicePublisherDetails.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateServicePublisherDetails.json @@ -61,7 +61,7 @@ "location": "West US", "etag": "AAAAAAAYRPs=", "properties": { - "publisherEmail": "foobar@live.com", + "publisherEmail": "foobar@live.com", "publisherName": "Contoso Vnext", "notificationSenderEmail": "apimgmt-noreply@mail.windowsazure.com", "provisioningState": "Succeeded", @@ -86,4 +86,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateSubscription.json index 1a1bf2644518..c6482785108c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateSubscription.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateSubscription.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateTag.json index 1a9018d8b4e0..87a44efa8847 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateTag.json @@ -15,4 +15,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateTenantAccess.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateTenantAccess.json index a2dacf21634e..9fbcb15b72d4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateTenantAccess.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateTenantAccess.json @@ -13,4 +13,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateUser.json index c78e4921fa13..9fc10c1e5925 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUpdateUser.json @@ -15,6 +15,6 @@ } }, "responses": { - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserConfirmationPasswordSend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserConfirmationPasswordSend.json index 0906181ceea7..176aed141a77 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserConfirmationPasswordSend.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserConfirmationPasswordSend.json @@ -1,12 +1,12 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "userId": "57127d485157a511ace86ae7" - }, - "responses": { - "204": { } - } - } \ No newline at end of file + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "userId": "57127d485157a511ace86ae7" + }, + "responses": { + "204": {} + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserGenerateSsoUrl.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserGenerateSsoUrl.json index 1a88852b331e..554e0da53912 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserGenerateSsoUrl.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserGenerateSsoUrl.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserToken.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserToken.json index d972e3c184bc..83a4653db416 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserToken.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementUserToken.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentWorkItemConfigs_API.json b/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentWorkItemConfigs_API.json index 0767f24e563d..5eb133b41a9e 100644 --- a/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentWorkItemConfigs_API.json +++ b/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentWorkItemConfigs_API.json @@ -173,7 +173,7 @@ "responses": { "200": { "description": "The work item configuration that was successfully deleted.", - "schema": { } + "schema": {} } }, "x-ms-examples": { @@ -207,16 +207,16 @@ "description": "successful operation", "schema": { "$ref": "#/definitions/WorkItemConfiguration" - } - } - }, - "x-ms-examples": { - "WorkItemConfigurationsGetDefault": { - "$ref": "./examples/WorkItemConfigGet.json" } } + }, + "x-ms-examples": { + "WorkItemConfigurationsGetDefault": { + "$ref": "./examples/WorkItemConfigGet.json" + } + } }, - "patch" : { + "patch": { "description": "Update a work item configuration for an Application Insights component.", "operationId": "WorkItemConfigurations_UpdateItem", "parameters": [ diff --git a/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigCreate.json b/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigCreate.json index 7ac6f85ef5e2..306927f7a422 100644 --- a/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigCreate.json +++ b/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigCreate.json @@ -25,4 +25,4 @@ "body": {} } } -} \ No newline at end of file +} diff --git a/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigDelete.json b/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigDelete.json index 23bca180c1de..0742113a565c 100644 --- a/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigDelete.json +++ b/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigDelete.json @@ -8,7 +8,7 @@ }, "responses": { "200": { - "body": { } + "body": {} } } } diff --git a/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigGet.json b/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigGet.json index 113066f65184..29ebaa16c45a 100644 --- a/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigGet.json +++ b/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigGet.json @@ -4,17 +4,17 @@ "subscriptionId": "subid", "resourceGroupName": "my-resource-group", "resourceName": "my-component", - "workItemConfigId" : "Visual Studio Team Services" + "workItemConfigId": "Visual Studio Team Services" }, "responses": { "200": { "body": { - "ConnectorId":"d334e2a4-6733-488e-8645-a9fdc1694f41", - "IsDefault":true, - "ConfigDisplayName":"Visual Studio Team Services", - "Id":"Visual Studio Team Services", - "ConfigProperties":"{\"VSOAccountBaseUrl\":\"https://testtodelete.visualstudio.com\",\"ProjectCollection\":\"DefaultCollection\",\"Project\":\"todeletefirst\",\"ResourceId\":\"d0662b05-439a-4a1b-840b-33a7f8b42ebf\",\"ConfigurationType\":\"Standard\",\"WorkItemType\":\"Bug\",\"AreaPath\":\"todeletefirst\",\"AssignedTo\":\"\"}" + "ConnectorId": "d334e2a4-6733-488e-8645-a9fdc1694f41", + "IsDefault": true, + "ConfigDisplayName": "Visual Studio Team Services", + "Id": "Visual Studio Team Services", + "ConfigProperties": "{\"VSOAccountBaseUrl\":\"https://testtodelete.visualstudio.com\",\"ProjectCollection\":\"DefaultCollection\",\"Project\":\"todeletefirst\",\"ResourceId\":\"d0662b05-439a-4a1b-840b-33a7f8b42ebf\",\"ConfigurationType\":\"Standard\",\"WorkItemType\":\"Bug\",\"AreaPath\":\"todeletefirst\",\"AssignedTo\":\"\"}" } } } -} \ No newline at end of file +} diff --git a/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigUpdate.json b/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigUpdate.json index 7240cc900859..9b262e56fb36 100644 --- a/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigUpdate.json +++ b/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/examples/WorkItemConfigUpdate.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/automation/resource-manager/Microsoft.Automation/stable/2015-10-31/schedule.json b/specification/automation/resource-manager/Microsoft.Automation/stable/2015-10-31/schedule.json index 77154365b6b8..8d64104633ed 100644 --- a/specification/automation/resource-manager/Microsoft.Automation/stable/2015-10-31/schedule.json +++ b/specification/automation/resource-manager/Microsoft.Automation/stable/2015-10-31/schedule.json @@ -532,7 +532,6 @@ "type": "string", "description": "Gets or sets the frequency of the schedule.", "$ref": "#/definitions/scheduleFrequency" - }, "timeZone": { "type": "string", diff --git a/specification/automation/resource-manager/Microsoft.Automation/stable/2018-01-15/dscNodeCounts.json b/specification/automation/resource-manager/Microsoft.Automation/stable/2018-01-15/dscNodeCounts.json index 460bed25949c..f27c7f041f6e 100644 --- a/specification/automation/resource-manager/Microsoft.Automation/stable/2018-01-15/dscNodeCounts.json +++ b/specification/automation/resource-manager/Microsoft.Automation/stable/2018-01-15/dscNodeCounts.json @@ -141,7 +141,7 @@ "name": "CountType", "modelAsString": true }, - "x-ms-parameter-location":"method" + "x-ms-parameter-location": "method" } } } diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/ScaleUnit.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/ScaleUnit.json index 05ffb72c81d6..33d362fa0e25 100644 --- a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/ScaleUnit.json +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/ScaleUnit.json @@ -340,14 +340,14 @@ "description": "The subnet IP mask in the example format 10.0.0.0/25.", "type": "array", "items": { - "type": "string" + "type": "string" } }, "vlanId": { "description": "The Vlan ID of the subnet.", "type": "array", "items": { - "type": "string" + "type": "string" } } } @@ -394,7 +394,7 @@ "description": "The list of IP addresses used for TOR communication.", "type": "array", "items": { - "type": "string" + "type": "string" } }, "infrastructureNetwork": { diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ScaleUnit/CreateFromJson.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ScaleUnit/CreateFromJson.json index 28c29905b580..2be04a76e8f2 100644 --- a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ScaleUnit/CreateFromJson.json +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ScaleUnit/CreateFromJson.json @@ -1,34 +1,44 @@ { - "parameters": { - "api-version": "2016-05-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "System.local", - "location": "local", - "scaleUnit": "cluster", - "creationData": { - "clusterName": "cluster", - "physicalNodes": [{ - "name": "machine", - "bmcIPAddress": "192.0.0.1" - }], - "torSwitchBgpAsn": "64703", - "softwareBgpAsn": "64703", - "torSwitchBgpPeerIp": [ - "10.0.0.1" - ], - "InfrastructureNetwork": { - "Subnet": ["10.0.0.1/24"], - "VlanId": ["0"] - }, - "StorageNetwork": { - "Subnet": ["10.0.0.1/24"], - "VlanId": ["0"] - }, - "NetQosPriority": 1 + "parameters": { + "api-version": "2016-05-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "System.local", + "location": "local", + "scaleUnit": "cluster", + "creationData": { + "clusterName": "cluster", + "physicalNodes": [ + { + "name": "machine", + "bmcIPAddress": "192.0.0.1" } - }, - "responses": { - "200": {}, - "202": {} + ], + "torSwitchBgpAsn": "64703", + "softwareBgpAsn": "64703", + "torSwitchBgpPeerIp": [ + "10.0.0.1" + ], + "InfrastructureNetwork": { + "Subnet": [ + "10.0.0.1/24" + ], + "VlanId": [ + "0" + ] + }, + "StorageNetwork": { + "Subnet": [ + "10.0.0.1/24" + ], + "VlanId": [ + "0" + ] + }, + "NetQosPriority": 1 } -} \ No newline at end of file + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/azureactivedirectory.json b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/azureactivedirectory.json index b6eeccb48548..99503ff658de 100644 --- a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/azureactivedirectory.json +++ b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/azureactivedirectory.json @@ -9,12 +9,20 @@ } }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -31,10 +39,14 @@ "paths": { "/providers/microsoft.aadiam/operations": { "get": { - "tags": ["Operations"], + "tags": [ + "Operations" + ], "operationId": "Operations_List", "x-ms-examples": { - "Gets the operations": { "$ref": "./examples/listOperations.json" } + "Gets the operations": { + "$ref": "./examples/listOperations.json" + } }, "description": "Operation to return the list of available operations.", "parameters": [ @@ -60,7 +72,9 @@ }, "/providers/microsoft.aadiam/diagnosticSettings": { "get": { - "tags": ["DiagnosticSettings"], + "tags": [ + "DiagnosticSettings" + ], "operationId": "DiagnosticSettings_List", "description": "Gets the active diagnostic settings list for AadIam.", "parameters": [ @@ -86,12 +100,14 @@ "Gets the diagnostic settings": { "$ref": "./examples/listDiagnosticSettings.json" } - } + } } }, "/providers/microsoft.aadiam/diagnosticSettings/{name}": { "get": { - "tags": ["DiagnosticSettings"], + "tags": [ + "DiagnosticSettings" + ], "operationId": "DiagnosticSettings_Get", "description": "Gets the active diagnostic setting for AadIam.", "parameters": [ @@ -120,13 +136,17 @@ "Gets the diagnostic setting": { "$ref": "./examples/getDiagnosticSetting.json" } - } + } }, "put": { - "tags": ["DiagnosticSettings"], + "tags": [ + "DiagnosticSettings" + ], "operationId": "DiagnosticSettings_CreateOrUpdate", "x-ms-examples": { - "BatchAccountDelete": { "$ref": "./examples/createOrUpdateDiagnosticSetting.json" } + "BatchAccountDelete": { + "$ref": "./examples/createOrUpdateDiagnosticSetting.json" + } }, "description": "Creates or updates diagnostic settings for AadIam.", "parameters": [ @@ -162,7 +182,9 @@ } }, "delete": { - "tags": ["DiagnosticSettings"], + "tags": [ + "DiagnosticSettings" + ], "operationId": "DiagnosticSettings_Delete", "description": "Deletes existing diagnostic setting for AadIam.", "parameters": [ @@ -191,12 +213,14 @@ "Deletes the diagnostic setting": { "$ref": "./examples/deleteDiagnosticSetting.json" } - } + } } }, "/providers/microsoft.aadiam/diagnosticSettingsCategories": { "get": { - "tags": ["DiagnosticSettingsCategories"], + "tags": [ + "DiagnosticSettingsCategories" + ], "operationId": "DiagnosticSettingsCategory_List", "description": "Lists the diagnostic settings categories for AadIam.", "parameters": [ @@ -222,7 +246,7 @@ "Gets the diagnostic setting categories": { "$ref": "./examples/listDiagnosticSettingsCategories.json" } - } + } } } }, @@ -261,18 +285,24 @@ "description": "The number of days for the retention in days. A value of 0 will retain the events indefinitely." } }, - "required": [ "enabled", "days" ], + "required": [ + "enabled", + "days" + ], "description": "Specifies the retention policy for the log." }, "LogSettings": { "properties": { "category": { - "enum": ["AuditLogs", "SignInLogs"], + "enum": [ + "AuditLogs", + "SignInLogs" + ], "type": "string", "x-ms-enum": { "name": "category", "modelAsString": true - }, + }, "description": "Name of a Diagnostic Log category for a resource type this setting is applied to. To obtain the list of Diagnostic Log categories for a resource, first perform a GET diagnostic settings operation." }, "enabled": { @@ -284,14 +314,16 @@ "description": "The retention policy for this log." } }, - "required": [ "enabled" ], + "required": [ + "enabled" + ], "description": "Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular log." }, "DiagnosticSettings": { "properties": { "storageAccountId": { "type": "string", - "description": "The resource ID of the storage account to which you would like to send Diagnostic Logs." + "description": "The resource ID of the storage account to which you would like to send Diagnostic Logs." }, "serviceBusRuleId": { "type": "string", @@ -448,7 +480,9 @@ "DiagnosticSettingsCategory": { "properties": { "categoryType": { - "enum": ["Logs"], + "enum": [ + "Logs" + ], "type": "string", "x-ms-enum": { "name": "categoryType", diff --git a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/createOrUpdateDiagnosticSetting.json b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/createOrUpdateDiagnosticSetting.json index 2898eb0689ed..182d60ea4f15 100644 --- a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/createOrUpdateDiagnosticSetting.json +++ b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/createOrUpdateDiagnosticSetting.json @@ -3,21 +3,21 @@ "name": "mysetting", "api-version": "2017-04-01", "parameters": { - "id":"providers/microsoft.aadiam/diagnosticSettings/mysetting", - "name":"mysetting", - "type":"", + "id": "providers/microsoft.aadiam/diagnosticSettings/mysetting", + "name": "mysetting", + "type": "", "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "workspaceId":"", - "eventHubAuthorizationRuleId":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", "eventHubName": "myeventhub", "logs": [ { - "category":"AuditLogs", - "enabled":true, + "category": "AuditLogs", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ] @@ -28,21 +28,21 @@ "200": { "headers": {}, "body": { - "id":"providers/microsoft.aadiam/diagnosticSettings/mysetting", - "type":"", - "name":"mysetting", + "id": "providers/microsoft.aadiam/diagnosticSettings/mysetting", + "type": "", + "name": "mysetting", "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "workspaceId":"", - "eventHubAuthorizationRuleId":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", "eventHubName": "myeventhub", "logs": [ { - "category":"AuditLogs", - "enabled":true, + "category": "AuditLogs", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ] @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/deleteDiagnosticSetting.json b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/deleteDiagnosticSetting.json index e7205e1b1145..c6032509e39d 100644 --- a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/deleteDiagnosticSetting.json +++ b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/deleteDiagnosticSetting.json @@ -1,16 +1,16 @@ { - "parameters" : { + "parameters": { "name": "mysetting", - "api-version" : "2017-04-01" + "api-version": "2017-04-01" }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "responses": { + "200": { + "headers": {}, + "body": null + }, + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/getDiagnosticSetting.json b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/getDiagnosticSetting.json index 15a49a201c92..0b37f9d97377 100644 --- a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/getDiagnosticSetting.json +++ b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/getDiagnosticSetting.json @@ -1,25 +1,26 @@ { - "parameters" : { + "parameters": { "name": "mysetting", - "api-version" : "2017-04-01" + "api-version": "2017-04-01" }, - "responses" : { - "200" : { - "headers" : {}, - "body" : { - "id" : "providers/microsoft.aadiam/diagnosticSettings/mysetting", - "type" : "", - "name" : "mysetting", - "properties" : { - "storageAccountId" : "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "workspaceId" : "", - "eventHubAuthorizationRuleId" : "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", - "logs" : [{ - "category" : "SignInLogs", - "enabled" : true, - "retentionPolicy" : { - "enabled" : false, - "days" : 0 + "responses": { + "200": { + "headers": {}, + "body": { + "id": "providers/microsoft.aadiam/diagnosticSettings/mysetting", + "type": "", + "name": "mysetting", + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "logs": [ + { + "category": "SignInLogs", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 0 } } ] @@ -27,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listDiagnosticSettings.json b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listDiagnosticSettings.json index dfee025fd5ef..b8c6b1605ea9 100644 --- a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listDiagnosticSettings.json +++ b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listDiagnosticSettings.json @@ -1,31 +1,34 @@ { - "parameters" : { - "api-version" : "2017-04-01-preview" + "parameters": { + "api-version": "2017-04-01-preview" }, - "responses" : { - "200" : { - "headers" : {}, - "body" : { - "value": [{ - "id" : "providers/Microsoft.Aadiam/diagnosticSettings/mysetting", - "type" : "", - "name" : "mysetting", - "properties" : { - "storageAccountId" : "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "workspaceId" : "", - "eventHubAuthorizationRuleId" : "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", - "logs" : [{ - "category" : "SignInLogs", - "enabled" : true, - "retentionPolicy" : { - "enabled" : false, - "days" : 0 + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "providers/Microsoft.Aadiam/diagnosticSettings/mysetting", + "type": "", + "name": "mysetting", + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "logs": [ + { + "category": "SignInLogs", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 0 + } } - } - ] + ] + } } - }] + ] } } } -} \ No newline at end of file +} diff --git a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listDiagnosticSettingsCategories.json b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listDiagnosticSettingsCategories.json index 17186744a44a..7a9f867c7b1f 100644 --- a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listDiagnosticSettingsCategories.json +++ b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listDiagnosticSettingsCategories.json @@ -1,23 +1,23 @@ { - "parameters" : { - "resourceUri" : "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", - "api-version" : "2017-05-01-preview" + "parameters": { + "resourceUri": "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", + "api-version": "2017-05-01-preview" }, - "responses" : { - "200" : { - "headers" : {}, - "body" : { + "responses": { + "200": { + "headers": {}, + "body": { "value": [ { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/providers/microsoft.insights/diagnosticSettingsCategories/WorkflowRuntime", - "type":"microsoft.insights/diagnosticSettingsCategories", - "name":"WorkflowRuntime", + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/providers/microsoft.insights/diagnosticSettingsCategories/WorkflowRuntime", + "type": "microsoft.insights/diagnosticSettingsCategories", + "name": "WorkflowRuntime", "properties": { - "categoryType":"Logs" + "categoryType": "Logs" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listOperations.json b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listOperations.json index 5e3a183d8277..e60252911fe4 100644 --- a/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listOperations.json +++ b/specification/azureactivedirectory/resource-manager/Microsoft.Aadiam/stable/2017-04-01/examples/listOperations.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/AzureStack.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/AzureStack.json index 83cbb972f1cd..29848118296c 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/AzureStack.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/AzureStack.json @@ -1,276 +1,276 @@ { - "swagger": "2.0", - "info": { - "version": "2017-06-01", - "title": "Azure Stack Azure Bridge Client" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/providers/Microsoft.AzureStack/operations": { - "get": { - "x-ms-examples": { - "Returns the list of supported REST operations.": { - "$ref": "./examples/Operation/List.json" - } - }, - "description": "Returns the list of supported REST operations.", - "tags": [ - "AzureStack" - ], - "operationId": "Operations_List", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/OperationList" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "swagger": "2.0", + "info": { + "version": "2017-06-01", + "title": "Azure Stack Azure Bridge Client" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/providers/Microsoft.AzureStack/operations": { + "get": { + "x-ms-examples": { + "Returns the list of supported REST operations.": { + "$ref": "./examples/Operation/List.json" + } + }, + "description": "Returns the list of supported REST operations.", + "tags": [ + "AzureStack" + ], + "operationId": "Operations_List", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/OperationList" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + } + }, + "definitions": { + "Resource": { + "description": "Base resource object.", + "type": "object", + "properties": { + "id": { + "readOnly": true, + "description": "ID of the resource.", + "type": "string" + }, + "name": { + "readOnly": true, + "description": "Name of the resource.", + "type": "string" + }, + "type": { + "readOnly": true, + "description": "Type of Resource.", + "type": "string" + }, + "etag": { + "description": "The entity tag used for optimistic concurrency when modifying the resource.", + "type": "string" } + }, + "x-ms-azure-resource": true }, - "definitions": { - "Resource": { - "description": "Base resource object.", - "type": "object", - "properties": { - "id": { - "readOnly": true, - "description": "ID of the resource.", - "type": "string" - }, - "name": { - "readOnly": true, - "description": "Name of the resource.", - "type": "string" - }, - "type": { - "readOnly": true, - "description": "Type of Resource.", - "type": "string" - }, - "etag": { - "description": "The entity tag used for optimistic concurrency when modifying the resource.", - "type": "string" - } - }, - "x-ms-azure-resource": true + "TrackedResource": { + "description": "Base resource object.", + "type": "object", + "properties": { + "id": { + "readOnly": true, + "description": "ID of the resource.", + "type": "string" }, - "TrackedResource": { - "description": "Base resource object.", - "type": "object", - "properties": { - "id": { - "readOnly": true, - "description": "ID of the resource.", - "type": "string" - }, - "name": { - "readOnly": true, - "description": "Name of the resource.", - "type": "string" - }, - "type": { - "readOnly": true, - "description": "Type of Resource.", - "type": "string" - }, - "location": { - "description": "Location of the resource.", - "type": "string", - "enum": [ - "global" - ], - "x-ms-enum": { - "name": "Location", - "modelAsString": true - }, - "x-ms-mutability": [ - "create", - "read" - ] - }, - "tags": { - "description": "Custom tags for the resource.", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "etag": { - "description": "The entity tag used for optimistic concurrency when modifying the resource.", - "type": "string" - } - }, - "required": [ - "location" - ], - "x-ms-azure-resource": true + "name": { + "readOnly": true, + "description": "Name of the resource.", + "type": "string" }, - "ProvisioningState": { - "description": "The provisioning state of the resource.", - "enum": [ - "Creating", - "Failed", - "Succeeded", - "Canceled" - ], - "type": "string", - "x-ms-enum": { - "name": "ProvisioningState" - } + "type": { + "readOnly": true, + "description": "Type of Resource.", + "type": "string" }, - "Operation": { - "description": "Describes the supported REST operation.", - "properties": { - "name": { - "description": "The name of the operation being performed on this particular object.", - "type": "string" - }, - "display": { - "description": "Contains the localized display information for this particular operation or action.", - "$ref": "#/definitions/Display" - }, - "origin" : { - "description" : "The intended executor of the operation.", - "type" : "string" - } - } + "location": { + "description": "Location of the resource.", + "type": "string", + "enum": [ + "global" + ], + "x-ms-enum": { + "name": "Location", + "modelAsString": true + }, + "x-ms-mutability": [ + "create", + "read" + ] }, - "Display": { - "description": "Contains the localized display information for this particular operation or action.", - "properties": { - "provider": { - "description": "The localized, friendly version of the resource provider name.", - "type": "string" - }, - "resource": { - "description": "The localized, friendly version of the resource type related to this action or operation; the resource type should match the public documentation for the resource provider.", - "type": "string" - }, - "operation": { - "description": "The localized, friendly name for the operation. Use the name as it will displayed to the user.", - "type": "string" - }, - "description": { - "description": "The localized, friendly description for the operation. The description will be displayed to the user. It should be thorough and concise for used in both tooltips and detailed views.", - "type": "string" - } - } + "tags": { + "description": "Custom tags for the resource.", + "type": "object", + "additionalProperties": { + "type": "string" + } }, - "OperationList": { - "description": "List of Operations", - "properties": { - "value": { - "description": "Array of operations", - "type": "array", - "items": { - "$ref": "#/definitions/Operation" - } - }, - "nextLink": { - "description": "URI to the next page of operations.", - "type": "string" - } - } + "etag": { + "description": "The entity tag used for optimistic concurrency when modifying the resource.", + "type": "string" + } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true + }, + "ProvisioningState": { + "description": "The provisioning state of the resource.", + "enum": [ + "Creating", + "Failed", + "Succeeded", + "Canceled" + ], + "type": "string", + "x-ms-enum": { + "name": "ProvisioningState" + } + }, + "Operation": { + "description": "Describes the supported REST operation.", + "properties": { + "name": { + "description": "The name of the operation being performed on this particular object.", + "type": "string" + }, + "display": { + "description": "Contains the localized display information for this particular operation or action.", + "$ref": "#/definitions/Display" }, - "ErrorDetails": { - "description": "The details of the error.", - "properties": { - "code": { - "description": "Error code.", - "type": "string", - "readOnly": true - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string", - "readOnly": true - }, - "target": { - "description": "The target of the particular error.", - "type": "string", - "readOnly": true - } - } - }, - "ErrorResponse": { - "description": "Error response indicates that the service is not able to process the incoming request. The reason is provided in the error message.", - "type": "object", - "properties": { - "error": { - "description": "The details of the error.", - "$ref": "#/definitions/ErrorDetails" - } - } - } + "origin": { + "description": "The intended executor of the operation.", + "type": "string" + } + } }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "description": "Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", - "required": true, - "type": "string" + "Display": { + "description": "Contains the localized display information for this particular operation or action.", + "properties": { + "provider": { + "description": "The localized, friendly version of the resource provider name.", + "type": "string" }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "Client API Version.", - "required": true, - "type": "string", - "default": "2017-06-01" + "resource": { + "description": "The localized, friendly version of the resource type related to this action or operation; the resource type should match the public documentation for the resource provider.", + "type": "string" }, - "ResourceGroupNameParameter": { - "description": "Name of the resource group.", - "name": "resourceGroup", - "in": "path", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" + "operation": { + "description": "The localized, friendly name for the operation. Use the name as it will displayed to the user.", + "type": "string" }, - "RegistrationNameParameter": { - "description": "Name of the Azure Stack registration.", - "name": "registrationName", - "in": "path", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" + "description": { + "description": "The localized, friendly description for the operation. The description will be displayed to the user. It should be thorough and concise for used in both tooltips and detailed views.", + "type": "string" } + } }, - "securityDefinitions": { - "azure_auth": { - "type": "oauth2", - "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "flow": "implicit", - "description": "Authorization uses an Azure Active Directory OAuth2 flow.", - "scopes": { - "user_impersonation": "impersonate your user account" - } + "OperationList": { + "description": "List of Operations", + "properties": { + "value": { + "description": "Array of operations", + "type": "array", + "items": { + "$ref": "#/definitions/Operation" + } + }, + "nextLink": { + "description": "URI to the next page of operations.", + "type": "string" } + } }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "ErrorDetails": { + "description": "The details of the error.", + "properties": { + "code": { + "description": "Error code.", + "type": "string", + "readOnly": true + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string", + "readOnly": true + }, + "target": { + "description": "The target of the particular error.", + "type": "string", + "readOnly": true + } + } + }, + "ErrorResponse": { + "description": "Error response indicates that the service is not able to process the incoming request. The reason is provided in the error message.", + "type": "object", + "properties": { + "error": { + "description": "The details of the error.", + "$ref": "#/definitions/ErrorDetails" } - ] -} \ No newline at end of file + } + } + }, + "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "description": "Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + "required": true, + "type": "string" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "description": "Client API Version.", + "required": true, + "type": "string", + "default": "2017-06-01" + }, + "ResourceGroupNameParameter": { + "description": "Name of the resource group.", + "name": "resourceGroup", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "RegistrationNameParameter": { + "description": "Name of the Azure Stack registration.", + "name": "registrationName", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + } + }, + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Authorization uses an Azure Active Directory OAuth2 flow.", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/CustomerSubscription.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/CustomerSubscription.json index 8cf39d4fe8d2..194fc6e4914e 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/CustomerSubscription.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/CustomerSubscription.json @@ -1,269 +1,269 @@ { - "swagger": "2.0", - "info": { - "version": "2017-06-01", - "title": "AzureStack Azure Bridge Client" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/customerSubscriptions": { - "get": { - "x-ms-examples": { - "Returns a list of products.": { - "$ref": "examples/CustomerSubscription/List.json" - } - }, - "tags": [ - "CustomerSubscription" - ], - "description": "Returns a list of products.", - "operationId": "CustomerSubscriptions_List", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/CustomerSubscriptionList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "AzureStack.json#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } + "swagger": "2.0", + "info": { + "version": "2017-06-01", + "title": "AzureStack Azure Bridge Client" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/customerSubscriptions": { + "get": { + "x-ms-examples": { + "Returns a list of products.": { + "$ref": "examples/CustomerSubscription/List.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/customerSubscriptions/{customerSubscriptionName}": { - "get": { - "x-ms-examples": { - "Returns the specified product.": { - "$ref": "examples/CustomerSubscription/Get.json" - } - }, - "tags": [ - "CustomerSubscription" - ], - "description": "Returns the specified product.", - "operationId": "CustomerSubscriptions_Get", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "#/parameters/CustomerSubscriptionNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/CustomerSubscription" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "AzureStack.json#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Deletes a customer subscription under a registration.": { - "$ref": "examples/CustomerSubscription/Delete.json" - } - }, - "tags": [ - "CustomerSubscription" - ], - "description": "Deletes a customer subscription under a registration.", - "operationId": "CustomerSubscriptions_Delete", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "#/parameters/CustomerSubscriptionNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "NO CONTENT" - } - } - }, - "put": { - "x-ms-examples": { - "Creates a new customer subscription under a registration.": { - "$ref": "examples/CustomerSubscription/Put.json" - } - }, - "tags": [ - "CustomerSubscription" - ], - "description": "Creates a new customer subscription under a registration.", - "operationId": "CustomerSubscriptions_Create", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "#/parameters/CustomerSubscriptionNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/CustomerSubscriptionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/CustomerSubscription" - } - } - } + "tags": [ + "CustomerSubscription" + ], + "description": "Returns a list of products.", + "operationId": "CustomerSubscriptions_List", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/CustomerSubscriptionList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "AzureStack.json#/definitions/ErrorResponse" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "definitions": { - "CustomerSubscription": { - "description": "Customer subscription.", - "type": "object", - "properties": { - "properties": { - "description": "Customer subscription properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/CustomerSubscriptionProperties" - } - }, - "allOf": [ - { - "$ref": "AzureStack.json#/definitions/Resource" - } - ] + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/customerSubscriptions/{customerSubscriptionName}": { + "get": { + "x-ms-examples": { + "Returns the specified product.": { + "$ref": "examples/CustomerSubscription/Get.json" + } }, - "CustomerSubscriptionProperties": { - "description": "Customer subscription properties.", - "type": "object", - "properties": { - "tenantId": { - "description": "Tenant Id.", - "type": "string" - } + "tags": [ + "CustomerSubscription" + ], + "description": "Returns the specified product.", + "operationId": "CustomerSubscriptions_Get", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "#/parameters/CustomerSubscriptionNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/CustomerSubscription" } - }, - "CustomerSubscriptionList": { - "description": "Pageable list of customer subscriptions.", - "type": "object", - "properties": { - "nextLink": { - "description": "URI to the next page.", - "type": "string" - }, - "value": { - "description": "List of customer subscriptions.", - "type": "array", - "items": { - "$ref": "#/definitions/CustomerSubscription" - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "AzureStack.json#/definitions/ErrorResponse" } + } } - }, - "parameters": { - "CustomerSubscriptionNameParameter": { - "description": "Name of the product.", - "name": "customerSubscriptionName", - "type": "string", - "in": "path", - "required": true, - "x-ms-parameter-location": "method" + }, + "delete": { + "x-ms-examples": { + "Deletes a customer subscription under a registration.": { + "$ref": "examples/CustomerSubscription/Delete.json" + } }, - "CustomerSubscriptionParameter": { - "description": "Parameters use to create a customer subscription.", - "name": "customerCreationParameters", + "tags": [ + "CustomerSubscription" + ], + "description": "Deletes a customer subscription under a registration.", + "operationId": "CustomerSubscriptions_Delete", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "#/parameters/CustomerSubscriptionNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "NO CONTENT" + } + } + }, + "put": { + "x-ms-examples": { + "Creates a new customer subscription under a registration.": { + "$ref": "examples/CustomerSubscription/Put.json" + } + }, + "tags": [ + "CustomerSubscription" + ], + "description": "Creates a new customer subscription under a registration.", + "operationId": "CustomerSubscriptions_Create", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "#/parameters/CustomerSubscriptionNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/CustomerSubscriptionParameter" + } + ], + "responses": { + "200": { + "description": "OK", "schema": { - "$ref": "#/definitions/CustomerSubscription" - }, - "in": "body", - "required": true, - "x-ms-parameter-location": "method" + "$ref": "#/definitions/CustomerSubscription" + } + } + } + } + } + }, + "definitions": { + "CustomerSubscription": { + "description": "Customer subscription.", + "type": "object", + "properties": { + "properties": { + "description": "Customer subscription properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/CustomerSubscriptionProperties" + } + }, + "allOf": [ + { + "$ref": "AzureStack.json#/definitions/Resource" } + ] }, - "securityDefinitions": { - "azure_auth": { - "type": "oauth2", - "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "flow": "implicit", - "description": "Authorization uses an Azure Active Directory OAuth2 flow.", - "scopes": { - "user_impersonation": "impersonate your user account" - } + "CustomerSubscriptionProperties": { + "description": "Customer subscription properties.", + "type": "object", + "properties": { + "tenantId": { + "description": "Tenant Id.", + "type": "string" } + } }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "CustomerSubscriptionList": { + "description": "Pageable list of customer subscriptions.", + "type": "object", + "properties": { + "nextLink": { + "description": "URI to the next page.", + "type": "string" + }, + "value": { + "description": "List of customer subscriptions.", + "type": "array", + "items": { + "$ref": "#/definitions/CustomerSubscription" + } } - ] -} \ No newline at end of file + } + } + }, + "parameters": { + "CustomerSubscriptionNameParameter": { + "description": "Name of the product.", + "name": "customerSubscriptionName", + "type": "string", + "in": "path", + "required": true, + "x-ms-parameter-location": "method" + }, + "CustomerSubscriptionParameter": { + "description": "Parameters use to create a customer subscription.", + "name": "customerCreationParameters", + "schema": { + "$ref": "#/definitions/CustomerSubscription" + }, + "in": "body", + "required": true, + "x-ms-parameter-location": "method" + } + }, + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Authorization uses an Azure Active Directory OAuth2 flow.", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/Product.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/Product.json index 68db9546699f..9b093117a3fd 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/Product.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/Product.json @@ -1,510 +1,510 @@ { - "swagger": "2.0", - "info": { - "version": "2017-06-01", - "title": "AzureStack Azure Bridge Client" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/products": { - "get": { - "x-ms-examples": { - "Returns a list of products.": { - "$ref": "examples/Product/List.json" - } - }, - "tags": [ - "Product" - ], - "description": "Returns a list of products.", - "operationId": "Products_List", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ProductList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "AzureStack.json#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } + "swagger": "2.0", + "info": { + "version": "2017-06-01", + "title": "AzureStack Azure Bridge Client" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/products": { + "get": { + "x-ms-examples": { + "Returns a list of products.": { + "$ref": "examples/Product/List.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/products/{productName}": { - "get": { - "x-ms-examples": { - "Returns the specified product.": { - "$ref": "examples/Product/Get.json" - } - }, - "tags": [ - "Product" - ], - "description": "Returns the specified product.", - "operationId": "Products_Get", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "#/parameters/ProductNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Product" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "AzureStack.json#/definitions/ErrorResponse" - } - } - } + "tags": [ + "Product" + ], + "description": "Returns a list of products.", + "operationId": "Products_List", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ProductList" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/products/{productName}/listDetails": { - "post": { - "x-ms-examples": { - "Returns the extended properties of a product.": { - "$ref": "examples/Product/Post.json" - } - }, - "tags": [ - "Product" - ], - "description": "Returns the extended properties of a product.", - "operationId": "Products_ListDetails", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "#/parameters/ProductNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ExtendedProduct" - } - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "AzureStack.json#/definitions/ErrorResponse" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "definitions": { - "ComputeRole": { - "description": "Compute role type (IaaS or PaaS).", - "type": "string", - "enum": [ - "None", - "IaaS", - "PaaS" - ], - "x-ms-enum": { - "name": "ComputeRole", - "modelAsString": true - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/products/{productName}": { + "get": { + "x-ms-examples": { + "Returns the specified product.": { + "$ref": "examples/Product/Get.json" + } }, - "OperatingSystem": { - "description": "Operating system type (Windows or Linux).", - "type": "string", - "enum": [ - "None", - "Windows", - "Linux" - ], - "x-ms-enum": { - "name": "OperatingSystem", - "modelAsString": true + "tags": [ + "Product" + ], + "description": "Returns the specified product.", + "operationId": "Products_Get", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "#/parameters/ProductNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Product" } - }, - "Uri": { - "description": "The URI.", - "type": "object", - "properties": { - "uri": { - "description": "The URI.", - "type": "string", - "readOnly": true - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "AzureStack.json#/definitions/ErrorResponse" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/products/{productName}/listDetails": { + "post": { + "x-ms-examples": { + "Returns the extended properties of a product.": { + "$ref": "examples/Product/Post.json" + } }, - "ExtendedProduct": { - "description": "Extended description about the product required for installing it into Azure Stack.", - "type": "object", - "properties": { - "galleryPackageBlobSasUri": { - "description": "The URI to the .azpkg file that provides information required for showing product in the gallery.", - "type": "string", - "readOnly": true - }, - "productKind": { - "description": "Specifies the kind of the product (virtualMachine or virtualMachineExtension).", - "type": "string", - "readOnly": true - }, - "properties": { - "description": "Specifies additional properties describing the product.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/ExtendedProductProperties", - "readOnly": true - } + "tags": [ + "Product" + ], + "description": "Returns the extended properties of a product.", + "operationId": "Products_ListDetails", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "#/parameters/ProductNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ExtendedProduct" } + } + } + } + } + }, + "definitions": { + "ComputeRole": { + "description": "Compute role type (IaaS or PaaS).", + "type": "string", + "enum": [ + "None", + "IaaS", + "PaaS" + ], + "x-ms-enum": { + "name": "ComputeRole", + "modelAsString": true + } + }, + "OperatingSystem": { + "description": "Operating system type (Windows or Linux).", + "type": "string", + "enum": [ + "None", + "Windows", + "Linux" + ], + "x-ms-enum": { + "name": "OperatingSystem", + "modelAsString": true + } + }, + "Uri": { + "description": "The URI.", + "type": "object", + "properties": { + "uri": { + "description": "The URI.", + "type": "string", + "readOnly": true + } + } + }, + "ExtendedProduct": { + "description": "Extended description about the product required for installing it into Azure Stack.", + "type": "object", + "properties": { + "galleryPackageBlobSasUri": { + "description": "The URI to the .azpkg file that provides information required for showing product in the gallery.", + "type": "string", + "readOnly": true }, - "ExtendedProductProperties": { - "description": "Product information.", - "type": "object", - "properties": {}, - "allOf": [ - { - "$ref": "#/definitions/VirtualMachineExtensionProductProperties" - }, - { - "$ref": "#/definitions/VirtualMachineProductProperties" - } - ] - }, - "VirtualMachineExtensionProductProperties": { - "description": "Product information.", - "type": "object", - "properties": { - "computeRole": { - "description": "Specifies kind of compute role included in the package.", - "$ref": "#/definitions/ComputeRole", - "readOnly": true - }, - "isSystemExtension": { - "description": "Specifies if product is a Virtual Machine Extension.", - "type": "boolean", - "readOnly": true - }, - "sourceBlob": { - "description": "Specifies a download location where content can be downloaded from.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/Uri", - "readOnly": true - }, - "supportMultipleExtensions": { - "description": "Indicates if specified product supports multiple extensions.", - "type": "boolean", - "readOnly": true - }, - "version": { - "description": "Specifies product version.", - "type": "string", - "readOnly": true - }, - "vmOsType": { - "description": "Specifies operating system used by the product.", - "$ref": "#/definitions/OperatingSystem", - "readOnly": true - }, - "vmScaleSetEnabled": { - "description": "Indicates if virtual machine Scale Set is enabled in the specified product.", - "type": "boolean", - "readOnly": true - } - } + "productKind": { + "description": "Specifies the kind of the product (virtualMachine or virtualMachineExtension).", + "type": "string", + "readOnly": true }, - "VirtualMachineProductProperties": { - "description": "Product information.", - "type": "object", - "properties": { - "version": { - "description": "Specifies product version.", - "type": "string", - "readOnly": true - }, - "osDiskImage": { - "description": "OS disk image used by product.", - "$ref": "#/definitions/OsDiskImage", - "readOnly": true - }, - "dataDiskImages": { - "description": "List of attached data disks.", - "type": "array", - "items": { - "$ref": "#/definitions/DataDiskImage" - }, - "readOnly": true - } - } + "properties": { + "description": "Specifies additional properties describing the product.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/ExtendedProductProperties", + "readOnly": true + } + } + }, + "ExtendedProductProperties": { + "description": "Product information.", + "type": "object", + "properties": {}, + "allOf": [ + { + "$ref": "#/definitions/VirtualMachineExtensionProductProperties" }, - "OsDiskImage": { - "description": "OS disk image.", - "type": "object", - "properties": { - "operatingSystem": { - "description": "OS operating system type.", - "$ref": "#/definitions/OperatingSystem", - "readOnly": true - }, - "sourceBlobSasUri": { - "description": "SAS key for source blob.", - "type": "string", - "readOnly": true - } - } + { + "$ref": "#/definitions/VirtualMachineProductProperties" + } + ] + }, + "VirtualMachineExtensionProductProperties": { + "description": "Product information.", + "type": "object", + "properties": { + "computeRole": { + "description": "Specifies kind of compute role included in the package.", + "$ref": "#/definitions/ComputeRole", + "readOnly": true }, - "DataDiskImage": { - "description": "Data disk image.", - "type": "object", - "properties": { - "lun": { - "description": "The LUN.", - "type": "integer", - "format": "int32", - "readOnly": true - }, - "sourceBlobSasUri": { - "description": "SAS key for source blob.", - "type": "string", - "readOnly": true - } - } + "isSystemExtension": { + "description": "Specifies if product is a Virtual Machine Extension.", + "type": "boolean", + "readOnly": true }, - "Product": { - "description": "Product information.", - "type": "object", - "properties": { - "properties": { - "description": "Properties of the product resource.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/ProductNestedProperties" - } - }, - "allOf": [ - { - "$ref": "AzureStack.json#/definitions/Resource" - } - ] - }, - "ProductNestedProperties": { - "description": "Properties portion of the product resource.", - "type": "object", - "properties": { - "displayName": { - "description": "The display name of the product.", - "type": "string" - }, - "description": { - "description": "The description of the product.", - "type": "string" - }, - "publisherDisplayName": { - "description": "The user-friendly name of the product publisher.", - "type": "string" - }, - "publisherIdentifier": { - "description": "Publisher identifier.", - "type": "string" - }, - "offer": { - "description": "The offer representing the product.", - "type": "string" - }, - "offerVersion": { - "description": "The version of the product offer.", - "type": "string" - }, - "sku": { - "description": "The product SKU.", - "type": "string" - }, - "billingPartNumber": { - "description": "The part number used for billing purposes.", - "type": "string" - }, - "vmExtensionType": { - "description": "The type of the Virtual Machine Extension.", - "type": "string" - }, - "galleryItemIdentity": { - "description": "The identifier of the gallery item corresponding to the product.", - "type": "string" - }, - "iconUris": { - "description": "Additional links available for this product.", - "$ref": "#/definitions/IconUris" - }, - "links": { - "description": "Additional links available for this product.", - "type": "array", - "items": { - "$ref": "#/definitions/ProductLink" - } - }, - "legalTerms": { - "description": "The legal terms.", - "type": "string" - }, - "privacyPolicy": { - "description": "The privacy policy.", - "type": "string" - }, - "payloadLength": { - "description": "The length of product content.", - "type": "integer", - "format" : "int64" - }, - "productKind": { - "description": "The kind of the product (virtualMachine or virtualMachineExtension)", - "type": "string" - }, - "productProperties": { - "description": "Additional properties for the product.", - "$ref": "#/definitions/ProductProperties" - } - } + "sourceBlob": { + "description": "Specifies a download location where content can be downloaded from.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/Uri", + "readOnly": true }, - "IconUris": { - "description": "Links to product icons.", - "type": "object", - "properties": { - "large": { - "description": "URI to large icon.", - "type": "string" - }, - "wide": { - "description": "URI to wide icon.", - "type": "string" - }, - "medium": { - "description": "URI to medium icon.", - "type": "string" - }, - "small": { - "description": "URI to small icon.", - "type": "string" - }, - "hero": { - "description": "URI to hero icon.", - "type": "string" - } - } + "supportMultipleExtensions": { + "description": "Indicates if specified product supports multiple extensions.", + "type": "boolean", + "readOnly": true }, - "ProductProperties": { - "description": "Additional properties of the product", - "type": "object", - "properties": { - "version": { - "description": "The version.", - "type": "string" - } - } + "version": { + "description": "Specifies product version.", + "type": "string", + "readOnly": true }, - "ProductLink": { - "description": "Link with additional information about a product.", - "type": "object", - "properties": { - "displayName": { - "description": "The description of the link.", - "type": "string" - }, - "uri": { - "description": "The URI corresponding to the link.", - "type": "string" - } - } + "vmOsType": { + "description": "Specifies operating system used by the product.", + "$ref": "#/definitions/OperatingSystem", + "readOnly": true }, - "ProductList": { - "description": "Pageable list of products.", - "type": "object", - "properties": { - "nextLink": { - "description": "URI to the next page.", - "type": "string" - }, - "value": { - "description": "List of products.", - "type": "array", - "items": { - "$ref": "#/definitions/Product" - } - } - } + "vmScaleSetEnabled": { + "description": "Indicates if virtual machine Scale Set is enabled in the specified product.", + "type": "boolean", + "readOnly": true + } + } + }, + "VirtualMachineProductProperties": { + "description": "Product information.", + "type": "object", + "properties": { + "version": { + "description": "Specifies product version.", + "type": "string", + "readOnly": true + }, + "osDiskImage": { + "description": "OS disk image used by product.", + "$ref": "#/definitions/OsDiskImage", + "readOnly": true + }, + "dataDiskImages": { + "description": "List of attached data disks.", + "type": "array", + "items": { + "$ref": "#/definitions/DataDiskImage" + }, + "readOnly": true } + } }, - "parameters": { - "ProductNameParameter": { - "description": "Name of the product.", - "name": "productName", - "type": "string", - "in": "path", - "required": true, - "x-ms-parameter-location": "method" + "OsDiskImage": { + "description": "OS disk image.", + "type": "object", + "properties": { + "operatingSystem": { + "description": "OS operating system type.", + "$ref": "#/definitions/OperatingSystem", + "readOnly": true + }, + "sourceBlobSasUri": { + "description": "SAS key for source blob.", + "type": "string", + "readOnly": true } + } }, - "securityDefinitions": { - "azure_auth": { - "type": "oauth2", - "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "flow": "implicit", - "description": "Authorization uses an Azure Active Directory OAuth2 flow.", - "scopes": { - "user_impersonation": "impersonate your user account" - } + "DataDiskImage": { + "description": "Data disk image.", + "type": "object", + "properties": { + "lun": { + "description": "The LUN.", + "type": "integer", + "format": "int32", + "readOnly": true + }, + "sourceBlobSasUri": { + "description": "SAS key for source blob.", + "type": "string", + "readOnly": true } + } }, - "security": [ + "Product": { + "description": "Product information.", + "type": "object", + "properties": { + "properties": { + "description": "Properties of the product resource.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/ProductNestedProperties" + } + }, + "allOf": [ { - "azure_auth": [ - "user_impersonation" - ] + "$ref": "AzureStack.json#/definitions/Resource" + } + ] + }, + "ProductNestedProperties": { + "description": "Properties portion of the product resource.", + "type": "object", + "properties": { + "displayName": { + "description": "The display name of the product.", + "type": "string" + }, + "description": { + "description": "The description of the product.", + "type": "string" + }, + "publisherDisplayName": { + "description": "The user-friendly name of the product publisher.", + "type": "string" + }, + "publisherIdentifier": { + "description": "Publisher identifier.", + "type": "string" + }, + "offer": { + "description": "The offer representing the product.", + "type": "string" + }, + "offerVersion": { + "description": "The version of the product offer.", + "type": "string" + }, + "sku": { + "description": "The product SKU.", + "type": "string" + }, + "billingPartNumber": { + "description": "The part number used for billing purposes.", + "type": "string" + }, + "vmExtensionType": { + "description": "The type of the Virtual Machine Extension.", + "type": "string" + }, + "galleryItemIdentity": { + "description": "The identifier of the gallery item corresponding to the product.", + "type": "string" + }, + "iconUris": { + "description": "Additional links available for this product.", + "$ref": "#/definitions/IconUris" + }, + "links": { + "description": "Additional links available for this product.", + "type": "array", + "items": { + "$ref": "#/definitions/ProductLink" + } + }, + "legalTerms": { + "description": "The legal terms.", + "type": "string" + }, + "privacyPolicy": { + "description": "The privacy policy.", + "type": "string" + }, + "payloadLength": { + "description": "The length of product content.", + "type": "integer", + "format": "int64" + }, + "productKind": { + "description": "The kind of the product (virtualMachine or virtualMachineExtension)", + "type": "string" + }, + "productProperties": { + "description": "Additional properties for the product.", + "$ref": "#/definitions/ProductProperties" + } + } + }, + "IconUris": { + "description": "Links to product icons.", + "type": "object", + "properties": { + "large": { + "description": "URI to large icon.", + "type": "string" + }, + "wide": { + "description": "URI to wide icon.", + "type": "string" + }, + "medium": { + "description": "URI to medium icon.", + "type": "string" + }, + "small": { + "description": "URI to small icon.", + "type": "string" + }, + "hero": { + "description": "URI to hero icon.", + "type": "string" + } + } + }, + "ProductProperties": { + "description": "Additional properties of the product", + "type": "object", + "properties": { + "version": { + "description": "The version.", + "type": "string" + } + } + }, + "ProductLink": { + "description": "Link with additional information about a product.", + "type": "object", + "properties": { + "displayName": { + "description": "The description of the link.", + "type": "string" + }, + "uri": { + "description": "The URI corresponding to the link.", + "type": "string" + } + } + }, + "ProductList": { + "description": "Pageable list of products.", + "type": "object", + "properties": { + "nextLink": { + "description": "URI to the next page.", + "type": "string" + }, + "value": { + "description": "List of products.", + "type": "array", + "items": { + "$ref": "#/definitions/Product" + } } - ] -} \ No newline at end of file + } + } + }, + "parameters": { + "ProductNameParameter": { + "description": "Name of the product.", + "name": "productName", + "type": "string", + "in": "path", + "required": true, + "x-ms-parameter-location": "method" + } + }, + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Authorization uses an Azure Active Directory OAuth2 flow.", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/Registration.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/Registration.json index 9bc002b73f30..62f2bd69c0b0 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/Registration.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/Registration.json @@ -1,398 +1,397 @@ { - "swagger": "2.0", - "info": { - "version": "2017-06-01", - "title": "Azure Stack Azure Bridge Client" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations": { - "get": { - "x-ms-examples": { - "Returns a list of all registrations.": { - "$ref": "examples/Registration/List.json" - } - }, - "tags": [ - "Registrations" - ], - "description": "Returns a list of all registrations.", - "operationId": "Registrations_List", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RegistrationList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "AzureStack.json#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } + "swagger": "2.0", + "info": { + "version": "2017-06-01", + "title": "Azure Stack Azure Bridge Client" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations": { + "get": { + "x-ms-examples": { + "Returns a list of all registrations.": { + "$ref": "examples/Registration/List.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}": { - "get": { - "x-ms-examples": { - "Returns the properties of an Azure Stack registration.": { - "$ref": "examples/Registration/Get.json" - } - }, - "tags": [ - "Registrations" - ], - "description": "Returns the properties of an Azure Stack registration.", - "operationId": "Registrations_Get", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Registration" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "AzureStack.json#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete the requested Azure Stack registration.": { - "$ref": "./examples/Registration/Delete.json" - } - }, - "tags": [ - "Registrations" - ], - "description": "Delete the requested Azure Stack registration.", - "operationId": "Registrations_Delete", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "NO CONTENT" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "AzureStack.json#/definitions/ErrorResponse" - } - } - } - }, - "put": { - "x-ms-examples": { - "Create or update an Azure Stack registration.": { - "$ref": "examples/Registration/Put.json" - } - }, - "tags": [ - "Registrations" - ], - "description": "Create or update an Azure Stack registration.", - "operationId": "Registrations_CreateOrUpdate", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/NewRegistrationParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Registration" - } - }, - "201": { - "description": "CREATED", - "schema": { - "$ref": "#/definitions/Registration" - } - } - } - }, - "patch": { - "x-ms-examples": { - "Patch an Azure Stack registration.": { - "$ref": "examples/Registration/Patch.json" - } - }, - "tags": [ - "Registrations" - ], - "description": "Patch an Azure Stack registration.", - "operationId": "Registrations_Update", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/NewRegistrationParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Registration" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "AzureStack.json#/definitions/ErrorResponse" - } - } - } + "tags": [ + "Registrations" + ], + "description": "Returns a list of all registrations.", + "operationId": "Registrations_List", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RegistrationList" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/getactivationkey": { - "post": { - "x-ms-examples": { - "Returns Azure Stack Activation Key.": { - "$ref": "./examples/Registration/Post.json" - } - }, - "tags": [ - "Registrations" - ], - "description": "Returns Azure Stack Activation Key.", - "operationId": "Registrations_GetActivationKey", - "parameters": [ - { - "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" - }, - { - "$ref": "AzureStack.json#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ActivationKeyResult" - } - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "AzureStack.json#/definitions/ErrorResponse" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "definitions": { - "Registration": { - "description": "Registration information.", - "type": "object", - "properties": { - "properties": { - "description": "Registration resource.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegistrationProperties" - } - }, - "allOf": [ - { - "$ref": "AzureStack.json#/definitions/TrackedResource" - } - ] + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}": { + "get": { + "x-ms-examples": { + "Returns the properties of an Azure Stack registration.": { + "$ref": "examples/Registration/Get.json" + } }, - "RegistrationProperties": { - "description": "Properties portion of the registration resource.", - "type": "object", - "properties": { - "objectId": { - "description": "The object identifier associated with the Azure Stack connecting to Azure.", - "type": "string" - }, - "cloudId": { - "description": "The identifier of the registered Azure Stack.", - "type": "string" - }, - "billingModel": { - "description": "Specifies the billing mode for the Azure Stack registration.", - "type": "string" - } + "tags": [ + "Registrations" + ], + "description": "Returns the properties of an Azure Stack registration.", + "operationId": "Registrations_Get", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Registration" } - }, - "RegistrationList": { - "description": "Pageable list of registrations.", - "type": "object", - "properties": { - "nextLink": { - "description": "URI to the next page.", - "type": "string" - }, - "value": { - "description": "List of Registrations", - "type": "array", - "items": { - "$ref": "#/definitions/Registration" - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "AzureStack.json#/definitions/ErrorResponse" } + } + } + }, + "delete": { + "x-ms-examples": { + "Delete the requested Azure Stack registration.": { + "$ref": "./examples/Registration/Delete.json" + } }, - "ActivationKeyResult": { - "description": "The resource containing the Azure Stack activation key.", - "type": "object", - "properties": { - "activationKey": { - "description": "Azure Stack activation key.", - "type": "string" - } + "tags": [ + "Registrations" + ], + "description": "Delete the requested Azure Stack registration.", + "operationId": "Registrations_Delete", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "NO CONTENT" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "AzureStack.json#/definitions/ErrorResponse" } + } + } + }, + "put": { + "x-ms-examples": { + "Create or update an Azure Stack registration.": { + "$ref": "examples/Registration/Put.json" + } }, - "RegistrationParameter": { - "description": "Registration resource", - "type": "object", - "properties": { - "properties": { - "description": "Properties of the Azure Stack registration resource", - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegistrationParameterProperties" - - }, - "location": { - "description": "Location of the resource.", - "type": "string", - "enum": [ - "global" - ], - "x-ms-enum": { - "name": "Location", - "modelAsString": true - }, - "x-ms-mutability": [ - "create", - "read" - ] - } + "tags": [ + "Registrations" + ], + "description": "Create or update an Azure Stack registration.", + "operationId": "Registrations_CreateOrUpdate", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/NewRegistrationParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Registration" + } + }, + "201": { + "description": "CREATED", + "schema": { + "$ref": "#/definitions/Registration" } + } + } + }, + "patch": { + "x-ms-examples": { + "Patch an Azure Stack registration.": { + "$ref": "examples/Registration/Patch.json" + } }, - "RegistrationParameterProperties": { - "description": "Properties of the Azure Stack registration resource", - "type": "object", - "properties": { - "registrationToken": { - "description": "The token identifying registered Azure Stack", - "type": "string" - } - }, - "required": [ - "registrationToken" - ] + "tags": [ + "Registrations" + ], + "description": "Patch an Azure Stack registration.", + "operationId": "Registrations_Update", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/NewRegistrationParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Registration" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "AzureStack.json#/definitions/ErrorResponse" + } + } } + } }, - "parameters": { - "NewRegistrationParameter": { - "description": "Registration token", - "name": "token", - "in": "body", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.AzureStack/registrations/{registrationName}/getactivationkey": { + "post": { + "x-ms-examples": { + "Returns Azure Stack Activation Key.": { + "$ref": "./examples/Registration/Post.json" + } + }, + "tags": [ + "Registrations" + ], + "description": "Returns Azure Stack Activation Key.", + "operationId": "Registrations_GetActivationKey", + "parameters": [ + { + "$ref": "AzureStack.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/RegistrationNameParameter" + }, + { + "$ref": "AzureStack.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", "schema": { - "$ref": "#/definitions/RegistrationParameter" - }, - "required": true, - "x-ms-parameter-location": "method" + "$ref": "#/definitions/ActivationKeyResult" + } + } } + } + } + }, + "definitions": { + "Registration": { + "description": "Registration information.", + "type": "object", + "properties": { + "properties": { + "description": "Registration resource.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegistrationProperties" + } + }, + "allOf": [ + { + "$ref": "AzureStack.json#/definitions/TrackedResource" + } + ] }, - "securityDefinitions": { - "azure_auth": { - "type": "oauth2", - "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "flow": "implicit", - "description": "Authorization uses an Azure Active Directory OAuth2 flow.", - "scopes": { - "user_impersonation": "impersonate your user account" - } + "RegistrationProperties": { + "description": "Properties portion of the registration resource.", + "type": "object", + "properties": { + "objectId": { + "description": "The object identifier associated with the Azure Stack connecting to Azure.", + "type": "string" + }, + "cloudId": { + "description": "The identifier of the registered Azure Stack.", + "type": "string" + }, + "billingModel": { + "description": "Specifies the billing mode for the Azure Stack registration.", + "type": "string" } + } }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "RegistrationList": { + "description": "Pageable list of registrations.", + "type": "object", + "properties": { + "nextLink": { + "description": "URI to the next page.", + "type": "string" + }, + "value": { + "description": "List of Registrations", + "type": "array", + "items": { + "$ref": "#/definitions/Registration" + } + } + } + }, + "ActivationKeyResult": { + "description": "The resource containing the Azure Stack activation key.", + "type": "object", + "properties": { + "activationKey": { + "description": "Azure Stack activation key.", + "type": "string" + } + } + }, + "RegistrationParameter": { + "description": "Registration resource", + "type": "object", + "properties": { + "properties": { + "description": "Properties of the Azure Stack registration resource", + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegistrationParameterProperties" + }, + "location": { + "description": "Location of the resource.", + "type": "string", + "enum": [ + "global" + ], + "x-ms-enum": { + "name": "Location", + "modelAsString": true + }, + "x-ms-mutability": [ + "create", + "read" + ] + } + } + }, + "RegistrationParameterProperties": { + "description": "Properties of the Azure Stack registration resource", + "type": "object", + "properties": { + "registrationToken": { + "description": "The token identifying registered Azure Stack", + "type": "string" } - ] -} \ No newline at end of file + }, + "required": [ + "registrationToken" + ] + } + }, + "parameters": { + "NewRegistrationParameter": { + "description": "Registration token", + "name": "token", + "in": "body", + "schema": { + "$ref": "#/definitions/RegistrationParameter" + }, + "required": true, + "x-ms-parameter-location": "method" + } + }, + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Authorization uses an Azure Active Directory OAuth2 flow.", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Delete.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Delete.json index 79908cb9e4f3..4fdb9036a7d9 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Delete.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Delete.json @@ -1,13 +1,13 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "customerSubscriptionName": "E09A4E93-29A7-4EBA-A6D4-76202383F07F", - "api-version": "2017-06-01" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "customerSubscriptionName": "E09A4E93-29A7-4EBA-A6D4-76202383F07F", + "api-version": "2017-06-01" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Get.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Get.json index f50f4fae4229..8c6636689204 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Get.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Get.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "customerSubscriptionName": "E09A4E93-29A7-4EBA-A6D4-76202383F07F", - "api-version": "2017-06-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/customerSubscriptions/E09A4E93-29A7-4EBA-A6D4-76202383F07F", - "name": "testregistration/E09A4E93-29A7-4EBA-A6D4-76202383F07F", - "type": "Microsoft.AzureStack/registrations/customerSubscriptions", - "properties": { - "tenantId": "dbab3982-796f-4d03-9908-044c08aef8a2" - } - } + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "customerSubscriptionName": "E09A4E93-29A7-4EBA-A6D4-76202383F07F", + "api-version": "2017-06-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/customerSubscriptions/E09A4E93-29A7-4EBA-A6D4-76202383F07F", + "name": "testregistration/E09A4E93-29A7-4EBA-A6D4-76202383F07F", + "type": "Microsoft.AzureStack/registrations/customerSubscriptions", + "properties": { + "tenantId": "dbab3982-796f-4d03-9908-044c08aef8a2" } + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/List.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/List.json index 752696db7a15..91022fca06cb 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/List.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/List.json @@ -1,24 +1,24 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "api-version": "2017-06-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/customerSubscriptions/E09A4E93-29A7-4EBA-A6D4-76202383F07F", - "name": "testregistration/E09A4E93-29A7-4EBA-A6D4-76202383F07F", - "type": "Microsoft.AzureStack/registrations/customerSubscriptions", - "properties": { - "tenantId": "dbab3982-796f-4d03-9908-044c08aef8a2" - } - } - ] + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "api-version": "2017-06-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/customerSubscriptions/E09A4E93-29A7-4EBA-A6D4-76202383F07F", + "name": "testregistration/E09A4E93-29A7-4EBA-A6D4-76202383F07F", + "type": "Microsoft.AzureStack/registrations/customerSubscriptions", + "properties": { + "tenantId": "dbab3982-796f-4d03-9908-044c08aef8a2" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Put.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Put.json index 055faa646f75..b9ec9e6c4dfc 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Put.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/CustomerSubscription/Put.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "customerSubscriptionName": "E09A4E93-29A7-4EBA-A6D4-76202383F07F", - "api-version": "2017-06-01", - "customerCreationParameters": { - "properties": { - "tenantId": "dbab3982-796f-4d03-9908-044c08aef8a2" - } - } - }, - "responses": { - "200": { - "body": { - "id": "", - "name": "", - "type": "", - "properties": { - "tenantId": "dbab3982-796f-4d03-9908-044c08aef8a2" - } - } + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "customerSubscriptionName": "E09A4E93-29A7-4EBA-A6D4-76202383F07F", + "api-version": "2017-06-01", + "customerCreationParameters": { + "properties": { + "tenantId": "dbab3982-796f-4d03-9908-044c08aef8a2" + } + } + }, + "responses": { + "200": { + "body": { + "id": "", + "name": "", + "type": "", + "properties": { + "tenantId": "dbab3982-796f-4d03-9908-044c08aef8a2" } + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Operation/List.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Operation/List.json index 48e2fb12edcd..11a9af187566 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Operation/List.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Operation/List.json @@ -1,122 +1,122 @@ { - "parameters": { - "api-version": "2017-06-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "Microsoft.AzureStack/registrations/read", - "display": { - "provider": "Azure Stack Resource Provider", - "resource": "Azure Stack Registration", - "operation": "Get Azure Stack Registration", - "description": "Gets the properties of an Azure Stack registration" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.AzureStack/registrations/write", - "display": { - "provider": "Azure Stack Resource Provider", - "resource": "Azure Stack Registration", - "operation": "Create Azure Stack Registration", - "description": "Creates or updates an Azure Stack registration" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.AzureStack/registrations/delete", - "display": { - "provider": "Azure Stack Resource Provider", - "resource": "Azure Stack Registration", - "operation": "Delete Azure Stack Registration", - "description": "Deletes an Azure Stack registration" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.AzureStack/registrations/getActivationKey/action", - "display": { - "provider": "Azure Stack Resource Provider", - "resource": "Azure Stack Registration", - "operation": "Get Azure Stack Activation Key", - "description": "Gets the latest Azure Stack activation key" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.AzureStack/register/action", - "display": { - "provider": "Azure Stack Resource Provider", - "operation": "Register Subscription for Azure Stack", - "description": "Registers Subscription with Microsoft.AzureStack resource provider" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.AzureStack/registrations/products/read", - "display": { - "provider": "Azure Stack Resource Provider", - "resource": "Azure Stack Marketplace Product", - "operation": "Get Azure Stack Marketplace Product", - "description": "Gets the properties of an Azure Stack Marketplace product" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.AzureStack/registrations/products/listDetails/action", - "display": { - "provider": "Azure Stack Resource Provider", - "resource": "Azure Stack Marketplace Product", - "operation": "Get Azure Stack Marketplace Product Details", - "description": "Retrieves extended details for an Azure Stack Marketplace product" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.AzureStack/registrations/customerSubscriptions/read", - "display": { - "provider": "Azure Stack Resource Provider", - "resource": "Azure Stack Customer Subscription", - "operation": "Get Azure Stack Customer Subscription", - "description": "Gets the properties of an Azure Stack Customer Subscription" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.AzureStack/registrations/customerSubscriptions/write", - "display": { - "provider": "Azure Stack Resource Provider", - "resource": "Azure Stack Customer Subscription", - "operation": "Create Azure Stack Customer Subscription", - "description": "Creates or updates an Azure Stack Customer Subscription" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.AzureStack/registrations/customerSubscriptions/delete", - "display": { - "provider": "Azure Stack Resource Provider", - "resource": "Azure Stack Customer Subscription", - "operation": "Delete Azure Stack Customer Subscription", - "description": "Deletes an Azure Stack Customer Subscription" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.AzureStack/Operations/read", - "display": { - "provider": "Name of the Resource Provider.", - "resource": "Resource Type Display Name.", - "operation": "Read Resource Provider Operations", - "description": "The localized friendly description for the operation, as it should be shown to the user." - }, - "origin": "user,system" - } - ] - } - } + "parameters": { + "api-version": "2017-06-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.AzureStack/registrations/read", + "display": { + "provider": "Azure Stack Resource Provider", + "resource": "Azure Stack Registration", + "operation": "Get Azure Stack Registration", + "description": "Gets the properties of an Azure Stack registration" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.AzureStack/registrations/write", + "display": { + "provider": "Azure Stack Resource Provider", + "resource": "Azure Stack Registration", + "operation": "Create Azure Stack Registration", + "description": "Creates or updates an Azure Stack registration" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.AzureStack/registrations/delete", + "display": { + "provider": "Azure Stack Resource Provider", + "resource": "Azure Stack Registration", + "operation": "Delete Azure Stack Registration", + "description": "Deletes an Azure Stack registration" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.AzureStack/registrations/getActivationKey/action", + "display": { + "provider": "Azure Stack Resource Provider", + "resource": "Azure Stack Registration", + "operation": "Get Azure Stack Activation Key", + "description": "Gets the latest Azure Stack activation key" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.AzureStack/register/action", + "display": { + "provider": "Azure Stack Resource Provider", + "operation": "Register Subscription for Azure Stack", + "description": "Registers Subscription with Microsoft.AzureStack resource provider" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.AzureStack/registrations/products/read", + "display": { + "provider": "Azure Stack Resource Provider", + "resource": "Azure Stack Marketplace Product", + "operation": "Get Azure Stack Marketplace Product", + "description": "Gets the properties of an Azure Stack Marketplace product" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.AzureStack/registrations/products/listDetails/action", + "display": { + "provider": "Azure Stack Resource Provider", + "resource": "Azure Stack Marketplace Product", + "operation": "Get Azure Stack Marketplace Product Details", + "description": "Retrieves extended details for an Azure Stack Marketplace product" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.AzureStack/registrations/customerSubscriptions/read", + "display": { + "provider": "Azure Stack Resource Provider", + "resource": "Azure Stack Customer Subscription", + "operation": "Get Azure Stack Customer Subscription", + "description": "Gets the properties of an Azure Stack Customer Subscription" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.AzureStack/registrations/customerSubscriptions/write", + "display": { + "provider": "Azure Stack Resource Provider", + "resource": "Azure Stack Customer Subscription", + "operation": "Create Azure Stack Customer Subscription", + "description": "Creates or updates an Azure Stack Customer Subscription" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.AzureStack/registrations/customerSubscriptions/delete", + "display": { + "provider": "Azure Stack Resource Provider", + "resource": "Azure Stack Customer Subscription", + "operation": "Delete Azure Stack Customer Subscription", + "description": "Deletes an Azure Stack Customer Subscription" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.AzureStack/Operations/read", + "display": { + "provider": "Name of the Resource Provider.", + "resource": "Resource Type Display Name.", + "operation": "Read Resource Provider Operations", + "description": "The localized friendly description for the operation, as it should be shown to the user." + }, + "origin": "user,system" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/Get.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/Get.json index b09912624c25..a9f1407d8ee3 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/Get.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/Get.json @@ -1,39 +1,39 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "productName": "Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", - "api-version": "2017-06-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", - "name": "testregistration/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", - "type": "Microsoft.AzureStack/registrations/products", - "properties": { - "displayName": "VM Access For Linux Extension", - "publisherDisplayName": "Microsoft Corp.", - "publisherIdentifier": "Microsoft.OSTCExtensions", - "offer": "", - "offerVersion": "", - "sku": "", - "vmExtensionType": "VMAccessForLinux", - "galleryItemIdentity": "Microsoft.VMAccessForLinux.1.4.7", - "iconUris": { - "large": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Large.png", - "wide": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Wide.png", - "medium": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Medium.png", - "small": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Small.png" - }, - "payloadLength": 46959, - "productKind": "virtualMachineExtension", - "productProperties": { - "version": "1.4.7" - } - } - } + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "productName": "Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", + "api-version": "2017-06-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", + "name": "testregistration/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", + "type": "Microsoft.AzureStack/registrations/products", + "properties": { + "displayName": "VM Access For Linux Extension", + "publisherDisplayName": "Microsoft Corp.", + "publisherIdentifier": "Microsoft.OSTCExtensions", + "offer": "", + "offerVersion": "", + "sku": "", + "vmExtensionType": "VMAccessForLinux", + "galleryItemIdentity": "Microsoft.VMAccessForLinux.1.4.7", + "iconUris": { + "large": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Large.png", + "wide": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Wide.png", + "medium": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Medium.png", + "small": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Small.png" + }, + "payloadLength": 46959, + "productKind": "virtualMachineExtension", + "productProperties": { + "version": "1.4.7" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/List.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/List.json index 6d325ea897a3..a1c045ae8421 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/List.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/List.json @@ -1,146 +1,146 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "api-version": "2017-06-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", - "name": "testregistration/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", - "type": "Microsoft.AzureStack/registrations/products", - "properties": { - "displayName": "VM Access For Linux Extension", - "publisherDisplayName": "Microsoft Corp.", - "publisherIdentifier": "Microsoft.OSTCExtensions", - "offer": "", - "offerVersion": "", - "sku": "", - "vmExtensionType": "VMAccessForLinux", - "galleryItemIdentity": "Microsoft.VMAccessForLinux.1.4.7", - "iconUris": { - "large": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Large.png", - "wide": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Wide.png", - "medium": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Medium.png", - "small": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Small.png" - }, - "payloadLength": 46959, - "productKind": "virtualMachineExtension", - "productProperties": { - "version": "1.4.7" - } - } - }, - { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/dummysharepoint", - "name": "testregistration/dummysharepoint", - "type": "Microsoft.AzureStack/registrations/products", - "properties": { - "displayName": "Display name for dummy SharePoint", - "publisherDisplayName": "Publisher display name for dummy SharePoint", - "publisherIdentifier": "Katal", - "offer": "Dummy offer", - "offerVersion": "FakeProduct: offer version", - "sku": "Dummy sku", - "galleryItemIdentity": "Microsoft.SharePointServer2013Trial-ARM.1.0.3", - "iconUris": { - "hero": "https://extensions.azureedge.net/dummysharepoint/icons/Hero.png", - "large": "https://extensions.azureedge.net/dummysharepoint/icons/Large.png", - "wide": "https://extensions.azureedge.net/dummysharepoint/icons/Wide.png", - "medium": "https://extensions.azureedge.net/dummysharepoint/icons/Medium.png", - "small": "https://extensions.azureedge.net/dummysharepoint/icons/Small.png" - }, - "payloadLength": 4682158, - "productKind": "virtualMachine", - "productProperties": { - "version": "1.0.1" - } - } - }, - { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/dummysharepointTest526", - "name": "testregistration/dummysharepointTest526", - "type": "Microsoft.AzureStack/registrations/products", - "properties": { - "displayName": "Display name for dummy SharePoint", - "publisherDisplayName": "Publisher display name for dummy SharePoint", - "publisherIdentifier": "Katal", - "offer": "Dummy offer", - "offerVersion": "FakeProduct: offer version", - "sku": "Dummy sku", - "galleryItemIdentity": "Microsoft.SharePointServer2013Trial-ARM.1.0.3", - "iconUris": { - "hero": "https://extensions.azureedge.net/dummysharepointTest526/icons/Hero.png", - "large": "https://extensions.azureedge.net/dummysharepointTest526/icons/Large.png", - "wide": "https://extensions.azureedge.net/dummysharepointTest526/icons/Wide.png", - "medium": "https://extensions.azureedge.net/dummysharepointTest526/icons/Medium.png", - "small": "https://extensions.azureedge.net/dummysharepointTest526/icons/Small.png" - }, - "payloadLength": 4682158, - "productKind": "virtualMachine", - "productProperties": { - "version": "2.0.2" - } - } - }, - { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d", - "name": "testregistration/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d", - "type": "Microsoft.AzureStack/registrations/products", - "properties": { - "displayName": "Display name for dummy SharePoint", - "publisherDisplayName": "Publisher display name for dummy SharePoint", - "publisherIdentifier": "Katal", - "offer": "Dummy offer", - "offerVersion": "FakeProduct: offer version", - "sku": "Dummy sku", - "galleryItemIdentity": "Microsoft.SharePointServer2013Trial-ARM.1.0.3", - "iconUris": { - "hero": "https://extensions.azureedge.net/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d/icons/Hero.png", - "large": "https://extensions.azureedge.net/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d/icons/Large.png", - "wide": "https://extensions.azureedge.net/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d/icons/Wide.png", - "medium": "https://extensions.azureedge.net/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d/icons/Medium.png", - "small": "https://extensions.azureedge.net/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d/icons/Small.png" - }, - "payloadLength": 4682158, - "productKind": "virtualMachine", - "productProperties": { - "version": "1.0.1" - } - } - }, - { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/wordpress4-4", - "name": "testregistration/wordpress4-4", - "type": "Microsoft.AzureStack/registrations/products", - "properties": { - "displayName": "WordPress", - "publisherDisplayName": "WordPress", - "publisherIdentifier": "bitnami", - "offer": "wordpress", - "offerVersion": "1.0.8", - "sku": "4-4", - "galleryItemIdentity": "bitnami.wordpress4-4.1.0.8", - "iconUris": { - "hero": "https://extensions.azureedge.net/wordpress4-4/icons/Hero.png", - "large": "https://extensions.azureedge.net/wordpress4-4/icons/Large.png", - "wide": "https://extensions.azureedge.net/wordpress4-4/icons/Wide.png", - "medium": "https://extensions.azureedge.net/wordpress4-4/icons/Medium.png", - "small": "https://extensions.azureedge.net/wordpress4-4/icons/Small.png" - }, - "payloadLength": 32212604365, - "productKind": "virtualMachine", - "productProperties": { - "version": "4.5.31" - } - } - } - ] + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "api-version": "2017-06-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", + "name": "testregistration/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", + "type": "Microsoft.AzureStack/registrations/products", + "properties": { + "displayName": "VM Access For Linux Extension", + "publisherDisplayName": "Microsoft Corp.", + "publisherIdentifier": "Microsoft.OSTCExtensions", + "offer": "", + "offerVersion": "", + "sku": "", + "vmExtensionType": "VMAccessForLinux", + "galleryItemIdentity": "Microsoft.VMAccessForLinux.1.4.7", + "iconUris": { + "large": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Large.png", + "wide": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Wide.png", + "medium": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Medium.png", + "small": "https://extensions.azureedge.net/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/icons/Small.png" + }, + "payloadLength": 46959, + "productKind": "virtualMachineExtension", + "productProperties": { + "version": "1.4.7" + } } - } + }, + { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/dummysharepoint", + "name": "testregistration/dummysharepoint", + "type": "Microsoft.AzureStack/registrations/products", + "properties": { + "displayName": "Display name for dummy SharePoint", + "publisherDisplayName": "Publisher display name for dummy SharePoint", + "publisherIdentifier": "Katal", + "offer": "Dummy offer", + "offerVersion": "FakeProduct: offer version", + "sku": "Dummy sku", + "galleryItemIdentity": "Microsoft.SharePointServer2013Trial-ARM.1.0.3", + "iconUris": { + "hero": "https://extensions.azureedge.net/dummysharepoint/icons/Hero.png", + "large": "https://extensions.azureedge.net/dummysharepoint/icons/Large.png", + "wide": "https://extensions.azureedge.net/dummysharepoint/icons/Wide.png", + "medium": "https://extensions.azureedge.net/dummysharepoint/icons/Medium.png", + "small": "https://extensions.azureedge.net/dummysharepoint/icons/Small.png" + }, + "payloadLength": 4682158, + "productKind": "virtualMachine", + "productProperties": { + "version": "1.0.1" + } + } + }, + { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/dummysharepointTest526", + "name": "testregistration/dummysharepointTest526", + "type": "Microsoft.AzureStack/registrations/products", + "properties": { + "displayName": "Display name for dummy SharePoint", + "publisherDisplayName": "Publisher display name for dummy SharePoint", + "publisherIdentifier": "Katal", + "offer": "Dummy offer", + "offerVersion": "FakeProduct: offer version", + "sku": "Dummy sku", + "galleryItemIdentity": "Microsoft.SharePointServer2013Trial-ARM.1.0.3", + "iconUris": { + "hero": "https://extensions.azureedge.net/dummysharepointTest526/icons/Hero.png", + "large": "https://extensions.azureedge.net/dummysharepointTest526/icons/Large.png", + "wide": "https://extensions.azureedge.net/dummysharepointTest526/icons/Wide.png", + "medium": "https://extensions.azureedge.net/dummysharepointTest526/icons/Medium.png", + "small": "https://extensions.azureedge.net/dummysharepointTest526/icons/Small.png" + }, + "payloadLength": 4682158, + "productKind": "virtualMachine", + "productProperties": { + "version": "2.0.2" + } + } + }, + { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d", + "name": "testregistration/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d", + "type": "Microsoft.AzureStack/registrations/products", + "properties": { + "displayName": "Display name for dummy SharePoint", + "publisherDisplayName": "Publisher display name for dummy SharePoint", + "publisherIdentifier": "Katal", + "offer": "Dummy offer", + "offerVersion": "FakeProduct: offer version", + "sku": "Dummy sku", + "galleryItemIdentity": "Microsoft.SharePointServer2013Trial-ARM.1.0.3", + "iconUris": { + "hero": "https://extensions.azureedge.net/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d/icons/Hero.png", + "large": "https://extensions.azureedge.net/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d/icons/Large.png", + "wide": "https://extensions.azureedge.net/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d/icons/Wide.png", + "medium": "https://extensions.azureedge.net/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d/icons/Medium.png", + "small": "https://extensions.azureedge.net/test.product.976fe55e-6921-47bb-b8ba-718bba70c72d/icons/Small.png" + }, + "payloadLength": 4682158, + "productKind": "virtualMachine", + "productProperties": { + "version": "1.0.1" + } + } + }, + { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration/products/wordpress4-4", + "name": "testregistration/wordpress4-4", + "type": "Microsoft.AzureStack/registrations/products", + "properties": { + "displayName": "WordPress", + "publisherDisplayName": "WordPress", + "publisherIdentifier": "bitnami", + "offer": "wordpress", + "offerVersion": "1.0.8", + "sku": "4-4", + "galleryItemIdentity": "bitnami.wordpress4-4.1.0.8", + "iconUris": { + "hero": "https://extensions.azureedge.net/wordpress4-4/icons/Hero.png", + "large": "https://extensions.azureedge.net/wordpress4-4/icons/Large.png", + "wide": "https://extensions.azureedge.net/wordpress4-4/icons/Wide.png", + "medium": "https://extensions.azureedge.net/wordpress4-4/icons/Medium.png", + "small": "https://extensions.azureedge.net/wordpress4-4/icons/Small.png" + }, + "payloadLength": 32212604365, + "productKind": "virtualMachine", + "productProperties": { + "version": "4.5.31" + } + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/Post.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/Post.json index 7f60582dbaf8..efd223b6ac7c 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/Post.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Product/Post.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "productName": "Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", - "api-version": "2017-06-01" - }, - "responses": { - "200": { - "body": { - "galleryPackageBlobSasUri": "https://azstrptestwcu001.blob.core.windows.net/packages/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/gallery/package.azpkg?sv=2015-04-05&sr=b&sig=mnzKeDrSMWoDilUrfrETb7n%2BG0Shme6f3AYzl3uzkYA%3D&se=2018-02-13T10%3A46%3A24Z&sp=r", - "productKind": "virtualMachineExtension", - "properties": { - "version": "1.4.7", - "vmOsType": "Linux", - "sourceBlob": { - "uri": "https://azstrptestwcu001.blob.core.windows.net/packages/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/extension/vmext.zip?sv=2015-04-05&sr=b&sig=XtLzuO2rlqxyZOzfoTEDZW4DU9OxBZVCOw%2FVgY2%2FiUo%3D&se=2018-02-13T10%3A46%3A24Z&sp=r" - }, - "computeRole": "IaaS", - "vmScaleSetEnabled": false, - "supportMultipleExtensions": false, - "isSystemExtension": false - } - } + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "productName": "Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1", + "api-version": "2017-06-01" + }, + "responses": { + "200": { + "body": { + "galleryPackageBlobSasUri": "https://azstrptestwcu001.blob.core.windows.net/packages/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/gallery/package.azpkg?sv=2015-04-05&sr=b&sig=mnzKeDrSMWoDilUrfrETb7n%2BG0Shme6f3AYzl3uzkYA%3D&se=2018-02-13T10%3A46%3A24Z&sp=r", + "productKind": "virtualMachineExtension", + "properties": { + "version": "1.4.7", + "vmOsType": "Linux", + "sourceBlob": { + "uri": "https://azstrptestwcu001.blob.core.windows.net/packages/Microsoft.OSTCExtensions.VMAccessForLinux.1.4.7.1/extension/vmext.zip?sv=2015-04-05&sr=b&sig=XtLzuO2rlqxyZOzfoTEDZW4DU9OxBZVCOw%2FVgY2%2FiUo%3D&se=2018-02-13T10%3A46%3A24Z&sp=r" + }, + "computeRole": "IaaS", + "vmScaleSetEnabled": false, + "supportMultipleExtensions": false, + "isSystemExtension": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Delete.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Delete.json index 17b9803450dd..1afaafd4fb72 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Delete.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Delete.json @@ -1,12 +1,12 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "api-version": "2017-06-01" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "api-version": "2017-06-01" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Get.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Get.json index b87c2131b017..1ee0db4940f4 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Get.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Get.json @@ -1,23 +1,23 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "api-version": "2017-06-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration", - "name": "azurestack", - "type": "Microsoft.AzureStack/registrations", - "location": "global", - "etag": "0d00527e-0000-0000-0000-5a81ebdf0000", - "properties": { - "objectId": "9e9704ab-561a-4498-ac60-64b2314456ee", - "billingModel": "Development" - } - } + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "api-version": "2017-06-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration", + "name": "azurestack", + "type": "Microsoft.AzureStack/registrations", + "location": "global", + "etag": "0d00527e-0000-0000-0000-5a81ebdf0000", + "properties": { + "objectId": "9e9704ab-561a-4498-ac60-64b2314456ee", + "billingModel": "Development" } + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/List.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/List.json index cdf12f3724f4..663f74341e68 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/List.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/List.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "api-version": "2017-06-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration", - "name": "testregistration", - "type": "Microsoft.AzureStack/registrations", - "location": "global", - "etag": "0d00527e-0000-0000-0000-5a81ebdf0000", - "properties": { - "objectId": "9e9704ab-561a-4498-ac60-64b2314456ee", - "billingModel": "Development" - } - } - ] + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "api-version": "2017-06-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration", + "name": "testregistration", + "type": "Microsoft.AzureStack/registrations", + "location": "global", + "etag": "0d00527e-0000-0000-0000-5a81ebdf0000", + "properties": { + "objectId": "9e9704ab-561a-4498-ac60-64b2314456ee", + "billingModel": "Development" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Patch.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Patch.json index 9a33f833a4d1..1025ed848676 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Patch.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Patch.json @@ -1,31 +1,33 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "api-version": "2017-06-01", - "token": { - "properties": { - "registrationToken": "EyjIAWXSAw5nTw9KZWWiOiJeZxZlbg9wBwvUdCiSIM9iaMVjdeLkijoinwIzyJa2Ytgtowm2yy00OdG4lTlLyJmtztHjZGfJZTC0NZK1iIWiY2XvdWRJzCi6iJy5nDy0oDk1LTNHmWeTnDUwyS05oDI0LTrINzYwoGq5mjAzziIsim1HCmtldHBsYwnLu3LuZGljYXrpB25FBmfIbgVkIJp0CNvLLCJOYXJkd2FYzuLUZM8iOlt7IM51bunvcMVZiJoYlCjcaw9ZiJPBIjNkzDJHmda3yte5ndqZMdq4YmZkZmi5oDM3OTY3ZwNMIL0SIM5PyYI6WyJLZTy0ztJJMwZKy2m0OWNLODDLMwm2zTm0ymzKyjmWySisiJA3njlHmtdlY2q4NjRjnwFIZtC1YZi5ZGyZodM3Y2vjIl0siMnwDsi6wyi2oDUZoTbiY2RhNDa0ymrKoWe4YtK5otblzWrJzGyzNCISIjmYnzC4M2vmnZdIoDRKM2i5ytfkmJlhnDc1zdhLzWm1il0sim5HBwuiOijIqzF1MTvhmDIXmIIsimrpc2SiolsioWNlZjVhnZM1otQ0nDu3NmjlN2M3zmfjzmyZMTJhZtiiLcjLZjLmmZJhmWVhytG0NTu0OTqZNWu1Mda0MZbIYtfjyijdLCj1DWlKijoinwM5Mwu3NjytMju5Os00oTIwlWi0OdmTnGzHotiWm2RjyTCxIIwiBWvTb3J5ijPbijAYZDA3M2fjNzu0YTRMZTfhodkxzDnkogY5ZtAWzdyXIiwINZcWzThLnDQ4otrJndAzZGI5MGzlYtY1ZJA5ZdfiNMQIXX1DlcJpC3n1zxiiOijZb21lB25LIIWIdmVyC2LVbiI6IJeuMcJ9" - }, - "location": "global" - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration", - "name": "testregistration", - "type": "Microsoft.AzureStack/registrations", - "location": "global", - "tags": { "key1" : "value1" }, - "etag": "\"0e00ab2b-0000-0000-0000-5a82517f0000\"", - "properties": { - "cloudId": "5bf881b2-6be7-42a1-9f47-d6fcb6737747", - "objectId": "2dbdd5f4-daf3-442a-be35-b71c3debee5a", - "billingModel": "Development" - } - } + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "api-version": "2017-06-01", + "token": { + "properties": { + "registrationToken": "EyjIAWXSAw5nTw9KZWWiOiJeZxZlbg9wBwvUdCiSIM9iaMVjdeLkijoinwIzyJa2Ytgtowm2yy00OdG4lTlLyJmtztHjZGfJZTC0NZK1iIWiY2XvdWRJzCi6iJy5nDy0oDk1LTNHmWeTnDUwyS05oDI0LTrINzYwoGq5mjAzziIsim1HCmtldHBsYwnLu3LuZGljYXrpB25FBmfIbgVkIJp0CNvLLCJOYXJkd2FYzuLUZM8iOlt7IM51bunvcMVZiJoYlCjcaw9ZiJPBIjNkzDJHmda3yte5ndqZMdq4YmZkZmi5oDM3OTY3ZwNMIL0SIM5PyYI6WyJLZTy0ztJJMwZKy2m0OWNLODDLMwm2zTm0ymzKyjmWySisiJA3njlHmtdlY2q4NjRjnwFIZtC1YZi5ZGyZodM3Y2vjIl0siMnwDsi6wyi2oDUZoTbiY2RhNDa0ymrKoWe4YtK5otblzWrJzGyzNCISIjmYnzC4M2vmnZdIoDRKM2i5ytfkmJlhnDc1zdhLzWm1il0sim5HBwuiOijIqzF1MTvhmDIXmIIsimrpc2SiolsioWNlZjVhnZM1otQ0nDu3NmjlN2M3zmfjzmyZMTJhZtiiLcjLZjLmmZJhmWVhytG0NTu0OTqZNWu1Mda0MZbIYtfjyijdLCj1DWlKijoinwM5Mwu3NjytMju5Os00oTIwlWi0OdmTnGzHotiWm2RjyTCxIIwiBWvTb3J5ijPbijAYZDA3M2fjNzu0YTRMZTfhodkxzDnkogY5ZtAWzdyXIiwINZcWzThLnDQ4otrJndAzZGI5MGzlYtY1ZJA5ZdfiNMQIXX1DlcJpC3n1zxiiOijZb21lB25LIIWIdmVyC2LVbiI6IJeuMcJ9" + }, + "location": "global" + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration", + "name": "testregistration", + "type": "Microsoft.AzureStack/registrations", + "location": "global", + "tags": { + "key1": "value1" + }, + "etag": "\"0e00ab2b-0000-0000-0000-5a82517f0000\"", + "properties": { + "cloudId": "5bf881b2-6be7-42a1-9f47-d6fcb6737747", + "objectId": "2dbdd5f4-daf3-442a-be35-b71c3debee5a", + "billingModel": "Development" } + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Post.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Post.json index be48955bf8b9..7c3ad851f9b6 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Post.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Post.json @@ -1,15 +1,15 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "api-version": "2017-06-01" - }, - "responses": { - "200": { - "body": { - "activationKey": "EYJRawQioiIzyzkYoDA2zJRJotc0Odg1oDHLM2zIYJfJmTzkYmQ2yYISiCjHbgCIoIjsuZi1niJ9.EyjZDWjzy3JPchrpB25JzcI6iJKWmdfmMZZLltqXzguTngVKYi05oTEZLTc4MGZhnWQWnMiZnIIsiNJLC291CMNLR3JVdXBOyw1LijoiDgVzDciSinjLZ2lZdHJHDGLvbK5hBwuIoijheNN0zxN0czU2mTyilCJjzXJ0UglUbmLuz1JvB3RtDWjqZWn0CyI6WYJDtj1cywx0Aw1vCMugq3liZXJucNvZDCBSB290LCbpVT1dEWJlCLrYdXn0LCbPpuJhBHRPBw9yzSwGqz1JrsJdlcJJZXJ0UglUBMlUZ0ludGvYBwvKawf0zvroDw1iChJPbnRziJpbiJQxN0uYmjUWmZDgQKZBqtrgOTU3NjFeNUfFnzi5RTfBRue3rTNBndiIlCi1neq5rdIWmJM5MdGwqzMYmzE2RuQ5RKY5oDbbnDg5ODHgNeFERjjEiIwiOEEzodc1nuqWotK2ODizRKU4RKezMtE2QtI3N0nfnDQ2rUfdnEu5osisiKFeodk4Qum3M0RgMZMZRUi2mEfDMUy1rKm2QZRcmjiXoUrEQjc5qJCILCI5n0vgrJMWmjg2NZC4oTrcREq0RjLbQzUzrjC4ouJfrTvErJrBrdg2IIWIOTq4rTe2ntI1odYyNdbEndUZMJG3Qui2OuNBrUi4RjJgNEyWmJExnYjdLCJ1c2FnzuVuZhbVaW50IjoIAhr0Chm6Ly9HEnn0DxnndgvzDHdJDtaWMs50cMFMzmLjbwFUywdlCI5UZxQilcjtYxjRZXRwbgFJzUvUzhBVAw50IJoiahR0chm6Ly9tyw5hZ2vTZw50LMf6dxJllMNVBsIsiNVzywdLUMvzb3VyY2VVcmKioIJODHRWczoVl3VzYWDllM1pY3jVC29MdGF6dXJLC3rhy2sUy29tiIwIbwfya2v0cgxhy2vsZxnvdxjJzvvYaSI6imh0dHbzOI8vBWfya2V0CgXhy2uubWLjCm9zb2z0YXp1CmVZdgFjAY5JB20IlcJleHBpCMvzIjoioTk5oS0xMi0zmFQyMzo1OTo1OS45OtK5OTk5wiiSiMNsB3vKswQIoIi2otQ2NDg5ns0ZYTfHLtQ1mgeTotGyNC00yjc2mdhKoTIWM2YIlcJvYMplY3RjzcI6IjvIM2iWNMe4lTljnmmTNdG4OC05ZWiZlWU4y2Rhy2U3NdC5NSisimJPBGxPBmDnb2rlBcI6IKrLdmvsB3btZW50iiWIAGFyzHDHcmvjbMZvijPbEYJUYW1LijoISEMxDTe1YTAYmTIilcj1dwLKiJOINWM5mwu3njyTmjU5Os00oTiwLwi0oDmTNgzhoTiwM2rJYtcxIIWIbnVtq29YZxMIOJISImJpb3MioLsiM2RKMMEwmDDHmtk0nDMwNDhiZmRMyJK4MzC5NjdlY2YiXswibmljIJPBIMvlnjrlmMmXzMRjyzQ5Y2u4n2UXYZzlMZrIzmrimzBhiiwImdc2oWexn2vjzdg2ngM1YwjlnzVJmjLKZjM4mzdjzwMIXSWIy3b1iJpbIjy4Ntm5mgJJzGE0mDRiZgq5ytHhOtK5MGvLZgNkzjM0iiwiMzi3nzGzzWy3n2I4NgqzyJLhmWqYOwe0NzvKOGvLyzuixsWizglzayI6WYI5y2VmNwe3MZU5nDQ0nTc2ymu3yzdmYwnmzJmXmmflmiiSIMvmowyZmMEXZwfhodQ1ntq5ndM1zTUwmDqZMGJhmwnIIL0sIm1LBW9YesI6wyIwMMQwnznHYZC1NGE0ZmuxYTG5mwqzZDhMoWUWMgq2MSISijC3MGU4ZTQ0ODk0YZQwM2RiOTBMZWE2nWYWOwqxyjZkiL19XswidXNhz2vSZXbvCnrpBMDFbMFibGVKijPmyWxzzSwIBWfYa2V0CgXhy2VTEW5KAWNhdgLVBKvuywjszwqIOnryDwUsiMLZC3vlCii6INnvBwvvbMUILcJ2ZXJzaw9uIJOims4WIn0.NkqXrYRthQij4vCeR06SRCIkl44HIRzH8SyOH7za8cm_ObTWk4ZPls_SPYDqQXsOC-SdWUFf1-zbYLbXHSNWpIM_Z6NF2WgMceW78ynPf96sxX9o2R8zcUFf16O0IFqb4SJAlD_JZAsQrdQuC4JkA1AjLFjE4NkTVdxAumK61Ie31C91Nlkqzqyv6cjzoFaj9ybrBu_lTR9-7GR8RxPfpwgNdScRo6VbDQcne8y45PEujA0x-vugmoXjCA7ONM1Z5A2iidzzLEXpHjGHZ5qLMkaQkaN0DimgXw19GlWTFUjDY4JhfEptLdIRlOEpJGn4pmyIYktvHO2W2u5SLcIWha" - } - } + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "api-version": "2017-06-01" + }, + "responses": { + "200": { + "body": { + "activationKey": "EYJRawQioiIzyzkYoDA2zJRJotc0Odg1oDHLM2zIYJfJmTzkYmQ2yYISiCjHbgCIoIjsuZi1niJ9.EyjZDWjzy3JPchrpB25JzcI6iJKWmdfmMZZLltqXzguTngVKYi05oTEZLTc4MGZhnWQWnMiZnIIsiNJLC291CMNLR3JVdXBOyw1LijoiDgVzDciSinjLZ2lZdHJHDGLvbK5hBwuIoijheNN0zxN0czU2mTyilCJjzXJ0UglUbmLuz1JvB3RtDWjqZWn0CyI6WYJDtj1cywx0Aw1vCMugq3liZXJucNvZDCBSB290LCbpVT1dEWJlCLrYdXn0LCbPpuJhBHRPBw9yzSwGqz1JrsJdlcJJZXJ0UglUBMlUZ0ludGvYBwvKawf0zvroDw1iChJPbnRziJpbiJQxN0uYmjUWmZDgQKZBqtrgOTU3NjFeNUfFnzi5RTfBRue3rTNBndiIlCi1neq5rdIWmJM5MdGwqzMYmzE2RuQ5RKY5oDbbnDg5ODHgNeFERjjEiIwiOEEzodc1nuqWotK2ODizRKU4RKezMtE2QtI3N0nfnDQ2rUfdnEu5osisiKFeodk4Qum3M0RgMZMZRUi2mEfDMUy1rKm2QZRcmjiXoUrEQjc5qJCILCI5n0vgrJMWmjg2NZC4oTrcREq0RjLbQzUzrjC4ouJfrTvErJrBrdg2IIWIOTq4rTe2ntI1odYyNdbEndUZMJG3Qui2OuNBrUi4RjJgNEyWmJExnYjdLCJ1c2FnzuVuZhbVaW50IjoIAhr0Chm6Ly9HEnn0DxnndgvzDHdJDtaWMs50cMFMzmLjbwFUywdlCI5UZxQilcjtYxjRZXRwbgFJzUvUzhBVAw50IJoiahR0chm6Ly9tyw5hZ2vTZw50LMf6dxJllMNVBsIsiNVzywdLUMvzb3VyY2VVcmKioIJODHRWczoVl3VzYWDllM1pY3jVC29MdGF6dXJLC3rhy2sUy29tiIwIbwfya2v0cgxhy2vsZxnvdxjJzvvYaSI6imh0dHbzOI8vBWfya2V0CgXhy2uubWLjCm9zb2z0YXp1CmVZdgFjAY5JB20IlcJleHBpCMvzIjoioTk5oS0xMi0zmFQyMzo1OTo1OS45OtK5OTk5wiiSiMNsB3vKswQIoIi2otQ2NDg5ns0ZYTfHLtQ1mgeTotGyNC00yjc2mdhKoTIWM2YIlcJvYMplY3RjzcI6IjvIM2iWNMe4lTljnmmTNdG4OC05ZWiZlWU4y2Rhy2U3NdC5NSisimJPBGxPBmDnb2rlBcI6IKrLdmvsB3btZW50iiWIAGFyzHDHcmvjbMZvijPbEYJUYW1LijoISEMxDTe1YTAYmTIilcj1dwLKiJOINWM5mwu3njyTmjU5Os00oTiwLwi0oDmTNgzhoTiwM2rJYtcxIIWIbnVtq29YZxMIOJISImJpb3MioLsiM2RKMMEwmDDHmtk0nDMwNDhiZmRMyJK4MzC5NjdlY2YiXswibmljIJPBIMvlnjrlmMmXzMRjyzQ5Y2u4n2UXYZzlMZrIzmrimzBhiiwImdc2oWexn2vjzdg2ngM1YwjlnzVJmjLKZjM4mzdjzwMIXSWIy3b1iJpbIjy4Ntm5mgJJzGE0mDRiZgq5ytHhOtK5MGvLZgNkzjM0iiwiMzi3nzGzzWy3n2I4NgqzyJLhmWqYOwe0NzvKOGvLyzuixsWizglzayI6WYI5y2VmNwe3MZU5nDQ0nTc2ymu3yzdmYwnmzJmXmmflmiiSIMvmowyZmMEXZwfhodQ1ntq5ndM1zTUwmDqZMGJhmwnIIL0sIm1LBW9YesI6wyIwMMQwnznHYZC1NGE0ZmuxYTG5mwqzZDhMoWUWMgq2MSISijC3MGU4ZTQ0ODk0YZQwM2RiOTBMZWE2nWYWOwqxyjZkiL19XswidXNhz2vSZXbvCnrpBMDFbMFibGVKijPmyWxzzSwIBWfYa2V0CgXhy2VTEW5KAWNhdgLVBKvuywjszwqIOnryDwUsiMLZC3vlCii6INnvBwvvbMUILcJ2ZXJzaw9uIJOims4WIn0.NkqXrYRthQij4vCeR06SRCIkl44HIRzH8SyOH7za8cm_ObTWk4ZPls_SPYDqQXsOC-SdWUFf1-zbYLbXHSNWpIM_Z6NF2WgMceW78ynPf96sxX9o2R8zcUFf16O0IFqb4SJAlD_JZAsQrdQuC4JkA1AjLFjE4NkTVdxAumK61Ie31C91Nlkqzqyv6cjzoFaj9ybrBu_lTR9-7GR8RxPfpwgNdScRo6VbDQcne8y45PEujA0x-vugmoXjCA7ONM1Z5A2iidzzLEXpHjGHZ5qLMkaQkaN0DimgXw19GlWTFUjDY4JhfEptLdIRlOEpJGn4pmyIYktvHO2W2u5SLcIWha" + } } -} \ No newline at end of file + } +} diff --git a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Put.json b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Put.json index 7cbb4fb631bd..8e6b649bf0f4 100644 --- a/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Put.json +++ b/specification/azurestack/resource-manager/Microsoft.AzureStack/stable/2017-06-01/examples/Registration/Put.json @@ -1,44 +1,44 @@ { - "parameters": { - "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", - "resourceGroup": "azurestack", - "registrationName": "testregistration", - "api-version": "2017-06-01", - "token": { - "properties": { - "registrationToken": "EyjIAWXSAw5nTw9KZWWiOiJeZxZlbg9wBwvUdCiSIM9iaMVjdeLkijoinwIzyJa2Ytgtowm2yy00OdG4lTlLyJmtztHjZGfJZTC0NZK1iIWiY2XvdWRJzCi6iJy5nDy0oDk1LTNHmWeTnDUwyS05oDI0LTrINzYwoGq5mjAzziIsim1HCmtldHBsYwnLu3LuZGljYXrpB25FBmfIbgVkIJp0CNvLLCJOYXJkd2FYzuLUZM8iOlt7IM51bunvcMVZiJoYlCjcaw9ZiJPBIjNkzDJHmda3yte5ndqZMdq4YmZkZmi5oDM3OTY3ZwNMIL0SIM5PyYI6WyJLZTy0ztJJMwZKy2m0OWNLODDLMwm2zTm0ymzKyjmWySisiJA3njlHmtdlY2q4NjRjnwFIZtC1YZi5ZGyZodM3Y2vjIl0siMnwDsi6wyi2oDUZoTbiY2RhNDa0ymrKoWe4YtK5otblzWrJzGyzNCISIjmYnzC4M2vmnZdIoDRKM2i5ytfkmJlhnDc1zdhLzWm1il0sim5HBwuiOijIqzF1MTvhmDIXmIIsimrpc2SiolsioWNlZjVhnZM1otQ0nDu3NmjlN2M3zmfjzmyZMTJhZtiiLcjLZjLmmZJhmWVhytG0NTu0OTqZNWu1Mda0MZbIYtfjyijdLCj1DWlKijoinwM5Mwu3NjytMju5Os00oTIwlWi0OdmTnGzHotiWm2RjyTCxIIwiBWvTb3J5ijPbijAYZDA3M2fjNzu0YTRMZTfhodkxzDnkogY5ZtAWzdyXIiwINZcWzThLnDQ4otrJndAzZGI5MGzlYtY1ZJA5ZdfiNMQIXX1DlcJpC3n1zxiiOijZb21lB25LIIWIdmVyC2LVbiI6IJeuMcJ9" - }, - "location": "global" + "parameters": { + "subscriptionId": "dd8597b4-8739-4467-8b10-f8679f62bfbf", + "resourceGroup": "azurestack", + "registrationName": "testregistration", + "api-version": "2017-06-01", + "token": { + "properties": { + "registrationToken": "EyjIAWXSAw5nTw9KZWWiOiJeZxZlbg9wBwvUdCiSIM9iaMVjdeLkijoinwIzyJa2Ytgtowm2yy00OdG4lTlLyJmtztHjZGfJZTC0NZK1iIWiY2XvdWRJzCi6iJy5nDy0oDk1LTNHmWeTnDUwyS05oDI0LTrINzYwoGq5mjAzziIsim1HCmtldHBsYwnLu3LuZGljYXrpB25FBmfIbgVkIJp0CNvLLCJOYXJkd2FYzuLUZM8iOlt7IM51bunvcMVZiJoYlCjcaw9ZiJPBIjNkzDJHmda3yte5ndqZMdq4YmZkZmi5oDM3OTY3ZwNMIL0SIM5PyYI6WyJLZTy0ztJJMwZKy2m0OWNLODDLMwm2zTm0ymzKyjmWySisiJA3njlHmtdlY2q4NjRjnwFIZtC1YZi5ZGyZodM3Y2vjIl0siMnwDsi6wyi2oDUZoTbiY2RhNDa0ymrKoWe4YtK5otblzWrJzGyzNCISIjmYnzC4M2vmnZdIoDRKM2i5ytfkmJlhnDc1zdhLzWm1il0sim5HBwuiOijIqzF1MTvhmDIXmIIsimrpc2SiolsioWNlZjVhnZM1otQ0nDu3NmjlN2M3zmfjzmyZMTJhZtiiLcjLZjLmmZJhmWVhytG0NTu0OTqZNWu1Mda0MZbIYtfjyijdLCj1DWlKijoinwM5Mwu3NjytMju5Os00oTIwlWi0OdmTnGzHotiWm2RjyTCxIIwiBWvTb3J5ijPbijAYZDA3M2fjNzu0YTRMZTfhodkxzDnkogY5ZtAWzdyXIiwINZcWzThLnDQ4otrJndAzZGI5MGzlYtY1ZJA5ZdfiNMQIXX1DlcJpC3n1zxiiOijZb21lB25LIIWIdmVyC2LVbiI6IJeuMcJ9" + }, + "location": "global" + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration", + "name": "testregistration", + "type": "Microsoft.AzureStack/registrations", + "location": "global", + "etag": "\"0e00ab2b-0000-0000-0000-5a82517f0000\"", + "properties": { + "cloudId": "5bf881b2-6be7-42a1-9f47-d6fcb6737747", + "objectId": "2dbdd5f4-daf3-442a-be35-b71c3debee5a", + "billingModel": "Development" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration", - "name": "testregistration", - "type": "Microsoft.AzureStack/registrations", - "location": "global", - "etag": "\"0e00ab2b-0000-0000-0000-5a82517f0000\"", - "properties": { - "cloudId": "5bf881b2-6be7-42a1-9f47-d6fcb6737747", - "objectId": "2dbdd5f4-daf3-442a-be35-b71c3debee5a", - "billingModel": "Development" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration", - "name": "testregistration", - "type": "Microsoft.AzureStack/registrations", - "location": "global", - "etag": "\"0e00ab2b-0000-0000-0000-5a82517f0000\"", - "properties": { - "cloudId": "5bf881b2-6be7-42a1-9f47-d6fcb6737747", - "objectId": "2dbdd5f4-daf3-442a-be35-b71c3debee5a", - "billingModel": "Development" - } - } + "201": { + "body": { + "id": "/subscriptions/dd8597b4-8739-4467-8b10-f8679f62bfbf/resourceGroups/azurestack/providers/Microsoft.AzureStack/registrations/testregistration", + "name": "testregistration", + "type": "Microsoft.AzureStack/registrations", + "location": "global", + "etag": "\"0e00ab2b-0000-0000-0000-5a82517f0000\"", + "properties": { + "cloudId": "5bf881b2-6be7-42a1-9f47-d6fcb6737747", + "objectId": "2dbdd5f4-daf3-442a-be35-b71c3debee5a", + "billingModel": "Development" } + } } -} \ No newline at end of file + } +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2015-12-01.2.2/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2015-12-01.2.2/BatchService.json index 009f63beeb0a..500f854fe1b9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2015-12-01.2.2/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2015-12-01.2.2/BatchService.json @@ -1147,7 +1147,7 @@ "default": 30, "description": "Sets the maximum time that the server can spend processing the request, in seconds. The default is 30 seconds.", "x-ms-parameter-grouping": { - "postfix": "Options" + "postfix": "Options" } }, { @@ -8554,7 +8554,7 @@ "description": "Gets the OData id of the resource to which the request applied.", "type": "string" } - }, + }, "description": "" }, "default": { @@ -9183,7 +9183,15 @@ "description": "Gets or sets the cross data center network egress in GiB from the pool during this interval." } }, - "required": ["poolId","startTime","endTime","vmSize","totalCoreHours","dataIngressGiB","dataEgressGiB"], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours", + "dataIngressGiB", + "dataEgressGiB" + ], "description": "Usage metrics for a pool across an aggregation interval." }, "PoolListPoolUsageMetricsResult": { @@ -9220,7 +9228,11 @@ "description": "Gets or sets the aggregated wall-clock time of the dedicated compute node cores being part of the pool." } }, - "required": ["startTime","lastUpdateTime","dedicatedCoreTime"], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "description": "Statistics related to pool usage information." }, "ResourceStatistics": { @@ -9291,7 +9303,21 @@ "description": "Gets or sets the total amount of data in GiB of network writes across all nodes in the pool." } }, - "required": ["startTime","lastUpdateTime","avgCPUPercentage","avgMemoryGiB","peakMemoryGiB","avgDiskGiB","peakDiskGiB","diskReadIOps","diskWriteIOps","diskReadGiB","diskWriteGiB","networkReadGiB","networkWriteGiB"], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "description": "Statistics related to resource consumption by compute nodes in a pool." }, "PoolStatistics": { @@ -9319,7 +9345,11 @@ "description": "Gets or sets statistics related to resource consumption by compute nodes in the pool." } }, - "required": ["url","startTime","lastUpdateTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "description": "Contains utilization and resource usage statistics for the lifetime of a pool." }, "JobStatistics": { @@ -9394,7 +9424,22 @@ "description": "Gets or sets the total wait time of all the tasks in the job. The wait time for a task is defined as the elapsed time between the creation of the task creation and the start of task execution. This value is reported only in the account lifetime statistics; it is not included in individual job statistics." } }, - "required": ["url","startTime","lastUpdateTime","userCPUTime","kernelCPUTime","wallClockTime","readIOps","writeIOps","readIOGiB","writeIOGiB","numSucceededTasks","numFailedTasks","numTaskRetries","waitTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "description": "Resource usage statistics for a job." }, "NameValuePair": { @@ -9452,7 +9497,10 @@ "deleting", "deletefailed" ], - "x-ms-enum": {"name": "CertificateState", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -9467,7 +9515,10 @@ "deleting", "deletefailed" ], - "x-ms-enum": { "name": "CertificateState", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -9496,7 +9547,9 @@ "description": "Gets or sets the application package version. If not specified, the default is used." } }, - "required": ["applicationId"], + "required": [ + "applicationId" + ], "description": "A reference to an application package to be installed on compute nodes in a pool." }, "ApplicationSummary": { @@ -9516,7 +9569,11 @@ } } }, - "required": ["id", "displayName", "versions"], + "required": [ + "id", + "displayName", + "versions" + ], "description": "Contains information about an application in an Azure Batch account." }, "CertificateAddParameter": { @@ -9541,14 +9598,21 @@ "cer", "unmapped" ], - "x-ms-enum": { "name": "CertificateFormat", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateFormat", + "modelAsString": false + } }, "password": { "type": "string", "description": "Gets or sets the password to access the certificate's private key. This property is not populated by the Get Certificate operation." } }, - "required": ["thumbprint", "thumbprintAlgorithm", "data"], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "description": "A certificate that can be installed on compute nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -9589,7 +9653,10 @@ "description": "Gets or sets the content type of the file." } }, - "required": ["lastModified","contentLength"], + "required": [ + "lastModified", + "contentLength" + ], "description": "The properties of a file on a compute node." }, "NodeFile": { @@ -9856,10 +9923,15 @@ "pack", "unmapped" ], - "x-ms-enum": { "name": "ComputeNodeFillType", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeFillType", + "modelAsString": false + } } }, - "required": ["nodeFillType"], + "required": [ + "nodeFillType" + ], "description": "Specifies how tasks should be distributed across compute nodes." }, "StartTask": { @@ -9916,7 +9988,10 @@ "localmachine", "unmapped" ], - "x-ms-enum": { "name": "CertificateStoreLocation", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateStoreLocation", + "modelAsString": false + } }, "storeName": { "type": "string", @@ -9927,7 +10002,10 @@ "description": "Gets or sets which user accounts on the compute node should have access to the private data of the certificate. This may be any subset of the values 'starttask', 'task' and 'rdp', separated by commas. The default is all accounts, corresponding to the string 'starttask,task,rdp'." } }, - "required": ["thumbprint", "thumbprintAlgorithm"], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "description": "A reference to a certificate to be installed on compute nodes in a pool." }, "MetadataItem": { @@ -10039,7 +10117,10 @@ "job", "unmapped" ], - "x-ms-enum": { "name": "PoolLifetimeOption", "modelAsString": false } + "x-ms-enum": { + "name": "PoolLifetimeOption", + "modelAsString": false + } }, "keepAlive": { "type": "boolean", @@ -10050,7 +10131,9 @@ "description": "Gets or sets the pool specification for the auto pool." } }, - "required": ["poolLifetimeOption"], + "required": [ + "poolLifetimeOption" + ], "description": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto pool, run all the tasks for the job on it, and will delete the pool once the job has completed." }, "PoolInformation": { @@ -10222,7 +10305,22 @@ "description": "Gets or sets the total wait time of all the tasks in jobs created under the schedule." } }, - "required": ["url","startTime","lastUpdateTime","userCPUTime","kernelCPUTime","wallClockTime","readIOps","writeIOps","readIOGiB","writeIOGiB","numSucceededTasks","numFailedTasks","numTaskRetries", "waitTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "description": "The lifetime resource usage statistics for a job schedule." }, "CloudJobSchedule": { @@ -10263,7 +10361,10 @@ "terminating", "deleting" ], - "x-ms-enum": { "name": "JobScheduleState", "modelAsString": false } + "x-ms-enum": { + "name": "JobScheduleState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -10280,7 +10381,10 @@ "terminating", "deleting" ], - "x-ms-enum": { "name": "JobScheduleState", "modelAsString": false } + "x-ms-enum": { + "name": "JobScheduleState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -10339,7 +10443,11 @@ "description": "Gets or sets a list of name-value pairs associated with the schedule as metadata." } }, - "required": ["id", "schedule", "jobSpecification"], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "description": "A job schedule that allows recurring jobs by specifying when to run jobs and a specification used to create each job." }, "CloudJobScheduleListResult": { @@ -10368,7 +10476,10 @@ "servererror", "unmapped" ], - "x-ms-enum": { "name": "SchedulingErrorCategory", "modelAsString": false } + "x-ms-enum": { + "name": "SchedulingErrorCategory", + "modelAsString": false + } }, "code": { "type": "string", @@ -10386,7 +10497,9 @@ "description": "Gets or sets a list of additional error details related to the scheduling error." } }, - "required": ["category"], + "required": [ + "category" + ], "description": "An error encountered by the Batch service when scheduling a job." }, "JobExecutionInformation": { @@ -10414,7 +10527,9 @@ "description": "Gets or sets a string describing the reason the job ended." } }, - "required": ["startTime"], + "required": [ + "startTime" + ], "description": "Contains information about the execution of a job in the Azure Batch service." }, "CloudJob": { @@ -10461,7 +10576,10 @@ "completed", "deleting" ], - "x-ms-enum": { "name": "JobState", "modelAsString": false } + "x-ms-enum": { + "name": "JobState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -10480,7 +10598,10 @@ "completed", "deleting" ], - "x-ms-enum": { "name": "JobState", "modelAsString": false } + "x-ms-enum": { + "name": "JobState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -10591,7 +10712,10 @@ "description": "Gets or sets the flag that determines if this job will use tasks with dependencies." } }, - "required": ["id", "poolInfo"], + "required": [ + "id", + "poolInfo" + ], "description": "An Azure Batch job to add." }, "CloudJobListResult": { @@ -10620,7 +10744,10 @@ "servererror", "unmapped" ], - "x-ms-enum": { "name": "SchedulingErrorCategory", "modelAsString": false } + "x-ms-enum": { + "name": "SchedulingErrorCategory", + "modelAsString": false + } }, "code": { "type": "string", @@ -10638,7 +10765,9 @@ "description": "Gets or sets the list of additional error details related to the scheduling error." } }, - "required": ["category"], + "required": [ + "category" + ], "description": "Information about an error when scheduling a task." }, "JobPreparationTaskExecutionInformation": { @@ -10660,7 +10789,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "JobPreparationTaskState", "modelAsString": false } + "x-ms-enum": { + "name": "JobPreparationTaskState", + "modelAsString": false + } }, "taskRootDirectory": { "type": "string", @@ -10690,7 +10822,11 @@ "description": "Gets or sets the most recent time at which a retry of the Job Preparation task started running. This property is set only if the task was retried (i.e. retryCount is nonzero)." } }, - "required": ["startTime","retryCount","state"], + "required": [ + "startTime", + "retryCount", + "state" + ], "description": "Contains information about the execution of a Job Preparation task on a compute node." }, "JobReleaseTaskExecutionInformation": { @@ -10712,7 +10848,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "JobReleaseTaskState", "modelAsString": false } + "x-ms-enum": { + "name": "JobReleaseTaskState", + "modelAsString": false + } }, "taskRootDirectory": { "type": "string", @@ -10732,7 +10871,10 @@ "description": "Gets or sets any error starting the Job Release task." } }, - "required": ["startTime","state"], + "required": [ + "startTime", + "state" + ], "description": "Contains information about the execution of a Job Release task on a compute node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -10812,7 +10954,9 @@ "description": "Gets or sets details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": ["timestamp"], + "required": [ + "timestamp" + ], "description": "The results and errors from an execution of a pool autoscale formula." }, "ResizeError": { @@ -10871,7 +11015,10 @@ "deleting", "upgrading" ], - "x-ms-enum": { "name": "PoolState", "modelAsString": false } + "x-ms-enum": { + "name": "PoolState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -10886,7 +11033,10 @@ "resizing", "stopping" ], - "x-ms-enum": { "name": "AllocationState", "modelAsString": false } + "x-ms-enum": { + "name": "AllocationState", + "modelAsString": false + } }, "allocationStateTransitionTime": { "type": "string", @@ -11074,7 +11224,11 @@ "description": "Gets or sets a list of name-value pairs associated with the pool as metadata." } }, - "required": ["id", "vmSize", "osFamily"], + "required": [ + "id", + "vmSize", + "osFamily" + ], "description": "A pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -11160,7 +11314,10 @@ "description": "Gets or sets the most recent time at which the task has been requeued by the Batch service as the result of a user request." } }, - "required": ["requeueCount","retryCount"], + "required": [ + "requeueCount", + "retryCount" + ], "description": "Information about the execution of a task." }, "ComputeNodeInformation": { @@ -11211,7 +11368,9 @@ "description": "Gets or sets a list of files that Batch will download on all subtasks." } }, - "required": ["numberOfInstances"], + "required": [ + "numberOfInstances" + ], "description": "Information about the settings required for multi-instance task." }, "TaskStatistics": { @@ -11271,7 +11430,19 @@ "description": "Gets or sets the elapsed time between the creation of the task and the start of task execution." } }, - "required": ["url","startTime","lastUpdateTime","userCPUTime","kernelCPUTime","wallClockTime","readIOps","writeIOps","readIOGiB","writeIOGiB","waitTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "description": "Resource usage statistics for a task." }, "TaskDependencies": { @@ -11306,7 +11477,10 @@ "description": "Gets or sets the last task id in the range." } }, - "required": ["start", "end"] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -11345,7 +11519,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -11361,7 +11538,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -11470,7 +11650,10 @@ "description": "Gets or sets any dependencies this task has." } }, - "required": ["id", "commandLine"], + "required": [ + "id", + "commandLine" + ], "description": "An Azure Batch task to add." }, "SubtaskInformation": { @@ -11512,7 +11695,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -11528,7 +11714,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -11594,14 +11783,19 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "executionInfo": { "$ref": "#/definitions/TaskExecutionInformation", "description": "Gets or sets information about the execution of the task." } }, - "required": ["taskState"], + "required": [ + "taskState" + ], "description": "Information about a task running on a compute node." }, "StartTaskInformation": { @@ -11613,7 +11807,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "StartTaskState", "modelAsString": false } + "x-ms-enum": { + "name": "StartTaskState", + "modelAsString": false + } }, "startTime": { "type": "string", @@ -11645,7 +11842,11 @@ "description": "Gets or sets the most recent time at which a retry of the task started running." } }, - "required": ["state","startTime","retryCount"], + "required": [ + "state", + "startTime", + "retryCount" + ], "description": "Information about a start task running on a compute node." }, "ComputeNodeError": { @@ -11695,7 +11896,10 @@ "leavingpool", "offline" ], - "x-ms-enum": { "name": "ComputeNodeState", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeState", + "modelAsString": false + } }, "schedulingState": { "type": "string", @@ -11704,7 +11908,10 @@ "enabled", "disabled" ], - "x-ms-enum": { "name": "SchedulingState", "modelAsString": false } + "x-ms-enum": { + "name": "SchedulingState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -11806,7 +12013,10 @@ "description": "Gets or sets the password of the account." } }, - "required": ["name", "password"], + "required": [ + "name", + "password" + ], "description": "An user account on a compute node." }, "JobSchedulePatchParameter": { @@ -11847,7 +12057,10 @@ "description": "Sets a list of name-value pairs associated with the job schedule as metadata. If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": ["schedule", "jobSpecification"], + "required": [ + "schedule", + "jobSpecification" + ], "description": "Parameters for a CloudJobScheduleOperations.Update request." }, "JobDisableParameter": { @@ -11860,10 +12073,15 @@ "terminate", "wait" ], - "x-ms-enum": { "name": "DisableJobOption", "modelAsString": false } + "x-ms-enum": { + "name": "DisableJobOption", + "modelAsString": false + } } }, - "required": ["disableTasks"], + "required": [ + "disableTasks" + ], "description": "Parameters for a CloudJobOperations.Disable request." }, "JobTerminateParameter": { @@ -11923,7 +12141,9 @@ "description": "Sets a list of name-value pairs associated with the job as metadata. If omitted, the existing job metadata is left unchanged." } }, - "required": ["poolInfo"], + "required": [ + "poolInfo" + ], "description": "Parameters for a CloudJobOperations.Update request." }, "PoolEnableAutoScaleParameter": { @@ -11947,7 +12167,9 @@ "description": "Sets a formula for the desired number of compute nodes in the pool." } }, - "required": ["autoScaleFormula"], + "required": [ + "autoScaleFormula" + ], "description": "Parameters for a CloudJobOperations.EvaluateAutoScale request." }, "PoolResizeParameter": { @@ -11971,10 +12193,15 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeDeallocationOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeDeallocationOption", + "modelAsString": false + } } }, - "required": ["targetDedicated"], + "required": [ + "targetDedicated" + ], "description": "Parameters for a CloudPoolOperations.Resize request." }, "PoolUpdatePropertiesParameter": { @@ -12005,7 +12232,11 @@ "description": "Sets a list of name-value pairs associated with the pool as metadata. If you specify an empty collection, any existing metadata is removed from the pool." } }, - "required": ["certificateReferences", "metadata", "applicationPackageReferences"], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "description": "Parameters for a CloudPoolOperations.UpdateProperties request." }, "PoolUpgradeOSParameter": { @@ -12015,7 +12246,9 @@ "description": "Sets the Azure Guest OS version to be installed on the virtual machines in the pool." } }, - "required": ["targetOSVersion"], + "required": [ + "targetOSVersion" + ], "description": "Parameters for a CloudPoolOperations.UpgradeOS request." }, "PoolPatchParameter": { @@ -12069,7 +12302,9 @@ "description": "Sets the time at which the account should expire. If omitted, the default is 1 day from the current time." } }, - "required": ["password"], + "required": [ + "password" + ], "description": "Parameters for a ComputeNodeOperations.UpdateUser request." }, "NodeRebootParameter": { @@ -12083,7 +12318,10 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeRebootOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeRebootOption", + "modelAsString": false + } } }, "description": "Parameters for a ComputeNodeOperations.Reboot request." @@ -12099,7 +12337,10 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeReimageOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeReimageOption", + "modelAsString": false + } } }, "description": "Parameters for a ComputeNodeOperations.Reimage request." @@ -12114,7 +12355,10 @@ "terminate", "taskcompletion" ], - "x-ms-enum": { "name": "DisableComputeNodeSchedulingOption", "modelAsString": false } + "x-ms-enum": { + "name": "DisableComputeNodeSchedulingOption", + "modelAsString": false + } } }, "description": "Parameters for a ComputeNodeOperations.DisableScheduling request." @@ -12142,10 +12386,15 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeDeallocationOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeDeallocationOption", + "modelAsString": false + } } }, - "required": ["nodeList"], + "required": [ + "nodeList" + ], "description": "Parameters for a ComputeNodeOperations.Remove request." }, "ErrorMessage": { @@ -12204,4 +12453,4 @@ "description": "Client API Version." } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2016-02-01.3.0/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2016-02-01.3.0/BatchService.json index 85a34cb906bf..af2457930937 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2016-02-01.3.0/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2016-02-01.3.0/BatchService.json @@ -1264,7 +1264,7 @@ "default": 30, "description": "The maximum time that the server can spend processing the request, in seconds. The default is 30 seconds.", "x-ms-parameter-grouping": { - "postfix": "Options" + "postfix": "Options" } }, { @@ -8063,7 +8063,7 @@ "post": { "tags": [ "Tasks" - ], + ], "operationId": "Task_Terminate", "description": "Terminates the specified task.", "x-ms-request-id": "request-id", @@ -8766,7 +8766,7 @@ "description": "The OData id of the resource to which the request applied.", "type": "string" } - }, + }, "description": "" }, "default": { @@ -9501,7 +9501,15 @@ "description": "The cross data center network egress in GiB from the pool during this interval." } }, - "required": ["poolId","startTime","endTime","vmSize","totalCoreHours","dataIngressGiB","dataEgressGiB"], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours", + "dataIngressGiB", + "dataEgressGiB" + ], "description": "Usage metrics for a pool across an aggregation interval." }, "PoolListPoolUsageMetricsResult": { @@ -9541,7 +9549,10 @@ "windows", "unmapped" ], - "x-ms-enum": {"name": "OSType", "modelAsString": false } + "x-ms-enum": { + "name": "OSType", + "modelAsString": false + } } }, "description": "A node agent SKU supported by the Batch service. The Batch node agent is a program that runs on each node in the pool, and provides the command-and-control interface between the node and the Batch service. There are different implementations of the node agent, known as SKUs, for different operating systems." @@ -9580,7 +9591,11 @@ "description": "The aggregated wall-clock time of the dedicated compute node cores being part of the pool." } }, - "required": ["startTime","lastUpdateTime","dedicatedCoreTime"], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "description": "Statistics related to pool usage information." }, "ResourceStatistics": { @@ -9651,7 +9666,21 @@ "description": "The total amount of data in GiB of network writes across all nodes in the pool." } }, - "required": ["startTime","lastUpdateTime","avgCPUPercentage","avgMemoryGiB","peakMemoryGiB","avgDiskGiB","peakDiskGiB","diskReadIOps","diskWriteIOps","diskReadGiB","diskWriteGiB","networkReadGiB","networkWriteGiB"], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "description": "Statistics related to resource consumption by compute nodes in a pool." }, "PoolStatistics": { @@ -9679,7 +9708,11 @@ "description": "Statistics related to resource consumption by compute nodes in the pool." } }, - "required": ["url","startTime","lastUpdateTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "description": "Contains utilization and resource usage statistics for the lifetime of a pool." }, "JobStatistics": { @@ -9754,7 +9787,22 @@ "description": "The total wait time of all tasks in the job. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": ["url","startTime","lastUpdateTime","userCPUTime","kernelCPUTime","wallClockTime","readIOps","writeIOps","readIOGiB","writeIOGiB","numSucceededTasks","numFailedTasks","numTaskRetries","waitTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "description": "Resource usage statistics for a job." }, "NameValuePair": { @@ -9812,7 +9860,10 @@ "deleting", "deletefailed" ], - "x-ms-enum": {"name": "CertificateState", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -9827,7 +9878,10 @@ "deleting", "deletefailed" ], - "x-ms-enum": { "name": "CertificateState", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -9856,7 +9910,9 @@ "description": "The version of the application to install. If omitted, the default version is installed." } }, - "required": ["applicationId"], + "required": [ + "applicationId" + ], "description": "A reference to an application package to be installed on compute nodes in a pool." }, "ApplicationSummary": { @@ -9876,7 +9932,11 @@ } } }, - "required": ["id", "displayName", "versions"], + "required": [ + "id", + "displayName", + "versions" + ], "description": "Contains information about an application in an Azure Batch account." }, "CertificateAddParameter": { @@ -9901,14 +9961,21 @@ "cer", "unmapped" ], - "x-ms-enum": { "name": "CertificateFormat", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateFormat", + "modelAsString": false + } }, "password": { "type": "string", "description": "The password to access the certificate's private key." } }, - "required": ["thumbprint", "thumbprintAlgorithm", "data"], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "description": "A certificate that can be installed on compute nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -9953,7 +10020,10 @@ "description": "The file mode attribute in octal format. This property will be returned only from a Linux compute node." } }, - "required": ["lastModified","contentLength"], + "required": [ + "lastModified", + "contentLength" + ], "description": "The properties of a file on a compute node." }, "NodeFile": { @@ -10224,10 +10294,15 @@ "pack", "unmapped" ], - "x-ms-enum": { "name": "ComputeNodeFillType", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeFillType", + "modelAsString": false + } } }, - "required": ["nodeFillType"], + "required": [ + "nodeFillType" + ], "description": "Specifies how tasks should be distributed across compute nodes." }, "StartTask": { @@ -10284,7 +10359,10 @@ "localmachine", "unmapped" ], - "x-ms-enum": { "name": "CertificateStoreLocation", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateStoreLocation", + "modelAsString": false + } }, "storeName": { "type": "string", @@ -10300,12 +10378,18 @@ "remoteuser", "unmapped" ], - "x-ms-enum": { "name": "CertificateVisibility", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateVisibility", + "modelAsString": false + } }, "description": "Which user accounts on the compute node should have access to the private data of the certificate. This may be any subset of the values 'starttask', 'task' and 'remoteuser', separated by commas. The default is all accounts, corresponding to the string 'starttask,task,remoteuser'." } }, - "required": ["thumbprint", "thumbprintAlgorithm"], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "description": "A reference to a certificate to be installed on compute nodes in a pool." }, "MetadataItem": { @@ -10417,7 +10501,10 @@ "job", "unmapped" ], - "x-ms-enum": { "name": "PoolLifetimeOption", "modelAsString": false } + "x-ms-enum": { + "name": "PoolLifetimeOption", + "modelAsString": false + } }, "keepAlive": { "type": "boolean", @@ -10428,7 +10515,9 @@ "description": "The pool specification for the auto pool." } }, - "required": ["poolLifetimeOption"], + "required": [ + "poolLifetimeOption" + ], "description": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto pool, run all the tasks for the job on it, and will delete the pool once the job has completed." }, "PoolInformation": { @@ -10600,7 +10689,22 @@ "description": "The total wait time of all tasks in all jobs created under the schedule. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": ["url","startTime","lastUpdateTime","userCPUTime","kernelCPUTime","wallClockTime","readIOps","writeIOps","readIOGiB","writeIOGiB","numSucceededTasks","numFailedTasks","numTaskRetries", "waitTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "description": "Resource usage statistics for a job schedule." }, "CloudJobSchedule": { @@ -10641,7 +10745,10 @@ "terminating", "deleting" ], - "x-ms-enum": { "name": "JobScheduleState", "modelAsString": false } + "x-ms-enum": { + "name": "JobScheduleState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -10658,7 +10765,10 @@ "terminating", "deleting" ], - "x-ms-enum": { "name": "JobScheduleState", "modelAsString": false } + "x-ms-enum": { + "name": "JobScheduleState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -10717,7 +10827,11 @@ "description": "A list of name-value pairs associated with the schedule as metadata." } }, - "required": ["id", "schedule", "jobSpecification"], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "description": "A job schedule that allows recurring jobs by specifying when to run jobs and a specification used to create each job." }, "CloudJobScheduleListResult": { @@ -10746,7 +10860,10 @@ "servererror", "unmapped" ], - "x-ms-enum": { "name": "SchedulingErrorCategory", "modelAsString": false } + "x-ms-enum": { + "name": "SchedulingErrorCategory", + "modelAsString": false + } }, "code": { "type": "string", @@ -10764,7 +10881,9 @@ "description": "A list of additional error details related to the scheduling error." } }, - "required": ["category"], + "required": [ + "category" + ], "description": "An error encountered by the Batch service when scheduling a job." }, "JobExecutionInformation": { @@ -10792,7 +10911,9 @@ "description": "A string describing the reason the job ended." } }, - "required": ["startTime"], + "required": [ + "startTime" + ], "description": "Contains information about the execution of a job in the Azure Batch service." }, "CloudJob": { @@ -10839,7 +10960,10 @@ "completed", "deleting" ], - "x-ms-enum": { "name": "JobState", "modelAsString": false } + "x-ms-enum": { + "name": "JobState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -10858,7 +10982,10 @@ "completed", "deleting" ], - "x-ms-enum": { "name": "JobState", "modelAsString": false } + "x-ms-enum": { + "name": "JobState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -10969,7 +11096,10 @@ "description": "The flag that determines if this job will use tasks with dependencies." } }, - "required": ["id", "poolInfo"], + "required": [ + "id", + "poolInfo" + ], "description": "An Azure Batch job to add." }, "CloudJobListResult": { @@ -10998,7 +11128,10 @@ "servererror", "unmapped" ], - "x-ms-enum": { "name": "SchedulingErrorCategory", "modelAsString": false } + "x-ms-enum": { + "name": "SchedulingErrorCategory", + "modelAsString": false + } }, "code": { "type": "string", @@ -11016,7 +11149,9 @@ "description": "The list of additional error details related to the scheduling error." } }, - "required": ["category"], + "required": [ + "category" + ], "description": "Information about an error when scheduling a task." }, "JobPreparationTaskExecutionInformation": { @@ -11038,7 +11173,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "JobPreparationTaskState", "modelAsString": false } + "x-ms-enum": { + "name": "JobPreparationTaskState", + "modelAsString": false + } }, "taskRootDirectory": { "type": "string", @@ -11068,7 +11206,11 @@ "description": "The most recent time at which a retry of the Job Preparation task started running. This property is set only if the task was retried (i.e. retryCount is nonzero)." } }, - "required": ["startTime","retryCount","state"], + "required": [ + "startTime", + "retryCount", + "state" + ], "description": "Contains information about the execution of a Job Preparation task on a compute node." }, "JobReleaseTaskExecutionInformation": { @@ -11090,7 +11232,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "JobReleaseTaskState", "modelAsString": false } + "x-ms-enum": { + "name": "JobReleaseTaskState", + "modelAsString": false + } }, "taskRootDirectory": { "type": "string", @@ -11110,7 +11255,10 @@ "description": "The scheduling error encountered by the Batch service when starting the task." } }, - "required": ["startTime","state"], + "required": [ + "startTime", + "state" + ], "description": "Contains information about the execution of a Job Release task on a compute node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -11190,7 +11338,9 @@ "description": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": ["timestamp"], + "required": [ + "timestamp" + ], "description": "The results and errors from an execution of a pool autoscale formula." }, "ResizeError": { @@ -11228,7 +11378,9 @@ "description": "The Azure Guest OS Version currently installed on the virtual machines in the pool. This may differ from TargetOSVersion if the pool state is Upgrading." } }, - "required": ["osFamily"], + "required": [ + "osFamily" + ], "description": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "ImageReference": { @@ -11250,7 +11402,11 @@ "description": "The version of the Azure Virtual Machines Marketplace image. A value of 'latest' can be specified to select the latest version of an image. If omitted, the default is 'latest'." } }, - "required": ["publisher", "offer", "sku"], + "required": [ + "publisher", + "offer", + "sku" + ], "description": "A reference to an Azure Virtual Machines Marketplace image." }, "WindowsConfiguration": { @@ -11277,7 +11433,10 @@ "description": "Windows operating system settings on the virtual machine. This property must not be specified if the ImageReference property specifies a Linux OS image." } }, - "required": ["imageReference", "nodeAgentSKUId"], + "required": [ + "imageReference", + "nodeAgentSKUId" + ], "description": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "CloudPool": { @@ -11316,7 +11475,10 @@ "deleting", "upgrading" ], - "x-ms-enum": { "name": "PoolState", "modelAsString": false } + "x-ms-enum": { + "name": "PoolState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -11331,7 +11493,10 @@ "resizing", "stopping" ], - "x-ms-enum": { "name": "AllocationState", "modelAsString": false } + "x-ms-enum": { + "name": "AllocationState", + "modelAsString": false + } }, "allocationStateTransitionTime": { "type": "string", @@ -11515,7 +11680,10 @@ "description": "A list of name-value pairs associated with the pool as metadata." } }, - "required": ["id", "vmSize"], + "required": [ + "id", + "vmSize" + ], "description": "A pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -11601,7 +11769,10 @@ "description": "The most recent time at which the task has been requeued by the Batch service as the result of a user request." } }, - "required": ["requeueCount","retryCount"], + "required": [ + "requeueCount", + "retryCount" + ], "description": "Information about the execution of a task." }, "ComputeNodeInformation": { @@ -11652,7 +11823,9 @@ "description": "A list of files that the Batch service will download before running the coordination command line. The difference between common resource files and task resource files is that common resource files are downloaded for all subtasks including the primary, whereas task resource files are downloaded only for the primary." } }, - "required": ["numberOfInstances"], + "required": [ + "numberOfInstances" + ], "description": "Settings which specify how to run a multi-instance task. Multi-instance tasks are commonly used to support MPI tasks." }, "TaskStatistics": { @@ -11712,7 +11885,19 @@ "description": "The total wait time of the task. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": ["url","startTime","lastUpdateTime","userCPUTime","kernelCPUTime","wallClockTime","readIOps","writeIOps","readIOGiB","writeIOGiB","waitTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "description": "Resource usage statistics for a task." }, "TaskDependencies": { @@ -11748,7 +11933,10 @@ } }, "description": "A range of task ids that a task can depend on. All tasks with ids in the range must complete successfully before the dependent task can be scheduled.", - "required": ["start", "end"] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -11787,7 +11975,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -11803,7 +11994,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -11912,7 +12106,10 @@ "description": "Any other tasks that this task depends on." } }, - "required": ["id", "commandLine"], + "required": [ + "id", + "commandLine" + ], "description": "An Azure Batch task to add." }, "TaskAddCollectionParameter": { @@ -11925,7 +12122,9 @@ "description": "The collection of tasks to add." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "A collection of Azure Batch tasks to add." }, "TaskAddResult": { @@ -11939,7 +12138,9 @@ "servererror", "unmapped" ], - "x-ms-enum": { "name": "TaskAddStatus" } + "x-ms-enum": { + "name": "TaskAddStatus" + } }, "taskId": { "type": "string", @@ -11963,7 +12164,10 @@ "description": "The error encountered while attempting to add the task." } }, - "required": ["status","taskId"], + "required": [ + "status", + "taskId" + ], "description": "Result for a single task added as part of an add task collection operation." }, "TaskAddCollectionResult": { @@ -12017,7 +12221,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -12033,7 +12240,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -12099,14 +12309,19 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "executionInfo": { "$ref": "#/definitions/TaskExecutionInformation", "description": "Information about the execution of the task." } }, - "required": ["taskState"], + "required": [ + "taskState" + ], "description": "Information about a task running on a compute node." }, "StartTaskInformation": { @@ -12118,7 +12333,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "StartTaskState", "modelAsString": false } + "x-ms-enum": { + "name": "StartTaskState", + "modelAsString": false + } }, "startTime": { "type": "string", @@ -12150,7 +12368,11 @@ "description": "The most recent time at which a retry of the task started running." } }, - "required": ["state","startTime","retryCount"], + "required": [ + "state", + "startTime", + "retryCount" + ], "description": "Information about a start task running on a compute node." }, "ComputeNodeError": { @@ -12200,7 +12422,10 @@ "leavingpool", "offline" ], - "x-ms-enum": { "name": "ComputeNodeState", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeState", + "modelAsString": false + } }, "schedulingState": { "type": "string", @@ -12209,7 +12434,10 @@ "enabled", "disabled" ], - "x-ms-enum": { "name": "SchedulingState", "modelAsString": false } + "x-ms-enum": { + "name": "SchedulingState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -12325,7 +12553,9 @@ "description": "The SSH public key that can be used for remote login to the compute node." } }, - "required": ["name"], + "required": [ + "name" + ], "description": "An user account on a compute node." }, "ComputeNodeGetRemoteLoginSettingsResult": { @@ -12340,7 +12570,10 @@ "description": "The port used for remote login to the compute node." } }, - "required": ["remoteLoginIPAddress","remoteLoginPort"], + "required": [ + "remoteLoginIPAddress", + "remoteLoginPort" + ], "description": "Response to a ComputeNodeOperation.GetRemoteLoginSettings request." }, "JobSchedulePatchParameter": { @@ -12381,7 +12614,10 @@ "description": "A list of name-value pairs associated with the job schedule as metadata. If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": ["schedule", "jobSpecification"], + "required": [ + "schedule", + "jobSpecification" + ], "description": "Parameters for a CloudJobScheduleOperations.Update request." }, "JobDisableParameter": { @@ -12394,10 +12630,15 @@ "terminate", "wait" ], - "x-ms-enum": { "name": "DisableJobOption", "modelAsString": false } + "x-ms-enum": { + "name": "DisableJobOption", + "modelAsString": false + } } }, - "required": ["disableTasks"], + "required": [ + "disableTasks" + ], "description": "Parameters for a CloudJobOperations.Disable request." }, "JobTerminateParameter": { @@ -12457,7 +12698,9 @@ "description": "A list of name-value pairs associated with the job as metadata. If omitted, the existing job metadata is left unchanged." } }, - "required": ["poolInfo"], + "required": [ + "poolInfo" + ], "description": "Parameters for a CloudJobOperations.Update request." }, "PoolEnableAutoScaleParameter": { @@ -12481,7 +12724,9 @@ "description": "A formula for the desired number of compute nodes in the pool." } }, - "required": ["autoScaleFormula"], + "required": [ + "autoScaleFormula" + ], "description": "Parameters for a CloudJobOperations.EvaluateAutoScale request." }, "PoolResizeParameter": { @@ -12505,10 +12750,15 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeDeallocationOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeDeallocationOption", + "modelAsString": false + } } }, - "required": ["targetDedicated"], + "required": [ + "targetDedicated" + ], "description": "Parameters for a CloudPoolOperations.Resize request." }, "PoolUpdatePropertiesParameter": { @@ -12539,7 +12789,11 @@ "description": "A list of name-value pairs associated with the pool as metadata. If you specify an empty collection, any existing metadata is removed from the pool." } }, - "required": ["certificateReferences", "metadata", "applicationPackageReferences"], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "description": "Parameters for a CloudPoolOperations.UpdateProperties request." }, "PoolUpgradeOSParameter": { @@ -12549,7 +12803,9 @@ "description": "The Azure Guest OS version to be installed on the virtual machines in the pool." } }, - "required": ["targetOSVersion"], + "required": [ + "targetOSVersion" + ], "description": "Parameters for a CloudPoolOperations.UpgradeOS request." }, "PoolPatchParameter": { @@ -12620,7 +12876,10 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeRebootOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeRebootOption", + "modelAsString": false + } } }, "description": "Parameters for a ComputeNodeOperations.Reboot request." @@ -12636,7 +12895,10 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeReimageOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeReimageOption", + "modelAsString": false + } } }, "description": "Parameters for a ComputeNodeOperations.Reimage request." @@ -12651,7 +12913,10 @@ "terminate", "taskcompletion" ], - "x-ms-enum": { "name": "DisableComputeNodeSchedulingOption", "modelAsString": false } + "x-ms-enum": { + "name": "DisableComputeNodeSchedulingOption", + "modelAsString": false + } } }, "description": "Parameters for a ComputeNodeOperations.DisableScheduling request." @@ -12679,10 +12944,15 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeDeallocationOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeDeallocationOption", + "modelAsString": false + } } }, - "required": ["nodeList"], + "required": [ + "nodeList" + ], "description": "Parameters for a ComputeNodeOperations.Remove request." }, "ErrorMessage": { @@ -12741,4 +13011,4 @@ "description": "Client API Version." } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2016-07-01.3.1/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2016-07-01.3.1/BatchService.json index d87ed82be381..7803cde748d0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2016-07-01.3.1/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2016-07-01.3.1/BatchService.json @@ -1293,7 +1293,7 @@ "default": 30, "description": "The maximum time that the server can spend processing the request, in seconds. The default is 30 seconds.", "x-ms-parameter-grouping": { - "postfix": "Options" + "postfix": "Options" } }, { @@ -8235,7 +8235,7 @@ "post": { "tags": [ "Tasks" - ], + ], "operationId": "Task_Terminate", "summary": "Terminates the specified task.", "description": "When the task has been terminated, it moves to the completed state. For multi-instance tasks, the terminate task operation applies synchronously to the primary task; subtasks are then terminated asynchronously in the background.", @@ -9100,7 +9100,7 @@ "description": "The OData ID of the resource to which the request applied.", "type": "string" } - }, + }, "description": "The request to the Batch service was successful." }, "default": { @@ -9848,7 +9848,15 @@ "title": "The cross data center network egress from the pool during this interval, in GiB." } }, - "required": ["poolId","startTime","endTime","vmSize","totalCoreHours","dataIngressGiB","dataEgressGiB"], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours", + "dataIngressGiB", + "dataEgressGiB" + ], "title": "Usage metrics for a pool across an aggregation interval." }, "PoolListPoolUsageMetricsResult": { @@ -9889,7 +9897,10 @@ "windows", "unmapped" ], - "x-ms-enum": {"name": "OSType", "modelAsString": false } + "x-ms-enum": { + "name": "OSType", + "modelAsString": false + } } }, "title": "A node agent SKU supported by the Batch service.", @@ -9929,7 +9940,11 @@ "title": "The aggregated wall-clock time of the dedicated compute node cores being part of the pool." } }, - "required": ["startTime","lastUpdateTime","dedicatedCoreTime"], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "title": "Statistics related to pool usage information." }, "ResourceStatistics": { @@ -10000,7 +10015,21 @@ "title": "The total amount of data in GiB of network writes across all nodes in the pool." } }, - "required": ["startTime","lastUpdateTime","avgCPUPercentage","avgMemoryGiB","peakMemoryGiB","avgDiskGiB","peakDiskGiB","diskReadIOps","diskWriteIOps","diskReadGiB","diskWriteGiB","networkReadGiB","networkWriteGiB"], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "title": "Statistics related to resource consumption by compute nodes in a pool." }, "PoolStatistics": { @@ -10028,7 +10057,11 @@ "title": "Statistics related to resource consumption by compute nodes in the pool." } }, - "required": ["url","startTime","lastUpdateTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "title": "Contains utilization and resource usage statistics for the lifetime of a pool." }, "JobStatistics": { @@ -10106,7 +10139,22 @@ "description": "The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.) This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": ["url","startTime","lastUpdateTime","userCPUTime","kernelCPUTime","wallClockTime","readIOps","writeIOps","readIOGiB","writeIOGiB","numSucceededTasks","numFailedTasks","numTaskRetries","waitTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job." }, "NameValuePair": { @@ -10165,7 +10213,10 @@ "deleting", "deletefailed" ], - "x-ms-enum": {"name": "CertificateState", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -10181,7 +10232,10 @@ "deleting", "deletefailed" ], - "x-ms-enum": { "name": "CertificateState", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -10213,7 +10267,9 @@ "description": "If this is omitted, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences. If you are calling the REST API directly, the HTTP status code is 409." } }, - "required": ["applicationId"], + "required": [ + "applicationId" + ], "title": "A reference to an application package to be deployed to compute nodes." }, "ApplicationSummary": { @@ -10234,7 +10290,11 @@ } } }, - "required": ["id", "displayName", "versions"], + "required": [ + "id", + "displayName", + "versions" + ], "title": "Contains information about an application in an Azure Batch account." }, "CertificateAddParameter": { @@ -10259,7 +10319,10 @@ "cer", "unmapped" ], - "x-ms-enum": { "name": "CertificateFormat", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateFormat", + "modelAsString": false + } }, "password": { "type": "string", @@ -10267,7 +10330,11 @@ "description": "This is required if the certificate format is pfx. It should be omitted if the certificate format is cer." } }, - "required": ["thumbprint", "thumbprintAlgorithm", "data"], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "title": "A certificate that can be installed on compute nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -10314,7 +10381,10 @@ "description": "The file mode is returned only for files on Linux compute nodes." } }, - "required": ["lastModified","contentLength"], + "required": [ + "lastModified", + "contentLength" + ], "title": "The properties of a file on a compute node." }, "NodeFile": { @@ -10417,7 +10487,10 @@ "description": "This property applies only to files being downloaded to Linux compute nodes. It will be ignored if it is specified for a resourceFile which will be downloaded to a Windows node. If this property is not specified for a Linux node, then a default value of 0770 is applied to the file." } }, - "required": ["blobSource", "filePath"], + "required": [ + "blobSource", + "filePath" + ], "title": "A file to be downloaded from Azure blob storage to a compute node." }, "EnvironmentSetting": { @@ -10431,10 +10504,12 @@ "title": "The value of the environment variable." } }, - "required": ["name"], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, - "ExitConditions": { + "ExitConditions": { "properties": { "exitCodes": { "type": "array", @@ -10475,7 +10550,10 @@ } }, "title": "How the Batch service should respond if a task exits with a particular exit code.", - "required": ["code","exitOptions"] + "required": [ + "code", + "exitOptions" + ] }, "ExitCodeRangeMapping": { "properties": { @@ -10495,8 +10573,11 @@ } }, "title": "A range of exit codes and how the Batch service should respond to exit codes within that range.", - "required": ["start", "end","exitOptions"] - + "required": [ + "start", + "end", + "exitOptions" + ] }, "ExitOptions": { "properties": { @@ -10509,8 +10590,11 @@ "disable", "terminate" ], - "x-ms-enum": { "name": "JobAction", "modelAsString": false } - } + "x-ms-enum": { + "name": "JobAction", + "modelAsString": false + } + } }, "title": "How the Batch service should respond to a particular exit condition." }, @@ -10596,7 +10680,10 @@ "description": "Application packages are downloaded and deployed to a shared directory, not the task directory. Therefore, if a referenced package is already on the compute node, and is up to date, then it is not re-downloaded; the existing copy on the compute node is used. If a referenced application package cannot be installed, for example because the package has been deleted or because download failed, the task fails with a scheduling error. This property is currently not supported on jobs running on pools created using the virtualMachineConfiguration (IaaS) property. If a task specifying applicationPackageReferences runs on such a pool, it fails with a scheduling error with code TaskSchedulingConstraintFailed." } }, - "required": ["id", "commandLine"], + "required": [ + "id", + "commandLine" + ], "title": "Specifies details of a Job Manager task." }, "JobPreparationTask": { @@ -10645,7 +10732,9 @@ "description": "The Job Preparation task is always rerun if a compute node is reimaged, or if the Job Preparation task did not complete (e.g. because the reboot occurred while the task was running). Therefore, you should always write a Job Preparation task to be idempotent and to behave correctly if run multiple times. The default value is true." } }, - "required": ["commandLine"], + "required": [ + "commandLine" + ], "title": "A Job Preparation task to run before any tasks of the job on any given compute node." }, "JobReleaseTask": { @@ -10692,7 +10781,9 @@ "description": "The default value is false." } }, - "required": ["commandLine"], + "required": [ + "commandLine" + ], "title": "A Job Release task to run on job completion on any compute node where the job has run." }, "TaskSchedulingPolicy": { @@ -10705,10 +10796,15 @@ "pack", "unmapped" ], - "x-ms-enum": { "name": "ComputeNodeFillType", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeFillType", + "modelAsString": false + } } }, - "required": ["nodeFillType"], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "StartTask": { @@ -10748,7 +10844,9 @@ "description": "If true and the start task fails on a compute node, the Batch service retries the start task up to its maximum retry count (maxTaskRetryCount). If the task has still not completed successfully after all retries, then the Batch service marks the compute node unusable, and will not schedule tasks to it. This condition can be detected via the node state and scheduling error detail. If false, the Batch service will not wait for the start task to complete. In this case, other tasks can start executing on the compute node while the start task is still running; and even if the start task fails, new tasks will continue to be scheduled on the node. The default is false." } }, - "required": ["commandLine"], + "required": [ + "commandLine" + ], "title": "A task which is run when a compute node joins a pool in the Azure Batch service, or when the compute node is rebooted or reimaged." }, "CertificateReference": { @@ -10770,7 +10868,10 @@ "localmachine", "unmapped" ], - "x-ms-enum": { "name": "CertificateStoreLocation", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateStoreLocation", + "modelAsString": false + } }, "storeName": { "type": "string", @@ -10787,13 +10888,19 @@ "remoteuser", "unmapped" ], - "x-ms-enum": { "name": "CertificateVisibility", "modelAsString": false } + "x-ms-enum": { + "name": "CertificateVisibility", + "modelAsString": false + } }, "title": "Which user accounts on the compute node should have access to the private data of the certificate.", "description": "The default is all accounts." } }, - "required": ["thumbprint", "thumbprintAlgorithm"], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool." }, "MetadataItem": { @@ -10807,7 +10914,10 @@ "title": "The value of the metadata item." } }, - "required": ["name", "value"], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -10909,7 +11019,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": ["vmSize"], + "required": [ + "vmSize" + ], "title": "Specification for creating a new pool." }, "AutoPoolSpecification": { @@ -10928,7 +11040,10 @@ "job", "unmapped" ], - "x-ms-enum": { "name": "PoolLifetimeOption", "modelAsString": false } + "x-ms-enum": { + "name": "PoolLifetimeOption", + "modelAsString": false + } }, "keepAlive": { "type": "boolean", @@ -10940,7 +11055,9 @@ "title": "The pool specification for the auto pool." } }, - "required": ["poolLifetimeOption"], + "required": [ + "poolLifetimeOption" + ], "title": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto pool when the job is submitted." }, "PoolInformation": { @@ -10983,7 +11100,10 @@ "noAction", "terminateJob" ], - "x-ms-enum": { "name": "OnAllTasksComplete", "modelAsString": false } + "x-ms-enum": { + "name": "OnAllTasksComplete", + "modelAsString": false + } }, "onTaskFailure": { "type": "string", @@ -10993,7 +11113,10 @@ "noAction", "performExitOptionsJobAction" ], - "x-ms-enum": { "name": "OnTaskFailure", "modelAsString": false } + "x-ms-enum": { + "name": "OnTaskFailure", + "modelAsString": false + } }, "constraints": { "$ref": "#/definitions/JobConstraints", @@ -11035,7 +11158,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": ["poolInfo"], + "required": [ + "poolInfo" + ], "title": "Specifies details of the jobs to be created on a schedule." }, "RecentJob": { @@ -11147,7 +11272,22 @@ "description": "This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": ["url","startTime","lastUpdateTime","userCPUTime","kernelCPUTime","wallClockTime","readIOps","writeIOps","readIOGiB","writeIOGiB","numSucceededTasks","numFailedTasks","numTaskRetries", "waitTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job schedule." }, "CloudJobSchedule": { @@ -11191,7 +11331,10 @@ "terminating", "deleting" ], - "x-ms-enum": { "name": "JobScheduleState", "modelAsString": false } + "x-ms-enum": { + "name": "JobScheduleState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -11209,7 +11352,10 @@ "terminating", "deleting" ], - "x-ms-enum": { "name": "JobScheduleState", "modelAsString": false } + "x-ms-enum": { + "name": "JobScheduleState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -11273,7 +11419,11 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": ["id", "schedule", "jobSpecification"], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "title": "A job schedule that allows recurring jobs by specifying when to run jobs and a specification used to create each job." }, "CloudJobScheduleListResult": { @@ -11302,7 +11452,10 @@ "servererror", "unmapped" ], - "x-ms-enum": { "name": "SchedulingErrorCategory", "modelAsString": false } + "x-ms-enum": { + "name": "SchedulingErrorCategory", + "modelAsString": false + } }, "code": { "type": "string", @@ -11320,7 +11473,9 @@ "title": "A list of additional error details related to the scheduling error." } }, - "required": ["category"], + "required": [ + "category" + ], "title": "An error encountered by the Batch service when scheduling a job." }, "JobExecutionInformation": { @@ -11353,7 +11508,9 @@ "description": "This property is set only if the job is in the completed state. If the Batch service terminates the job, it sets the reason as follows: JMComplete – the Job Manager task completed, and killJobOnCompletion was set to true. MaxWallClockTimeExpiry – the job reached its maxWallClockTime constraint. TerminateJobSchedule – the job ran as part of a schedule, and the schedule terminated. AllTasksComplete – the job's onAllTasksComplete attribute is set to terminateJob, and all tasks in the job are complete. TaskFailed – the job's onTaskFailure attribute is set to performExitOptionsJobAction, and a task in the job failed with an exit condition that specified a jobAction of terminateJob. Any other string is a user-defined reason specified in a call to the 'Terminate a job' operation." } }, - "required": ["startTime"], + "required": [ + "startTime" + ], "title": "Contains information about the execution of a job in the Azure Batch service." }, "CloudJob": { @@ -11403,7 +11560,10 @@ "completed", "deleting" ], - "x-ms-enum": { "name": "JobState", "modelAsString": false } + "x-ms-enum": { + "name": "JobState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -11423,7 +11583,10 @@ "completed", "deleting" ], - "x-ms-enum": { "name": "JobState", "modelAsString": false } + "x-ms-enum": { + "name": "JobState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -11474,7 +11637,10 @@ "noAction", "terminateJob" ], - "x-ms-enum": { "name": "OnAllTasksComplete", "modelAsString": false } + "x-ms-enum": { + "name": "OnAllTasksComplete", + "modelAsString": false + } }, "onTaskFailure": { "type": "string", @@ -11484,7 +11650,10 @@ "noAction", "performExitOptionsJobAction" ], - "x-ms-enum": { "name": "OnTaskFailure", "modelAsString": false } + "x-ms-enum": { + "name": "OnTaskFailure", + "modelAsString": false + } }, "metadata": { "type": "array", @@ -11561,7 +11730,10 @@ "noAction", "terminateJob" ], - "x-ms-enum": { "name": "OnAllTasksComplete", "modelAsString": false } + "x-ms-enum": { + "name": "OnAllTasksComplete", + "modelAsString": false + } }, "onTaskFailure": { "type": "string", @@ -11571,7 +11743,10 @@ "noAction", "performExitOptionsJobAction" ], - "x-ms-enum": { "name": "OnTaskFailure", "modelAsString": false } + "x-ms-enum": { + "name": "OnTaskFailure", + "modelAsString": false + } }, "metadata": { "type": "array", @@ -11586,7 +11761,10 @@ "title": "The flag that determines if this job will use tasks with dependencies." } }, - "required": ["id", "poolInfo"], + "required": [ + "id", + "poolInfo" + ], "title": "An Azure Batch job to add." }, "CloudJobListResult": { @@ -11615,7 +11793,10 @@ "servererror", "unmapped" ], - "x-ms-enum": { "name": "SchedulingErrorCategory", "modelAsString": false } + "x-ms-enum": { + "name": "SchedulingErrorCategory", + "modelAsString": false + } }, "code": { "type": "string", @@ -11633,7 +11814,9 @@ "title": "The list of additional error details related to the scheduling error." } }, - "required": ["category"], + "required": [ + "category" + ], "title": "Information about an error when scheduling a task." }, "JobPreparationTaskExecutionInformation": { @@ -11658,7 +11841,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "JobPreparationTaskState", "modelAsString": false } + "x-ms-enum": { + "name": "JobPreparationTaskState", + "modelAsString": false + } }, "taskRootDirectory": { "type": "string", @@ -11690,7 +11876,11 @@ "description": "This property is set only if the task was retried (i.e. retryCount is nonzero). If present, this is typically the same as startTime, but may be different if the task has been restarted for reasons other than retry; for example, if the compute node was rebooted during a retry, then the startTime is updated but the lastRetryTime is not." } }, - "required": ["startTime","retryCount","state"], + "required": [ + "startTime", + "retryCount", + "state" + ], "title": "Contains information about the execution of a Job Preparation task on a compute node." }, "JobReleaseTaskExecutionInformation": { @@ -11714,7 +11904,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "JobReleaseTaskState", "modelAsString": false } + "x-ms-enum": { + "name": "JobReleaseTaskState", + "modelAsString": false + } }, "taskRootDirectory": { "type": "string", @@ -11735,7 +11928,10 @@ "title": "The error encountered by the Batch service when starting the task." } }, - "required": ["startTime","state"], + "required": [ + "startTime", + "state" + ], "title": "Contains information about the execution of a Job Release task on a compute node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -11817,7 +12013,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": ["timestamp"], + "required": [ + "timestamp" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "ResizeError": { @@ -11858,7 +12056,9 @@ "description": "This may differ from targetOSVersion if the pool state is Upgrading. In this case some virtual machines may be on the targetOSVersion and some may be on the currentOSVersion during the upgrade process. Once all virtual machines have upgraded, currentOSVersion is updated to be the same as targetOSVersion." } }, - "required": ["osFamily"], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "ImageReference": { @@ -11884,7 +12084,11 @@ "description": "A value of 'latest' can be specified to select the latest version of an image. If omitted, the default is 'latest'." } }, - "required": ["publisher", "offer", "sku"], + "required": [ + "publisher", + "offer", + "sku" + ], "title": "A reference to an Azure Virtual Machines Marketplace image. To get the list of all imageReferences verified by Azure Batch, see the 'List supported node agent SKUs' operation." }, "WindowsConfiguration": { @@ -11914,7 +12118,10 @@ "description": "This property must not be specified if the imageReference property specifies a Linux OS image." } }, - "required": ["imageReference", "nodeAgentSKUId"], + "required": [ + "imageReference", + "nodeAgentSKUId" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "NetworkConfiguration": { @@ -11972,7 +12179,10 @@ "deleting", "upgrading" ], - "x-ms-enum": { "name": "PoolState", "modelAsString": false } + "x-ms-enum": { + "name": "PoolState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -11988,7 +12198,10 @@ "resizing", "stopping" ], - "x-ms-enum": { "name": "AllocationState", "modelAsString": false } + "x-ms-enum": { + "name": "AllocationState", + "modelAsString": false + } }, "allocationStateTransitionTime": { "type": "string", @@ -12179,7 +12392,7 @@ "$ref": "#/definitions/CertificateReference" }, "title": "The list of certificates to be installed on each compute node in the pool.", - "description": "For Windows compute nodes, the Batch service installs the certificates to the specified certificate store and location. For Linux compute nodes, the certificates are stored in a directory inside the task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the task to query for this location. For certificates with visibility of remoteuser, a certs directory is created in the user's home directory (e.g., /home//certs) where certificates are placed." + "description": "For Windows compute nodes, the Batch service installs the certificates to the specified certificate store and location. For Linux compute nodes, the certificates are stored in a directory inside the task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the task to query for this location. For certificates with visibility of remoteuser, a certs directory is created in the user's home directory (e.g., /home//certs) where certificates are placed." }, "applicationPackageReferences": { "type": "array", @@ -12208,7 +12421,10 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": ["id", "vmSize"], + "required": [ + "id", + "vmSize" + ], "title": "A pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -12251,7 +12467,9 @@ "description": "You can pass the affinityId of a compute node or task to indicate that this task needs to be placed close to the node or task." } }, - "required": ["affinityId"], + "required": [ + "affinityId" + ], "title": "A locality hint that can be used by the Batch service to select a compute node on which to start a task." }, "TaskExecutionInformation": { @@ -12304,7 +12522,10 @@ "description": "This property is set only if the requeueCount is nonzero." } }, - "required": ["requeueCount","retryCount"], + "required": [ + "requeueCount", + "retryCount" + ], "title": "Information about the execution of a task." }, "ComputeNodeInformation": { @@ -12357,7 +12578,9 @@ "description": "The difference between common resource files and task resource files is that common resource files are downloaded for all subtasks including the primary, whereas task resource files are downloaded only for the primary." } }, - "required": ["numberOfInstances"], + "required": [ + "numberOfInstances" + ], "title": "Settings which specify how to run a multi-instance task.", "description": "Multi-instance tasks are commonly used to support MPI tasks." }, @@ -12419,7 +12642,19 @@ "title": "The total wait time of the task. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": ["url","startTime","lastUpdateTime","userCPUTime","kernelCPUTime","wallClockTime","readIOps","writeIOps","readIOGiB","writeIOGiB","waitTime"], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "title": "Resource usage statistics for a task." }, "TaskDependencies": { @@ -12456,7 +12691,10 @@ }, "title": "A range of task IDs that a task can depend on. All tasks with IDs in the range must complete successfully before the dependent task can be scheduled.", "description": "The start and end of the range are inclusive. For example, if a range has start 9 and end 12, then it represents tasks '9', '10', '11' and '12'.", - "required": ["start", "end"] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -12502,7 +12740,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -12519,7 +12760,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -12657,7 +12901,10 @@ "title": "A list of application packages that the Batch service will deploy to the compute node before running the command line." } }, - "required": ["id", "commandLine"], + "required": [ + "id", + "commandLine" + ], "title": "An Azure Batch task to add." }, "TaskAddCollectionParameter": { @@ -12671,7 +12918,9 @@ "title": "The collection of tasks to add." } }, - "required": ["value"], + "required": [ + "value" + ], "title": "A collection of Azure Batch tasks to add." }, "TaskAddResult": { @@ -12685,7 +12934,9 @@ "servererror", "unmapped" ], - "x-ms-enum": { "name": "TaskAddStatus" } + "x-ms-enum": { + "name": "TaskAddStatus" + } }, "taskId": { "type": "string", @@ -12709,7 +12960,10 @@ "title": "The error encountered while attempting to add the task." } }, - "required": ["status","taskId"], + "required": [ + "status", + "taskId" + ], "title": "Result for a single task added as part of an add task collection operation." }, "TaskAddCollectionResult": { @@ -12765,7 +13019,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -12782,7 +13039,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "previousStateTransitionTime": { "type": "string", @@ -12849,14 +13109,19 @@ "running", "completed" ], - "x-ms-enum": { "name": "TaskState", "modelAsString": false } + "x-ms-enum": { + "name": "TaskState", + "modelAsString": false + } }, "executionInfo": { "$ref": "#/definitions/TaskExecutionInformation", "title": "Information about the execution of the task." } }, - "required": ["taskState"], + "required": [ + "taskState" + ], "title": "Information about a task running on a compute node." }, "StartTaskInformation": { @@ -12869,7 +13134,10 @@ "running", "completed" ], - "x-ms-enum": { "name": "StartTaskState", "modelAsString": false } + "x-ms-enum": { + "name": "StartTaskState", + "modelAsString": false + } }, "startTime": { "type": "string", @@ -12906,7 +13174,11 @@ "description": "This element is present only if the task was retried (i.e. retryCount is nonzero). If present, this is typically the same as startTime, but may be different if the task has been restarted for reasons other than retry; for example, if the compute node was rebooted during a retry, then the startTime is updated but the lastRetryTime is not." } }, - "required": ["state","startTime","retryCount"], + "required": [ + "state", + "startTime", + "retryCount" + ], "title": "Information about a start task running on a compute node." }, "ComputeNodeError": { @@ -12957,7 +13229,10 @@ "leavingpool", "offline" ], - "x-ms-enum": { "name": "ComputeNodeState", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeState", + "modelAsString": false + } }, "schedulingState": { "type": "string", @@ -12967,7 +13242,10 @@ "enabled", "disabled" ], - "x-ms-enum": { "name": "SchedulingState", "modelAsString": false } + "x-ms-enum": { + "name": "SchedulingState", + "modelAsString": false + } }, "stateTransitionTime": { "type": "string", @@ -13091,7 +13369,9 @@ "description": "The public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux nodes. If this is specified for a Windows node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request)." } }, - "required": ["name"], + "required": [ + "name" + ], "title": "An user account on a compute node." }, "ComputeNodeGetRemoteLoginSettingsResult": { @@ -13106,7 +13386,10 @@ "title": "The port used for remote login to the compute node." } }, - "required": ["remoteLoginIPAddress","remoteLoginPort"], + "required": [ + "remoteLoginIPAddress", + "remoteLoginPort" + ], "title": "The remote login settings for a compute node." }, "JobSchedulePatchParameter": { @@ -13153,7 +13436,10 @@ "description": "If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": ["schedule", "jobSpecification"], + "required": [ + "schedule", + "jobSpecification" + ], "title": "The set of changes to be made to a job schedule." }, "JobDisableParameter": { @@ -13167,10 +13453,15 @@ "terminate", "wait" ], - "x-ms-enum": { "name": "DisableJobOption", "modelAsString": false } + "x-ms-enum": { + "name": "DisableJobOption", + "modelAsString": false + } } }, - "required": ["disableTasks"], + "required": [ + "disableTasks" + ], "title": "Options when disabling a job." }, "JobTerminateParameter": { @@ -13198,7 +13489,10 @@ "noAction", "terminateJob" ], - "x-ms-enum": { "name": "OnAllTasksComplete", "modelAsString": false } + "x-ms-enum": { + "name": "OnAllTasksComplete", + "modelAsString": false + } }, "constraints": { "$ref": "#/definitions/JobConstraints", @@ -13255,10 +13549,15 @@ "noAction", "terminateJob" ], - "x-ms-enum": { "name": "OnAllTasksComplete", "modelAsString": false } + "x-ms-enum": { + "name": "OnAllTasksComplete", + "modelAsString": false + } } }, - "required": ["poolInfo"], + "required": [ + "poolInfo" + ], "title": "The set of changes to be made to a job." }, "PoolEnableAutoScaleParameter": { @@ -13285,7 +13584,9 @@ "description": "The formula is validated and its results calculated, but it is not applied to the pool. To apply the formula to the pool, 'Enable automatic scaling on a pool'. For more information about specifying this formula, see Automatically scale compute nodes in an Azure Batch pool (https://azure.microsoft.com/en-us/documentation/articles/batch-automatic-scaling)." } }, - "required": ["autoScaleFormula"], + "required": [ + "autoScaleFormula" + ], "title": "Options for evaluating an automatic scaling formula on a pool." }, "PoolResizeParameter": { @@ -13311,10 +13612,15 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeDeallocationOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeDeallocationOption", + "modelAsString": false + } } }, - "required": ["targetDedicated"], + "required": [ + "targetDedicated" + ], "title": "Options for changing the size of a pool." }, "PoolUpdatePropertiesParameter": { @@ -13349,7 +13655,11 @@ "description": "This list replaces any existing metadata configured on the pool. If omitted, or if you specify an empty collection, any existing metadata is removed from the pool." } }, - "required": ["certificateReferences", "metadata", "applicationPackageReferences"], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "title": "The set of changes to be made to a pool." }, "PoolUpgradeOSParameter": { @@ -13359,7 +13669,9 @@ "title": "The Azure Guest OS version to be installed on the virtual machines in the pool." } }, - "required": ["targetOSVersion"], + "required": [ + "targetOSVersion" + ], "title": "Options for upgrading the operating system of compute nodes in a pool." }, "PoolPatchParameter": { @@ -13439,7 +13751,10 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeRebootOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeRebootOption", + "modelAsString": false + } } }, "title": "Options for rebooting a compute node." @@ -13456,7 +13771,10 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeReimageOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeReimageOption", + "modelAsString": false + } } }, "title": "Options for reimaging a compute node." @@ -13472,7 +13790,10 @@ "terminate", "taskcompletion" ], - "x-ms-enum": { "name": "DisableComputeNodeSchedulingOption", "modelAsString": false } + "x-ms-enum": { + "name": "DisableComputeNodeSchedulingOption", + "modelAsString": false + } } }, "title": "Options for disabling scheduling on a compute node." @@ -13503,10 +13824,15 @@ "taskcompletion", "retaineddata" ], - "x-ms-enum": { "name": "ComputeNodeDeallocationOption", "modelAsString": false } + "x-ms-enum": { + "name": "ComputeNodeDeallocationOption", + "modelAsString": false + } } }, - "required": ["nodeList"], + "required": [ + "nodeList" + ], "title": "Options for removing compute nodes from a pool." }, "ErrorMessage": { @@ -13565,4 +13891,4 @@ "description": "Client API Version." } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/BatchService.json index af327c849ccd..809b32de34f2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/BatchService.json @@ -247,7 +247,9 @@ }, "operationId": "Pool_ListUsageMetrics", "x-ms-examples": { - "Pool list usage metrics": { "$ref": "./examples/PoolListUsageMetrics.json" } + "Pool list usage metrics": { + "$ref": "./examples/PoolListUsageMetrics.json" + } }, "summary": "Lists the usage metrics, aggregated by pool across individual time intervals, for the specified account.", "description": "If you do not specify a $filter clause including a poolId, the response includes all pools that existed in the account in the time range of the returned aggregation intervals.", @@ -399,7 +401,9 @@ }, "operationId": "Account_ListNodeAgentSkus", "x-ms-examples": { - "Account list node agent skus": { "$ref": "./examples/AccountListNodeAgentSkus.json" } + "Account list node agent skus": { + "$ref": "./examples/AccountListNodeAgentSkus.json" + } }, "summary": "Lists all node agent SKUs supported by the Azure Batch service.", "x-ms-request-id": "request-id", @@ -523,7 +527,9 @@ ], "operationId": "Pool_GetAllLifetimeStatistics", "x-ms-examples": { - "Pool get lifetime statistics": { "$ref": "./examples/PoolGetLifetimeStatistics.json" } + "Pool get lifetime statistics": { + "$ref": "./examples/PoolGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the pools in the specified account.", "description": "Statistics are aggregated across all pools that have ever existed in the account, from account creation to the last update time of the statistics.", @@ -623,7 +629,9 @@ ], "operationId": "Job_GetAllLifetimeStatistics", "x-ms-examples": { - "Job get lifetime statistics": { "$ref": "./examples/JobGetLifetimeStatistics.json" } + "Job get lifetime statistics": { + "$ref": "./examples/JobGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the jobs in the specified account.", "description": "Statistics are aggregated across all jobs that have ever existed in the account, from account creation to the last update time of the statistics.", @@ -723,7 +731,9 @@ ], "operationId": "Certificate_Add", "x-ms-examples": { - "Certificate add": { "$ref": "./examples/CertificateAdd.json" } + "Certificate add": { + "$ref": "./examples/CertificateAdd.json" + } }, "summary": "Adds a certificate to the specified account.", "x-ms-request-id": "request-id", @@ -833,7 +843,9 @@ }, "operationId": "Certificate_List", "x-ms-examples": { - "Certificate list": { "$ref": "./examples/CertificateList.json" } + "Certificate list": { + "$ref": "./examples/CertificateList.json" + } }, "summary": "Lists all of the certificates that have been added to the specified account.", "x-ms-request-id": "request-id", @@ -967,7 +979,9 @@ ], "operationId": "Certificate_CancelDeletion", "x-ms-examples": { - "Certificate cancel delete": { "$ref": "./examples/CertificateCancelDelete.json" } + "Certificate cancel delete": { + "$ref": "./examples/CertificateCancelDelete.json" + } }, "summary": "Cancels a failed deletion of a certificate from the specified account.", "description": "If you try to delete a certificate that is being used by a pool or compute node, the status of the certificate changes to deleteFailed. If you decide that you want to continue using the certificate, you can use this operation to set the status of the certificate back to active. If you intend to delete the certificate, you do not need to run this operation after the deletion failed. You must make sure that the certificate is not being used by any resources, and then you can try again to delete the certificate.", @@ -1082,7 +1096,9 @@ ], "operationId": "Certificate_Delete", "x-ms-examples": { - "Certificate delete": { "$ref": "./examples/CertificateDelete.json" } + "Certificate delete": { + "$ref": "./examples/CertificateDelete.json" + } }, "summary": "Deletes a certificate from the specified account.", "description": "You cannot delete a certificate if a resource (pool or compute node) is using it. Before you can delete a certificate, you must therefore make sure that the certificate is not associated with any existing pools, the certificate is not installed on any compute nodes (even if you remove a certificate from a pool, it is not removed from existing compute nodes in that pool until they restart), and no running tasks depend on the certificate. If you try to delete a certificate that is in use, the deletion fails. The certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the certificate.", @@ -1191,7 +1207,9 @@ ], "operationId": "Certificate_Get", "x-ms-examples": { - "Certificate get": { "$ref": "./examples/CertificateGet.json" } + "Certificate get": { + "$ref": "./examples/CertificateGet.json" + } }, "description": "Gets information about the specified certificate.", "x-ms-request-id": "request-id", @@ -1314,7 +1332,9 @@ ], "operationId": "File_DeleteFromTask", "x-ms-examples": { - "File delete from task": { "$ref": "./examples/FileDeleteFromTask.json" } + "File delete from task": { + "$ref": "./examples/FileDeleteFromTask.json" + } }, "summary": "Deletes the specified task file from the compute node where the task ran.", "x-ms-request-id": "request-id", @@ -1598,7 +1618,9 @@ ], "operationId": "File_GetPropertiesFromTask", "x-ms-examples": { - "File get properties from task": { "$ref": "./examples/FileGetPropertiesFromTask.json" } + "File get properties from task": { + "$ref": "./examples/FileGetPropertiesFromTask.json" + } }, "description": "Gets the properties of the specified task file.", "x-ms-request-id": "request-id", @@ -1763,7 +1785,9 @@ ], "operationId": "File_DeleteFromComputeNode", "x-ms-examples": { - "File delete from node": { "$ref": "./examples/FileDeleteFromNode.json" } + "File delete from node": { + "$ref": "./examples/FileDeleteFromNode.json" + } }, "summary": "Deletes the specified task file from the compute node.", "x-ms-request-id": "request-id", @@ -2047,7 +2071,9 @@ ], "operationId": "File_GetPropertiesFromComputeNode", "x-ms-examples": { - "File get properties from node": { "$ref": "./examples/FileGetPropertiesFromNode.json" } + "File get properties from node": { + "$ref": "./examples/FileGetPropertiesFromNode.json" + } }, "description": "Gets the properties of the specified compute node file.", "x-ms-request-id": "request-id", @@ -2215,7 +2241,9 @@ }, "operationId": "File_ListFromTask", "x-ms-examples": { - "File list from task": { "$ref": "./examples/FileListFromTask.json" } + "File list from task": { + "$ref": "./examples/FileListFromTask.json" + } }, "summary": "Lists the files in a task's directory on its compute node.", "x-ms-request-id": "request-id", @@ -2363,7 +2391,9 @@ }, "operationId": "File_ListFromComputeNode", "x-ms-examples": { - "File list from node": { "$ref": "./examples/FileListFromNode.json" } + "File list from node": { + "$ref": "./examples/FileListFromNode.json" + } }, "summary": "Lists all of the files in task directories on the specified compute node.", "x-ms-request-id": "request-id", @@ -2651,7 +2681,9 @@ ], "operationId": "JobSchedule_Delete", "x-ms-examples": { - "JobSchedule delete": { "$ref": "./examples/JobScheduleDelete.json" } + "JobSchedule delete": { + "$ref": "./examples/JobScheduleDelete.json" + } }, "summary": "Deletes a job schedule from the specified account.", "description": "When you delete a job schedule, this also deletes all jobs and tasks under that schedule. When tasks are deleted, all the files in their working directories on the compute nodes are also deleted (the retention period is ignored). The job schedule statistics are no longer accessible once the job schedule is deleted, though they are still counted towards account lifetime statistics.", @@ -2784,7 +2816,9 @@ ], "operationId": "JobSchedule_Get", "x-ms-examples": { - "JobSchedule get": { "$ref": "./examples/JobScheduleGet.json" } + "JobSchedule get": { + "$ref": "./examples/JobScheduleGet.json" + } }, "description": "Gets information about the specified job schedule.", "x-ms-request-id": "request-id", @@ -2950,7 +2984,9 @@ ], "operationId": "JobSchedule_Patch", "x-ms-examples": { - "JobSchedule patch": { "$ref": "./examples/JobSchedulePatch.json" } + "JobSchedule patch": { + "$ref": "./examples/JobSchedulePatch.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This replaces only the job schedule properties specified in the request. For example, if the schedule property is not specified with this request, then the Batch service will keep the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3107,7 +3143,9 @@ ], "operationId": "JobSchedule_Update", "x-ms-examples": { - "JobSchedule update": { "$ref": "./examples/JobScheduleUpdate.json" } + "JobSchedule update": { + "$ref": "./examples/JobScheduleUpdate.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This fully replaces all the updatable properties of the job schedule. For example, if the schedule property is not specified with this request, then the Batch service will remove the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3266,7 +3304,9 @@ ], "operationId": "JobSchedule_Disable", "x-ms-examples": { - "JobSchedule disable": { "$ref": "./examples/JobScheduleDisable.json" } + "JobSchedule disable": { + "$ref": "./examples/JobScheduleDisable.json" + } }, "summary": "Disables a job schedule.", "description": "No new jobs will be created until the job schedule is enabled again.", @@ -3416,7 +3456,9 @@ ], "operationId": "JobSchedule_Enable", "x-ms-examples": { - "JobSchedule enable": { "$ref": "./examples/JobScheduleEnable.json" } + "JobSchedule enable": { + "$ref": "./examples/JobScheduleEnable.json" + } }, "summary": "Enables a job schedule.", "x-ms-request-id": "request-id", @@ -3565,7 +3607,9 @@ ], "operationId": "JobSchedule_Terminate", "x-ms-examples": { - "JobSchedule terminate": { "$ref": "./examples/JobScheduleTerminate.json" } + "JobSchedule terminate": { + "$ref": "./examples/JobScheduleTerminate.json" + } }, "summary": "Terminates a job schedule.", "x-ms-request-id": "request-id", @@ -3714,8 +3758,12 @@ ], "operationId": "JobSchedule_Add", "x-ms-examples": { - "Add a basic JobSchedule": { "$ref": "./examples/JobScheduleAdd_Basic.json" }, - "Add a complex JobScheduleAdd": { "$ref": "./examples/JobScheduleAdd_Complex.json" } + "Add a basic JobSchedule": { + "$ref": "./examples/JobScheduleAdd_Basic.json" + }, + "Add a complex JobScheduleAdd": { + "$ref": "./examples/JobScheduleAdd_Complex.json" + } }, "summary": "Adds a job schedule to the specified account.", "x-ms-request-id": "request-id", @@ -3825,7 +3873,9 @@ }, "operationId": "JobSchedule_List", "x-ms-examples": { - "JobSchedule list": { "$ref": "./examples/JobScheduleList.json" } + "JobSchedule list": { + "$ref": "./examples/JobScheduleList.json" + } }, "summary": "Lists all of the job schedules in the specified account.", "x-ms-request-id": "request-id", @@ -4099,7 +4149,9 @@ ], "operationId": "Job_Get", "x-ms-examples": { - "Job get": { "$ref": "./examples/JobGet.json" } + "Job get": { + "$ref": "./examples/JobGet.json" + } }, "summary": "Gets information about the specified job.", "x-ms-request-id": "request-id", @@ -4265,7 +4317,9 @@ ], "operationId": "Job_Patch", "x-ms-examples": { - "Job patch": { "$ref": "./examples/JobPatch.json" } + "Job patch": { + "$ref": "./examples/JobPatch.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This replaces only the job properties specified in the request. For example, if the job has constraints, and a request does not specify the constraints element, then the job keeps the existing constraints.", @@ -4422,7 +4476,9 @@ ], "operationId": "Job_Update", "x-ms-examples": { - "Job update": { "$ref": "./examples/JobUpdate.json" } + "Job update": { + "$ref": "./examples/JobUpdate.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This fully replaces all the updatable properties of the job. For example, if the job has constraints associated with it and if constraints is not specified with this request, then the Batch service will remove the existing constraints.", @@ -4581,7 +4637,9 @@ ], "operationId": "Job_Disable", "x-ms-examples": { - "Job disable": { "$ref": "./examples/JobDisable.json" } + "Job disable": { + "$ref": "./examples/JobDisable.json" + } }, "summary": "Disables the specified job, preventing new tasks from running.", "description": "The Batch Service immediately moves the job to the disabling state. Batch then uses the disableTasks parameter to determine what to do with the currently running tasks of the job. The job remains in the disabling state until the disable operation is completed and all tasks have been dealt with according to the disableTasks option; the job then moves to the disabled state. No new tasks are started under the job until it moves back to active state. If you try to disable a job that is in any state other than active, disabling, or disabled, the request fails with status code 409.", @@ -4740,7 +4798,9 @@ ], "operationId": "Job_Enable", "x-ms-examples": { - "Job enable": { "$ref": "./examples/JobEnable.json" } + "Job enable": { + "$ref": "./examples/JobEnable.json" + } }, "summary": "Enables the specified job, allowing new tasks to run.", "description": "When you call this API, the Batch service sets a disabled job to the enabling state. After the this operation is completed, the job moves to the active state, and scheduling of new tasks under the job resumes. The Batch service does not allow a task to remain in the active state for more than 7 days. Therefore, if you enable a job containing active tasks which were added more than 7 days ago, those tasks will not run.", @@ -4890,7 +4950,9 @@ ], "operationId": "Job_Terminate", "x-ms-examples": { - "Job terminate": { "$ref": "./examples/JobTerminate.json" } + "Job terminate": { + "$ref": "./examples/JobTerminate.json" + } }, "summary": "Terminates the specified job, marking it as completed.", "description": "When a Terminate Job request is received, the Batch service sets the job to the terminating state. The Batch service then terminates any active or running tasks associated with the job, and runs any required Job Release tasks. The job then moves into the completed state.", @@ -5049,8 +5111,12 @@ ], "operationId": "Job_Add", "x-ms-examples": { - "Add a basic job": { "$ref": "./examples/JobAdd_Basic.json" }, - "Add a complex job": { "$ref": "./examples/JobAdd_Complex.json" } + "Add a basic job": { + "$ref": "./examples/JobAdd_Basic.json" + }, + "Add a complex job": { + "$ref": "./examples/JobAdd_Complex.json" + } }, "summary": "Adds a job to the specified account.", "description": "The Batch service supports two ways to control the work done as part of a job. In the first approach, the user specifies a Job Manager task. The Batch service launches this task when it is ready to start the job. The Job Manager task controls all other tasks that run under this job, by using the Task APIs. In the second approach, the user directly controls the execution of tasks under an active job, by using the Task APIs. Also note: when naming jobs, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5161,7 +5227,9 @@ }, "operationId": "Job_List", "x-ms-examples": { - "Job list": { "$ref": "./examples/JobList.json" } + "Job list": { + "$ref": "./examples/JobList.json" + } }, "summary": "Lists all of the jobs in the specified account.", "x-ms-request-id": "request-id", @@ -5459,7 +5527,9 @@ }, "operationId": "Job_ListPreparationAndReleaseTaskStatus", "x-ms-examples": { - "Job list preparation and release task status": { "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" } + "Job list preparation and release task status": { + "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" + } }, "summary": "Lists the execution status of the Job Preparation and Job Release task for the specified job across the compute nodes where the job has run.", "description": "This API returns the Job Preparation and Job Release task status on all compute nodes that have run the Job Preparation or Job Release task. This includes nodes which have since been removed from the pool. ", @@ -5601,8 +5671,12 @@ ], "operationId": "Pool_Add", "x-ms-examples": { - "Add a CloudServiceConfiguration pool": { "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" }, - "Add a VirtualMachineConfiguration pool": { "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" } + "Add a CloudServiceConfiguration pool": { + "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool": { + "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" + } }, "summary": "Adds a pool to the specified account.", "description": "When naming pools, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5713,7 +5787,9 @@ }, "operationId": "Pool_List", "x-ms-examples": { - "Pool list": { "$ref": "./examples/PoolList_Basic.json" } + "Pool list": { + "$ref": "./examples/PoolList_Basic.json" + } }, "summary": "Lists all of the pools in the specified account.", "x-ms-request-id": "request-id", @@ -5857,7 +5933,9 @@ ], "operationId": "Pool_Delete", "x-ms-examples": { - "Pool delete": { "$ref": "./examples/PoolDelete.json" } + "Pool delete": { + "$ref": "./examples/PoolDelete.json" + } }, "summary": "Deletes a pool from the specified account.", "description": "When you request that a pool be deleted, the following actions occur: the pool state is set to deleting; any ongoing resize operation on the pool are stopped; the Batch service starts resizing the pool to zero nodes; any tasks running on existing nodes are terminated and requeued (as if a resize pool operation had been requested with the default requeue option); finally, the pool is removed from the system. Because running tasks are requeued, the user can rerun these tasks by updating their job to target a different pool. The tasks can then run on the new pool. If you want to override the requeue behavior, then you should call resize pool explicitly to shrink the pool to zero size before deleting the pool. If you call an Update, Patch or Delete API on a pool in the deleting state, it will fail with HTTP status code 409 with error code PoolBeingDeleted.", @@ -6133,7 +6211,9 @@ ], "operationId": "Pool_Get", "x-ms-examples": { - "Pool get": { "$ref": "./examples/PoolGet_Basic.json" } + "Pool get": { + "$ref": "./examples/PoolGet_Basic.json" + } }, "description": "Gets information about the specified pool.", "x-ms-request-id": "request-id", @@ -6559,7 +6639,9 @@ ], "operationId": "Pool_EnableAutoScale", "x-ms-examples": { - "Pool enable autoscale": { "$ref": "./examples/PoolEnableAutoscale.json" } + "Pool enable autoscale": { + "$ref": "./examples/PoolEnableAutoscale.json" + } }, "summary": "Enables automatic scaling for a pool.", "description": "You cannot enable automatic scaling on a pool if a resize operation is in progress on the pool. If automatic scaling of the pool is currently disabled, you must specify a valid autoscale formula as part of the request. If automatic scaling of the pool is already enabled, you may specify a new autoscale formula and/or a new evaluation interval. You cannot call this API for the same pool more than once every 30 seconds.", @@ -6718,7 +6800,9 @@ ], "operationId": "Pool_EvaluateAutoScale", "x-ms-examples": { - "Pool evaluate autoscale": { "$ref": "./examples/PoolEvaluateAutoscale.json" } + "Pool evaluate autoscale": { + "$ref": "./examples/PoolEvaluateAutoscale.json" + } }, "summary": "Gets the result of evaluating an automatic scaling formula on the pool.", "description": "This API is primarily for validating an autoscale formula, as it simply returns the result without applying the formula to the pool.", @@ -6838,7 +6922,9 @@ ], "operationId": "Pool_Resize", "x-ms-examples": { - "Pool resize": { "$ref": "./examples/PoolResize.json" } + "Pool resize": { + "$ref": "./examples/PoolResize.json" + } }, "summary": "Changes the number of compute nodes that are assigned to a pool.", "description": "You can only resize a pool when its allocation state is steady. If the pool is already resizing, the request fails with status code 409. When you resize a pool, the pool's allocation state changes from steady to resizing. You cannot resize pools which are configured for automatic scaling. If you try to do this, the Batch service returns an error 409. If you resize a pool downwards, the Batch service chooses which nodes to remove. To remove specific nodes, use the pool remove nodes API instead.", @@ -6997,7 +7083,9 @@ ], "operationId": "Pool_StopResize", "x-ms-examples": { - "Pool stop resize": { "$ref": "./examples/PoolStopResize.json" } + "Pool stop resize": { + "$ref": "./examples/PoolStopResize.json" + } }, "summary": "Stops an ongoing resize operation on the pool.", "description": "This does not restore the pool to its previous state before the resize operation: it only stops any further changes being made, and the pool maintains its current state. A resize operation need not be an explicit resize pool request; this API can also be used to halt the initial sizing of the pool when it is created.", @@ -7147,7 +7235,9 @@ ], "operationId": "Pool_UpdateProperties", "x-ms-examples": { - "Pool update": { "$ref": "./examples/PoolUpdate.json" } + "Pool update": { + "$ref": "./examples/PoolUpdate.json" + } }, "summary": "Updates the properties of the specified pool.", "description": "This fully replaces all the updatable properties of the pool. For example, if the pool has a start task associated with it and if start task is not specified with this request, then the Batch service will remove the existing start task.", @@ -7420,7 +7510,9 @@ ], "operationId": "Pool_RemoveNodes", "x-ms-examples": { - "Pool remove nodes": { "$ref": "./examples/PoolRemoveNodes.json" } + "Pool remove nodes": { + "$ref": "./examples/PoolRemoveNodes.json" + } }, "summary": "Removes compute nodes from the specified pool.", "description": "This operation can only run when the allocation state of the pool is steady. When this operation runs, the allocation state changes from steady to resizing.", @@ -7579,8 +7671,12 @@ ], "operationId": "Task_Add", "x-ms-examples": { - "Add a basic task": { "$ref": "./examples/TaskAdd_Basic.json" }, - "Add a task with exit conditions": { "$ref": "./examples/TaskAdd_ExitConditions.json" } + "Add a basic task": { + "$ref": "./examples/TaskAdd_Basic.json" + }, + "Add a task with exit conditions": { + "$ref": "./examples/TaskAdd_ExitConditions.json" + } }, "summary": "Adds a task to the specified job.", "x-ms-request-id": "request-id", @@ -7697,7 +7793,9 @@ }, "operationId": "Task_List", "x-ms-examples": { - "Task list": { "$ref": "./examples/TaskList.json" } + "Task list": { + "$ref": "./examples/TaskList.json" + } }, "summary": "Lists all of the tasks that are associated with the specified job.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -7849,8 +7947,12 @@ ], "operationId": "Task_AddCollection", "x-ms-examples": { - "Add a basic collection of tasks": { "$ref": "./examples/TaskAddCollection_Basic.json" }, - "Add a complex collection of tasks": { "$ref": "./examples/TaskAddCollection_Complex.json" } + "Add a basic collection of tasks": { + "$ref": "./examples/TaskAddCollection_Basic.json" + }, + "Add a complex collection of tasks": { + "$ref": "./examples/TaskAddCollection_Complex.json" + } }, "summary": "Adds a collection of tasks to the specified job.", "description": "Note that each task must have a unique ID. The Batch service may not return the results for each task in the same order the tasks were submitted in this request. If the server times out or the connection is closed during the request, the request may have been partially or fully processed, or not at all. In such cases, the user should re-issue the request. Note that it is up to the user to correctly handle failures when re-issuing a request. For example, you should use the same task ids during a retry so that if the prior operation succeeded, the retry will not create extra tasks unexpectedly.", @@ -7955,7 +8057,9 @@ ], "operationId": "Task_Delete", "x-ms-examples": { - "Task delete": { "$ref": "./examples/TaskDelete.json" } + "Task delete": { + "$ref": "./examples/TaskDelete.json" + } }, "summary": "Deletes a task from the specified job.", "description": "When a task is deleted, all of the files in its directory on the compute node where it ran are also deleted (regardless of the retention time). For multi-instance tasks, the delete task operation applies synchronously to the primary task; subtasks and their files are then deleted asynchronously in the background.", @@ -8095,7 +8199,9 @@ ], "operationId": "Task_Get", "x-ms-examples": { - "Task get": { "$ref": "./examples/TaskGet.json" } + "Task get": { + "$ref": "./examples/TaskGet.json" + } }, "summary": "Gets information about the specified task.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -8273,7 +8379,9 @@ ], "operationId": "Task_Update", "x-ms-examples": { - "Task update": { "$ref": "./examples/TaskUpdate.json" } + "Task update": { + "$ref": "./examples/TaskUpdate.json" + } }, "description": "Updates the properties of the specified task.", "x-ms-request-id": "request-id", @@ -8438,7 +8546,9 @@ ], "operationId": "Task_ListSubtasks", "x-ms-examples": { - "Task list subtasks": { "$ref": "./examples/TaskListSubtasks.json" } + "Task list subtasks": { + "$ref": "./examples/TaskListSubtasks.json" + } }, "summary": "Lists all of the subtasks that are associated with the specified multi-instance task.", "description": "If the task is not a multi-instance task then this returns an empty collection.", @@ -8562,7 +8672,9 @@ ], "operationId": "Task_Terminate", "x-ms-examples": { - "Task terminate": { "$ref": "./examples/TaskTerminate.json" } + "Task terminate": { + "$ref": "./examples/TaskTerminate.json" + } }, "summary": "Terminates the specified task.", "description": "When the task has been terminated, it moves to the completed state. For multi-instance tasks, the terminate task operation applies synchronously to the primary task; subtasks are then terminated asynchronously in the background.", @@ -8719,7 +8831,9 @@ ], "operationId": "Task_Reactivate", "x-ms-examples": { - "Task reactivate": { "$ref": "./examples/TaskReactivate.json" } + "Task reactivate": { + "$ref": "./examples/TaskReactivate.json" + } }, "summary": "Reactivates the specified task.", "description": "Reactivation makes a task eligible to be retried again up to its maximum retry count. The task's state is changed to active. As the task is no longer in the completed state, any previous exit code or scheduling error is no longer available after reactivation. This will fail for tasks that are not completed or that previously completed successfully (with an exit code of 0). Additionally, this will fail if the job has completed (or is terminating or deleting).", @@ -8876,7 +8990,9 @@ ], "operationId": "ComputeNode_AddUser", "x-ms-examples": { - "Node add user": { "$ref": "./examples/NodeAddUser.json" } + "Node add user": { + "$ref": "./examples/NodeAddUser.json" + } }, "summary": "Adds a user account to the specified compute node.", "description": "You can add a user account to a node only when it is in the idle or running state.", @@ -9000,7 +9116,9 @@ ], "operationId": "ComputeNode_DeleteUser", "x-ms-examples": { - "Node delete user": { "$ref": "./examples/NodeDeleteUser.json" } + "Node delete user": { + "$ref": "./examples/NodeDeleteUser.json" + } }, "summary": "Deletes a user account from the specified compute node.", "description": "You can delete a user account to a node only when it is in the idle or running state.", @@ -9105,7 +9223,9 @@ ], "operationId": "ComputeNode_UpdateUser", "x-ms-examples": { - "Node update user": { "$ref": "./examples/NodeUpdateUser.json" } + "Node update user": { + "$ref": "./examples/NodeUpdateUser.json" + } }, "summary": "Updates the password or expiration time of a user account on the specified compute node.", "description": "This operation replaces of all the updatable properties of the account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user account on a node only when it is in the idle or running state.", @@ -9236,7 +9356,9 @@ ], "operationId": "ComputeNode_Get", "x-ms-examples": { - "Node get": { "$ref": "./examples/NodeGet_Basic.json" } + "Node get": { + "$ref": "./examples/NodeGet_Basic.json" + } }, "summary": "Gets information about the specified compute node.", "x-ms-request-id": "request-id", @@ -9359,7 +9481,9 @@ ], "operationId": "ComputeNode_Reboot", "x-ms-examples": { - "Node reboot": { "$ref": "./examples/NodeReboot.json" } + "Node reboot": { + "$ref": "./examples/NodeReboot.json" + } }, "summary": "Restarts the specified compute node.", "description": "You can restart a node only if it is in an idle or running state.", @@ -9483,7 +9607,9 @@ ], "operationId": "ComputeNode_Reimage", "x-ms-examples": { - "Node reimage": { "$ref": "./examples/NodeReimage.json" } + "Node reimage": { + "$ref": "./examples/NodeReimage.json" + } }, "summary": "Reinstalls the operating system on the specified compute node.", "description": "You can reinstall the operating system on a node only if it is in an idle or running state. This API can be invoked only on pools created with the cloud service configuration property.", @@ -9607,7 +9733,9 @@ ], "operationId": "ComputeNode_DisableScheduling", "x-ms-examples": { - "Node disable scheduling": { "$ref": "./examples/NodeDisableScheduling.json" } + "Node disable scheduling": { + "$ref": "./examples/NodeDisableScheduling.json" + } }, "summary": "Disables task scheduling on the specified compute node.", "x-ms-request-id": "request-id", @@ -9730,7 +9858,9 @@ ], "operationId": "ComputeNode_EnableScheduling", "x-ms-examples": { - "Node enable scheduling": { "$ref": "./examples/NodeEnableScheduling.json" } + "Node enable scheduling": { + "$ref": "./examples/NodeEnableScheduling.json" + } }, "summary": "Enables task scheduling on the specified compute node.", "x-ms-request-id": "request-id", @@ -9844,7 +9974,9 @@ ], "operationId": "ComputeNode_GetRemoteLoginSettings", "x-ms-examples": { - "Node get remote login settings": { "$ref": "./examples/NodeGetRemoteLoginSettings.json" } + "Node get remote login settings": { + "$ref": "./examples/NodeGetRemoteLoginSettings.json" + } }, "summary": "Gets the settings required for remote login to a compute node.", "description": "Before you can remotely login to a node using the remote login settings, you must create a user account on the node. This API can be invoked only on pools created with the virtual machine configuration property.", @@ -10072,7 +10204,9 @@ }, "operationId": "ComputeNode_List", "x-ms-examples": { - "Node list": { "$ref": "./examples/NodeList.json" } + "Node list": { + "$ref": "./examples/NodeList.json" + } }, "summary": "Lists the compute nodes in the specified pool.", "x-ms-request-id": "request-id", @@ -10245,7 +10379,15 @@ "title": "The cross data center network egress from the pool during this interval, in GiB." } }, - "required": [ "poolId", "startTime", "endTime", "vmSize", "totalCoreHours", "dataIngressGiB", "dataEgressGiB" ], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours", + "dataIngressGiB", + "dataEgressGiB" + ], "title": "Usage metrics for a pool across an aggregation interval." }, "PoolListUsageMetricsResult": { @@ -10349,7 +10491,11 @@ "title": "The aggregated wall-clock time of the dedicated compute node cores being part of the pool." } }, - "required": [ "startTime", "lastUpdateTime", "dedicatedCoreTime" ], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "title": "Statistics related to pool usage information." }, "ResourceStatistics": { @@ -10420,7 +10566,21 @@ "title": "The total amount of data in GiB of network writes across all nodes in the pool." } }, - "required": [ "startTime", "lastUpdateTime", "avgCPUPercentage", "avgMemoryGiB", "peakMemoryGiB", "avgDiskGiB", "peakDiskGiB", "diskReadIOps", "diskWriteIOps", "diskReadGiB", "diskWriteGiB", "networkReadGiB", "networkWriteGiB" ], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "title": "Statistics related to resource consumption by compute nodes in a pool." }, "PoolStatistics": { @@ -10448,7 +10608,11 @@ "title": "Statistics related to resource consumption by compute nodes in the pool." } }, - "required": [ "url", "startTime", "lastUpdateTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "title": "Contains utilization and resource usage statistics for the lifetime of a pool." }, "JobStatistics": { @@ -10526,7 +10690,22 @@ "description": "The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.) This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job." }, "NameValuePair": { @@ -10621,7 +10800,9 @@ "description": "If this is omitted, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences. If you are calling the REST API directly, the HTTP status code is 409." } }, - "required": [ "applicationId" ], + "required": [ + "applicationId" + ], "title": "A reference to an application package to be deployed to compute nodes." }, "ApplicationSummary": { @@ -10642,7 +10823,11 @@ } } }, - "required": [ "id", "displayName", "versions" ], + "required": [ + "id", + "displayName", + "versions" + ], "title": "Contains information about an application in an Azure Batch account." }, "CertificateAddParameter": { @@ -10678,7 +10863,11 @@ "description": "This is required if the certificate format is pfx. It should be omitted if the certificate format is cer." } }, - "required": [ "thumbprint", "thumbprintAlgorithm", "data" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "title": "A certificate that can be installed on compute nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -10725,7 +10914,10 @@ "description": "The file mode is returned only for files on Linux compute nodes." } }, - "required": [ "lastModified", "contentLength" ], + "required": [ + "lastModified", + "contentLength" + ], "title": "The properties of a file on a compute node." }, "NodeFile": { @@ -10828,7 +11020,10 @@ "description": "This property applies only to files being downloaded to Linux compute nodes. It will be ignored if it is specified for a resourceFile which will be downloaded to a Windows node. If this property is not specified for a Linux node, then a default value of 0770 is applied to the file." } }, - "required": [ "blobSource", "filePath" ], + "required": [ + "blobSource", + "filePath" + ], "title": "A file to be downloaded from Azure blob storage to a compute node." }, "EnvironmentSetting": { @@ -10842,7 +11037,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, "ExitConditions": { @@ -10886,7 +11083,10 @@ } }, "title": "How the Batch service should respond if a task exits with a particular exit code.", - "required": [ "code", "exitOptions" ] + "required": [ + "code", + "exitOptions" + ] }, "ExitCodeRangeMapping": { "properties": { @@ -10906,7 +11106,11 @@ } }, "title": "A range of exit codes and how the Batch service should respond to exit codes within that range.", - "required": [ "start", "end", "exitOptions" ] + "required": [ + "start", + "end", + "exitOptions" + ] }, "ExitOptions": { "properties": { @@ -11001,7 +11205,10 @@ "description": "The SSH private key establishes password-less SSH between nodes in a Linux pool when the pool's enableInterNodeCommunication property is true. This property will be ignored in a Windows pool." } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user on an Azure Batch node." }, "TaskConstraints": { @@ -11092,7 +11299,10 @@ "$ref": "#/definitions/AuthenticationTokenSettings" } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "Specifies details of a Job Manager task." }, "JobPreparationTask": { @@ -11142,7 +11352,9 @@ "description": "The Job Preparation task is always rerun if a compute node is reimaged, or if the Job Preparation task did not complete (e.g. because the reboot occurred while the task was running). Therefore, you should always write a Job Preparation task to be idempotent and to behave correctly if run multiple times. The default value is true." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Preparation task to run before any tasks of the job on any given compute node." }, "JobReleaseTask": { @@ -11189,7 +11401,9 @@ "description": "If omitted, the task runs as a non-administrative user unique to the task." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Release task to run on job completion on any compute node where the job has run." }, "TaskSchedulingPolicy": { @@ -11208,7 +11422,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "StartTask": { @@ -11249,7 +11465,9 @@ "description": "If true and the start task fails on a compute node, the Batch service retries the start task up to its maximum retry count (maxTaskRetryCount). If the task has still not completed successfully after all retries, then the Batch service marks the compute node unusable, and will not schedule tasks to it. This condition can be detected via the node state and scheduling error detail. If false, the Batch service will not wait for the start task to complete. In this case, other tasks can start executing on the compute node while the start task is still running; and even if the start task fails, new tasks will continue to be scheduled on the node. The default is false." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A task which is run when a compute node joins a pool in the Azure Batch service, or when the compute node is rebooted or reimaged." }, "CertificateReference": { @@ -11300,7 +11518,10 @@ "description": "The default is all accounts." } }, - "required": [ "thumbprint", "thumbprintAlgorithm" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool." }, "MetadataItem": { @@ -11314,7 +11535,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -11423,7 +11647,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "vmSize" ], + "required": [ + "vmSize" + ], "title": "Specification for creating a new pool." }, "AutoPoolSpecification": { @@ -11457,7 +11683,9 @@ "title": "The pool specification for the auto pool." } }, - "required": [ "poolLifetimeOption" ], + "required": [ + "poolLifetimeOption" + ], "title": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto pool when the job is submitted." }, "PoolInformation": { @@ -11542,7 +11770,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "Specifies details of the jobs to be created on a schedule." }, "RecentJob": { @@ -11654,7 +11884,22 @@ "description": "This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job schedule." }, "CloudJobSchedule": { @@ -11764,7 +12009,11 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "schedule", "jobSpecification" ], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "title": "A job schedule that allows recurring jobs by specifying when to run jobs and a specification used to create each job." }, "CloudJobScheduleListResult": { @@ -11805,7 +12054,9 @@ "title": "A list of additional error details related to the scheduling error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "An error encountered by the Batch service when scheduling a job." }, "JobExecutionInformation": { @@ -11838,7 +12089,9 @@ "description": "This property is set only if the job is in the completed state. If the Batch service terminates the job, it sets the reason as follows: JMComplete - the Job Manager task completed, and killJobOnCompletion was set to true. MaxWallClockTimeExpiry - the job reached its maxWallClockTime constraint. TerminateJobSchedule - the job ran as part of a schedule, and the schedule terminated. AllTasksComplete - the job's onAllTasksComplete attribute is set to terminateJob, and all tasks in the job are complete. TaskFailed - the job's onTaskFailure attribute is set to performExitOptionsJobAction, and a task in the job failed with an exit condition that specified a jobAction of terminateJob. Any other string is a user-defined reason specified in a call to the 'Terminate a job' operation." } }, - "required": [ "startTime" ], + "required": [ + "startTime" + ], "title": "Contains information about the execution of a job in the Azure Batch service." }, "CloudJob": { @@ -12031,7 +12284,10 @@ "title": "The flag that determines if this job will use tasks with dependencies." } }, - "required": [ "id", "poolInfo" ], + "required": [ + "id", + "poolInfo" + ], "title": "An Azure Batch job to add." }, "CloudJobListResult": { @@ -12072,7 +12328,9 @@ "title": "The list of additional error details related to the scheduling error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "Information about an error when scheduling a task." }, "JobPreparationTaskExecutionInformation": { @@ -12132,7 +12390,11 @@ "description": "This property is set only if the task was retried (i.e. retryCount is nonzero). If present, this is typically the same as startTime, but may be different if the task has been restarted for reasons other than retry; for example, if the compute node was rebooted during a retry, then the startTime is updated but the lastRetryTime is not." } }, - "required": [ "startTime", "retryCount", "state" ], + "required": [ + "startTime", + "retryCount", + "state" + ], "title": "Contains information about the execution of a Job Preparation task on a compute node." }, "JobReleaseTaskExecutionInformation": { @@ -12180,7 +12442,10 @@ "title": "The error encountered by the Batch service when starting the task." } }, - "required": [ "startTime", "state" ], + "required": [ + "startTime", + "state" + ], "title": "Contains information about the execution of a Job Release task on a compute node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -12262,7 +12527,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": [ "timestamp" ], + "required": [ + "timestamp" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "ResizeError": { @@ -12303,7 +12570,9 @@ "description": "This may differ from targetOSVersion if the pool state is Upgrading. In this case some virtual machines may be on the targetOSVersion and some may be on the currentOSVersion during the upgrade process. Once all virtual machines have upgraded, currentOSVersion is updated to be the same as targetOSVersion." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "ImageReference": { @@ -12329,7 +12598,11 @@ "description": "A value of 'latest' can be specified to select the latest version of an image. If omitted, the default is 'latest'." } }, - "required": [ "publisher", "offer", "sku" ], + "required": [ + "publisher", + "offer", + "sku" + ], "title": "A reference to an Azure Virtual Machines Marketplace image. To get the list of all imageReferences verified by Azure Batch, see the 'List supported node agent SKUs' operation." }, "OSDisk": { @@ -12357,7 +12630,9 @@ } } }, - "required": [ "imageUris" ], + "required": [ + "imageUris" + ], "title": "A reference to an OS disk image." }, "WindowsConfiguration": { @@ -12393,7 +12668,9 @@ "description": "This property must not be specified if the imageReference or osDisk property specifies a Linux OS image." } }, - "required": [ "nodeAgentSKUId" ], + "required": [ + "nodeAgentSKUId" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "NetworkConfiguration": { @@ -12707,7 +12984,10 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "vmSize" ], + "required": [ + "id", + "vmSize" + ], "title": "A pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -12750,7 +13030,9 @@ "description": "You can pass the affinityId of a compute node or task to indicate that this task needs to be placed close to the node or task." } }, - "required": [ "affinityId" ], + "required": [ + "affinityId" + ], "title": "A locality hint that can be used by the Batch service to select a compute node on which to start a task." }, "TaskExecutionInformation": { @@ -12803,7 +13085,10 @@ "description": "This property is set only if the requeueCount is nonzero." } }, - "required": [ "requeueCount", "retryCount" ], + "required": [ + "requeueCount", + "retryCount" + ], "title": "Information about the execution of a task." }, "ComputeNodeInformation": { @@ -12856,7 +13141,9 @@ "description": "The difference between common resource files and task resource files is that common resource files are downloaded for all subtasks including the primary, whereas task resource files are downloaded only for the primary." } }, - "required": [ "numberOfInstances" ], + "required": [ + "numberOfInstances" + ], "title": "Settings which specify how to run a multi-instance task.", "description": "Multi-instance tasks are commonly used to support MPI tasks." }, @@ -12918,7 +13205,19 @@ "title": "The total wait time of the task. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "title": "Resource usage statistics for a task." }, "TaskDependencies": { @@ -12955,7 +13254,10 @@ }, "title": "A range of task IDs that a task can depend on. All tasks with IDs in the range must complete successfully before the dependent task can be scheduled.", "description": "The start and end of the range are inclusive. For example, if a range has start 9 and end 12, then it represents tasks '9', '10', '11' and '12'.", - "required": [ "start", "end" ] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -13153,7 +13455,10 @@ "$ref": "#/definitions/AuthenticationTokenSettings" } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "An Azure Batch task to add." }, "TaskAddCollectionParameter": { @@ -13167,7 +13472,9 @@ "title": "The collection of tasks to add." } }, - "required": [ "value" ], + "required": [ + "value" + ], "title": "A collection of Azure Batch tasks to add." }, "TaskAddResult": { @@ -13181,7 +13488,9 @@ "serverError", "unmapped" ], - "x-ms-enum": { "name": "TaskAddStatus" } + "x-ms-enum": { + "name": "TaskAddStatus" + } }, "taskId": { "type": "string", @@ -13205,7 +13514,10 @@ "title": "The error encountered while attempting to add the task." } }, - "required": [ "status", "taskId" ], + "required": [ + "status", + "taskId" + ], "title": "Result for a single task added as part of an add task collection operation." }, "TaskAddCollectionResult": { @@ -13331,7 +13643,9 @@ "title": "Information about the execution of the task." } }, - "required": [ "taskState" ], + "required": [ + "taskState" + ], "title": "Information about a task running on a compute node." }, "StartTaskInformation": { @@ -13384,7 +13698,11 @@ "description": "This element is present only if the task was retried (i.e. retryCount is nonzero). If present, this is typically the same as startTime, but may be different if the task has been restarted for reasons other than retry; for example, if the compute node was rebooted during a retry, then the startTime is updated but the lastRetryTime is not." } }, - "required": [ "state", "startTime", "retryCount" ], + "required": [ + "state", + "startTime", + "retryCount" + ], "title": "Information about a start task running on a compute node." }, "ComputeNodeError": { @@ -13575,7 +13893,9 @@ "description": "The public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux nodes. If this is specified for a Windows node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request)." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "A user account on a compute node." }, "ComputeNodeGetRemoteLoginSettingsResult": { @@ -13590,7 +13910,10 @@ "title": "The port used for remote login to the compute node." } }, - "required": [ "remoteLoginIPAddress", "remoteLoginPort" ], + "required": [ + "remoteLoginIPAddress", + "remoteLoginPort" + ], "title": "The remote login settings for a compute node." }, "JobSchedulePatchParameter": { @@ -13637,7 +13960,10 @@ "description": "If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": [ "schedule", "jobSpecification" ], + "required": [ + "schedule", + "jobSpecification" + ], "title": "The set of changes to be made to a job schedule." }, "JobDisableParameter": { @@ -13657,7 +13983,9 @@ } } }, - "required": [ "disableTasks" ], + "required": [ + "disableTasks" + ], "title": "Options when disabling a job." }, "JobTerminateParameter": { @@ -13735,7 +14063,9 @@ "$ref": "#/definitions/OnAllTasksComplete" } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "The set of changes to be made to a job." }, "PoolEnableAutoScaleParameter": { @@ -13762,7 +14092,9 @@ "description": "The formula is validated and its results calculated, but it is not applied to the pool. To apply the formula to the pool, 'Enable automatic scaling on a pool'. For more information about specifying this formula, see Automatically scale compute nodes in an Azure Batch pool (https://azure.microsoft.com/en-us/documentation/articles/batch-automatic-scaling)." } }, - "required": [ "autoScaleFormula" ], + "required": [ + "autoScaleFormula" + ], "title": "Options for evaluating an automatic scaling formula on a pool." }, "PoolResizeParameter": { @@ -13784,7 +14116,9 @@ "$ref": "#/definitions/ComputeNodeDeallocationOption" } }, - "required": [ "targetDedicated" ], + "required": [ + "targetDedicated" + ], "title": "Options for changing the size of a pool." }, "PoolUpdatePropertiesParameter": { @@ -13819,7 +14153,11 @@ "description": "This list replaces any existing metadata configured on the pool. If omitted, or if you specify an empty collection, any existing metadata is removed from the pool." } }, - "required": [ "certificateReferences", "metadata", "applicationPackageReferences" ], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "title": "The set of changes to be made to a pool." }, "PoolUpgradeOSParameter": { @@ -13829,7 +14167,9 @@ "title": "The Azure Guest OS version to be installed on the virtual machines in the pool." } }, - "required": [ "targetOSVersion" ], + "required": [ + "targetOSVersion" + ], "title": "Options for upgrading the operating system of compute nodes in a pool." }, "PoolPatchParameter": { @@ -13978,7 +14318,9 @@ "$ref": "#/definitions/ComputeNodeDeallocationOption" } }, - "required": [ "nodeList" ], + "required": [ + "nodeList" + ], "title": "Options for removing compute nodes from a pool." }, "ErrorMessage": { @@ -14176,4 +14518,3 @@ } } } - diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/AccountListNodeAgentSkus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/AccountListNodeAgentSkus.json index f12b72b9e370..042031a1127e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/AccountListNodeAgentSkus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/AccountListNodeAgentSkus.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateAdd.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateAdd.json index a98b75c12ff5..b731e046c9b7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateAdd.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateAdd.json @@ -4,11 +4,11 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "certificate": { - "thumbprintAlgorithm":"sha1", - "thumbprint":"0123456789abcdef0123456789abcdef01234567", - "data":"#####...", - "certificateFormat":"pfx", - "password":"certpassword" + "thumbprintAlgorithm": "sha1", + "thumbprint": "0123456789abcdef0123456789abcdef01234567", + "data": "#####...", + "certificateFormat": "pfx", + "password": "certpassword" } }, "responses": { @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateCancelDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateCancelDelete.json index 26c5f96c87bf..82509a1f35ff 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateCancelDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateCancelDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateDelete.json index a46d4e70e9a2..eb0343a86bca 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateGet.json index 9b9d12765743..19ea59bd4651 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateList.json index bd6542ba5782..41cfaff8b603 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/CertificateList.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileDeleteFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileDeleteFromNode.json index aa2ec6062bd5..5b0e350c153c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileDeleteFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileDeleteFromNode.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileDeleteFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileDeleteFromTask.json index 7d14815da786..16708cb6b080 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileDeleteFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileDeleteFromTask.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileGetPropertiesFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileGetPropertiesFromNode.json index 8e72bb4399a6..1597a89e6de8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileGetPropertiesFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileGetPropertiesFromNode.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileGetPropertiesFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileGetPropertiesFromTask.json index 8942e96948a8..6e8aa5ebae66 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileGetPropertiesFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileGetPropertiesFromTask.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileListFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileListFromNode.json index 1496110130ea..12f0121b18f5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileListFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileListFromNode.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileListFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileListFromTask.json index 94fd190468af..96ef570fa654 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileListFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/FileListFromTask.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobAdd_Basic.json index 8b47aff3c30f..0ba59d2a0f7f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobAdd_Basic.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobAdd_Complex.json index 68040f9b5529..b30d94c4e79a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobAdd_Complex.json @@ -35,7 +35,7 @@ "retentionTime": "PT1H" }, "killJobOnCompletion": false, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -75,7 +75,7 @@ "value": "myvalue" } ], - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -117,4 +117,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobDisable.json index d72a06c54d37..0172e5d1cda0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobDisable.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobEnable.json index c39f4a225edd..467c5b0074d2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobGet.json index 0bae4ebd131d..e41523ad29b1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobGet.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobGetLifetimeStatistics.json index 931d167134ad..3eecc86a1d63 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimejobstats", + "url": "https://account.region.batch.core.windows.net/lifetimejobstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "userCPUTime": "PT0S", @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobList.json index d46127d23d13..6f9ec3a867e8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobList.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobListPreparationAndReleaseTaskStatus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobListPreparationAndReleaseTaskStatus.json index a73a1ed98003..69f291f29610 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobListPreparationAndReleaseTaskStatus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobListPreparationAndReleaseTaskStatus.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobPatch.json index 74eb40fdb399..633b03e3b45e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobPatch.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobPatchParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleAdd_Basic.json index 287a8aa9b03c..f20faf293f53 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleAdd_Basic.json @@ -6,7 +6,7 @@ "cloudJobSchedule": { "id": "jobScheduleId", "schedule": { - "recurrenceInterval":"PT5M" + "recurrenceInterval": "PT5M" }, "jobSpecification": { "poolInfo": { @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleAdd_Complex.json index b831d5cd634a..7254a08778b1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleAdd_Complex.json @@ -125,4 +125,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleDelete.json index 4286e8936fd9..70503e2dca8a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleDisable.json index bd838eed45cc..ab1feb6aba32 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleDisable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleEnable.json index bd838eed45cc..ab1feb6aba32 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleGet.json index 4eb145e6c1b5..b9ba874c54b9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleList.json index 73b0a141db00..b47ff0accdb6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleList.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobSchedulePatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobSchedulePatch.json index 71c677593b57..d7daaf19e003 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobSchedulePatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobSchedulePatch.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleTerminate.json index 4286e8936fd9..70503e2dca8a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleTerminate.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleUpdate.json index 6a26f335736f..b80e1cab27a7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobScheduleUpdate.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobTerminate.json index 858bdcbb7518..157911e56b18 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobTerminate.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobUpdate.json index 0984430be61d..b7b2b4c0b137 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/JobUpdate.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobUpdateParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeAddUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeAddUser.json index 2b99a1feae5d..20a552c3cc97 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeAddUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeAddUser.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeDeleteUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeDeleteUser.json index 8b2594aa20df..2c63260fecee 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeDeleteUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeDeleteUser.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeDisableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeDisableScheduling.json index ba6f824d4010..f2742df1646b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeDisableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeDisableScheduling.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeEnableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeEnableScheduling.json index 6b80e4ce452d..aac71e40143d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeEnableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeEnableScheduling.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeGetRemoteLoginSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeGetRemoteLoginSettings.json index 75ef488d233f..1eb45beab923 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeGetRemoteLoginSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeGetRemoteLoginSettings.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeGet_Basic.json index fd8f31449915..f8ed81fd4681 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeGet_Basic.json @@ -24,7 +24,7 @@ "runningTasksCount": 0, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeList.json index eef743916ec2..34a9090297cb 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeList.json @@ -25,7 +25,7 @@ "runningTasksCount": 0, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -58,7 +58,7 @@ "runningTasksCount": 0, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -91,7 +91,7 @@ "runningTasksCount": 0, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -112,4 +112,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeReboot.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeReboot.json index b6f7a4c8247f..48f35fc4219f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeReboot.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeReboot.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeReimage.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeReimage.json index ecf2fbd08dcb..1be0d177c9ed 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeReimage.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeReimage.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeUpdateUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeUpdateUser.json index b8133e62e607..299837ef534c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeUpdateUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/NodeUpdateUser.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolAdd_CloudServiceConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolAdd_CloudServiceConfiguration.json index d63b5503d867..7cb72a72373a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolAdd_CloudServiceConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolAdd_CloudServiceConfiguration.json @@ -9,18 +9,20 @@ "cloudServiceConfiguration": { "osFamily": "4" }, - "resizeTimeout":"PT15M", - "targetDedicated":5, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicated": 5, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -30,4 +32,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolAdd_VirtualMachineConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolAdd_VirtualMachineConfiguration.json index 37d68f070561..71dcf4ad34a4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolAdd_VirtualMachineConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolAdd_VirtualMachineConfiguration.json @@ -14,18 +14,20 @@ }, "nodeAgentSKUId": "batch.node.ubuntu 16.04" }, - "resizeTimeout":"PT15M", - "targetDedicated":5, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicated": 5, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -35,4 +37,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolDelete.json index 291ec9d4c156..8bebb0e32786 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolEnableAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolEnableAutoscale.json index ad4f5ab36c4a..3874f8fce8e2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolEnableAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolEnableAutoscale.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolEvaluateAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolEvaluateAutoscale.json index f349a11851d4..aa523e32d335 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolEvaluateAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolEvaluateAutoscale.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolGetLifetimeStatistics.json index 66a6f825a84e..8280444a7bf9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimepoolstats", + "url": "https://account.region.batch.core.windows.net/lifetimepoolstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "usageStats": { @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolGet_Basic.json index de9588a32e5a..355f38b506af 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolGet_Basic.json @@ -25,7 +25,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "/bin/bash -c 'echo start task'", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolListUsageMetrics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolListUsageMetrics.json index edb909a0ed4d..d3601e6f89e3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolListUsageMetrics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolListUsageMetrics.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolList_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolList_Basic.json index 3a0c9d4d46ed..c8e8b2a29519 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolList_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolList_Basic.json @@ -26,7 +26,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolRemoveNodes.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolRemoveNodes.json index 39e38639f343..4e63e864e6cd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolRemoveNodes.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolRemoveNodes.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolResize.json index d950ce2f5a92..eafb8c809157 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolResize.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolStopResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolStopResize.json index 291ec9d4c156..8bebb0e32786 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolStopResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolStopResize.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolUpdate.json index 0cd0554faba0..a171cde43df9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/PoolUpdate.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAddCollection_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAddCollection_Basic.json index 831eee286aa7..dc9557b7597a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAddCollection_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAddCollection_Basic.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAddCollection_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAddCollection_Complex.json index b9e50d5209b1..0da43c0d194c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAddCollection_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAddCollection_Complex.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAdd_Basic.json index 31020aaa3660..7258c9dc1891 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAdd_Basic.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAdd_ExitConditions.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAdd_ExitConditions.json index 06a461d670a3..2527fdce6a87 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAdd_ExitConditions.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskAdd_ExitConditions.json @@ -18,7 +18,7 @@ } ] }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -31,4 +31,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskDelete.json index dcc6788d32af..3cd0fe6a8510 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskGet.json index 48b4cb0389ad..d8c82f4ca69c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskGet.json @@ -17,7 +17,7 @@ "state": "active", "stateTransitionTime": "2016-09-06T06:59:15.1161429Z", "commandLine": "cmd /c hostname", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskList.json index 1dd23be937e2..057b4dce1513 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskList.json @@ -18,7 +18,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.4733476Z", "commandLine": "cmd /c echo task1", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -43,7 +43,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.6736345Z", "commandLine": "cmd /c echo task2", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskListSubtasks.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskListSubtasks.json index ead6fef7c89c..2a3e6fae74a6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskListSubtasks.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskListSubtasks.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskReactivate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskReactivate.json index 37cd57df63b5..20e993bd5b6a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskReactivate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskReactivate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskTerminate.json index 37cd57df63b5..20e993bd5b6a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskTerminate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskUpdate.json index 1698e7578413..846bbab3760d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-01-01.4.0/examples/TaskUpdate.json @@ -7,9 +7,9 @@ "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "taskUpdateParameter": { "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":3, - "retentionTime":"PT1H" + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": 3, + "retentionTime": "PT1H" } } }, @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/BatchService.json index 9afeb9d464e9..0d79120f866c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/BatchService.json @@ -247,7 +247,9 @@ }, "operationId": "Pool_ListUsageMetrics", "x-ms-examples": { - "Pool list usage metrics": { "$ref": "./examples/PoolListUsageMetrics.json" } + "Pool list usage metrics": { + "$ref": "./examples/PoolListUsageMetrics.json" + } }, "summary": "Lists the usage metrics, aggregated by pool across individual time intervals, for the specified account.", "description": "If you do not specify a $filter clause including a poolId, the response includes all pools that existed in the account in the time range of the returned aggregation intervals.", @@ -399,7 +401,9 @@ }, "operationId": "Account_ListNodeAgentSkus", "x-ms-examples": { - "Account list node agent skus": { "$ref": "./examples/AccountListNodeAgentSkus.json" } + "Account list node agent skus": { + "$ref": "./examples/AccountListNodeAgentSkus.json" + } }, "summary": "Lists all node agent SKUs supported by the Azure Batch service.", "x-ms-request-id": "request-id", @@ -523,7 +527,9 @@ ], "operationId": "Pool_GetAllLifetimeStatistics", "x-ms-examples": { - "Pool get lifetime statistics": { "$ref": "./examples/PoolGetLifetimeStatistics.json" } + "Pool get lifetime statistics": { + "$ref": "./examples/PoolGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the pools in the specified account.", "description": "Statistics are aggregated across all pools that have ever existed in the account, from account creation to the last update time of the statistics.", @@ -623,7 +629,9 @@ ], "operationId": "Job_GetAllLifetimeStatistics", "x-ms-examples": { - "Job get lifetime statistics": { "$ref": "./examples/JobGetLifetimeStatistics.json" } + "Job get lifetime statistics": { + "$ref": "./examples/JobGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the jobs in the specified account.", "description": "Statistics are aggregated across all jobs that have ever existed in the account, from account creation to the last update time of the statistics.", @@ -723,7 +731,9 @@ ], "operationId": "Certificate_Add", "x-ms-examples": { - "Certificate add": { "$ref": "./examples/CertificateAdd.json" } + "Certificate add": { + "$ref": "./examples/CertificateAdd.json" + } }, "summary": "Adds a certificate to the specified account.", "x-ms-request-id": "request-id", @@ -833,7 +843,9 @@ }, "operationId": "Certificate_List", "x-ms-examples": { - "Certificate list": { "$ref": "./examples/CertificateList.json" } + "Certificate list": { + "$ref": "./examples/CertificateList.json" + } }, "summary": "Lists all of the certificates that have been added to the specified account.", "x-ms-request-id": "request-id", @@ -967,7 +979,9 @@ ], "operationId": "Certificate_CancelDeletion", "x-ms-examples": { - "Certificate cancel delete": { "$ref": "./examples/CertificateCancelDelete.json" } + "Certificate cancel delete": { + "$ref": "./examples/CertificateCancelDelete.json" + } }, "summary": "Cancels a failed deletion of a certificate from the specified account.", "description": "If you try to delete a certificate that is being used by a pool or compute node, the status of the certificate changes to deleteFailed. If you decide that you want to continue using the certificate, you can use this operation to set the status of the certificate back to active. If you intend to delete the certificate, you do not need to run this operation after the deletion failed. You must make sure that the certificate is not being used by any resources, and then you can try again to delete the certificate.", @@ -1082,7 +1096,9 @@ ], "operationId": "Certificate_Delete", "x-ms-examples": { - "Certificate delete": { "$ref": "./examples/CertificateDelete.json" } + "Certificate delete": { + "$ref": "./examples/CertificateDelete.json" + } }, "summary": "Deletes a certificate from the specified account.", "description": "You cannot delete a certificate if a resource (pool or compute node) is using it. Before you can delete a certificate, you must therefore make sure that the certificate is not associated with any existing pools, the certificate is not installed on any compute nodes (even if you remove a certificate from a pool, it is not removed from existing compute nodes in that pool until they restart), and no running tasks depend on the certificate. If you try to delete a certificate that is in use, the deletion fails. The certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the certificate.", @@ -1191,7 +1207,9 @@ ], "operationId": "Certificate_Get", "x-ms-examples": { - "Certificate get": { "$ref": "./examples/CertificateGet.json" } + "Certificate get": { + "$ref": "./examples/CertificateGet.json" + } }, "description": "Gets information about the specified certificate.", "x-ms-request-id": "request-id", @@ -1314,7 +1332,9 @@ ], "operationId": "File_DeleteFromTask", "x-ms-examples": { - "File delete from task": { "$ref": "./examples/FileDeleteFromTask.json" } + "File delete from task": { + "$ref": "./examples/FileDeleteFromTask.json" + } }, "summary": "Deletes the specified task file from the compute node where the task ran.", "x-ms-request-id": "request-id", @@ -1598,7 +1618,9 @@ ], "operationId": "File_GetPropertiesFromTask", "x-ms-examples": { - "File get properties from task": { "$ref": "./examples/FileGetPropertiesFromTask.json" } + "File get properties from task": { + "$ref": "./examples/FileGetPropertiesFromTask.json" + } }, "description": "Gets the properties of the specified task file.", "x-ms-request-id": "request-id", @@ -1763,7 +1785,9 @@ ], "operationId": "File_DeleteFromComputeNode", "x-ms-examples": { - "File delete from node": { "$ref": "./examples/FileDeleteFromNode.json" } + "File delete from node": { + "$ref": "./examples/FileDeleteFromNode.json" + } }, "summary": "Deletes the specified file from the compute node.", "x-ms-request-id": "request-id", @@ -2047,7 +2071,9 @@ ], "operationId": "File_GetPropertiesFromComputeNode", "x-ms-examples": { - "File get properties from node": { "$ref": "./examples/FileGetPropertiesFromNode.json" } + "File get properties from node": { + "$ref": "./examples/FileGetPropertiesFromNode.json" + } }, "description": "Gets the properties of the specified compute node file.", "x-ms-request-id": "request-id", @@ -2215,7 +2241,9 @@ }, "operationId": "File_ListFromTask", "x-ms-examples": { - "File list from task": { "$ref": "./examples/FileListFromTask.json" } + "File list from task": { + "$ref": "./examples/FileListFromTask.json" + } }, "summary": "Lists the files in a task's directory on its compute node.", "x-ms-request-id": "request-id", @@ -2363,7 +2391,9 @@ }, "operationId": "File_ListFromComputeNode", "x-ms-examples": { - "File list from node": { "$ref": "./examples/FileListFromNode.json" } + "File list from node": { + "$ref": "./examples/FileListFromNode.json" + } }, "summary": "Lists all of the files in task directories on the specified compute node.", "x-ms-request-id": "request-id", @@ -2651,7 +2681,9 @@ ], "operationId": "JobSchedule_Delete", "x-ms-examples": { - "JobSchedule delete": { "$ref": "./examples/JobScheduleDelete.json" } + "JobSchedule delete": { + "$ref": "./examples/JobScheduleDelete.json" + } }, "summary": "Deletes a job schedule from the specified account.", "description": "When you delete a job schedule, this also deletes all jobs and tasks under that schedule. When tasks are deleted, all the files in their working directories on the compute nodes are also deleted (the retention period is ignored). The job schedule statistics are no longer accessible once the job schedule is deleted, though they are still counted towards account lifetime statistics.", @@ -2784,7 +2816,9 @@ ], "operationId": "JobSchedule_Get", "x-ms-examples": { - "JobSchedule get": { "$ref": "./examples/JobScheduleGet.json" } + "JobSchedule get": { + "$ref": "./examples/JobScheduleGet.json" + } }, "description": "Gets information about the specified job schedule.", "x-ms-request-id": "request-id", @@ -2950,7 +2984,9 @@ ], "operationId": "JobSchedule_Patch", "x-ms-examples": { - "JobSchedule patch": { "$ref": "./examples/JobSchedulePatch.json" } + "JobSchedule patch": { + "$ref": "./examples/JobSchedulePatch.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This replaces only the job schedule properties specified in the request. For example, if the schedule property is not specified with this request, then the Batch service will keep the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3107,7 +3143,9 @@ ], "operationId": "JobSchedule_Update", "x-ms-examples": { - "JobSchedule update": { "$ref": "./examples/JobScheduleUpdate.json" } + "JobSchedule update": { + "$ref": "./examples/JobScheduleUpdate.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This fully replaces all the updatable properties of the job schedule. For example, if the schedule property is not specified with this request, then the Batch service will remove the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3266,7 +3304,9 @@ ], "operationId": "JobSchedule_Disable", "x-ms-examples": { - "JobSchedule disable": { "$ref": "./examples/JobScheduleDisable.json" } + "JobSchedule disable": { + "$ref": "./examples/JobScheduleDisable.json" + } }, "summary": "Disables a job schedule.", "description": "No new jobs will be created until the job schedule is enabled again.", @@ -3416,7 +3456,9 @@ ], "operationId": "JobSchedule_Enable", "x-ms-examples": { - "JobSchedule enable": { "$ref": "./examples/JobScheduleEnable.json" } + "JobSchedule enable": { + "$ref": "./examples/JobScheduleEnable.json" + } }, "summary": "Enables a job schedule.", "x-ms-request-id": "request-id", @@ -3565,7 +3607,9 @@ ], "operationId": "JobSchedule_Terminate", "x-ms-examples": { - "JobSchedule terminate": { "$ref": "./examples/JobScheduleTerminate.json" } + "JobSchedule terminate": { + "$ref": "./examples/JobScheduleTerminate.json" + } }, "summary": "Terminates a job schedule.", "x-ms-request-id": "request-id", @@ -3714,8 +3758,12 @@ ], "operationId": "JobSchedule_Add", "x-ms-examples": { - "Add a basic JobSchedule": { "$ref": "./examples/JobScheduleAdd_Basic.json" }, - "Add a complex JobScheduleAdd": { "$ref": "./examples/JobScheduleAdd_Complex.json" } + "Add a basic JobSchedule": { + "$ref": "./examples/JobScheduleAdd_Basic.json" + }, + "Add a complex JobScheduleAdd": { + "$ref": "./examples/JobScheduleAdd_Complex.json" + } }, "summary": "Adds a job schedule to the specified account.", "x-ms-request-id": "request-id", @@ -3825,7 +3873,9 @@ }, "operationId": "JobSchedule_List", "x-ms-examples": { - "JobSchedule list": { "$ref": "./examples/JobScheduleList.json" } + "JobSchedule list": { + "$ref": "./examples/JobScheduleList.json" + } }, "summary": "Lists all of the job schedules in the specified account.", "x-ms-request-id": "request-id", @@ -4099,7 +4149,9 @@ ], "operationId": "Job_Get", "x-ms-examples": { - "Job get": { "$ref": "./examples/JobGet.json" } + "Job get": { + "$ref": "./examples/JobGet.json" + } }, "summary": "Gets information about the specified job.", "x-ms-request-id": "request-id", @@ -4265,7 +4317,9 @@ ], "operationId": "Job_Patch", "x-ms-examples": { - "Job patch": { "$ref": "./examples/JobPatch.json" } + "Job patch": { + "$ref": "./examples/JobPatch.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This replaces only the job properties specified in the request. For example, if the job has constraints, and a request does not specify the constraints element, then the job keeps the existing constraints.", @@ -4422,7 +4476,9 @@ ], "operationId": "Job_Update", "x-ms-examples": { - "Job update": { "$ref": "./examples/JobUpdate.json" } + "Job update": { + "$ref": "./examples/JobUpdate.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This fully replaces all the updatable properties of the job. For example, if the job has constraints associated with it and if constraints is not specified with this request, then the Batch service will remove the existing constraints.", @@ -4581,7 +4637,9 @@ ], "operationId": "Job_Disable", "x-ms-examples": { - "Job disable": { "$ref": "./examples/JobDisable.json" } + "Job disable": { + "$ref": "./examples/JobDisable.json" + } }, "summary": "Disables the specified job, preventing new tasks from running.", "description": "The Batch Service immediately moves the job to the disabling state. Batch then uses the disableTasks parameter to determine what to do with the currently running tasks of the job. The job remains in the disabling state until the disable operation is completed and all tasks have been dealt with according to the disableTasks option; the job then moves to the disabled state. No new tasks are started under the job until it moves back to active state. If you try to disable a job that is in any state other than active, disabling, or disabled, the request fails with status code 409.", @@ -4740,7 +4798,9 @@ ], "operationId": "Job_Enable", "x-ms-examples": { - "Job enable": { "$ref": "./examples/JobEnable.json" } + "Job enable": { + "$ref": "./examples/JobEnable.json" + } }, "summary": "Enables the specified job, allowing new tasks to run.", "description": "When you call this API, the Batch service sets a disabled job to the enabling state. After the this operation is completed, the job moves to the active state, and scheduling of new tasks under the job resumes. The Batch service does not allow a task to remain in the active state for more than 7 days. Therefore, if you enable a job containing active tasks which were added more than 7 days ago, those tasks will not run.", @@ -4890,7 +4950,9 @@ ], "operationId": "Job_Terminate", "x-ms-examples": { - "Job terminate": { "$ref": "./examples/JobTerminate.json" } + "Job terminate": { + "$ref": "./examples/JobTerminate.json" + } }, "summary": "Terminates the specified job, marking it as completed.", "description": "When a Terminate Job request is received, the Batch service sets the job to the terminating state. The Batch service then terminates any active or running tasks associated with the job, and runs any required Job Release tasks. The job then moves into the completed state.", @@ -5049,8 +5111,12 @@ ], "operationId": "Job_Add", "x-ms-examples": { - "Add a basic job": { "$ref": "./examples/JobAdd_Basic.json" }, - "Add a complex job": { "$ref": "./examples/JobAdd_Complex.json" } + "Add a basic job": { + "$ref": "./examples/JobAdd_Basic.json" + }, + "Add a complex job": { + "$ref": "./examples/JobAdd_Complex.json" + } }, "summary": "Adds a job to the specified account.", "description": "The Batch service supports two ways to control the work done as part of a job. In the first approach, the user specifies a Job Manager task. The Batch service launches this task when it is ready to start the job. The Job Manager task controls all other tasks that run under this job, by using the Task APIs. In the second approach, the user directly controls the execution of tasks under an active job, by using the Task APIs. Also note: when naming jobs, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5161,7 +5227,9 @@ }, "operationId": "Job_List", "x-ms-examples": { - "Job list": { "$ref": "./examples/JobList.json" } + "Job list": { + "$ref": "./examples/JobList.json" + } }, "summary": "Lists all of the jobs in the specified account.", "x-ms-request-id": "request-id", @@ -5459,7 +5527,9 @@ }, "operationId": "Job_ListPreparationAndReleaseTaskStatus", "x-ms-examples": { - "Job list preparation and release task status": { "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" } + "Job list preparation and release task status": { + "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" + } }, "summary": "Lists the execution status of the Job Preparation and Job Release task for the specified job across the compute nodes where the job has run.", "description": "This API returns the Job Preparation and Job Release task status on all compute nodes that have run the Job Preparation or Job Release task. This includes nodes which have since been removed from the pool. ", @@ -5601,8 +5671,12 @@ ], "operationId": "Pool_Add", "x-ms-examples": { - "Add a CloudServiceConfiguration pool": { "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" }, - "Add a VirtualMachineConfiguration pool": { "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" } + "Add a CloudServiceConfiguration pool": { + "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool": { + "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" + } }, "summary": "Adds a pool to the specified account.", "description": "When naming pools, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5713,7 +5787,9 @@ }, "operationId": "Pool_List", "x-ms-examples": { - "Pool list": { "$ref": "./examples/PoolList_Basic.json" } + "Pool list": { + "$ref": "./examples/PoolList_Basic.json" + } }, "summary": "Lists all of the pools in the specified account.", "x-ms-request-id": "request-id", @@ -5857,7 +5933,9 @@ ], "operationId": "Pool_Delete", "x-ms-examples": { - "Pool delete": { "$ref": "./examples/PoolDelete.json" } + "Pool delete": { + "$ref": "./examples/PoolDelete.json" + } }, "summary": "Deletes a pool from the specified account.", "description": "When you request that a pool be deleted, the following actions occur: the pool state is set to deleting; any ongoing resize operation on the pool are stopped; the Batch service starts resizing the pool to zero nodes; any tasks running on existing nodes are terminated and requeued (as if a resize pool operation had been requested with the default requeue option); finally, the pool is removed from the system. Because running tasks are requeued, the user can rerun these tasks by updating their job to target a different pool. The tasks can then run on the new pool. If you want to override the requeue behavior, then you should call resize pool explicitly to shrink the pool to zero size before deleting the pool. If you call an Update, Patch or Delete API on a pool in the deleting state, it will fail with HTTP status code 409 with error code PoolBeingDeleted.", @@ -6133,7 +6211,9 @@ ], "operationId": "Pool_Get", "x-ms-examples": { - "Pool get": { "$ref": "./examples/PoolGet_Basic.json" } + "Pool get": { + "$ref": "./examples/PoolGet_Basic.json" + } }, "description": "Gets information about the specified pool.", "x-ms-request-id": "request-id", @@ -6559,7 +6639,9 @@ ], "operationId": "Pool_EnableAutoScale", "x-ms-examples": { - "Pool enable autoscale": { "$ref": "./examples/PoolEnableAutoscale.json" } + "Pool enable autoscale": { + "$ref": "./examples/PoolEnableAutoscale.json" + } }, "summary": "Enables automatic scaling for a pool.", "description": "You cannot enable automatic scaling on a pool if a resize operation is in progress on the pool. If automatic scaling of the pool is currently disabled, you must specify a valid autoscale formula as part of the request. If automatic scaling of the pool is already enabled, you may specify a new autoscale formula and/or a new evaluation interval. You cannot call this API for the same pool more than once every 30 seconds.", @@ -6718,7 +6800,9 @@ ], "operationId": "Pool_EvaluateAutoScale", "x-ms-examples": { - "Pool evaluate autoscale": { "$ref": "./examples/PoolEvaluateAutoscale.json" } + "Pool evaluate autoscale": { + "$ref": "./examples/PoolEvaluateAutoscale.json" + } }, "summary": "Gets the result of evaluating an automatic scaling formula on the pool.", "description": "This API is primarily for validating an autoscale formula, as it simply returns the result without applying the formula to the pool.", @@ -6838,7 +6922,9 @@ ], "operationId": "Pool_Resize", "x-ms-examples": { - "Pool resize": { "$ref": "./examples/PoolResize.json" } + "Pool resize": { + "$ref": "./examples/PoolResize.json" + } }, "summary": "Changes the number of compute nodes that are assigned to a pool.", "description": "You can only resize a pool when its allocation state is steady. If the pool is already resizing, the request fails with status code 409. When you resize a pool, the pool's allocation state changes from steady to resizing. You cannot resize pools which are configured for automatic scaling. If you try to do this, the Batch service returns an error 409. If you resize a pool downwards, the Batch service chooses which nodes to remove. To remove specific nodes, use the pool remove nodes API instead.", @@ -6997,7 +7083,9 @@ ], "operationId": "Pool_StopResize", "x-ms-examples": { - "Pool stop resize": { "$ref": "./examples/PoolStopResize.json" } + "Pool stop resize": { + "$ref": "./examples/PoolStopResize.json" + } }, "summary": "Stops an ongoing resize operation on the pool.", "description": "This does not restore the pool to its previous state before the resize operation: it only stops any further changes being made, and the pool maintains its current state. A resize operation need not be an explicit resize pool request; this API can also be used to halt the initial sizing of the pool when it is created.", @@ -7147,7 +7235,9 @@ ], "operationId": "Pool_UpdateProperties", "x-ms-examples": { - "Pool update": { "$ref": "./examples/PoolUpdate.json" } + "Pool update": { + "$ref": "./examples/PoolUpdate.json" + } }, "summary": "Updates the properties of the specified pool.", "description": "This fully replaces all the updatable properties of the pool. For example, if the pool has a start task associated with it and if start task is not specified with this request, then the Batch service will remove the existing start task.", @@ -7420,7 +7510,9 @@ ], "operationId": "Pool_RemoveNodes", "x-ms-examples": { - "Pool remove nodes": { "$ref": "./examples/PoolRemoveNodes.json" } + "Pool remove nodes": { + "$ref": "./examples/PoolRemoveNodes.json" + } }, "summary": "Removes compute nodes from the specified pool.", "description": "This operation can only run when the allocation state of the pool is steady. When this operation runs, the allocation state changes from steady to resizing.", @@ -7579,8 +7671,12 @@ ], "operationId": "Task_Add", "x-ms-examples": { - "Add a basic task": { "$ref": "./examples/TaskAdd_Basic.json" }, - "Add a task with exit conditions": { "$ref": "./examples/TaskAdd_ExitConditions.json" } + "Add a basic task": { + "$ref": "./examples/TaskAdd_Basic.json" + }, + "Add a task with exit conditions": { + "$ref": "./examples/TaskAdd_ExitConditions.json" + } }, "summary": "Adds a task to the specified job.", "x-ms-request-id": "request-id", @@ -7697,7 +7793,9 @@ }, "operationId": "Task_List", "x-ms-examples": { - "Task list": { "$ref": "./examples/TaskList.json" } + "Task list": { + "$ref": "./examples/TaskList.json" + } }, "summary": "Lists all of the tasks that are associated with the specified job.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -7849,8 +7947,12 @@ ], "operationId": "Task_AddCollection", "x-ms-examples": { - "Add a basic collection of tasks": { "$ref": "./examples/TaskAddCollection_Basic.json" }, - "Add a complex collection of tasks": { "$ref": "./examples/TaskAddCollection_Complex.json" } + "Add a basic collection of tasks": { + "$ref": "./examples/TaskAddCollection_Basic.json" + }, + "Add a complex collection of tasks": { + "$ref": "./examples/TaskAddCollection_Complex.json" + } }, "summary": "Adds a collection of tasks to the specified job.", "description": "Note that each task must have a unique ID. The Batch service may not return the results for each task in the same order the tasks were submitted in this request. If the server times out or the connection is closed during the request, the request may have been partially or fully processed, or not at all. In such cases, the user should re-issue the request. Note that it is up to the user to correctly handle failures when re-issuing a request. For example, you should use the same task ids during a retry so that if the prior operation succeeded, the retry will not create extra tasks unexpectedly.", @@ -7955,7 +8057,9 @@ ], "operationId": "Task_Delete", "x-ms-examples": { - "Task delete": { "$ref": "./examples/TaskDelete.json" } + "Task delete": { + "$ref": "./examples/TaskDelete.json" + } }, "summary": "Deletes a task from the specified job.", "description": "When a task is deleted, all of the files in its directory on the compute node where it ran are also deleted (regardless of the retention time). For multi-instance tasks, the delete task operation applies synchronously to the primary task; subtasks and their files are then deleted asynchronously in the background.", @@ -8095,7 +8199,9 @@ ], "operationId": "Task_Get", "x-ms-examples": { - "Task get": { "$ref": "./examples/TaskGet.json" } + "Task get": { + "$ref": "./examples/TaskGet.json" + } }, "summary": "Gets information about the specified task.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -8273,7 +8379,9 @@ ], "operationId": "Task_Update", "x-ms-examples": { - "Task update": { "$ref": "./examples/TaskUpdate.json" } + "Task update": { + "$ref": "./examples/TaskUpdate.json" + } }, "description": "Updates the properties of the specified task.", "x-ms-request-id": "request-id", @@ -8438,7 +8546,9 @@ ], "operationId": "Task_ListSubtasks", "x-ms-examples": { - "Task list subtasks": { "$ref": "./examples/TaskListSubtasks.json" } + "Task list subtasks": { + "$ref": "./examples/TaskListSubtasks.json" + } }, "summary": "Lists all of the subtasks that are associated with the specified multi-instance task.", "description": "If the task is not a multi-instance task then this returns an empty collection.", @@ -8562,7 +8672,9 @@ ], "operationId": "Task_Terminate", "x-ms-examples": { - "Task terminate": { "$ref": "./examples/TaskTerminate.json" } + "Task terminate": { + "$ref": "./examples/TaskTerminate.json" + } }, "summary": "Terminates the specified task.", "description": "When the task has been terminated, it moves to the completed state. For multi-instance tasks, the terminate task operation applies synchronously to the primary task; subtasks are then terminated asynchronously in the background.", @@ -8719,7 +8831,9 @@ ], "operationId": "Task_Reactivate", "x-ms-examples": { - "Task reactivate": { "$ref": "./examples/TaskReactivate.json" } + "Task reactivate": { + "$ref": "./examples/TaskReactivate.json" + } }, "summary": "Reactivates the specified task.", "description": "Reactivation makes a task eligible to be retried again up to its maximum retry count. The task's state is changed to active. As the task is no longer in the completed state, any previous exit code or scheduling error is no longer available after reactivation. This will fail for tasks that are not completed or that previously completed successfully (with an exit code of 0). Additionally, this will fail if the job has completed (or is terminating or deleting).", @@ -8876,7 +8990,9 @@ ], "operationId": "ComputeNode_AddUser", "x-ms-examples": { - "Node add user": { "$ref": "./examples/NodeAddUser.json" } + "Node add user": { + "$ref": "./examples/NodeAddUser.json" + } }, "summary": "Adds a user account to the specified compute node.", "description": "You can add a user account to a node only when it is in the idle or running state.", @@ -9000,7 +9116,9 @@ ], "operationId": "ComputeNode_DeleteUser", "x-ms-examples": { - "Node delete user": { "$ref": "./examples/NodeDeleteUser.json" } + "Node delete user": { + "$ref": "./examples/NodeDeleteUser.json" + } }, "summary": "Deletes a user account from the specified compute node.", "description": "You can delete a user account to a node only when it is in the idle or running state.", @@ -9105,7 +9223,9 @@ ], "operationId": "ComputeNode_UpdateUser", "x-ms-examples": { - "Node update user": { "$ref": "./examples/NodeUpdateUser.json" } + "Node update user": { + "$ref": "./examples/NodeUpdateUser.json" + } }, "summary": "Updates the password or expiration time of a user account on the specified compute node.", "description": "This operation replaces of all the updatable properties of the account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user account on a node only when it is in the idle or running state.", @@ -9236,7 +9356,9 @@ ], "operationId": "ComputeNode_Get", "x-ms-examples": { - "Node get": { "$ref": "./examples/NodeGet_Basic.json" } + "Node get": { + "$ref": "./examples/NodeGet_Basic.json" + } }, "summary": "Gets information about the specified compute node.", "x-ms-request-id": "request-id", @@ -9359,7 +9481,9 @@ ], "operationId": "ComputeNode_Reboot", "x-ms-examples": { - "Node reboot": { "$ref": "./examples/NodeReboot.json" } + "Node reboot": { + "$ref": "./examples/NodeReboot.json" + } }, "summary": "Restarts the specified compute node.", "description": "You can restart a node only if it is in an idle or running state.", @@ -9483,7 +9607,9 @@ ], "operationId": "ComputeNode_Reimage", "x-ms-examples": { - "Node reimage": { "$ref": "./examples/NodeReimage.json" } + "Node reimage": { + "$ref": "./examples/NodeReimage.json" + } }, "summary": "Reinstalls the operating system on the specified compute node.", "description": "You can reinstall the operating system on a node only if it is in an idle or running state. This API can be invoked only on pools created with the cloud service configuration property.", @@ -9607,7 +9733,9 @@ ], "operationId": "ComputeNode_DisableScheduling", "x-ms-examples": { - "Node disable scheduling": { "$ref": "./examples/NodeDisableScheduling.json" } + "Node disable scheduling": { + "$ref": "./examples/NodeDisableScheduling.json" + } }, "summary": "Disables task scheduling on the specified compute node.", "x-ms-request-id": "request-id", @@ -9730,7 +9858,9 @@ ], "operationId": "ComputeNode_EnableScheduling", "x-ms-examples": { - "Node enable scheduling": { "$ref": "./examples/NodeEnableScheduling.json" } + "Node enable scheduling": { + "$ref": "./examples/NodeEnableScheduling.json" + } }, "summary": "Enables task scheduling on the specified compute node.", "x-ms-request-id": "request-id", @@ -9844,7 +9974,9 @@ ], "operationId": "ComputeNode_GetRemoteLoginSettings", "x-ms-examples": { - "Node get remote login settings": { "$ref": "./examples/NodeGetRemoteLoginSettings.json" } + "Node get remote login settings": { + "$ref": "./examples/NodeGetRemoteLoginSettings.json" + } }, "summary": "Gets the settings required for remote login to a compute node.", "description": "Before you can remotely login to a node using the remote login settings, you must create a user account on the node. This API can be invoked only on pools created with the virtual machine configuration property.", @@ -10072,7 +10204,9 @@ }, "operationId": "ComputeNode_List", "x-ms-examples": { - "Node list": { "$ref": "./examples/NodeList.json" } + "Node list": { + "$ref": "./examples/NodeList.json" + } }, "summary": "Lists the compute nodes in the specified pool.", "x-ms-request-id": "request-id", @@ -10245,7 +10379,15 @@ "title": "The cross data center network egress from the pool during this interval, in GiB." } }, - "required": [ "poolId", "startTime", "endTime", "vmSize", "totalCoreHours", "dataIngressGiB", "dataEgressGiB" ], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours", + "dataIngressGiB", + "dataEgressGiB" + ], "title": "Usage metrics for a pool across an aggregation interval." }, "PoolListUsageMetricsResult": { @@ -10349,7 +10491,11 @@ "title": "The aggregated wall-clock time of the dedicated compute node cores being part of the pool." } }, - "required": [ "startTime", "lastUpdateTime", "dedicatedCoreTime" ], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "title": "Statistics related to pool usage information." }, "ResourceStatistics": { @@ -10420,7 +10566,21 @@ "title": "The total amount of data in GiB of network writes across all nodes in the pool." } }, - "required": [ "startTime", "lastUpdateTime", "avgCPUPercentage", "avgMemoryGiB", "peakMemoryGiB", "avgDiskGiB", "peakDiskGiB", "diskReadIOps", "diskWriteIOps", "diskReadGiB", "diskWriteGiB", "networkReadGiB", "networkWriteGiB" ], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "title": "Statistics related to resource consumption by compute nodes in a pool." }, "PoolStatistics": { @@ -10448,7 +10608,11 @@ "title": "Statistics related to resource consumption by compute nodes in the pool." } }, - "required": [ "url", "startTime", "lastUpdateTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "title": "Contains utilization and resource usage statistics for the lifetime of a pool." }, "JobStatistics": { @@ -10526,7 +10690,22 @@ "description": "The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.) This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job." }, "NameValuePair": { @@ -10621,7 +10800,9 @@ "description": "If this is omitted, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences. If you are calling the REST API directly, the HTTP status code is 409." } }, - "required": [ "applicationId" ], + "required": [ + "applicationId" + ], "title": "A reference to an application package to be deployed to compute nodes." }, "ApplicationSummary": { @@ -10642,7 +10823,11 @@ } } }, - "required": [ "id", "displayName", "versions" ], + "required": [ + "id", + "displayName", + "versions" + ], "title": "Contains information about an application in an Azure Batch account." }, "CertificateAddParameter": { @@ -10677,7 +10862,11 @@ "description": "This is required if the certificate format is pfx. It should be omitted if the certificate format is cer." } }, - "required": [ "thumbprint", "thumbprintAlgorithm", "data" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "title": "A certificate that can be installed on compute nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -10724,7 +10913,10 @@ "description": "The file mode is returned only for files on Linux compute nodes." } }, - "required": [ "lastModified", "contentLength" ], + "required": [ + "lastModified", + "contentLength" + ], "title": "The properties of a file on a compute node." }, "NodeFile": { @@ -10827,7 +11019,10 @@ "description": "This property applies only to files being downloaded to Linux compute nodes. It will be ignored if it is specified for a resourceFile which will be downloaded to a Windows node. If this property is not specified for a Linux node, then a default value of 0770 is applied to the file." } }, - "required": [ "blobSource", "filePath" ], + "required": [ + "blobSource", + "filePath" + ], "title": "A file to be downloaded from Azure blob storage to a compute node." }, "EnvironmentSetting": { @@ -10841,7 +11036,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, "ExitConditions": { @@ -10890,7 +11087,10 @@ } }, "title": "How the Batch service should respond if a task exits with a particular exit code.", - "required": [ "code", "exitOptions" ] + "required": [ + "code", + "exitOptions" + ] }, "ExitCodeRangeMapping": { "properties": { @@ -10910,7 +11110,11 @@ } }, "title": "A range of exit codes and how the Batch service should respond to exit codes within that range.", - "required": [ "start", "end", "exitOptions" ] + "required": [ + "start", + "end", + "exitOptions" + ] }, "ExitOptions": { "properties": { @@ -11027,7 +11231,10 @@ "$ref": "#/definitions/LinuxUserConfiguration" } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user used to execute tasks on an Azure Batch node." }, "TaskConstraints": { @@ -11078,7 +11285,7 @@ "title": "A list of files that the Batch service will download to the compute node before running the command line.", "description": "Files listed under this element are located in the task's working directory." }, - "outputFiles": { + "outputFiles": { "type": "array", "items": { "$ref": "#/definitions/OutputFile" @@ -11130,7 +11337,10 @@ "description": "The default value is false." } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "Specifies details of a Job Manager task." }, "JobPreparationTask": { @@ -11180,7 +11390,9 @@ "description": "The Job Preparation task is always rerun if a compute node is reimaged, or if the Job Preparation task did not complete (e.g. because the reboot occurred while the task was running). Therefore, you should always write a Job Preparation task to be idempotent and to behave correctly if run multiple times. The default value is true." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Preparation task to run before any tasks of the job on any given compute node." }, "JobReleaseTask": { @@ -11227,7 +11439,9 @@ "description": "If omitted, the task runs as a non-administrative user unique to the task." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Release task to run on job completion on any compute node where the job has run." }, "TaskSchedulingPolicy": { @@ -11245,7 +11459,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "StartTask": { @@ -11286,7 +11502,9 @@ "description": "If true and the start task fails on a compute node, the Batch service retries the start task up to its maximum retry count (maxTaskRetryCount). If the task has still not completed successfully after all retries, then the Batch service marks the compute node unusable, and will not schedule tasks to it. This condition can be detected via the node state and scheduling error detail. If false, the Batch service will not wait for the start task to complete. In this case, other tasks can start executing on the compute node while the start task is still running; and even if the start task fails, new tasks will continue to be scheduled on the node. The default is false." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A task which is run when a compute node joins a pool in the Azure Batch service, or when the compute node is rebooted or reimaged." }, "CertificateReference": { @@ -11336,7 +11554,10 @@ "description": "The default is all accounts." } }, - "required": [ "thumbprint", "thumbprintAlgorithm" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool." }, "MetadataItem": { @@ -11350,7 +11571,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -11453,7 +11677,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -11473,7 +11697,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "vmSize" ], + "required": [ + "vmSize" + ], "title": "Specification for creating a new pool." }, "AutoPoolSpecification": { @@ -11506,7 +11732,9 @@ "title": "The pool specification for the auto pool." } }, - "required": [ "poolLifetimeOption" ], + "required": [ + "poolLifetimeOption" + ], "title": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto pool when the job is submitted." }, "PoolInformation": { @@ -11591,7 +11819,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "Specifies details of the jobs to be created on a schedule." }, "RecentJob": { @@ -11703,7 +11933,22 @@ "description": "This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job schedule." }, "CloudJobSchedule": { @@ -11813,7 +12058,11 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "schedule", "jobSpecification" ], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "title": "A job schedule that allows recurring jobs by specifying when to run jobs and a specification used to create each job." }, "CloudJobScheduleListResult": { @@ -11854,7 +12103,9 @@ "title": "A list of additional error details related to the scheduling error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "An error encountered by the Batch service when scheduling a job." }, "JobExecutionInformation": { @@ -11887,7 +12138,9 @@ "description": "This property is set only if the job is in the completed state. If the Batch service terminates the job, it sets the reason as follows: JMComplete - the Job Manager task completed, and killJobOnCompletion was set to true. MaxWallClockTimeExpiry - the job reached its maxWallClockTime constraint. TerminateJobSchedule - the job ran as part of a schedule, and the schedule terminated. AllTasksComplete - the job's onAllTasksComplete attribute is set to terminateJob, and all tasks in the job are complete. TaskFailed - the job's onTaskFailure attribute is set to performExitOptionsJobAction, and a task in the job failed with an exit condition that specified a jobAction of terminateJob. Any other string is a user-defined reason specified in a call to the 'Terminate a job' operation." } }, - "required": [ "startTime" ], + "required": [ + "startTime" + ], "title": "Contains information about the execution of a job in the Azure Batch service." }, "CloudJob": { @@ -12080,7 +12333,10 @@ "title": "The flag that determines if this job will use tasks with dependencies." } }, - "required": [ "id", "poolInfo" ], + "required": [ + "id", + "poolInfo" + ], "title": "An Azure Batch job to add." }, "CloudJobListResult": { @@ -12121,7 +12377,9 @@ "title": "A list of additional details related to the error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "Information about a task failure." }, "JobPreparationTaskExecutionInformation": { @@ -12187,7 +12445,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "retryCount", "state" ], + "required": [ + "startTime", + "retryCount", + "state" + ], "title": "Contains information about the execution of a Job Preparation task on a compute node." }, "JobReleaseTaskExecutionInformation": { @@ -12241,7 +12503,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "state" ], + "required": [ + "startTime", + "state" + ], "title": "Contains information about the execution of a Job Release task on a compute node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -12323,7 +12588,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": [ "timestamp" ], + "required": [ + "timestamp" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "ResizeError": { @@ -12364,7 +12631,9 @@ "description": "This may differ from targetOSVersion if the pool state is Upgrading. In this case some virtual machines may be on the targetOSVersion and some may be on the currentOSVersion during the upgrade process. Once all virtual machines have upgraded, currentOSVersion is updated to be the same as targetOSVersion." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "ImageReference": { @@ -12390,7 +12659,11 @@ "description": "A value of 'latest' can be specified to select the latest version of an image. If omitted, the default is 'latest'." } }, - "required": [ "publisher", "offer", "sku" ], + "required": [ + "publisher", + "offer", + "sku" + ], "title": "A reference to an Azure Virtual Machines Marketplace image. To get the list of all imageReferences verified by Azure Batch, see the 'List supported node agent SKUs' operation." }, "OSDisk": { @@ -12418,7 +12691,9 @@ } } }, - "required": [ "imageUris" ], + "required": [ + "imageUris" + ], "title": "A reference to an OS disk image." }, "WindowsConfiguration": { @@ -12454,7 +12729,9 @@ "description": "This property must not be specified if the imageReference or osDisk property specifies a Linux OS image." } }, - "required": [ "nodeAgentSKUId" ], + "required": [ + "nodeAgentSKUId" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "NetworkConfiguration": { @@ -12644,7 +12921,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -12773,7 +13050,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -12803,7 +13080,10 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "vmSize" ], + "required": [ + "id", + "vmSize" + ], "title": "A pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -12846,7 +13126,9 @@ "description": "You can pass the affinityId of a compute node or task to indicate that this task needs to be placed close to the node or task." } }, - "required": [ "affinityId" ], + "required": [ + "affinityId" + ], "title": "A locality hint that can be used by the Batch service to select a compute node on which to start a task." }, "TaskExecutionInformation": { @@ -12904,7 +13186,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "requeueCount", "retryCount" ], + "required": [ + "requeueCount", + "retryCount" + ], "title": "Information about the execution of a task." }, "ComputeNodeInformation": { @@ -12957,7 +13242,9 @@ "description": "The difference between common resource files and task resource files is that common resource files are downloaded for all subtasks including the primary, whereas task resource files are downloaded only for the primary." } }, - "required": [ "numberOfInstances" ], + "required": [ + "numberOfInstances" + ], "title": "Settings which specify how to run a multi-instance task.", "description": "Multi-instance tasks are commonly used to support MPI tasks." }, @@ -13019,7 +13306,19 @@ "title": "The total wait time of the task. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "title": "Resource usage statistics for a task." }, "TaskDependencies": { @@ -13056,7 +13355,10 @@ }, "title": "A range of task IDs that a task can depend on. All tasks with IDs in the range must complete successfully before the dependent task can be scheduled.", "description": "The start and end of the range are inclusive. For example, if a range has start 9 and end 12, then it represents tasks '9', '10', '11' and '12'.", - "required": [ "start", "end" ] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -13270,7 +13572,10 @@ "$ref": "#/definitions/AuthenticationTokenSettings" } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "An Azure Batch task to add." }, "TaskAddCollectionParameter": { @@ -13284,7 +13589,9 @@ "title": "The collection of tasks to add." } }, - "required": [ "value" ], + "required": [ + "value" + ], "title": "A collection of Azure Batch tasks to add." }, "TaskAddResult": { @@ -13297,7 +13604,9 @@ "clientError", "serverError" ], - "x-ms-enum": { "name": "TaskAddStatus" } + "x-ms-enum": { + "name": "TaskAddStatus" + } }, "taskId": { "type": "string", @@ -13321,7 +13630,10 @@ "title": "The error encountered while attempting to add the task." } }, - "required": [ "status", "taskId" ], + "required": [ + "status", + "taskId" + ], "title": "Result for a single task added as part of an add task collection operation." }, "TaskAddCollectionResult": { @@ -13453,7 +13765,9 @@ "title": "Information about the execution of the task." } }, - "required": [ "taskState" ], + "required": [ + "taskState" + ], "title": "Information about a task running on a compute node." }, "StartTaskInformation": { @@ -13512,7 +13826,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "state", "startTime", "retryCount" ], + "required": [ + "state", + "startTime", + "retryCount" + ], "title": "Information about a start task running on a compute node." }, "ComputeNodeError": { @@ -13708,7 +14026,9 @@ "description": "The public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux nodes. If this is specified for a Windows node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request)." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "A user account for RDP or SSH access on a compute node." }, "ComputeNodeGetRemoteLoginSettingsResult": { @@ -13723,7 +14043,10 @@ "title": "The port used for remote login to the compute node." } }, - "required": [ "remoteLoginIPAddress", "remoteLoginPort" ], + "required": [ + "remoteLoginIPAddress", + "remoteLoginPort" + ], "title": "The remote login settings for a compute node." }, "JobSchedulePatchParameter": { @@ -13770,7 +14093,10 @@ "description": "If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": [ "schedule", "jobSpecification" ], + "required": [ + "schedule", + "jobSpecification" + ], "title": "The set of changes to be made to a job schedule." }, "JobDisableParameter": { @@ -13790,7 +14116,9 @@ } } }, - "required": [ "disableTasks" ], + "required": [ + "disableTasks" + ], "title": "Options when disabling a job." }, "JobTerminateParameter": { @@ -13868,7 +14196,9 @@ "$ref": "#/definitions/OnAllTasksComplete" } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "The set of changes to be made to a job." }, "PoolEnableAutoScaleParameter": { @@ -13895,7 +14225,9 @@ "description": "The formula is validated and its results calculated, but it is not applied to the pool. To apply the formula to the pool, 'Enable automatic scaling on a pool'. For more information about specifying this formula, see Automatically scale compute nodes in an Azure Batch pool (https://azure.microsoft.com/en-us/documentation/articles/batch-automatic-scaling)." } }, - "required": [ "autoScaleFormula" ], + "required": [ + "autoScaleFormula" + ], "title": "Options for evaluating an automatic scaling formula on a pool." }, "PoolResizeParameter": { @@ -13956,7 +14288,11 @@ "description": "This list replaces any existing metadata configured on the pool. If omitted, or if you specify an empty collection, any existing metadata is removed from the pool." } }, - "required": [ "certificateReferences", "metadata", "applicationPackageReferences" ], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "title": "The set of changes to be made to a pool." }, "PoolUpgradeOSParameter": { @@ -13966,7 +14302,9 @@ "title": "The Azure Guest OS version to be installed on the virtual machines in the pool." } }, - "required": [ "targetOSVersion" ], + "required": [ + "targetOSVersion" + ], "title": "Options for upgrading the operating system of compute nodes in a pool." }, "PoolPatchParameter": { @@ -14115,7 +14453,9 @@ "$ref": "#/definitions/ComputeNodeDeallocationOption" } }, - "required": [ "nodeList" ], + "required": [ + "nodeList" + ], "title": "Options for removing compute nodes from a pool." }, "OutputFile": { @@ -14134,7 +14474,11 @@ "$ref": "#/definitions/OutputFileUploadOptions" } }, - "required": [ "filePattern", "destination", "uploadOptions" ], + "required": [ + "filePattern", + "destination", + "uploadOptions" + ], "title": "A specification for uploading files from an Azure Batch node to another location after the Batch service has finished executing the task process." }, "OutputFileDestination": { @@ -14159,7 +14503,9 @@ "description": "The URL must include a Shared Access Signature (SAS) granting write permissions to the container." } }, - "required": [ "containerUrl" ], + "required": [ + "containerUrl" + ], "title": "Specifies a file upload destination within an Azure blob storage container." }, "OutputFileUploadOptions": { @@ -14170,7 +14516,9 @@ "$ref": "#/definitions/OutputFileUploadCondition" } }, - "required": [ "uploadCondition" ], + "required": [ + "uploadCondition" + ], "title": "Details about an output file upload operation, including under what conditions to perform the upload." }, "ErrorMessage": { @@ -14394,4 +14742,3 @@ } } } - diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/AccountListNodeAgentSkus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/AccountListNodeAgentSkus.json index f12b72b9e370..042031a1127e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/AccountListNodeAgentSkus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/AccountListNodeAgentSkus.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateAdd.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateAdd.json index a98b75c12ff5..b731e046c9b7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateAdd.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateAdd.json @@ -4,11 +4,11 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "certificate": { - "thumbprintAlgorithm":"sha1", - "thumbprint":"0123456789abcdef0123456789abcdef01234567", - "data":"#####...", - "certificateFormat":"pfx", - "password":"certpassword" + "thumbprintAlgorithm": "sha1", + "thumbprint": "0123456789abcdef0123456789abcdef01234567", + "data": "#####...", + "certificateFormat": "pfx", + "password": "certpassword" } }, "responses": { @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateCancelDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateCancelDelete.json index 26c5f96c87bf..82509a1f35ff 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateCancelDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateCancelDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateDelete.json index a46d4e70e9a2..eb0343a86bca 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateGet.json index 9b9d12765743..19ea59bd4651 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateList.json index bd6542ba5782..41cfaff8b603 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/CertificateList.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileDeleteFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileDeleteFromNode.json index aa2ec6062bd5..5b0e350c153c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileDeleteFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileDeleteFromNode.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileDeleteFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileDeleteFromTask.json index 7d14815da786..16708cb6b080 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileDeleteFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileDeleteFromTask.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileGetPropertiesFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileGetPropertiesFromNode.json index 8e72bb4399a6..1597a89e6de8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileGetPropertiesFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileGetPropertiesFromNode.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileGetPropertiesFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileGetPropertiesFromTask.json index 8942e96948a8..6e8aa5ebae66 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileGetPropertiesFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileGetPropertiesFromTask.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileListFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileListFromNode.json index 1496110130ea..12f0121b18f5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileListFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileListFromNode.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileListFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileListFromTask.json index 94fd190468af..96ef570fa654 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileListFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/FileListFromTask.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobAdd_Basic.json index 8b47aff3c30f..0ba59d2a0f7f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobAdd_Basic.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobAdd_Complex.json index 68040f9b5529..b30d94c4e79a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobAdd_Complex.json @@ -35,7 +35,7 @@ "retentionTime": "PT1H" }, "killJobOnCompletion": false, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -75,7 +75,7 @@ "value": "myvalue" } ], - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -117,4 +117,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobDisable.json index d72a06c54d37..0172e5d1cda0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobDisable.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobEnable.json index c39f4a225edd..467c5b0074d2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobGet.json index 0bae4ebd131d..e41523ad29b1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobGet.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobGetLifetimeStatistics.json index 931d167134ad..3eecc86a1d63 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimejobstats", + "url": "https://account.region.batch.core.windows.net/lifetimejobstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "userCPUTime": "PT0S", @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobList.json index d46127d23d13..6f9ec3a867e8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobList.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobListPreparationAndReleaseTaskStatus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobListPreparationAndReleaseTaskStatus.json index a73a1ed98003..69f291f29610 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobListPreparationAndReleaseTaskStatus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobListPreparationAndReleaseTaskStatus.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobPatch.json index 74eb40fdb399..633b03e3b45e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobPatch.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobPatchParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleAdd_Basic.json index 287a8aa9b03c..f20faf293f53 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleAdd_Basic.json @@ -6,7 +6,7 @@ "cloudJobSchedule": { "id": "jobScheduleId", "schedule": { - "recurrenceInterval":"PT5M" + "recurrenceInterval": "PT5M" }, "jobSpecification": { "poolInfo": { @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleAdd_Complex.json index b831d5cd634a..7254a08778b1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleAdd_Complex.json @@ -125,4 +125,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleDelete.json index 4286e8936fd9..70503e2dca8a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleDisable.json index bd838eed45cc..ab1feb6aba32 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleDisable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleEnable.json index bd838eed45cc..ab1feb6aba32 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleGet.json index 4eb145e6c1b5..b9ba874c54b9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleList.json index 73b0a141db00..b47ff0accdb6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleList.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobSchedulePatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobSchedulePatch.json index 71c677593b57..d7daaf19e003 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobSchedulePatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobSchedulePatch.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleTerminate.json index 4286e8936fd9..70503e2dca8a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleTerminate.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleUpdate.json index 6a26f335736f..b80e1cab27a7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobScheduleUpdate.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobTerminate.json index 858bdcbb7518..157911e56b18 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobTerminate.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobUpdate.json index 0984430be61d..b7b2b4c0b137 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/JobUpdate.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobUpdateParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeAddUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeAddUser.json index 2b99a1feae5d..20a552c3cc97 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeAddUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeAddUser.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeDeleteUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeDeleteUser.json index 8b2594aa20df..2c63260fecee 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeDeleteUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeDeleteUser.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeDisableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeDisableScheduling.json index ba6f824d4010..f2742df1646b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeDisableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeDisableScheduling.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeEnableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeEnableScheduling.json index 6b80e4ce452d..aac71e40143d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeEnableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeEnableScheduling.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeGetRemoteLoginSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeGetRemoteLoginSettings.json index 75ef488d233f..1eb45beab923 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeGetRemoteLoginSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeGetRemoteLoginSettings.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeGet_Basic.json index fd8f31449915..f8ed81fd4681 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeGet_Basic.json @@ -24,7 +24,7 @@ "runningTasksCount": 0, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeList.json index eef743916ec2..34a9090297cb 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeList.json @@ -25,7 +25,7 @@ "runningTasksCount": 0, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -58,7 +58,7 @@ "runningTasksCount": 0, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -91,7 +91,7 @@ "runningTasksCount": 0, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -112,4 +112,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeReboot.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeReboot.json index b6f7a4c8247f..48f35fc4219f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeReboot.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeReboot.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeReimage.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeReimage.json index ecf2fbd08dcb..1be0d177c9ed 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeReimage.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeReimage.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeUpdateUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeUpdateUser.json index b8133e62e607..299837ef534c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeUpdateUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/NodeUpdateUser.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolAdd_CloudServiceConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolAdd_CloudServiceConfiguration.json index d63b5503d867..7cb72a72373a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolAdd_CloudServiceConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolAdd_CloudServiceConfiguration.json @@ -9,18 +9,20 @@ "cloudServiceConfiguration": { "osFamily": "4" }, - "resizeTimeout":"PT15M", - "targetDedicated":5, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicated": 5, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -30,4 +32,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolAdd_VirtualMachineConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolAdd_VirtualMachineConfiguration.json index 37d68f070561..71dcf4ad34a4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolAdd_VirtualMachineConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolAdd_VirtualMachineConfiguration.json @@ -14,18 +14,20 @@ }, "nodeAgentSKUId": "batch.node.ubuntu 16.04" }, - "resizeTimeout":"PT15M", - "targetDedicated":5, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicated": 5, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -35,4 +37,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolDelete.json index 291ec9d4c156..8bebb0e32786 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolEnableAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolEnableAutoscale.json index ad4f5ab36c4a..3874f8fce8e2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolEnableAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolEnableAutoscale.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolEvaluateAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolEvaluateAutoscale.json index f349a11851d4..aa523e32d335 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolEvaluateAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolEvaluateAutoscale.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolGetLifetimeStatistics.json index 66a6f825a84e..8280444a7bf9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimepoolstats", + "url": "https://account.region.batch.core.windows.net/lifetimepoolstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "usageStats": { @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolGet_Basic.json index de9588a32e5a..355f38b506af 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolGet_Basic.json @@ -25,7 +25,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "/bin/bash -c 'echo start task'", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolListUsageMetrics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolListUsageMetrics.json index edb909a0ed4d..d3601e6f89e3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolListUsageMetrics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolListUsageMetrics.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolList_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolList_Basic.json index 3a0c9d4d46ed..c8e8b2a29519 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolList_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolList_Basic.json @@ -26,7 +26,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolRemoveNodes.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolRemoveNodes.json index 39e38639f343..4e63e864e6cd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolRemoveNodes.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolRemoveNodes.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolResize.json index d950ce2f5a92..eafb8c809157 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolResize.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolStopResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolStopResize.json index 291ec9d4c156..8bebb0e32786 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolStopResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolStopResize.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolUpdate.json index 0cd0554faba0..a171cde43df9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolUpdate.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAddCollection_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAddCollection_Basic.json index 831eee286aa7..dc9557b7597a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAddCollection_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAddCollection_Basic.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAddCollection_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAddCollection_Complex.json index b9e50d5209b1..0da43c0d194c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAddCollection_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAddCollection_Complex.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAdd_Basic.json index 31020aaa3660..7258c9dc1891 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAdd_Basic.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAdd_ExitConditions.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAdd_ExitConditions.json index 06a461d670a3..2527fdce6a87 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAdd_ExitConditions.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskAdd_ExitConditions.json @@ -18,7 +18,7 @@ } ] }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -31,4 +31,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskDelete.json index dcc6788d32af..3cd0fe6a8510 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskGet.json index 48b4cb0389ad..d8c82f4ca69c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskGet.json @@ -17,7 +17,7 @@ "state": "active", "stateTransitionTime": "2016-09-06T06:59:15.1161429Z", "commandLine": "cmd /c hostname", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskList.json index 1dd23be937e2..057b4dce1513 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskList.json @@ -18,7 +18,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.4733476Z", "commandLine": "cmd /c echo task1", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -43,7 +43,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.6736345Z", "commandLine": "cmd /c echo task2", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskListSubtasks.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskListSubtasks.json index ead6fef7c89c..2a3e6fae74a6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskListSubtasks.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskListSubtasks.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskReactivate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskReactivate.json index 37cd57df63b5..20e993bd5b6a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskReactivate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskReactivate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskTerminate.json index 37cd57df63b5..20e993bd5b6a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskTerminate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskUpdate.json index 1698e7578413..846bbab3760d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/TaskUpdate.json @@ -7,9 +7,9 @@ "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "taskUpdateParameter": { "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":3, - "retentionTime":"PT1H" + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": 3, + "retentionTime": "PT1H" } } }, @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/BatchService.json index 823c8d6bcec3..1e6093ac0f7e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/BatchService.json @@ -248,7 +248,9 @@ }, "operationId": "Pool_ListUsageMetrics", "x-ms-examples": { - "Pool list usage metrics": { "$ref": "./examples/PoolListUsageMetrics.json" } + "Pool list usage metrics": { + "$ref": "./examples/PoolListUsageMetrics.json" + } }, "summary": "Lists the usage metrics, aggregated by pool across individual time intervals, for the specified account.", "description": "If you do not specify a $filter clause including a poolId, the response includes all pools that existed in the account in the time range of the returned aggregation intervals. If you do not specify a $filter clause including a startTime or endTime these filters default to the start and end times of the last aggregation interval currently available; that is, only the last aggregation interval is returned.", @@ -400,7 +402,9 @@ }, "operationId": "Account_ListNodeAgentSkus", "x-ms-examples": { - "Account list node agent skus": { "$ref": "./examples/AccountListNodeAgentSkus.json" } + "Account list node agent skus": { + "$ref": "./examples/AccountListNodeAgentSkus.json" + } }, "summary": "Lists all node agent SKUs supported by the Azure Batch service.", "x-ms-request-id": "request-id", @@ -524,7 +528,9 @@ ], "operationId": "Pool_GetAllLifetimeStatistics", "x-ms-examples": { - "Pool get lifetime statistics": { "$ref": "./examples/PoolGetLifetimeStatistics.json" } + "Pool get lifetime statistics": { + "$ref": "./examples/PoolGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the pools in the specified account.", "description": "Statistics are aggregated across all pools that have ever existed in the account, from account creation to the last update time of the statistics.", @@ -624,7 +630,9 @@ ], "operationId": "Job_GetAllLifetimeStatistics", "x-ms-examples": { - "Job get lifetime statistics": { "$ref": "./examples/JobGetLifetimeStatistics.json" } + "Job get lifetime statistics": { + "$ref": "./examples/JobGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the jobs in the specified account.", "description": "Statistics are aggregated across all jobs that have ever existed in the account, from account creation to the last update time of the statistics.", @@ -724,7 +732,9 @@ ], "operationId": "Certificate_Add", "x-ms-examples": { - "Certificate add": { "$ref": "./examples/CertificateAdd.json" } + "Certificate add": { + "$ref": "./examples/CertificateAdd.json" + } }, "summary": "Adds a certificate to the specified account.", "x-ms-request-id": "request-id", @@ -834,7 +844,9 @@ }, "operationId": "Certificate_List", "x-ms-examples": { - "Certificate list": { "$ref": "./examples/CertificateList.json" } + "Certificate list": { + "$ref": "./examples/CertificateList.json" + } }, "summary": "Lists all of the certificates that have been added to the specified account.", "x-ms-request-id": "request-id", @@ -968,7 +980,9 @@ ], "operationId": "Certificate_CancelDeletion", "x-ms-examples": { - "Certificate cancel delete": { "$ref": "./examples/CertificateCancelDelete.json" } + "Certificate cancel delete": { + "$ref": "./examples/CertificateCancelDelete.json" + } }, "summary": "Cancels a failed deletion of a certificate from the specified account.", "description": "If you try to delete a certificate that is being used by a pool or compute node, the status of the certificate changes to deleteFailed. If you decide that you want to continue using the certificate, you can use this operation to set the status of the certificate back to active. If you intend to delete the certificate, you do not need to run this operation after the deletion failed. You must make sure that the certificate is not being used by any resources, and then you can try again to delete the certificate.", @@ -1083,7 +1097,9 @@ ], "operationId": "Certificate_Delete", "x-ms-examples": { - "Certificate delete": { "$ref": "./examples/CertificateDelete.json" } + "Certificate delete": { + "$ref": "./examples/CertificateDelete.json" + } }, "summary": "Deletes a certificate from the specified account.", "description": "You cannot delete a certificate if a resource (pool or compute node) is using it. Before you can delete a certificate, you must therefore make sure that the certificate is not associated with any existing pools, the certificate is not installed on any compute nodes (even if you remove a certificate from a pool, it is not removed from existing compute nodes in that pool until they restart), and no running tasks depend on the certificate. If you try to delete a certificate that is in use, the deletion fails. The certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the certificate.", @@ -1192,7 +1208,9 @@ ], "operationId": "Certificate_Get", "x-ms-examples": { - "Certificate get": { "$ref": "./examples/CertificateGet.json" } + "Certificate get": { + "$ref": "./examples/CertificateGet.json" + } }, "description": "Gets information about the specified certificate.", "x-ms-request-id": "request-id", @@ -1315,7 +1333,9 @@ ], "operationId": "File_DeleteFromTask", "x-ms-examples": { - "File delete from task": { "$ref": "./examples/FileDeleteFromTask.json" } + "File delete from task": { + "$ref": "./examples/FileDeleteFromTask.json" + } }, "summary": "Deletes the specified task file from the compute node where the task ran.", "x-ms-request-id": "request-id", @@ -1599,7 +1619,9 @@ ], "operationId": "File_GetPropertiesFromTask", "x-ms-examples": { - "File get properties from task": { "$ref": "./examples/FileGetPropertiesFromTask.json" } + "File get properties from task": { + "$ref": "./examples/FileGetPropertiesFromTask.json" + } }, "description": "Gets the properties of the specified task file.", "x-ms-request-id": "request-id", @@ -1764,7 +1786,9 @@ ], "operationId": "File_DeleteFromComputeNode", "x-ms-examples": { - "File delete from node": { "$ref": "./examples/FileDeleteFromNode.json" } + "File delete from node": { + "$ref": "./examples/FileDeleteFromNode.json" + } }, "summary": "Deletes the specified file from the compute node.", "x-ms-request-id": "request-id", @@ -2048,7 +2072,9 @@ ], "operationId": "File_GetPropertiesFromComputeNode", "x-ms-examples": { - "File get properties from node": { "$ref": "./examples/FileGetPropertiesFromNode.json" } + "File get properties from node": { + "$ref": "./examples/FileGetPropertiesFromNode.json" + } }, "description": "Gets the properties of the specified compute node file.", "x-ms-request-id": "request-id", @@ -2216,7 +2242,9 @@ }, "operationId": "File_ListFromTask", "x-ms-examples": { - "File list from task": { "$ref": "./examples/FileListFromTask.json" } + "File list from task": { + "$ref": "./examples/FileListFromTask.json" + } }, "summary": "Lists the files in a task's directory on its compute node.", "x-ms-request-id": "request-id", @@ -2364,7 +2392,9 @@ }, "operationId": "File_ListFromComputeNode", "x-ms-examples": { - "File list from node": { "$ref": "./examples/FileListFromNode.json" } + "File list from node": { + "$ref": "./examples/FileListFromNode.json" + } }, "summary": "Lists all of the files in task directories on the specified compute node.", "x-ms-request-id": "request-id", @@ -2652,7 +2682,9 @@ ], "operationId": "JobSchedule_Delete", "x-ms-examples": { - "JobSchedule delete": { "$ref": "./examples/JobScheduleDelete.json" } + "JobSchedule delete": { + "$ref": "./examples/JobScheduleDelete.json" + } }, "summary": "Deletes a job schedule from the specified account.", "description": "When you delete a job schedule, this also deletes all jobs and tasks under that schedule. When tasks are deleted, all the files in their working directories on the compute nodes are also deleted (the retention period is ignored). The job schedule statistics are no longer accessible once the job schedule is deleted, though they are still counted towards account lifetime statistics.", @@ -2785,7 +2817,9 @@ ], "operationId": "JobSchedule_Get", "x-ms-examples": { - "JobSchedule get": { "$ref": "./examples/JobScheduleGet.json" } + "JobSchedule get": { + "$ref": "./examples/JobScheduleGet.json" + } }, "description": "Gets information about the specified job schedule.", "x-ms-request-id": "request-id", @@ -2951,7 +2985,9 @@ ], "operationId": "JobSchedule_Patch", "x-ms-examples": { - "JobSchedule patch": { "$ref": "./examples/JobSchedulePatch.json" } + "JobSchedule patch": { + "$ref": "./examples/JobSchedulePatch.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This replaces only the job schedule properties specified in the request. For example, if the schedule property is not specified with this request, then the Batch service will keep the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3108,7 +3144,9 @@ ], "operationId": "JobSchedule_Update", "x-ms-examples": { - "JobSchedule update": { "$ref": "./examples/JobScheduleUpdate.json" } + "JobSchedule update": { + "$ref": "./examples/JobScheduleUpdate.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This fully replaces all the updatable properties of the job schedule. For example, if the schedule property is not specified with this request, then the Batch service will remove the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3267,7 +3305,9 @@ ], "operationId": "JobSchedule_Disable", "x-ms-examples": { - "JobSchedule disable": { "$ref": "./examples/JobScheduleDisable.json" } + "JobSchedule disable": { + "$ref": "./examples/JobScheduleDisable.json" + } }, "summary": "Disables a job schedule.", "description": "No new jobs will be created until the job schedule is enabled again.", @@ -3417,7 +3457,9 @@ ], "operationId": "JobSchedule_Enable", "x-ms-examples": { - "JobSchedule enable": { "$ref": "./examples/JobScheduleEnable.json" } + "JobSchedule enable": { + "$ref": "./examples/JobScheduleEnable.json" + } }, "summary": "Enables a job schedule.", "x-ms-request-id": "request-id", @@ -3566,7 +3608,9 @@ ], "operationId": "JobSchedule_Terminate", "x-ms-examples": { - "JobSchedule terminate": { "$ref": "./examples/JobScheduleTerminate.json" } + "JobSchedule terminate": { + "$ref": "./examples/JobScheduleTerminate.json" + } }, "summary": "Terminates a job schedule.", "x-ms-request-id": "request-id", @@ -3715,8 +3759,12 @@ ], "operationId": "JobSchedule_Add", "x-ms-examples": { - "Add a basic JobSchedule": { "$ref": "./examples/JobScheduleAdd_Basic.json" }, - "Add a complex JobScheduleAdd": { "$ref": "./examples/JobScheduleAdd_Complex.json" } + "Add a basic JobSchedule": { + "$ref": "./examples/JobScheduleAdd_Basic.json" + }, + "Add a complex JobScheduleAdd": { + "$ref": "./examples/JobScheduleAdd_Complex.json" + } }, "summary": "Adds a job schedule to the specified account.", "x-ms-request-id": "request-id", @@ -3826,7 +3874,9 @@ }, "operationId": "JobSchedule_List", "x-ms-examples": { - "JobSchedule list": { "$ref": "./examples/JobScheduleList.json" } + "JobSchedule list": { + "$ref": "./examples/JobScheduleList.json" + } }, "summary": "Lists all of the job schedules in the specified account.", "x-ms-request-id": "request-id", @@ -4100,7 +4150,9 @@ ], "operationId": "Job_Get", "x-ms-examples": { - "Job get": { "$ref": "./examples/JobGet.json" } + "Job get": { + "$ref": "./examples/JobGet.json" + } }, "summary": "Gets information about the specified job.", "x-ms-request-id": "request-id", @@ -4266,7 +4318,9 @@ ], "operationId": "Job_Patch", "x-ms-examples": { - "Job patch": { "$ref": "./examples/JobPatch.json" } + "Job patch": { + "$ref": "./examples/JobPatch.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This replaces only the job properties specified in the request. For example, if the job has constraints, and a request does not specify the constraints element, then the job keeps the existing constraints.", @@ -4423,7 +4477,9 @@ ], "operationId": "Job_Update", "x-ms-examples": { - "Job update": { "$ref": "./examples/JobUpdate.json" } + "Job update": { + "$ref": "./examples/JobUpdate.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This fully replaces all the updatable properties of the job. For example, if the job has constraints associated with it and if constraints is not specified with this request, then the Batch service will remove the existing constraints.", @@ -4582,7 +4638,9 @@ ], "operationId": "Job_Disable", "x-ms-examples": { - "Job disable": { "$ref": "./examples/JobDisable.json" } + "Job disable": { + "$ref": "./examples/JobDisable.json" + } }, "summary": "Disables the specified job, preventing new tasks from running.", "description": "The Batch Service immediately moves the job to the disabling state. Batch then uses the disableTasks parameter to determine what to do with the currently running tasks of the job. The job remains in the disabling state until the disable operation is completed and all tasks have been dealt with according to the disableTasks option; the job then moves to the disabled state. No new tasks are started under the job until it moves back to active state. If you try to disable a job that is in any state other than active, disabling, or disabled, the request fails with status code 409.", @@ -4741,7 +4799,9 @@ ], "operationId": "Job_Enable", "x-ms-examples": { - "Job enable": { "$ref": "./examples/JobEnable.json" } + "Job enable": { + "$ref": "./examples/JobEnable.json" + } }, "summary": "Enables the specified job, allowing new tasks to run.", "description": "When you call this API, the Batch service sets a disabled job to the enabling state. After the this operation is completed, the job moves to the active state, and scheduling of new tasks under the job resumes. The Batch service does not allow a task to remain in the active state for more than 7 days. Therefore, if you enable a job containing active tasks which were added more than 7 days ago, those tasks will not run.", @@ -4891,7 +4951,9 @@ ], "operationId": "Job_Terminate", "x-ms-examples": { - "Job terminate": { "$ref": "./examples/JobTerminate.json" } + "Job terminate": { + "$ref": "./examples/JobTerminate.json" + } }, "summary": "Terminates the specified job, marking it as completed.", "description": "When a Terminate Job request is received, the Batch service sets the job to the terminating state. The Batch service then terminates any active or running tasks associated with the job, and runs any required Job Release tasks. The job then moves into the completed state.", @@ -5050,8 +5112,12 @@ ], "operationId": "Job_Add", "x-ms-examples": { - "Add a basic job": { "$ref": "./examples/JobAdd_Basic.json" }, - "Add a complex job": { "$ref": "./examples/JobAdd_Complex.json" } + "Add a basic job": { + "$ref": "./examples/JobAdd_Basic.json" + }, + "Add a complex job": { + "$ref": "./examples/JobAdd_Complex.json" + } }, "summary": "Adds a job to the specified account.", "description": "The Batch service supports two ways to control the work done as part of a job. In the first approach, the user specifies a Job Manager task. The Batch service launches this task when it is ready to start the job. The Job Manager task controls all other tasks that run under this job, by using the Task APIs. In the second approach, the user directly controls the execution of tasks under an active job, by using the Task APIs. Also note: when naming jobs, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5162,7 +5228,9 @@ }, "operationId": "Job_List", "x-ms-examples": { - "Job list": { "$ref": "./examples/JobList.json" } + "Job list": { + "$ref": "./examples/JobList.json" + } }, "summary": "Lists all of the jobs in the specified account.", "x-ms-request-id": "request-id", @@ -5460,7 +5528,9 @@ }, "operationId": "Job_ListPreparationAndReleaseTaskStatus", "x-ms-examples": { - "Job list preparation and release task status": { "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" } + "Job list preparation and release task status": { + "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" + } }, "summary": "Lists the execution status of the Job Preparation and Job Release task for the specified job across the compute nodes where the job has run.", "description": "This API returns the Job Preparation and Job Release task status on all compute nodes that have run the Job Preparation or Job Release task. This includes nodes which have since been removed from the pool. If this API is invoked on a job which has no Job Preparation or Job Release task, the Batch service returns HTTP status code 409 (Conflict) with an error code of JobPreparationTaskNotSpecified.", @@ -5602,7 +5672,9 @@ ], "operationId": "Job_GetTaskCounts", "x-ms-examples": { - "Job get task counts": { "$ref": "./examples/JobGetTaskCounts.json" } + "Job get task counts": { + "$ref": "./examples/JobGetTaskCounts.json" + } }, "summary": "Gets the task counts for the specified job.", "description": "Task counts provide a count of the tasks by active, running or completed task state, and a count of tasks which succeeded or failed. Tasks in the preparing state are counted as running. If the validationStatus is unvalidated, then the Batch service has not been able to check state counts against the task states as reported in the List Tasks API. The validationStatus may be unvalidated if the job contains more than 200,000 tasks.", @@ -5700,8 +5772,12 @@ ], "operationId": "Pool_Add", "x-ms-examples": { - "Add a CloudServiceConfiguration pool": { "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" }, - "Add a VirtualMachineConfiguration pool": { "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" } + "Add a CloudServiceConfiguration pool": { + "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool": { + "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" + } }, "summary": "Adds a pool to the specified account.", "description": "When naming pools, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5812,7 +5888,9 @@ }, "operationId": "Pool_List", "x-ms-examples": { - "Pool list": { "$ref": "./examples/PoolList_Basic.json" } + "Pool list": { + "$ref": "./examples/PoolList_Basic.json" + } }, "summary": "Lists all of the pools in the specified account.", "x-ms-request-id": "request-id", @@ -5956,7 +6034,9 @@ ], "operationId": "Pool_Delete", "x-ms-examples": { - "Pool delete": { "$ref": "./examples/PoolDelete.json" } + "Pool delete": { + "$ref": "./examples/PoolDelete.json" + } }, "summary": "Deletes a pool from the specified account.", "description": "When you request that a pool be deleted, the following actions occur: the pool state is set to deleting; any ongoing resize operation on the pool are stopped; the Batch service starts resizing the pool to zero nodes; any tasks running on existing nodes are terminated and requeued (as if a resize pool operation had been requested with the default requeue option); finally, the pool is removed from the system. Because running tasks are requeued, the user can rerun these tasks by updating their job to target a different pool. The tasks can then run on the new pool. If you want to override the requeue behavior, then you should call resize pool explicitly to shrink the pool to zero size before deleting the pool. If you call an Update, Patch or Delete API on a pool in the deleting state, it will fail with HTTP status code 409 with error code PoolBeingDeleted.", @@ -6232,7 +6312,9 @@ ], "operationId": "Pool_Get", "x-ms-examples": { - "Pool get": { "$ref": "./examples/PoolGet_Basic.json" } + "Pool get": { + "$ref": "./examples/PoolGet_Basic.json" + } }, "description": "Gets information about the specified pool.", "x-ms-request-id": "request-id", @@ -6658,7 +6740,9 @@ ], "operationId": "Pool_EnableAutoScale", "x-ms-examples": { - "Pool enable autoscale": { "$ref": "./examples/PoolEnableAutoscale.json" } + "Pool enable autoscale": { + "$ref": "./examples/PoolEnableAutoscale.json" + } }, "summary": "Enables automatic scaling for a pool.", "description": "You cannot enable automatic scaling on a pool if a resize operation is in progress on the pool. If automatic scaling of the pool is currently disabled, you must specify a valid autoscale formula as part of the request. If automatic scaling of the pool is already enabled, you may specify a new autoscale formula and/or a new evaluation interval. You cannot call this API for the same pool more than once every 30 seconds.", @@ -6817,7 +6901,9 @@ ], "operationId": "Pool_EvaluateAutoScale", "x-ms-examples": { - "Pool evaluate autoscale": { "$ref": "./examples/PoolEvaluateAutoscale.json" } + "Pool evaluate autoscale": { + "$ref": "./examples/PoolEvaluateAutoscale.json" + } }, "summary": "Gets the result of evaluating an automatic scaling formula on the pool.", "description": "This API is primarily for validating an autoscale formula, as it simply returns the result without applying the formula to the pool. The pool must have auto scaling enabled in order to evaluate a formula.", @@ -6937,7 +7023,9 @@ ], "operationId": "Pool_Resize", "x-ms-examples": { - "Pool resize": { "$ref": "./examples/PoolResize.json" } + "Pool resize": { + "$ref": "./examples/PoolResize.json" + } }, "summary": "Changes the number of compute nodes that are assigned to a pool.", "description": "You can only resize a pool when its allocation state is steady. If the pool is already resizing, the request fails with status code 409. When you resize a pool, the pool's allocation state changes from steady to resizing. You cannot resize pools which are configured for automatic scaling. If you try to do this, the Batch service returns an error 409. If you resize a pool downwards, the Batch service chooses which nodes to remove. To remove specific nodes, use the pool remove nodes API instead.", @@ -7096,7 +7184,9 @@ ], "operationId": "Pool_StopResize", "x-ms-examples": { - "Pool stop resize": { "$ref": "./examples/PoolStopResize.json" } + "Pool stop resize": { + "$ref": "./examples/PoolStopResize.json" + } }, "summary": "Stops an ongoing resize operation on the pool.", "description": "This does not restore the pool to its previous state before the resize operation: it only stops any further changes being made, and the pool maintains its current state. After stopping, the pool stabilizes at the number of nodes it was at when the stop operation was done. During the stop operation, the pool allocation state changes first to stopping and then to steady. A resize operation need not be an explicit resize pool request; this API can also be used to halt the initial sizing of the pool when it is created.", @@ -7246,7 +7336,9 @@ ], "operationId": "Pool_UpdateProperties", "x-ms-examples": { - "Pool update": { "$ref": "./examples/PoolUpdate.json" } + "Pool update": { + "$ref": "./examples/PoolUpdate.json" + } }, "summary": "Updates the properties of the specified pool.", "description": "This fully replaces all the updatable properties of the pool. For example, if the pool has a start task associated with it and if start task is not specified with this request, then the Batch service will remove the existing start task.", @@ -7519,7 +7611,9 @@ ], "operationId": "Pool_RemoveNodes", "x-ms-examples": { - "Pool remove nodes": { "$ref": "./examples/PoolRemoveNodes.json" } + "Pool remove nodes": { + "$ref": "./examples/PoolRemoveNodes.json" + } }, "summary": "Removes compute nodes from the specified pool.", "description": "This operation can only run when the allocation state of the pool is steady. When this operation runs, the allocation state changes from steady to resizing.", @@ -7678,8 +7772,12 @@ ], "operationId": "Task_Add", "x-ms-examples": { - "Add a basic task": { "$ref": "./examples/TaskAdd_Basic.json" }, - "Add a task with exit conditions": { "$ref": "./examples/TaskAdd_ExitConditions.json" } + "Add a basic task": { + "$ref": "./examples/TaskAdd_Basic.json" + }, + "Add a task with exit conditions": { + "$ref": "./examples/TaskAdd_ExitConditions.json" + } }, "summary": "Adds a task to the specified job.", "x-ms-request-id": "request-id", @@ -7796,7 +7894,9 @@ }, "operationId": "Task_List", "x-ms-examples": { - "Task list": { "$ref": "./examples/TaskList.json" } + "Task list": { + "$ref": "./examples/TaskList.json" + } }, "summary": "Lists all of the tasks that are associated with the specified job.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -7948,8 +8048,12 @@ ], "operationId": "Task_AddCollection", "x-ms-examples": { - "Add a basic collection of tasks": { "$ref": "./examples/TaskAddCollection_Basic.json" }, - "Add a complex collection of tasks": { "$ref": "./examples/TaskAddCollection_Complex.json" } + "Add a basic collection of tasks": { + "$ref": "./examples/TaskAddCollection_Basic.json" + }, + "Add a complex collection of tasks": { + "$ref": "./examples/TaskAddCollection_Complex.json" + } }, "summary": "Adds a collection of tasks to the specified job.", "description": "Note that each task must have a unique ID. The Batch service may not return the results for each task in the same order the tasks were submitted in this request. If the server times out or the connection is closed during the request, the request may have been partially or fully processed, or not at all. In such cases, the user should re-issue the request. Note that it is up to the user to correctly handle failures when re-issuing a request. For example, you should use the same task IDs during a retry so that if the prior operation succeeded, the retry will not create extra tasks unexpectedly. If the response contains any tasks which failed to add, a client can retry the request. In a retry, it is most efficient to resubmit only tasks that failed to add, and to omit tasks that were successfully added on the first attempt.", @@ -8054,7 +8158,9 @@ ], "operationId": "Task_Delete", "x-ms-examples": { - "Task delete": { "$ref": "./examples/TaskDelete.json" } + "Task delete": { + "$ref": "./examples/TaskDelete.json" + } }, "summary": "Deletes a task from the specified job.", "description": "When a task is deleted, all of the files in its directory on the compute node where it ran are also deleted (regardless of the retention time). For multi-instance tasks, the delete task operation applies synchronously to the primary task; subtasks and their files are then deleted asynchronously in the background.", @@ -8194,7 +8300,9 @@ ], "operationId": "Task_Get", "x-ms-examples": { - "Task get": { "$ref": "./examples/TaskGet.json" } + "Task get": { + "$ref": "./examples/TaskGet.json" + } }, "summary": "Gets information about the specified task.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -8372,7 +8480,9 @@ ], "operationId": "Task_Update", "x-ms-examples": { - "Task update": { "$ref": "./examples/TaskUpdate.json" } + "Task update": { + "$ref": "./examples/TaskUpdate.json" + } }, "description": "Updates the properties of the specified task.", "x-ms-request-id": "request-id", @@ -8537,7 +8647,9 @@ ], "operationId": "Task_ListSubtasks", "x-ms-examples": { - "Task list subtasks": { "$ref": "./examples/TaskListSubtasks.json" } + "Task list subtasks": { + "$ref": "./examples/TaskListSubtasks.json" + } }, "summary": "Lists all of the subtasks that are associated with the specified multi-instance task.", "description": "If the task is not a multi-instance task then this returns an empty collection.", @@ -8661,7 +8773,9 @@ ], "operationId": "Task_Terminate", "x-ms-examples": { - "Task terminate": { "$ref": "./examples/TaskTerminate.json" } + "Task terminate": { + "$ref": "./examples/TaskTerminate.json" + } }, "summary": "Terminates the specified task.", "description": "When the task has been terminated, it moves to the completed state. For multi-instance tasks, the terminate task operation applies synchronously to the primary task; subtasks are then terminated asynchronously in the background.", @@ -8818,7 +8932,9 @@ ], "operationId": "Task_Reactivate", "x-ms-examples": { - "Task reactivate": { "$ref": "./examples/TaskReactivate.json" } + "Task reactivate": { + "$ref": "./examples/TaskReactivate.json" + } }, "summary": "Reactivates a task, allowing it to run again even if its retry count has been exhausted.", "description": "Reactivation makes a task eligible to be retried again up to its maximum retry count. The task's state is changed to active. As the task is no longer in the completed state, any previous exit code or failure information is no longer available after reactivation. Each time a task is reactivated, its retry count is reset to 0. Reactivation will fail for tasks that are not completed or that previously completed successfully (with an exit code of 0). Additionally, it will fail if the job has completed (or is terminating or deleting).", @@ -8975,7 +9091,9 @@ ], "operationId": "ComputeNode_AddUser", "x-ms-examples": { - "Node add user": { "$ref": "./examples/NodeAddUser.json" } + "Node add user": { + "$ref": "./examples/NodeAddUser.json" + } }, "summary": "Adds a user account to the specified compute node.", "description": "You can add a user account to a node only when it is in the idle or running state.", @@ -9099,7 +9217,9 @@ ], "operationId": "ComputeNode_DeleteUser", "x-ms-examples": { - "Node delete user": { "$ref": "./examples/NodeDeleteUser.json" } + "Node delete user": { + "$ref": "./examples/NodeDeleteUser.json" + } }, "summary": "Deletes a user account from the specified compute node.", "description": "You can delete a user account to a node only when it is in the idle or running state.", @@ -9204,7 +9324,9 @@ ], "operationId": "ComputeNode_UpdateUser", "x-ms-examples": { - "Node update user": { "$ref": "./examples/NodeUpdateUser.json" } + "Node update user": { + "$ref": "./examples/NodeUpdateUser.json" + } }, "summary": "Updates the password and expiration time of a user account on the specified compute node.", "description": "This operation replaces of all the updatable properties of the account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user account on a node only when it is in the idle or running state.", @@ -9335,7 +9457,9 @@ ], "operationId": "ComputeNode_Get", "x-ms-examples": { - "Node get": { "$ref": "./examples/NodeGet_Basic.json" } + "Node get": { + "$ref": "./examples/NodeGet_Basic.json" + } }, "summary": "Gets information about the specified compute node.", "x-ms-request-id": "request-id", @@ -9458,7 +9582,9 @@ ], "operationId": "ComputeNode_Reboot", "x-ms-examples": { - "Node reboot": { "$ref": "./examples/NodeReboot.json" } + "Node reboot": { + "$ref": "./examples/NodeReboot.json" + } }, "summary": "Restarts the specified compute node.", "description": "You can restart a node only if it is in an idle or running state.", @@ -9582,7 +9708,9 @@ ], "operationId": "ComputeNode_Reimage", "x-ms-examples": { - "Node reimage": { "$ref": "./examples/NodeReimage.json" } + "Node reimage": { + "$ref": "./examples/NodeReimage.json" + } }, "summary": "Reinstalls the operating system on the specified compute node.", "description": "You can reinstall the operating system on a node only if it is in an idle or running state. This API can be invoked only on pools created with the cloud service configuration property.", @@ -9706,7 +9834,9 @@ ], "operationId": "ComputeNode_DisableScheduling", "x-ms-examples": { - "Node disable scheduling": { "$ref": "./examples/NodeDisableScheduling.json" } + "Node disable scheduling": { + "$ref": "./examples/NodeDisableScheduling.json" + } }, "summary": "Disables task scheduling on the specified compute node.", "description": "You can disable task scheduling on a node only if its current scheduling state is enabled.", @@ -9830,7 +9960,9 @@ ], "operationId": "ComputeNode_EnableScheduling", "x-ms-examples": { - "Node enable scheduling": { "$ref": "./examples/NodeEnableScheduling.json" } + "Node enable scheduling": { + "$ref": "./examples/NodeEnableScheduling.json" + } }, "summary": "Enables task scheduling on the specified compute node.", "description": "You can enable task scheduling on a node only if its current scheduling state is disabled", @@ -9945,7 +10077,9 @@ ], "operationId": "ComputeNode_GetRemoteLoginSettings", "x-ms-examples": { - "Node get remote login settings": { "$ref": "./examples/NodeGetRemoteLoginSettings.json" } + "Node get remote login settings": { + "$ref": "./examples/NodeGetRemoteLoginSettings.json" + } }, "summary": "Gets the settings required for remote login to a compute node.", "description": "Before you can remotely login to a node using the remote login settings, you must create a user account on the node. This API can be invoked only on pools created with the virtual machine configuration property. For pools created with a cloud service configuration, see the GetRemoteDesktop API.", @@ -10173,7 +10307,9 @@ }, "operationId": "ComputeNode_List", "x-ms-examples": { - "Node list": { "$ref": "./examples/NodeList.json" } + "Node list": { + "$ref": "./examples/NodeList.json" + } }, "summary": "Lists the compute nodes in the specified pool.", "x-ms-request-id": "request-id", @@ -10346,7 +10482,15 @@ "title": "The cross data center network egress from the pool during this interval, in GiB." } }, - "required": [ "poolId", "startTime", "endTime", "vmSize", "totalCoreHours", "dataIngressGiB", "dataEgressGiB" ], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours", + "dataIngressGiB", + "dataEgressGiB" + ], "title": "Usage metrics for a pool across an aggregation interval." }, "PoolListUsageMetricsResult": { @@ -10450,7 +10594,11 @@ "title": "The aggregated wall-clock time of the dedicated compute node cores being part of the pool." } }, - "required": [ "startTime", "lastUpdateTime", "dedicatedCoreTime" ], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "title": "Statistics related to pool usage information." }, "ResourceStatistics": { @@ -10521,7 +10669,21 @@ "title": "The total amount of data in GiB of network writes across all nodes in the pool." } }, - "required": [ "startTime", "lastUpdateTime", "avgCPUPercentage", "avgMemoryGiB", "peakMemoryGiB", "avgDiskGiB", "peakDiskGiB", "diskReadIOps", "diskWriteIOps", "diskReadGiB", "diskWriteGiB", "networkReadGiB", "networkWriteGiB" ], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "title": "Statistics related to resource consumption by compute nodes in a pool." }, "PoolStatistics": { @@ -10549,7 +10711,11 @@ "title": "Statistics related to resource consumption by compute nodes in the pool." } }, - "required": [ "url", "startTime", "lastUpdateTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "title": "Contains utilization and resource usage statistics for the lifetime of a pool." }, "JobStatistics": { @@ -10628,7 +10794,22 @@ "description": "The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.) This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job." }, "NameValuePair": { @@ -10723,7 +10904,9 @@ "description": "If this is omitted on a pool, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences and HTTP status code 409. If this is omitted on a task, and no default version is specified for this application, the task fails with a pre-processing error." } }, - "required": [ "applicationId" ], + "required": [ + "applicationId" + ], "title": "A reference to an application package to be deployed to compute nodes." }, "ApplicationSummary": { @@ -10744,7 +10927,11 @@ } } }, - "required": [ "id", "displayName", "versions" ], + "required": [ + "id", + "displayName", + "versions" + ], "title": "Contains information about an application in an Azure Batch account." }, "CertificateAddParameter": { @@ -10779,7 +10966,11 @@ "description": "This is required if the certificate format is pfx. It should be omitted if the certificate format is cer." } }, - "required": [ "thumbprint", "thumbprintAlgorithm", "data" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "title": "A certificate that can be installed on compute nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -10826,7 +11017,10 @@ "description": "The file mode is returned only for files on Linux compute nodes." } }, - "required": [ "lastModified", "contentLength" ], + "required": [ + "lastModified", + "contentLength" + ], "title": "The properties of a file on a compute node." }, "NodeFile": { @@ -10929,7 +11123,10 @@ "description": "This property applies only to files being downloaded to Linux compute nodes. It will be ignored if it is specified for a resourceFile which will be downloaded to a Windows node. If this property is not specified for a Linux node, then a default value of 0770 is applied to the file." } }, - "required": [ "blobSource", "filePath" ], + "required": [ + "blobSource", + "filePath" + ], "title": "A file to be downloaded from Azure blob storage to a compute node." }, "EnvironmentSetting": { @@ -10943,7 +11140,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, "ExitConditions": { @@ -10992,7 +11191,10 @@ } }, "title": "How the Batch service should respond if a task exits with a particular exit code.", - "required": [ "code", "exitOptions" ] + "required": [ + "code", + "exitOptions" + ] }, "ExitCodeRangeMapping": { "properties": { @@ -11012,7 +11214,11 @@ } }, "title": "A range of exit codes and how the Batch service should respond to exit codes within that range.", - "required": [ "start", "end", "exitOptions" ] + "required": [ + "start", + "end", + "exitOptions" + ] }, "ExitOptions": { "properties": { @@ -11129,7 +11335,10 @@ "$ref": "#/definitions/LinuxUserConfiguration" } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user used to execute tasks on an Azure Batch node." }, "TaskConstraints": { @@ -11180,7 +11389,7 @@ "title": "A list of files that the Batch service will download to the compute node before running the command line.", "description": "Files listed under this element are located in the task's working directory." }, - "outputFiles": { + "outputFiles": { "type": "array", "items": { "$ref": "#/definitions/OutputFile" @@ -11233,7 +11442,10 @@ "description": "The default value is false." } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "Specifies details of a Job Manager task.", "description": "The Job Manager task is automatically started when the job is created. The Batch service tries to schedule the Job Manager task before any other tasks in the job. When shrinking a pool, the Batch service tries to preserve compute nodes where Job Manager tasks are running for as long as possible (that is, nodes running 'normal' tasks are removed before nodes running Job Manager tasks). When a Job Manager task fails and needs to be restarted, the system tries to schedule it at the highest priority. If there are no idle nodes available, the system may terminate one of the running tasks in the pool and return it to the queue in order to make room for the Job Manager task to restart. Note that a Job Manager task in one job does not have priority over tasks in other jobs. Across jobs, only job level priorities are observed. For example, if a Job Manager in a priority 0 job needs to be restarted, it will not displace tasks of a priority 1 job." }, @@ -11284,7 +11496,9 @@ "description": "The Job Preparation task is always rerun if a compute node is reimaged, or if the Job Preparation task did not complete (e.g. because the reboot occurred while the task was running). Therefore, you should always write a Job Preparation task to be idempotent and to behave correctly if run multiple times. The default value is true." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Preparation task to run before any tasks of the job on any given compute node.", "description": "You can use Job Preparation to prepare a compute node to run tasks for the job. Activities commonly performed in Job Preparation include: Downloading common resource files used by all the tasks in the job. The Job Preparation task can download these common resource files to the shared location on the compute node. (AZ_BATCH_NODE_ROOT_DIR\\shared), or starting a local service on the compute node so that all tasks of that job can communicate with it. If the Job Preparation task fails (that is, exhausts its retry count before exiting with exit code 0), Batch will not run tasks of this job on the compute node. The node remains ineligible to run tasks of this job until it is reimaged. The node remains active and can be used for other jobs. The Job Preparation task can run multiple times on the same compute node. Therefore, you should write the Job Preparation task to handle re-execution. If the compute node is rebooted, the Job Preparation task is run again on the node before scheduling any other task of the job, if rerunOnNodeRebootAfterSuccess is true or if the Job Preparation task did not previously complete. If the compute node is reimaged, the Job Preparation task is run again before scheduling any task of the job." }, @@ -11332,7 +11546,9 @@ "description": "If omitted, the task runs as a non-administrative user unique to the task." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Release task to run on job completion on any compute node where the job has run.", "description": "The Job Release task runs when the job ends, because of one of the following: The user calls the Terminate Job API, or the Delete Job API while the job is still active, the job's maximum wall clock time constraint is reached, and the job is still active, or the job's Job Manager task completed, and the job is configured to terminate when the Job Manager completes. The Job Release task runs on each compute node where tasks of the job have run and the Job Preparation task ran and completed. If you reimage a compute node after it has run the Job Preparation task, and the job ends without any further tasks of the job running on that compute node (and hence the Job Preparation task does not re-run), then the Job Release task does not run on that node. If a compute node reboots while the Job Release task is still running, the Job Release task runs again when the compute node starts up. The job is not marked as complete until all Job Release tasks have completed. The Job Release task runs in the background. It does not occupy a scheduling slot; that is, it does not count towards the maxTasksPerNode limit specified on the pool." }, @@ -11351,7 +11567,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "StartTask": { @@ -11393,7 +11611,9 @@ "description": "If true and the start task fails on a compute node, the Batch service retries the start task up to its maximum retry count (maxTaskRetryCount). If the task has still not completed successfully after all retries, then the Batch service marks the compute node unusable, and will not schedule tasks to it. This condition can be detected via the node state and failure info details. If false, the Batch service will not wait for the start task to complete. In this case, other tasks can start executing on the compute node while the start task is still running; and even if the start task fails, new tasks will continue to be scheduled on the node. The default is false." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A task which is run when a compute node joins a pool in the Azure Batch service, or when the compute node is rebooted or reimaged." }, "CertificateReference": { @@ -11443,7 +11663,10 @@ "description": "Values are:\n\n starttask - The user account under which the start task is run.\n task - The accounts under which job tasks are run.\n remoteuser - The accounts under which users remotely access the node.\n\n You can specify more than one visibility in this collection. The default is all accounts." } }, - "required": [ "thumbprint", "thumbprintAlgorithm" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool." }, "MetadataItem": { @@ -11457,7 +11680,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -11559,7 +11785,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -11579,7 +11805,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "vmSize" ], + "required": [ + "vmSize" + ], "title": "Specification for creating a new pool." }, "AutoPoolSpecification": { @@ -11612,7 +11840,9 @@ "title": "The pool specification for the auto pool." } }, - "required": [ "poolLifetimeOption" ], + "required": [ + "poolLifetimeOption" + ], "title": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto pool when the job is submitted." }, "PoolInformation": { @@ -11697,7 +11927,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "Specifies details of the jobs to be created on a schedule." }, "RecentJob": { @@ -11809,7 +12041,22 @@ "description": "This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job schedule." }, "CloudJobSchedule": { @@ -11918,7 +12165,11 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "schedule", "jobSpecification" ], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "title": "A job schedule that allows recurring jobs by specifying when to run jobs and a specification used to create each job." }, "CloudJobScheduleListResult": { @@ -11959,7 +12210,9 @@ "title": "A list of additional error details related to the scheduling error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "An error encountered by the Batch service when scheduling a job." }, "JobExecutionInformation": { @@ -11992,7 +12245,9 @@ "description": "This property is set only if the job is in the completed state. If the Batch service terminates the job, it sets the reason as follows: JMComplete - the Job Manager task completed, and killJobOnCompletion was set to true. MaxWallClockTimeExpiry - the job reached its maxWallClockTime constraint. TerminateJobSchedule - the job ran as part of a schedule, and the schedule terminated. AllTasksComplete - the job's onAllTasksComplete attribute is set to terminateJob, and all tasks in the job are complete. TaskFailed - the job's onTaskFailure attribute is set to performExitOptionsJobAction, and a task in the job failed with an exit condition that specified a jobAction of terminateJob. Any other string is a user-defined reason specified in a call to the 'Terminate a job' operation." } }, - "required": [ "startTime" ], + "required": [ + "startTime" + ], "title": "Contains information about the execution of a job in the Azure Batch service." }, "CloudJob": { @@ -12187,7 +12442,10 @@ "title": "Whether tasks in the job can define dependencies on each other. The default is false." } }, - "required": [ "id", "poolInfo" ], + "required": [ + "id", + "poolInfo" + ], "title": "An Azure Batch job to add." }, "CloudJobListResult": { @@ -12228,7 +12486,9 @@ "title": "A list of additional details related to the error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "Information about a task failure." }, "JobPreparationTaskExecutionInformation": { @@ -12295,7 +12555,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "retryCount", "state" ], + "required": [ + "startTime", + "retryCount", + "state" + ], "title": "Contains information about the execution of a Job Preparation task on a compute node." }, "JobReleaseTaskExecutionInformation": { @@ -12350,7 +12614,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "state" ], + "required": [ + "startTime", + "state" + ], "title": "Contains information about the execution of a Job Release task on a compute node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -12436,7 +12703,14 @@ } } }, - "required": ["active", "running", "completed", "succeeded", "failed", "validationStatus"], + "required": [ + "active", + "running", + "completed", + "succeeded", + "failed", + "validationStatus" + ], "title": "The task counts for a job." }, "AutoScaleRunError": { @@ -12476,7 +12750,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": [ "timestamp" ], + "required": [ + "timestamp" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "ResizeError": { @@ -12517,7 +12793,9 @@ "description": "This may differ from targetOSVersion if the pool state is Upgrading. In this case some virtual machines may be on the targetOSVersion and some may be on the currentOSVersion during the upgrade process. Once all virtual machines have upgraded, currentOSVersion is updated to be the same as targetOSVersion." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "ImageReference": { @@ -12543,7 +12821,11 @@ "description": "A value of 'latest' can be specified to select the latest version of an image. If omitted, the default is 'latest'." } }, - "required": [ "publisher", "offer", "sku" ], + "required": [ + "publisher", + "offer", + "sku" + ], "title": "A reference to an Azure Virtual Machines Marketplace image. To get the list of all imageReferences verified by Azure Batch, see the 'List supported node agent SKUs' operation." }, "OSDisk": { @@ -12571,7 +12853,9 @@ } } }, - "required": [ "imageUris" ], + "required": [ + "imageUris" + ], "title": "A reference to an OS disk image." }, "WindowsConfiguration": { @@ -12607,7 +12891,9 @@ "description": "This property must not be specified if the imageReference or osDisk property specifies a Linux OS image." } }, - "required": [ "nodeAgentSKUId" ], + "required": [ + "nodeAgentSKUId" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "NetworkConfiguration": { @@ -12622,9 +12908,9 @@ } }, "endpointConfiguration": { - "$ref": "#/definitions/PoolEndpointConfiguration", - "title": "The configuration for endpoints on compute nodes in the Batch pool.", - "description": "Pool endpoint configuration is only supported on pools with the virtualMachineConfiguration property." + "$ref": "#/definitions/PoolEndpointConfiguration", + "title": "The configuration for endpoints on compute nodes in the Batch pool.", + "description": "Pool endpoint configuration is only supported on pools with the virtualMachineConfiguration property." } }, "description": "The network configuration for a pool." @@ -12802,7 +13088,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -12930,7 +13216,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -12960,7 +13246,10 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "vmSize" ], + "required": [ + "id", + "vmSize" + ], "title": "A pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -13003,7 +13292,9 @@ "description": "You can pass the affinityId of a compute node to indicate that this task needs to run on that compute node. Note that this is just a soft affinity. If the target node is busy or unavailable at the time the task is scheduled, then the task will be scheduled elsewhere." } }, - "required": [ "affinityId" ], + "required": [ + "affinityId" + ], "title": "A locality hint that can be used by the Batch service to select a compute node on which to start a task." }, "TaskExecutionInformation": { @@ -13061,7 +13352,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "requeueCount", "retryCount" ], + "required": [ + "requeueCount", + "retryCount" + ], "title": "Information about the execution of a task." }, "ComputeNodeInformation": { @@ -13114,7 +13408,9 @@ "description": "The difference between common resource files and task resource files is that common resource files are downloaded for all subtasks including the primary, whereas task resource files are downloaded only for the primary. Also note that these resource files are not downloaded to the task working directory, but instead are downloaded to the task root directory (one directory above the working directory)." } }, - "required": [ "numberOfInstances" ], + "required": [ + "numberOfInstances" + ], "title": "Settings which specify how to run a multi-instance task.", "description": "Multi-instance tasks are commonly used to support MPI tasks." }, @@ -13176,7 +13472,19 @@ "title": "The total wait time of the task. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "title": "Resource usage statistics for a task." }, "TaskDependencies": { @@ -13214,7 +13522,10 @@ }, "title": "A range of task IDs that a task can depend on. All tasks with IDs in the range must complete successfully before the dependent task can be scheduled.", "description": "The start and end of the range are inclusive. For example, if a range has start 9 and end 12, then it represents tasks '9', '10', '11' and '12'.", - "required": [ "start", "end" ] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -13430,7 +13741,10 @@ "$ref": "#/definitions/AuthenticationTokenSettings" } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "An Azure Batch task to add." }, "TaskAddCollectionParameter": { @@ -13445,7 +13759,9 @@ "description": "The total serialized size of this collection must be less than 4MB. If it is greater than 4MB (for example if each task has 100's of resource files or environment variables), the request will fail with code 'RequestBodyTooLarge' and should be retried again with fewer tasks." } }, - "required": [ "value" ], + "required": [ + "value" + ], "title": "A collection of Azure Batch tasks to add." }, "TaskAddResult": { @@ -13459,7 +13775,9 @@ "clientError", "serverError" ], - "x-ms-enum": { "name": "TaskAddStatus" } + "x-ms-enum": { + "name": "TaskAddStatus" + } }, "taskId": { "type": "string", @@ -13484,7 +13802,10 @@ "title": "The error encountered while attempting to add the task." } }, - "required": [ "status", "taskId" ], + "required": [ + "status", + "taskId" + ], "title": "Result for a single task added as part of an add task collection operation." }, "TaskAddCollectionResult": { @@ -13616,7 +13937,9 @@ "title": "Information about the execution of the task." } }, - "required": [ "taskState" ], + "required": [ + "taskState" + ], "title": "Information about a task running on a compute node." }, "StartTaskInformation": { @@ -13675,7 +13998,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "state", "startTime", "retryCount" ], + "required": [ + "state", + "startTime", + "retryCount" + ], "title": "Information about a start task running on a compute node." }, "ComputeNodeError": { @@ -13845,7 +14172,9 @@ "description": "The maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400." } }, - "required": [ "inboundNATPools" ], + "required": [ + "inboundNATPools" + ], "title": "The endpoint configuration for a pool." }, "InboundNATPool": { @@ -13894,7 +14223,13 @@ } } }, - "required": [ "name", "protocol", "backendPort", "frontendPortRangeStart", "frontendPortRangeEnd" ], + "required": [ + "name", + "protocol", + "backendPort", + "frontendPortRangeStart", + "frontendPortRangeEnd" + ], "title": "A inbound NAT pool that can be used to address specific ports on compute nodes in a Batch pool externally." }, "NetworkSecurityGroupRule": { @@ -13923,7 +14258,11 @@ "description": "Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400." } }, - "required": [ "priority", "access", "sourceAddressPrefix" ], + "required": [ + "priority", + "access", + "sourceAddressPrefix" + ], "title": "A network security group rule to apply to an inbound endpoint." }, "ComputeNodeEndpointConfiguration": { @@ -13936,7 +14275,9 @@ "title": "The list of inbound endpoints that are accessible on the compute node." } }, - "required": [ "inboundEndpoints" ], + "required": [ + "inboundEndpoints" + ], "title": "The endpoint configuration for the compute node." }, "InboundEndpoint": { @@ -13976,7 +14317,14 @@ "title": "The backend port number of the endpoint." } }, - "required": [ "name", "protocol", "publicIPAddress", "publicFQDN", "frontendPort", "backendPort" ], + "required": [ + "name", + "protocol", + "publicIPAddress", + "publicFQDN", + "frontendPort", + "backendPort" + ], "title": "An inbound endpoint on a compute node." }, "ComputeNodeListResult": { @@ -14023,7 +14371,9 @@ "description": "The public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux nodes. If this is specified for a Windows node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request)." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "A user account for RDP or SSH access on a compute node." }, "ComputeNodeGetRemoteLoginSettingsResult": { @@ -14038,7 +14388,10 @@ "title": "The port used for remote login to the compute node." } }, - "required": [ "remoteLoginIPAddress", "remoteLoginPort" ], + "required": [ + "remoteLoginIPAddress", + "remoteLoginPort" + ], "title": "The remote login settings for a compute node." }, "JobSchedulePatchParameter": { @@ -14085,7 +14438,10 @@ "description": "If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": [ "schedule", "jobSpecification" ], + "required": [ + "schedule", + "jobSpecification" + ], "title": "The set of changes to be made to a job schedule." }, "JobDisableParameter": { @@ -14105,7 +14461,9 @@ } } }, - "required": [ "disableTasks" ], + "required": [ + "disableTasks" + ], "title": "Options when disabling a job." }, "JobTerminateParameter": { @@ -14183,7 +14541,9 @@ "$ref": "#/definitions/OnAllTasksComplete" } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "The set of changes to be made to a job." }, "PoolEnableAutoScaleParameter": { @@ -14210,7 +14570,9 @@ "description": "The formula is validated and its results calculated, but it is not applied to the pool. To apply the formula to the pool, 'Enable automatic scaling on a pool'. For more information about specifying this formula, see Automatically scale compute nodes in an Azure Batch pool (https://azure.microsoft.com/en-us/documentation/articles/batch-automatic-scaling)." } }, - "required": [ "autoScaleFormula" ], + "required": [ + "autoScaleFormula" + ], "title": "Options for evaluating an automatic scaling formula on a pool." }, "PoolResizeParameter": { @@ -14271,7 +14633,11 @@ "description": "This list replaces any existing metadata configured on the pool. If omitted, or if you specify an empty collection, any existing metadata is removed from the pool." } }, - "required": [ "certificateReferences", "metadata", "applicationPackageReferences" ], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "title": "The set of changes to be made to a pool." }, "PoolUpgradeOSParameter": { @@ -14281,7 +14647,9 @@ "title": "The Azure Guest OS version to be installed on the virtual machines in the pool." } }, - "required": [ "targetOSVersion" ], + "required": [ + "targetOSVersion" + ], "title": "Options for upgrading the operating system of compute nodes in a pool." }, "PoolPatchParameter": { @@ -14430,7 +14798,9 @@ "$ref": "#/definitions/ComputeNodeDeallocationOption" } }, - "required": [ "nodeList" ], + "required": [ + "nodeList" + ], "title": "Options for removing compute nodes from a pool." }, "OutputFile": { @@ -14449,7 +14819,11 @@ "$ref": "#/definitions/OutputFileUploadOptions" } }, - "required": [ "filePattern", "destination", "uploadOptions" ], + "required": [ + "filePattern", + "destination", + "uploadOptions" + ], "title": "A specification for uploading files from an Azure Batch node to another location after the Batch service has finished executing the task process." }, "OutputFileDestination": { @@ -14474,7 +14848,9 @@ "description": "The URL must include a Shared Access Signature (SAS) granting write permissions to the container." } }, - "required": [ "containerUrl" ], + "required": [ + "containerUrl" + ], "title": "Specifies a file upload destination within an Azure blob storage container." }, "OutputFileUploadOptions": { @@ -14485,7 +14861,9 @@ "$ref": "#/definitions/OutputFileUploadCondition" } }, - "required": [ "uploadCondition" ], + "required": [ + "uploadCondition" + ], "title": "Details about an output file upload operation, including under what conditions to perform the upload." }, "ErrorMessage": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/AccountListNodeAgentSkus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/AccountListNodeAgentSkus.json index 17cbbe0bacf9..83a5f89a721c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/AccountListNodeAgentSkus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/AccountListNodeAgentSkus.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateAdd.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateAdd.json index 683a76407c7d..7d5aa07ff917 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateAdd.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateAdd.json @@ -4,11 +4,11 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "certificate": { - "thumbprintAlgorithm":"sha1", - "thumbprint":"0123456789abcdef0123456789abcdef01234567", - "data":"#####...", - "certificateFormat":"pfx", - "password":"certpassword" + "thumbprintAlgorithm": "sha1", + "thumbprint": "0123456789abcdef0123456789abcdef01234567", + "data": "#####...", + "certificateFormat": "pfx", + "password": "certpassword" } }, "responses": { @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateCancelDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateCancelDelete.json index 9ed7d05abcda..be743fb2cf22 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateCancelDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateCancelDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateDelete.json index 756f1bb432be..46ca139fa8b7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateGet.json index 2e33874c0e89..ffc5f1c90785 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateList.json index 71e3773922c6..18fe3101524f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/CertificateList.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileDeleteFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileDeleteFromNode.json index 1a710342cb40..89c6345c39d6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileDeleteFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileDeleteFromNode.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileDeleteFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileDeleteFromTask.json index fe4baac39883..cef625002e8e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileDeleteFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileDeleteFromTask.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileGetPropertiesFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileGetPropertiesFromNode.json index 43f34562136e..16d0112682bd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileGetPropertiesFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileGetPropertiesFromNode.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileGetPropertiesFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileGetPropertiesFromTask.json index 994a5123fa7b..c2dadf3db636 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileGetPropertiesFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileGetPropertiesFromTask.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileListFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileListFromNode.json index 34c99a065c8a..9a9a9d0b1bb6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileListFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileListFromNode.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileListFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileListFromTask.json index b17abfd7614d..77a8a0857d58 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileListFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/FileListFromTask.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobAdd_Basic.json index 1a809900a053..1fdbc95cf020 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobAdd_Basic.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobAdd_Complex.json index 50a0193bb865..d072d2b9168a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobAdd_Complex.json @@ -35,7 +35,7 @@ "retentionTime": "PT1H" }, "killJobOnCompletion": false, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -76,7 +76,7 @@ "value": "myvalue" } ], - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -118,4 +118,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobDisable.json index 12fcdd69de68..4442d8d08625 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobDisable.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobEnable.json index ed8f0408bda1..a4e3dd9a5dcb 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGet.json index 1c095c75885f..40cdbab8ba8f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGet.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGetLifetimeStatistics.json index 9cd74795291a..ecbe995d249f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimejobstats", + "url": "https://account.region.batch.core.windows.net/lifetimejobstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "userCPUTime": "PT0S", @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGetTaskCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGetTaskCounts.json index cb3797c8ba04..1586afad376e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGetTaskCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobGetTaskCounts.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobList.json index 48664ea49eb5..f5710efe8324 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobList.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobListPreparationAndReleaseTaskStatus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobListPreparationAndReleaseTaskStatus.json index eec1fc016da8..f9a778b3c294 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobListPreparationAndReleaseTaskStatus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobListPreparationAndReleaseTaskStatus.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobPatch.json index 56db71cac040..fec76a09deeb 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobPatch.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobPatchParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleAdd_Basic.json index 678dfbcc423b..03362dd0b4f1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleAdd_Basic.json @@ -6,7 +6,7 @@ "cloudJobSchedule": { "id": "jobScheduleId", "schedule": { - "recurrenceInterval":"PT5M" + "recurrenceInterval": "PT5M" }, "jobSpecification": { "poolInfo": { @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleAdd_Complex.json index e206235ee1ef..c8b1bc97f9a4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleAdd_Complex.json @@ -126,4 +126,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleDelete.json index 7f7d21df96f8..52fab8751454 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleDisable.json index 414bb95cfa5a..c8f79ac1b45e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleDisable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleEnable.json index 414bb95cfa5a..c8f79ac1b45e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleGet.json index fa98aac1edea..b26c8b434de8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleList.json index 8d5d6ff09998..3c9f51e06b9f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleList.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobSchedulePatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobSchedulePatch.json index fe6bc4b89ebc..8e232a37faa4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobSchedulePatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobSchedulePatch.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleTerminate.json index 7f7d21df96f8..52fab8751454 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleTerminate.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleUpdate.json index 82f077c04065..b65f811c3a5c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobScheduleUpdate.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobTerminate.json index 74ea5cd90acb..ad6ece79affb 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobTerminate.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobUpdate.json index 7cb21a300aa6..1f3fa0a7db28 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/JobUpdate.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobUpdateParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeAddUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeAddUser.json index 8860918eef6d..7186d56e1ae6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeAddUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeAddUser.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeDeleteUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeDeleteUser.json index 822d3ebbc078..a2a007258f5f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeDeleteUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeDeleteUser.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeDisableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeDisableScheduling.json index 346ba2d1ab96..13645eb72987 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeDisableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeDisableScheduling.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeEnableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeEnableScheduling.json index cef34a36e8a5..773256183f72 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeEnableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeEnableScheduling.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeGetRemoteLoginSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeGetRemoteLoginSettings.json index 9079188f8040..f254ed73d1fa 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeGetRemoteLoginSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeGetRemoteLoginSettings.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeGet_Basic.json index 6b1b3314ccbc..a9582d3adbbc 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeGet_Basic.json @@ -25,7 +25,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeList.json index 95de94bfcbcf..d93ac50ccb63 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeList.json @@ -26,7 +26,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -60,7 +60,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -94,7 +94,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -115,4 +115,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeReboot.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeReboot.json index 0374915155aa..c3938018ad64 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeReboot.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeReboot.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeReimage.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeReimage.json index f18aa559eb07..e027289cef94 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeReimage.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeReimage.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeUpdateUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeUpdateUser.json index b07740b17ceb..5bfe0ff417d0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeUpdateUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/NodeUpdateUser.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolAdd_CloudServiceConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolAdd_CloudServiceConfiguration.json index ee46f121442b..bcfb5c9e745f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolAdd_CloudServiceConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolAdd_CloudServiceConfiguration.json @@ -9,19 +9,21 @@ "cloudServiceConfiguration": { "osFamily": "4" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -31,4 +33,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolAdd_VirtualMachineConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolAdd_VirtualMachineConfiguration.json index bd64ee9eccbb..1829efc16f19 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolAdd_VirtualMachineConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolAdd_VirtualMachineConfiguration.json @@ -14,19 +14,21 @@ }, "nodeAgentSKUId": "batch.node.ubuntu 16.04" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -36,4 +38,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolDelete.json index 5b7ec5a827c8..1c9b94412d6b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolEnableAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolEnableAutoscale.json index 17bc7458394a..434dee72fc0c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolEnableAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolEnableAutoscale.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolEvaluateAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolEvaluateAutoscale.json index 15cc3e56758d..624d04967a10 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolEvaluateAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolEvaluateAutoscale.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolGetLifetimeStatistics.json index c492fdb39795..baa327e21d54 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimepoolstats", + "url": "https://account.region.batch.core.windows.net/lifetimepoolstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "usageStats": { @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolGet_Basic.json index c8f16fe7a07e..87d536c17c28 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolGet_Basic.json @@ -27,7 +27,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "/bin/bash -c 'echo start task'", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolListUsageMetrics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolListUsageMetrics.json index 5bdae4038083..085ad02dc2cc 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolListUsageMetrics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolListUsageMetrics.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolList_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolList_Basic.json index dd699e25d75d..d11374eb98d0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolList_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolList_Basic.json @@ -28,7 +28,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -51,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolRemoveNodes.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolRemoveNodes.json index ce9f843dd546..f66c6a837211 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolRemoveNodes.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolRemoveNodes.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolResize.json index ebb2d9d3f829..55fb61af5b2b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolResize.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolStopResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolStopResize.json index 5b7ec5a827c8..1c9b94412d6b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolStopResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolStopResize.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolUpdate.json index 0906621460eb..3e1c70926221 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/PoolUpdate.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAddCollection_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAddCollection_Basic.json index 7817ab7b563a..8dcd93f60666 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAddCollection_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAddCollection_Basic.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAddCollection_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAddCollection_Complex.json index ea5767ef69cd..e7467d89566f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAddCollection_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAddCollection_Complex.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAdd_Basic.json index 59b02dbb93ef..572ad5ae03ba 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAdd_Basic.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAdd_ExitConditions.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAdd_ExitConditions.json index 66c970f7e8fb..0f0321696936 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAdd_ExitConditions.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskAdd_ExitConditions.json @@ -18,7 +18,7 @@ } ] }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -31,4 +31,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskDelete.json index 24a217b1d6a4..58d9059022e9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskGet.json index 22d9bcc6d58c..ee1f008bb3e4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskGet.json @@ -17,7 +17,7 @@ "state": "active", "stateTransitionTime": "2016-09-06T06:59:15.1161429Z", "commandLine": "cmd /c hostname", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskList.json index 4f7a357c4b21..5ed3e977582c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskList.json @@ -18,7 +18,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.4733476Z", "commandLine": "cmd /c echo task1", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -43,7 +43,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.6736345Z", "commandLine": "cmd /c echo task2", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonAdmin" @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskListSubtasks.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskListSubtasks.json index 042770246117..8290081fbc48 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskListSubtasks.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskListSubtasks.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskReactivate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskReactivate.json index e9c2e1cc4466..b8f90a6e62e8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskReactivate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskReactivate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskTerminate.json index e9c2e1cc4466..b8f90a6e62e8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskTerminate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskUpdate.json index 7c2ead1a2d27..ca2196dd7ce7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-06-01.5.1/examples/TaskUpdate.json @@ -7,9 +7,9 @@ "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "taskUpdateParameter": { "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":3, - "retentionTime":"PT1H" + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": 3, + "retentionTime": "PT1H" } } }, @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/BatchService.json index f8e8f0bdbaf6..71519910b415 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/BatchService.json @@ -248,7 +248,9 @@ }, "operationId": "Pool_ListUsageMetrics", "x-ms-examples": { - "Pool list usage metrics": { "$ref": "./examples/PoolListUsageMetrics.json" } + "Pool list usage metrics": { + "$ref": "./examples/PoolListUsageMetrics.json" + } }, "summary": "Lists the usage metrics, aggregated by pool across individual time intervals, for the specified account.", "description": "If you do not specify a $filter clause including a poolId, the response includes all pools that existed in the account in the time range of the returned aggregation intervals. If you do not specify a $filter clause including a startTime or endTime these filters default to the start and end times of the last aggregation interval currently available; that is, only the last aggregation interval is returned.", @@ -400,7 +402,9 @@ }, "operationId": "Account_ListNodeAgentSkus", "x-ms-examples": { - "Account list node agent skus": { "$ref": "./examples/AccountListNodeAgentSkus.json" } + "Account list node agent skus": { + "$ref": "./examples/AccountListNodeAgentSkus.json" + } }, "summary": "Lists all node agent SKUs supported by the Azure Batch service.", "x-ms-request-id": "request-id", @@ -524,7 +528,9 @@ ], "operationId": "Pool_GetAllLifetimeStatistics", "x-ms-examples": { - "Pool get lifetime statistics": { "$ref": "./examples/PoolGetLifetimeStatistics.json" } + "Pool get lifetime statistics": { + "$ref": "./examples/PoolGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the pools in the specified account.", "description": "Statistics are aggregated across all pools that have ever existed in the account, from account creation to the last update time of the statistics.", @@ -624,7 +630,9 @@ ], "operationId": "Job_GetAllLifetimeStatistics", "x-ms-examples": { - "Job get lifetime statistics": { "$ref": "./examples/JobGetLifetimeStatistics.json" } + "Job get lifetime statistics": { + "$ref": "./examples/JobGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the jobs in the specified account.", "description": "Statistics are aggregated across all jobs that have ever existed in the account, from account creation to the last update time of the statistics.", @@ -724,7 +732,9 @@ ], "operationId": "Certificate_Add", "x-ms-examples": { - "Certificate add": { "$ref": "./examples/CertificateAdd.json" } + "Certificate add": { + "$ref": "./examples/CertificateAdd.json" + } }, "summary": "Adds a certificate to the specified account.", "x-ms-request-id": "request-id", @@ -834,7 +844,9 @@ }, "operationId": "Certificate_List", "x-ms-examples": { - "Certificate list": { "$ref": "./examples/CertificateList.json" } + "Certificate list": { + "$ref": "./examples/CertificateList.json" + } }, "summary": "Lists all of the certificates that have been added to the specified account.", "x-ms-request-id": "request-id", @@ -968,7 +980,9 @@ ], "operationId": "Certificate_CancelDeletion", "x-ms-examples": { - "Certificate cancel delete": { "$ref": "./examples/CertificateCancelDelete.json" } + "Certificate cancel delete": { + "$ref": "./examples/CertificateCancelDelete.json" + } }, "summary": "Cancels a failed deletion of a certificate from the specified account.", "description": "If you try to delete a certificate that is being used by a pool or compute node, the status of the certificate changes to deleteFailed. If you decide that you want to continue using the certificate, you can use this operation to set the status of the certificate back to active. If you intend to delete the certificate, you do not need to run this operation after the deletion failed. You must make sure that the certificate is not being used by any resources, and then you can try again to delete the certificate.", @@ -1083,7 +1097,9 @@ ], "operationId": "Certificate_Delete", "x-ms-examples": { - "Certificate delete": { "$ref": "./examples/CertificateDelete.json" } + "Certificate delete": { + "$ref": "./examples/CertificateDelete.json" + } }, "summary": "Deletes a certificate from the specified account.", "description": "You cannot delete a certificate if a resource (pool or compute node) is using it. Before you can delete a certificate, you must therefore make sure that the certificate is not associated with any existing pools, the certificate is not installed on any compute nodes (even if you remove a certificate from a pool, it is not removed from existing compute nodes in that pool until they restart), and no running tasks depend on the certificate. If you try to delete a certificate that is in use, the deletion fails. The certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the certificate.", @@ -1192,7 +1208,9 @@ ], "operationId": "Certificate_Get", "x-ms-examples": { - "Certificate get": { "$ref": "./examples/CertificateGet.json" } + "Certificate get": { + "$ref": "./examples/CertificateGet.json" + } }, "description": "Gets information about the specified certificate.", "x-ms-request-id": "request-id", @@ -1315,7 +1333,9 @@ ], "operationId": "File_DeleteFromTask", "x-ms-examples": { - "File delete from task": { "$ref": "./examples/FileDeleteFromTask.json" } + "File delete from task": { + "$ref": "./examples/FileDeleteFromTask.json" + } }, "summary": "Deletes the specified task file from the compute node where the task ran.", "x-ms-request-id": "request-id", @@ -1599,7 +1619,9 @@ ], "operationId": "File_GetPropertiesFromTask", "x-ms-examples": { - "File get properties from task": { "$ref": "./examples/FileGetPropertiesFromTask.json" } + "File get properties from task": { + "$ref": "./examples/FileGetPropertiesFromTask.json" + } }, "description": "Gets the properties of the specified task file.", "x-ms-request-id": "request-id", @@ -1764,7 +1786,9 @@ ], "operationId": "File_DeleteFromComputeNode", "x-ms-examples": { - "File delete from node": { "$ref": "./examples/FileDeleteFromNode.json" } + "File delete from node": { + "$ref": "./examples/FileDeleteFromNode.json" + } }, "summary": "Deletes the specified file from the compute node.", "x-ms-request-id": "request-id", @@ -2048,7 +2072,9 @@ ], "operationId": "File_GetPropertiesFromComputeNode", "x-ms-examples": { - "File get properties from node": { "$ref": "./examples/FileGetPropertiesFromNode.json" } + "File get properties from node": { + "$ref": "./examples/FileGetPropertiesFromNode.json" + } }, "description": "Gets the properties of the specified compute node file.", "x-ms-request-id": "request-id", @@ -2216,7 +2242,9 @@ }, "operationId": "File_ListFromTask", "x-ms-examples": { - "File list from task": { "$ref": "./examples/FileListFromTask.json" } + "File list from task": { + "$ref": "./examples/FileListFromTask.json" + } }, "summary": "Lists the files in a task's directory on its compute node.", "x-ms-request-id": "request-id", @@ -2364,7 +2392,9 @@ }, "operationId": "File_ListFromComputeNode", "x-ms-examples": { - "File list from node": { "$ref": "./examples/FileListFromNode.json" } + "File list from node": { + "$ref": "./examples/FileListFromNode.json" + } }, "summary": "Lists all of the files in task directories on the specified compute node.", "x-ms-request-id": "request-id", @@ -2652,7 +2682,9 @@ ], "operationId": "JobSchedule_Delete", "x-ms-examples": { - "JobSchedule delete": { "$ref": "./examples/JobScheduleDelete.json" } + "JobSchedule delete": { + "$ref": "./examples/JobScheduleDelete.json" + } }, "summary": "Deletes a job schedule from the specified account.", "description": "When you delete a job schedule, this also deletes all jobs and tasks under that schedule. When tasks are deleted, all the files in their working directories on the compute nodes are also deleted (the retention period is ignored). The job schedule statistics are no longer accessible once the job schedule is deleted, though they are still counted towards account lifetime statistics.", @@ -2785,7 +2817,9 @@ ], "operationId": "JobSchedule_Get", "x-ms-examples": { - "JobSchedule get": { "$ref": "./examples/JobScheduleGet.json" } + "JobSchedule get": { + "$ref": "./examples/JobScheduleGet.json" + } }, "description": "Gets information about the specified job schedule.", "x-ms-request-id": "request-id", @@ -2951,7 +2985,9 @@ ], "operationId": "JobSchedule_Patch", "x-ms-examples": { - "JobSchedule patch": { "$ref": "./examples/JobSchedulePatch.json" } + "JobSchedule patch": { + "$ref": "./examples/JobSchedulePatch.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This replaces only the job schedule properties specified in the request. For example, if the schedule property is not specified with this request, then the Batch service will keep the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3108,7 +3144,9 @@ ], "operationId": "JobSchedule_Update", "x-ms-examples": { - "JobSchedule update": { "$ref": "./examples/JobScheduleUpdate.json" } + "JobSchedule update": { + "$ref": "./examples/JobScheduleUpdate.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This fully replaces all the updatable properties of the job schedule. For example, if the schedule property is not specified with this request, then the Batch service will remove the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3267,7 +3305,9 @@ ], "operationId": "JobSchedule_Disable", "x-ms-examples": { - "JobSchedule disable": { "$ref": "./examples/JobScheduleDisable.json" } + "JobSchedule disable": { + "$ref": "./examples/JobScheduleDisable.json" + } }, "summary": "Disables a job schedule.", "description": "No new jobs will be created until the job schedule is enabled again.", @@ -3417,7 +3457,9 @@ ], "operationId": "JobSchedule_Enable", "x-ms-examples": { - "JobSchedule enable": { "$ref": "./examples/JobScheduleEnable.json" } + "JobSchedule enable": { + "$ref": "./examples/JobScheduleEnable.json" + } }, "summary": "Enables a job schedule.", "x-ms-request-id": "request-id", @@ -3566,7 +3608,9 @@ ], "operationId": "JobSchedule_Terminate", "x-ms-examples": { - "JobSchedule terminate": { "$ref": "./examples/JobScheduleTerminate.json" } + "JobSchedule terminate": { + "$ref": "./examples/JobScheduleTerminate.json" + } }, "summary": "Terminates a job schedule.", "x-ms-request-id": "request-id", @@ -3715,8 +3759,12 @@ ], "operationId": "JobSchedule_Add", "x-ms-examples": { - "Add a basic JobSchedule": { "$ref": "./examples/JobScheduleAdd_Basic.json" }, - "Add a complex JobScheduleAdd": { "$ref": "./examples/JobScheduleAdd_Complex.json" } + "Add a basic JobSchedule": { + "$ref": "./examples/JobScheduleAdd_Basic.json" + }, + "Add a complex JobScheduleAdd": { + "$ref": "./examples/JobScheduleAdd_Complex.json" + } }, "summary": "Adds a job schedule to the specified account.", "x-ms-request-id": "request-id", @@ -3826,7 +3874,9 @@ }, "operationId": "JobSchedule_List", "x-ms-examples": { - "JobSchedule list": { "$ref": "./examples/JobScheduleList.json" } + "JobSchedule list": { + "$ref": "./examples/JobScheduleList.json" + } }, "summary": "Lists all of the job schedules in the specified account.", "x-ms-request-id": "request-id", @@ -4100,7 +4150,9 @@ ], "operationId": "Job_Get", "x-ms-examples": { - "Job get": { "$ref": "./examples/JobGet.json" } + "Job get": { + "$ref": "./examples/JobGet.json" + } }, "summary": "Gets information about the specified job.", "x-ms-request-id": "request-id", @@ -4266,7 +4318,9 @@ ], "operationId": "Job_Patch", "x-ms-examples": { - "Job patch": { "$ref": "./examples/JobPatch.json" } + "Job patch": { + "$ref": "./examples/JobPatch.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This replaces only the job properties specified in the request. For example, if the job has constraints, and a request does not specify the constraints element, then the job keeps the existing constraints.", @@ -4423,7 +4477,9 @@ ], "operationId": "Job_Update", "x-ms-examples": { - "Job update": { "$ref": "./examples/JobUpdate.json" } + "Job update": { + "$ref": "./examples/JobUpdate.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This fully replaces all the updatable properties of the job. For example, if the job has constraints associated with it and if constraints is not specified with this request, then the Batch service will remove the existing constraints.", @@ -4582,7 +4638,9 @@ ], "operationId": "Job_Disable", "x-ms-examples": { - "Job disable": { "$ref": "./examples/JobDisable.json" } + "Job disable": { + "$ref": "./examples/JobDisable.json" + } }, "summary": "Disables the specified job, preventing new tasks from running.", "description": "The Batch Service immediately moves the job to the disabling state. Batch then uses the disableTasks parameter to determine what to do with the currently running tasks of the job. The job remains in the disabling state until the disable operation is completed and all tasks have been dealt with according to the disableTasks option; the job then moves to the disabled state. No new tasks are started under the job until it moves back to active state. If you try to disable a job that is in any state other than active, disabling, or disabled, the request fails with status code 409.", @@ -4741,7 +4799,9 @@ ], "operationId": "Job_Enable", "x-ms-examples": { - "Job enable": { "$ref": "./examples/JobEnable.json" } + "Job enable": { + "$ref": "./examples/JobEnable.json" + } }, "summary": "Enables the specified job, allowing new tasks to run.", "description": "When you call this API, the Batch service sets a disabled job to the enabling state. After the this operation is completed, the job moves to the active state, and scheduling of new tasks under the job resumes. The Batch service does not allow a task to remain in the active state for more than 7 days. Therefore, if you enable a job containing active tasks which were added more than 7 days ago, those tasks will not run.", @@ -4891,7 +4951,9 @@ ], "operationId": "Job_Terminate", "x-ms-examples": { - "Job terminate": { "$ref": "./examples/JobTerminate.json" } + "Job terminate": { + "$ref": "./examples/JobTerminate.json" + } }, "summary": "Terminates the specified job, marking it as completed.", "description": "When a Terminate Job request is received, the Batch service sets the job to the terminating state. The Batch service then terminates any active or running tasks associated with the job, and runs any required Job Release tasks. The job then moves into the completed state.", @@ -5050,8 +5112,12 @@ ], "operationId": "Job_Add", "x-ms-examples": { - "Add a basic job": { "$ref": "./examples/JobAdd_Basic.json" }, - "Add a complex job": { "$ref": "./examples/JobAdd_Complex.json" } + "Add a basic job": { + "$ref": "./examples/JobAdd_Basic.json" + }, + "Add a complex job": { + "$ref": "./examples/JobAdd_Complex.json" + } }, "summary": "Adds a job to the specified account.", "description": "The Batch service supports two ways to control the work done as part of a job. In the first approach, the user specifies a Job Manager task. The Batch service launches this task when it is ready to start the job. The Job Manager task controls all other tasks that run under this job, by using the Task APIs. In the second approach, the user directly controls the execution of tasks under an active job, by using the Task APIs. Also note: when naming jobs, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5162,7 +5228,9 @@ }, "operationId": "Job_List", "x-ms-examples": { - "Job list": { "$ref": "./examples/JobList.json" } + "Job list": { + "$ref": "./examples/JobList.json" + } }, "summary": "Lists all of the jobs in the specified account.", "x-ms-request-id": "request-id", @@ -5460,7 +5528,9 @@ }, "operationId": "Job_ListPreparationAndReleaseTaskStatus", "x-ms-examples": { - "Job list preparation and release task status": { "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" } + "Job list preparation and release task status": { + "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" + } }, "summary": "Lists the execution status of the Job Preparation and Job Release task for the specified job across the compute nodes where the job has run.", "description": "This API returns the Job Preparation and Job Release task status on all compute nodes that have run the Job Preparation or Job Release task. This includes nodes which have since been removed from the pool. If this API is invoked on a job which has no Job Preparation or Job Release task, the Batch service returns HTTP status code 409 (Conflict) with an error code of JobPreparationTaskNotSpecified.", @@ -5602,7 +5672,9 @@ ], "operationId": "Job_GetTaskCounts", "x-ms-examples": { - "Job get task counts": { "$ref": "./examples/JobGetTaskCounts.json" } + "Job get task counts": { + "$ref": "./examples/JobGetTaskCounts.json" + } }, "summary": "Gets the task counts for the specified job.", "description": "Task counts provide a count of the tasks by active, running or completed task state, and a count of tasks which succeeded or failed. Tasks in the preparing state are counted as running. If the validationStatus is unvalidated, then the Batch service has not been able to check state counts against the task states as reported in the List Tasks API. The validationStatus may be unvalidated if the job contains more than 200,000 tasks.", @@ -5700,9 +5772,15 @@ ], "operationId": "Pool_Add", "x-ms-examples": { - "Add a CloudServiceConfiguration pool": { "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" }, - "Add a VirtualMachineConfiguration pool": { "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" }, - "Add a VirtualMachineConfiguration pool with containers": { "$ref": "./examples/PoolAdd_VirtualMachineConfigurationWithContainers.json" } + "Add a CloudServiceConfiguration pool": { + "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool": { + "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool with containers": { + "$ref": "./examples/PoolAdd_VirtualMachineConfigurationWithContainers.json" + } }, "summary": "Adds a pool to the specified account.", "description": "When naming pools, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5813,7 +5891,9 @@ }, "operationId": "Pool_List", "x-ms-examples": { - "Pool list": { "$ref": "./examples/PoolList_Basic.json" } + "Pool list": { + "$ref": "./examples/PoolList_Basic.json" + } }, "summary": "Lists all of the pools in the specified account.", "x-ms-request-id": "request-id", @@ -5957,7 +6037,9 @@ ], "operationId": "Pool_Delete", "x-ms-examples": { - "Pool delete": { "$ref": "./examples/PoolDelete.json" } + "Pool delete": { + "$ref": "./examples/PoolDelete.json" + } }, "summary": "Deletes a pool from the specified account.", "description": "When you request that a pool be deleted, the following actions occur: the pool state is set to deleting; any ongoing resize operation on the pool are stopped; the Batch service starts resizing the pool to zero nodes; any tasks running on existing nodes are terminated and requeued (as if a resize pool operation had been requested with the default requeue option); finally, the pool is removed from the system. Because running tasks are requeued, the user can rerun these tasks by updating their job to target a different pool. The tasks can then run on the new pool. If you want to override the requeue behavior, then you should call resize pool explicitly to shrink the pool to zero size before deleting the pool. If you call an Update, Patch or Delete API on a pool in the deleting state, it will fail with HTTP status code 409 with error code PoolBeingDeleted.", @@ -6233,7 +6315,9 @@ ], "operationId": "Pool_Get", "x-ms-examples": { - "Pool get": { "$ref": "./examples/PoolGet_Basic.json" } + "Pool get": { + "$ref": "./examples/PoolGet_Basic.json" + } }, "description": "Gets information about the specified pool.", "x-ms-request-id": "request-id", @@ -6659,7 +6743,9 @@ ], "operationId": "Pool_EnableAutoScale", "x-ms-examples": { - "Pool enable autoscale": { "$ref": "./examples/PoolEnableAutoscale.json" } + "Pool enable autoscale": { + "$ref": "./examples/PoolEnableAutoscale.json" + } }, "summary": "Enables automatic scaling for a pool.", "description": "You cannot enable automatic scaling on a pool if a resize operation is in progress on the pool. If automatic scaling of the pool is currently disabled, you must specify a valid autoscale formula as part of the request. If automatic scaling of the pool is already enabled, you may specify a new autoscale formula and/or a new evaluation interval. You cannot call this API for the same pool more than once every 30 seconds.", @@ -6818,7 +6904,9 @@ ], "operationId": "Pool_EvaluateAutoScale", "x-ms-examples": { - "Pool evaluate autoscale": { "$ref": "./examples/PoolEvaluateAutoscale.json" } + "Pool evaluate autoscale": { + "$ref": "./examples/PoolEvaluateAutoscale.json" + } }, "summary": "Gets the result of evaluating an automatic scaling formula on the pool.", "description": "This API is primarily for validating an autoscale formula, as it simply returns the result without applying the formula to the pool. The pool must have auto scaling enabled in order to evaluate a formula.", @@ -6938,7 +7026,9 @@ ], "operationId": "Pool_Resize", "x-ms-examples": { - "Pool resize": { "$ref": "./examples/PoolResize.json" } + "Pool resize": { + "$ref": "./examples/PoolResize.json" + } }, "summary": "Changes the number of compute nodes that are assigned to a pool.", "description": "You can only resize a pool when its allocation state is steady. If the pool is already resizing, the request fails with status code 409. When you resize a pool, the pool's allocation state changes from steady to resizing. You cannot resize pools which are configured for automatic scaling. If you try to do this, the Batch service returns an error 409. If you resize a pool downwards, the Batch service chooses which nodes to remove. To remove specific nodes, use the pool remove nodes API instead.", @@ -7097,7 +7187,9 @@ ], "operationId": "Pool_StopResize", "x-ms-examples": { - "Pool stop resize": { "$ref": "./examples/PoolStopResize.json" } + "Pool stop resize": { + "$ref": "./examples/PoolStopResize.json" + } }, "summary": "Stops an ongoing resize operation on the pool.", "description": "This does not restore the pool to its previous state before the resize operation: it only stops any further changes being made, and the pool maintains its current state. After stopping, the pool stabilizes at the number of nodes it was at when the stop operation was done. During the stop operation, the pool allocation state changes first to stopping and then to steady. A resize operation need not be an explicit resize pool request; this API can also be used to halt the initial sizing of the pool when it is created.", @@ -7247,7 +7339,9 @@ ], "operationId": "Pool_UpdateProperties", "x-ms-examples": { - "Pool update": { "$ref": "./examples/PoolUpdate.json" } + "Pool update": { + "$ref": "./examples/PoolUpdate.json" + } }, "summary": "Updates the properties of the specified pool.", "description": "This fully replaces all the updatable properties of the pool. For example, if the pool has a start task associated with it and if start task is not specified with this request, then the Batch service will remove the existing start task.", @@ -7520,7 +7614,9 @@ ], "operationId": "Pool_RemoveNodes", "x-ms-examples": { - "Pool remove nodes": { "$ref": "./examples/PoolRemoveNodes.json" } + "Pool remove nodes": { + "$ref": "./examples/PoolRemoveNodes.json" + } }, "summary": "Removes compute nodes from the specified pool.", "description": "This operation can only run when the allocation state of the pool is steady. When this operation runs, the allocation state changes from steady to resizing.", @@ -7679,9 +7775,15 @@ ], "operationId": "Task_Add", "x-ms-examples": { - "Add a basic task": { "$ref": "./examples/TaskAdd_Basic.json" }, - "Add a task with exit conditions": { "$ref": "./examples/TaskAdd_ExitConditions.json" }, - "Add a task with container settings": { "$ref": "./examples/TaskAdd_ContainerSettings.json" } + "Add a basic task": { + "$ref": "./examples/TaskAdd_Basic.json" + }, + "Add a task with exit conditions": { + "$ref": "./examples/TaskAdd_ExitConditions.json" + }, + "Add a task with container settings": { + "$ref": "./examples/TaskAdd_ContainerSettings.json" + } }, "summary": "Adds a task to the specified job.", "description": "The maximum lifetime of a task from addition to completion is 7 days. If a task has not completed within 7 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.", @@ -7799,7 +7901,9 @@ }, "operationId": "Task_List", "x-ms-examples": { - "Task list": { "$ref": "./examples/TaskList.json" } + "Task list": { + "$ref": "./examples/TaskList.json" + } }, "summary": "Lists all of the tasks that are associated with the specified job.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -7951,8 +8055,12 @@ ], "operationId": "Task_AddCollection", "x-ms-examples": { - "Add a basic collection of tasks": { "$ref": "./examples/TaskAddCollection_Basic.json" }, - "Add a complex collection of tasks": { "$ref": "./examples/TaskAddCollection_Complex.json" } + "Add a basic collection of tasks": { + "$ref": "./examples/TaskAddCollection_Basic.json" + }, + "Add a complex collection of tasks": { + "$ref": "./examples/TaskAddCollection_Complex.json" + } }, "summary": "Adds a collection of tasks to the specified job.", "description": "Note that each task must have a unique ID. The Batch service may not return the results for each task in the same order the tasks were submitted in this request. If the server times out or the connection is closed during the request, the request may have been partially or fully processed, or not at all. In such cases, the user should re-issue the request. Note that it is up to the user to correctly handle failures when re-issuing a request. For example, you should use the same task IDs during a retry so that if the prior operation succeeded, the retry will not create extra tasks unexpectedly. If the response contains any tasks which failed to add, a client can retry the request. In a retry, it is most efficient to resubmit only tasks that failed to add, and to omit tasks that were successfully added on the first attempt. The maximum lifetime of a task from addition to completion is 7 days. If a task has not completed within 7 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.", @@ -8057,7 +8165,9 @@ ], "operationId": "Task_Delete", "x-ms-examples": { - "Task delete": { "$ref": "./examples/TaskDelete.json" } + "Task delete": { + "$ref": "./examples/TaskDelete.json" + } }, "summary": "Deletes a task from the specified job.", "description": "When a task is deleted, all of the files in its directory on the compute node where it ran are also deleted (regardless of the retention time). For multi-instance tasks, the delete task operation applies synchronously to the primary task; subtasks and their files are then deleted asynchronously in the background.", @@ -8197,7 +8307,9 @@ ], "operationId": "Task_Get", "x-ms-examples": { - "Task get": { "$ref": "./examples/TaskGet.json" } + "Task get": { + "$ref": "./examples/TaskGet.json" + } }, "summary": "Gets information about the specified task.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -8375,7 +8487,9 @@ ], "operationId": "Task_Update", "x-ms-examples": { - "Task update": { "$ref": "./examples/TaskUpdate.json" } + "Task update": { + "$ref": "./examples/TaskUpdate.json" + } }, "description": "Updates the properties of the specified task.", "x-ms-request-id": "request-id", @@ -8540,7 +8654,9 @@ ], "operationId": "Task_ListSubtasks", "x-ms-examples": { - "Task list subtasks": { "$ref": "./examples/TaskListSubtasks.json" } + "Task list subtasks": { + "$ref": "./examples/TaskListSubtasks.json" + } }, "summary": "Lists all of the subtasks that are associated with the specified multi-instance task.", "description": "If the task is not a multi-instance task then this returns an empty collection.", @@ -8664,7 +8780,9 @@ ], "operationId": "Task_Terminate", "x-ms-examples": { - "Task terminate": { "$ref": "./examples/TaskTerminate.json" } + "Task terminate": { + "$ref": "./examples/TaskTerminate.json" + } }, "summary": "Terminates the specified task.", "description": "When the task has been terminated, it moves to the completed state. For multi-instance tasks, the terminate task operation applies synchronously to the primary task; subtasks are then terminated asynchronously in the background.", @@ -8821,7 +8939,9 @@ ], "operationId": "Task_Reactivate", "x-ms-examples": { - "Task reactivate": { "$ref": "./examples/TaskReactivate.json" } + "Task reactivate": { + "$ref": "./examples/TaskReactivate.json" + } }, "summary": "Reactivates a task, allowing it to run again even if its retry count has been exhausted.", "description": "Reactivation makes a task eligible to be retried again up to its maximum retry count. The task's state is changed to active. As the task is no longer in the completed state, any previous exit code or failure information is no longer available after reactivation. Each time a task is reactivated, its retry count is reset to 0. Reactivation will fail for tasks that are not completed or that previously completed successfully (with an exit code of 0). Additionally, it will fail if the job has completed (or is terminating or deleting).", @@ -8978,7 +9098,9 @@ ], "operationId": "ComputeNode_AddUser", "x-ms-examples": { - "Node add user": { "$ref": "./examples/NodeAddUser.json" } + "Node add user": { + "$ref": "./examples/NodeAddUser.json" + } }, "summary": "Adds a user account to the specified compute node.", "description": "You can add a user account to a node only when it is in the idle or running state.", @@ -9102,7 +9224,9 @@ ], "operationId": "ComputeNode_DeleteUser", "x-ms-examples": { - "Node delete user": { "$ref": "./examples/NodeDeleteUser.json" } + "Node delete user": { + "$ref": "./examples/NodeDeleteUser.json" + } }, "summary": "Deletes a user account from the specified compute node.", "description": "You can delete a user account to a node only when it is in the idle or running state.", @@ -9207,7 +9331,9 @@ ], "operationId": "ComputeNode_UpdateUser", "x-ms-examples": { - "Node update user": { "$ref": "./examples/NodeUpdateUser.json" } + "Node update user": { + "$ref": "./examples/NodeUpdateUser.json" + } }, "summary": "Updates the password and expiration time of a user account on the specified compute node.", "description": "This operation replaces of all the updatable properties of the account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user account on a node only when it is in the idle or running state.", @@ -9338,7 +9464,9 @@ ], "operationId": "ComputeNode_Get", "x-ms-examples": { - "Node get": { "$ref": "./examples/NodeGet_Basic.json" } + "Node get": { + "$ref": "./examples/NodeGet_Basic.json" + } }, "summary": "Gets information about the specified compute node.", "x-ms-request-id": "request-id", @@ -9461,7 +9589,9 @@ ], "operationId": "ComputeNode_Reboot", "x-ms-examples": { - "Node reboot": { "$ref": "./examples/NodeReboot.json" } + "Node reboot": { + "$ref": "./examples/NodeReboot.json" + } }, "summary": "Restarts the specified compute node.", "description": "You can restart a node only if it is in an idle or running state.", @@ -9585,7 +9715,9 @@ ], "operationId": "ComputeNode_Reimage", "x-ms-examples": { - "Node reimage": { "$ref": "./examples/NodeReimage.json" } + "Node reimage": { + "$ref": "./examples/NodeReimage.json" + } }, "summary": "Reinstalls the operating system on the specified compute node.", "description": "You can reinstall the operating system on a node only if it is in an idle or running state. This API can be invoked only on pools created with the cloud service configuration property.", @@ -9709,7 +9841,9 @@ ], "operationId": "ComputeNode_DisableScheduling", "x-ms-examples": { - "Node disable scheduling": { "$ref": "./examples/NodeDisableScheduling.json" } + "Node disable scheduling": { + "$ref": "./examples/NodeDisableScheduling.json" + } }, "summary": "Disables task scheduling on the specified compute node.", "description": "You can disable task scheduling on a node only if its current scheduling state is enabled.", @@ -9833,7 +9967,9 @@ ], "operationId": "ComputeNode_EnableScheduling", "x-ms-examples": { - "Node enable scheduling": { "$ref": "./examples/NodeEnableScheduling.json" } + "Node enable scheduling": { + "$ref": "./examples/NodeEnableScheduling.json" + } }, "summary": "Enables task scheduling on the specified compute node.", "description": "You can enable task scheduling on a node only if its current scheduling state is disabled", @@ -9948,7 +10084,9 @@ ], "operationId": "ComputeNode_GetRemoteLoginSettings", "x-ms-examples": { - "Node get remote login settings": { "$ref": "./examples/NodeGetRemoteLoginSettings.json" } + "Node get remote login settings": { + "$ref": "./examples/NodeGetRemoteLoginSettings.json" + } }, "summary": "Gets the settings required for remote login to a compute node.", "description": "Before you can remotely login to a node using the remote login settings, you must create a user account on the node. This API can be invoked only on pools created with the virtual machine configuration property. For pools created with a cloud service configuration, see the GetRemoteDesktop API.", @@ -10176,7 +10314,9 @@ }, "operationId": "ComputeNode_List", "x-ms-examples": { - "Node list": { "$ref": "./examples/NodeList.json" } + "Node list": { + "$ref": "./examples/NodeList.json" + } }, "summary": "Lists the compute nodes in the specified pool.", "x-ms-request-id": "request-id", @@ -10349,7 +10489,15 @@ "title": "The cross data center network egress from the pool during this interval, in GiB." } }, - "required": [ "poolId", "startTime", "endTime", "vmSize", "totalCoreHours", "dataIngressGiB", "dataEgressGiB" ], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours", + "dataIngressGiB", + "dataEgressGiB" + ], "title": "Usage metrics for a pool across an aggregation interval." }, "PoolListUsageMetricsResult": { @@ -10469,7 +10617,11 @@ "title": "The aggregated wall-clock time of the dedicated compute node cores being part of the pool." } }, - "required": [ "startTime", "lastUpdateTime", "dedicatedCoreTime" ], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "title": "Statistics related to pool usage information." }, "ResourceStatistics": { @@ -10540,7 +10692,21 @@ "title": "The total amount of data in GiB of network writes across all nodes in the pool." } }, - "required": [ "startTime", "lastUpdateTime", "avgCPUPercentage", "avgMemoryGiB", "peakMemoryGiB", "avgDiskGiB", "peakDiskGiB", "diskReadIOps", "diskWriteIOps", "diskReadGiB", "diskWriteGiB", "networkReadGiB", "networkWriteGiB" ], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "title": "Statistics related to resource consumption by compute nodes in a pool." }, "PoolStatistics": { @@ -10568,7 +10734,11 @@ "title": "Statistics related to resource consumption by compute nodes in the pool." } }, - "required": [ "url", "startTime", "lastUpdateTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "title": "Contains utilization and resource usage statistics for the lifetime of a pool." }, "JobStatistics": { @@ -10647,7 +10817,22 @@ "description": "The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.) This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job." }, "NameValuePair": { @@ -10742,7 +10927,9 @@ "description": "If this is omitted on a pool, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences and HTTP status code 409. If this is omitted on a task, and no default version is specified for this application, the task fails with a pre-processing error." } }, - "required": [ "applicationId" ], + "required": [ + "applicationId" + ], "title": "A reference to an application package to be deployed to compute nodes." }, "ApplicationSummary": { @@ -10763,7 +10950,11 @@ } } }, - "required": [ "id", "displayName", "versions" ], + "required": [ + "id", + "displayName", + "versions" + ], "title": "Contains information about an application in an Azure Batch account." }, "CertificateAddParameter": { @@ -10808,7 +10999,11 @@ "description": "This is required if the certificate format is pfx. It should be omitted if the certificate format is cer." } }, - "required": [ "thumbprint", "thumbprintAlgorithm", "data" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "title": "A certificate that can be installed on compute nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -10855,7 +11050,10 @@ "description": "The file mode is returned only for files on Linux compute nodes." } }, - "required": [ "lastModified", "contentLength" ], + "required": [ + "lastModified", + "contentLength" + ], "title": "The properties of a file on a compute node." }, "NodeFile": { @@ -10959,7 +11157,9 @@ "description": "This setting can be omitted if was already provided at pool creation." } }, - "required": [ "imageName" ], + "required": [ + "imageName" + ], "title": "The container settings for a task." }, "ResourceFile": { @@ -10979,7 +11179,10 @@ "description": "This property applies only to files being downloaded to Linux compute nodes. It will be ignored if it is specified for a resourceFile which will be downloaded to a Windows node. If this property is not specified for a Linux node, then a default value of 0770 is applied to the file." } }, - "required": [ "blobSource", "filePath" ], + "required": [ + "blobSource", + "filePath" + ], "title": "A file to be downloaded from Azure blob storage to a compute node." }, "EnvironmentSetting": { @@ -10993,7 +11196,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, "ExitConditions": { @@ -11042,7 +11247,10 @@ } }, "title": "How the Batch service should respond if a task exits with a particular exit code.", - "required": [ "code", "exitOptions" ] + "required": [ + "code", + "exitOptions" + ] }, "ExitCodeRangeMapping": { "properties": { @@ -11062,7 +11270,11 @@ } }, "title": "A range of exit codes and how the Batch service should respond to exit codes within that range.", - "required": [ "start", "end", "exitOptions" ] + "required": [ + "start", + "end", + "exitOptions" + ] }, "ExitOptions": { "properties": { @@ -11213,7 +11425,10 @@ "$ref": "#/definitions/LinuxUserConfiguration" } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user used to execute tasks on an Azure Batch node." }, "TaskConstraints": { @@ -11269,7 +11484,7 @@ "title": "A list of files that the Batch service will download to the compute node before running the command line.", "description": "Files listed under this element are located in the task's working directory." }, - "outputFiles": { + "outputFiles": { "type": "array", "items": { "$ref": "#/definitions/OutputFile" @@ -11322,7 +11537,10 @@ "description": "The default value is false." } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "Specifies details of a Job Manager task.", "description": "The Job Manager task is automatically started when the job is created. The Batch service tries to schedule the Job Manager task before any other tasks in the job. When shrinking a pool, the Batch service tries to preserve compute nodes where Job Manager tasks are running for as long as possible (that is, nodes running 'normal' tasks are removed before nodes running Job Manager tasks). When a Job Manager task fails and needs to be restarted, the system tries to schedule it at the highest priority. If there are no idle nodes available, the system may terminate one of the running tasks in the pool and return it to the queue in order to make room for the Job Manager task to restart. Note that a Job Manager task in one job does not have priority over tasks in other jobs. Across jobs, only job level priorities are observed. For example, if a Job Manager in a priority 0 job needs to be restarted, it will not displace tasks of a priority 1 job." }, @@ -11378,7 +11596,9 @@ "description": "The Job Preparation task is always rerun if a compute node is reimaged, or if the Job Preparation task did not complete (e.g. because the reboot occurred while the task was running). Therefore, you should always write a Job Preparation task to be idempotent and to behave correctly if run multiple times. The default value is true." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Preparation task to run before any tasks of the job on any given compute node.", "description": "You can use Job Preparation to prepare a compute node to run tasks for the job. Activities commonly performed in Job Preparation include: Downloading common resource files used by all the tasks in the job. The Job Preparation task can download these common resource files to the shared location on the compute node. (AZ_BATCH_NODE_ROOT_DIR\\shared), or starting a local service on the compute node so that all tasks of that job can communicate with it. If the Job Preparation task fails (that is, exhausts its retry count before exiting with exit code 0), Batch will not run tasks of this job on the compute node. The node remains ineligible to run tasks of this job until it is reimaged. The node remains active and can be used for other jobs. The Job Preparation task can run multiple times on the same compute node. Therefore, you should write the Job Preparation task to handle re-execution. If the compute node is rebooted, the Job Preparation task is run again on the node before scheduling any other task of the job, if rerunOnNodeRebootAfterSuccess is true or if the Job Preparation task did not previously complete. If the compute node is reimaged, the Job Preparation task is run again before scheduling any task of the job." }, @@ -11431,7 +11651,9 @@ "description": "If omitted, the task runs as a non-administrative user unique to the task." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Release task to run on job completion on any compute node where the job has run.", "description": "The Job Release task runs when the job ends, because of one of the following: The user calls the Terminate Job API, or the Delete Job API while the job is still active, the job's maximum wall clock time constraint is reached, and the job is still active, or the job's Job Manager task completed, and the job is configured to terminate when the Job Manager completes. The Job Release task runs on each compute node where tasks of the job have run and the Job Preparation task ran and completed. If you reimage a compute node after it has run the Job Preparation task, and the job ends without any further tasks of the job running on that compute node (and hence the Job Preparation task does not re-run), then the Job Release task does not run on that node. If a compute node reboots while the Job Release task is still running, the Job Release task runs again when the compute node starts up. The job is not marked as complete until all Job Release tasks have completed. The Job Release task runs in the background. It does not occupy a scheduling slot; that is, it does not count towards the maxTasksPerNode limit specified on the pool." }, @@ -11460,7 +11682,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "StartTask": { @@ -11507,7 +11731,9 @@ "description": "If true and the start task fails on a compute node, the Batch service retries the start task up to its maximum retry count (maxTaskRetryCount). If the task has still not completed successfully after all retries, then the Batch service marks the compute node unusable, and will not schedule tasks to it. This condition can be detected via the node state and failure info details. If false, the Batch service will not wait for the start task to complete. In this case, other tasks can start executing on the compute node while the start task is still running; and even if the start task fails, new tasks will continue to be scheduled on the node. The default is false." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A task which is run when a compute node joins a pool in the Azure Batch service, or when the compute node is rebooted or reimaged." }, "CertificateReference": { @@ -11585,7 +11811,10 @@ "description": "You can specify more than one visibility in this collection. The default is all accounts." } }, - "required": [ "thumbprint", "thumbprintAlgorithm" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool." }, "MetadataItem": { @@ -11599,7 +11828,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -11701,7 +11933,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -11721,7 +11953,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "vmSize" ], + "required": [ + "vmSize" + ], "title": "Specification for creating a new pool." }, "AutoPoolSpecification": { @@ -11764,7 +11998,9 @@ "title": "The pool specification for the auto pool." } }, - "required": [ "poolLifetimeOption" ], + "required": [ + "poolLifetimeOption" + ], "title": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto pool when the job is submitted." }, "PoolInformation": { @@ -11849,7 +12085,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "Specifies details of the jobs to be created on a schedule." }, "RecentJob": { @@ -11961,7 +12199,22 @@ "description": "This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job schedule." }, "CloudJobSchedule": { @@ -12070,7 +12323,11 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "schedule", "jobSpecification" ], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "title": "A job schedule that allows recurring jobs by specifying when to run jobs and a specification used to create each job." }, "CloudJobScheduleListResult": { @@ -12111,7 +12368,9 @@ "title": "A list of additional error details related to the scheduling error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "An error encountered by the Batch service when scheduling a job." }, "JobExecutionInformation": { @@ -12144,7 +12403,9 @@ "description": "This property is set only if the job is in the completed state. If the Batch service terminates the job, it sets the reason as follows: JMComplete - the Job Manager task completed, and killJobOnCompletion was set to true. MaxWallClockTimeExpiry - the job reached its maxWallClockTime constraint. TerminateJobSchedule - the job ran as part of a schedule, and the schedule terminated. AllTasksComplete - the job's onAllTasksComplete attribute is set to terminatejob, and all tasks in the job are complete. TaskFailed - the job's onTaskFailure attribute is set to performExitOptionsJobAction, and a task in the job failed with an exit condition that specified a jobAction of terminatejob. Any other string is a user-defined reason specified in a call to the 'Terminate a job' operation." } }, - "required": [ "startTime" ], + "required": [ + "startTime" + ], "title": "Contains information about the execution of a job in the Azure Batch service." }, "CloudJob": { @@ -12339,7 +12600,10 @@ "title": "Whether tasks in the job can define dependencies on each other. The default is false." } }, - "required": [ "id", "poolInfo" ], + "required": [ + "id", + "poolInfo" + ], "title": "An Azure Batch job to add." }, "CloudJobListResult": { @@ -12399,7 +12663,9 @@ "title": "A list of additional details related to the error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "Information about a task failure." }, "JobPreparationTaskExecutionInformation": { @@ -12480,7 +12746,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "retryCount", "state" ], + "required": [ + "startTime", + "retryCount", + "state" + ], "title": "Contains information about the execution of a Job Preparation task on a compute node." }, "JobReleaseTaskExecutionInformation": { @@ -12549,7 +12819,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "state" ], + "required": [ + "startTime", + "state" + ], "title": "Contains information about the execution of a Job Release task on a compute node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -12644,7 +12917,14 @@ } } }, - "required": ["active", "running", "completed", "succeeded", "failed", "validationStatus"], + "required": [ + "active", + "running", + "completed", + "succeeded", + "failed", + "validationStatus" + ], "title": "The task counts for a job." }, "AutoScaleRunError": { @@ -12684,7 +12964,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": [ "timestamp" ], + "required": [ + "timestamp" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "ResizeError": { @@ -12726,7 +13008,9 @@ "description": "This may differ from targetOSVersion if the pool state is Upgrading. In this case some virtual machines may be on the targetOSVersion and some may be on the currentOSVersion during the upgrade process. Once all virtual machines have upgraded, currentOSVersion is updated to be the same as targetOSVersion." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "ImageReference": { @@ -12854,7 +13138,7 @@ "value": "readonly", "description": "The caching mode for the disk is read only.", "name": "readOnly" - }, + }, { "value": "readwrite", "description": "The caching mode for the disk is read and write.", @@ -12902,7 +13186,10 @@ "description": "If specified, setup is performed on each node in the pool to allow tasks to run in containers. All regular tasks and job manager tasks run on this pool must specify the containerSettings property, and all other tasks may specify it." } }, - "required": [ "nodeAgentSKUId", "imageReference" ], + "required": [ + "nodeAgentSKUId", + "imageReference" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "ContainerRegistry": { @@ -12922,7 +13209,10 @@ "title": "The password to log into the registry server." } }, - "required": [ "username", "password" ], + "required": [ + "username", + "password" + ], "title": "A private container registry." }, "ContainerConfiguration": { @@ -12961,7 +13251,9 @@ "description": "If any images must be downloaded from a private registry which requires credentials, then those credentials must be provided here." } }, - "required": [ "type" ], + "required": [ + "type" + ], "title": "The configuration for container-enabled pools." }, "NetworkConfiguration": { @@ -12976,9 +13268,9 @@ } }, "endpointConfiguration": { - "$ref": "#/definitions/PoolEndpointConfiguration", - "title": "The configuration for endpoints on compute nodes in the Batch pool.", - "description": "Pool endpoint configuration is only supported on pools with the virtualMachineConfiguration property." + "$ref": "#/definitions/PoolEndpointConfiguration", + "title": "The configuration for endpoints on compute nodes in the Batch pool.", + "description": "Pool endpoint configuration is only supported on pools with the virtualMachineConfiguration property." } }, "description": "The network configuration for a pool." @@ -13182,7 +13474,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -13310,7 +13602,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -13340,7 +13632,10 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "vmSize" ], + "required": [ + "id", + "vmSize" + ], "title": "A pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -13383,7 +13678,9 @@ "description": "You can pass the affinityId of a compute node to indicate that this task needs to run on that compute node. Note that this is just a soft affinity. If the target node is busy or unavailable at the time the task is scheduled, then the task will be scheduled elsewhere." } }, - "required": [ "affinityId" ], + "required": [ + "affinityId" + ], "title": "A locality hint that can be used by the Batch service to select a compute node on which to start a task." }, "TaskExecutionInformation": { @@ -13446,7 +13743,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "requeueCount", "retryCount" ], + "required": [ + "requeueCount", + "retryCount" + ], "title": "Information about the execution of a task." }, "ComputeNodeInformation": { @@ -13500,7 +13800,9 @@ "description": "The difference between common resource files and task resource files is that common resource files are downloaded for all subtasks including the primary, whereas task resource files are downloaded only for the primary. Also note that these resource files are not downloaded to the task working directory, but instead are downloaded to the task root directory (one directory above the working directory)." } }, - "required": [ "coordinationCommandLine" ], + "required": [ + "coordinationCommandLine" + ], "title": "Settings which specify how to run a multi-instance task.", "description": "Multi-instance tasks are commonly used to support MPI tasks." }, @@ -13562,7 +13864,19 @@ "title": "The total wait time of the task. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "title": "Resource usage statistics for a task." }, "TaskDependencies": { @@ -13600,7 +13914,10 @@ }, "title": "A range of task IDs that a task can depend on. All tasks with IDs in the range must complete successfully before the dependent task can be scheduled.", "description": "The start and end of the range are inclusive. For example, if a range has start 9 and end 12, then it represents tasks '9', '10', '11' and '12'.", - "required": [ "start", "end" ] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -13826,7 +14143,10 @@ "$ref": "#/definitions/AuthenticationTokenSettings" } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "An Azure Batch task to add." }, "TaskAddCollectionParameter": { @@ -13841,7 +14161,9 @@ "description": "The total serialized size of this collection must be less than 4MB. If it is greater than 4MB (for example if each task has 100's of resource files or environment variables), the request will fail with code 'RequestBodyTooLarge' and should be retried again with fewer tasks." } }, - "required": [ "value" ], + "required": [ + "value" + ], "title": "A collection of Azure Batch tasks to add." }, "TaskAddResult": { @@ -13898,7 +14220,10 @@ "title": "The error encountered while attempting to add the task." } }, - "required": [ "status", "taskId" ], + "required": [ + "status", + "taskId" + ], "title": "Result for a single task added as part of an add task collection operation." }, "TaskAddCollectionResult": { @@ -14035,7 +14360,9 @@ "title": "Information about the execution of the task." } }, - "required": [ "taskState" ], + "required": [ + "taskState" + ], "title": "Information about a task running on a compute node." }, "StartTaskInformation": { @@ -14108,7 +14435,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "state", "startTime", "retryCount" ], + "required": [ + "state", + "startTime", + "retryCount" + ], "title": "Information about a start task running on a compute node." }, "ComputeNodeError": { @@ -14344,7 +14675,9 @@ "description": "The maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400." } }, - "required": [ "inboundNATPools" ], + "required": [ + "inboundNATPools" + ], "title": "The endpoint configuration for a pool." }, "InboundNATPool": { @@ -14385,7 +14718,13 @@ } } }, - "required": [ "name", "protocol", "backendPort", "frontendPortRangeStart", "frontendPortRangeEnd" ], + "required": [ + "name", + "protocol", + "backendPort", + "frontendPortRangeStart", + "frontendPortRangeEnd" + ], "title": "A inbound NAT pool that can be used to address specific ports on compute nodes in a Batch pool externally." }, "NetworkSecurityGroupRule": { @@ -14424,7 +14763,11 @@ "description": "Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400." } }, - "required": [ "priority", "access", "sourceAddressPrefix" ], + "required": [ + "priority", + "access", + "sourceAddressPrefix" + ], "title": "A network security group rule to apply to an inbound endpoint." }, "ComputeNodeEndpointConfiguration": { @@ -14437,7 +14780,9 @@ "title": "The list of inbound endpoints that are accessible on the compute node." } }, - "required": [ "inboundEndpoints" ], + "required": [ + "inboundEndpoints" + ], "title": "The endpoint configuration for the compute node." }, "InboundEndpoint": { @@ -14469,7 +14814,14 @@ "title": "The backend port number of the endpoint." } }, - "required": [ "name", "protocol", "publicIPAddress", "publicFQDN", "frontendPort", "backendPort" ], + "required": [ + "name", + "protocol", + "publicIPAddress", + "publicFQDN", + "frontendPort", + "backendPort" + ], "title": "An inbound endpoint on a compute node." }, "ComputeNodeListResult": { @@ -14516,7 +14868,9 @@ "description": "The public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux nodes. If this is specified for a Windows node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request)." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "A user account for RDP or SSH access on a compute node." }, "ComputeNodeGetRemoteLoginSettingsResult": { @@ -14531,7 +14885,10 @@ "title": "The port used for remote login to the compute node." } }, - "required": [ "remoteLoginIPAddress", "remoteLoginPort" ], + "required": [ + "remoteLoginIPAddress", + "remoteLoginPort" + ], "title": "The remote login settings for a compute node." }, "JobSchedulePatchParameter": { @@ -14578,7 +14935,10 @@ "description": "If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": [ "schedule", "jobSpecification" ], + "required": [ + "schedule", + "jobSpecification" + ], "title": "The set of changes to be made to a job schedule." }, "JobDisableParameter": { @@ -14611,7 +14971,9 @@ } } }, - "required": [ "disableTasks" ], + "required": [ + "disableTasks" + ], "title": "Options when disabling a job." }, "JobTerminateParameter": { @@ -14689,7 +15051,9 @@ "$ref": "#/definitions/OnAllTasksComplete" } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "The set of changes to be made to a job." }, "PoolEnableAutoScaleParameter": { @@ -14716,7 +15080,9 @@ "description": "The formula is validated and its results calculated, but it is not applied to the pool. To apply the formula to the pool, 'Enable automatic scaling on a pool'. For more information about specifying this formula, see Automatically scale compute nodes in an Azure Batch pool (https://azure.microsoft.com/en-us/documentation/articles/batch-automatic-scaling)." } }, - "required": [ "autoScaleFormula" ], + "required": [ + "autoScaleFormula" + ], "title": "Options for evaluating an automatic scaling formula on a pool." }, "PoolResizeParameter": { @@ -14777,7 +15143,11 @@ "description": "This list replaces any existing metadata configured on the pool. If omitted, or if you specify an empty collection, any existing metadata is removed from the pool." } }, - "required": [ "certificateReferences", "metadata", "applicationPackageReferences" ], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "title": "The set of changes to be made to a pool." }, "PoolUpgradeOSParameter": { @@ -14787,7 +15157,9 @@ "title": "The Azure Guest OS version to be installed on the virtual machines in the pool." } }, - "required": [ "targetOSVersion" ], + "required": [ + "targetOSVersion" + ], "title": "Options for upgrading the operating system of compute nodes in a pool." }, "PoolPatchParameter": { @@ -14991,7 +15363,9 @@ "$ref": "#/definitions/ComputeNodeDeallocationOption" } }, - "required": [ "nodeList" ], + "required": [ + "nodeList" + ], "title": "Options for removing compute nodes from a pool." }, "OutputFile": { @@ -15010,7 +15384,11 @@ "$ref": "#/definitions/OutputFileUploadOptions" } }, - "required": [ "filePattern", "destination", "uploadOptions" ], + "required": [ + "filePattern", + "destination", + "uploadOptions" + ], "title": "A specification for uploading files from an Azure Batch node to another location after the Batch service has finished executing the task process." }, "OutputFileDestination": { @@ -15035,7 +15413,9 @@ "description": "The URL must include a Shared Access Signature (SAS) granting write permissions to the container." } }, - "required": [ "containerUrl" ], + "required": [ + "containerUrl" + ], "title": "Specifies a file upload destination within an Azure blob storage container." }, "OutputFileUploadOptions": { @@ -15046,7 +15426,9 @@ "$ref": "#/definitions/OutputFileUploadCondition" } }, - "required": [ "uploadCondition" ], + "required": [ + "uploadCondition" + ], "title": "Details about an output file upload operation, including under what conditions to perform the upload." }, "ErrorMessage": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/AccountListNodeAgentSkus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/AccountListNodeAgentSkus.json index fc98266f54ab..f58e98ad3264 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/AccountListNodeAgentSkus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/AccountListNodeAgentSkus.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateAdd.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateAdd.json index 885811994024..1a4dec4dd23c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateAdd.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateAdd.json @@ -4,11 +4,11 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "certificate": { - "thumbprintAlgorithm":"sha1", - "thumbprint":"0123456789abcdef0123456789abcdef01234567", - "data":"#####...", - "certificateFormat":"pfx", - "password":"certpassword" + "thumbprintAlgorithm": "sha1", + "thumbprint": "0123456789abcdef0123456789abcdef01234567", + "data": "#####...", + "certificateFormat": "pfx", + "password": "certpassword" } }, "responses": { @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateCancelDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateCancelDelete.json index a6412602279a..6a84c6111fb1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateCancelDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateCancelDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateDelete.json index f93cfbe8ccb5..6969ede615fe 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateGet.json index 67568b3c318d..383a6c7a8207 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateList.json index fbd427639159..90af0de38710 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/CertificateList.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileDeleteFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileDeleteFromNode.json index fdcf42097bce..289252e910cb 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileDeleteFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileDeleteFromNode.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileDeleteFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileDeleteFromTask.json index 5b4d1332fb79..731a21bcc541 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileDeleteFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileDeleteFromTask.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileGetPropertiesFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileGetPropertiesFromNode.json index 14e2ca1699a7..6c9dd6f614c5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileGetPropertiesFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileGetPropertiesFromNode.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileGetPropertiesFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileGetPropertiesFromTask.json index 5a680c7de05d..92fcc3a03861 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileGetPropertiesFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileGetPropertiesFromTask.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileListFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileListFromNode.json index 02c28a2d0fda..440fdccea40e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileListFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileListFromNode.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileListFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileListFromTask.json index 0de368bafc18..fa4d76b1a1d8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileListFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/FileListFromTask.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobAdd_Basic.json index 6f3c35e0db13..d03e72458a60 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobAdd_Basic.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobAdd_Complex.json index 770bdd8c2ece..d97380ae2546 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobAdd_Complex.json @@ -35,7 +35,7 @@ "retentionTime": "PT1H" }, "killJobOnCompletion": false, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -76,7 +76,7 @@ "value": "myvalue" } ], - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -118,4 +118,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobDisable.json index 323a7c34e6b4..38d54dfba494 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobDisable.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobEnable.json index dc3e024a0827..2e07e3125432 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGet.json index 9a1504f6c9f0..7f6e434aeeeb 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGet.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGetLifetimeStatistics.json index 451e5e9df7ef..ec049896f0ef 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimejobstats", + "url": "https://account.region.batch.core.windows.net/lifetimejobstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "userCPUTime": "PT0S", @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGetTaskCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGetTaskCounts.json index 25e1d21e0701..2e8964e9cad5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGetTaskCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobGetTaskCounts.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobList.json index 3d418a5dbb5b..66275d80c457 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobList.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobListPreparationAndReleaseTaskStatus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobListPreparationAndReleaseTaskStatus.json index a70771fa0f2a..d070063c1bb9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobListPreparationAndReleaseTaskStatus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobListPreparationAndReleaseTaskStatus.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobPatch.json index bcdafc07c998..871ed8260af7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobPatch.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobPatchParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleAdd_Basic.json index 6b402fd2a0f3..30d141fa4f29 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleAdd_Basic.json @@ -6,7 +6,7 @@ "cloudJobSchedule": { "id": "jobScheduleId", "schedule": { - "recurrenceInterval":"PT5M" + "recurrenceInterval": "PT5M" }, "jobSpecification": { "poolInfo": { @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleAdd_Complex.json index 5963c206ac88..4be3690231f1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleAdd_Complex.json @@ -126,4 +126,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleDelete.json index 1c86cf8d62a0..62a5353f5dd8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleDisable.json index 137407f9b0cb..5ccbdb9aac80 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleDisable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleEnable.json index 137407f9b0cb..5ccbdb9aac80 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleGet.json index 990d879d4d20..2413da3c4df3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleList.json index 807886be4ef1..28661b557cbe 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleList.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobSchedulePatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobSchedulePatch.json index c79c662e5a68..71f4ccb4ba3d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobSchedulePatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobSchedulePatch.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleTerminate.json index 1c86cf8d62a0..62a5353f5dd8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleTerminate.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleUpdate.json index 95951b03ad93..3e77fd33b63c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobScheduleUpdate.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobTerminate.json index b5042be41ec5..f1e2951f1b06 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobTerminate.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobUpdate.json index 06215fd01e60..8d1d2332086f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/JobUpdate.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobUpdateParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeAddUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeAddUser.json index f0c58a6475b7..84bc6531b6ff 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeAddUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeAddUser.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeDeleteUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeDeleteUser.json index b70f2d5713ad..4d176dd914c2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeDeleteUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeDeleteUser.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeDisableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeDisableScheduling.json index 6f669310747b..7285f80f6a93 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeDisableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeDisableScheduling.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeEnableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeEnableScheduling.json index 6927f35cea43..4ade4e0fdc61 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeEnableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeEnableScheduling.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeGetRemoteLoginSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeGetRemoteLoginSettings.json index f41651a1ff0a..39e83c24354d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeGetRemoteLoginSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeGetRemoteLoginSettings.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeGet_Basic.json index 9f77641967f7..832e19312f1a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeGet_Basic.json @@ -25,7 +25,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeList.json index a6d8d4cd4013..7d22af75ef4b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeList.json @@ -26,7 +26,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -60,7 +60,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -94,7 +94,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -115,4 +115,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeReboot.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeReboot.json index 35d18931f4bc..19ac6abebd30 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeReboot.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeReboot.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeReimage.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeReimage.json index 20a17fb06c88..bb013be1bd02 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeReimage.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeReimage.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeUpdateUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeUpdateUser.json index fd44545cf1d0..1c620a92f683 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeUpdateUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/NodeUpdateUser.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_CloudServiceConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_CloudServiceConfiguration.json index d01059b31523..94e7d00b82a1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_CloudServiceConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_CloudServiceConfiguration.json @@ -9,19 +9,21 @@ "cloudServiceConfiguration": { "osFamily": "4" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -31,4 +33,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_VirtualMachineConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_VirtualMachineConfiguration.json index 81fc4105413f..191abb547d18 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_VirtualMachineConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_VirtualMachineConfiguration.json @@ -14,19 +14,21 @@ }, "nodeAgentSKUId": "batch.node.ubuntu 16.04" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -36,4 +38,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json index a7ef487caf75..dce9b6a73ed7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json @@ -20,14 +20,14 @@ ] } }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false + "enableAutoScale": false } }, "responses": { @@ -37,4 +37,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolDelete.json index 35765a598ea6..384cebc53ee2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolEnableAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolEnableAutoscale.json index 0b1fe11102be..37a025056c4a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolEnableAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolEnableAutoscale.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolEvaluateAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolEvaluateAutoscale.json index 88b4ff682142..960e2c4aa447 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolEvaluateAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolEvaluateAutoscale.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolGetLifetimeStatistics.json index 83421b3cfd32..6d985c0e68c1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimepoolstats", + "url": "https://account.region.batch.core.windows.net/lifetimepoolstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "usageStats": { @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolGet_Basic.json index 8a97f2c53081..e8240100ae5b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolGet_Basic.json @@ -27,7 +27,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "/bin/bash -c 'echo start task'", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolListUsageMetrics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolListUsageMetrics.json index 7587908fd13f..f15351e1f78d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolListUsageMetrics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolListUsageMetrics.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolList_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolList_Basic.json index abf1070bba6f..6045e184aa9a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolList_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolList_Basic.json @@ -28,7 +28,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -51,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolRemoveNodes.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolRemoveNodes.json index e1cd368a7f32..1dcd87d4af30 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolRemoveNodes.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolRemoveNodes.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolResize.json index 9c72e8006879..e62c24b1e042 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolResize.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolStopResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolStopResize.json index 35765a598ea6..384cebc53ee2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolStopResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolStopResize.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolUpdate.json index a1db09d15604..d55b735972a7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/PoolUpdate.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAddCollection_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAddCollection_Basic.json index 3326616fbb4e..48b7ddf6c587 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAddCollection_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAddCollection_Basic.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAddCollection_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAddCollection_Complex.json index 9df418c50ac1..4e8f229eec2c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAddCollection_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAddCollection_Complex.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_Basic.json index 70a373fa577c..09a00a4f0579 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_Basic.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_ContainerSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_ContainerSettings.json index a0c773ea8e26..5575a5456509 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_ContainerSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_ContainerSettings.json @@ -11,7 +11,7 @@ "imageName": "ubuntu", "containerRunOptions": "--rm" }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -24,4 +24,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_ExitConditions.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_ExitConditions.json index e8f13b7be097..5774510152ac 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_ExitConditions.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskAdd_ExitConditions.json @@ -18,7 +18,7 @@ } ] }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -31,4 +31,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskDelete.json index 069af11edb9c..cb359edcdd37 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskGet.json index 02fecd7ae8a4..3527f1d26642 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskGet.json @@ -17,7 +17,7 @@ "state": "active", "stateTransitionTime": "2016-09-06T06:59:15.1161429Z", "commandLine": "cmd /c hostname", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskList.json index 7aadb36bd7b8..080d7b5d77de 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskList.json @@ -18,7 +18,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.4733476Z", "commandLine": "cmd /c echo task1", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -43,7 +43,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.6736345Z", "commandLine": "cmd /c echo task2", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskListSubtasks.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskListSubtasks.json index 6a49b717698f..dff38dd76473 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskListSubtasks.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskListSubtasks.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskReactivate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskReactivate.json index e0e33f761e46..3368081bc902 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskReactivate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskReactivate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskTerminate.json index e0e33f761e46..3368081bc902 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskTerminate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskUpdate.json index 87263b5fcfad..a3922dd42bd9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2017-09-01.6.0/examples/TaskUpdate.json @@ -7,9 +7,9 @@ "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "taskUpdateParameter": { "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":3, - "retentionTime":"PT1H" + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": 3, + "retentionTime": "PT1H" } } }, @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/BatchService.json index 0cced72aa042..1d0091986067 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/BatchService.json @@ -29,7 +29,9 @@ }, "operationId": "Application_List", "x-ms-examples": { - "List applications": { "$ref": "./examples/ApplicationList.json" } + "List applications": { + "$ref": "./examples/ApplicationList.json" + } }, "summary": "Lists all of the applications available in the specified account.", "description": "This operation returns only applications and versions that are available for use on compute nodes; that is, that can be used in an application package reference. For administrator information about applications and versions that are not yet available to compute nodes, use the Azure portal or the Azure Resource Manager API.", @@ -144,7 +146,9 @@ ], "operationId": "Application_Get", "x-ms-examples": { - "Get applications": { "$ref": "./examples/ApplicationGet.json" } + "Get applications": { + "$ref": "./examples/ApplicationGet.json" + } }, "summary": "Gets information about the specified application.", "description": "This operation returns only applications and versions that are available for use on compute nodes; that is, that can be used in an application package reference. For administrator information about applications and versions that are not yet available to compute nodes, use the Azure portal or the Azure Resource Manager API.", @@ -254,7 +258,9 @@ }, "operationId": "Pool_ListUsageMetrics", "x-ms-examples": { - "Pool list usage metrics": { "$ref": "./examples/PoolListUsageMetrics.json" } + "Pool list usage metrics": { + "$ref": "./examples/PoolListUsageMetrics.json" + } }, "summary": "Lists the usage metrics, aggregated by pool across individual time intervals, for the specified account.", "description": "If you do not specify a $filter clause including a poolId, the response includes all pools that existed in the account in the time range of the returned aggregation intervals. If you do not specify a $filter clause including a startTime or endTime these filters default to the start and end times of the last aggregation interval currently available; that is, only the last aggregation interval is returned.", @@ -406,7 +412,9 @@ }, "operationId": "Account_ListNodeAgentSkus", "x-ms-examples": { - "Account list node agent skus": { "$ref": "./examples/AccountListNodeAgentSkus.json" } + "Account list node agent skus": { + "$ref": "./examples/AccountListNodeAgentSkus.json" + } }, "summary": "Lists all node agent SKUs supported by the Azure Batch service.", "x-ms-request-id": "request-id", @@ -534,7 +542,9 @@ "operationId": "Account_ListPoolNodeCounts", "description": "Gets the number of nodes in each state, grouped by pool.", "x-ms-examples": { - "NodeCountsPayload": { "$ref": "./examples/AccountListPoolNodeCounts.json" } + "NodeCountsPayload": { + "$ref": "./examples/AccountListPoolNodeCounts.json" + } }, "parameters": [ { @@ -647,7 +657,9 @@ ], "operationId": "Pool_GetAllLifetimeStatistics", "x-ms-examples": { - "Pool get lifetime statistics": { "$ref": "./examples/PoolGetLifetimeStatistics.json" } + "Pool get lifetime statistics": { + "$ref": "./examples/PoolGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the pools in the specified account.", "description": "Statistics are aggregated across all pools that have ever existed in the account, from account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes.", @@ -747,7 +759,9 @@ ], "operationId": "Job_GetAllLifetimeStatistics", "x-ms-examples": { - "Job get lifetime statistics": { "$ref": "./examples/JobGetLifetimeStatistics.json" } + "Job get lifetime statistics": { + "$ref": "./examples/JobGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the jobs in the specified account.", "description": "Statistics are aggregated across all jobs that have ever existed in the account, from account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes.", @@ -847,7 +861,9 @@ ], "operationId": "Certificate_Add", "x-ms-examples": { - "Certificate add": { "$ref": "./examples/CertificateAdd.json" } + "Certificate add": { + "$ref": "./examples/CertificateAdd.json" + } }, "summary": "Adds a certificate to the specified account.", "x-ms-request-id": "request-id", @@ -957,7 +973,9 @@ }, "operationId": "Certificate_List", "x-ms-examples": { - "Certificate list": { "$ref": "./examples/CertificateList.json" } + "Certificate list": { + "$ref": "./examples/CertificateList.json" + } }, "summary": "Lists all of the certificates that have been added to the specified account.", "x-ms-request-id": "request-id", @@ -1091,7 +1109,9 @@ ], "operationId": "Certificate_CancelDeletion", "x-ms-examples": { - "Certificate cancel delete": { "$ref": "./examples/CertificateCancelDelete.json" } + "Certificate cancel delete": { + "$ref": "./examples/CertificateCancelDelete.json" + } }, "summary": "Cancels a failed deletion of a certificate from the specified account.", "description": "If you try to delete a certificate that is being used by a pool or compute node, the status of the certificate changes to deleteFailed. If you decide that you want to continue using the certificate, you can use this operation to set the status of the certificate back to active. If you intend to delete the certificate, you do not need to run this operation after the deletion failed. You must make sure that the certificate is not being used by any resources, and then you can try again to delete the certificate.", @@ -1206,7 +1226,9 @@ ], "operationId": "Certificate_Delete", "x-ms-examples": { - "Certificate delete": { "$ref": "./examples/CertificateDelete.json" } + "Certificate delete": { + "$ref": "./examples/CertificateDelete.json" + } }, "summary": "Deletes a certificate from the specified account.", "description": "You cannot delete a certificate if a resource (pool or compute node) is using it. Before you can delete a certificate, you must therefore make sure that the certificate is not associated with any existing pools, the certificate is not installed on any compute nodes (even if you remove a certificate from a pool, it is not removed from existing compute nodes in that pool until they restart), and no running tasks depend on the certificate. If you try to delete a certificate that is in use, the deletion fails. The certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the certificate.", @@ -1315,7 +1337,9 @@ ], "operationId": "Certificate_Get", "x-ms-examples": { - "Certificate get": { "$ref": "./examples/CertificateGet.json" } + "Certificate get": { + "$ref": "./examples/CertificateGet.json" + } }, "description": "Gets information about the specified certificate.", "x-ms-request-id": "request-id", @@ -1438,7 +1462,9 @@ ], "operationId": "File_DeleteFromTask", "x-ms-examples": { - "File delete from task": { "$ref": "./examples/FileDeleteFromTask.json" } + "File delete from task": { + "$ref": "./examples/FileDeleteFromTask.json" + } }, "summary": "Deletes the specified task file from the compute node where the task ran.", "x-ms-request-id": "request-id", @@ -1549,7 +1575,9 @@ ], "operationId": "File_GetFromTask", "x-ms-examples": { - "Get File From Task": { "$ref": "./examples/FileGetFromTask.json" } + "Get File From Task": { + "$ref": "./examples/FileGetFromTask.json" + } }, "description": "Returns the content of the specified task file.", "x-ms-request-id": "request-id", @@ -1729,7 +1757,9 @@ ], "operationId": "File_GetPropertiesFromTask", "x-ms-examples": { - "File get properties from task": { "$ref": "./examples/FileGetPropertiesFromTask.json" } + "File get properties from task": { + "$ref": "./examples/FileGetPropertiesFromTask.json" + } }, "description": "Gets the properties of the specified task file.", "x-ms-request-id": "request-id", @@ -1894,7 +1924,9 @@ ], "operationId": "File_DeleteFromComputeNode", "x-ms-examples": { - "File delete from node": { "$ref": "./examples/FileDeleteFromNode.json" } + "File delete from node": { + "$ref": "./examples/FileDeleteFromNode.json" + } }, "summary": "Deletes the specified file from the compute node.", "x-ms-request-id": "request-id", @@ -2005,7 +2037,9 @@ ], "operationId": "File_GetFromComputeNode", "x-ms-examples": { - "Get File From Compute Node": { "$ref": "./examples/FileGetFromNode.json" } + "Get File From Compute Node": { + "$ref": "./examples/FileGetFromNode.json" + } }, "description": "Returns the content of the specified compute node file.", "x-ms-request-id": "request-id", @@ -2185,7 +2219,9 @@ ], "operationId": "File_GetPropertiesFromComputeNode", "x-ms-examples": { - "File get properties from node": { "$ref": "./examples/FileGetPropertiesFromNode.json" } + "File get properties from node": { + "$ref": "./examples/FileGetPropertiesFromNode.json" + } }, "description": "Gets the properties of the specified compute node file.", "x-ms-request-id": "request-id", @@ -2353,7 +2389,9 @@ }, "operationId": "File_ListFromTask", "x-ms-examples": { - "File list from task": { "$ref": "./examples/FileListFromTask.json" } + "File list from task": { + "$ref": "./examples/FileListFromTask.json" + } }, "summary": "Lists the files in a task's directory on its compute node.", "x-ms-request-id": "request-id", @@ -2501,7 +2539,9 @@ }, "operationId": "File_ListFromComputeNode", "x-ms-examples": { - "File list from node": { "$ref": "./examples/FileListFromNode.json" } + "File list from node": { + "$ref": "./examples/FileListFromNode.json" + } }, "summary": "Lists all of the files in task directories on the specified compute node.", "x-ms-request-id": "request-id", @@ -2646,7 +2686,9 @@ ], "operationId": "JobSchedule_Exists", "x-ms-examples": { - "Check Job Schedule Exists": { "$ref": "./examples/JobScheduleExists.json" } + "Check Job Schedule Exists": { + "$ref": "./examples/JobScheduleExists.json" + } }, "summary": "Checks the specified job schedule exists.", "x-ms-request-id": "request-id", @@ -2792,7 +2834,9 @@ ], "operationId": "JobSchedule_Delete", "x-ms-examples": { - "JobSchedule delete": { "$ref": "./examples/JobScheduleDelete.json" } + "JobSchedule delete": { + "$ref": "./examples/JobScheduleDelete.json" + } }, "summary": "Deletes a job schedule from the specified account.", "description": "When you delete a job schedule, this also deletes all jobs and tasks under that schedule. When tasks are deleted, all the files in their working directories on the compute nodes are also deleted (the retention period is ignored). The job schedule statistics are no longer accessible once the job schedule is deleted, though they are still counted towards account lifetime statistics.", @@ -2925,7 +2969,9 @@ ], "operationId": "JobSchedule_Get", "x-ms-examples": { - "JobSchedule get": { "$ref": "./examples/JobScheduleGet.json" } + "JobSchedule get": { + "$ref": "./examples/JobScheduleGet.json" + } }, "description": "Gets information about the specified job schedule.", "x-ms-request-id": "request-id", @@ -3091,7 +3137,9 @@ ], "operationId": "JobSchedule_Patch", "x-ms-examples": { - "JobSchedule patch": { "$ref": "./examples/JobSchedulePatch.json" } + "JobSchedule patch": { + "$ref": "./examples/JobSchedulePatch.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This replaces only the job schedule properties specified in the request. For example, if the schedule property is not specified with this request, then the Batch service will keep the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3248,7 +3296,9 @@ ], "operationId": "JobSchedule_Update", "x-ms-examples": { - "JobSchedule update": { "$ref": "./examples/JobScheduleUpdate.json" } + "JobSchedule update": { + "$ref": "./examples/JobScheduleUpdate.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This fully replaces all the updatable properties of the job schedule. For example, if the schedule property is not specified with this request, then the Batch service will remove the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3407,7 +3457,9 @@ ], "operationId": "JobSchedule_Disable", "x-ms-examples": { - "JobSchedule disable": { "$ref": "./examples/JobScheduleDisable.json" } + "JobSchedule disable": { + "$ref": "./examples/JobScheduleDisable.json" + } }, "summary": "Disables a job schedule.", "description": "No new jobs will be created until the job schedule is enabled again.", @@ -3557,7 +3609,9 @@ ], "operationId": "JobSchedule_Enable", "x-ms-examples": { - "JobSchedule enable": { "$ref": "./examples/JobScheduleEnable.json" } + "JobSchedule enable": { + "$ref": "./examples/JobScheduleEnable.json" + } }, "summary": "Enables a job schedule.", "x-ms-request-id": "request-id", @@ -3706,7 +3760,9 @@ ], "operationId": "JobSchedule_Terminate", "x-ms-examples": { - "JobSchedule terminate": { "$ref": "./examples/JobScheduleTerminate.json" } + "JobSchedule terminate": { + "$ref": "./examples/JobScheduleTerminate.json" + } }, "summary": "Terminates a job schedule.", "x-ms-request-id": "request-id", @@ -3855,8 +3911,12 @@ ], "operationId": "JobSchedule_Add", "x-ms-examples": { - "Add a basic JobSchedule": { "$ref": "./examples/JobScheduleAdd_Basic.json" }, - "Add a complex JobScheduleAdd": { "$ref": "./examples/JobScheduleAdd_Complex.json" } + "Add a basic JobSchedule": { + "$ref": "./examples/JobScheduleAdd_Basic.json" + }, + "Add a complex JobScheduleAdd": { + "$ref": "./examples/JobScheduleAdd_Complex.json" + } }, "summary": "Adds a job schedule to the specified account.", "x-ms-request-id": "request-id", @@ -3966,7 +4026,9 @@ }, "operationId": "JobSchedule_List", "x-ms-examples": { - "JobSchedule list": { "$ref": "./examples/JobScheduleList.json" } + "JobSchedule list": { + "$ref": "./examples/JobScheduleList.json" + } }, "summary": "Lists all of the job schedules in the specified account.", "x-ms-request-id": "request-id", @@ -4110,7 +4172,9 @@ ], "operationId": "Job_Delete", "x-ms-examples": { - "Delete Job": { "$ref": "./examples/JobDelete.json" } + "Delete Job": { + "$ref": "./examples/JobDelete.json" + } }, "summary": "Deletes a job.", "description": "Deleting a job also deletes all tasks that are part of that job, and all job statistics. This also overrides the retention period for task data; that is, if the job contains tasks which are still retained on compute nodes, the Batch services deletes those tasks' working directories and all their contents. When a Delete Job request is received, the Batch service sets the job to the deleting state. All update operations on a job that is in deleting state will fail with status code 409 (Conflict), with additional information indicating that the job is being deleted.", @@ -4243,7 +4307,9 @@ ], "operationId": "Job_Get", "x-ms-examples": { - "Job get": { "$ref": "./examples/JobGet.json" } + "Job get": { + "$ref": "./examples/JobGet.json" + } }, "summary": "Gets information about the specified job.", "x-ms-request-id": "request-id", @@ -4409,7 +4475,9 @@ ], "operationId": "Job_Patch", "x-ms-examples": { - "Job patch": { "$ref": "./examples/JobPatch.json" } + "Job patch": { + "$ref": "./examples/JobPatch.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This replaces only the job properties specified in the request. For example, if the job has constraints, and a request does not specify the constraints element, then the job keeps the existing constraints.", @@ -4566,7 +4634,9 @@ ], "operationId": "Job_Update", "x-ms-examples": { - "Job update": { "$ref": "./examples/JobUpdate.json" } + "Job update": { + "$ref": "./examples/JobUpdate.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This fully replaces all the updatable properties of the job. For example, if the job has constraints associated with it and if constraints is not specified with this request, then the Batch service will remove the existing constraints.", @@ -4725,7 +4795,9 @@ ], "operationId": "Job_Disable", "x-ms-examples": { - "Job disable": { "$ref": "./examples/JobDisable.json" } + "Job disable": { + "$ref": "./examples/JobDisable.json" + } }, "summary": "Disables the specified job, preventing new tasks from running.", "description": "The Batch Service immediately moves the job to the disabling state. Batch then uses the disableTasks parameter to determine what to do with the currently running tasks of the job. The job remains in the disabling state until the disable operation is completed and all tasks have been dealt with according to the disableTasks option; the job then moves to the disabled state. No new tasks are started under the job until it moves back to active state. If you try to disable a job that is in any state other than active, disabling, or disabled, the request fails with status code 409.", @@ -4884,7 +4956,9 @@ ], "operationId": "Job_Enable", "x-ms-examples": { - "Job enable": { "$ref": "./examples/JobEnable.json" } + "Job enable": { + "$ref": "./examples/JobEnable.json" + } }, "summary": "Enables the specified job, allowing new tasks to run.", "description": "When you call this API, the Batch service sets a disabled job to the enabling state. After the this operation is completed, the job moves to the active state, and scheduling of new tasks under the job resumes. The Batch service does not allow a task to remain in the active state for more than 7 days. Therefore, if you enable a job containing active tasks which were added more than 7 days ago, those tasks will not run.", @@ -5034,7 +5108,9 @@ ], "operationId": "Job_Terminate", "x-ms-examples": { - "Job terminate": { "$ref": "./examples/JobTerminate.json" } + "Job terminate": { + "$ref": "./examples/JobTerminate.json" + } }, "summary": "Terminates the specified job, marking it as completed.", "description": "When a Terminate Job request is received, the Batch service sets the job to the terminating state. The Batch service then terminates any running tasks associated with the job and runs any required job release tasks. Then the job moves into the completed state. If there are any tasks in the job in the active state, they will remain in the active state. Once a job is terminated, new tasks cannot be added and any remaining active tasks will not be scheduled.", @@ -5193,8 +5269,12 @@ ], "operationId": "Job_Add", "x-ms-examples": { - "Add a basic job": { "$ref": "./examples/JobAdd_Basic.json" }, - "Add a complex job": { "$ref": "./examples/JobAdd_Complex.json" } + "Add a basic job": { + "$ref": "./examples/JobAdd_Basic.json" + }, + "Add a complex job": { + "$ref": "./examples/JobAdd_Complex.json" + } }, "summary": "Adds a job to the specified account.", "description": "The Batch service supports two ways to control the work done as part of a job. In the first approach, the user specifies a Job Manager task. The Batch service launches this task when it is ready to start the job. The Job Manager task controls all other tasks that run under this job, by using the Task APIs. In the second approach, the user directly controls the execution of tasks under an active job, by using the Task APIs. Also note: when naming jobs, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5305,7 +5385,9 @@ }, "operationId": "Job_List", "x-ms-examples": { - "Job list": { "$ref": "./examples/JobList.json" } + "Job list": { + "$ref": "./examples/JobList.json" + } }, "summary": "Lists all of the jobs in the specified account.", "x-ms-request-id": "request-id", @@ -5451,7 +5533,9 @@ "nextLinkName": "odata.nextLink" }, "x-ms-examples": { - "List Job Under Job Schedule": { "$ref": "./examples/JobListFromJobSchedule.json" } + "List Job Under Job Schedule": { + "$ref": "./examples/JobListFromJobSchedule.json" + } }, "operationId": "Job_ListFromJobSchedule", "summary": "Lists the jobs that have been created under the specified job schedule.", @@ -5606,7 +5690,9 @@ }, "operationId": "Job_ListPreparationAndReleaseTaskStatus", "x-ms-examples": { - "Job list preparation and release task status": { "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" } + "Job list preparation and release task status": { + "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" + } }, "summary": "Lists the execution status of the Job Preparation and Job Release task for the specified job across the compute nodes where the job has run.", "description": "This API returns the Job Preparation and Job Release task status on all compute nodes that have run the Job Preparation or Job Release task. This includes nodes which have since been removed from the pool. If this API is invoked on a job which has no Job Preparation or Job Release task, the Batch service returns HTTP status code 409 (Conflict) with an error code of JobPreparationTaskNotSpecified.", @@ -5748,7 +5834,9 @@ ], "operationId": "Job_GetTaskCounts", "x-ms-examples": { - "Job get task counts": { "$ref": "./examples/JobGetTaskCounts.json" } + "Job get task counts": { + "$ref": "./examples/JobGetTaskCounts.json" + } }, "summary": "Gets the task counts for the specified job.", "description": "Task counts provide a count of the tasks by active, running or completed task state, and a count of tasks which succeeded or failed. Tasks in the preparing state are counted as running. If the validationStatus is unvalidated, then the Batch service has not been able to check state counts against the task states as reported in the List Tasks API. The validationStatus may be unvalidated if the job contains more than 200,000 tasks.", @@ -5846,9 +5934,15 @@ ], "operationId": "Pool_Add", "x-ms-examples": { - "Add a CloudServiceConfiguration pool": { "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" }, - "Add a VirtualMachineConfiguration pool": { "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" }, - "Add a VirtualMachineConfiguration pool with containers": { "$ref": "./examples/PoolAdd_VirtualMachineConfigurationWithContainers.json" } + "Add a CloudServiceConfiguration pool": { + "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool": { + "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool with containers": { + "$ref": "./examples/PoolAdd_VirtualMachineConfigurationWithContainers.json" + } }, "summary": "Adds a pool to the specified account.", "description": "When naming pools, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5959,7 +6053,9 @@ }, "operationId": "Pool_List", "x-ms-examples": { - "Pool list": { "$ref": "./examples/PoolList_Basic.json" } + "Pool list": { + "$ref": "./examples/PoolList_Basic.json" + } }, "summary": "Lists all of the pools in the specified account.", "x-ms-request-id": "request-id", @@ -6103,7 +6199,9 @@ ], "operationId": "Pool_Delete", "x-ms-examples": { - "Pool delete": { "$ref": "./examples/PoolDelete.json" } + "Pool delete": { + "$ref": "./examples/PoolDelete.json" + } }, "summary": "Deletes a pool from the specified account.", "description": "When you request that a pool be deleted, the following actions occur: the pool state is set to deleting; any ongoing resize operation on the pool are stopped; the Batch service starts resizing the pool to zero nodes; any tasks running on existing nodes are terminated and requeued (as if a resize pool operation had been requested with the default requeue option); finally, the pool is removed from the system. Because running tasks are requeued, the user can rerun these tasks by updating their job to target a different pool. The tasks can then run on the new pool. If you want to override the requeue behavior, then you should call resize pool explicitly to shrink the pool to zero size before deleting the pool. If you call an Update, Patch or Delete API on a pool in the deleting state, it will fail with HTTP status code 409 with error code PoolBeingDeleted.", @@ -6236,7 +6334,9 @@ ], "operationId": "Pool_Exists", "x-ms-examples": { - "Check Pool Exists": { "$ref": "./examples/PoolExists.json" } + "Check Pool Exists": { + "$ref": "./examples/PoolExists.json" + } }, "description": "Gets basic properties of a pool.", "x-ms-request-id": "request-id", @@ -6382,7 +6482,9 @@ ], "operationId": "Pool_Get", "x-ms-examples": { - "Pool get": { "$ref": "./examples/PoolGet_Basic.json" } + "Pool get": { + "$ref": "./examples/PoolGet_Basic.json" + } }, "description": "Gets information about the specified pool.", "x-ms-request-id": "request-id", @@ -6548,7 +6650,9 @@ ], "operationId": "Pool_Patch", "x-ms-examples": { - "Patch the Pool": { "$ref": "./examples/PoolPatch.json" } + "Patch the Pool": { + "$ref": "./examples/PoolPatch.json" + } }, "summary": "Updates the properties of the specified pool.", "description": "This only replaces the pool properties specified in the request. For example, if the pool has a start task associated with it, and a request does not specify a start task element, then the pool keeps the existing start task.", @@ -6707,7 +6811,9 @@ ], "operationId": "Pool_DisableAutoScale", "x-ms-examples": { - "Disable pool autoscale": { "$ref": "./examples/PoolDisableAutoScale.json" } + "Disable pool autoscale": { + "$ref": "./examples/PoolDisableAutoScale.json" + } }, "summary": "Disables automatic scaling for a pool.", "x-ms-request-id": "request-id", @@ -6814,7 +6920,9 @@ ], "operationId": "Pool_EnableAutoScale", "x-ms-examples": { - "Pool enable autoscale": { "$ref": "./examples/PoolEnableAutoscale.json" } + "Pool enable autoscale": { + "$ref": "./examples/PoolEnableAutoscale.json" + } }, "summary": "Enables automatic scaling for a pool.", "description": "You cannot enable automatic scaling on a pool if a resize operation is in progress on the pool. If automatic scaling of the pool is currently disabled, you must specify a valid autoscale formula as part of the request. If automatic scaling of the pool is already enabled, you may specify a new autoscale formula and/or a new evaluation interval. You cannot call this API for the same pool more than once every 30 seconds.", @@ -6973,7 +7081,9 @@ ], "operationId": "Pool_EvaluateAutoScale", "x-ms-examples": { - "Pool evaluate autoscale": { "$ref": "./examples/PoolEvaluateAutoscale.json" } + "Pool evaluate autoscale": { + "$ref": "./examples/PoolEvaluateAutoscale.json" + } }, "summary": "Gets the result of evaluating an automatic scaling formula on the pool.", "description": "This API is primarily for validating an autoscale formula, as it simply returns the result without applying the formula to the pool. The pool must have auto scaling enabled in order to evaluate a formula.", @@ -7093,7 +7203,9 @@ ], "operationId": "Pool_Resize", "x-ms-examples": { - "Pool resize": { "$ref": "./examples/PoolResize.json" } + "Pool resize": { + "$ref": "./examples/PoolResize.json" + } }, "summary": "Changes the number of compute nodes that are assigned to a pool.", "description": "You can only resize a pool when its allocation state is steady. If the pool is already resizing, the request fails with status code 409. When you resize a pool, the pool's allocation state changes from steady to resizing. You cannot resize pools which are configured for automatic scaling. If you try to do this, the Batch service returns an error 409. If you resize a pool downwards, the Batch service chooses which nodes to remove. To remove specific nodes, use the pool remove nodes API instead.", @@ -7252,7 +7364,9 @@ ], "operationId": "Pool_StopResize", "x-ms-examples": { - "Pool stop resize": { "$ref": "./examples/PoolStopResize.json" } + "Pool stop resize": { + "$ref": "./examples/PoolStopResize.json" + } }, "summary": "Stops an ongoing resize operation on the pool.", "description": "This does not restore the pool to its previous state before the resize operation: it only stops any further changes being made, and the pool maintains its current state. After stopping, the pool stabilizes at the number of nodes it was at when the stop operation was done. During the stop operation, the pool allocation state changes first to stopping and then to steady. A resize operation need not be an explicit resize pool request; this API can also be used to halt the initial sizing of the pool when it is created.", @@ -7402,7 +7516,9 @@ ], "operationId": "Pool_UpdateProperties", "x-ms-examples": { - "Pool update": { "$ref": "./examples/PoolUpdate.json" } + "Pool update": { + "$ref": "./examples/PoolUpdate.json" + } }, "summary": "Updates the properties of the specified pool.", "description": "This fully replaces all the updatable properties of the pool. For example, if the pool has a start task associated with it and if start task is not specified with this request, then the Batch service will remove the existing start task.", @@ -7519,7 +7635,9 @@ ], "operationId": "Pool_UpgradeOS", "x-ms-examples": { - "Upgrade OS of the pool": { "$ref": "./examples/PoolUpgradeOS.json" } + "Upgrade OS of the pool": { + "$ref": "./examples/PoolUpgradeOS.json" + } }, "summary": "Upgrades the operating system of the specified pool.", "description": "During an upgrade, the Batch service upgrades each compute node in the pool. When a compute node is chosen for upgrade, any tasks running on that node are removed from the node and returned to the queue to be rerun later (or on a different compute node). The node will be unavailable until the upgrade is complete. This operation results in temporarily reduced pool capacity as nodes are taken out of service to be upgraded. Although the Batch service tries to avoid upgrading all compute nodes at the same time, it does not guarantee to do this (particularly on small pools); therefore, the pool may be temporarily unavailable to run tasks. When this operation runs, the pool state changes to upgrading. When all compute nodes have finished upgrading, the pool state returns to active. While the upgrade is in progress, the pool's currentOSVersion reflects the OS version that nodes are upgrading from, and targetOSVersion reflects the OS version that nodes are upgrading to. Once the upgrade is complete, currentOSVersion is updated to reflect the OS version now running on all nodes. This operation can only be invoked on pools created with the cloudServiceConfiguration property.", @@ -7678,7 +7796,9 @@ ], "operationId": "Pool_RemoveNodes", "x-ms-examples": { - "Pool remove nodes": { "$ref": "./examples/PoolRemoveNodes.json" } + "Pool remove nodes": { + "$ref": "./examples/PoolRemoveNodes.json" + } }, "summary": "Removes compute nodes from the specified pool.", "description": "This operation can only run when the allocation state of the pool is steady. When this operation runs, the allocation state changes from steady to resizing.", @@ -7837,9 +7957,15 @@ ], "operationId": "Task_Add", "x-ms-examples": { - "Add a basic task": { "$ref": "./examples/TaskAdd_Basic.json" }, - "Add a task with exit conditions": { "$ref": "./examples/TaskAdd_ExitConditions.json" }, - "Add a task with container settings": { "$ref": "./examples/TaskAdd_ContainerSettings.json" } + "Add a basic task": { + "$ref": "./examples/TaskAdd_Basic.json" + }, + "Add a task with exit conditions": { + "$ref": "./examples/TaskAdd_ExitConditions.json" + }, + "Add a task with container settings": { + "$ref": "./examples/TaskAdd_ContainerSettings.json" + } }, "summary": "Adds a task to the specified job.", "description": "The maximum lifetime of a task from addition to completion is 7 days. If a task has not completed within 7 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.", @@ -7957,7 +8083,9 @@ }, "operationId": "Task_List", "x-ms-examples": { - "Task list": { "$ref": "./examples/TaskList.json" } + "Task list": { + "$ref": "./examples/TaskList.json" + } }, "summary": "Lists all of the tasks that are associated with the specified job.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -8109,8 +8237,12 @@ ], "operationId": "Task_AddCollection", "x-ms-examples": { - "Add a basic collection of tasks": { "$ref": "./examples/TaskAddCollection_Basic.json" }, - "Add a complex collection of tasks": { "$ref": "./examples/TaskAddCollection_Complex.json" } + "Add a basic collection of tasks": { + "$ref": "./examples/TaskAddCollection_Basic.json" + }, + "Add a complex collection of tasks": { + "$ref": "./examples/TaskAddCollection_Complex.json" + } }, "summary": "Adds a collection of tasks to the specified job.", "description": "Note that each task must have a unique ID. The Batch service may not return the results for each task in the same order the tasks were submitted in this request. If the server times out or the connection is closed during the request, the request may have been partially or fully processed, or not at all. In such cases, the user should re-issue the request. Note that it is up to the user to correctly handle failures when re-issuing a request. For example, you should use the same task IDs during a retry so that if the prior operation succeeded, the retry will not create extra tasks unexpectedly. If the response contains any tasks which failed to add, a client can retry the request. In a retry, it is most efficient to resubmit only tasks that failed to add, and to omit tasks that were successfully added on the first attempt. The maximum lifetime of a task from addition to completion is 7 days. If a task has not completed within 7 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.", @@ -8215,7 +8347,9 @@ ], "operationId": "Task_Delete", "x-ms-examples": { - "Task delete": { "$ref": "./examples/TaskDelete.json" } + "Task delete": { + "$ref": "./examples/TaskDelete.json" + } }, "summary": "Deletes a task from the specified job.", "description": "When a task is deleted, all of the files in its directory on the compute node where it ran are also deleted (regardless of the retention time). For multi-instance tasks, the delete task operation applies synchronously to the primary task; subtasks and their files are then deleted asynchronously in the background.", @@ -8355,7 +8489,9 @@ ], "operationId": "Task_Get", "x-ms-examples": { - "Task get": { "$ref": "./examples/TaskGet.json" } + "Task get": { + "$ref": "./examples/TaskGet.json" + } }, "summary": "Gets information about the specified task.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -8533,7 +8669,9 @@ ], "operationId": "Task_Update", "x-ms-examples": { - "Task update": { "$ref": "./examples/TaskUpdate.json" } + "Task update": { + "$ref": "./examples/TaskUpdate.json" + } }, "description": "Updates the properties of the specified task.", "x-ms-request-id": "request-id", @@ -8698,7 +8836,9 @@ ], "operationId": "Task_ListSubtasks", "x-ms-examples": { - "Task list subtasks": { "$ref": "./examples/TaskListSubtasks.json" } + "Task list subtasks": { + "$ref": "./examples/TaskListSubtasks.json" + } }, "summary": "Lists all of the subtasks that are associated with the specified multi-instance task.", "description": "If the task is not a multi-instance task then this returns an empty collection.", @@ -8822,7 +8962,9 @@ ], "operationId": "Task_Terminate", "x-ms-examples": { - "Task terminate": { "$ref": "./examples/TaskTerminate.json" } + "Task terminate": { + "$ref": "./examples/TaskTerminate.json" + } }, "summary": "Terminates the specified task.", "description": "When the task has been terminated, it moves to the completed state. For multi-instance tasks, the terminate task operation applies synchronously to the primary task; subtasks are then terminated asynchronously in the background.", @@ -8979,7 +9121,9 @@ ], "operationId": "Task_Reactivate", "x-ms-examples": { - "Task reactivate": { "$ref": "./examples/TaskReactivate.json" } + "Task reactivate": { + "$ref": "./examples/TaskReactivate.json" + } }, "summary": "Reactivates a task, allowing it to run again even if its retry count has been exhausted.", "description": "Reactivation makes a task eligible to be retried again up to its maximum retry count. The task's state is changed to active. As the task is no longer in the completed state, any previous exit code or failure information is no longer available after reactivation. Each time a task is reactivated, its retry count is reset to 0. Reactivation will fail for tasks that are not completed or that previously completed successfully (with an exit code of 0). Additionally, it will fail if the job has completed (or is terminating or deleting).", @@ -9136,7 +9280,9 @@ ], "operationId": "ComputeNode_AddUser", "x-ms-examples": { - "Node add user": { "$ref": "./examples/NodeAddUser.json" } + "Node add user": { + "$ref": "./examples/NodeAddUser.json" + } }, "summary": "Adds a user account to the specified compute node.", "description": "You can add a user account to a node only when it is in the idle or running state.", @@ -9260,7 +9406,9 @@ ], "operationId": "ComputeNode_DeleteUser", "x-ms-examples": { - "Node delete user": { "$ref": "./examples/NodeDeleteUser.json" } + "Node delete user": { + "$ref": "./examples/NodeDeleteUser.json" + } }, "summary": "Deletes a user account from the specified compute node.", "description": "You can delete a user account to a node only when it is in the idle or running state.", @@ -9365,7 +9513,9 @@ ], "operationId": "ComputeNode_UpdateUser", "x-ms-examples": { - "Node update user": { "$ref": "./examples/NodeUpdateUser.json" } + "Node update user": { + "$ref": "./examples/NodeUpdateUser.json" + } }, "summary": "Updates the password and expiration time of a user account on the specified compute node.", "description": "This operation replaces of all the updatable properties of the account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user account on a node only when it is in the idle or running state.", @@ -9496,7 +9646,9 @@ ], "operationId": "ComputeNode_Get", "x-ms-examples": { - "Node get": { "$ref": "./examples/NodeGet_Basic.json" } + "Node get": { + "$ref": "./examples/NodeGet_Basic.json" + } }, "summary": "Gets information about the specified compute node.", "x-ms-request-id": "request-id", @@ -9619,7 +9771,9 @@ ], "operationId": "ComputeNode_Reboot", "x-ms-examples": { - "Node reboot": { "$ref": "./examples/NodeReboot.json" } + "Node reboot": { + "$ref": "./examples/NodeReboot.json" + } }, "summary": "Restarts the specified compute node.", "description": "You can restart a node only if it is in an idle or running state.", @@ -9743,7 +9897,9 @@ ], "operationId": "ComputeNode_Reimage", "x-ms-examples": { - "Node reimage": { "$ref": "./examples/NodeReimage.json" } + "Node reimage": { + "$ref": "./examples/NodeReimage.json" + } }, "summary": "Reinstalls the operating system on the specified compute node.", "description": "You can reinstall the operating system on a node only if it is in an idle or running state. This API can be invoked only on pools created with the cloud service configuration property.", @@ -9867,7 +10023,9 @@ ], "operationId": "ComputeNode_DisableScheduling", "x-ms-examples": { - "Node disable scheduling": { "$ref": "./examples/NodeDisableScheduling.json" } + "Node disable scheduling": { + "$ref": "./examples/NodeDisableScheduling.json" + } }, "summary": "Disables task scheduling on the specified compute node.", "description": "You can disable task scheduling on a node only if its current scheduling state is enabled.", @@ -9991,7 +10149,9 @@ ], "operationId": "ComputeNode_EnableScheduling", "x-ms-examples": { - "Node enable scheduling": { "$ref": "./examples/NodeEnableScheduling.json" } + "Node enable scheduling": { + "$ref": "./examples/NodeEnableScheduling.json" + } }, "summary": "Enables task scheduling on the specified compute node.", "description": "You can enable task scheduling on a node only if its current scheduling state is disabled", @@ -10106,7 +10266,9 @@ ], "operationId": "ComputeNode_GetRemoteLoginSettings", "x-ms-examples": { - "Node get remote login settings": { "$ref": "./examples/NodeGetRemoteLoginSettings.json" } + "Node get remote login settings": { + "$ref": "./examples/NodeGetRemoteLoginSettings.json" + } }, "summary": "Gets the settings required for remote login to a compute node.", "description": "Before you can remotely login to a node using the remote login settings, you must create a user account on the node. This API can be invoked only on pools created with the virtual machine configuration property. For pools created with a cloud service configuration, see the GetRemoteDesktop API.", @@ -10220,7 +10382,9 @@ ], "operationId": "ComputeNode_GetRemoteDesktop", "x-ms-examples": { - "Get RDP file of the compute node": { "$ref": "./examples/NodeGetRemoteDesktop.json" } + "Get RDP file of the compute node": { + "$ref": "./examples/NodeGetRemoteDesktop.json" + } }, "summary": "Gets the Remote Desktop Protocol file for the specified compute node.", "description": "Before you can access a node by using the RDP file, you must create a user account on the node. This API can only be invoked on pools created with a cloud service configuration. For pools created with a virtual machine configuration, see the GetRemoteLoginSettings API.", @@ -10340,7 +10504,9 @@ "summary": "Upload Azure Batch service log files from the specified compute node to Azure Blob Storage.", "description": "This is for gathering Azure Batch service log files in an automated fashion from nodes if you are experiencing an error and wish to escalate to Azure support. The Azure Batch service log files should be shared with Azure support to aid in debugging issues with the Batch service.", "x-ms-examples": { - "Upload BatchService Logs": { "$ref": "./examples/NodeUploadBatchServiceLogs.json" } + "Upload BatchService Logs": { + "$ref": "./examples/NodeUploadBatchServiceLogs.json" + } }, "x-ms-request-id": "request-id", "parameters": [ @@ -10434,7 +10600,7 @@ "description": "The request to the Batch service was successful.", "schema": { "$ref": "#/definitions/UploadBatchServiceLogsResult" - } + } }, "default": { "description": "The error from the Batch service.", @@ -10455,7 +10621,9 @@ }, "operationId": "ComputeNode_List", "x-ms-examples": { - "Node list": { "$ref": "./examples/NodeList.json" } + "Node list": { + "$ref": "./examples/NodeList.json" + } }, "summary": "Lists the compute nodes in the specified pool.", "x-ms-request-id": "request-id", @@ -10628,7 +10796,15 @@ "title": "The cross data center network egress from the pool during this interval, in GiB." } }, - "required": [ "poolId", "startTime", "endTime", "vmSize", "totalCoreHours", "dataIngressGiB", "dataEgressGiB" ], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours", + "dataIngressGiB", + "dataEgressGiB" + ], "title": "Usage metrics for a pool across an aggregation interval." }, "PoolListUsageMetricsResult": { @@ -10748,7 +10924,11 @@ "title": "The aggregated wall-clock time of the dedicated compute node cores being part of the pool." } }, - "required": [ "startTime", "lastUpdateTime", "dedicatedCoreTime" ], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "title": "Statistics related to pool usage information." }, "ResourceStatistics": { @@ -10819,7 +10999,21 @@ "title": "The total amount of data in GiB of network writes across all nodes in the pool." } }, - "required": [ "startTime", "lastUpdateTime", "avgCPUPercentage", "avgMemoryGiB", "peakMemoryGiB", "avgDiskGiB", "peakDiskGiB", "diskReadIOps", "diskWriteIOps", "diskReadGiB", "diskWriteGiB", "networkReadGiB", "networkWriteGiB" ], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "title": "Statistics related to resource consumption by compute nodes in a pool." }, "PoolStatistics": { @@ -10847,7 +11041,11 @@ "title": "Statistics related to resource consumption by compute nodes in the pool." } }, - "required": [ "url", "startTime", "lastUpdateTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "title": "Contains utilization and resource usage statistics for the lifetime of a pool." }, "JobStatistics": { @@ -10926,7 +11124,22 @@ "description": "The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.) This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job." }, "NameValuePair": { @@ -11021,7 +11234,9 @@ "description": "If this is omitted on a pool, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences and HTTP status code 409. If this is omitted on a task, and no default version is specified for this application, the task fails with a pre-processing error." } }, - "required": [ "applicationId" ], + "required": [ + "applicationId" + ], "title": "A reference to an application package to be deployed to compute nodes." }, "ApplicationSummary": { @@ -11042,7 +11257,11 @@ } } }, - "required": [ "id", "displayName", "versions" ], + "required": [ + "id", + "displayName", + "versions" + ], "title": "Contains information about an application in an Azure Batch account." }, "CertificateAddParameter": { @@ -11087,7 +11306,11 @@ "description": "This is required if the certificate format is pfx. It should be omitted if the certificate format is cer." } }, - "required": [ "thumbprint", "thumbprintAlgorithm", "data" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "title": "A certificate that can be installed on compute nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -11134,7 +11357,10 @@ "description": "The file mode is returned only for files on Linux compute nodes." } }, - "required": [ "lastModified", "contentLength" ], + "required": [ + "lastModified", + "contentLength" + ], "title": "The properties of a file on a compute node." }, "NodeFile": { @@ -11238,7 +11464,9 @@ "description": "This setting can be omitted if was already provided at pool creation." } }, - "required": [ "imageName" ], + "required": [ + "imageName" + ], "title": "The container settings for a task." }, "ResourceFile": { @@ -11258,7 +11486,10 @@ "description": "This property applies only to files being downloaded to Linux compute nodes. It will be ignored if it is specified for a resourceFile which will be downloaded to a Windows node. If this property is not specified for a Linux node, then a default value of 0770 is applied to the file." } }, - "required": [ "blobSource", "filePath" ], + "required": [ + "blobSource", + "filePath" + ], "title": "A file to be downloaded from Azure blob storage to a compute node." }, "EnvironmentSetting": { @@ -11272,7 +11503,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, "ExitConditions": { @@ -11321,7 +11554,10 @@ } }, "title": "How the Batch service should respond if a task exits with a particular exit code.", - "required": [ "code", "exitOptions" ] + "required": [ + "code", + "exitOptions" + ] }, "ExitCodeRangeMapping": { "properties": { @@ -11341,7 +11577,11 @@ } }, "title": "A range of exit codes and how the Batch service should respond to exit codes within that range.", - "required": [ "start", "end", "exitOptions" ] + "required": [ + "start", + "end", + "exitOptions" + ] }, "ExitOptions": { "properties": { @@ -11492,7 +11732,10 @@ "$ref": "#/definitions/LinuxUserConfiguration" } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user used to execute tasks on an Azure Batch node." }, "TaskConstraints": { @@ -11548,7 +11791,7 @@ "title": "A list of files that the Batch service will download to the compute node before running the command line.", "description": "Files listed under this element are located in the task's working directory. There is a maximum size for the list of resource files. When the max size is exceeded, the request will fail and the response error code will be RequestEntityTooLarge. If this occurs, the collection of ResourceFiles must be reduced in size. This can be achieved using .zip files, Application Packages, or Docker Containers." }, - "outputFiles": { + "outputFiles": { "type": "array", "items": { "$ref": "#/definitions/OutputFile" @@ -11601,7 +11844,10 @@ "description": "The default value is true." } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "Specifies details of a Job Manager task.", "description": "The Job Manager task is automatically started when the job is created. The Batch service tries to schedule the Job Manager task before any other tasks in the job. When shrinking a pool, the Batch service tries to preserve compute nodes where Job Manager tasks are running for as long as possible (that is, nodes running 'normal' tasks are removed before nodes running Job Manager tasks). When a Job Manager task fails and needs to be restarted, the system tries to schedule it at the highest priority. If there are no idle nodes available, the system may terminate one of the running tasks in the pool and return it to the queue in order to make room for the Job Manager task to restart. Note that a Job Manager task in one job does not have priority over tasks in other jobs. Across jobs, only job level priorities are observed. For example, if a Job Manager in a priority 0 job needs to be restarted, it will not displace tasks of a priority 1 job. Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -11657,7 +11903,9 @@ "description": "The Job Preparation task is always rerun if a compute node is reimaged, or if the Job Preparation task did not complete (e.g. because the reboot occurred while the task was running). Therefore, you should always write a Job Preparation task to be idempotent and to behave correctly if run multiple times. The default value is true." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Preparation task to run before any tasks of the job on any given compute node.", "description": "You can use Job Preparation to prepare a compute node to run tasks for the job. Activities commonly performed in Job Preparation include: Downloading common resource files used by all the tasks in the job. The Job Preparation task can download these common resource files to the shared location on the compute node. (AZ_BATCH_NODE_ROOT_DIR\\shared), or starting a local service on the compute node so that all tasks of that job can communicate with it. If the Job Preparation task fails (that is, exhausts its retry count before exiting with exit code 0), Batch will not run tasks of this job on the compute node. The node remains ineligible to run tasks of this job until it is reimaged. The node remains active and can be used for other jobs. The Job Preparation task can run multiple times on the same compute node. Therefore, you should write the Job Preparation task to handle re-execution. If the compute node is rebooted, the Job Preparation task is run again on the node before scheduling any other task of the job, if rerunOnNodeRebootAfterSuccess is true or if the Job Preparation task did not previously complete. If the compute node is reimaged, the Job Preparation task is run again before scheduling any task of the job. Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -11710,7 +11958,9 @@ "description": "If omitted, the task runs as a non-administrative user unique to the task." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Release task to run on job completion on any compute node where the job has run.", "description": "The Job Release task runs when the job ends, because of one of the following: The user calls the Terminate Job API, or the Delete Job API while the job is still active, the job's maximum wall clock time constraint is reached, and the job is still active, or the job's Job Manager task completed, and the job is configured to terminate when the Job Manager completes. The Job Release task runs on each compute node where tasks of the job have run and the Job Preparation task ran and completed. If you reimage a compute node after it has run the Job Preparation task, and the job ends without any further tasks of the job running on that compute node (and hence the Job Preparation task does not re-run), then the Job Release task does not run on that node. If a compute node reboots while the Job Release task is still running, the Job Release task runs again when the compute node starts up. The job is not marked as complete until all Job Release tasks have completed. The Job Release task runs in the background. It does not occupy a scheduling slot; that is, it does not count towards the maxTasksPerNode limit specified on the pool." }, @@ -11739,7 +11989,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "StartTask": { @@ -11786,7 +12038,9 @@ "description": "If true and the start task fails on a compute node, the Batch service retries the start task up to its maximum retry count (maxTaskRetryCount). If the task has still not completed successfully after all retries, then the Batch service marks the compute node unusable, and will not schedule tasks to it. This condition can be detected via the node state and failure info details. If false, the Batch service will not wait for the start task to complete. In this case, other tasks can start executing on the compute node while the start task is still running; and even if the start task fails, new tasks will continue to be scheduled on the node. The default is false." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A task which is run when a compute node joins a pool in the Azure Batch service, or when the compute node is rebooted or reimaged.", "description": "Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -11865,7 +12119,10 @@ "description": "You can specify more than one visibility in this collection. The default is all accounts." } }, - "required": [ "thumbprint", "thumbprintAlgorithm" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool." }, "MetadataItem": { @@ -11879,7 +12136,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -11981,7 +12241,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -12001,7 +12261,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "vmSize" ], + "required": [ + "vmSize" + ], "title": "Specification for creating a new pool." }, "AutoPoolSpecification": { @@ -12044,7 +12306,9 @@ "title": "The pool specification for the auto pool." } }, - "required": [ "poolLifetimeOption" ], + "required": [ + "poolLifetimeOption" + ], "title": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto pool when the job is submitted." }, "PoolInformation": { @@ -12129,7 +12393,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "Specifies details of the jobs to be created on a schedule." }, "RecentJob": { @@ -12241,7 +12507,22 @@ "description": "This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job schedule." }, "CloudJobSchedule": { @@ -12350,7 +12631,11 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "schedule", "jobSpecification" ], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "title": "A job schedule that allows recurring jobs by specifying when to run jobs and a specification used to create each job." }, "CloudJobScheduleListResult": { @@ -12391,7 +12676,9 @@ "title": "A list of additional error details related to the scheduling error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "An error encountered by the Batch service when scheduling a job." }, "JobExecutionInformation": { @@ -12424,7 +12711,9 @@ "description": "This property is set only if the job is in the completed state. If the Batch service terminates the job, it sets the reason as follows: JMComplete - the Job Manager task completed, and killJobOnCompletion was set to true. MaxWallClockTimeExpiry - the job reached its maxWallClockTime constraint. TerminateJobSchedule - the job ran as part of a schedule, and the schedule terminated. AllTasksComplete - the job's onAllTasksComplete attribute is set to terminatejob, and all tasks in the job are complete. TaskFailed - the job's onTaskFailure attribute is set to performExitOptionsJobAction, and a task in the job failed with an exit condition that specified a jobAction of terminatejob. Any other string is a user-defined reason specified in a call to the 'Terminate a job' operation." } }, - "required": [ "startTime" ], + "required": [ + "startTime" + ], "title": "Contains information about the execution of a job in the Azure Batch service." }, "CloudJob": { @@ -12619,7 +12908,10 @@ "title": "Whether tasks in the job can define dependencies on each other. The default is false." } }, - "required": [ "id", "poolInfo" ], + "required": [ + "id", + "poolInfo" + ], "title": "An Azure Batch job to add." }, "CloudJobListResult": { @@ -12679,7 +12971,9 @@ "title": "A list of additional details related to the error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "Information about a task failure." }, "JobPreparationTaskExecutionInformation": { @@ -12760,7 +13054,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "retryCount", "state" ], + "required": [ + "startTime", + "retryCount", + "state" + ], "title": "Contains information about the execution of a Job Preparation task on a compute node." }, "JobReleaseTaskExecutionInformation": { @@ -12829,7 +13127,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "state" ], + "required": [ + "startTime", + "state" + ], "title": "Contains information about the execution of a Job Release task on a compute node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -12924,7 +13225,14 @@ } } }, - "required": ["active", "running", "completed", "succeeded", "failed", "validationStatus"], + "required": [ + "active", + "running", + "completed", + "succeeded", + "failed", + "validationStatus" + ], "title": "The task counts for a job." }, "AutoScaleRunError": { @@ -12964,7 +13272,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": [ "timestamp" ], + "required": [ + "timestamp" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "ResizeError": { @@ -13006,7 +13316,9 @@ "description": "This may differ from targetOSVersion if the pool state is Upgrading. In this case some virtual machines may be on the targetOSVersion and some may be on the currentOSVersion during the upgrade process. Once all virtual machines have upgraded, currentOSVersion is updated to be the same as targetOSVersion." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "ImageReference": { @@ -13134,7 +13446,7 @@ "value": "readonly", "description": "The caching mode for the disk is read only.", "name": "readOnly" - }, + }, { "value": "readwrite", "description": "The caching mode for the disk is read and write.", @@ -13182,7 +13494,10 @@ "description": "If specified, setup is performed on each node in the pool to allow tasks to run in containers. All regular tasks and job manager tasks run on this pool must specify the containerSettings property, and all other tasks may specify it." } }, - "required": [ "nodeAgentSKUId", "imageReference" ], + "required": [ + "nodeAgentSKUId", + "imageReference" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "ContainerRegistry": { @@ -13202,7 +13517,10 @@ "title": "The password to log into the registry server." } }, - "required": [ "username", "password" ], + "required": [ + "username", + "password" + ], "title": "A private container registry." }, "ContainerConfiguration": { @@ -13241,7 +13559,9 @@ "description": "If any images must be downloaded from a private registry which requires credentials, then those credentials must be provided here." } }, - "required": [ "type" ], + "required": [ + "type" + ], "title": "The configuration for container-enabled pools." }, "NetworkConfiguration": { @@ -13256,9 +13576,9 @@ } }, "endpointConfiguration": { - "$ref": "#/definitions/PoolEndpointConfiguration", - "title": "The configuration for endpoints on compute nodes in the Batch pool.", - "description": "Pool endpoint configuration is only supported on pools with the virtualMachineConfiguration property." + "$ref": "#/definitions/PoolEndpointConfiguration", + "title": "The configuration for endpoints on compute nodes in the Batch pool.", + "description": "Pool endpoint configuration is only supported on pools with the virtualMachineConfiguration property." } }, "description": "The network configuration for a pool." @@ -13462,7 +13782,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -13590,7 +13910,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -13620,7 +13940,10 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "vmSize" ], + "required": [ + "id", + "vmSize" + ], "title": "A pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -13663,7 +13986,9 @@ "description": "You can pass the affinityId of a compute node to indicate that this task needs to run on that compute node. Note that this is just a soft affinity. If the target node is busy or unavailable at the time the task is scheduled, then the task will be scheduled elsewhere." } }, - "required": [ "affinityId" ], + "required": [ + "affinityId" + ], "title": "A locality hint that can be used by the Batch service to select a compute node on which to start a task." }, "TaskExecutionInformation": { @@ -13726,7 +14051,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "requeueCount", "retryCount" ], + "required": [ + "requeueCount", + "retryCount" + ], "title": "Information about the execution of a task." }, "ComputeNodeInformation": { @@ -13780,7 +14108,9 @@ "description": "The difference between common resource files and task resource files is that common resource files are downloaded for all subtasks including the primary, whereas task resource files are downloaded only for the primary. Also note that these resource files are not downloaded to the task working directory, but instead are downloaded to the task root directory (one directory above the working directory). There is a maximum size for the list of resource files. When the max size is exceeded, the request will fail and the response error code will be RequestEntityTooLarge. If this occurs, the collection of ResourceFiles must be reduced in size. This can be achieved using .zip files, Application Packages, or Docker Containers." } }, - "required": [ "coordinationCommandLine" ], + "required": [ + "coordinationCommandLine" + ], "title": "Settings which specify how to run a multi-instance task.", "description": "Multi-instance tasks are commonly used to support MPI tasks." }, @@ -13842,7 +14172,19 @@ "title": "The total wait time of the task. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "title": "Resource usage statistics for a task." }, "TaskDependencies": { @@ -13880,7 +14222,10 @@ }, "title": "A range of task IDs that a task can depend on. All tasks with IDs in the range must complete successfully before the dependent task can be scheduled.", "description": "The start and end of the range are inclusive. For example, if a range has start 9 and end 12, then it represents tasks '9', '10', '11' and '12'.", - "required": [ "start", "end" ] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -14107,7 +14452,10 @@ "$ref": "#/definitions/AuthenticationTokenSettings" } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "An Azure Batch task to add.", "description": "Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -14123,7 +14471,9 @@ "description": "The total serialized size of this collection must be less than 1MB. If it is greater than 1MB (for example if each task has 100's of resource files or environment variables), the request will fail with code 'RequestBodyTooLarge' and should be retried again with fewer tasks." } }, - "required": [ "value" ], + "required": [ + "value" + ], "title": "A collection of Azure Batch tasks to add." }, "TaskAddResult": { @@ -14180,7 +14530,10 @@ "title": "The error encountered while attempting to add the task." } }, - "required": [ "status", "taskId" ], + "required": [ + "status", + "taskId" + ], "title": "Result for a single task added as part of an add task collection operation." }, "TaskAddCollectionResult": { @@ -14317,7 +14670,9 @@ "title": "Information about the execution of the task." } }, - "required": [ "taskState" ], + "required": [ + "taskState" + ], "title": "Information about a task running on a compute node." }, "StartTaskInformation": { @@ -14390,7 +14745,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "state", "startTime", "retryCount" ], + "required": [ + "state", + "startTime", + "retryCount" + ], "title": "Information about a start task running on a compute node." }, "ComputeNodeError": { @@ -14626,7 +14985,9 @@ "description": "The maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400." } }, - "required": [ "inboundNATPools" ], + "required": [ + "inboundNATPools" + ], "title": "The endpoint configuration for a pool." }, "InboundNATPool": { @@ -14667,7 +15028,13 @@ } } }, - "required": [ "name", "protocol", "backendPort", "frontendPortRangeStart", "frontendPortRangeEnd" ], + "required": [ + "name", + "protocol", + "backendPort", + "frontendPortRangeStart", + "frontendPortRangeEnd" + ], "title": "A inbound NAT pool that can be used to address specific ports on compute nodes in a Batch pool externally." }, "NetworkSecurityGroupRule": { @@ -14706,7 +15073,11 @@ "description": "Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400." } }, - "required": [ "priority", "access", "sourceAddressPrefix" ], + "required": [ + "priority", + "access", + "sourceAddressPrefix" + ], "title": "A network security group rule to apply to an inbound endpoint." }, "ComputeNodeEndpointConfiguration": { @@ -14719,7 +15090,9 @@ "title": "The list of inbound endpoints that are accessible on the compute node." } }, - "required": [ "inboundEndpoints" ], + "required": [ + "inboundEndpoints" + ], "title": "The endpoint configuration for the compute node." }, "InboundEndpoint": { @@ -14751,7 +15124,14 @@ "title": "The backend port number of the endpoint." } }, - "required": [ "name", "protocol", "publicIPAddress", "publicFQDN", "frontendPort", "backendPort" ], + "required": [ + "name", + "protocol", + "publicIPAddress", + "publicFQDN", + "frontendPort", + "backendPort" + ], "title": "An inbound endpoint on a compute node." }, "ComputeNodeListResult": { @@ -14798,7 +15178,9 @@ "description": "The public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux nodes. If this is specified for a Windows node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request)." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "A user account for RDP or SSH access on a compute node." }, "ComputeNodeGetRemoteLoginSettingsResult": { @@ -14813,7 +15195,10 @@ "title": "The port used for remote login to the compute node." } }, - "required": [ "remoteLoginIPAddress", "remoteLoginPort" ], + "required": [ + "remoteLoginIPAddress", + "remoteLoginPort" + ], "title": "The remote login settings for a compute node." }, "JobSchedulePatchParameter": { @@ -14860,7 +15245,10 @@ "description": "If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": [ "schedule", "jobSpecification" ], + "required": [ + "schedule", + "jobSpecification" + ], "title": "The set of changes to be made to a job schedule." }, "JobDisableParameter": { @@ -14893,7 +15281,9 @@ } } }, - "required": [ "disableTasks" ], + "required": [ + "disableTasks" + ], "title": "Options when disabling a job." }, "JobTerminateParameter": { @@ -14971,7 +15361,9 @@ "$ref": "#/definitions/OnAllTasksComplete" } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "The set of changes to be made to a job." }, "PoolEnableAutoScaleParameter": { @@ -14998,7 +15390,9 @@ "description": "The formula is validated and its results calculated, but it is not applied to the pool. To apply the formula to the pool, 'Enable automatic scaling on a pool'. For more information about specifying this formula, see Automatically scale compute nodes in an Azure Batch pool (https://azure.microsoft.com/en-us/documentation/articles/batch-automatic-scaling)." } }, - "required": [ "autoScaleFormula" ], + "required": [ + "autoScaleFormula" + ], "title": "Options for evaluating an automatic scaling formula on a pool." }, "PoolResizeParameter": { @@ -15059,7 +15453,11 @@ "description": "This list replaces any existing metadata configured on the pool. If omitted, or if you specify an empty collection, any existing metadata is removed from the pool." } }, - "required": [ "certificateReferences", "metadata", "applicationPackageReferences" ], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "title": "The set of changes to be made to a pool." }, "PoolUpgradeOSParameter": { @@ -15069,7 +15467,9 @@ "title": "The Azure Guest OS version to be installed on the virtual machines in the pool." } }, - "required": [ "targetOSVersion" ], + "required": [ + "targetOSVersion" + ], "title": "Options for upgrading the operating system of compute nodes in a pool." }, "PoolPatchParameter": { @@ -15273,7 +15673,9 @@ "$ref": "#/definitions/ComputeNodeDeallocationOption" } }, - "required": [ "nodeList" ], + "required": [ + "nodeList" + ], "title": "Options for removing compute nodes from a pool." }, "OutputFile": { @@ -15292,7 +15694,11 @@ "$ref": "#/definitions/OutputFileUploadOptions" } }, - "required": [ "filePattern", "destination", "uploadOptions" ], + "required": [ + "filePattern", + "destination", + "uploadOptions" + ], "title": "A specification for uploading files from an Azure Batch node to another location after the Batch service has finished executing the task process." }, "OutputFileDestination": { @@ -15317,7 +15723,9 @@ "description": "The URL must include a Shared Access Signature (SAS) granting write permissions to the container." } }, - "required": [ "containerUrl" ], + "required": [ + "containerUrl" + ], "title": "Specifies a file upload destination within an Azure blob storage container." }, "OutputFileUploadOptions": { @@ -15328,7 +15736,9 @@ "$ref": "#/definitions/OutputFileUploadCondition" } }, - "required": [ "uploadCondition" ], + "required": [ + "uploadCondition" + ], "title": "Details about an output file upload operation, including under what conditions to perform the upload." }, "ErrorMessage": { @@ -15777,7 +16187,10 @@ "description": "Any log file containing a log message in the time range will be uploaded. This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded, but the operation should not retrieve fewer logs than have been requested. If omitted, the default is to upload all logs available after the startTime." } }, - "required": [ "containerUrl", "startTime" ], + "required": [ + "containerUrl", + "startTime" + ], "title": "The Azure Batch service log files upload configuration for a compute node." }, "UploadBatchServiceLogsResult": { @@ -15793,7 +16206,10 @@ "title": "The number of log files which will be uploaded." } }, - "required": ["virtualDirectoryName", "numberOfFilesUploaded"], + "required": [ + "virtualDirectoryName", + "numberOfFilesUploaded" + ], "title": "The result of uploading Batch service log files from a specific compute node." }, "PoolNodeCountsListResult": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListNodeAgentSkus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListNodeAgentSkus.json index bb933a1972f3..2fcf949f1eb6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListNodeAgentSkus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListNodeAgentSkus.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListPoolNodeCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListPoolNodeCounts.json index 1e7c4371b0bb..04e1578d9764 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListPoolNodeCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListPoolNodeCounts.json @@ -117,4 +117,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/ApplicationGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/ApplicationGet.json index 53b87cb78b15..40ebabf8864e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/ApplicationGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/ApplicationGet.json @@ -8,12 +8,12 @@ "responses": { "200": { "body": { - "id": "my_application_id", - "versions": [ - "v1.0" - ], - "displayName": "my_display_name" + "id": "my_application_id", + "versions": [ + "v1.0" + ], + "displayName": "my_display_name" } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/ApplicationList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/ApplicationList.json index c61f845a3b9f..7fb0996dc826 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/ApplicationList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/ApplicationList.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateAdd.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateAdd.json index b92489ec936b..9254b3d4f7b4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateAdd.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateAdd.json @@ -4,11 +4,11 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "certificate": { - "thumbprintAlgorithm":"sha1", - "thumbprint":"0123456789abcdef0123456789abcdef01234567", - "data":"#####...", - "certificateFormat":"pfx", - "password":"certpassword" + "thumbprintAlgorithm": "sha1", + "thumbprint": "0123456789abcdef0123456789abcdef01234567", + "data": "#####...", + "certificateFormat": "pfx", + "password": "certpassword" } }, "responses": { @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateCancelDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateCancelDelete.json index d7cc675afcd8..2822389d404d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateCancelDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateCancelDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateDelete.json index 8ab72b7ff199..27ce8b78c776 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateGet.json index c5ded986307b..83c16ba407e2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateList.json index 9c4dee480d85..04f15e9b0043 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/CertificateList.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileDeleteFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileDeleteFromNode.json index 1dbad9f1795b..224b686c73e0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileDeleteFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileDeleteFromNode.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileDeleteFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileDeleteFromTask.json index a4e8cbfb8633..44678152c1b7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileDeleteFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileDeleteFromTask.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetFromNode.json index ce3d8e6e081b..ca79c4895762 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetFromNode.json @@ -17,4 +17,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetFromTask.json index e5e82c8492a1..9c0216219425 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetFromTask.json @@ -17,4 +17,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetPropertiesFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetPropertiesFromNode.json index 55982f2b88c6..e0838d3409fd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetPropertiesFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetPropertiesFromNode.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetPropertiesFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetPropertiesFromTask.json index 84dcb6d15457..c224b77c626f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetPropertiesFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileGetPropertiesFromTask.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileListFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileListFromNode.json index 5791cfda91c1..c81db379979b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileListFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileListFromNode.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileListFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileListFromTask.json index 8d884f98a2bd..e2ef96a96684 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileListFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/FileListFromTask.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobAdd_Basic.json index f149e8fffb9b..fa70f682ed07 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobAdd_Basic.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobAdd_Complex.json index fee6435cc74f..88a3b1866ecf 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobAdd_Complex.json @@ -35,7 +35,7 @@ "retentionTime": "PT1H" }, "killJobOnCompletion": false, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -76,7 +76,7 @@ "value": "myvalue" } ], - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -118,4 +118,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobDelete.json index 8e02f7686faf..d41359103cb0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobDisable.json index 8eaafc21a608..b40d44141a56 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobDisable.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobEnable.json index 8e02f7686faf..d41359103cb0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGet.json index d5086fb34ac7..3c3189ba25bc 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGet.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGetLifetimeStatistics.json index ff53de0067a1..2f8a4635f86d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimejobstats", + "url": "https://account.region.batch.core.windows.net/lifetimejobstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "userCPUTime": "PT0S", @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGetTaskCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGetTaskCounts.json index 66d8447220f6..8dbad588e431 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGetTaskCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobGetTaskCounts.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobList.json index 953d3f7d0e12..3ef7de336112 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobList.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobListFromJobSchedule.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobListFromJobSchedule.json index eaefff3b865a..c2b82cbf0503 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobListFromJobSchedule.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobListFromJobSchedule.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobListPreparationAndReleaseTaskStatus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobListPreparationAndReleaseTaskStatus.json index 17ecc61bb281..d7c084af7b46 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobListPreparationAndReleaseTaskStatus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobListPreparationAndReleaseTaskStatus.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobPatch.json index e658a182c2c4..3f05b4a73efe 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobPatch.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobPatchParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleAdd_Basic.json index 95a44125645a..a434899a079f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleAdd_Basic.json @@ -6,7 +6,7 @@ "cloudJobSchedule": { "id": "jobScheduleId", "schedule": { - "recurrenceInterval":"PT5M" + "recurrenceInterval": "PT5M" }, "jobSpecification": { "poolInfo": { @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleAdd_Complex.json index 041985629310..38d355b11114 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleAdd_Complex.json @@ -126,4 +126,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleDelete.json index 7408cdd90f59..632902a588a4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleDisable.json index ec33b1914469..54e98e15f5c4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleDisable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleEnable.json index ec33b1914469..54e98e15f5c4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleExists.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleExists.json index eb9e6a454a02..776c4019a9e8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleExists.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleExists.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleGet.json index 2dade9fbc322..9665f482d4ea 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleList.json index 201bc6c3c3e2..7ad1ba24e2f1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleList.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobSchedulePatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobSchedulePatch.json index 4840b235ca73..be3b49d26586 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobSchedulePatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobSchedulePatch.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleTerminate.json index 7408cdd90f59..632902a588a4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleTerminate.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleUpdate.json index 80d8ca0cd182..669e82de464e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobScheduleUpdate.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobTerminate.json index 9879d272935f..f1f705abe3a9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobTerminate.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobUpdate.json index bb8efbb0c186..a35013bdd654 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/JobUpdate.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobUpdateParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeAddUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeAddUser.json index 271564220174..5d7b93a9e100 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeAddUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeAddUser.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeDeleteUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeDeleteUser.json index 6e0a2dbe1226..5220e24c768d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeDeleteUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeDeleteUser.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeDisableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeDisableScheduling.json index 3926338b83af..6a703090b0d7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeDisableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeDisableScheduling.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeEnableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeEnableScheduling.json index f9d1607169ab..7232c5181886 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeEnableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeEnableScheduling.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGetRemoteDesktop.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGetRemoteDesktop.json index 84f7954819fa..47c6208378db 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGetRemoteDesktop.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGetRemoteDesktop.json @@ -11,4 +11,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGetRemoteLoginSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGetRemoteLoginSettings.json index 068c699c3de4..ad3bcb1da15c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGetRemoteLoginSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGetRemoteLoginSettings.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGet_Basic.json index d30f2f86979d..227b230fa725 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeGet_Basic.json @@ -25,7 +25,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeList.json index e9f776af3117..4d8b0694a52c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeList.json @@ -26,7 +26,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -60,7 +60,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -94,7 +94,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -115,4 +115,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeReboot.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeReboot.json index 094a82107962..cfd55bafa547 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeReboot.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeReboot.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeReimage.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeReimage.json index b5a3a4f8b97b..218bceb5df5d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeReimage.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeReimage.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeUpdateUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeUpdateUser.json index 028c6a3b779d..2bdfad30a7c0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeUpdateUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeUpdateUser.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeUploadBatchServiceLogs.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeUploadBatchServiceLogs.json index c0600c31ce46..34a370cd606b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeUploadBatchServiceLogs.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/NodeUploadBatchServiceLogs.json @@ -13,9 +13,9 @@ "responses": { "200": { "body": { - "virtualDirectoryName": "poolId/tvm-1695681911-1-20161121t182739z/0795539d-82fe-48e3-bbff-2964905b6de0", - "numberOfFilesUploaded": 8 + "virtualDirectoryName": "poolId/tvm-1695681911-1-20161121t182739z/0795539d-82fe-48e3-bbff-2964905b6de0", + "numberOfFilesUploaded": 8 } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_CloudServiceConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_CloudServiceConfiguration.json index bc016dc5d9dc..37323f269ae1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_CloudServiceConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_CloudServiceConfiguration.json @@ -9,19 +9,21 @@ "cloudServiceConfiguration": { "osFamily": "4" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -31,4 +33,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_VirtualMachineConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_VirtualMachineConfiguration.json index 1402b959ae80..68f607bc9d21 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_VirtualMachineConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_VirtualMachineConfiguration.json @@ -14,19 +14,21 @@ }, "nodeAgentSKUId": "batch.node.ubuntu 16.04" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -36,4 +38,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json index 23274234f5e9..5e793c1490f3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json @@ -20,14 +20,14 @@ ] } }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false + "enableAutoScale": false } }, "responses": { @@ -37,4 +37,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolDelete.json index 7500702af431..7e06f7b26330 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolDisableAutoScale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolDisableAutoScale.json index 7b653552b417..9dcfcd944951 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolDisableAutoScale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolDisableAutoScale.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolEnableAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolEnableAutoscale.json index e58e34bed2cc..309825ab5b48 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolEnableAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolEnableAutoscale.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolEvaluateAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolEvaluateAutoscale.json index 38d6173b6b84..e3697e4e1fd7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolEvaluateAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolEvaluateAutoscale.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolExists.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolExists.json index 947ef17c2d15..edebe5272275 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolExists.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolExists.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolGetLifetimeStatistics.json index b1542db842af..8783baf85c40 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimepoolstats", + "url": "https://account.region.batch.core.windows.net/lifetimepoolstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "usageStats": { @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolGet_Basic.json index accd6a7ece74..80775705a2db 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolGet_Basic.json @@ -27,7 +27,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "/bin/bash -c 'echo start task'", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolListUsageMetrics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolListUsageMetrics.json index 1123eb981554..75cab527b021 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolListUsageMetrics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolListUsageMetrics.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolList_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolList_Basic.json index cdbace7ce36f..445745598f3b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolList_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolList_Basic.json @@ -28,7 +28,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -51,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolPatch.json index 16223b75f16f..3130b6c78d48 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolPatch.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolRemoveNodes.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolRemoveNodes.json index 23eb37df5aec..df9b92894ffa 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolRemoveNodes.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolRemoveNodes.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolResize.json index 8b9fb30fb734..fe061bb747da 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolResize.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolStopResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolStopResize.json index 7500702af431..7e06f7b26330 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolStopResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolStopResize.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolUpdate.json index b0af85dcf205..7af75ad466e3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolUpdate.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolUpgradeOS.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolUpgradeOS.json index f2a417c79add..b9be2405b5d8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolUpgradeOS.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/PoolUpgradeOS.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAddCollection_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAddCollection_Basic.json index acc8f87da7f4..02f6798ec25e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAddCollection_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAddCollection_Basic.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAddCollection_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAddCollection_Complex.json index 9fb6476f0f64..d46dbcc2f94d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAddCollection_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAddCollection_Complex.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_Basic.json index 9571a6e655ca..85db85e9347c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_Basic.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_ContainerSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_ContainerSettings.json index d428c906e5e9..4c4350ccf6c9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_ContainerSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_ContainerSettings.json @@ -11,7 +11,7 @@ "imageName": "ubuntu", "containerRunOptions": "--rm" }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -24,4 +24,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_ExitConditions.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_ExitConditions.json index 1e97fb568908..f4df23bcdeb9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_ExitConditions.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskAdd_ExitConditions.json @@ -18,7 +18,7 @@ } ] }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -31,4 +31,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskDelete.json index 3b8458331555..7b9b3c181585 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskGet.json index 346f009e7ed0..936a4cb32e73 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskGet.json @@ -17,7 +17,7 @@ "state": "active", "stateTransitionTime": "2016-09-06T06:59:15.1161429Z", "commandLine": "cmd /c hostname", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskList.json index 23356a9d6c11..4d710ecadfbc 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskList.json @@ -18,7 +18,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.4733476Z", "commandLine": "cmd /c echo task1", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -43,7 +43,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.6736345Z", "commandLine": "cmd /c echo task2", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskListSubtasks.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskListSubtasks.json index 2c060543cc74..c6b1df47c93d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskListSubtasks.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskListSubtasks.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskReactivate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskReactivate.json index b17934cd0ed8..63ef1f9b6388 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskReactivate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskReactivate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskTerminate.json index b17934cd0ed8..63ef1f9b6388 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskTerminate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskUpdate.json index 0d7568ffdcea..fa258bcf8b52 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/TaskUpdate.json @@ -7,9 +7,9 @@ "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "taskUpdateParameter": { "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":3, - "retentionTime":"PT1H" + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": 3, + "retentionTime": "PT1H" } } }, @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/BatchService.json index d642e24b6a04..c1fab650cae8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/BatchService.json @@ -29,7 +29,9 @@ }, "operationId": "Application_List", "x-ms-examples": { - "List applications": { "$ref": "./examples/ApplicationList.json" } + "List applications": { + "$ref": "./examples/ApplicationList.json" + } }, "summary": "Lists all of the applications available in the specified account.", "description": "This operation returns only applications and versions that are available for use on compute nodes; that is, that can be used in an application package reference. For administrator information about applications and versions that are not yet available to compute nodes, use the Azure portal or the Azure Resource Manager API.", @@ -144,7 +146,9 @@ ], "operationId": "Application_Get", "x-ms-examples": { - "Get applications": { "$ref": "./examples/ApplicationGet.json" } + "Get applications": { + "$ref": "./examples/ApplicationGet.json" + } }, "summary": "Gets information about the specified application.", "description": "This operation returns only applications and versions that are available for use on compute nodes; that is, that can be used in an application package reference. For administrator information about applications and versions that are not yet available to compute nodes, use the Azure portal or the Azure Resource Manager API.", @@ -254,7 +258,9 @@ }, "operationId": "Pool_ListUsageMetrics", "x-ms-examples": { - "Pool list usage metrics": { "$ref": "./examples/PoolListUsageMetrics.json" } + "Pool list usage metrics": { + "$ref": "./examples/PoolListUsageMetrics.json" + } }, "summary": "Lists the usage metrics, aggregated by pool across individual time intervals, for the specified account.", "description": "If you do not specify a $filter clause including a poolId, the response includes all pools that existed in the account in the time range of the returned aggregation intervals. If you do not specify a $filter clause including a startTime or endTime these filters default to the start and end times of the last aggregation interval currently available; that is, only the last aggregation interval is returned.", @@ -406,7 +412,9 @@ }, "operationId": "Account_ListNodeAgentSkus", "x-ms-examples": { - "Account list node agent skus": { "$ref": "./examples/AccountListNodeAgentSkus.json" } + "Account list node agent skus": { + "$ref": "./examples/AccountListNodeAgentSkus.json" + } }, "summary": "Lists all node agent SKUs supported by the Azure Batch service.", "x-ms-request-id": "request-id", @@ -534,7 +542,9 @@ "operationId": "Account_ListPoolNodeCounts", "description": "Gets the number of nodes in each state, grouped by pool.", "x-ms-examples": { - "NodeCountsPayload": { "$ref": "./examples/AccountListPoolNodeCounts.json" } + "NodeCountsPayload": { + "$ref": "./examples/AccountListPoolNodeCounts.json" + } }, "parameters": [ { @@ -647,7 +657,9 @@ ], "operationId": "Pool_GetAllLifetimeStatistics", "x-ms-examples": { - "Pool get lifetime statistics": { "$ref": "./examples/PoolGetLifetimeStatistics.json" } + "Pool get lifetime statistics": { + "$ref": "./examples/PoolGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the pools in the specified account.", "description": "Statistics are aggregated across all pools that have ever existed in the account, from account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes.", @@ -747,7 +759,9 @@ ], "operationId": "Job_GetAllLifetimeStatistics", "x-ms-examples": { - "Job get lifetime statistics": { "$ref": "./examples/JobGetLifetimeStatistics.json" } + "Job get lifetime statistics": { + "$ref": "./examples/JobGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the jobs in the specified account.", "description": "Statistics are aggregated across all jobs that have ever existed in the account, from account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes.", @@ -847,7 +861,9 @@ ], "operationId": "Certificate_Add", "x-ms-examples": { - "Certificate add": { "$ref": "./examples/CertificateAdd.json" } + "Certificate add": { + "$ref": "./examples/CertificateAdd.json" + } }, "summary": "Adds a certificate to the specified account.", "x-ms-request-id": "request-id", @@ -957,7 +973,9 @@ }, "operationId": "Certificate_List", "x-ms-examples": { - "Certificate list": { "$ref": "./examples/CertificateList.json" } + "Certificate list": { + "$ref": "./examples/CertificateList.json" + } }, "summary": "Lists all of the certificates that have been added to the specified account.", "x-ms-request-id": "request-id", @@ -1091,7 +1109,9 @@ ], "operationId": "Certificate_CancelDeletion", "x-ms-examples": { - "Certificate cancel delete": { "$ref": "./examples/CertificateCancelDelete.json" } + "Certificate cancel delete": { + "$ref": "./examples/CertificateCancelDelete.json" + } }, "summary": "Cancels a failed deletion of a certificate from the specified account.", "description": "If you try to delete a certificate that is being used by a pool or compute node, the status of the certificate changes to deleteFailed. If you decide that you want to continue using the certificate, you can use this operation to set the status of the certificate back to active. If you intend to delete the certificate, you do not need to run this operation after the deletion failed. You must make sure that the certificate is not being used by any resources, and then you can try again to delete the certificate.", @@ -1206,7 +1226,9 @@ ], "operationId": "Certificate_Delete", "x-ms-examples": { - "Certificate delete": { "$ref": "./examples/CertificateDelete.json" } + "Certificate delete": { + "$ref": "./examples/CertificateDelete.json" + } }, "summary": "Deletes a certificate from the specified account.", "description": "You cannot delete a certificate if a resource (pool or compute node) is using it. Before you can delete a certificate, you must therefore make sure that the certificate is not associated with any existing pools, the certificate is not installed on any compute nodes (even if you remove a certificate from a pool, it is not removed from existing compute nodes in that pool until they restart), and no running tasks depend on the certificate. If you try to delete a certificate that is in use, the deletion fails. The certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the certificate.", @@ -1315,7 +1337,9 @@ ], "operationId": "Certificate_Get", "x-ms-examples": { - "Certificate get": { "$ref": "./examples/CertificateGet.json" } + "Certificate get": { + "$ref": "./examples/CertificateGet.json" + } }, "description": "Gets information about the specified certificate.", "x-ms-request-id": "request-id", @@ -1438,7 +1462,9 @@ ], "operationId": "File_DeleteFromTask", "x-ms-examples": { - "File delete from task": { "$ref": "./examples/FileDeleteFromTask.json" } + "File delete from task": { + "$ref": "./examples/FileDeleteFromTask.json" + } }, "summary": "Deletes the specified task file from the compute node where the task ran.", "x-ms-request-id": "request-id", @@ -1549,7 +1575,9 @@ ], "operationId": "File_GetFromTask", "x-ms-examples": { - "Get File From Task": { "$ref": "./examples/FileGetFromTask.json" } + "Get File From Task": { + "$ref": "./examples/FileGetFromTask.json" + } }, "description": "Returns the content of the specified task file.", "x-ms-request-id": "request-id", @@ -1730,7 +1758,9 @@ ], "operationId": "File_GetPropertiesFromTask", "x-ms-examples": { - "File get properties from task": { "$ref": "./examples/FileGetPropertiesFromTask.json" } + "File get properties from task": { + "$ref": "./examples/FileGetPropertiesFromTask.json" + } }, "description": "Gets the properties of the specified task file.", "x-ms-request-id": "request-id", @@ -1895,7 +1925,9 @@ ], "operationId": "File_DeleteFromComputeNode", "x-ms-examples": { - "File delete from node": { "$ref": "./examples/FileDeleteFromNode.json" } + "File delete from node": { + "$ref": "./examples/FileDeleteFromNode.json" + } }, "summary": "Deletes the specified file from the compute node.", "x-ms-request-id": "request-id", @@ -2006,7 +2038,9 @@ ], "operationId": "File_GetFromComputeNode", "x-ms-examples": { - "Get File From Compute Node": { "$ref": "./examples/FileGetFromNode.json" } + "Get File From Compute Node": { + "$ref": "./examples/FileGetFromNode.json" + } }, "description": "Returns the content of the specified compute node file.", "x-ms-request-id": "request-id", @@ -2187,7 +2221,9 @@ ], "operationId": "File_GetPropertiesFromComputeNode", "x-ms-examples": { - "File get properties from node": { "$ref": "./examples/FileGetPropertiesFromNode.json" } + "File get properties from node": { + "$ref": "./examples/FileGetPropertiesFromNode.json" + } }, "description": "Gets the properties of the specified compute node file.", "x-ms-request-id": "request-id", @@ -2355,7 +2391,9 @@ }, "operationId": "File_ListFromTask", "x-ms-examples": { - "File list from task": { "$ref": "./examples/FileListFromTask.json" } + "File list from task": { + "$ref": "./examples/FileListFromTask.json" + } }, "summary": "Lists the files in a task's directory on its compute node.", "x-ms-request-id": "request-id", @@ -2503,7 +2541,9 @@ }, "operationId": "File_ListFromComputeNode", "x-ms-examples": { - "File list from node": { "$ref": "./examples/FileListFromNode.json" } + "File list from node": { + "$ref": "./examples/FileListFromNode.json" + } }, "summary": "Lists all of the files in task directories on the specified compute node.", "x-ms-request-id": "request-id", @@ -2648,7 +2688,9 @@ ], "operationId": "JobSchedule_Exists", "x-ms-examples": { - "Check Job Schedule Exists": { "$ref": "./examples/JobScheduleExists.json" } + "Check Job Schedule Exists": { + "$ref": "./examples/JobScheduleExists.json" + } }, "summary": "Checks the specified job schedule exists.", "x-ms-request-id": "request-id", @@ -2794,7 +2836,9 @@ ], "operationId": "JobSchedule_Delete", "x-ms-examples": { - "JobSchedule delete": { "$ref": "./examples/JobScheduleDelete.json" } + "JobSchedule delete": { + "$ref": "./examples/JobScheduleDelete.json" + } }, "summary": "Deletes a job schedule from the specified account.", "description": "When you delete a job schedule, this also deletes all jobs and tasks under that schedule. When tasks are deleted, all the files in their working directories on the compute nodes are also deleted (the retention period is ignored). The job schedule statistics are no longer accessible once the job schedule is deleted, though they are still counted towards account lifetime statistics.", @@ -2927,7 +2971,9 @@ ], "operationId": "JobSchedule_Get", "x-ms-examples": { - "JobSchedule get": { "$ref": "./examples/JobScheduleGet.json" } + "JobSchedule get": { + "$ref": "./examples/JobScheduleGet.json" + } }, "description": "Gets information about the specified job schedule.", "x-ms-request-id": "request-id", @@ -3093,7 +3139,9 @@ ], "operationId": "JobSchedule_Patch", "x-ms-examples": { - "JobSchedule patch": { "$ref": "./examples/JobSchedulePatch.json" } + "JobSchedule patch": { + "$ref": "./examples/JobSchedulePatch.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This replaces only the job schedule properties specified in the request. For example, if the schedule property is not specified with this request, then the Batch service will keep the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3250,7 +3298,9 @@ ], "operationId": "JobSchedule_Update", "x-ms-examples": { - "JobSchedule update": { "$ref": "./examples/JobScheduleUpdate.json" } + "JobSchedule update": { + "$ref": "./examples/JobScheduleUpdate.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This fully replaces all the updatable properties of the job schedule. For example, if the schedule property is not specified with this request, then the Batch service will remove the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3409,7 +3459,9 @@ ], "operationId": "JobSchedule_Disable", "x-ms-examples": { - "JobSchedule disable": { "$ref": "./examples/JobScheduleDisable.json" } + "JobSchedule disable": { + "$ref": "./examples/JobScheduleDisable.json" + } }, "summary": "Disables a job schedule.", "description": "No new jobs will be created until the job schedule is enabled again.", @@ -3559,7 +3611,9 @@ ], "operationId": "JobSchedule_Enable", "x-ms-examples": { - "JobSchedule enable": { "$ref": "./examples/JobScheduleEnable.json" } + "JobSchedule enable": { + "$ref": "./examples/JobScheduleEnable.json" + } }, "summary": "Enables a job schedule.", "x-ms-request-id": "request-id", @@ -3708,7 +3762,9 @@ ], "operationId": "JobSchedule_Terminate", "x-ms-examples": { - "JobSchedule terminate": { "$ref": "./examples/JobScheduleTerminate.json" } + "JobSchedule terminate": { + "$ref": "./examples/JobScheduleTerminate.json" + } }, "summary": "Terminates a job schedule.", "x-ms-request-id": "request-id", @@ -3857,8 +3913,12 @@ ], "operationId": "JobSchedule_Add", "x-ms-examples": { - "Add a basic JobSchedule": { "$ref": "./examples/JobScheduleAdd_Basic.json" }, - "Add a complex JobScheduleAdd": { "$ref": "./examples/JobScheduleAdd_Complex.json" } + "Add a basic JobSchedule": { + "$ref": "./examples/JobScheduleAdd_Basic.json" + }, + "Add a complex JobScheduleAdd": { + "$ref": "./examples/JobScheduleAdd_Complex.json" + } }, "summary": "Adds a job schedule to the specified account.", "x-ms-request-id": "request-id", @@ -3968,7 +4028,9 @@ }, "operationId": "JobSchedule_List", "x-ms-examples": { - "JobSchedule list": { "$ref": "./examples/JobScheduleList.json" } + "JobSchedule list": { + "$ref": "./examples/JobScheduleList.json" + } }, "summary": "Lists all of the job schedules in the specified account.", "x-ms-request-id": "request-id", @@ -4112,7 +4174,9 @@ ], "operationId": "Job_Delete", "x-ms-examples": { - "Delete Job": { "$ref": "./examples/JobDelete.json" } + "Delete Job": { + "$ref": "./examples/JobDelete.json" + } }, "summary": "Deletes a job.", "description": "Deleting a job also deletes all tasks that are part of that job, and all job statistics. This also overrides the retention period for task data; that is, if the job contains tasks which are still retained on compute nodes, the Batch services deletes those tasks' working directories and all their contents. When a Delete Job request is received, the Batch service sets the job to the deleting state. All update operations on a job that is in deleting state will fail with status code 409 (Conflict), with additional information indicating that the job is being deleted.", @@ -4245,7 +4309,9 @@ ], "operationId": "Job_Get", "x-ms-examples": { - "Job get": { "$ref": "./examples/JobGet.json" } + "Job get": { + "$ref": "./examples/JobGet.json" + } }, "summary": "Gets information about the specified job.", "x-ms-request-id": "request-id", @@ -4411,7 +4477,9 @@ ], "operationId": "Job_Patch", "x-ms-examples": { - "Job patch": { "$ref": "./examples/JobPatch.json" } + "Job patch": { + "$ref": "./examples/JobPatch.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This replaces only the job properties specified in the request. For example, if the job has constraints, and a request does not specify the constraints element, then the job keeps the existing constraints.", @@ -4568,7 +4636,9 @@ ], "operationId": "Job_Update", "x-ms-examples": { - "Job update": { "$ref": "./examples/JobUpdate.json" } + "Job update": { + "$ref": "./examples/JobUpdate.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This fully replaces all the updatable properties of the job. For example, if the job has constraints associated with it and if constraints is not specified with this request, then the Batch service will remove the existing constraints.", @@ -4727,7 +4797,9 @@ ], "operationId": "Job_Disable", "x-ms-examples": { - "Job disable": { "$ref": "./examples/JobDisable.json" } + "Job disable": { + "$ref": "./examples/JobDisable.json" + } }, "summary": "Disables the specified job, preventing new tasks from running.", "description": "The Batch Service immediately moves the job to the disabling state. Batch then uses the disableTasks parameter to determine what to do with the currently running tasks of the job. The job remains in the disabling state until the disable operation is completed and all tasks have been dealt with according to the disableTasks option; the job then moves to the disabled state. No new tasks are started under the job until it moves back to active state. If you try to disable a job that is in any state other than active, disabling, or disabled, the request fails with status code 409.", @@ -4886,7 +4958,9 @@ ], "operationId": "Job_Enable", "x-ms-examples": { - "Job enable": { "$ref": "./examples/JobEnable.json" } + "Job enable": { + "$ref": "./examples/JobEnable.json" + } }, "summary": "Enables the specified job, allowing new tasks to run.", "description": "When you call this API, the Batch service sets a disabled job to the enabling state. After the this operation is completed, the job moves to the active state, and scheduling of new tasks under the job resumes. The Batch service does not allow a task to remain in the active state for more than 7 days. Therefore, if you enable a job containing active tasks which were added more than 7 days ago, those tasks will not run.", @@ -5036,7 +5110,9 @@ ], "operationId": "Job_Terminate", "x-ms-examples": { - "Job terminate": { "$ref": "./examples/JobTerminate.json" } + "Job terminate": { + "$ref": "./examples/JobTerminate.json" + } }, "summary": "Terminates the specified job, marking it as completed.", "description": "When a Terminate Job request is received, the Batch service sets the job to the terminating state. The Batch service then terminates any running tasks associated with the job and runs any required job release tasks. Then the job moves into the completed state. If there are any tasks in the job in the active state, they will remain in the active state. Once a job is terminated, new tasks cannot be added and any remaining active tasks will not be scheduled.", @@ -5195,8 +5271,12 @@ ], "operationId": "Job_Add", "x-ms-examples": { - "Add a basic job": { "$ref": "./examples/JobAdd_Basic.json" }, - "Add a complex job": { "$ref": "./examples/JobAdd_Complex.json" } + "Add a basic job": { + "$ref": "./examples/JobAdd_Basic.json" + }, + "Add a complex job": { + "$ref": "./examples/JobAdd_Complex.json" + } }, "summary": "Adds a job to the specified account.", "description": "The Batch service supports two ways to control the work done as part of a job. In the first approach, the user specifies a Job Manager task. The Batch service launches this task when it is ready to start the job. The Job Manager task controls all other tasks that run under this job, by using the Task APIs. In the second approach, the user directly controls the execution of tasks under an active job, by using the Task APIs. Also note: when naming jobs, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5307,7 +5387,9 @@ }, "operationId": "Job_List", "x-ms-examples": { - "Job list": { "$ref": "./examples/JobList.json" } + "Job list": { + "$ref": "./examples/JobList.json" + } }, "summary": "Lists all of the jobs in the specified account.", "x-ms-request-id": "request-id", @@ -5453,7 +5535,9 @@ "nextLinkName": "odata.nextLink" }, "x-ms-examples": { - "List Job Under Job Schedule": { "$ref": "./examples/JobListFromJobSchedule.json" } + "List Job Under Job Schedule": { + "$ref": "./examples/JobListFromJobSchedule.json" + } }, "operationId": "Job_ListFromJobSchedule", "summary": "Lists the jobs that have been created under the specified job schedule.", @@ -5608,7 +5692,9 @@ }, "operationId": "Job_ListPreparationAndReleaseTaskStatus", "x-ms-examples": { - "Job list preparation and release task status": { "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" } + "Job list preparation and release task status": { + "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" + } }, "summary": "Lists the execution status of the Job Preparation and Job Release task for the specified job across the compute nodes where the job has run.", "description": "This API returns the Job Preparation and Job Release task status on all compute nodes that have run the Job Preparation or Job Release task. This includes nodes which have since been removed from the pool. If this API is invoked on a job which has no Job Preparation or Job Release task, the Batch service returns HTTP status code 409 (Conflict) with an error code of JobPreparationTaskNotSpecified.", @@ -5750,7 +5836,9 @@ ], "operationId": "Job_GetTaskCounts", "x-ms-examples": { - "Job get task counts": { "$ref": "./examples/JobGetTaskCounts.json" } + "Job get task counts": { + "$ref": "./examples/JobGetTaskCounts.json" + } }, "summary": "Gets the task counts for the specified job.", "description": "Task counts provide a count of the tasks by active, running or completed task state, and a count of tasks which succeeded or failed. Tasks in the preparing state are counted as running.", @@ -5848,9 +5936,15 @@ ], "operationId": "Pool_Add", "x-ms-examples": { - "Add a CloudServiceConfiguration pool": { "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" }, - "Add a VirtualMachineConfiguration pool": { "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" }, - "Add a VirtualMachineConfiguration pool with containers": { "$ref": "./examples/PoolAdd_VirtualMachineConfigurationWithContainers.json" } + "Add a CloudServiceConfiguration pool": { + "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool": { + "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool with containers": { + "$ref": "./examples/PoolAdd_VirtualMachineConfigurationWithContainers.json" + } }, "summary": "Adds a pool to the specified account.", "description": "When naming pools, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5961,7 +6055,9 @@ }, "operationId": "Pool_List", "x-ms-examples": { - "Pool list": { "$ref": "./examples/PoolList_Basic.json" } + "Pool list": { + "$ref": "./examples/PoolList_Basic.json" + } }, "summary": "Lists all of the pools in the specified account.", "x-ms-request-id": "request-id", @@ -6105,7 +6201,9 @@ ], "operationId": "Pool_Delete", "x-ms-examples": { - "Pool delete": { "$ref": "./examples/PoolDelete.json" } + "Pool delete": { + "$ref": "./examples/PoolDelete.json" + } }, "summary": "Deletes a pool from the specified account.", "description": "When you request that a pool be deleted, the following actions occur: the pool state is set to deleting; any ongoing resize operation on the pool are stopped; the Batch service starts resizing the pool to zero nodes; any tasks running on existing nodes are terminated and requeued (as if a resize pool operation had been requested with the default requeue option); finally, the pool is removed from the system. Because running tasks are requeued, the user can rerun these tasks by updating their job to target a different pool. The tasks can then run on the new pool. If you want to override the requeue behavior, then you should call resize pool explicitly to shrink the pool to zero size before deleting the pool. If you call an Update, Patch or Delete API on a pool in the deleting state, it will fail with HTTP status code 409 with error code PoolBeingDeleted.", @@ -6238,7 +6336,9 @@ ], "operationId": "Pool_Exists", "x-ms-examples": { - "Check Pool Exists": { "$ref": "./examples/PoolExists.json" } + "Check Pool Exists": { + "$ref": "./examples/PoolExists.json" + } }, "description": "Gets basic properties of a pool.", "x-ms-request-id": "request-id", @@ -6384,7 +6484,9 @@ ], "operationId": "Pool_Get", "x-ms-examples": { - "Pool get": { "$ref": "./examples/PoolGet_Basic.json" } + "Pool get": { + "$ref": "./examples/PoolGet_Basic.json" + } }, "description": "Gets information about the specified pool.", "x-ms-request-id": "request-id", @@ -6550,7 +6652,9 @@ ], "operationId": "Pool_Patch", "x-ms-examples": { - "Patch the Pool": { "$ref": "./examples/PoolPatch.json" } + "Patch the Pool": { + "$ref": "./examples/PoolPatch.json" + } }, "summary": "Updates the properties of the specified pool.", "description": "This only replaces the pool properties specified in the request. For example, if the pool has a start task associated with it, and a request does not specify a start task element, then the pool keeps the existing start task.", @@ -6709,7 +6813,9 @@ ], "operationId": "Pool_DisableAutoScale", "x-ms-examples": { - "Disable pool autoscale": { "$ref": "./examples/PoolDisableAutoScale.json" } + "Disable pool autoscale": { + "$ref": "./examples/PoolDisableAutoScale.json" + } }, "summary": "Disables automatic scaling for a pool.", "x-ms-request-id": "request-id", @@ -6816,7 +6922,9 @@ ], "operationId": "Pool_EnableAutoScale", "x-ms-examples": { - "Pool enable autoscale": { "$ref": "./examples/PoolEnableAutoscale.json" } + "Pool enable autoscale": { + "$ref": "./examples/PoolEnableAutoscale.json" + } }, "summary": "Enables automatic scaling for a pool.", "description": "You cannot enable automatic scaling on a pool if a resize operation is in progress on the pool. If automatic scaling of the pool is currently disabled, you must specify a valid autoscale formula as part of the request. If automatic scaling of the pool is already enabled, you may specify a new autoscale formula and/or a new evaluation interval. You cannot call this API for the same pool more than once every 30 seconds.", @@ -6975,7 +7083,9 @@ ], "operationId": "Pool_EvaluateAutoScale", "x-ms-examples": { - "Pool evaluate autoscale": { "$ref": "./examples/PoolEvaluateAutoscale.json" } + "Pool evaluate autoscale": { + "$ref": "./examples/PoolEvaluateAutoscale.json" + } }, "summary": "Gets the result of evaluating an automatic scaling formula on the pool.", "description": "This API is primarily for validating an autoscale formula, as it simply returns the result without applying the formula to the pool. The pool must have auto scaling enabled in order to evaluate a formula.", @@ -7095,7 +7205,9 @@ ], "operationId": "Pool_Resize", "x-ms-examples": { - "Pool resize": { "$ref": "./examples/PoolResize.json" } + "Pool resize": { + "$ref": "./examples/PoolResize.json" + } }, "summary": "Changes the number of compute nodes that are assigned to a pool.", "description": "You can only resize a pool when its allocation state is steady. If the pool is already resizing, the request fails with status code 409. When you resize a pool, the pool's allocation state changes from steady to resizing. You cannot resize pools which are configured for automatic scaling. If you try to do this, the Batch service returns an error 409. If you resize a pool downwards, the Batch service chooses which nodes to remove. To remove specific nodes, use the pool remove nodes API instead.", @@ -7254,7 +7366,9 @@ ], "operationId": "Pool_StopResize", "x-ms-examples": { - "Pool stop resize": { "$ref": "./examples/PoolStopResize.json" } + "Pool stop resize": { + "$ref": "./examples/PoolStopResize.json" + } }, "summary": "Stops an ongoing resize operation on the pool.", "description": "This does not restore the pool to its previous state before the resize operation: it only stops any further changes being made, and the pool maintains its current state. After stopping, the pool stabilizes at the number of nodes it was at when the stop operation was done. During the stop operation, the pool allocation state changes first to stopping and then to steady. A resize operation need not be an explicit resize pool request; this API can also be used to halt the initial sizing of the pool when it is created.", @@ -7404,7 +7518,9 @@ ], "operationId": "Pool_UpdateProperties", "x-ms-examples": { - "Pool update": { "$ref": "./examples/PoolUpdate.json" } + "Pool update": { + "$ref": "./examples/PoolUpdate.json" + } }, "summary": "Updates the properties of the specified pool.", "description": "This fully replaces all the updatable properties of the pool. For example, if the pool has a start task associated with it and if start task is not specified with this request, then the Batch service will remove the existing start task.", @@ -7521,7 +7637,9 @@ ], "operationId": "Pool_UpgradeOS", "x-ms-examples": { - "Upgrade OS of the pool": { "$ref": "./examples/PoolUpgradeOS.json" } + "Upgrade OS of the pool": { + "$ref": "./examples/PoolUpgradeOS.json" + } }, "summary": "Upgrades the operating system of the specified pool.", "description": "During an upgrade, the Batch service upgrades each compute node in the pool. When a compute node is chosen for upgrade, any tasks running on that node are removed from the node and returned to the queue to be rerun later (or on a different compute node). The node will be unavailable until the upgrade is complete. This operation results in temporarily reduced pool capacity as nodes are taken out of service to be upgraded. Although the Batch service tries to avoid upgrading all compute nodes at the same time, it does not guarantee to do this (particularly on small pools); therefore, the pool may be temporarily unavailable to run tasks. When this operation runs, the pool state changes to upgrading. When all compute nodes have finished upgrading, the pool state returns to active. While the upgrade is in progress, the pool's currentOSVersion reflects the OS version that nodes are upgrading from, and targetOSVersion reflects the OS version that nodes are upgrading to. Once the upgrade is complete, currentOSVersion is updated to reflect the OS version now running on all nodes. This operation can only be invoked on pools created with the cloudServiceConfiguration property.", @@ -7680,7 +7798,9 @@ ], "operationId": "Pool_RemoveNodes", "x-ms-examples": { - "Pool remove nodes": { "$ref": "./examples/PoolRemoveNodes.json" } + "Pool remove nodes": { + "$ref": "./examples/PoolRemoveNodes.json" + } }, "summary": "Removes compute nodes from the specified pool.", "description": "This operation can only run when the allocation state of the pool is steady. When this operation runs, the allocation state changes from steady to resizing.", @@ -7839,9 +7959,15 @@ ], "operationId": "Task_Add", "x-ms-examples": { - "Add a basic task": { "$ref": "./examples/TaskAdd_Basic.json" }, - "Add a task with exit conditions": { "$ref": "./examples/TaskAdd_ExitConditions.json" }, - "Add a task with container settings": { "$ref": "./examples/TaskAdd_ContainerSettings.json" } + "Add a basic task": { + "$ref": "./examples/TaskAdd_Basic.json" + }, + "Add a task with exit conditions": { + "$ref": "./examples/TaskAdd_ExitConditions.json" + }, + "Add a task with container settings": { + "$ref": "./examples/TaskAdd_ContainerSettings.json" + } }, "summary": "Adds a task to the specified job.", "description": "The maximum lifetime of a task from addition to completion is 7 days. If a task has not completed within 7 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.", @@ -7959,7 +8085,9 @@ }, "operationId": "Task_List", "x-ms-examples": { - "Task list": { "$ref": "./examples/TaskList.json" } + "Task list": { + "$ref": "./examples/TaskList.json" + } }, "summary": "Lists all of the tasks that are associated with the specified job.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -8111,8 +8239,12 @@ ], "operationId": "Task_AddCollection", "x-ms-examples": { - "Add a basic collection of tasks": { "$ref": "./examples/TaskAddCollection_Basic.json" }, - "Add a complex collection of tasks": { "$ref": "./examples/TaskAddCollection_Complex.json" } + "Add a basic collection of tasks": { + "$ref": "./examples/TaskAddCollection_Basic.json" + }, + "Add a complex collection of tasks": { + "$ref": "./examples/TaskAddCollection_Complex.json" + } }, "summary": "Adds a collection of tasks to the specified job.", "description": "Note that each task must have a unique ID. The Batch service may not return the results for each task in the same order the tasks were submitted in this request. If the server times out or the connection is closed during the request, the request may have been partially or fully processed, or not at all. In such cases, the user should re-issue the request. Note that it is up to the user to correctly handle failures when re-issuing a request. For example, you should use the same task IDs during a retry so that if the prior operation succeeded, the retry will not create extra tasks unexpectedly. If the response contains any tasks which failed to add, a client can retry the request. In a retry, it is most efficient to resubmit only tasks that failed to add, and to omit tasks that were successfully added on the first attempt. The maximum lifetime of a task from addition to completion is 7 days. If a task has not completed within 7 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.", @@ -8217,7 +8349,9 @@ ], "operationId": "Task_Delete", "x-ms-examples": { - "Task delete": { "$ref": "./examples/TaskDelete.json" } + "Task delete": { + "$ref": "./examples/TaskDelete.json" + } }, "summary": "Deletes a task from the specified job.", "description": "When a task is deleted, all of the files in its directory on the compute node where it ran are also deleted (regardless of the retention time). For multi-instance tasks, the delete task operation applies synchronously to the primary task; subtasks and their files are then deleted asynchronously in the background.", @@ -8357,7 +8491,9 @@ ], "operationId": "Task_Get", "x-ms-examples": { - "Task get": { "$ref": "./examples/TaskGet.json" } + "Task get": { + "$ref": "./examples/TaskGet.json" + } }, "summary": "Gets information about the specified task.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -8535,7 +8671,9 @@ ], "operationId": "Task_Update", "x-ms-examples": { - "Task update": { "$ref": "./examples/TaskUpdate.json" } + "Task update": { + "$ref": "./examples/TaskUpdate.json" + } }, "description": "Updates the properties of the specified task.", "x-ms-request-id": "request-id", @@ -8700,7 +8838,9 @@ ], "operationId": "Task_ListSubtasks", "x-ms-examples": { - "Task list subtasks": { "$ref": "./examples/TaskListSubtasks.json" } + "Task list subtasks": { + "$ref": "./examples/TaskListSubtasks.json" + } }, "summary": "Lists all of the subtasks that are associated with the specified multi-instance task.", "description": "If the task is not a multi-instance task then this returns an empty collection.", @@ -8824,7 +8964,9 @@ ], "operationId": "Task_Terminate", "x-ms-examples": { - "Task terminate": { "$ref": "./examples/TaskTerminate.json" } + "Task terminate": { + "$ref": "./examples/TaskTerminate.json" + } }, "summary": "Terminates the specified task.", "description": "When the task has been terminated, it moves to the completed state. For multi-instance tasks, the terminate task operation applies synchronously to the primary task; subtasks are then terminated asynchronously in the background.", @@ -8981,7 +9123,9 @@ ], "operationId": "Task_Reactivate", "x-ms-examples": { - "Task reactivate": { "$ref": "./examples/TaskReactivate.json" } + "Task reactivate": { + "$ref": "./examples/TaskReactivate.json" + } }, "summary": "Reactivates a task, allowing it to run again even if its retry count has been exhausted.", "description": "Reactivation makes a task eligible to be retried again up to its maximum retry count. The task's state is changed to active. As the task is no longer in the completed state, any previous exit code or failure information is no longer available after reactivation. Each time a task is reactivated, its retry count is reset to 0. Reactivation will fail for tasks that are not completed or that previously completed successfully (with an exit code of 0). Additionally, it will fail if the job has completed (or is terminating or deleting).", @@ -9138,7 +9282,9 @@ ], "operationId": "ComputeNode_AddUser", "x-ms-examples": { - "Node add user": { "$ref": "./examples/NodeAddUser.json" } + "Node add user": { + "$ref": "./examples/NodeAddUser.json" + } }, "summary": "Adds a user account to the specified compute node.", "description": "You can add a user account to a node only when it is in the idle or running state.", @@ -9262,7 +9408,9 @@ ], "operationId": "ComputeNode_DeleteUser", "x-ms-examples": { - "Node delete user": { "$ref": "./examples/NodeDeleteUser.json" } + "Node delete user": { + "$ref": "./examples/NodeDeleteUser.json" + } }, "summary": "Deletes a user account from the specified compute node.", "description": "You can delete a user account to a node only when it is in the idle or running state.", @@ -9367,7 +9515,9 @@ ], "operationId": "ComputeNode_UpdateUser", "x-ms-examples": { - "Node update user": { "$ref": "./examples/NodeUpdateUser.json" } + "Node update user": { + "$ref": "./examples/NodeUpdateUser.json" + } }, "summary": "Updates the password and expiration time of a user account on the specified compute node.", "description": "This operation replaces of all the updatable properties of the account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user account on a node only when it is in the idle or running state.", @@ -9498,7 +9648,9 @@ ], "operationId": "ComputeNode_Get", "x-ms-examples": { - "Node get": { "$ref": "./examples/NodeGet_Basic.json" } + "Node get": { + "$ref": "./examples/NodeGet_Basic.json" + } }, "summary": "Gets information about the specified compute node.", "x-ms-request-id": "request-id", @@ -9621,7 +9773,9 @@ ], "operationId": "ComputeNode_Reboot", "x-ms-examples": { - "Node reboot": { "$ref": "./examples/NodeReboot.json" } + "Node reboot": { + "$ref": "./examples/NodeReboot.json" + } }, "summary": "Restarts the specified compute node.", "description": "You can restart a node only if it is in an idle or running state.", @@ -9745,7 +9899,9 @@ ], "operationId": "ComputeNode_Reimage", "x-ms-examples": { - "Node reimage": { "$ref": "./examples/NodeReimage.json" } + "Node reimage": { + "$ref": "./examples/NodeReimage.json" + } }, "summary": "Reinstalls the operating system on the specified compute node.", "description": "You can reinstall the operating system on a node only if it is in an idle or running state. This API can be invoked only on pools created with the cloud service configuration property.", @@ -9869,7 +10025,9 @@ ], "operationId": "ComputeNode_DisableScheduling", "x-ms-examples": { - "Node disable scheduling": { "$ref": "./examples/NodeDisableScheduling.json" } + "Node disable scheduling": { + "$ref": "./examples/NodeDisableScheduling.json" + } }, "summary": "Disables task scheduling on the specified compute node.", "description": "You can disable task scheduling on a node only if its current scheduling state is enabled.", @@ -9993,7 +10151,9 @@ ], "operationId": "ComputeNode_EnableScheduling", "x-ms-examples": { - "Node enable scheduling": { "$ref": "./examples/NodeEnableScheduling.json" } + "Node enable scheduling": { + "$ref": "./examples/NodeEnableScheduling.json" + } }, "summary": "Enables task scheduling on the specified compute node.", "description": "You can enable task scheduling on a node only if its current scheduling state is disabled", @@ -10108,7 +10268,9 @@ ], "operationId": "ComputeNode_GetRemoteLoginSettings", "x-ms-examples": { - "Node get remote login settings": { "$ref": "./examples/NodeGetRemoteLoginSettings.json" } + "Node get remote login settings": { + "$ref": "./examples/NodeGetRemoteLoginSettings.json" + } }, "summary": "Gets the settings required for remote login to a compute node.", "description": "Before you can remotely login to a node using the remote login settings, you must create a user account on the node. This API can be invoked only on pools created with the virtual machine configuration property. For pools created with a cloud service configuration, see the GetRemoteDesktop API.", @@ -10222,7 +10384,9 @@ ], "operationId": "ComputeNode_GetRemoteDesktop", "x-ms-examples": { - "Get RDP file of the compute node": { "$ref": "./examples/NodeGetRemoteDesktop.json" } + "Get RDP file of the compute node": { + "$ref": "./examples/NodeGetRemoteDesktop.json" + } }, "summary": "Gets the Remote Desktop Protocol file for the specified compute node.", "description": "Before you can access a node by using the RDP file, you must create a user account on the node. This API can only be invoked on pools created with a cloud service configuration. For pools created with a virtual machine configuration, see the GetRemoteLoginSettings API.", @@ -10343,7 +10507,9 @@ "summary": "Upload Azure Batch service log files from the specified compute node to Azure Blob Storage.", "description": "This is for gathering Azure Batch service log files in an automated fashion from nodes if you are experiencing an error and wish to escalate to Azure support. The Azure Batch service log files should be shared with Azure support to aid in debugging issues with the Batch service.", "x-ms-examples": { - "Upload BatchService Logs": { "$ref": "./examples/NodeUploadBatchServiceLogs.json" } + "Upload BatchService Logs": { + "$ref": "./examples/NodeUploadBatchServiceLogs.json" + } }, "x-ms-request-id": "request-id", "parameters": [ @@ -10437,7 +10603,7 @@ "description": "The request to the Batch service was successful.", "schema": { "$ref": "#/definitions/UploadBatchServiceLogsResult" - } + } }, "default": { "description": "The error from the Batch service.", @@ -10458,7 +10624,9 @@ }, "operationId": "ComputeNode_List", "x-ms-examples": { - "Node list": { "$ref": "./examples/NodeList.json" } + "Node list": { + "$ref": "./examples/NodeList.json" + } }, "summary": "Lists the compute nodes in the specified pool.", "x-ms-request-id": "request-id", @@ -10631,7 +10799,15 @@ "title": "The cross data center network egress from the pool during this interval, in GiB." } }, - "required": [ "poolId", "startTime", "endTime", "vmSize", "totalCoreHours", "dataIngressGiB", "dataEgressGiB" ], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours", + "dataIngressGiB", + "dataEgressGiB" + ], "title": "Usage metrics for a pool across an aggregation interval." }, "PoolListUsageMetricsResult": { @@ -10751,7 +10927,11 @@ "title": "The aggregated wall-clock time of the dedicated compute node cores being part of the pool." } }, - "required": [ "startTime", "lastUpdateTime", "dedicatedCoreTime" ], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "title": "Statistics related to pool usage information." }, "ResourceStatistics": { @@ -10822,7 +11002,21 @@ "title": "The total amount of data in GiB of network writes across all nodes in the pool." } }, - "required": [ "startTime", "lastUpdateTime", "avgCPUPercentage", "avgMemoryGiB", "peakMemoryGiB", "avgDiskGiB", "peakDiskGiB", "diskReadIOps", "diskWriteIOps", "diskReadGiB", "diskWriteGiB", "networkReadGiB", "networkWriteGiB" ], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "title": "Statistics related to resource consumption by compute nodes in a pool." }, "PoolStatistics": { @@ -10850,7 +11044,11 @@ "title": "Statistics related to resource consumption by compute nodes in the pool." } }, - "required": [ "url", "startTime", "lastUpdateTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "title": "Contains utilization and resource usage statistics for the lifetime of a pool." }, "JobStatistics": { @@ -10929,7 +11127,22 @@ "description": "The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.) This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job." }, "NameValuePair": { @@ -11024,7 +11237,9 @@ "description": "If this is omitted on a pool, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences and HTTP status code 409. If this is omitted on a task, and no default version is specified for this application, the task fails with a pre-processing error." } }, - "required": [ "applicationId" ], + "required": [ + "applicationId" + ], "title": "A reference to an application package to be deployed to compute nodes." }, "ApplicationSummary": { @@ -11045,7 +11260,11 @@ } } }, - "required": [ "id", "displayName", "versions" ], + "required": [ + "id", + "displayName", + "versions" + ], "title": "Contains information about an application in an Azure Batch account." }, "CertificateAddParameter": { @@ -11090,7 +11309,11 @@ "description": "This is required if the certificate format is pfx. It should be omitted if the certificate format is cer." } }, - "required": [ "thumbprint", "thumbprintAlgorithm", "data" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "title": "A certificate that can be installed on compute nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -11137,7 +11360,10 @@ "description": "The file mode is returned only for files on Linux compute nodes." } }, - "required": [ "lastModified", "contentLength" ], + "required": [ + "lastModified", + "contentLength" + ], "title": "The properties of a file on a compute node." }, "NodeFile": { @@ -11241,7 +11467,9 @@ "description": "This setting can be omitted if was already provided at pool creation." } }, - "required": [ "imageName" ], + "required": [ + "imageName" + ], "title": "The container settings for a task." }, "ResourceFile": { @@ -11261,7 +11489,10 @@ "description": "This property applies only to files being downloaded to Linux compute nodes. It will be ignored if it is specified for a resourceFile which will be downloaded to a Windows node. If this property is not specified for a Linux node, then a default value of 0770 is applied to the file." } }, - "required": [ "blobSource", "filePath" ], + "required": [ + "blobSource", + "filePath" + ], "title": "A file to be downloaded from Azure blob storage to a compute node." }, "EnvironmentSetting": { @@ -11275,7 +11506,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, "ExitConditions": { @@ -11324,7 +11557,10 @@ } }, "title": "How the Batch service should respond if a task exits with a particular exit code.", - "required": [ "code", "exitOptions" ] + "required": [ + "code", + "exitOptions" + ] }, "ExitCodeRangeMapping": { "properties": { @@ -11344,7 +11580,11 @@ } }, "title": "A range of exit codes and how the Batch service should respond to exit codes within that range.", - "required": [ "start", "end", "exitOptions" ] + "required": [ + "start", + "end", + "exitOptions" + ] }, "ExitOptions": { "properties": { @@ -11495,7 +11735,10 @@ "$ref": "#/definitions/LinuxUserConfiguration" } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user used to execute tasks on an Azure Batch node." }, "TaskConstraints": { @@ -11551,7 +11794,7 @@ "title": "A list of files that the Batch service will download to the compute node before running the command line.", "description": "Files listed under this element are located in the task's working directory. There is a maximum size for the list of resource files. When the max size is exceeded, the request will fail and the response error code will be RequestEntityTooLarge. If this occurs, the collection of ResourceFiles must be reduced in size. This can be achieved using .zip files, Application Packages, or Docker Containers." }, - "outputFiles": { + "outputFiles": { "type": "array", "items": { "$ref": "#/definitions/OutputFile" @@ -11604,7 +11847,10 @@ "description": "The default value is true." } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "Specifies details of a Job Manager task.", "description": "The Job Manager task is automatically started when the job is created. The Batch service tries to schedule the Job Manager task before any other tasks in the job. When shrinking a pool, the Batch service tries to preserve compute nodes where Job Manager tasks are running for as long as possible (that is, nodes running 'normal' tasks are removed before nodes running Job Manager tasks). When a Job Manager task fails and needs to be restarted, the system tries to schedule it at the highest priority. If there are no idle nodes available, the system may terminate one of the running tasks in the pool and return it to the queue in order to make room for the Job Manager task to restart. Note that a Job Manager task in one job does not have priority over tasks in other jobs. Across jobs, only job level priorities are observed. For example, if a Job Manager in a priority 0 job needs to be restarted, it will not displace tasks of a priority 1 job. Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -11660,7 +11906,9 @@ "description": "The Job Preparation task is always rerun if a compute node is reimaged, or if the Job Preparation task did not complete (e.g. because the reboot occurred while the task was running). Therefore, you should always write a Job Preparation task to be idempotent and to behave correctly if run multiple times. The default value is true." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Preparation task to run before any tasks of the job on any given compute node.", "description": "You can use Job Preparation to prepare a compute node to run tasks for the job. Activities commonly performed in Job Preparation include: Downloading common resource files used by all the tasks in the job. The Job Preparation task can download these common resource files to the shared location on the compute node. (AZ_BATCH_NODE_ROOT_DIR\\shared), or starting a local service on the compute node so that all tasks of that job can communicate with it. If the Job Preparation task fails (that is, exhausts its retry count before exiting with exit code 0), Batch will not run tasks of this job on the compute node. The node remains ineligible to run tasks of this job until it is reimaged. The node remains active and can be used for other jobs. The Job Preparation task can run multiple times on the same compute node. Therefore, you should write the Job Preparation task to handle re-execution. If the compute node is rebooted, the Job Preparation task is run again on the node before scheduling any other task of the job, if rerunOnNodeRebootAfterSuccess is true or if the Job Preparation task did not previously complete. If the compute node is reimaged, the Job Preparation task is run again before scheduling any task of the job. Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -11713,7 +11961,9 @@ "description": "If omitted, the task runs as a non-administrative user unique to the task." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Release task to run on job completion on any compute node where the job has run.", "description": "The Job Release task runs when the job ends, because of one of the following: The user calls the Terminate Job API, or the Delete Job API while the job is still active, the job's maximum wall clock time constraint is reached, and the job is still active, or the job's Job Manager task completed, and the job is configured to terminate when the Job Manager completes. The Job Release task runs on each compute node where tasks of the job have run and the Job Preparation task ran and completed. If you reimage a compute node after it has run the Job Preparation task, and the job ends without any further tasks of the job running on that compute node (and hence the Job Preparation task does not re-run), then the Job Release task does not run on that node. If a compute node reboots while the Job Release task is still running, the Job Release task runs again when the compute node starts up. The job is not marked as complete until all Job Release tasks have completed. The Job Release task runs in the background. It does not occupy a scheduling slot; that is, it does not count towards the maxTasksPerNode limit specified on the pool." }, @@ -11742,7 +11992,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "StartTask": { @@ -11789,7 +12041,9 @@ "description": "If true and the start task fails on a compute node, the Batch service retries the start task up to its maximum retry count (maxTaskRetryCount). If the task has still not completed successfully after all retries, then the Batch service marks the compute node unusable, and will not schedule tasks to it. This condition can be detected via the node state and failure info details. If false, the Batch service will not wait for the start task to complete. In this case, other tasks can start executing on the compute node while the start task is still running; and even if the start task fails, new tasks will continue to be scheduled on the node. The default is false." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A task which is run when a compute node joins a pool in the Azure Batch service, or when the compute node is rebooted or reimaged.", "description": "Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -11868,7 +12122,10 @@ "description": "You can specify more than one visibility in this collection. The default is all accounts." } }, - "required": [ "thumbprint", "thumbprintAlgorithm" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool." }, "MetadataItem": { @@ -11882,7 +12139,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -11984,7 +12244,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail. The permitted licenses available on the pool are 'maya', 'vray', '3dsmax', 'arnold'. An additional charge applies for each application license added to the pool." }, @@ -12004,7 +12264,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "vmSize" ], + "required": [ + "vmSize" + ], "title": "Specification for creating a new pool." }, "AutoPoolSpecification": { @@ -12047,7 +12309,9 @@ "title": "The pool specification for the auto pool." } }, - "required": [ "poolLifetimeOption" ], + "required": [ + "poolLifetimeOption" + ], "title": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto pool when the job is submitted." }, "PoolInformation": { @@ -12132,7 +12396,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "Specifies details of the jobs to be created on a schedule." }, "RecentJob": { @@ -12244,7 +12510,22 @@ "description": "This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job schedule." }, "CloudJobSchedule": { @@ -12353,7 +12634,11 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "schedule", "jobSpecification" ], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "title": "A job schedule that allows recurring jobs by specifying when to run jobs and a specification used to create each job." }, "CloudJobScheduleListResult": { @@ -12394,7 +12679,9 @@ "title": "A list of additional error details related to the scheduling error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "An error encountered by the Batch service when scheduling a job." }, "JobExecutionInformation": { @@ -12427,7 +12714,9 @@ "description": "This property is set only if the job is in the completed state. If the Batch service terminates the job, it sets the reason as follows: JMComplete - the Job Manager task completed, and killJobOnCompletion was set to true. MaxWallClockTimeExpiry - the job reached its maxWallClockTime constraint. TerminateJobSchedule - the job ran as part of a schedule, and the schedule terminated. AllTasksComplete - the job's onAllTasksComplete attribute is set to terminatejob, and all tasks in the job are complete. TaskFailed - the job's onTaskFailure attribute is set to performExitOptionsJobAction, and a task in the job failed with an exit condition that specified a jobAction of terminatejob. Any other string is a user-defined reason specified in a call to the 'Terminate a job' operation." } }, - "required": [ "startTime" ], + "required": [ + "startTime" + ], "title": "Contains information about the execution of a job in the Azure Batch service." }, "CloudJob": { @@ -12622,7 +12911,10 @@ "title": "Whether tasks in the job can define dependencies on each other. The default is false." } }, - "required": [ "id", "poolInfo" ], + "required": [ + "id", + "poolInfo" + ], "title": "An Azure Batch job to add." }, "CloudJobListResult": { @@ -12682,7 +12974,9 @@ "title": "A list of additional details related to the error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "Information about a task failure." }, "JobPreparationTaskExecutionInformation": { @@ -12763,7 +13057,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "retryCount", "state" ], + "required": [ + "startTime", + "retryCount", + "state" + ], "title": "Contains information about the execution of a Job Preparation task on a compute node." }, "JobReleaseTaskExecutionInformation": { @@ -12832,7 +13130,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "state" ], + "required": [ + "startTime", + "state" + ], "title": "Contains information about the execution of a Job Release task on a compute node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -12905,7 +13206,13 @@ "title": "The number of tasks which failed. A task fails if its result (found in the executionInfo property) is 'failure'." } }, - "required": [ "active", "running", "completed", "succeeded", "failed" ], + "required": [ + "active", + "running", + "completed", + "succeeded", + "failed" + ], "title": "The task counts for a job." }, "AutoScaleRunError": { @@ -12945,7 +13252,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": [ "timestamp" ], + "required": [ + "timestamp" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "ResizeError": { @@ -12987,7 +13296,9 @@ "description": "This may differ from targetOSVersion if the pool state is Upgrading. In this case some virtual machines may be on the targetOSVersion and some may be on the currentOSVersion during the upgrade process. Once all virtual machines have upgraded, currentOSVersion is updated to be the same as targetOSVersion." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "ImageReference": { @@ -13115,7 +13426,7 @@ "value": "readonly", "description": "The caching mode for the disk is read only.", "name": "readOnly" - }, + }, { "value": "readwrite", "description": "The caching mode for the disk is read and write.", @@ -13163,7 +13474,10 @@ "description": "If specified, setup is performed on each node in the pool to allow tasks to run in containers. All regular tasks and job manager tasks run on this pool must specify the containerSettings property, and all other tasks may specify it." } }, - "required": [ "nodeAgentSKUId", "imageReference" ], + "required": [ + "nodeAgentSKUId", + "imageReference" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "ContainerRegistry": { @@ -13183,7 +13497,10 @@ "title": "The password to log into the registry server." } }, - "required": [ "username", "password" ], + "required": [ + "username", + "password" + ], "title": "A private container registry." }, "ContainerConfiguration": { @@ -13222,7 +13539,9 @@ "description": "If any images must be downloaded from a private registry which requires credentials, then those credentials must be provided here." } }, - "required": [ "type" ], + "required": [ + "type" + ], "title": "The configuration for container-enabled pools." }, "NetworkConfiguration": { @@ -13237,9 +13556,9 @@ } }, "endpointConfiguration": { - "$ref": "#/definitions/PoolEndpointConfiguration", - "title": "The configuration for endpoints on compute nodes in the Batch pool.", - "description": "Pool endpoint configuration is only supported on pools with the virtualMachineConfiguration property." + "$ref": "#/definitions/PoolEndpointConfiguration", + "title": "The configuration for endpoints on compute nodes in the Batch pool.", + "description": "Pool endpoint configuration is only supported on pools with the virtualMachineConfiguration property." } }, "description": "The network configuration for a pool." @@ -13443,7 +13762,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -13571,7 +13890,7 @@ "type": "array", "items": { "type": "string" - }, + }, "title": "The list of application licenses the Batch service will make available on each compute node in the pool.", "description": "The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail." }, @@ -13601,7 +13920,10 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "vmSize" ], + "required": [ + "id", + "vmSize" + ], "title": "A pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -13644,7 +13966,9 @@ "description": "You can pass the affinityId of a compute node to indicate that this task needs to run on that compute node. Note that this is just a soft affinity. If the target node is busy or unavailable at the time the task is scheduled, then the task will be scheduled elsewhere." } }, - "required": [ "affinityId" ], + "required": [ + "affinityId" + ], "title": "A locality hint that can be used by the Batch service to select a compute node on which to start a task." }, "TaskExecutionInformation": { @@ -13707,7 +14031,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "requeueCount", "retryCount" ], + "required": [ + "requeueCount", + "retryCount" + ], "title": "Information about the execution of a task." }, "ComputeNodeInformation": { @@ -13743,8 +14070,8 @@ "properties": { "version": { "type": "string", - "title":"The version of the Batch node agent running on the compute node.", - "description":"This version number can be checked against the node agent release notes located at https://github.com/Azure/Batch/blob/master/changelogs/nodeagent/CHANGELOG.md." + "title": "The version of the Batch node agent running on the compute node.", + "description": "This version number can be checked against the node agent release notes located at https://github.com/Azure/Batch/blob/master/changelogs/nodeagent/CHANGELOG.md." }, "lastUpdateTime": { "type": "string", @@ -13753,7 +14080,10 @@ "description": "This is the most recent time that the node agent was updated to a new version." } }, - "required": [ "version", "lastUpdateTime" ], + "required": [ + "version", + "lastUpdateTime" + ], "title": "Information about the node agent.", "description": "The Batch node agent is a program that runs on each node in the pool and provides Batch capability on the compute node." }, @@ -13779,7 +14109,9 @@ "description": "The difference between common resource files and task resource files is that common resource files are downloaded for all subtasks including the primary, whereas task resource files are downloaded only for the primary. Also note that these resource files are not downloaded to the task working directory, but instead are downloaded to the task root directory (one directory above the working directory). There is a maximum size for the list of resource files. When the max size is exceeded, the request will fail and the response error code will be RequestEntityTooLarge. If this occurs, the collection of ResourceFiles must be reduced in size. This can be achieved using .zip files, Application Packages, or Docker Containers." } }, - "required": [ "coordinationCommandLine" ], + "required": [ + "coordinationCommandLine" + ], "title": "Settings which specify how to run a multi-instance task.", "description": "Multi-instance tasks are commonly used to support MPI tasks." }, @@ -13841,7 +14173,19 @@ "title": "The total wait time of the task. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "title": "Resource usage statistics for a task." }, "TaskDependencies": { @@ -13879,7 +14223,10 @@ }, "title": "A range of task IDs that a task can depend on. All tasks with IDs in the range must complete successfully before the dependent task can be scheduled.", "description": "The start and end of the range are inclusive. For example, if a range has start 9 and end 12, then it represents tasks '9', '10', '11' and '12'.", - "required": [ "start", "end" ] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -14106,7 +14453,10 @@ "$ref": "#/definitions/AuthenticationTokenSettings" } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "An Azure Batch task to add.", "description": "Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -14122,7 +14472,9 @@ "description": "The total serialized size of this collection must be less than 1MB. If it is greater than 1MB (for example if each task has 100's of resource files or environment variables), the request will fail with code 'RequestBodyTooLarge' and should be retried again with fewer tasks." } }, - "required": [ "value" ], + "required": [ + "value" + ], "title": "A collection of Azure Batch tasks to add." }, "TaskAddResult": { @@ -14179,7 +14531,10 @@ "title": "The error encountered while attempting to add the task." } }, - "required": [ "status", "taskId" ], + "required": [ + "status", + "taskId" + ], "title": "Result for a single task added as part of an add task collection operation." }, "TaskAddCollectionResult": { @@ -14316,7 +14671,9 @@ "title": "Information about the execution of the task." } }, - "required": [ "taskState" ], + "required": [ + "taskState" + ], "title": "Information about a task running on a compute node." }, "StartTaskInformation": { @@ -14389,7 +14746,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "state", "startTime", "retryCount" ], + "required": [ + "state", + "startTime", + "retryCount" + ], "title": "Information about a start task running on a compute node." }, "ComputeNodeError": { @@ -14612,7 +14973,7 @@ "title": "The endpoint configuration for the compute node." }, "nodeAgentInfo": { - "$ref":"#/definitions/NodeAgentInformation", + "$ref": "#/definitions/NodeAgentInformation", "title": "Information about the node agent version and the time the node upgraded to a new version." } }, @@ -14629,7 +14990,9 @@ "description": "The maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400." } }, - "required": [ "inboundNATPools" ], + "required": [ + "inboundNATPools" + ], "title": "The endpoint configuration for a pool." }, "InboundNATPool": { @@ -14670,7 +15033,13 @@ } } }, - "required": [ "name", "protocol", "backendPort", "frontendPortRangeStart", "frontendPortRangeEnd" ], + "required": [ + "name", + "protocol", + "backendPort", + "frontendPortRangeStart", + "frontendPortRangeEnd" + ], "title": "A inbound NAT pool that can be used to address specific ports on compute nodes in a Batch pool externally." }, "NetworkSecurityGroupRule": { @@ -14709,7 +15078,11 @@ "description": "Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400." } }, - "required": [ "priority", "access", "sourceAddressPrefix" ], + "required": [ + "priority", + "access", + "sourceAddressPrefix" + ], "title": "A network security group rule to apply to an inbound endpoint." }, "ComputeNodeEndpointConfiguration": { @@ -14722,7 +15095,9 @@ "title": "The list of inbound endpoints that are accessible on the compute node." } }, - "required": [ "inboundEndpoints" ], + "required": [ + "inboundEndpoints" + ], "title": "The endpoint configuration for the compute node." }, "InboundEndpoint": { @@ -14754,7 +15129,14 @@ "title": "The backend port number of the endpoint." } }, - "required": [ "name", "protocol", "publicIPAddress", "publicFQDN", "frontendPort", "backendPort" ], + "required": [ + "name", + "protocol", + "publicIPAddress", + "publicFQDN", + "frontendPort", + "backendPort" + ], "title": "An inbound endpoint on a compute node." }, "ComputeNodeListResult": { @@ -14801,7 +15183,9 @@ "description": "The public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux nodes. If this is specified for a Windows node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request)." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "A user account for RDP or SSH access on a compute node." }, "ComputeNodeGetRemoteLoginSettingsResult": { @@ -14816,7 +15200,10 @@ "title": "The port used for remote login to the compute node." } }, - "required": [ "remoteLoginIPAddress", "remoteLoginPort" ], + "required": [ + "remoteLoginIPAddress", + "remoteLoginPort" + ], "title": "The remote login settings for a compute node." }, "JobSchedulePatchParameter": { @@ -14863,7 +15250,10 @@ "description": "If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": [ "schedule", "jobSpecification" ], + "required": [ + "schedule", + "jobSpecification" + ], "title": "The set of changes to be made to a job schedule." }, "JobDisableParameter": { @@ -14896,7 +15286,9 @@ } } }, - "required": [ "disableTasks" ], + "required": [ + "disableTasks" + ], "title": "Options when disabling a job." }, "JobTerminateParameter": { @@ -14974,7 +15366,9 @@ "$ref": "#/definitions/OnAllTasksComplete" } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "The set of changes to be made to a job." }, "PoolEnableAutoScaleParameter": { @@ -15001,7 +15395,9 @@ "description": "The formula is validated and its results calculated, but it is not applied to the pool. To apply the formula to the pool, 'Enable automatic scaling on a pool'. For more information about specifying this formula, see Automatically scale compute nodes in an Azure Batch pool (https://azure.microsoft.com/en-us/documentation/articles/batch-automatic-scaling)." } }, - "required": [ "autoScaleFormula" ], + "required": [ + "autoScaleFormula" + ], "title": "Options for evaluating an automatic scaling formula on a pool." }, "PoolResizeParameter": { @@ -15062,7 +15458,11 @@ "description": "This list replaces any existing metadata configured on the pool. If omitted, or if you specify an empty collection, any existing metadata is removed from the pool." } }, - "required": [ "certificateReferences", "metadata", "applicationPackageReferences" ], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "title": "The set of changes to be made to a pool." }, "PoolUpgradeOSParameter": { @@ -15072,7 +15472,9 @@ "title": "The Azure Guest OS version to be installed on the virtual machines in the pool." } }, - "required": [ "targetOSVersion" ], + "required": [ + "targetOSVersion" + ], "title": "Options for upgrading the operating system of compute nodes in a pool." }, "PoolPatchParameter": { @@ -15276,7 +15678,9 @@ "$ref": "#/definitions/ComputeNodeDeallocationOption" } }, - "required": [ "nodeList" ], + "required": [ + "nodeList" + ], "title": "Options for removing compute nodes from a pool." }, "OutputFile": { @@ -15295,7 +15699,11 @@ "$ref": "#/definitions/OutputFileUploadOptions" } }, - "required": [ "filePattern", "destination", "uploadOptions" ], + "required": [ + "filePattern", + "destination", + "uploadOptions" + ], "title": "A specification for uploading files from an Azure Batch node to another location after the Batch service has finished executing the task process." }, "OutputFileDestination": { @@ -15320,7 +15728,9 @@ "description": "The URL must include a Shared Access Signature (SAS) granting write permissions to the container." } }, - "required": [ "containerUrl" ], + "required": [ + "containerUrl" + ], "title": "Specifies a file upload destination within an Azure blob storage container." }, "OutputFileUploadOptions": { @@ -15331,7 +15741,9 @@ "$ref": "#/definitions/OutputFileUploadCondition" } }, - "required": [ "uploadCondition" ], + "required": [ + "uploadCondition" + ], "title": "Details about an output file upload operation, including under what conditions to perform the upload." }, "ErrorMessage": { @@ -15780,7 +16192,10 @@ "description": "Any log file containing a log message in the time range will be uploaded. This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded, but the operation should not retrieve fewer logs than have been requested. If omitted, the default is to upload all logs available after the startTime." } }, - "required": [ "containerUrl", "startTime" ], + "required": [ + "containerUrl", + "startTime" + ], "title": "The Azure Batch service log files upload configuration for a compute node." }, "UploadBatchServiceLogsResult": { @@ -15796,7 +16211,10 @@ "title": "The number of log files which will be uploaded." } }, - "required": ["virtualDirectoryName", "numberOfFilesUploaded"], + "required": [ + "virtualDirectoryName", + "numberOfFilesUploaded" + ], "title": "The result of uploading Batch service log files from a specific compute node." }, "PoolNodeCountsListResult": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/AccountListNodeAgentSkus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/AccountListNodeAgentSkus.json index b1cdb2c90084..92930103fc5f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/AccountListNodeAgentSkus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/AccountListNodeAgentSkus.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/AccountListPoolNodeCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/AccountListPoolNodeCounts.json index 613f83a56ba7..95896a08705e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/AccountListPoolNodeCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/AccountListPoolNodeCounts.json @@ -117,4 +117,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/ApplicationGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/ApplicationGet.json index 6550fe0cd41a..b0deede224ae 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/ApplicationGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/ApplicationGet.json @@ -8,12 +8,12 @@ "responses": { "200": { "body": { - "id": "my_application_id", - "versions": [ - "v1.0" - ], - "displayName": "my_display_name" + "id": "my_application_id", + "versions": [ + "v1.0" + ], + "displayName": "my_display_name" } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/ApplicationList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/ApplicationList.json index 009a24829dda..ce7c279267b1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/ApplicationList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/ApplicationList.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateAdd.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateAdd.json index 9f250e316a2a..afd9efa29d3f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateAdd.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateAdd.json @@ -4,11 +4,11 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "certificate": { - "thumbprintAlgorithm":"sha1", - "thumbprint":"0123456789abcdef0123456789abcdef01234567", - "data":"#####...", - "certificateFormat":"pfx", - "password":"certpassword" + "thumbprintAlgorithm": "sha1", + "thumbprint": "0123456789abcdef0123456789abcdef01234567", + "data": "#####...", + "certificateFormat": "pfx", + "password": "certpassword" } }, "responses": { @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateCancelDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateCancelDelete.json index 877d865df1e6..62ac4eb35d2f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateCancelDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateCancelDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateDelete.json index d863ac2f5095..9e7ae01d854d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateGet.json index 00a2270ea83c..37c8190b540c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateList.json index ad23c5e62350..09e0c72cb452 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/CertificateList.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileDeleteFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileDeleteFromNode.json index b4577b451581..56c8f8079142 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileDeleteFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileDeleteFromNode.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileDeleteFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileDeleteFromTask.json index fe86aa9f790b..601563b7d6f5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileDeleteFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileDeleteFromTask.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetFromNode.json index 0416de2d51bc..4854a9d67c34 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetFromNode.json @@ -17,4 +17,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetFromTask.json index 12c8ebddc814..3fc6d9526b92 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetFromTask.json @@ -17,4 +17,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetPropertiesFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetPropertiesFromNode.json index 012637909aab..2435f5ba64bf 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetPropertiesFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetPropertiesFromNode.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetPropertiesFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetPropertiesFromTask.json index 39f150b281f7..74eb327430c8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetPropertiesFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileGetPropertiesFromTask.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileListFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileListFromNode.json index 61ea39ad8bfc..017b88cb51d5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileListFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileListFromNode.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileListFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileListFromTask.json index 070d4706c87a..00e80b0e8a95 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileListFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/FileListFromTask.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobAdd_Basic.json index 9ff37a09e3fe..2a4f75d2bd43 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobAdd_Basic.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobAdd_Complex.json index 80e8f70d0bae..d38b8def8429 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobAdd_Complex.json @@ -35,7 +35,7 @@ "retentionTime": "PT1H" }, "killJobOnCompletion": false, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -76,7 +76,7 @@ "value": "myvalue" } ], - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -118,4 +118,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobDelete.json index 1799f7f0d51e..3a4ef7ecad07 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobDisable.json index eab70814a6f2..aba2098c813b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobDisable.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobEnable.json index 1799f7f0d51e..3a4ef7ecad07 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGet.json index add3cbea1005..e97eafb560c0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGet.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGetLifetimeStatistics.json index e3839ce1aca0..86f1cbb63bbf 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimejobstats", + "url": "https://account.region.batch.core.windows.net/lifetimejobstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "userCPUTime": "PT0S", @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGetTaskCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGetTaskCounts.json index 7e48fbcf04d7..92bc97ce7d0f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGetTaskCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobGetTaskCounts.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobList.json index 8b5ff9e1b487..35ce90b18f6e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobList.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobListFromJobSchedule.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobListFromJobSchedule.json index 8566421809e0..193b7e3a73de 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobListFromJobSchedule.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobListFromJobSchedule.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobListPreparationAndReleaseTaskStatus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobListPreparationAndReleaseTaskStatus.json index 0e21f1c70cb7..f6e957d7d663 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobListPreparationAndReleaseTaskStatus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobListPreparationAndReleaseTaskStatus.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobPatch.json index 3cf875e74343..16f8829b5cca 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobPatch.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobPatchParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleAdd_Basic.json index 8c8ce82de6ed..1c2d609bc387 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleAdd_Basic.json @@ -6,7 +6,7 @@ "cloudJobSchedule": { "id": "jobScheduleId", "schedule": { - "recurrenceInterval":"PT5M" + "recurrenceInterval": "PT5M" }, "jobSpecification": { "poolInfo": { @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleAdd_Complex.json index fd4f1e7afc91..2c48f68c8d45 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleAdd_Complex.json @@ -126,4 +126,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleDelete.json index 4838b0dd8ba8..e585d7495400 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleDisable.json index e5c082cf5020..114cffc5d56d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleDisable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleEnable.json index e5c082cf5020..114cffc5d56d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleEnable.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleExists.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleExists.json index 91116f11e0e6..94005b212e32 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleExists.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleExists.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleGet.json index 5146f7cd7d9b..1b18fdac3638 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleList.json index cb8798b1c379..721214d1aba1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleList.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobSchedulePatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobSchedulePatch.json index 00dff4f5e37d..d730f8e56af6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobSchedulePatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobSchedulePatch.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleTerminate.json index 4838b0dd8ba8..e585d7495400 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleTerminate.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleUpdate.json index c7dcb4dc99a2..d4787be48f85 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobScheduleUpdate.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobTerminate.json index 928dae270df1..dfe33d630b92 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobTerminate.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobUpdate.json index 295732b684a8..8f68673cb74c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/JobUpdate.json @@ -5,13 +5,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "jobUpdateParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -20,4 +20,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeAddUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeAddUser.json index 00b0450b6bd5..e9709898351e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeAddUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeAddUser.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeDeleteUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeDeleteUser.json index 00c658269503..8cd87dbc9305 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeDeleteUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeDeleteUser.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeDisableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeDisableScheduling.json index 252b66a08b7b..d42419b1513c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeDisableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeDisableScheduling.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeEnableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeEnableScheduling.json index b919777643a8..b132e9ce2d60 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeEnableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeEnableScheduling.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGetRemoteDesktop.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGetRemoteDesktop.json index ae802b746e1d..6d24863531d1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGetRemoteDesktop.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGetRemoteDesktop.json @@ -11,4 +11,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGetRemoteLoginSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGetRemoteLoginSettings.json index b93ccf2e5972..f6a6b564ffdc 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGetRemoteLoginSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGetRemoteLoginSettings.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGet_Basic.json index 7c689202a04d..6b2d12bf5392 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeGet_Basic.json @@ -25,7 +25,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeList.json index de74e7c76a46..648f17eba528 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeList.json @@ -26,7 +26,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -64,7 +64,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -102,7 +102,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -127,4 +127,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeReboot.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeReboot.json index 851054b7cfef..5bb3d54364c6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeReboot.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeReboot.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeReimage.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeReimage.json index 7890ded26eaa..8d0eee3dcd99 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeReimage.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeReimage.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeUpdateUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeUpdateUser.json index 6c3ff1a690b2..39783fbbf601 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeUpdateUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeUpdateUser.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeUploadBatchServiceLogs.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeUploadBatchServiceLogs.json index 2f78008cc759..57d9a48e11cc 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeUploadBatchServiceLogs.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/NodeUploadBatchServiceLogs.json @@ -13,9 +13,9 @@ "responses": { "200": { "body": { - "virtualDirectoryName": "poolId/tvm-1695681911-1-20161121t182739z/0795539d-82fe-48e3-bbff-2964905b6de0", - "numberOfFilesUploaded": 8 + "virtualDirectoryName": "poolId/tvm-1695681911-1-20161121t182739z/0795539d-82fe-48e3-bbff-2964905b6de0", + "numberOfFilesUploaded": 8 } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_CloudServiceConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_CloudServiceConfiguration.json index 4ca91b80ff92..60acf2106850 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_CloudServiceConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_CloudServiceConfiguration.json @@ -9,19 +9,21 @@ "cloudServiceConfiguration": { "osFamily": "4" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -31,4 +33,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_VirtualMachineConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_VirtualMachineConfiguration.json index 801784379119..94c427f7c73c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_VirtualMachineConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_VirtualMachineConfiguration.json @@ -14,19 +14,21 @@ }, "nodeAgentSKUId": "batch.node.ubuntu 16.04" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -36,4 +38,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json index 27680af3d253..583b04fce0ae 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json @@ -20,14 +20,14 @@ ] } }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false + "enableAutoScale": false } }, "responses": { @@ -37,4 +37,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolDelete.json index a882613bfccf..a6811632dc06 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolDelete.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolDisableAutoScale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolDisableAutoScale.json index 3ca02c40c202..5745de52d919 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolDisableAutoScale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolDisableAutoScale.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolEnableAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolEnableAutoscale.json index e5de4f519f47..fd8c47c65bfd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolEnableAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolEnableAutoscale.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolEvaluateAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolEvaluateAutoscale.json index 3d9aa9802c1e..1c67e6d08341 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolEvaluateAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolEvaluateAutoscale.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolExists.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolExists.json index df564b7fef25..3337fdbbe2d9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolExists.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolExists.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolGetLifetimeStatistics.json index 3cf8b4c493ed..047ad8ca6ad1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolGetLifetimeStatistics.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimepoolstats", + "url": "https://account.region.batch.core.windows.net/lifetimepoolstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "usageStats": { @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolGet_Basic.json index 3a99c44f8c8c..a568a9697d7c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolGet_Basic.json @@ -27,7 +27,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "/bin/bash -c 'echo start task'", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolListUsageMetrics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolListUsageMetrics.json index 6793cbd9afd6..92f64e34c1c5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolListUsageMetrics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolListUsageMetrics.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolList_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolList_Basic.json index d35a77b11af2..e1f8b55fcd8e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolList_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolList_Basic.json @@ -28,7 +28,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -51,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolPatch.json index 506f39f9526e..236359f6e7c8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolPatch.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolRemoveNodes.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolRemoveNodes.json index d488ad2616d8..6c08b257518e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolRemoveNodes.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolRemoveNodes.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolResize.json index be49e131d937..39e775bb8d1e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolResize.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolStopResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolStopResize.json index a882613bfccf..a6811632dc06 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolStopResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolStopResize.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolUpdate.json index 085f384e8a6c..ccb342cfac22 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolUpdate.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolUpgradeOS.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolUpgradeOS.json index bfb641c7dca1..86763d1c9723 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolUpgradeOS.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/PoolUpgradeOS.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAddCollection_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAddCollection_Basic.json index 25da173ff7f0..133a2f9e7c8b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAddCollection_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAddCollection_Basic.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAddCollection_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAddCollection_Complex.json index b3e4d09f2c9d..9031c18af727 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAddCollection_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAddCollection_Complex.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_Basic.json index 0baced1103b9..71c2d01ba8c7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_Basic.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_ContainerSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_ContainerSettings.json index 94362efda14f..e8111012b7df 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_ContainerSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_ContainerSettings.json @@ -11,7 +11,7 @@ "imageName": "ubuntu", "containerRunOptions": "--rm" }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -24,4 +24,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_ExitConditions.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_ExitConditions.json index 6836485b5244..599f14285152 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_ExitConditions.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskAdd_ExitConditions.json @@ -18,7 +18,7 @@ } ] }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -31,4 +31,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskDelete.json index 10d6d57516ea..1c95c964b39e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskGet.json index 6f8a4d629473..52460c8cc3a2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskGet.json @@ -17,7 +17,7 @@ "state": "active", "stateTransitionTime": "2016-09-06T06:59:15.1161429Z", "commandLine": "cmd /c hostname", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskList.json index c2910d5edccc..9a7c20cdb633 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskList.json @@ -18,7 +18,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.4733476Z", "commandLine": "cmd /c echo task1", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -43,7 +43,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.6736345Z", "commandLine": "cmd /c echo task2", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskListSubtasks.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskListSubtasks.json index 948f9de200df..75ebd1457aca 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskListSubtasks.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskListSubtasks.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskReactivate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskReactivate.json index d3b19cdc94fb..f0e2ed23b285 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskReactivate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskReactivate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskTerminate.json index d3b19cdc94fb..f0e2ed23b285 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskTerminate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskUpdate.json index 560d10f042a6..2ebbee801c7e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/examples/TaskUpdate.json @@ -7,9 +7,9 @@ "ocp-data": "Fri, 17 Feb 2017 00:00:00 GMT", "taskUpdateParameter": { "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":3, - "retentionTime":"PT1H" + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": 3, + "retentionTime": "PT1H" } } }, @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/BatchService.json index 55aca92ce685..a36011b28e24 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/BatchService.json @@ -63,7 +63,9 @@ }, "operationId": "Application_List", "x-ms-examples": { - "List applications": { "$ref": "./examples/ApplicationList.json" } + "List applications": { + "$ref": "./examples/ApplicationList.json" + } }, "summary": "Lists all of the applications available in the specified account.", "description": "This operation returns only applications and versions that are available for use on compute nodes; that is, that can be used in an application package reference. For administrator information about applications and versions that are not yet available to compute nodes, use the Azure portal or the Azure Resource Manager API.", @@ -178,7 +180,9 @@ ], "operationId": "Application_Get", "x-ms-examples": { - "Get applications": { "$ref": "./examples/ApplicationGet.json" } + "Get applications": { + "$ref": "./examples/ApplicationGet.json" + } }, "summary": "Gets information about the specified application.", "description": "This operation returns only applications and versions that are available for use on compute nodes; that is, that can be used in an application package reference. For administrator information about applications and versions that are not yet available to compute nodes, use the Azure portal or the Azure Resource Manager API.", @@ -288,7 +292,9 @@ }, "operationId": "Pool_ListUsageMetrics", "x-ms-examples": { - "Pool list usage metrics": { "$ref": "./examples/PoolListUsageMetrics.json" } + "Pool list usage metrics": { + "$ref": "./examples/PoolListUsageMetrics.json" + } }, "summary": "Lists the usage metrics, aggregated by pool across individual time intervals, for the specified account.", "description": "If you do not specify a $filter clause including a poolId, the response includes all pools that existed in the account in the time range of the returned aggregation intervals. If you do not specify a $filter clause including a startTime or endTime these filters default to the start and end times of the last aggregation interval currently available; that is, only the last aggregation interval is returned.", @@ -440,7 +446,9 @@ }, "operationId": "Account_ListNodeAgentSkus", "x-ms-examples": { - "Account list node agent skus": { "$ref": "./examples/AccountListNodeAgentSkus.json" } + "Account list node agent skus": { + "$ref": "./examples/AccountListNodeAgentSkus.json" + } }, "summary": "Lists all node agent SKUs supported by the Azure Batch service.", "x-ms-request-id": "request-id", @@ -568,7 +576,9 @@ "operationId": "Account_ListPoolNodeCounts", "description": "Gets the number of nodes in each state, grouped by pool.", "x-ms-examples": { - "NodeCountsPayload": { "$ref": "./examples/AccountListPoolNodeCounts.json" } + "NodeCountsPayload": { + "$ref": "./examples/AccountListPoolNodeCounts.json" + } }, "parameters": [ { @@ -681,7 +691,9 @@ ], "operationId": "Pool_GetAllLifetimeStatistics", "x-ms-examples": { - "Pool get lifetime statistics": { "$ref": "./examples/PoolGetLifetimeStatistics.json" } + "Pool get lifetime statistics": { + "$ref": "./examples/PoolGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the pools in the specified account.", "description": "Statistics are aggregated across all pools that have ever existed in the account, from account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes.", @@ -781,7 +793,9 @@ ], "operationId": "Job_GetAllLifetimeStatistics", "x-ms-examples": { - "Job get lifetime statistics": { "$ref": "./examples/JobGetLifetimeStatistics.json" } + "Job get lifetime statistics": { + "$ref": "./examples/JobGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the jobs in the specified account.", "description": "Statistics are aggregated across all jobs that have ever existed in the account, from account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes.", @@ -881,7 +895,9 @@ ], "operationId": "Certificate_Add", "x-ms-examples": { - "Certificate add": { "$ref": "./examples/CertificateAdd.json" } + "Certificate add": { + "$ref": "./examples/CertificateAdd.json" + } }, "summary": "Adds a certificate to the specified account.", "x-ms-request-id": "request-id", @@ -991,7 +1007,9 @@ }, "operationId": "Certificate_List", "x-ms-examples": { - "Certificate list": { "$ref": "./examples/CertificateList.json" } + "Certificate list": { + "$ref": "./examples/CertificateList.json" + } }, "summary": "Lists all of the certificates that have been added to the specified account.", "x-ms-request-id": "request-id", @@ -1125,7 +1143,9 @@ ], "operationId": "Certificate_CancelDeletion", "x-ms-examples": { - "Certificate cancel delete": { "$ref": "./examples/CertificateCancelDelete.json" } + "Certificate cancel delete": { + "$ref": "./examples/CertificateCancelDelete.json" + } }, "summary": "Cancels a failed deletion of a certificate from the specified account.", "description": "If you try to delete a certificate that is being used by a pool or compute node, the status of the certificate changes to deleteFailed. If you decide that you want to continue using the certificate, you can use this operation to set the status of the certificate back to active. If you intend to delete the certificate, you do not need to run this operation after the deletion failed. You must make sure that the certificate is not being used by any resources, and then you can try again to delete the certificate.", @@ -1240,7 +1260,9 @@ ], "operationId": "Certificate_Delete", "x-ms-examples": { - "Certificate delete": { "$ref": "./examples/CertificateDelete.json" } + "Certificate delete": { + "$ref": "./examples/CertificateDelete.json" + } }, "summary": "Deletes a certificate from the specified account.", "description": "You cannot delete a certificate if a resource (pool or compute node) is using it. Before you can delete a certificate, you must therefore make sure that the certificate is not associated with any existing pools, the certificate is not installed on any compute nodes (even if you remove a certificate from a pool, it is not removed from existing compute nodes in that pool until they restart), and no running tasks depend on the certificate. If you try to delete a certificate that is in use, the deletion fails. The certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the certificate.", @@ -1349,7 +1371,9 @@ ], "operationId": "Certificate_Get", "x-ms-examples": { - "Certificate get": { "$ref": "./examples/CertificateGet.json" } + "Certificate get": { + "$ref": "./examples/CertificateGet.json" + } }, "description": "Gets information about the specified certificate.", "x-ms-request-id": "request-id", @@ -1472,7 +1496,9 @@ ], "operationId": "File_DeleteFromTask", "x-ms-examples": { - "File delete from task": { "$ref": "./examples/FileDeleteFromTask.json" } + "File delete from task": { + "$ref": "./examples/FileDeleteFromTask.json" + } }, "summary": "Deletes the specified task file from the compute node where the task ran.", "x-ms-request-id": "request-id", @@ -1583,7 +1609,9 @@ ], "operationId": "File_GetFromTask", "x-ms-examples": { - "Get File From Task": { "$ref": "./examples/FileGetFromTask.json" } + "Get File From Task": { + "$ref": "./examples/FileGetFromTask.json" + } }, "description": "Returns the content of the specified task file.", "x-ms-request-id": "request-id", @@ -1764,7 +1792,9 @@ ], "operationId": "File_GetPropertiesFromTask", "x-ms-examples": { - "File get properties from task": { "$ref": "./examples/FileGetPropertiesFromTask.json" } + "File get properties from task": { + "$ref": "./examples/FileGetPropertiesFromTask.json" + } }, "description": "Gets the properties of the specified task file.", "x-ms-request-id": "request-id", @@ -1929,7 +1959,9 @@ ], "operationId": "File_DeleteFromComputeNode", "x-ms-examples": { - "File delete from node": { "$ref": "./examples/FileDeleteFromNode.json" } + "File delete from node": { + "$ref": "./examples/FileDeleteFromNode.json" + } }, "summary": "Deletes the specified file from the compute node.", "x-ms-request-id": "request-id", @@ -2040,7 +2072,9 @@ ], "operationId": "File_GetFromComputeNode", "x-ms-examples": { - "Get File From Compute Node": { "$ref": "./examples/FileGetFromNode.json" } + "Get File From Compute Node": { + "$ref": "./examples/FileGetFromNode.json" + } }, "description": "Returns the content of the specified compute node file.", "x-ms-request-id": "request-id", @@ -2221,7 +2255,9 @@ ], "operationId": "File_GetPropertiesFromComputeNode", "x-ms-examples": { - "File get properties from node": { "$ref": "./examples/FileGetPropertiesFromNode.json" } + "File get properties from node": { + "$ref": "./examples/FileGetPropertiesFromNode.json" + } }, "description": "Gets the properties of the specified compute node file.", "x-ms-request-id": "request-id", @@ -2389,7 +2425,9 @@ }, "operationId": "File_ListFromTask", "x-ms-examples": { - "File list from task": { "$ref": "./examples/FileListFromTask.json" } + "File list from task": { + "$ref": "./examples/FileListFromTask.json" + } }, "summary": "Lists the files in a task's directory on its compute node.", "x-ms-request-id": "request-id", @@ -2537,7 +2575,9 @@ }, "operationId": "File_ListFromComputeNode", "x-ms-examples": { - "File list from node": { "$ref": "./examples/FileListFromNode.json" } + "File list from node": { + "$ref": "./examples/FileListFromNode.json" + } }, "summary": "Lists all of the files in task directories on the specified compute node.", "x-ms-request-id": "request-id", @@ -2682,7 +2722,9 @@ ], "operationId": "JobSchedule_Exists", "x-ms-examples": { - "Check Job Schedule Exists": { "$ref": "./examples/JobScheduleExists.json" } + "Check Job Schedule Exists": { + "$ref": "./examples/JobScheduleExists.json" + } }, "summary": "Checks the specified job schedule exists.", "x-ms-request-id": "request-id", @@ -2828,7 +2870,9 @@ ], "operationId": "JobSchedule_Delete", "x-ms-examples": { - "JobSchedule delete": { "$ref": "./examples/JobScheduleDelete.json" } + "JobSchedule delete": { + "$ref": "./examples/JobScheduleDelete.json" + } }, "summary": "Deletes a job schedule from the specified account.", "description": "When you delete a job schedule, this also deletes all jobs and tasks under that schedule. When tasks are deleted, all the files in their working directories on the compute nodes are also deleted (the retention period is ignored). The job schedule statistics are no longer accessible once the job schedule is deleted, though they are still counted towards account lifetime statistics.", @@ -2961,7 +3005,9 @@ ], "operationId": "JobSchedule_Get", "x-ms-examples": { - "JobSchedule get": { "$ref": "./examples/JobScheduleGet.json" } + "JobSchedule get": { + "$ref": "./examples/JobScheduleGet.json" + } }, "description": "Gets information about the specified job schedule.", "x-ms-request-id": "request-id", @@ -3127,7 +3173,9 @@ ], "operationId": "JobSchedule_Patch", "x-ms-examples": { - "JobSchedule patch": { "$ref": "./examples/JobSchedulePatch.json" } + "JobSchedule patch": { + "$ref": "./examples/JobSchedulePatch.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This replaces only the job schedule properties specified in the request. For example, if the schedule property is not specified with this request, then the Batch service will keep the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3284,7 +3332,9 @@ ], "operationId": "JobSchedule_Update", "x-ms-examples": { - "JobSchedule update": { "$ref": "./examples/JobScheduleUpdate.json" } + "JobSchedule update": { + "$ref": "./examples/JobScheduleUpdate.json" + } }, "summary": "Updates the properties of the specified job schedule.", "description": "This fully replaces all the updatable properties of the job schedule. For example, if the schedule property is not specified with this request, then the Batch service will remove the existing schedule. Changes to a job schedule only impact jobs created by the schedule after the update has taken place; currently running jobs are unaffected.", @@ -3443,7 +3493,9 @@ ], "operationId": "JobSchedule_Disable", "x-ms-examples": { - "JobSchedule disable": { "$ref": "./examples/JobScheduleDisable.json" } + "JobSchedule disable": { + "$ref": "./examples/JobScheduleDisable.json" + } }, "summary": "Disables a job schedule.", "description": "No new jobs will be created until the job schedule is enabled again.", @@ -3593,7 +3645,9 @@ ], "operationId": "JobSchedule_Enable", "x-ms-examples": { - "JobSchedule enable": { "$ref": "./examples/JobScheduleEnable.json" } + "JobSchedule enable": { + "$ref": "./examples/JobScheduleEnable.json" + } }, "summary": "Enables a job schedule.", "x-ms-request-id": "request-id", @@ -3742,7 +3796,9 @@ ], "operationId": "JobSchedule_Terminate", "x-ms-examples": { - "JobSchedule terminate": { "$ref": "./examples/JobScheduleTerminate.json" } + "JobSchedule terminate": { + "$ref": "./examples/JobScheduleTerminate.json" + } }, "summary": "Terminates a job schedule.", "x-ms-request-id": "request-id", @@ -3891,8 +3947,12 @@ ], "operationId": "JobSchedule_Add", "x-ms-examples": { - "Add a basic JobSchedule": { "$ref": "./examples/JobScheduleAdd_Basic.json" }, - "Add a complex JobScheduleAdd": { "$ref": "./examples/JobScheduleAdd_Complex.json" } + "Add a basic JobSchedule": { + "$ref": "./examples/JobScheduleAdd_Basic.json" + }, + "Add a complex JobScheduleAdd": { + "$ref": "./examples/JobScheduleAdd_Complex.json" + } }, "summary": "Adds a job schedule to the specified account.", "x-ms-request-id": "request-id", @@ -4002,7 +4062,9 @@ }, "operationId": "JobSchedule_List", "x-ms-examples": { - "JobSchedule list": { "$ref": "./examples/JobScheduleList.json" } + "JobSchedule list": { + "$ref": "./examples/JobScheduleList.json" + } }, "summary": "Lists all of the job schedules in the specified account.", "x-ms-request-id": "request-id", @@ -4146,7 +4208,9 @@ ], "operationId": "Job_Delete", "x-ms-examples": { - "Delete Job": { "$ref": "./examples/JobDelete.json" } + "Delete Job": { + "$ref": "./examples/JobDelete.json" + } }, "summary": "Deletes a job.", "description": "Deleting a job also deletes all tasks that are part of that job, and all job statistics. This also overrides the retention period for task data; that is, if the job contains tasks which are still retained on compute nodes, the Batch services deletes those tasks' working directories and all their contents. When a Delete Job request is received, the Batch service sets the job to the deleting state. All update operations on a job that is in deleting state will fail with status code 409 (Conflict), with additional information indicating that the job is being deleted.", @@ -4279,7 +4343,9 @@ ], "operationId": "Job_Get", "x-ms-examples": { - "Job get": { "$ref": "./examples/JobGet.json" } + "Job get": { + "$ref": "./examples/JobGet.json" + } }, "summary": "Gets information about the specified job.", "x-ms-request-id": "request-id", @@ -4445,7 +4511,9 @@ ], "operationId": "Job_Patch", "x-ms-examples": { - "Job patch": { "$ref": "./examples/JobPatch.json" } + "Job patch": { + "$ref": "./examples/JobPatch.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This replaces only the job properties specified in the request. For example, if the job has constraints, and a request does not specify the constraints element, then the job keeps the existing constraints.", @@ -4602,7 +4670,9 @@ ], "operationId": "Job_Update", "x-ms-examples": { - "Job update": { "$ref": "./examples/JobUpdate.json" } + "Job update": { + "$ref": "./examples/JobUpdate.json" + } }, "summary": "Updates the properties of the specified job.", "description": "This fully replaces all the updatable properties of the job. For example, if the job has constraints associated with it and if constraints is not specified with this request, then the Batch service will remove the existing constraints.", @@ -4761,7 +4831,9 @@ ], "operationId": "Job_Disable", "x-ms-examples": { - "Job disable": { "$ref": "./examples/JobDisable.json" } + "Job disable": { + "$ref": "./examples/JobDisable.json" + } }, "summary": "Disables the specified job, preventing new tasks from running.", "description": "The Batch Service immediately moves the job to the disabling state. Batch then uses the disableTasks parameter to determine what to do with the currently running tasks of the job. The job remains in the disabling state until the disable operation is completed and all tasks have been dealt with according to the disableTasks option; the job then moves to the disabled state. No new tasks are started under the job until it moves back to active state. If you try to disable a job that is in any state other than active, disabling, or disabled, the request fails with status code 409.", @@ -4920,7 +4992,9 @@ ], "operationId": "Job_Enable", "x-ms-examples": { - "Job enable": { "$ref": "./examples/JobEnable.json" } + "Job enable": { + "$ref": "./examples/JobEnable.json" + } }, "summary": "Enables the specified job, allowing new tasks to run.", "description": "When you call this API, the Batch service sets a disabled job to the enabling state. After the this operation is completed, the job moves to the active state, and scheduling of new tasks under the job resumes. The Batch service does not allow a task to remain in the active state for more than 180 days. Therefore, if you enable a job containing active tasks which were added more than 180 days ago, those tasks will not run.", @@ -5070,7 +5144,9 @@ ], "operationId": "Job_Terminate", "x-ms-examples": { - "Job terminate": { "$ref": "./examples/JobTerminate.json" } + "Job terminate": { + "$ref": "./examples/JobTerminate.json" + } }, "summary": "Terminates the specified job, marking it as completed.", "description": "When a Terminate Job request is received, the Batch service sets the job to the terminating state. The Batch service then terminates any running tasks associated with the job and runs any required job release tasks. Then the job moves into the completed state. If there are any tasks in the job in the active state, they will remain in the active state. Once a job is terminated, new tasks cannot be added and any remaining active tasks will not be scheduled.", @@ -5229,8 +5305,12 @@ ], "operationId": "Job_Add", "x-ms-examples": { - "Add a basic job": { "$ref": "./examples/JobAdd_Basic.json" }, - "Add a complex job": { "$ref": "./examples/JobAdd_Complex.json" } + "Add a basic job": { + "$ref": "./examples/JobAdd_Basic.json" + }, + "Add a complex job": { + "$ref": "./examples/JobAdd_Complex.json" + } }, "summary": "Adds a job to the specified account.", "description": "The Batch service supports two ways to control the work done as part of a job. In the first approach, the user specifies a Job Manager task. The Batch service launches this task when it is ready to start the job. The Job Manager task controls all other tasks that run under this job, by using the Task APIs. In the second approach, the user directly controls the execution of tasks under an active job, by using the Task APIs. Also note: when naming jobs, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5341,7 +5421,9 @@ }, "operationId": "Job_List", "x-ms-examples": { - "Job list": { "$ref": "./examples/JobList.json" } + "Job list": { + "$ref": "./examples/JobList.json" + } }, "summary": "Lists all of the jobs in the specified account.", "x-ms-request-id": "request-id", @@ -5487,7 +5569,9 @@ "nextLinkName": "odata.nextLink" }, "x-ms-examples": { - "List Job Under Job Schedule": { "$ref": "./examples/JobListFromJobSchedule.json" } + "List Job Under Job Schedule": { + "$ref": "./examples/JobListFromJobSchedule.json" + } }, "operationId": "Job_ListFromJobSchedule", "summary": "Lists the jobs that have been created under the specified job schedule.", @@ -5642,7 +5726,9 @@ }, "operationId": "Job_ListPreparationAndReleaseTaskStatus", "x-ms-examples": { - "Job list preparation and release task status": { "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" } + "Job list preparation and release task status": { + "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" + } }, "summary": "Lists the execution status of the Job Preparation and Job Release task for the specified job across the compute nodes where the job has run.", "description": "This API returns the Job Preparation and Job Release task status on all compute nodes that have run the Job Preparation or Job Release task. This includes nodes which have since been removed from the pool. If this API is invoked on a job which has no Job Preparation or Job Release task, the Batch service returns HTTP status code 409 (Conflict) with an error code of JobPreparationTaskNotSpecified.", @@ -5784,7 +5870,9 @@ ], "operationId": "Job_GetTaskCounts", "x-ms-examples": { - "Job get task counts": { "$ref": "./examples/JobGetTaskCounts.json" } + "Job get task counts": { + "$ref": "./examples/JobGetTaskCounts.json" + } }, "summary": "Gets the task counts for the specified job.", "description": "Task counts provide a count of the tasks by active, running or completed task state, and a count of tasks which succeeded or failed. Tasks in the preparing state are counted as running.", @@ -5882,9 +5970,15 @@ ], "operationId": "Pool_Add", "x-ms-examples": { - "Add a CloudServiceConfiguration pool": { "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" }, - "Add a VirtualMachineConfiguration pool": { "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" }, - "Add a VirtualMachineConfiguration pool with containers": { "$ref": "./examples/PoolAdd_VirtualMachineConfigurationWithContainers.json" } + "Add a CloudServiceConfiguration pool": { + "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool": { + "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool with containers": { + "$ref": "./examples/PoolAdd_VirtualMachineConfigurationWithContainers.json" + } }, "summary": "Adds a pool to the specified account.", "description": "When naming pools, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5995,7 +6089,9 @@ }, "operationId": "Pool_List", "x-ms-examples": { - "Pool list": { "$ref": "./examples/PoolList_Basic.json" } + "Pool list": { + "$ref": "./examples/PoolList_Basic.json" + } }, "summary": "Lists all of the pools in the specified account.", "x-ms-request-id": "request-id", @@ -6139,7 +6235,9 @@ ], "operationId": "Pool_Delete", "x-ms-examples": { - "Pool delete": { "$ref": "./examples/PoolDelete.json" } + "Pool delete": { + "$ref": "./examples/PoolDelete.json" + } }, "summary": "Deletes a pool from the specified account.", "description": "When you request that a pool be deleted, the following actions occur: the pool state is set to deleting; any ongoing resize operation on the pool are stopped; the Batch service starts resizing the pool to zero nodes; any tasks running on existing nodes are terminated and requeued (as if a resize pool operation had been requested with the default requeue option); finally, the pool is removed from the system. Because running tasks are requeued, the user can rerun these tasks by updating their job to target a different pool. The tasks can then run on the new pool. If you want to override the requeue behavior, then you should call resize pool explicitly to shrink the pool to zero size before deleting the pool. If you call an Update, Patch or Delete API on a pool in the deleting state, it will fail with HTTP status code 409 with error code PoolBeingDeleted.", @@ -6272,7 +6370,9 @@ ], "operationId": "Pool_Exists", "x-ms-examples": { - "Check Pool Exists": { "$ref": "./examples/PoolExists.json" } + "Check Pool Exists": { + "$ref": "./examples/PoolExists.json" + } }, "description": "Gets basic properties of a pool.", "x-ms-request-id": "request-id", @@ -6418,7 +6518,9 @@ ], "operationId": "Pool_Get", "x-ms-examples": { - "Pool get": { "$ref": "./examples/PoolGet_Basic.json" } + "Pool get": { + "$ref": "./examples/PoolGet_Basic.json" + } }, "description": "Gets information about the specified pool.", "x-ms-request-id": "request-id", @@ -6584,7 +6686,9 @@ ], "operationId": "Pool_Patch", "x-ms-examples": { - "Patch the Pool": { "$ref": "./examples/PoolPatch.json" } + "Patch the Pool": { + "$ref": "./examples/PoolPatch.json" + } }, "summary": "Updates the properties of the specified pool.", "description": "This only replaces the pool properties specified in the request. For example, if the pool has a start task associated with it, and a request does not specify a start task element, then the pool keeps the existing start task.", @@ -6743,7 +6847,9 @@ ], "operationId": "Pool_DisableAutoScale", "x-ms-examples": { - "Disable pool autoscale": { "$ref": "./examples/PoolDisableAutoScale.json" } + "Disable pool autoscale": { + "$ref": "./examples/PoolDisableAutoScale.json" + } }, "summary": "Disables automatic scaling for a pool.", "x-ms-request-id": "request-id", @@ -6850,7 +6956,9 @@ ], "operationId": "Pool_EnableAutoScale", "x-ms-examples": { - "Pool enable autoscale": { "$ref": "./examples/PoolEnableAutoscale.json" } + "Pool enable autoscale": { + "$ref": "./examples/PoolEnableAutoscale.json" + } }, "summary": "Enables automatic scaling for a pool.", "description": "You cannot enable automatic scaling on a pool if a resize operation is in progress on the pool. If automatic scaling of the pool is currently disabled, you must specify a valid autoscale formula as part of the request. If automatic scaling of the pool is already enabled, you may specify a new autoscale formula and/or a new evaluation interval. You cannot call this API for the same pool more than once every 30 seconds.", @@ -7009,7 +7117,9 @@ ], "operationId": "Pool_EvaluateAutoScale", "x-ms-examples": { - "Pool evaluate autoscale": { "$ref": "./examples/PoolEvaluateAutoscale.json" } + "Pool evaluate autoscale": { + "$ref": "./examples/PoolEvaluateAutoscale.json" + } }, "summary": "Gets the result of evaluating an automatic scaling formula on the pool.", "description": "This API is primarily for validating an autoscale formula, as it simply returns the result without applying the formula to the pool. The pool must have auto scaling enabled in order to evaluate a formula.", @@ -7129,7 +7239,9 @@ ], "operationId": "Pool_Resize", "x-ms-examples": { - "Pool resize": { "$ref": "./examples/PoolResize.json" } + "Pool resize": { + "$ref": "./examples/PoolResize.json" + } }, "summary": "Changes the number of compute nodes that are assigned to a pool.", "description": "You can only resize a pool when its allocation state is steady. If the pool is already resizing, the request fails with status code 409. When you resize a pool, the pool's allocation state changes from steady to resizing. You cannot resize pools which are configured for automatic scaling. If you try to do this, the Batch service returns an error 409. If you resize a pool downwards, the Batch service chooses which nodes to remove. To remove specific nodes, use the pool remove nodes API instead.", @@ -7288,7 +7400,9 @@ ], "operationId": "Pool_StopResize", "x-ms-examples": { - "Pool stop resize": { "$ref": "./examples/PoolStopResize.json" } + "Pool stop resize": { + "$ref": "./examples/PoolStopResize.json" + } }, "summary": "Stops an ongoing resize operation on the pool.", "description": "This does not restore the pool to its previous state before the resize operation: it only stops any further changes being made, and the pool maintains its current state. After stopping, the pool stabilizes at the number of nodes it was at when the stop operation was done. During the stop operation, the pool allocation state changes first to stopping and then to steady. A resize operation need not be an explicit resize pool request; this API can also be used to halt the initial sizing of the pool when it is created.", @@ -7438,7 +7552,9 @@ ], "operationId": "Pool_UpdateProperties", "x-ms-examples": { - "Pool update": { "$ref": "./examples/PoolUpdate.json" } + "Pool update": { + "$ref": "./examples/PoolUpdate.json" + } }, "summary": "Updates the properties of the specified pool.", "description": "This fully replaces all the updatable properties of the pool. For example, if the pool has a start task associated with it and if start task is not specified with this request, then the Batch service will remove the existing start task.", @@ -7555,7 +7671,9 @@ ], "operationId": "Pool_RemoveNodes", "x-ms-examples": { - "Pool remove nodes": { "$ref": "./examples/PoolRemoveNodes.json" } + "Pool remove nodes": { + "$ref": "./examples/PoolRemoveNodes.json" + } }, "summary": "Removes compute nodes from the specified pool.", "description": "This operation can only run when the allocation state of the pool is steady. When this operation runs, the allocation state changes from steady to resizing.", @@ -7714,9 +7832,15 @@ ], "operationId": "Task_Add", "x-ms-examples": { - "Add a basic task": { "$ref": "./examples/TaskAdd_Basic.json" }, - "Add a task with exit conditions": { "$ref": "./examples/TaskAdd_ExitConditions.json" }, - "Add a task with container settings": { "$ref": "./examples/TaskAdd_ContainerSettings.json" } + "Add a basic task": { + "$ref": "./examples/TaskAdd_Basic.json" + }, + "Add a task with exit conditions": { + "$ref": "./examples/TaskAdd_ExitConditions.json" + }, + "Add a task with container settings": { + "$ref": "./examples/TaskAdd_ContainerSettings.json" + } }, "summary": "Adds a task to the specified job.", "description": "The maximum lifetime of a task from addition to completion is 180 days. If a task has not completed within 180 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.", @@ -7834,7 +7958,9 @@ }, "operationId": "Task_List", "x-ms-examples": { - "Task list": { "$ref": "./examples/TaskList.json" } + "Task list": { + "$ref": "./examples/TaskList.json" + } }, "summary": "Lists all of the tasks that are associated with the specified job.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -7986,8 +8112,12 @@ ], "operationId": "Task_AddCollection", "x-ms-examples": { - "Add a basic collection of tasks": { "$ref": "./examples/TaskAddCollection_Basic.json" }, - "Add a complex collection of tasks": { "$ref": "./examples/TaskAddCollection_Complex.json" } + "Add a basic collection of tasks": { + "$ref": "./examples/TaskAddCollection_Basic.json" + }, + "Add a complex collection of tasks": { + "$ref": "./examples/TaskAddCollection_Complex.json" + } }, "summary": "Adds a collection of tasks to the specified job.", "description": "Note that each task must have a unique ID. The Batch service may not return the results for each task in the same order the tasks were submitted in this request. If the server times out or the connection is closed during the request, the request may have been partially or fully processed, or not at all. In such cases, the user should re-issue the request. Note that it is up to the user to correctly handle failures when re-issuing a request. For example, you should use the same task IDs during a retry so that if the prior operation succeeded, the retry will not create extra tasks unexpectedly. If the response contains any tasks which failed to add, a client can retry the request. In a retry, it is most efficient to resubmit only tasks that failed to add, and to omit tasks that were successfully added on the first attempt. The maximum lifetime of a task from addition to completion is 180 days. If a task has not completed within 180 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.", @@ -8092,7 +8222,9 @@ ], "operationId": "Task_Delete", "x-ms-examples": { - "Task delete": { "$ref": "./examples/TaskDelete.json" } + "Task delete": { + "$ref": "./examples/TaskDelete.json" + } }, "summary": "Deletes a task from the specified job.", "description": "When a task is deleted, all of the files in its directory on the compute node where it ran are also deleted (regardless of the retention time). For multi-instance tasks, the delete task operation applies synchronously to the primary task; subtasks and their files are then deleted asynchronously in the background.", @@ -8232,7 +8364,9 @@ ], "operationId": "Task_Get", "x-ms-examples": { - "Task get": { "$ref": "./examples/TaskGet.json" } + "Task get": { + "$ref": "./examples/TaskGet.json" + } }, "summary": "Gets information about the specified task.", "description": "For multi-instance tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary task. Use the list subtasks API to retrieve information about subtasks.", @@ -8410,7 +8544,9 @@ ], "operationId": "Task_Update", "x-ms-examples": { - "Task update": { "$ref": "./examples/TaskUpdate.json" } + "Task update": { + "$ref": "./examples/TaskUpdate.json" + } }, "description": "Updates the properties of the specified task.", "x-ms-request-id": "request-id", @@ -8575,7 +8711,9 @@ ], "operationId": "Task_ListSubtasks", "x-ms-examples": { - "Task list subtasks": { "$ref": "./examples/TaskListSubtasks.json" } + "Task list subtasks": { + "$ref": "./examples/TaskListSubtasks.json" + } }, "summary": "Lists all of the subtasks that are associated with the specified multi-instance task.", "description": "If the task is not a multi-instance task then this returns an empty collection.", @@ -8699,7 +8837,9 @@ ], "operationId": "Task_Terminate", "x-ms-examples": { - "Task terminate": { "$ref": "./examples/TaskTerminate.json" } + "Task terminate": { + "$ref": "./examples/TaskTerminate.json" + } }, "summary": "Terminates the specified task.", "description": "When the task has been terminated, it moves to the completed state. For multi-instance tasks, the terminate task operation applies synchronously to the primary task; subtasks are then terminated asynchronously in the background.", @@ -8856,7 +8996,9 @@ ], "operationId": "Task_Reactivate", "x-ms-examples": { - "Task reactivate": { "$ref": "./examples/TaskReactivate.json" } + "Task reactivate": { + "$ref": "./examples/TaskReactivate.json" + } }, "summary": "Reactivates a task, allowing it to run again even if its retry count has been exhausted.", "description": "Reactivation makes a task eligible to be retried again up to its maximum retry count. The task's state is changed to active. As the task is no longer in the completed state, any previous exit code or failure information is no longer available after reactivation. Each time a task is reactivated, its retry count is reset to 0. Reactivation will fail for tasks that are not completed or that previously completed successfully (with an exit code of 0). Additionally, it will fail if the job has completed (or is terminating or deleting).", @@ -9013,7 +9155,9 @@ ], "operationId": "ComputeNode_AddUser", "x-ms-examples": { - "Node add user": { "$ref": "./examples/NodeAddUser.json" } + "Node add user": { + "$ref": "./examples/NodeAddUser.json" + } }, "summary": "Adds a user account to the specified compute node.", "description": "You can add a user account to a node only when it is in the idle or running state.", @@ -9137,7 +9281,9 @@ ], "operationId": "ComputeNode_DeleteUser", "x-ms-examples": { - "Node delete user": { "$ref": "./examples/NodeDeleteUser.json" } + "Node delete user": { + "$ref": "./examples/NodeDeleteUser.json" + } }, "summary": "Deletes a user account from the specified compute node.", "description": "You can delete a user account to a node only when it is in the idle or running state.", @@ -9242,7 +9388,9 @@ ], "operationId": "ComputeNode_UpdateUser", "x-ms-examples": { - "Node update user": { "$ref": "./examples/NodeUpdateUser.json" } + "Node update user": { + "$ref": "./examples/NodeUpdateUser.json" + } }, "summary": "Updates the password and expiration time of a user account on the specified compute node.", "description": "This operation replaces of all the updatable properties of the account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user account on a node only when it is in the idle or running state.", @@ -9373,7 +9521,9 @@ ], "operationId": "ComputeNode_Get", "x-ms-examples": { - "Node get": { "$ref": "./examples/NodeGet_Basic.json" } + "Node get": { + "$ref": "./examples/NodeGet_Basic.json" + } }, "summary": "Gets information about the specified compute node.", "x-ms-request-id": "request-id", @@ -9496,7 +9646,9 @@ ], "operationId": "ComputeNode_Reboot", "x-ms-examples": { - "Node reboot": { "$ref": "./examples/NodeReboot.json" } + "Node reboot": { + "$ref": "./examples/NodeReboot.json" + } }, "summary": "Restarts the specified compute node.", "description": "You can restart a node only if it is in an idle or running state.", @@ -9620,7 +9772,9 @@ ], "operationId": "ComputeNode_Reimage", "x-ms-examples": { - "Node reimage": { "$ref": "./examples/NodeReimage.json" } + "Node reimage": { + "$ref": "./examples/NodeReimage.json" + } }, "summary": "Reinstalls the operating system on the specified compute node.", "description": "You can reinstall the operating system on a node only if it is in an idle or running state. This API can be invoked only on pools created with the cloud service configuration property.", @@ -9744,7 +9898,9 @@ ], "operationId": "ComputeNode_DisableScheduling", "x-ms-examples": { - "Node disable scheduling": { "$ref": "./examples/NodeDisableScheduling.json" } + "Node disable scheduling": { + "$ref": "./examples/NodeDisableScheduling.json" + } }, "summary": "Disables task scheduling on the specified compute node.", "description": "You can disable task scheduling on a node only if its current scheduling state is enabled.", @@ -9868,7 +10024,9 @@ ], "operationId": "ComputeNode_EnableScheduling", "x-ms-examples": { - "Node enable scheduling": { "$ref": "./examples/NodeEnableScheduling.json" } + "Node enable scheduling": { + "$ref": "./examples/NodeEnableScheduling.json" + } }, "summary": "Enables task scheduling on the specified compute node.", "description": "You can enable task scheduling on a node only if its current scheduling state is disabled", @@ -9983,7 +10141,9 @@ ], "operationId": "ComputeNode_GetRemoteLoginSettings", "x-ms-examples": { - "Node get remote login settings": { "$ref": "./examples/NodeGetRemoteLoginSettings.json" } + "Node get remote login settings": { + "$ref": "./examples/NodeGetRemoteLoginSettings.json" + } }, "summary": "Gets the settings required for remote login to a compute node.", "description": "Before you can remotely login to a node using the remote login settings, you must create a user account on the node. This API can be invoked only on pools created with the virtual machine configuration property. For pools created with a cloud service configuration, see the GetRemoteDesktop API.", @@ -10097,7 +10257,9 @@ ], "operationId": "ComputeNode_GetRemoteDesktop", "x-ms-examples": { - "Get RDP file of the compute node": { "$ref": "./examples/NodeGetRemoteDesktop.json" } + "Get RDP file of the compute node": { + "$ref": "./examples/NodeGetRemoteDesktop.json" + } }, "summary": "Gets the Remote Desktop Protocol file for the specified compute node.", "description": "Before you can access a node by using the RDP file, you must create a user account on the node. This API can only be invoked on pools created with a cloud service configuration. For pools created with a virtual machine configuration, see the GetRemoteLoginSettings API.", @@ -10218,7 +10380,9 @@ "summary": "Upload Azure Batch service log files from the specified compute node to Azure Blob Storage.", "description": "This is for gathering Azure Batch service log files in an automated fashion from nodes if you are experiencing an error and wish to escalate to Azure support. The Azure Batch service log files should be shared with Azure support to aid in debugging issues with the Batch service.", "x-ms-examples": { - "Upload BatchService Logs": { "$ref": "./examples/NodeUploadBatchServiceLogs.json" } + "Upload BatchService Logs": { + "$ref": "./examples/NodeUploadBatchServiceLogs.json" + } }, "x-ms-request-id": "request-id", "parameters": [ @@ -10333,7 +10497,9 @@ }, "operationId": "ComputeNode_List", "x-ms-examples": { - "Node list": { "$ref": "./examples/NodeList.json" } + "Node list": { + "$ref": "./examples/NodeList.json" + } }, "summary": "Lists the compute nodes in the specified pool.", "x-ms-request-id": "request-id", @@ -10496,7 +10662,13 @@ "title": "The total core hours used in the pool during this aggregation interval." } }, - "required": [ "poolId", "startTime", "endTime", "vmSize", "totalCoreHours" ], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours" + ], "title": "Usage metrics for a pool across an aggregation interval." }, "PoolListUsageMetricsResult": { @@ -10616,7 +10788,11 @@ "title": "The aggregated wall-clock time of the dedicated compute node cores being part of the pool." } }, - "required": [ "startTime", "lastUpdateTime", "dedicatedCoreTime" ], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "title": "Statistics related to pool usage information." }, "ResourceStatistics": { @@ -10687,7 +10863,21 @@ "title": "The total amount of data in GiB of network writes across all nodes in the pool." } }, - "required": [ "startTime", "lastUpdateTime", "avgCPUPercentage", "avgMemoryGiB", "peakMemoryGiB", "avgDiskGiB", "peakDiskGiB", "diskReadIOps", "diskWriteIOps", "diskReadGiB", "diskWriteGiB", "networkReadGiB", "networkWriteGiB" ], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "title": "Statistics related to resource consumption by compute nodes in a pool." }, "PoolStatistics": { @@ -10715,7 +10905,11 @@ "title": "Statistics related to resource consumption by compute nodes in the pool." } }, - "required": [ "url", "startTime", "lastUpdateTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "title": "Contains utilization and resource usage statistics for the lifetime of a pool." }, "JobStatistics": { @@ -10794,7 +10988,22 @@ "description": "The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.) This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job." }, "NameValuePair": { @@ -10889,7 +11098,9 @@ "description": "If this is omitted on a pool, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences and HTTP status code 409. If this is omitted on a task, and no default version is specified for this application, the task fails with a pre-processing error." } }, - "required": [ "applicationId" ], + "required": [ + "applicationId" + ], "title": "A reference to an application package to be deployed to compute nodes." }, "ApplicationSummary": { @@ -10910,7 +11121,11 @@ } } }, - "required": [ "id", "displayName", "versions" ], + "required": [ + "id", + "displayName", + "versions" + ], "title": "Contains information about an application in an Azure Batch account." }, "CertificateAddParameter": { @@ -10955,7 +11170,11 @@ "description": "This is required if the certificate format is pfx. It should be omitted if the certificate format is cer." } }, - "required": [ "thumbprint", "thumbprintAlgorithm", "data" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "title": "A certificate that can be installed on compute nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -11002,7 +11221,10 @@ "description": "The file mode is returned only for files on Linux compute nodes." } }, - "required": [ "lastModified", "contentLength" ], + "required": [ + "lastModified", + "contentLength" + ], "title": "The properties of a file on a compute node." }, "NodeFile": { @@ -11096,7 +11318,9 @@ "description": "This is only supported for jobs running on VirtualMachineConfiguration pools. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/{provider}/virtualNetworks/{network}/subnets/{subnet}. The virtual network must be in the same region and subscription as the Azure Batch account. The specified subnet should have enough free IP addresses to accommodate the number of nodes which will run tasks from the job. For more details, see https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration." } }, - "required": [ "subnetId" ], + "required": [ + "subnetId" + ], "title": "The network configuration for the job." }, "TaskContainerSettings": { @@ -11117,7 +11341,9 @@ "description": "This setting can be omitted if was already provided at pool creation." } }, - "required": [ "imageName" ], + "required": [ + "imageName" + ], "title": "The container settings for a task." }, "ResourceFile": { @@ -11166,7 +11392,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, "ExitConditions": { @@ -11215,7 +11443,10 @@ } }, "title": "How the Batch service should respond if a task exits with a particular exit code.", - "required": [ "code", "exitOptions" ] + "required": [ + "code", + "exitOptions" + ] }, "ExitCodeRangeMapping": { "properties": { @@ -11235,7 +11466,11 @@ } }, "title": "A range of exit codes and how the Batch service should respond to exit codes within that range.", - "required": [ "start", "end", "exitOptions" ] + "required": [ + "start", + "end", + "exitOptions" + ] }, "ExitOptions": { "properties": { @@ -11419,7 +11654,10 @@ "$ref": "#/definitions/WindowsUserConfiguration" } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user used to execute tasks on an Azure Batch node." }, "TaskConstraints": { @@ -11528,7 +11766,10 @@ "description": "The default value is true." } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "Specifies details of a Job Manager task.", "description": "The Job Manager task is automatically started when the job is created. The Batch service tries to schedule the Job Manager task before any other tasks in the job. When shrinking a pool, the Batch service tries to preserve compute nodes where Job Manager tasks are running for as long as possible (that is, nodes running 'normal' tasks are removed before nodes running Job Manager tasks). When a Job Manager task fails and needs to be restarted, the system tries to schedule it at the highest priority. If there are no idle nodes available, the system may terminate one of the running tasks in the pool and return it to the queue in order to make room for the Job Manager task to restart. Note that a Job Manager task in one job does not have priority over tasks in other jobs. Across jobs, only job level priorities are observed. For example, if a Job Manager in a priority 0 job needs to be restarted, it will not displace tasks of a priority 1 job. Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -11584,7 +11825,9 @@ "description": "The Job Preparation task is always rerun if a compute node is reimaged, or if the Job Preparation task did not complete (e.g. because the reboot occurred while the task was running). Therefore, you should always write a Job Preparation task to be idempotent and to behave correctly if run multiple times. The default value is true." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Preparation task to run before any tasks of the job on any given compute node.", "description": "You can use Job Preparation to prepare a compute node to run tasks for the job. Activities commonly performed in Job Preparation include: Downloading common resource files used by all the tasks in the job. The Job Preparation task can download these common resource files to the shared location on the compute node. (AZ_BATCH_NODE_ROOT_DIR\\shared), or starting a local service on the compute node so that all tasks of that job can communicate with it. If the Job Preparation task fails (that is, exhausts its retry count before exiting with exit code 0), Batch will not run tasks of this job on the compute node. The node remains ineligible to run tasks of this job until it is reimaged. The node remains active and can be used for other jobs. The Job Preparation task can run multiple times on the same compute node. Therefore, you should write the Job Preparation task to handle re-execution. If the compute node is rebooted, the Job Preparation task is run again on the node before scheduling any other task of the job, if rerunOnNodeRebootAfterSuccess is true or if the Job Preparation task did not previously complete. If the compute node is reimaged, the Job Preparation task is run again before scheduling any task of the job. Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -11637,7 +11880,9 @@ "description": "If omitted, the task runs as a non-administrative user unique to the task." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Release task to run on job completion on any compute node where the job has run.", "description": "The Job Release task runs when the job ends, because of one of the following: The user calls the Terminate Job API, or the Delete Job API while the job is still active, the job's maximum wall clock time constraint is reached, and the job is still active, or the job's Job Manager task completed, and the job is configured to terminate when the Job Manager completes. The Job Release task runs on each compute node where tasks of the job have run and the Job Preparation task ran and completed. If you reimage a compute node after it has run the Job Preparation task, and the job ends without any further tasks of the job running on that compute node (and hence the Job Preparation task does not re-run), then the Job Release task does not run on that node. If a compute node reboots while the Job Release task is still running, the Job Release task runs again when the compute node starts up. The job is not marked as complete until all Job Release tasks have completed. The Job Release task runs in the background. It does not occupy a scheduling slot; that is, it does not count towards the maxTasksPerNode limit specified on the pool." }, @@ -11666,7 +11911,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "StartTask": { @@ -11713,7 +11960,9 @@ "description": "If true and the start task fails on a compute node, the Batch service retries the start task up to its maximum retry count (maxTaskRetryCount). If the task has still not completed successfully after all retries, then the Batch service marks the compute node unusable, and will not schedule tasks to it. This condition can be detected via the node state and failure info details. If false, the Batch service will not wait for the start task to complete. In this case, other tasks can start executing on the compute node while the start task is still running; and even if the start task fails, new tasks will continue to be scheduled on the node. The default is false." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A task which is run when a compute node joins a pool in the Azure Batch service, or when the compute node is rebooted or reimaged.", "description": "Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing. In some cases the start task may be re-run even though the node was not rebooted. Special care should be taken to avoid start tasks which create breakaway process or install/launch services from the start task working directory, as this will block Batch from being able to re-run the start task." }, @@ -11792,7 +12041,10 @@ "description": "You can specify more than one visibility in this collection. The default is all accounts." } }, - "required": [ "thumbprint", "thumbprintAlgorithm" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool." }, "MetadataItem": { @@ -11806,7 +12058,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -11930,7 +12185,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "vmSize" ], + "required": [ + "vmSize" + ], "title": "Specification for creating a new pool." }, "AutoPoolSpecification": { @@ -11973,7 +12230,9 @@ "title": "The pool specification for the auto pool." } }, - "required": [ "poolLifetimeOption" ], + "required": [ + "poolLifetimeOption" + ], "title": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto pool when the job is submitted." }, "PoolInformation": { @@ -12062,7 +12321,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "Specifies details of the jobs to be created on a schedule." }, "RecentJob": { @@ -12174,7 +12435,22 @@ "description": "This value is only reported in the account lifetime statistics; it is not included in the job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a job schedule." }, "CloudJobSchedule": { @@ -12283,7 +12559,11 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "schedule", "jobSpecification" ], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "title": "A job schedule that allows recurring jobs by specifying when to run jobs and a specification used to create each job." }, "CloudJobScheduleListResult": { @@ -12324,7 +12604,9 @@ "title": "A list of additional error details related to the scheduling error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "An error encountered by the Batch service when scheduling a job." }, "JobExecutionInformation": { @@ -12357,7 +12639,9 @@ "description": "This property is set only if the job is in the completed state. If the Batch service terminates the job, it sets the reason as follows: JMComplete - the Job Manager task completed, and killJobOnCompletion was set to true. MaxWallClockTimeExpiry - the job reached its maxWallClockTime constraint. TerminateJobSchedule - the job ran as part of a schedule, and the schedule terminated. AllTasksComplete - the job's onAllTasksComplete attribute is set to terminatejob, and all tasks in the job are complete. TaskFailed - the job's onTaskFailure attribute is set to performExitOptionsJobAction, and a task in the job failed with an exit condition that specified a jobAction of terminatejob. Any other string is a user-defined reason specified in a call to the 'Terminate a job' operation." } }, - "required": [ "startTime" ], + "required": [ + "startTime" + ], "title": "Contains information about the execution of a job in the Azure Batch service." }, "CloudJob": { @@ -12561,7 +12845,10 @@ "title": "The network configuration for the job." } }, - "required": [ "id", "poolInfo" ], + "required": [ + "id", + "poolInfo" + ], "title": "An Azure Batch job to add." }, "CloudJobListResult": { @@ -12621,7 +12908,9 @@ "title": "A list of additional details related to the error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "Information about a task failure." }, "JobPreparationTaskExecutionInformation": { @@ -12702,7 +12991,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "retryCount", "state" ], + "required": [ + "startTime", + "retryCount", + "state" + ], "title": "Contains information about the execution of a Job Preparation task on a compute node." }, "JobReleaseTaskExecutionInformation": { @@ -12771,7 +13064,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "state" ], + "required": [ + "startTime", + "state" + ], "title": "Contains information about the execution of a Job Release task on a compute node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -12844,7 +13140,13 @@ "title": "The number of tasks which failed. A task fails if its result (found in the executionInfo property) is 'failure'." } }, - "required": [ "active", "running", "completed", "succeeded", "failed" ], + "required": [ + "active", + "running", + "completed", + "succeeded", + "failed" + ], "title": "The task counts for a job." }, "AutoScaleRunError": { @@ -12884,7 +13186,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": [ "timestamp" ], + "required": [ + "timestamp" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "ResizeError": { @@ -12920,7 +13224,9 @@ "description": "The default value is * which specifies the latest operating system version for the specified OS family." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "ImageReference": { @@ -13082,7 +13388,10 @@ "description": "If specified, setup is performed on each node in the pool to allow tasks to run in containers. All regular tasks and job manager tasks run on this pool must specify the containerSettings property, and all other tasks may specify it." } }, - "required": [ "nodeAgentSKUId", "imageReference" ], + "required": [ + "nodeAgentSKUId", + "imageReference" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "ContainerRegistry": { @@ -13102,7 +13411,10 @@ "title": "The password to log into the registry server." } }, - "required": [ "username", "password" ], + "required": [ + "username", + "password" + ], "title": "A private container registry." }, "ContainerConfiguration": { @@ -13141,7 +13453,9 @@ "description": "If any images must be downloaded from a private registry which requires credentials, then those credentials must be provided here." } }, - "required": [ "type" ], + "required": [ + "type" + ], "title": "The configuration for container-enabled pools." }, "NetworkConfiguration": { @@ -13539,7 +13853,10 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "vmSize" ], + "required": [ + "id", + "vmSize" + ], "title": "A pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -13582,7 +13899,9 @@ "description": "You can pass the affinityId of a compute node to indicate that this task needs to run on that compute node. Note that this is just a soft affinity. If the target node is busy or unavailable at the time the task is scheduled, then the task will be scheduled elsewhere." } }, - "required": [ "affinityId" ], + "required": [ + "affinityId" + ], "title": "A locality hint that can be used by the Batch service to select a compute node on which to start a task." }, "TaskExecutionInformation": { @@ -13645,7 +13964,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "requeueCount", "retryCount" ], + "required": [ + "requeueCount", + "retryCount" + ], "title": "Information about the execution of a task." }, "ComputeNodeInformation": { @@ -13691,7 +14013,10 @@ "description": "This is the most recent time that the node agent was updated to a new version." } }, - "required": [ "version", "lastUpdateTime" ], + "required": [ + "version", + "lastUpdateTime" + ], "title": "Information about the node agent.", "description": "The Batch node agent is a program that runs on each node in the pool and provides Batch capability on the compute node." }, @@ -13717,7 +14042,9 @@ "description": "The difference between common resource files and task resource files is that common resource files are downloaded for all subtasks including the primary, whereas task resource files are downloaded only for the primary. Also note that these resource files are not downloaded to the task working directory, but instead are downloaded to the task root directory (one directory above the working directory). There is a maximum size for the list of resource files. When the max size is exceeded, the request will fail and the response error code will be RequestEntityTooLarge. If this occurs, the collection of ResourceFiles must be reduced in size. This can be achieved using .zip files, Application Packages, or Docker Containers." } }, - "required": [ "coordinationCommandLine" ], + "required": [ + "coordinationCommandLine" + ], "title": "Settings which specify how to run a multi-instance task.", "description": "Multi-instance tasks are commonly used to support MPI tasks. In the MPI case, if any of the subtasks fail (for example due to exiting with a non-zero exit code) the entire multi-instance task fails. The multi-instance task is then terminated and retried, up to its retry limit." }, @@ -13779,7 +14106,19 @@ "title": "The total wait time of the task. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.)" } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "title": "Resource usage statistics for a task." }, "TaskDependencies": { @@ -13817,7 +14156,10 @@ }, "title": "A range of task IDs that a task can depend on. All tasks with IDs in the range must complete successfully before the dependent task can be scheduled.", "description": "The start and end of the range are inclusive. For example, if a range has start 9 and end 12, then it represents tasks '9', '10', '11' and '12'.", - "required": [ "start", "end" ] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -14044,7 +14386,10 @@ "$ref": "#/definitions/AuthenticationTokenSettings" } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "An Azure Batch task to add.", "description": "Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing." }, @@ -14060,7 +14405,9 @@ "description": "The total serialized size of this collection must be less than 1MB. If it is greater than 1MB (for example if each task has 100's of resource files or environment variables), the request will fail with code 'RequestBodyTooLarge' and should be retried again with fewer tasks." } }, - "required": [ "value" ], + "required": [ + "value" + ], "title": "A collection of Azure Batch tasks to add." }, "TaskAddResult": { @@ -14117,7 +14464,10 @@ "title": "The error encountered while attempting to add the task." } }, - "required": [ "status", "taskId" ], + "required": [ + "status", + "taskId" + ], "title": "Result for a single task added as part of an add task collection operation." }, "TaskAddCollectionResult": { @@ -14254,7 +14604,9 @@ "title": "Information about the execution of the task." } }, - "required": [ "taskState" ], + "required": [ + "taskState" + ], "title": "Information about a task running on a compute node." }, "StartTaskInformation": { @@ -14327,7 +14679,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "state", "startTime", "retryCount" ], + "required": [ + "state", + "startTime", + "retryCount" + ], "title": "Information about a start task running on a compute node." }, "ComputeNodeError": { @@ -14568,7 +14924,9 @@ "description": "The maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400." } }, - "required": [ "inboundNATPools" ], + "required": [ + "inboundNATPools" + ], "title": "The endpoint configuration for a pool." }, "InboundNATPool": { @@ -14609,7 +14967,13 @@ } } }, - "required": [ "name", "protocol", "backendPort", "frontendPortRangeStart", "frontendPortRangeEnd" ], + "required": [ + "name", + "protocol", + "backendPort", + "frontendPortRangeStart", + "frontendPortRangeEnd" + ], "title": "A inbound NAT pool that can be used to address specific ports on compute nodes in a Batch pool externally." }, "NetworkSecurityGroupRule": { @@ -14648,7 +15012,11 @@ "description": "Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400." } }, - "required": [ "priority", "access", "sourceAddressPrefix" ], + "required": [ + "priority", + "access", + "sourceAddressPrefix" + ], "title": "A network security group rule to apply to an inbound endpoint." }, "ComputeNodeEndpointConfiguration": { @@ -14661,7 +15029,9 @@ "title": "The list of inbound endpoints that are accessible on the compute node." } }, - "required": [ "inboundEndpoints" ], + "required": [ + "inboundEndpoints" + ], "title": "The endpoint configuration for the compute node." }, "InboundEndpoint": { @@ -14693,7 +15063,14 @@ "title": "The backend port number of the endpoint." } }, - "required": [ "name", "protocol", "publicIPAddress", "publicFQDN", "frontendPort", "backendPort" ], + "required": [ + "name", + "protocol", + "publicIPAddress", + "publicFQDN", + "frontendPort", + "backendPort" + ], "title": "An inbound endpoint on a compute node." }, "ComputeNodeListResult": { @@ -14740,7 +15117,9 @@ "description": "The public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux nodes. If this is specified for a Windows node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request)." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "A user account for RDP or SSH access on a compute node." }, "ComputeNodeGetRemoteLoginSettingsResult": { @@ -14755,7 +15134,10 @@ "title": "The port used for remote login to the compute node." } }, - "required": [ "remoteLoginIPAddress", "remoteLoginPort" ], + "required": [ + "remoteLoginIPAddress", + "remoteLoginPort" + ], "title": "The remote login settings for a compute node." }, "JobSchedulePatchParameter": { @@ -14802,7 +15184,10 @@ "description": "If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": [ "schedule", "jobSpecification" ], + "required": [ + "schedule", + "jobSpecification" + ], "title": "The set of changes to be made to a job schedule." }, "JobDisableParameter": { @@ -14835,7 +15220,9 @@ } } }, - "required": [ "disableTasks" ], + "required": [ + "disableTasks" + ], "title": "Options when disabling a job." }, "JobTerminateParameter": { @@ -14913,7 +15300,9 @@ "$ref": "#/definitions/OnAllTasksComplete" } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "The set of changes to be made to a job." }, "PoolEnableAutoScaleParameter": { @@ -14940,7 +15329,9 @@ "description": "The formula is validated and its results calculated, but it is not applied to the pool. To apply the formula to the pool, 'Enable automatic scaling on a pool'. For more information about specifying this formula, see Automatically scale compute nodes in an Azure Batch pool (https://azure.microsoft.com/en-us/documentation/articles/batch-automatic-scaling)." } }, - "required": [ "autoScaleFormula" ], + "required": [ + "autoScaleFormula" + ], "title": "Options for evaluating an automatic scaling formula on a pool." }, "PoolResizeParameter": { @@ -15001,7 +15392,11 @@ "description": "This list replaces any existing metadata configured on the pool. If omitted, or if you specify an empty collection, any existing metadata is removed from the pool." } }, - "required": [ "certificateReferences", "metadata", "applicationPackageReferences" ], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "title": "The set of changes to be made to a pool." }, "PoolPatchParameter": { @@ -15205,7 +15600,9 @@ "$ref": "#/definitions/ComputeNodeDeallocationOption" } }, - "required": [ "nodeList" ], + "required": [ + "nodeList" + ], "title": "Options for removing compute nodes from a pool." }, "OutputFile": { @@ -15224,7 +15621,11 @@ "$ref": "#/definitions/OutputFileUploadOptions" } }, - "required": [ "filePattern", "destination", "uploadOptions" ], + "required": [ + "filePattern", + "destination", + "uploadOptions" + ], "title": "A specification for uploading files from an Azure Batch node to another location after the Batch service has finished executing the task process." }, "OutputFileDestination": { @@ -15249,7 +15650,9 @@ "description": "The URL must include a Shared Access Signature (SAS) granting write permissions to the container." } }, - "required": [ "containerUrl" ], + "required": [ + "containerUrl" + ], "title": "Specifies a file upload destination within an Azure blob storage container." }, "OutputFileUploadOptions": { @@ -15260,7 +15663,9 @@ "$ref": "#/definitions/OutputFileUploadCondition" } }, - "required": [ "uploadCondition" ], + "required": [ + "uploadCondition" + ], "title": "Details about an output file upload operation, including under what conditions to perform the upload." }, "ErrorMessage": { @@ -15709,7 +16114,10 @@ "description": "Any log file containing a log message in the time range will be uploaded. This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded, but the operation should not retrieve fewer logs than have been requested. If omitted, the default is to upload all logs available after the startTime." } }, - "required": [ "containerUrl", "startTime" ], + "required": [ + "containerUrl", + "startTime" + ], "title": "The Azure Batch service log files upload configuration for a compute node." }, "UploadBatchServiceLogsResult": { @@ -15725,7 +16133,10 @@ "title": "The number of log files which will be uploaded." } }, - "required": [ "virtualDirectoryName", "numberOfFilesUploaded" ], + "required": [ + "virtualDirectoryName", + "numberOfFilesUploaded" + ], "title": "The result of uploading Batch service log files from a specific compute node." }, "PoolNodeCountsListResult": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/AccountListNodeAgentSkus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/AccountListNodeAgentSkus.json index d59100fda47b..612b8ada888f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/AccountListNodeAgentSkus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/AccountListNodeAgentSkus.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/AccountListPoolNodeCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/AccountListPoolNodeCounts.json index 13ddd4d2ad30..f8fb3fbc8750 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/AccountListPoolNodeCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/AccountListPoolNodeCounts.json @@ -118,4 +118,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/ApplicationGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/ApplicationGet.json index 404e317182fd..b9b725b902e0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/ApplicationGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/ApplicationGet.json @@ -9,12 +9,12 @@ "responses": { "200": { "body": { - "id": "my_application_id", - "versions": [ - "v1.0" - ], - "displayName": "my_display_name" + "id": "my_application_id", + "versions": [ + "v1.0" + ], + "displayName": "my_display_name" } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/ApplicationList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/ApplicationList.json index 8faa2407818a..968c9ae24180 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/ApplicationList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/ApplicationList.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateAdd.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateAdd.json index d52b5da92f0e..f0adb7c462ab 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateAdd.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateAdd.json @@ -5,11 +5,11 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "certificate": { - "thumbprintAlgorithm":"sha1", - "thumbprint":"0123456789abcdef0123456789abcdef01234567", - "data":"#####...", - "certificateFormat":"pfx", - "password":"certpassword" + "thumbprintAlgorithm": "sha1", + "thumbprint": "0123456789abcdef0123456789abcdef01234567", + "data": "#####...", + "certificateFormat": "pfx", + "password": "certpassword" } }, "responses": { @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateCancelDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateCancelDelete.json index 3a8f6699a6e9..7c8b0448ca94 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateCancelDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateCancelDelete.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateDelete.json index dec2a177db34..8551e628f7f2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateDelete.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateGet.json index 6c70d78421fe..bd73dc47f117 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateGet.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateList.json index d7e848f92ede..91a6ab0f5152 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/CertificateList.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileDeleteFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileDeleteFromNode.json index df2e9429ea9a..16573010b4e7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileDeleteFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileDeleteFromNode.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileDeleteFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileDeleteFromTask.json index 24f0c8761a9b..e5437a6bba04 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileDeleteFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileDeleteFromTask.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetFromNode.json index 3a1eb00168be..f807ff0cb44a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetFromNode.json @@ -18,4 +18,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetFromTask.json index 4e3749693306..a3fda8f1278e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetFromTask.json @@ -18,4 +18,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetPropertiesFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetPropertiesFromNode.json index d7fe29cb7014..24b4a603d7bd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetPropertiesFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetPropertiesFromNode.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetPropertiesFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetPropertiesFromTask.json index a824b9d99ae8..d6205d5cd400 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetPropertiesFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileGetPropertiesFromTask.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileListFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileListFromNode.json index 344d20111976..0f30ffabe6da 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileListFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileListFromNode.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileListFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileListFromTask.json index ffa1051f4e0c..f5808c841123 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileListFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/FileListFromTask.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobAdd_Basic.json index f42ede825346..ed594e660895 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobAdd_Basic.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobAdd_Complex.json index 3e418a47ab9e..68c8bf942e4f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobAdd_Complex.json @@ -36,7 +36,7 @@ "retentionTime": "PT1H" }, "killJobOnCompletion": false, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -77,7 +77,7 @@ "value": "myvalue" } ], - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -119,4 +119,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobDelete.json index 551d0c72d70d..adf191d9e5c7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobDisable.json index 3001e7497cc1..0eef299bd733 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobDisable.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobEnable.json index 551d0c72d70d..adf191d9e5c7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobEnable.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGet.json index 020a36ae8968..30334948bc64 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGet.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGetLifetimeStatistics.json index 370281b57dc2..1ca8d2a56229 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGetLifetimeStatistics.json @@ -8,7 +8,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimejobstats", + "url": "https://account.region.batch.core.windows.net/lifetimejobstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "userCPUTime": "PT0S", @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGetTaskCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGetTaskCounts.json index 69eeb39bad46..418da2bd06d1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGetTaskCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobGetTaskCounts.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobList.json index 5f2bf2115d0a..78de7117410f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobList.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobListFromJobSchedule.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobListFromJobSchedule.json index 4a581dd0be9d..5f88a5f1fcab 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobListFromJobSchedule.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobListFromJobSchedule.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobListPreparationAndReleaseTaskStatus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobListPreparationAndReleaseTaskStatus.json index 69807d33f286..10489d6da296 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobListPreparationAndReleaseTaskStatus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobListPreparationAndReleaseTaskStatus.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobPatch.json index 96d7455768f8..2e852869eea3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobPatch.json @@ -6,13 +6,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "jobPatchParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -21,4 +21,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleAdd_Basic.json index 5e5021633b5a..fab90a6697ae 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleAdd_Basic.json @@ -7,7 +7,7 @@ "cloudJobSchedule": { "id": "jobScheduleId", "schedule": { - "recurrenceInterval":"PT5M" + "recurrenceInterval": "PT5M" }, "jobSpecification": { "poolInfo": { @@ -21,4 +21,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleAdd_Complex.json index 15147f8fdcd3..9f80ffea4a74 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleAdd_Complex.json @@ -127,4 +127,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleDelete.json index f4995ff15e9b..c6298f9aaa58 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleDisable.json index 2d1fed498e83..65bf4b4f2a39 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleDisable.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleEnable.json index 2d1fed498e83..65bf4b4f2a39 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleEnable.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleExists.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleExists.json index 1c7929b0e2bd..df075c3ce296 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleExists.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleExists.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleGet.json index 249b2ea312a8..308289f63217 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleGet.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleList.json index 85f00683ab50..4b4e826a14ec 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleList.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobSchedulePatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobSchedulePatch.json index 974ad4b96ff9..c775219fe8c7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobSchedulePatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobSchedulePatch.json @@ -27,4 +27,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleTerminate.json index f4995ff15e9b..c6298f9aaa58 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleTerminate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleUpdate.json index 1d7b07d7c499..20cb033a18f7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobScheduleUpdate.json @@ -27,4 +27,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobTerminate.json index 386f3683ca7d..a8577cac67c1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobTerminate.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobUpdate.json index bd529af60161..812c60ab67c2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/JobUpdate.json @@ -6,13 +6,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "jobUpdateParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -21,4 +21,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeAddUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeAddUser.json index 9b066c59156a..8bb209308120 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeAddUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeAddUser.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeDeleteUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeDeleteUser.json index 38d4f051ae4d..ac6a838487a9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeDeleteUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeDeleteUser.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeDisableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeDisableScheduling.json index 281e098ac108..1a6755557731 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeDisableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeDisableScheduling.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeEnableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeEnableScheduling.json index c93e791f91bb..74959df00762 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeEnableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeEnableScheduling.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGetRemoteDesktop.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGetRemoteDesktop.json index 6d261e4b03d5..0738f7dccced 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGetRemoteDesktop.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGetRemoteDesktop.json @@ -12,4 +12,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGetRemoteLoginSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGetRemoteLoginSettings.json index 9f0abc48ddd3..cb53ef78fffd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGetRemoteLoginSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGetRemoteLoginSettings.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGet_Basic.json index fe55ea7bf40c..3b5efa06a66d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeGet_Basic.json @@ -26,7 +26,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeList.json index e5ea20fbfeb3..5ccff585826f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeList.json @@ -27,7 +27,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -65,7 +65,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -103,7 +103,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -128,4 +128,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeReboot.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeReboot.json index 8fc2fd8cd55d..4cc09a265ee7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeReboot.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeReboot.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeReimage.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeReimage.json index 1dc0643c784b..c875a9fa650c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeReimage.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeReimage.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeUpdateUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeUpdateUser.json index 0bc124036dcf..97275cf59124 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeUpdateUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeUpdateUser.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeUploadBatchServiceLogs.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeUploadBatchServiceLogs.json index 700bb57fc89f..b20cd97f8cac 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeUploadBatchServiceLogs.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/NodeUploadBatchServiceLogs.json @@ -14,9 +14,9 @@ "responses": { "200": { "body": { - "virtualDirectoryName": "poolId/tvm-1695681911-1-20161121t182739z/0795539d-82fe-48e3-bbff-2964905b6de0", - "numberOfFilesUploaded": 8 + "virtualDirectoryName": "poolId/tvm-1695681911-1-20161121t182739z/0795539d-82fe-48e3-bbff-2964905b6de0", + "numberOfFilesUploaded": 8 } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_CloudServiceConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_CloudServiceConfiguration.json index a93e282d0024..ba50407e79c8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_CloudServiceConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_CloudServiceConfiguration.json @@ -10,19 +10,21 @@ "cloudServiceConfiguration": { "osFamily": "4" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -32,4 +34,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_VirtualMachineConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_VirtualMachineConfiguration.json index b26fce77be20..0190b072510c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_VirtualMachineConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_VirtualMachineConfiguration.json @@ -15,19 +15,21 @@ }, "nodeAgentSKUId": "batch.node.ubuntu 16.04" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -37,4 +39,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json index 04ed1c84b96b..dbecab5466d5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json @@ -21,14 +21,14 @@ ] } }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false + "enableAutoScale": false } }, "responses": { @@ -38,4 +38,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolDelete.json index b21c340c7a42..4fff5aedb71f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolDisableAutoScale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolDisableAutoScale.json index 04670de95ac3..41e6a48a6dd0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolDisableAutoScale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolDisableAutoScale.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolEnableAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolEnableAutoscale.json index 9c9a4d2d4b8f..de939967f609 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolEnableAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolEnableAutoscale.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolEvaluateAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolEvaluateAutoscale.json index c1ec9c21b633..17889505bc62 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolEvaluateAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolEvaluateAutoscale.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolExists.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolExists.json index 385984444d75..5a1b5e527439 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolExists.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolExists.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolGetLifetimeStatistics.json index 55e39373893a..57781f1f1463 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolGetLifetimeStatistics.json @@ -8,7 +8,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimepoolstats", + "url": "https://account.region.batch.core.windows.net/lifetimepoolstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "usageStats": { @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolGet_Basic.json index 9d8f7f83e19c..d0aaf3aaac18 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolGet_Basic.json @@ -28,7 +28,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "/bin/bash -c 'echo start task'", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolListUsageMetrics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolListUsageMetrics.json index e05af7a849b2..f7fc2135825f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolListUsageMetrics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolListUsageMetrics.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolList_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolList_Basic.json index b81487f337b8..b0e4f443cbc2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolList_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolList_Basic.json @@ -29,7 +29,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -51,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolPatch.json index a1475eeb5410..c2879074626b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolPatch.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolRemoveNodes.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolRemoveNodes.json index c0bbf983e5cd..29e927deeccc 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolRemoveNodes.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolRemoveNodes.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolResize.json index 2779f892863a..579087a2af53 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolResize.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolStopResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolStopResize.json index b21c340c7a42..4fff5aedb71f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolStopResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolStopResize.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolUpdate.json index 69fe12dd6ff3..aeb6cf04e505 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/PoolUpdate.json @@ -19,4 +19,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAddCollection_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAddCollection_Basic.json index e162a318b08d..ae160f27f485 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAddCollection_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAddCollection_Basic.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAddCollection_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAddCollection_Complex.json index c56d31718e5d..7b4a84ee2ae4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAddCollection_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAddCollection_Complex.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_Basic.json index 23a8189702d6..5b06eba92726 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_Basic.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_ContainerSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_ContainerSettings.json index 47f35697248f..ef5ff9f2aa43 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_ContainerSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_ContainerSettings.json @@ -12,7 +12,7 @@ "imageName": "ubuntu", "containerRunOptions": "--rm" }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -25,4 +25,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_ExitConditions.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_ExitConditions.json index 90a0999d2166..7296e3cdecf8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_ExitConditions.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskAdd_ExitConditions.json @@ -19,7 +19,7 @@ } ] }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -32,4 +32,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskDelete.json index 591d3dc05279..7a2b1dc9aed6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskDelete.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskGet.json index bf9d9fc092e0..16ee12da0a2b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskGet.json @@ -18,7 +18,7 @@ "state": "active", "stateTransitionTime": "2016-09-06T06:59:15.1161429Z", "commandLine": "cmd /c hostname", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskList.json index ec9b85595b4b..a11c0d1c26ba 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskList.json @@ -19,7 +19,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.4733476Z", "commandLine": "cmd /c echo task1", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -44,7 +44,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.6736345Z", "commandLine": "cmd /c echo task2", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskListSubtasks.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskListSubtasks.json index 54eddbdb91f6..309f66590252 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskListSubtasks.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskListSubtasks.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskReactivate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskReactivate.json index 6c07e145e137..e88c12121a9c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskReactivate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskReactivate.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskTerminate.json index 6c07e145e137..e88c12121a9c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskTerminate.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskUpdate.json index bcf451b6bc0c..7bddd743c7d9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2018-12-01.8.0/examples/TaskUpdate.json @@ -8,9 +8,9 @@ "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "taskUpdateParameter": { "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":3, - "retentionTime":"PT1H" + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": 3, + "retentionTime": "PT1H" } } }, @@ -19,4 +19,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/BatchService.json index 7393d7c5c856..4d310bdb3d47 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/BatchService.json @@ -63,7 +63,9 @@ }, "operationId": "Application_List", "x-ms-examples": { - "List applications": { "$ref": "./examples/ApplicationList.json" } + "List applications": { + "$ref": "./examples/ApplicationList.json" + } }, "summary": "Lists all of the applications available in the specified Account.", "description": "This operation returns only Applications and versions that are available for use on Compute Nodes; that is, that can be used in an Package reference. For administrator information about applications and versions that are not yet available to Compute Nodes, use the Azure portal or the Azure Resource Manager API.", @@ -178,7 +180,9 @@ ], "operationId": "Application_Get", "x-ms-examples": { - "Get applications": { "$ref": "./examples/ApplicationGet.json" } + "Get applications": { + "$ref": "./examples/ApplicationGet.json" + } }, "summary": "Gets information about the specified Application.", "description": "This operation returns only Applications and versions that are available for use on Compute Nodes; that is, that can be used in an Package reference. For administrator information about Applications and versions that are not yet available to Compute Compute Nodes, use the Azure portal or the Azure Resource Manager API.", @@ -288,7 +292,9 @@ }, "operationId": "Pool_ListUsageMetrics", "x-ms-examples": { - "Pool list usage metrics": { "$ref": "./examples/PoolListUsageMetrics.json" } + "Pool list usage metrics": { + "$ref": "./examples/PoolListUsageMetrics.json" + } }, "summary": "Lists the usage metrics, aggregated by Pool across individual time intervals, for the specified Account.", "description": "If you do not specify a $filter clause including a poolId, the response includes all Pools that existed in the Account in the time range of the returned aggregation intervals. If you do not specify a $filter clause including a startTime or endTime these filters default to the start and end times of the last aggregation interval currently available; that is, only the last aggregation interval is returned.", @@ -440,7 +446,9 @@ }, "operationId": "Account_ListSupportedImages", "x-ms-examples": { - "Account list node agent skus": { "$ref": "./examples/AccountListSupportedImages.json" } + "Account list node agent skus": { + "$ref": "./examples/AccountListSupportedImages.json" + } }, "summary": "Lists all Virtual Machine Images supported by the Azure Batch service.", "x-ms-request-id": "request-id", @@ -568,7 +576,9 @@ "operationId": "Account_ListPoolNodeCounts", "description": "Gets the number of Compute Nodes in each state, grouped by Pool.", "x-ms-examples": { - "NodeCountsPayload": { "$ref": "./examples/AccountListPoolNodeCounts.json" } + "NodeCountsPayload": { + "$ref": "./examples/AccountListPoolNodeCounts.json" + } }, "parameters": [ { @@ -681,7 +691,9 @@ ], "operationId": "Pool_GetAllLifetimeStatistics", "x-ms-examples": { - "Pool get lifetime statistics": { "$ref": "./examples/PoolGetLifetimeStatistics.json" } + "Pool get lifetime statistics": { + "$ref": "./examples/PoolGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the Pools in the specified Account.", "description": "Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes.", @@ -781,7 +793,9 @@ ], "operationId": "Job_GetAllLifetimeStatistics", "x-ms-examples": { - "Job get lifetime statistics": { "$ref": "./examples/JobGetLifetimeStatistics.json" } + "Job get lifetime statistics": { + "$ref": "./examples/JobGetLifetimeStatistics.json" + } }, "summary": "Gets lifetime summary statistics for all of the Jobs in the specified Account.", "description": "Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes.", @@ -881,7 +895,9 @@ ], "operationId": "Certificate_Add", "x-ms-examples": { - "Certificate add": { "$ref": "./examples/CertificateAdd.json" } + "Certificate add": { + "$ref": "./examples/CertificateAdd.json" + } }, "summary": "Adds a Certificate to the specified Account.", "x-ms-request-id": "request-id", @@ -991,7 +1007,9 @@ }, "operationId": "Certificate_List", "x-ms-examples": { - "Certificate list": { "$ref": "./examples/CertificateList.json" } + "Certificate list": { + "$ref": "./examples/CertificateList.json" + } }, "summary": "Lists all of the Certificates that have been added to the specified Account.", "x-ms-request-id": "request-id", @@ -1125,7 +1143,9 @@ ], "operationId": "Certificate_CancelDeletion", "x-ms-examples": { - "Certificate cancel delete": { "$ref": "./examples/CertificateCancelDelete.json" } + "Certificate cancel delete": { + "$ref": "./examples/CertificateCancelDelete.json" + } }, "summary": "Cancels a failed deletion of a Certificate from the specified Account.", "description": "If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate.", @@ -1240,7 +1260,9 @@ ], "operationId": "Certificate_Delete", "x-ms-examples": { - "Certificate delete": { "$ref": "./examples/CertificateDelete.json" } + "Certificate delete": { + "$ref": "./examples/CertificateDelete.json" + } }, "summary": "Deletes a Certificate from the specified Account.", "description": "You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate.", @@ -1349,7 +1371,9 @@ ], "operationId": "Certificate_Get", "x-ms-examples": { - "Certificate get": { "$ref": "./examples/CertificateGet.json" } + "Certificate get": { + "$ref": "./examples/CertificateGet.json" + } }, "description": "Gets information about the specified Certificate.", "x-ms-request-id": "request-id", @@ -1472,7 +1496,9 @@ ], "operationId": "File_DeleteFromTask", "x-ms-examples": { - "File delete from task": { "$ref": "./examples/FileDeleteFromTask.json" } + "File delete from task": { + "$ref": "./examples/FileDeleteFromTask.json" + } }, "summary": "Deletes the specified Task file from the Compute Node where the Task ran.", "x-ms-request-id": "request-id", @@ -1583,7 +1609,9 @@ ], "operationId": "File_GetFromTask", "x-ms-examples": { - "Get File From Task": { "$ref": "./examples/FileGetFromTask.json" } + "Get File From Task": { + "$ref": "./examples/FileGetFromTask.json" + } }, "description": "Returns the content of the specified Task file.", "x-ms-request-id": "request-id", @@ -1764,7 +1792,9 @@ ], "operationId": "File_GetPropertiesFromTask", "x-ms-examples": { - "File get properties from task": { "$ref": "./examples/FileGetPropertiesFromTask.json" } + "File get properties from task": { + "$ref": "./examples/FileGetPropertiesFromTask.json" + } }, "description": "Gets the properties of the specified Task file.", "x-ms-request-id": "request-id", @@ -1929,7 +1959,9 @@ ], "operationId": "File_DeleteFromComputeNode", "x-ms-examples": { - "File delete from node": { "$ref": "./examples/FileDeleteFromNode.json" } + "File delete from node": { + "$ref": "./examples/FileDeleteFromNode.json" + } }, "summary": "Deletes the specified file from the Compute Node.", "x-ms-request-id": "request-id", @@ -2040,7 +2072,9 @@ ], "operationId": "File_GetFromComputeNode", "x-ms-examples": { - "Get File From Compute Node": { "$ref": "./examples/FileGetFromNode.json" } + "Get File From Compute Node": { + "$ref": "./examples/FileGetFromNode.json" + } }, "description": "Returns the content of the specified Compute Node file.", "x-ms-request-id": "request-id", @@ -2221,7 +2255,9 @@ ], "operationId": "File_GetPropertiesFromComputeNode", "x-ms-examples": { - "File get properties from node": { "$ref": "./examples/FileGetPropertiesFromNode.json" } + "File get properties from node": { + "$ref": "./examples/FileGetPropertiesFromNode.json" + } }, "description": "Gets the properties of the specified Compute Node file.", "x-ms-request-id": "request-id", @@ -2389,7 +2425,9 @@ }, "operationId": "File_ListFromTask", "x-ms-examples": { - "File list from task": { "$ref": "./examples/FileListFromTask.json" } + "File list from task": { + "$ref": "./examples/FileListFromTask.json" + } }, "summary": "Lists the files in a Task's directory on its Compute Node.", "x-ms-request-id": "request-id", @@ -2537,7 +2575,9 @@ }, "operationId": "File_ListFromComputeNode", "x-ms-examples": { - "File list from node": { "$ref": "./examples/FileListFromNode.json" } + "File list from node": { + "$ref": "./examples/FileListFromNode.json" + } }, "summary": "Lists all of the files in Task directories on the specified Compute Node.", "x-ms-request-id": "request-id", @@ -2682,7 +2722,9 @@ ], "operationId": "JobSchedule_Exists", "x-ms-examples": { - "Check Job Schedule Exists": { "$ref": "./examples/JobScheduleExists.json" } + "Check Job Schedule Exists": { + "$ref": "./examples/JobScheduleExists.json" + } }, "summary": "Checks the specified Job Schedule exists.", "x-ms-request-id": "request-id", @@ -2828,7 +2870,9 @@ ], "operationId": "JobSchedule_Delete", "x-ms-examples": { - "JobSchedule delete": { "$ref": "./examples/JobScheduleDelete.json" } + "JobSchedule delete": { + "$ref": "./examples/JobScheduleDelete.json" + } }, "summary": "Deletes a Job Schedule from the specified Account.", "description": "When you delete a Job Schedule, this also deletes all Jobs and Tasks under that schedule. When Tasks are deleted, all the files in their working directories on the Compute Nodes are also deleted (the retention period is ignored). The Job Schedule statistics are no longer accessible once the Job Schedule is deleted, though they are still counted towards Account lifetime statistics.", @@ -2961,7 +3005,9 @@ ], "operationId": "JobSchedule_Get", "x-ms-examples": { - "JobSchedule get": { "$ref": "./examples/JobScheduleGet.json" } + "JobSchedule get": { + "$ref": "./examples/JobScheduleGet.json" + } }, "description": "Gets information about the specified Job Schedule.", "x-ms-request-id": "request-id", @@ -3127,7 +3173,9 @@ ], "operationId": "JobSchedule_Patch", "x-ms-examples": { - "JobSchedule patch": { "$ref": "./examples/JobSchedulePatch.json" } + "JobSchedule patch": { + "$ref": "./examples/JobSchedulePatch.json" + } }, "summary": "Updates the properties of the specified Job Schedule.", "description": "This replaces only the Job Schedule properties specified in the request. For example, if the schedule property is not specified with this request, then the Batch service will keep the existing schedule. Changes to a Job Schedule only impact Jobs created by the schedule after the update has taken place; currently running Jobs are unaffected.", @@ -3284,7 +3332,9 @@ ], "operationId": "JobSchedule_Update", "x-ms-examples": { - "JobSchedule update": { "$ref": "./examples/JobScheduleUpdate.json" } + "JobSchedule update": { + "$ref": "./examples/JobScheduleUpdate.json" + } }, "summary": "Updates the properties of the specified Job Schedule.", "description": "This fully replaces all the updatable properties of the Job Schedule. For example, if the schedule property is not specified with this request, then the Batch service will remove the existing schedule. Changes to a Job Schedule only impact Jobs created by the schedule after the update has taken place; currently running Jobs are unaffected.", @@ -3443,7 +3493,9 @@ ], "operationId": "JobSchedule_Disable", "x-ms-examples": { - "JobSchedule disable": { "$ref": "./examples/JobScheduleDisable.json" } + "JobSchedule disable": { + "$ref": "./examples/JobScheduleDisable.json" + } }, "summary": "Disables a Job Schedule.", "description": "No new Jobs will be created until the Job Schedule is enabled again.", @@ -3593,7 +3645,9 @@ ], "operationId": "JobSchedule_Enable", "x-ms-examples": { - "JobSchedule enable": { "$ref": "./examples/JobScheduleEnable.json" } + "JobSchedule enable": { + "$ref": "./examples/JobScheduleEnable.json" + } }, "summary": "Enables a Job Schedule.", "x-ms-request-id": "request-id", @@ -3742,7 +3796,9 @@ ], "operationId": "JobSchedule_Terminate", "x-ms-examples": { - "JobSchedule terminate": { "$ref": "./examples/JobScheduleTerminate.json" } + "JobSchedule terminate": { + "$ref": "./examples/JobScheduleTerminate.json" + } }, "summary": "Terminates a Job Schedule.", "x-ms-request-id": "request-id", @@ -3891,8 +3947,12 @@ ], "operationId": "JobSchedule_Add", "x-ms-examples": { - "Add a basic JobSchedule": { "$ref": "./examples/JobScheduleAdd_Basic.json" }, - "Add a complex JobScheduleAdd": { "$ref": "./examples/JobScheduleAdd_Complex.json" } + "Add a basic JobSchedule": { + "$ref": "./examples/JobScheduleAdd_Basic.json" + }, + "Add a complex JobScheduleAdd": { + "$ref": "./examples/JobScheduleAdd_Complex.json" + } }, "summary": "Adds a Job Schedule to the specified Account.", "x-ms-request-id": "request-id", @@ -4002,7 +4062,9 @@ }, "operationId": "JobSchedule_List", "x-ms-examples": { - "JobSchedule list": { "$ref": "./examples/JobScheduleList.json" } + "JobSchedule list": { + "$ref": "./examples/JobScheduleList.json" + } }, "summary": "Lists all of the Job Schedules in the specified Account.", "x-ms-request-id": "request-id", @@ -4146,7 +4208,9 @@ ], "operationId": "Job_Delete", "x-ms-examples": { - "Delete Job": { "$ref": "./examples/JobDelete.json" } + "Delete Job": { + "$ref": "./examples/JobDelete.json" + } }, "summary": "Deletes a Job.", "description": "Deleting a Job also deletes all Tasks that are part of that Job, and all Job statistics. This also overrides the retention period for Task data; that is, if the Job contains Tasks which are still retained on Compute Nodes, the Batch services deletes those Tasks' working directories and all their contents. When a Delete Job request is received, the Batch service sets the Job to the deleting state. All update operations on a Job that is in deleting state will fail with status code 409 (Conflict), with additional information indicating that the Job is being deleted.", @@ -4279,7 +4343,9 @@ ], "operationId": "Job_Get", "x-ms-examples": { - "Job get": { "$ref": "./examples/JobGet.json" } + "Job get": { + "$ref": "./examples/JobGet.json" + } }, "summary": "Gets information about the specified Job.", "x-ms-request-id": "request-id", @@ -4445,7 +4511,9 @@ ], "operationId": "Job_Patch", "x-ms-examples": { - "Job patch": { "$ref": "./examples/JobPatch.json" } + "Job patch": { + "$ref": "./examples/JobPatch.json" + } }, "summary": "Updates the properties of the specified Job.", "description": "This replaces only the Job properties specified in the request. For example, if the Job has constraints, and a request does not specify the constraints element, then the Job keeps the existing constraints.", @@ -4602,7 +4670,9 @@ ], "operationId": "Job_Update", "x-ms-examples": { - "Job update": { "$ref": "./examples/JobUpdate.json" } + "Job update": { + "$ref": "./examples/JobUpdate.json" + } }, "summary": "Updates the properties of the specified Job.", "description": "This fully replaces all the updatable properties of the Job. For example, if the Job has constraints associated with it and if constraints is not specified with this request, then the Batch service will remove the existing constraints.", @@ -4761,7 +4831,9 @@ ], "operationId": "Job_Disable", "x-ms-examples": { - "Job disable": { "$ref": "./examples/JobDisable.json" } + "Job disable": { + "$ref": "./examples/JobDisable.json" + } }, "summary": "Disables the specified Job, preventing new Tasks from running.", "description": "The Batch Service immediately moves the Job to the disabling state. Batch then uses the disableTasks parameter to determine what to do with the currently running Tasks of the Job. The Job remains in the disabling state until the disable operation is completed and all Tasks have been dealt with according to the disableTasks option; the Job then moves to the disabled state. No new Tasks are started under the Job until it moves back to active state. If you try to disable a Job that is in any state other than active, disabling, or disabled, the request fails with status code 409.", @@ -4920,7 +4992,9 @@ ], "operationId": "Job_Enable", "x-ms-examples": { - "Job enable": { "$ref": "./examples/JobEnable.json" } + "Job enable": { + "$ref": "./examples/JobEnable.json" + } }, "summary": "Enables the specified Job, allowing new Tasks to run.", "description": "When you call this API, the Batch service sets a disabled Job to the enabling state. After the this operation is completed, the Job moves to the active state, and scheduling of new Tasks under the Job resumes. The Batch service does not allow a Task to remain in the active state for more than 180 days. Therefore, if you enable a Job containing active Tasks which were added more than 180 days ago, those Tasks will not run.", @@ -5070,7 +5144,9 @@ ], "operationId": "Job_Terminate", "x-ms-examples": { - "Job terminate": { "$ref": "./examples/JobTerminate.json" } + "Job terminate": { + "$ref": "./examples/JobTerminate.json" + } }, "summary": "Terminates the specified Job, marking it as completed.", "description": "When a Terminate Job request is received, the Batch service sets the Job to the terminating state. The Batch service then terminates any running Tasks associated with the Job and runs any required Job release Tasks. Then the Job moves into the completed state. If there are any Tasks in the Job in the active state, they will remain in the active state. Once a Job is terminated, new Tasks cannot be added and any remaining active Tasks will not be scheduled.", @@ -5229,8 +5305,12 @@ ], "operationId": "Job_Add", "x-ms-examples": { - "Add a basic job": { "$ref": "./examples/JobAdd_Basic.json" }, - "Add a complex job": { "$ref": "./examples/JobAdd_Complex.json" } + "Add a basic job": { + "$ref": "./examples/JobAdd_Basic.json" + }, + "Add a complex job": { + "$ref": "./examples/JobAdd_Complex.json" + } }, "summary": "Adds a Job to the specified Account.", "description": "The Batch service supports two ways to control the work done as part of a Job. In the first approach, the user specifies a Job Manager Task. The Batch service launches this Task when it is ready to start the Job. The Job Manager Task controls all other Tasks that run under this Job, by using the Task APIs. In the second approach, the user directly controls the execution of Tasks under an active Job, by using the Task APIs. Also note: when naming Jobs, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5341,7 +5421,9 @@ }, "operationId": "Job_List", "x-ms-examples": { - "Job list": { "$ref": "./examples/JobList.json" } + "Job list": { + "$ref": "./examples/JobList.json" + } }, "summary": "Lists all of the Jobs in the specified Account.", "x-ms-request-id": "request-id", @@ -5487,7 +5569,9 @@ "nextLinkName": "odata.nextLink" }, "x-ms-examples": { - "List Job Under Job Schedule": { "$ref": "./examples/JobListFromJobSchedule.json" } + "List Job Under Job Schedule": { + "$ref": "./examples/JobListFromJobSchedule.json" + } }, "operationId": "Job_ListFromJobSchedule", "summary": "Lists the Jobs that have been created under the specified Job Schedule.", @@ -5642,7 +5726,9 @@ }, "operationId": "Job_ListPreparationAndReleaseTaskStatus", "x-ms-examples": { - "Job list preparation and release task status": { "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" } + "Job list preparation and release task status": { + "$ref": "./examples/JobListPreparationAndReleaseTaskStatus.json" + } }, "summary": "Lists the execution status of the Job Preparation and Job Release Task for the specified Job across the Compute Nodes where the Job has run.", "description": "This API returns the Job Preparation and Job Release Task status on all Compute Nodes that have run the Job Preparation or Job Release Task. This includes Compute Nodes which have since been removed from the Pool. If this API is invoked on a Job which has no Job Preparation or Job Release Task, the Batch service returns HTTP status code 409 (Conflict) with an error code of JobPreparationTaskNotSpecified.", @@ -5784,7 +5870,9 @@ ], "operationId": "Job_GetTaskCounts", "x-ms-examples": { - "Job get task counts": { "$ref": "./examples/JobGetTaskCounts.json" } + "Job get task counts": { + "$ref": "./examples/JobGetTaskCounts.json" + } }, "summary": "Gets the Task counts for the specified Job.", "description": "Task counts provide a count of the Tasks by active, running or completed Task state, and a count of Tasks which succeeded or failed. Tasks in the preparing state are counted as running.", @@ -5882,9 +5970,15 @@ ], "operationId": "Pool_Add", "x-ms-examples": { - "Add a CloudServiceConfiguration pool": { "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" }, - "Add a VirtualMachineConfiguration pool": { "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" }, - "Add a VirtualMachineConfiguration pool with containers": { "$ref": "./examples/PoolAdd_VirtualMachineConfigurationWithContainers.json" } + "Add a CloudServiceConfiguration pool": { + "$ref": "./examples/PoolAdd_CloudServiceConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool": { + "$ref": "./examples/PoolAdd_VirtualMachineConfiguration.json" + }, + "Add a VirtualMachineConfiguration pool with containers": { + "$ref": "./examples/PoolAdd_VirtualMachineConfigurationWithContainers.json" + } }, "summary": "Adds a Pool to the specified Account.", "description": "When naming Pools, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.", @@ -5995,7 +6089,9 @@ }, "operationId": "Pool_List", "x-ms-examples": { - "Pool list": { "$ref": "./examples/PoolList_Basic.json" } + "Pool list": { + "$ref": "./examples/PoolList_Basic.json" + } }, "summary": "Lists all of the Pools in the specified Account.", "x-ms-request-id": "request-id", @@ -6139,7 +6235,9 @@ ], "operationId": "Pool_Delete", "x-ms-examples": { - "Pool delete": { "$ref": "./examples/PoolDelete.json" } + "Pool delete": { + "$ref": "./examples/PoolDelete.json" + } }, "summary": "Deletes a Pool from the specified Account.", "description": "When you request that a Pool be deleted, the following actions occur: the Pool state is set to deleting; any ongoing resize operation on the Pool are stopped; the Batch service starts resizing the Pool to zero Compute Nodes; any Tasks running on existing Compute Nodes are terminated and requeued (as if a resize Pool operation had been requested with the default requeue option); finally, the Pool is removed from the system. Because running Tasks are requeued, the user can rerun these Tasks by updating their Job to target a different Pool. The Tasks can then run on the new Pool. If you want to override the requeue behavior, then you should call resize Pool explicitly to shrink the Pool to zero size before deleting the Pool. If you call an Update, Patch or Delete API on a Pool in the deleting state, it will fail with HTTP status code 409 with error code PoolBeingDeleted.", @@ -6272,7 +6370,9 @@ ], "operationId": "Pool_Exists", "x-ms-examples": { - "Check Pool Exists": { "$ref": "./examples/PoolExists.json" } + "Check Pool Exists": { + "$ref": "./examples/PoolExists.json" + } }, "description": "Gets basic properties of a Pool.", "x-ms-request-id": "request-id", @@ -6418,7 +6518,9 @@ ], "operationId": "Pool_Get", "x-ms-examples": { - "Pool get": { "$ref": "./examples/PoolGet_Basic.json" } + "Pool get": { + "$ref": "./examples/PoolGet_Basic.json" + } }, "description": "Gets information about the specified Pool.", "x-ms-request-id": "request-id", @@ -6584,7 +6686,9 @@ ], "operationId": "Pool_Patch", "x-ms-examples": { - "Patch the Pool": { "$ref": "./examples/PoolPatch.json" } + "Patch the Pool": { + "$ref": "./examples/PoolPatch.json" + } }, "summary": "Updates the properties of the specified Pool.", "description": "This only replaces the Pool properties specified in the request. For example, if the Pool has a start Task associated with it, and a request does not specify a start Task element, then the Pool keeps the existing start Task.", @@ -6743,7 +6847,9 @@ ], "operationId": "Pool_DisableAutoScale", "x-ms-examples": { - "Disable pool autoscale": { "$ref": "./examples/PoolDisableAutoScale.json" } + "Disable pool autoscale": { + "$ref": "./examples/PoolDisableAutoScale.json" + } }, "summary": "Disables automatic scaling for a Pool.", "x-ms-request-id": "request-id", @@ -6850,7 +6956,9 @@ ], "operationId": "Pool_EnableAutoScale", "x-ms-examples": { - "Pool enable autoscale": { "$ref": "./examples/PoolEnableAutoscale.json" } + "Pool enable autoscale": { + "$ref": "./examples/PoolEnableAutoscale.json" + } }, "summary": "Enables automatic scaling for a Pool.", "description": "You cannot enable automatic scaling on a Pool if a resize operation is in progress on the Pool. If automatic scaling of the Pool is currently disabled, you must specify a valid autoscale formula as part of the request. If automatic scaling of the Pool is already enabled, you may specify a new autoscale formula and/or a new evaluation interval. You cannot call this API for the same Pool more than once every 30 seconds.", @@ -7009,7 +7117,9 @@ ], "operationId": "Pool_EvaluateAutoScale", "x-ms-examples": { - "Pool evaluate autoscale": { "$ref": "./examples/PoolEvaluateAutoscale.json" } + "Pool evaluate autoscale": { + "$ref": "./examples/PoolEvaluateAutoscale.json" + } }, "summary": "Gets the result of evaluating an automatic scaling formula on the Pool.", "description": "This API is primarily for validating an autoscale formula, as it simply returns the result without applying the formula to the Pool. The Pool must have auto scaling enabled in order to evaluate a formula.", @@ -7129,7 +7239,9 @@ ], "operationId": "Pool_Resize", "x-ms-examples": { - "Pool resize": { "$ref": "./examples/PoolResize.json" } + "Pool resize": { + "$ref": "./examples/PoolResize.json" + } }, "summary": "Changes the number of Compute Nodes that are assigned to a Pool.", "description": "You can only resize a Pool when its allocation state is steady. If the Pool is already resizing, the request fails with status code 409. When you resize a Pool, the Pool's allocation state changes from steady to resizing. You cannot resize Pools which are configured for automatic scaling. If you try to do this, the Batch service returns an error 409. If you resize a Pool downwards, the Batch service chooses which Compute Nodes to remove. To remove specific Compute Nodes, use the Pool remove Compute Nodes API instead.", @@ -7288,7 +7400,9 @@ ], "operationId": "Pool_StopResize", "x-ms-examples": { - "Pool stop resize": { "$ref": "./examples/PoolStopResize.json" } + "Pool stop resize": { + "$ref": "./examples/PoolStopResize.json" + } }, "summary": "Stops an ongoing resize operation on the Pool.", "description": "This does not restore the Pool to its previous state before the resize operation: it only stops any further changes being made, and the Pool maintains its current state. After stopping, the Pool stabilizes at the number of Compute Nodes it was at when the stop operation was done. During the stop operation, the Pool allocation state changes first to stopping and then to steady. A resize operation need not be an explicit resize Pool request; this API can also be used to halt the initial sizing of the Pool when it is created.", @@ -7438,7 +7552,9 @@ ], "operationId": "Pool_UpdateProperties", "x-ms-examples": { - "Pool update": { "$ref": "./examples/PoolUpdate.json" } + "Pool update": { + "$ref": "./examples/PoolUpdate.json" + } }, "summary": "Updates the properties of the specified Pool.", "description": "This fully replaces all the updatable properties of the Pool. For example, if the Pool has a start Task associated with it and if start Task is not specified with this request, then the Batch service will remove the existing start Task.", @@ -7555,7 +7671,9 @@ ], "operationId": "Pool_RemoveNodes", "x-ms-examples": { - "Pool remove nodes": { "$ref": "./examples/PoolRemoveNodes.json" } + "Pool remove nodes": { + "$ref": "./examples/PoolRemoveNodes.json" + } }, "summary": "Removes Compute Nodes from the specified Pool.", "description": "This operation can only run when the allocation state of the Pool is steady. When this operation runs, the allocation state changes from steady to resizing.", @@ -7714,9 +7832,15 @@ ], "operationId": "Task_Add", "x-ms-examples": { - "Add a basic task": { "$ref": "./examples/TaskAdd_Basic.json" }, - "Add a task with exit conditions": { "$ref": "./examples/TaskAdd_ExitConditions.json" }, - "Add a task with container settings": { "$ref": "./examples/TaskAdd_ContainerSettings.json" } + "Add a basic task": { + "$ref": "./examples/TaskAdd_Basic.json" + }, + "Add a task with exit conditions": { + "$ref": "./examples/TaskAdd_ExitConditions.json" + }, + "Add a task with container settings": { + "$ref": "./examples/TaskAdd_ContainerSettings.json" + } }, "summary": "Adds a Task to the specified Job.", "description": "The maximum lifetime of a Task from addition to completion is 180 days. If a Task has not completed within 180 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.", @@ -7834,7 +7958,9 @@ }, "operationId": "Task_List", "x-ms-examples": { - "Task list": { "$ref": "./examples/TaskList.json" } + "Task list": { + "$ref": "./examples/TaskList.json" + } }, "summary": "Lists all of the Tasks that are associated with the specified Job.", "description": "For multi-instance Tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary Task. Use the list subtasks API to retrieve information about subtasks.", @@ -7986,8 +8112,12 @@ ], "operationId": "Task_AddCollection", "x-ms-examples": { - "Add a basic collection of tasks": { "$ref": "./examples/TaskAddCollection_Basic.json" }, - "Add a complex collection of tasks": { "$ref": "./examples/TaskAddCollection_Complex.json" } + "Add a basic collection of tasks": { + "$ref": "./examples/TaskAddCollection_Basic.json" + }, + "Add a complex collection of tasks": { + "$ref": "./examples/TaskAddCollection_Complex.json" + } }, "summary": "Adds a collection of Tasks to the specified Job.", "description": "Note that each Task must have a unique ID. The Batch service may not return the results for each Task in the same order the Tasks were submitted in this request. If the server times out or the connection is closed during the request, the request may have been partially or fully processed, or not at all. In such cases, the user should re-issue the request. Note that it is up to the user to correctly handle failures when re-issuing a request. For example, you should use the same Task IDs during a retry so that if the prior operation succeeded, the retry will not create extra Tasks unexpectedly. If the response contains any Tasks which failed to add, a client can retry the request. In a retry, it is most efficient to resubmit only Tasks that failed to add, and to omit Tasks that were successfully added on the first attempt. The maximum lifetime of a Task from addition to completion is 180 days. If a Task has not completed within 180 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.", @@ -8092,7 +8222,9 @@ ], "operationId": "Task_Delete", "x-ms-examples": { - "Task delete": { "$ref": "./examples/TaskDelete.json" } + "Task delete": { + "$ref": "./examples/TaskDelete.json" + } }, "summary": "Deletes a Task from the specified Job.", "description": "When a Task is deleted, all of the files in its directory on the Compute Node where it ran are also deleted (regardless of the retention time). For multi-instance Tasks, the delete Task operation applies synchronously to the primary task; subtasks and their files are then deleted asynchronously in the background.", @@ -8232,7 +8364,9 @@ ], "operationId": "Task_Get", "x-ms-examples": { - "Task get": { "$ref": "./examples/TaskGet.json" } + "Task get": { + "$ref": "./examples/TaskGet.json" + } }, "summary": "Gets information about the specified Task.", "description": "For multi-instance Tasks, information such as affinityId, executionInfo and nodeInfo refer to the primary Task. Use the list subtasks API to retrieve information about subtasks.", @@ -8410,7 +8544,9 @@ ], "operationId": "Task_Update", "x-ms-examples": { - "Task update": { "$ref": "./examples/TaskUpdate.json" } + "Task update": { + "$ref": "./examples/TaskUpdate.json" + } }, "description": "Updates the properties of the specified Task.", "x-ms-request-id": "request-id", @@ -8575,7 +8711,9 @@ ], "operationId": "Task_ListSubtasks", "x-ms-examples": { - "Task list subtasks": { "$ref": "./examples/TaskListSubtasks.json" } + "Task list subtasks": { + "$ref": "./examples/TaskListSubtasks.json" + } }, "summary": "Lists all of the subtasks that are associated with the specified multi-instance Task.", "description": "If the Task is not a multi-instance Task then this returns an empty collection.", @@ -8699,7 +8837,9 @@ ], "operationId": "Task_Terminate", "x-ms-examples": { - "Task terminate": { "$ref": "./examples/TaskTerminate.json" } + "Task terminate": { + "$ref": "./examples/TaskTerminate.json" + } }, "summary": "Terminates the specified Task.", "description": "When the Task has been terminated, it moves to the completed state. For multi-instance Tasks, the terminate Task operation applies synchronously to the primary task; subtasks are then terminated asynchronously in the background.", @@ -8856,7 +8996,9 @@ ], "operationId": "Task_Reactivate", "x-ms-examples": { - "Task reactivate": { "$ref": "./examples/TaskReactivate.json" } + "Task reactivate": { + "$ref": "./examples/TaskReactivate.json" + } }, "summary": "Reactivates a Task, allowing it to run again even if its retry count has been exhausted.", "description": "Reactivation makes a Task eligible to be retried again up to its maximum retry count. The Task's state is changed to active. As the Task is no longer in the completed state, any previous exit code or failure information is no longer available after reactivation. Each time a Task is reactivated, its retry count is reset to 0. Reactivation will fail for Tasks that are not completed or that previously completed successfully (with an exit code of 0). Additionally, it will fail if the Job has completed (or is terminating or deleting).", @@ -9013,7 +9155,9 @@ ], "operationId": "ComputeNode_AddUser", "x-ms-examples": { - "Node add user": { "$ref": "./examples/NodeAddUser.json" } + "Node add user": { + "$ref": "./examples/NodeAddUser.json" + } }, "summary": "Adds a user Account to the specified Compute Node.", "description": "You can add a user Account to a Compute Node only when it is in the idle or running state.", @@ -9137,7 +9281,9 @@ ], "operationId": "ComputeNode_DeleteUser", "x-ms-examples": { - "Node delete user": { "$ref": "./examples/NodeDeleteUser.json" } + "Node delete user": { + "$ref": "./examples/NodeDeleteUser.json" + } }, "summary": "Deletes a user Account from the specified Compute Node.", "description": "You can delete a user Account to a Compute Node only when it is in the idle or running state.", @@ -9242,7 +9388,9 @@ ], "operationId": "ComputeNode_UpdateUser", "x-ms-examples": { - "Node update user": { "$ref": "./examples/NodeUpdateUser.json" } + "Node update user": { + "$ref": "./examples/NodeUpdateUser.json" + } }, "summary": "Updates the password and expiration time of a user Account on the specified Compute Node.", "description": "This operation replaces of all the updatable properties of the Account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user Account on a Compute Node only when it is in the idle or running state.", @@ -9373,7 +9521,9 @@ ], "operationId": "ComputeNode_Get", "x-ms-examples": { - "Node get": { "$ref": "./examples/NodeGet_Basic.json" } + "Node get": { + "$ref": "./examples/NodeGet_Basic.json" + } }, "summary": "Gets information about the specified Compute Node.", "x-ms-request-id": "request-id", @@ -9496,7 +9646,9 @@ ], "operationId": "ComputeNode_Reboot", "x-ms-examples": { - "Node reboot": { "$ref": "./examples/NodeReboot.json" } + "Node reboot": { + "$ref": "./examples/NodeReboot.json" + } }, "summary": "Restarts the specified Compute Node.", "description": "You can restart a Compute Node only if it is in an idle or running state.", @@ -9620,7 +9772,9 @@ ], "operationId": "ComputeNode_Reimage", "x-ms-examples": { - "Node reimage": { "$ref": "./examples/NodeReimage.json" } + "Node reimage": { + "$ref": "./examples/NodeReimage.json" + } }, "summary": "Reinstalls the operating system on the specified Compute Node.", "description": "You can reinstall the operating system on a Compute Node only if it is in an idle or running state. This API can be invoked only on Pools created with the cloud service configuration property.", @@ -9744,7 +9898,9 @@ ], "operationId": "ComputeNode_DisableScheduling", "x-ms-examples": { - "Node disable scheduling": { "$ref": "./examples/NodeDisableScheduling.json" } + "Node disable scheduling": { + "$ref": "./examples/NodeDisableScheduling.json" + } }, "summary": "Disables Task scheduling on the specified Compute Node.", "description": "You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.", @@ -9868,7 +10024,9 @@ ], "operationId": "ComputeNode_EnableScheduling", "x-ms-examples": { - "Node enable scheduling": { "$ref": "./examples/NodeEnableScheduling.json" } + "Node enable scheduling": { + "$ref": "./examples/NodeEnableScheduling.json" + } }, "summary": "Enables Task scheduling on the specified Compute Node.", "description": "You can enable Task scheduling on a Compute Node only if its current scheduling state is disabled", @@ -9983,7 +10141,9 @@ ], "operationId": "ComputeNode_GetRemoteLoginSettings", "x-ms-examples": { - "Node get remote login settings": { "$ref": "./examples/NodeGetRemoteLoginSettings.json" } + "Node get remote login settings": { + "$ref": "./examples/NodeGetRemoteLoginSettings.json" + } }, "summary": "Gets the settings required for remote login to a Compute Node.", "description": "Before you can remotely login to a Compute Node using the remote login settings, you must create a user Account on the Compute Node. This API can be invoked only on Pools created with the virtual machine configuration property. For Pools created with a cloud service configuration, see the GetRemoteDesktop API.", @@ -10097,7 +10257,9 @@ ], "operationId": "ComputeNode_GetRemoteDesktop", "x-ms-examples": { - "Get RDP file of the compute node": { "$ref": "./examples/NodeGetRemoteDesktop.json" } + "Get RDP file of the compute node": { + "$ref": "./examples/NodeGetRemoteDesktop.json" + } }, "summary": "Gets the Remote Desktop Protocol file for the specified Compute Node.", "description": "Before you can access a Compute Node by using the RDP file, you must create a user Account on the Compute Node. This API can only be invoked on Pools created with a cloud service configuration. For Pools created with a virtual machine configuration, see the GetRemoteLoginSettings API.", @@ -10218,7 +10380,9 @@ "summary": "Upload Azure Batch service log files from the specified Compute Node to Azure Blob Storage.", "description": "This is for gathering Azure Batch service log files in an automated fashion from Compute Nodes if you are experiencing an error and wish to escalate to Azure support. The Azure Batch service log files should be shared with Azure support to aid in debugging issues with the Batch service.", "x-ms-examples": { - "Upload BatchService Logs": { "$ref": "./examples/NodeUploadBatchServiceLogs.json" } + "Upload BatchService Logs": { + "$ref": "./examples/NodeUploadBatchServiceLogs.json" + } }, "x-ms-request-id": "request-id", "parameters": [ @@ -10333,7 +10497,9 @@ }, "operationId": "ComputeNode_List", "x-ms-examples": { - "Node list": { "$ref": "./examples/NodeList.json" } + "Node list": { + "$ref": "./examples/NodeList.json" + } }, "summary": "Lists the Compute Nodes in the specified Pool.", "x-ms-request-id": "request-id", @@ -10496,7 +10662,13 @@ "title": "The total core hours used in the Pool during this aggregation interval." } }, - "required": [ "poolId", "startTime", "endTime", "vmSize", "totalCoreHours" ], + "required": [ + "poolId", + "startTime", + "endTime", + "vmSize", + "totalCoreHours" + ], "title": "Usage metrics for a Pool across an aggregation interval." }, "PoolListUsageMetricsResult": { @@ -10583,7 +10755,12 @@ } } }, - "required": [ "imageReference", "verificationType", "osType", "nodeAgentSKUId" ], + "required": [ + "imageReference", + "verificationType", + "osType", + "nodeAgentSKUId" + ], "title": "A reference to the Azure Virtual Machines Marketplace Image and additional information about the Image." }, "AuthenticationTokenSettings": { @@ -10647,7 +10824,11 @@ "title": "The aggregated wall-clock time of the dedicated Compute Node cores being part of the Pool." } }, - "required": [ "startTime", "lastUpdateTime", "dedicatedCoreTime" ], + "required": [ + "startTime", + "lastUpdateTime", + "dedicatedCoreTime" + ], "title": "Statistics related to Pool usage information." }, "ResourceStatistics": { @@ -10718,7 +10899,21 @@ "title": "The total amount of data in GiB of network writes across all Compute Nodes in the Pool." } }, - "required": [ "startTime", "lastUpdateTime", "avgCPUPercentage", "avgMemoryGiB", "peakMemoryGiB", "avgDiskGiB", "peakDiskGiB", "diskReadIOps", "diskWriteIOps", "diskReadGiB", "diskWriteGiB", "networkReadGiB", "networkWriteGiB" ], + "required": [ + "startTime", + "lastUpdateTime", + "avgCPUPercentage", + "avgMemoryGiB", + "peakMemoryGiB", + "avgDiskGiB", + "peakDiskGiB", + "diskReadIOps", + "diskWriteIOps", + "diskReadGiB", + "diskWriteGiB", + "networkReadGiB", + "networkWriteGiB" + ], "title": "Statistics related to resource consumption by Compute Nodes in a Pool." }, "PoolStatistics": { @@ -10746,7 +10941,11 @@ "title": "Statistics related to resource consumption by Compute Nodes in the Pool." } }, - "required": [ "url", "startTime", "lastUpdateTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime" + ], "title": "Contains utilization and resource usage statistics for the lifetime of a Pool." }, "JobStatistics": { @@ -10825,7 +11024,22 @@ "description": "The wait time for a Task is defined as the elapsed time between the creation of the Task and the start of Task execution. (If the Task is retried due to failures, the wait time is the time to the most recent Task execution.) This value is only reported in the Account lifetime statistics; it is not included in the Job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a Job." }, "NameValuePair": { @@ -10920,7 +11134,9 @@ "description": "If this is omitted on a Pool, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences and HTTP status code 409. If this is omitted on a Task, and no default version is specified for this application, the Task fails with a pre-processing error." } }, - "required": [ "applicationId" ], + "required": [ + "applicationId" + ], "title": "A reference to an Package to be deployed to Compute Nodes." }, "ApplicationSummary": { @@ -10941,7 +11157,11 @@ } } }, - "required": [ "id", "displayName", "versions" ], + "required": [ + "id", + "displayName", + "versions" + ], "title": "Contains information about an application in an Azure Batch Account." }, "CertificateAddParameter": { @@ -10986,7 +11206,11 @@ "description": "This is required if the Certificate format is pfx. It should be omitted if the Certificate format is cer." } }, - "required": [ "thumbprint", "thumbprintAlgorithm", "data" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm", + "data" + ], "title": "A Certificate that can be installed on Compute Nodes and can be used to authenticate operations on the machine." }, "CertificateListResult": { @@ -11033,7 +11257,10 @@ "description": "The file mode is returned only for files on Linux Compute Nodes." } }, - "required": [ "lastModified", "contentLength" ], + "required": [ + "lastModified", + "contentLength" + ], "title": "The properties of a file on a Compute Node." }, "NodeFile": { @@ -11131,7 +11358,9 @@ } } }, - "required": [ "subnetId" ], + "required": [ + "subnetId" + ], "title": "The network configuration for the Job." }, "TaskContainerSettings": { @@ -11175,7 +11404,9 @@ } } }, - "required": [ "imageName" ], + "required": [ + "imageName" + ], "title": "The container settings for a Task." }, "ResourceFile": { @@ -11224,7 +11455,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a Task process." }, "ExitConditions": { @@ -11273,7 +11506,10 @@ } }, "title": "How the Batch service should respond if a Task exits with a particular exit code.", - "required": [ "code", "exitOptions" ] + "required": [ + "code", + "exitOptions" + ] }, "ExitCodeRangeMapping": { "properties": { @@ -11293,7 +11529,11 @@ } }, "title": "A range of exit codes and how the Batch service should respond to exit codes within that range.", - "required": [ "start", "end", "exitOptions" ] + "required": [ + "start", + "end", + "exitOptions" + ] }, "ExitOptions": { "properties": { @@ -11477,7 +11717,10 @@ "$ref": "#/definitions/WindowsUserConfiguration" } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user used to execute Tasks on an Azure Batch Compute Node." }, "TaskConstraints": { @@ -11586,7 +11829,10 @@ "description": "The default value is true." } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "Specifies details of a Job Manager Task.", "description": "The Job Manager Task is automatically started when the Job is created. The Batch service tries to schedule the Job Manager Task before any other Tasks in the Job. When shrinking a Pool, the Batch service tries to preserve Nodes where Job Manager Tasks are running for as long as possible (that is, Compute Nodes running 'normal' Tasks are removed before Compute Nodes running Job Manager Tasks). When a Job Manager Task fails and needs to be restarted, the system tries to schedule it at the highest priority. If there are no idle Compute Nodes available, the system may terminate one of the running Tasks in the Pool and return it to the queue in order to make room for the Job Manager Task to restart. Note that a Job Manager Task in one Job does not have priority over Tasks in other Jobs. Across Jobs, only Job level priorities are observed. For example, if a Job Manager in a priority 0 Job needs to be restarted, it will not displace Tasks of a priority 1 Job. Batch will retry Tasks when a recovery operation is triggered on a Node. Examples of recovery operations include (but are not limited to) when an unhealthy Node is rebooted or a Compute Node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all Tasks should be idempotent. This means Tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running Tasks is to use some form of checkpointing." }, @@ -11642,7 +11888,9 @@ "description": "The Job Preparation Task is always rerun if a Compute Node is reimaged, or if the Job Preparation Task did not complete (e.g. because the reboot occurred while the Task was running). Therefore, you should always write a Job Preparation Task to be idempotent and to behave correctly if run multiple times. The default value is true." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Preparation Task to run before any Tasks of the Job on any given Compute Node.", "description": "You can use Job Preparation to prepare a Node to run Tasks for the Job. Activities commonly performed in Job Preparation include: Downloading common resource files used by all the Tasks in the Job. The Job Preparation Task can download these common resource files to the shared location on the Node. (AZ_BATCH_NODE_ROOT_DIR\\shared), or starting a local service on the Node so that all Tasks of that Job can communicate with it. If the Job Preparation Task fails (that is, exhausts its retry count before exiting with exit code 0), Batch will not run Tasks of this Job on the Node. The Compute Node remains ineligible to run Tasks of this Job until it is reimaged. The Compute Node remains active and can be used for other Jobs. The Job Preparation Task can run multiple times on the same Node. Therefore, you should write the Job Preparation Task to handle re-execution. If the Node is rebooted, the Job Preparation Task is run again on the Compute Node before scheduling any other Task of the Job, if rerunOnNodeRebootAfterSuccess is true or if the Job Preparation Task did not previously complete. If the Node is reimaged, the Job Preparation Task is run again before scheduling any Task of the Job. Batch will retry Tasks when a recovery operation is triggered on a Node. Examples of recovery operations include (but are not limited to) when an unhealthy Node is rebooted or a Compute Node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all Tasks should be idempotent. This means Tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running Tasks is to use some form of checkpointing." }, @@ -11695,7 +11943,9 @@ "description": "If omitted, the Task runs as a non-administrative user unique to the Task." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Job Release Task to run on Job completion on any Compute Node where the Job has run.", "description": "The Job Release Task runs when the Job ends, because of one of the following: The user calls the Terminate Job API, or the Delete Job API while the Job is still active, the Job's maximum wall clock time constraint is reached, and the Job is still active, or the Job's Job Manager Task completed, and the Job is configured to terminate when the Job Manager completes. The Job Release Task runs on each Node where Tasks of the Job have run and the Job Preparation Task ran and completed. If you reimage a Node after it has run the Job Preparation Task, and the Job ends without any further Tasks of the Job running on that Node (and hence the Job Preparation Task does not re-run), then the Job Release Task does not run on that Compute Node. If a Node reboots while the Job Release Task is still running, the Job Release Task runs again when the Compute Node starts up. The Job is not marked as complete until all Job Release Tasks have completed. The Job Release Task runs in the background. It does not occupy a scheduling slot; that is, it does not count towards the maxTasksPerNode limit specified on the Pool." }, @@ -11725,7 +11975,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how Tasks should be distributed across Compute Nodes." }, "StartTask": { @@ -11772,7 +12024,9 @@ "description": "If true and the start Task fails on a Node, the Batch service retries the start Task up to its maximum retry count (maxTaskRetryCount). If the Task has still not completed successfully after all retries, then the Batch service marks the Node unusable, and will not schedule Tasks to it. This condition can be detected via the Compute Node state and failure info details. If false, the Batch service will not wait for the start Task to complete. In this case, other Tasks can start executing on the Compute Node while the start Task is still running; and even if the start Task fails, new Tasks will continue to be scheduled on the Compute Node. The default is false." } }, - "required": [ "commandLine" ], + "required": [ + "commandLine" + ], "title": "A Task which is run when a Node joins a Pool in the Azure Batch service, or when the Compute Node is rebooted or reimaged.", "description": "Batch will retry Tasks when a recovery operation is triggered on a Node. Examples of recovery operations include (but are not limited to) when an unhealthy Node is rebooted or a Compute Node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all Tasks should be idempotent. This means Tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running Tasks is to use some form of checkpointing. In some cases the start Task may be re-run even though the Compute Node was not rebooted. Special care should be taken to avoid start Tasks which create breakaway process or install/launch services from the start Task working directory, as this will block Batch from being able to re-run the start Task." }, @@ -11851,7 +12105,10 @@ "description": "You can specify more than one visibility in this collection. The default is all Accounts." } }, - "required": [ "thumbprint", "thumbprintAlgorithm" ], + "required": [ + "thumbprint", + "thumbprintAlgorithm" + ], "title": "A reference to a Certificate to be installed on Compute Nodes in a Pool." }, "MetadataItem": { @@ -11865,7 +12122,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -11989,7 +12249,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "vmSize" ], + "required": [ + "vmSize" + ], "title": "Specification for creating a new Pool." }, "AutoPoolSpecification": { @@ -12032,7 +12294,9 @@ "title": "The Pool specification for the auto Pool." } }, - "required": [ "poolLifetimeOption" ], + "required": [ + "poolLifetimeOption" + ], "title": "Specifies characteristics for a temporary 'auto pool'. The Batch service will create this auto Pool when the Job is submitted." }, "PoolInformation": { @@ -12121,7 +12385,9 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "Specifies details of the Jobs to be created on a schedule." }, "RecentJob": { @@ -12233,7 +12499,22 @@ "description": "This value is only reported in the Account lifetime statistics; it is not included in the Job statistics." } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "numSucceededTasks", "numFailedTasks", "numTaskRetries", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "numSucceededTasks", + "numFailedTasks", + "numTaskRetries", + "waitTime" + ], "title": "Resource usage statistics for a Job Schedule." }, "CloudJobSchedule": { @@ -12342,7 +12623,11 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "schedule", "jobSpecification" ], + "required": [ + "id", + "schedule", + "jobSpecification" + ], "title": "A Job Schedule that allows recurring Jobs by specifying when to run Jobs and a specification used to create each Job." }, "CloudJobScheduleListResult": { @@ -12383,7 +12668,9 @@ "title": "A list of additional error details related to the scheduling error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "An error encountered by the Batch service when scheduling a Job." }, "JobExecutionInformation": { @@ -12416,7 +12703,9 @@ "description": "This property is set only if the Job is in the completed state. If the Batch service terminates the Job, it sets the reason as follows: JMComplete - the Job Manager Task completed, and killJobOnCompletion was set to true. MaxWallClockTimeExpiry - the Job reached its maxWallClockTime constraint. TerminateJobSchedule - the Job ran as part of a schedule, and the schedule terminated. AllTasksComplete - the Job's onAllTasksComplete attribute is set to terminatejob, and all Tasks in the Job are complete. TaskFailed - the Job's onTaskFailure attribute is set to performExitOptionsJobAction, and a Task in the Job failed with an exit condition that specified a jobAction of terminatejob. Any other string is a user-defined reason specified in a call to the 'Terminate a Job' operation." } }, - "required": [ "startTime" ], + "required": [ + "startTime" + ], "title": "Contains information about the execution of a Job in the Azure Batch service." }, "CloudJob": { @@ -12620,7 +12909,10 @@ "title": "The network configuration for the Job." } }, - "required": [ "id", "poolInfo" ], + "required": [ + "id", + "poolInfo" + ], "title": "An Azure Batch Job to add." }, "CloudJobListResult": { @@ -12680,7 +12972,9 @@ "title": "A list of additional details related to the error." } }, - "required": [ "category" ], + "required": [ + "category" + ], "title": "Information about a Task failure." }, "JobPreparationTaskExecutionInformation": { @@ -12761,7 +13055,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "retryCount", "state" ], + "required": [ + "startTime", + "retryCount", + "state" + ], "title": "Contains information about the execution of a Job Preparation Task on a Compute Node." }, "JobReleaseTaskExecutionInformation": { @@ -12830,7 +13128,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "startTime", "state" ], + "required": [ + "startTime", + "state" + ], "title": "Contains information about the execution of a Job Release Task on a Compute Node." }, "JobPreparationAndReleaseTaskExecutionInformation": { @@ -12903,7 +13204,13 @@ "title": "The number of Tasks which failed. A Task fails if its result (found in the executionInfo property) is 'failure'." } }, - "required": [ "active", "running", "completed", "succeeded", "failed" ], + "required": [ + "active", + "running", + "completed", + "succeeded", + "failed" + ], "title": "The Task counts for a Job." }, "AutoScaleRunError": { @@ -12943,7 +13250,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the Pool, if the evaluation was unsuccessful." } }, - "required": [ "timestamp" ], + "required": [ + "timestamp" + ], "title": "The results and errors from an execution of a Pool autoscale formula." }, "ResizeError": { @@ -12979,7 +13288,9 @@ "description": "The default value is * which specifies the latest operating system version for the specified OS family." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for Compute Nodes in a Pool based on the Azure Cloud Services platform." }, "ImageReference": { @@ -13141,7 +13452,10 @@ "description": "If specified, setup is performed on each Compute Node in the Pool to allow Tasks to run in containers. All regular Tasks and Job manager Tasks run on this Pool must specify the containerSettings property, and all other Tasks may specify it." } }, - "required": [ "nodeAgentSKUId", "imageReference" ], + "required": [ + "nodeAgentSKUId", + "imageReference" + ], "title": "The configuration for Compute Nodes in a Pool based on the Azure Virtual Machines infrastructure." }, "ContainerRegistry": { @@ -13161,7 +13475,10 @@ "title": "The password to log into the registry server." } }, - "required": [ "username", "password" ], + "required": [ + "username", + "password" + ], "title": "A private container registry." }, "ContainerConfiguration": { @@ -13200,7 +13517,9 @@ "description": "If any Images must be downloaded from a private registry which requires credentials, then those credentials must be provided here." } }, - "required": [ "type" ], + "required": [ + "type" + ], "title": "The configuration for container-enabled Pools." }, "NetworkConfiguration": { @@ -13602,7 +13921,10 @@ "description": "The Batch service does not assign any meaning to metadata; it is solely for the use of user code." } }, - "required": [ "id", "vmSize" ], + "required": [ + "id", + "vmSize" + ], "title": "A Pool in the Azure Batch service to add." }, "ApplicationListResult": { @@ -13645,7 +13967,9 @@ "description": "You can pass the affinityId of a Node to indicate that this Task needs to run on that Compute Node. Note that this is just a soft affinity. If the target Compute Node is busy or unavailable at the time the Task is scheduled, then the Task will be scheduled elsewhere." } }, - "required": [ "affinityId" ], + "required": [ + "affinityId" + ], "title": "A locality hint that can be used by the Batch service to select a Compute Node on which to start a Task." }, "TaskExecutionInformation": { @@ -13708,7 +14032,10 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "requeueCount", "retryCount" ], + "required": [ + "requeueCount", + "retryCount" + ], "title": "Information about the execution of a Task." }, "ComputeNodeInformation": { @@ -13754,7 +14081,10 @@ "description": "This is the most recent time that the Compute Node agent was updated to a new version." } }, - "required": [ "version", "lastUpdateTime" ], + "required": [ + "version", + "lastUpdateTime" + ], "title": "Information about the Compute Node agent.", "description": "The Batch Compute Node agent is a program that runs on each Compute Node in the Pool and provides Batch capability on the Compute Node." }, @@ -13780,7 +14110,9 @@ "description": "The difference between common resource files and Task resource files is that common resource files are downloaded for all subtasks including the primary, whereas Task resource files are downloaded only for the primary. Also note that these resource files are not downloaded to the Task working directory, but instead are downloaded to the Task root directory (one directory above the working directory). There is a maximum size for the list of resource files. When the max size is exceeded, the request will fail and the response error code will be RequestEntityTooLarge. If this occurs, the collection of ResourceFiles must be reduced in size. This can be achieved using .zip files, Application Packages, or Docker Containers." } }, - "required": [ "coordinationCommandLine" ], + "required": [ + "coordinationCommandLine" + ], "title": "Settings which specify how to run a multi-instance Task.", "description": "Multi-instance Tasks are commonly used to support MPI Tasks. In the MPI case, if any of the subtasks fail (for example due to exiting with a non-zero exit code) the entire multi-instance Task fails. The multi-instance Task is then terminated and retried, up to its retry limit." }, @@ -13842,7 +14174,19 @@ "title": "The total wait time of the Task. The wait time for a Task is defined as the elapsed time between the creation of the Task and the start of Task execution. (If the Task is retried due to failures, the wait time is the time to the most recent Task execution.)" } }, - "required": [ "url", "startTime", "lastUpdateTime", "userCPUTime", "kernelCPUTime", "wallClockTime", "readIOps", "writeIOps", "readIOGiB", "writeIOGiB", "waitTime" ], + "required": [ + "url", + "startTime", + "lastUpdateTime", + "userCPUTime", + "kernelCPUTime", + "wallClockTime", + "readIOps", + "writeIOps", + "readIOGiB", + "writeIOGiB", + "waitTime" + ], "title": "Resource usage statistics for a Task." }, "TaskDependencies": { @@ -13880,7 +14224,10 @@ }, "title": "A range of Task IDs that a Task can depend on. All Tasks with IDs in the range must complete successfully before the dependent Task can be scheduled.", "description": "The start and end of the range are inclusive. For example, if a range has start 9 and end 12, then it represents Tasks '9', '10', '11' and '12'.", - "required": [ "start", "end" ] + "required": [ + "start", + "end" + ] }, "CloudTask": { "properties": { @@ -14107,7 +14454,10 @@ "$ref": "#/definitions/AuthenticationTokenSettings" } }, - "required": [ "id", "commandLine" ], + "required": [ + "id", + "commandLine" + ], "title": "An Azure Batch Task to add.", "description": "Batch will retry Tasks when a recovery operation is triggered on a Node. Examples of recovery operations include (but are not limited to) when an unhealthy Node is rebooted or a Compute Node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the maxTaskRetryCount. Even if the maxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all Tasks should be idempotent. This means Tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running Tasks is to use some form of checkpointing." }, @@ -14123,7 +14473,9 @@ "description": "The total serialized size of this collection must be less than 1MB. If it is greater than 1MB (for example if each Task has 100's of resource files or environment variables), the request will fail with code 'RequestBodyTooLarge' and should be retried again with fewer Tasks." } }, - "required": [ "value" ], + "required": [ + "value" + ], "title": "A collection of Azure Batch Tasks to add." }, "TaskAddResult": { @@ -14180,7 +14532,10 @@ "title": "The error encountered while attempting to add the Task." } }, - "required": [ "status", "taskId" ], + "required": [ + "status", + "taskId" + ], "title": "Result for a single Task added as part of an add Task collection operation." }, "TaskAddCollectionResult": { @@ -14317,7 +14672,9 @@ "title": "Information about the execution of the Task." } }, - "required": [ "taskState" ], + "required": [ + "taskState" + ], "title": "Information about a Task running on a Compute Node." }, "StartTaskInformation": { @@ -14390,7 +14747,11 @@ "description": "If the value is 'failed', then the details of the failure can be found in the failureInfo property." } }, - "required": [ "state", "startTime", "retryCount" ], + "required": [ + "state", + "startTime", + "retryCount" + ], "title": "Information about a start Task running on a Compute Node." }, "ComputeNodeError": { @@ -14631,7 +14992,9 @@ "description": "The maximum number of inbound NAT Pools per Batch Pool is 5. If the maximum number of inbound NAT Pools is exceeded the request fails with HTTP status code 400." } }, - "required": [ "inboundNATPools" ], + "required": [ + "inboundNATPools" + ], "title": "The endpoint configuration for a Pool." }, "InboundNATPool": { @@ -14672,7 +15035,13 @@ } } }, - "required": [ "name", "protocol", "backendPort", "frontendPortRangeStart", "frontendPortRangeEnd" ], + "required": [ + "name", + "protocol", + "backendPort", + "frontendPortRangeStart", + "frontendPortRangeEnd" + ], "title": "A inbound NAT Pool that can be used to address specific ports on Compute Nodes in a Batch Pool externally." }, "NetworkSecurityGroupRule": { @@ -14719,7 +15088,11 @@ "description": "Valid values are '*' (for all ports 0 - 65535), a specific port (i.e. 22), or a port range (i.e. 100-200). The ports must be in the range of 0 to 65535. Each entry in this collection must not overlap any other entry (either a range or an individual port). If any other values are provided the request fails with HTTP status code 400. The default value is '*'." } }, - "required": [ "priority", "access", "sourceAddressPrefix" ], + "required": [ + "priority", + "access", + "sourceAddressPrefix" + ], "title": "A network security group rule to apply to an inbound endpoint." }, "ComputeNodeEndpointConfiguration": { @@ -14732,7 +15105,9 @@ "title": "The list of inbound endpoints that are accessible on the Compute Node." } }, - "required": [ "inboundEndpoints" ], + "required": [ + "inboundEndpoints" + ], "title": "The endpoint configuration for the Compute Node." }, "InboundEndpoint": { @@ -14764,7 +15139,14 @@ "title": "The backend port number of the endpoint." } }, - "required": [ "name", "protocol", "publicIPAddress", "publicFQDN", "frontendPort", "backendPort" ], + "required": [ + "name", + "protocol", + "publicIPAddress", + "publicFQDN", + "frontendPort", + "backendPort" + ], "title": "An inbound endpoint on a Compute Node." }, "ComputeNodeListResult": { @@ -14811,7 +15193,9 @@ "description": "The public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux Compute Nodes. If this is specified for a Windows Compute Node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request)." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "A user Account for RDP or SSH access on a Compute Node." }, "ComputeNodeGetRemoteLoginSettingsResult": { @@ -14826,7 +15210,10 @@ "title": "The port used for remote login to the Compute Node." } }, - "required": [ "remoteLoginIPAddress", "remoteLoginPort" ], + "required": [ + "remoteLoginIPAddress", + "remoteLoginPort" + ], "title": "The remote login settings for a Compute Node." }, "JobSchedulePatchParameter": { @@ -14873,7 +15260,10 @@ "description": "If you do not specify this element, it takes the default value of an empty list; in effect, any existing metadata is deleted." } }, - "required": [ "schedule", "jobSpecification" ], + "required": [ + "schedule", + "jobSpecification" + ], "title": "The set of changes to be made to a Job Schedule." }, "JobDisableParameter": { @@ -14906,7 +15296,9 @@ } } }, - "required": [ "disableTasks" ], + "required": [ + "disableTasks" + ], "title": "Options when disabling a Job." }, "JobTerminateParameter": { @@ -14984,7 +15376,9 @@ "$ref": "#/definitions/OnAllTasksComplete" } }, - "required": [ "poolInfo" ], + "required": [ + "poolInfo" + ], "title": "The set of changes to be made to a Job." }, "PoolEnableAutoScaleParameter": { @@ -15011,7 +15405,9 @@ "description": "The formula is validated and its results calculated, but it is not applied to the Pool. To apply the formula to the Pool, 'Enable automatic scaling on a Pool'. For more information about specifying this formula, see Automatically scale Compute Nodes in an Azure Batch Pool (https://azure.microsoft.com/en-us/documentation/articles/batch-automatic-scaling)." } }, - "required": [ "autoScaleFormula" ], + "required": [ + "autoScaleFormula" + ], "title": "Options for evaluating an automatic scaling formula on a Pool." }, "PoolResizeParameter": { @@ -15072,7 +15468,11 @@ "description": "This list replaces any existing metadata configured on the Pool. If omitted, or if you specify an empty collection, any existing metadata is removed from the Pool." } }, - "required": [ "certificateReferences", "metadata", "applicationPackageReferences" ], + "required": [ + "certificateReferences", + "metadata", + "applicationPackageReferences" + ], "title": "The set of changes to be made to a Pool." }, "PoolPatchParameter": { @@ -15276,7 +15676,9 @@ "$ref": "#/definitions/ComputeNodeDeallocationOption" } }, - "required": [ "nodeList" ], + "required": [ + "nodeList" + ], "title": "Options for removing Compute Nodes from a Pool." }, "OutputFile": { @@ -15295,7 +15697,11 @@ "$ref": "#/definitions/OutputFileUploadOptions" } }, - "required": [ "filePattern", "destination", "uploadOptions" ], + "required": [ + "filePattern", + "destination", + "uploadOptions" + ], "title": "A specification for uploading files from an Azure Batch Compute Node to another location after the Batch service has finished executing the Task process." }, "OutputFileDestination": { @@ -15320,7 +15726,9 @@ "description": "The URL must include a Shared Access Signature (SAS) granting write permissions to the container." } }, - "required": [ "containerUrl" ], + "required": [ + "containerUrl" + ], "title": "Specifies a file upload destination within an Azure blob storage container." }, "OutputFileUploadOptions": { @@ -15331,7 +15739,9 @@ "$ref": "#/definitions/OutputFileUploadCondition" } }, - "required": [ "uploadCondition" ], + "required": [ + "uploadCondition" + ], "title": "Details about an output file upload operation, including under what conditions to perform the upload." }, "ErrorMessage": { @@ -15780,7 +16190,10 @@ "description": "Any log file containing a log message in the time range will be uploaded. This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded, but the operation should not retrieve fewer logs than have been requested. If omitted, the default is to upload all logs available after the startTime." } }, - "required": [ "containerUrl", "startTime" ], + "required": [ + "containerUrl", + "startTime" + ], "title": "The Azure Batch service log files upload configuration for a Compute Node." }, "UploadBatchServiceLogsResult": { @@ -15796,7 +16209,10 @@ "title": "The number of log files which will be uploaded." } }, - "required": [ "virtualDirectoryName", "numberOfFilesUploaded" ], + "required": [ + "virtualDirectoryName", + "numberOfFilesUploaded" + ], "title": "The result of uploading Batch service log files from a specific Compute Node." }, "PoolNodeCountsListResult": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListPoolNodeCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListPoolNodeCounts.json index e5c0701bf562..7908df333e56 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListPoolNodeCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListPoolNodeCounts.json @@ -118,4 +118,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListSupportedImages.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListSupportedImages.json index d29c3b2b526c..15b2216c2ca3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListSupportedImages.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListSupportedImages.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationGet.json index eb911811b8e2..2567c848bf60 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationGet.json @@ -9,12 +9,12 @@ "responses": { "200": { "body": { - "id": "my_application_id", - "versions": [ - "v1.0" - ], - "displayName": "my_display_name" + "id": "my_application_id", + "versions": [ + "v1.0" + ], + "displayName": "my_display_name" } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationList.json index 3284b07fb957..f89b1d0207c4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationList.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateAdd.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateAdd.json index d3205f4b3093..e6240ec22ca3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateAdd.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateAdd.json @@ -5,11 +5,11 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "certificate": { - "thumbprintAlgorithm":"sha1", - "thumbprint":"0123456789abcdef0123456789abcdef01234567", - "data":"#####...", - "certificateFormat":"pfx", - "password":"certpassword" + "thumbprintAlgorithm": "sha1", + "thumbprint": "0123456789abcdef0123456789abcdef01234567", + "data": "#####...", + "certificateFormat": "pfx", + "password": "certpassword" } }, "responses": { @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateCancelDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateCancelDelete.json index 4b560f6943e8..7f0f7de8827e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateCancelDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateCancelDelete.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateDelete.json index a8c2dc7f815b..6b912afaab24 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateDelete.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateGet.json index b26c3da7adcb..cebf6209c0c5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateGet.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateList.json index a9879b71f144..8be49adf2740 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateList.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromNode.json index b24b13a6273e..e47775c115a4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromNode.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromTask.json index f7b8168aa4e5..397777a0e788 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromTask.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromNode.json index 88c5efbc2199..be45aa475e3b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromNode.json @@ -18,4 +18,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromTask.json index 0c0357200759..2cd2538cb030 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromTask.json @@ -18,4 +18,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromNode.json index c288aac6f936..c9c8fd4490ba 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromNode.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromTask.json index 67afdc700b58..4de9848b1b68 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromTask.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromNode.json index 4a6f4653c3d7..ecaf1e795404 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromNode.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromTask.json index 9db91ee11e99..3f27c84a8167 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromTask.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Basic.json index c4b180849a6c..2b92c321b360 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Basic.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Complex.json index 3ce77106f3e9..ccfd2defd8b1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Complex.json @@ -36,7 +36,7 @@ "retentionTime": "PT1H" }, "killJobOnCompletion": false, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -77,7 +77,7 @@ "value": "myvalue" } ], - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "admin" @@ -119,4 +119,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDelete.json index 195af6003972..e0dca52fd8b8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDisable.json index 893572f83e0d..547b449f0d83 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDisable.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobEnable.json index 195af6003972..e0dca52fd8b8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobEnable.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGet.json index 07e99da8bb55..8e5e624b4769 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGet.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetLifetimeStatistics.json index 85ca98194004..eb39fdb867b7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetLifetimeStatistics.json @@ -8,7 +8,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimejobstats", + "url": "https://account.region.batch.core.windows.net/lifetimejobstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "userCPUTime": "PT0S", @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetTaskCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetTaskCounts.json index 673348fe36ac..dff27f89c129 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetTaskCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetTaskCounts.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobList.json index 4aa7bc3f765d..ff159ab5ce2b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobList.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListFromJobSchedule.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListFromJobSchedule.json index 5ed8941f2850..a5721761fada 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListFromJobSchedule.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListFromJobSchedule.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListPreparationAndReleaseTaskStatus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListPreparationAndReleaseTaskStatus.json index 8c30d468df26..caaa1c2e8f03 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListPreparationAndReleaseTaskStatus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListPreparationAndReleaseTaskStatus.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobPatch.json index 9186a99eb208..cd7b8c3e746c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobPatch.json @@ -6,13 +6,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "jobPatchParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -21,4 +21,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Basic.json index 060432614ae4..d7e55126cce8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Basic.json @@ -7,7 +7,7 @@ "cloudJobSchedule": { "id": "jobScheduleId", "schedule": { - "recurrenceInterval":"PT5M" + "recurrenceInterval": "PT5M" }, "jobSpecification": { "poolInfo": { @@ -21,4 +21,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Complex.json index 2a9db507460e..6f858e2d8bc2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Complex.json @@ -127,4 +127,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDelete.json index b4d4163f03e3..86589d7a3c08 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDisable.json index 6f6837c30f82..7744cf2a9928 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDisable.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleEnable.json index 6f6837c30f82..7744cf2a9928 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleEnable.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleExists.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleExists.json index 0273954f790b..18943ed19b7f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleExists.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleExists.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleGet.json index cf803fe831fe..daadeeb96849 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleGet.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleList.json index cb4f38b93e26..29d17dc117ad 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleList.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobSchedulePatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobSchedulePatch.json index 240c02634460..6294172fc3e3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobSchedulePatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobSchedulePatch.json @@ -27,4 +27,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleTerminate.json index b4d4163f03e3..86589d7a3c08 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleTerminate.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleUpdate.json index 5a93b214b45e..b58158542758 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleUpdate.json @@ -27,4 +27,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobTerminate.json index cdbc905f55c6..6d7af0e96849 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobTerminate.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobUpdate.json index ccc269c3f5aa..9a5cc9953560 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobUpdate.json @@ -6,13 +6,13 @@ "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "jobUpdateParameter": { - "priority":100, + "priority": 100, "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":-1 + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": -1 }, "poolInfo": { - "poolId":"poolId" + "poolId": "poolId" } } }, @@ -21,4 +21,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeAddUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeAddUser.json index 301acc8bda81..ba3776b4a0d1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeAddUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeAddUser.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDeleteUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDeleteUser.json index 1f4748dd1ebf..efbff676cc5b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDeleteUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDeleteUser.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDisableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDisableScheduling.json index 92758d8a1270..646658e26e96 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDisableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDisableScheduling.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeEnableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeEnableScheduling.json index 431f98c74d0c..d4d56b7f36d6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeEnableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeEnableScheduling.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteDesktop.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteDesktop.json index a10bd7b39dcd..65f3de3c1e45 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteDesktop.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteDesktop.json @@ -12,4 +12,4 @@ "body": "This is actually a byte stream. This request/response is being presented as a string for readability in the example" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteLoginSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteLoginSettings.json index 7017b29190af..b6fbd97c8687 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteLoginSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteLoginSettings.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGet_Basic.json index 66ded2865e78..3c4e723f9c3d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGet_Basic.json @@ -26,7 +26,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeList.json index 1271434a8a29..1d9a1ad780b6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeList.json @@ -27,7 +27,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -65,7 +65,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -103,7 +103,7 @@ "isDedicated": true, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -128,4 +128,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReboot.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReboot.json index 12d98b92b160..ba1a02254d67 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReboot.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReboot.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReimage.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReimage.json index 2bd8e9591f77..f176f74ce1ad 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReimage.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReimage.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUpdateUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUpdateUser.json index 9e339b50ae91..04bfa6f28747 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUpdateUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUpdateUser.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUploadBatchServiceLogs.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUploadBatchServiceLogs.json index ab8ac725e3a1..5935d43526dd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUploadBatchServiceLogs.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUploadBatchServiceLogs.json @@ -14,9 +14,9 @@ "responses": { "200": { "body": { - "virtualDirectoryName": "poolId/tvm-1695681911-1-20161121t182739z/0795539d-82fe-48e3-bbff-2964905b6de0", - "numberOfFilesUploaded": 8 + "virtualDirectoryName": "poolId/tvm-1695681911-1-20161121t182739z/0795539d-82fe-48e3-bbff-2964905b6de0", + "numberOfFilesUploaded": 8 } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_CloudServiceConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_CloudServiceConfiguration.json index 20fcf4d11eab..e00c16cfa6a2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_CloudServiceConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_CloudServiceConfiguration.json @@ -10,19 +10,21 @@ "cloudServiceConfiguration": { "osFamily": "4" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -32,4 +34,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfiguration.json index b1c0f534a9ad..4202caceabe0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfiguration.json @@ -15,19 +15,21 @@ }, "nodeAgentSKUId": "batch.node.ubuntu 16.04" }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false, - "enableInterNodeCommunication":true, - "metadata": [ { - "name":"myproperty", - "value":"myvalue" - } ] + "enableAutoScale": false, + "enableInterNodeCommunication": true, + "metadata": [ + { + "name": "myproperty", + "value": "myvalue" + } + ] } }, "responses": { @@ -37,4 +39,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json index 7aee5400dba7..e95ec3c93660 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json @@ -21,14 +21,14 @@ ] } }, - "resizeTimeout":"PT15M", - "targetDedicatedNodes":5, - "targetLowPriorityNodes":0, - "maxTasksPerNode":3, + "resizeTimeout": "PT15M", + "targetDedicatedNodes": 5, + "targetLowPriorityNodes": 0, + "maxTasksPerNode": 3, "taskSchedulingPolicy": { - "nodeFillType":"spread" + "nodeFillType": "spread" }, - "enableAutoScale":false + "enableAutoScale": false } }, "responses": { @@ -38,4 +38,4 @@ "Last-Modified": "Fri, 17 Feb 2017 00:00:00 GMT" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDelete.json index d702f0043779..ff643c4540d9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDelete.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDisableAutoScale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDisableAutoScale.json index 75710ee0b32f..28eab2d0df99 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDisableAutoScale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDisableAutoScale.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEnableAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEnableAutoscale.json index a13b1ded3e45..8668711129a6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEnableAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEnableAutoscale.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEvaluateAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEvaluateAutoscale.json index 1e60ec6235c4..6e75947cbf7e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEvaluateAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEvaluateAutoscale.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolExists.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolExists.json index d287ca753f25..d6378baa7a71 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolExists.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolExists.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGetLifetimeStatistics.json index 7269c1ec701c..2f58faa4406f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGetLifetimeStatistics.json @@ -8,7 +8,7 @@ "responses": { "200": { "body": { - "url":"https://account.region.batch.core.windows.net/lifetimepoolstats", + "url": "https://account.region.batch.core.windows.net/lifetimepoolstats", "startTime": "2014-08-01T18:30:00.4345729Z", "lastUpdateTime": "2014-08-04T18:30:00.4345729Z", "usageStats": { @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGet_Basic.json index 82c4186934e2..d0817e8681b3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGet_Basic.json @@ -28,7 +28,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "/bin/bash -c 'echo start task'", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolListUsageMetrics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolListUsageMetrics.json index b56637082efa..fa7d0be48b1f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolListUsageMetrics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolListUsageMetrics.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolList_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolList_Basic.json index 4280822cc03e..cb275eb3d16b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolList_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolList_Basic.json @@ -29,7 +29,7 @@ "enableInterNodeCommunication": false, "startTask": { "commandLine": "cmd /c echo hello", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -51,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolPatch.json index 066aff4650b6..a0486b7f1cd7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolPatch.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolRemoveNodes.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolRemoveNodes.json index 2ab4f7ace56c..81e45b7c6085 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolRemoveNodes.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolRemoveNodes.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolResize.json index 9fac0a0ea3e5..c37e835f3d28 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolResize.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolStopResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolStopResize.json index d702f0043779..ff643c4540d9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolStopResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolStopResize.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolUpdate.json index 757c3fb26f6c..07ebf46abd1a 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolUpdate.json @@ -19,4 +19,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Basic.json index c1c48dfe4b40..1403dcd9dda0 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Basic.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Complex.json index c4ba526ccb19..b57c15a91dfd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Complex.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_Basic.json index f4d85676fb3f..aad7bafdf277 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_Basic.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ContainerSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ContainerSettings.json index 0d0defeb465b..113309626104 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ContainerSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ContainerSettings.json @@ -12,7 +12,7 @@ "imageName": "ubuntu", "containerRunOptions": "--rm" }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -25,4 +25,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ExitConditions.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ExitConditions.json index 34e4c3e73258..107258def44d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ExitConditions.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ExitConditions.json @@ -19,7 +19,7 @@ } ] }, - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -32,4 +32,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskDelete.json index ee980baf06b6..5cf7b99e97cd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskDelete.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskGet.json index 9313dc107d13..48c0ddbbe54b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskGet.json @@ -18,7 +18,7 @@ "state": "active", "stateTransitionTime": "2016-09-06T06:59:15.1161429Z", "commandLine": "cmd /c hostname", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskList.json index 7661f785a4c6..48c51a2a54bd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskList.json @@ -19,7 +19,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.4733476Z", "commandLine": "cmd /c echo task1", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -44,7 +44,7 @@ "state": "active", "stateTransitionTime": "2016-11-21T22:43:31.6736345Z", "commandLine": "cmd /c echo task2", - "userIdentity":{ + "userIdentity": { "autoUser": { "scope": "task", "elevationLevel": "nonadmin" @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskListSubtasks.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskListSubtasks.json index 95e13e29f647..06bb1738a049 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskListSubtasks.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskListSubtasks.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskReactivate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskReactivate.json index 0a41a8e6356e..e028e9bda240 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskReactivate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskReactivate.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskTerminate.json index 0a41a8e6356e..e028e9bda240 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskTerminate.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskUpdate.json index 1bfcc5f4df2d..50f8e9f8f973 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskUpdate.json @@ -8,9 +8,9 @@ "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "taskUpdateParameter": { "constraints": { - "maxWallClockTime":"PT1H", - "maxTaskRetryCount":3, - "retentionTime":"PT1H" + "maxWallClockTime": "PT1H", + "maxTaskRetryCount": 3, + "retentionTime": "PT1H" } } }, @@ -19,4 +19,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2015-12-01/BatchManagement.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2015-12-01/BatchManagement.json index bbd229260801..c59da2b7c3e1 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2015-12-01/BatchManagement.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2015-12-01/BatchManagement.json @@ -1448,7 +1448,7 @@ "x-ms-azure-resource": true }, "CloudError": { - "x-ms-external" : true, + "x-ms-external": true, "properties": { "code": { "type": "string", @@ -1480,7 +1480,7 @@ "required": true, "type": "string", "description": "A unique identifier of a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." - }, + }, "ApiVersionParameter": { "name": "api-version", "in": "query", @@ -1489,4 +1489,4 @@ "description": "The API version to be used with the HTTP request." } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/BatchManagement.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/BatchManagement.json index 6e41d31d955a..75ea247cd86e 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/BatchManagement.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/BatchManagement.json @@ -43,8 +43,12 @@ ], "operationId": "BatchAccount_Create", "x-ms-examples": { - "BatchAccountCreate_Default": { "$ref": "./examples/BatchAccountCreate_Default.json" }, - "BatchAccountCreate_BYOS": { "$ref": "./examples/BatchAccountCreate_BYOS.json" } + "BatchAccountCreate_Default": { + "$ref": "./examples/BatchAccountCreate_Default.json" + }, + "BatchAccountCreate_BYOS": { + "$ref": "./examples/BatchAccountCreate_BYOS.json" + } }, "description": "Creates a new Batch account with the specified parameters. Existing accounts cannot be updated with this API and should instead be updated with the Update Batch Account API.", "parameters": [ @@ -174,7 +178,9 @@ ], "operationId": "BatchAccount_Delete", "x-ms-examples": { - "BatchAccountDelete": { "$ref": "./examples/BatchAccountDelete.json" } + "BatchAccountDelete": { + "$ref": "./examples/BatchAccountDelete.json" + } }, "description": "Deletes the specified Batch account.", "parameters": [ @@ -236,7 +242,9 @@ ], "operationId": "BatchAccount_Get", "x-ms-examples": { - "BatchAccountGet": { "$ref": "./examples/BatchAccountGet.json" } + "BatchAccountGet": { + "$ref": "./examples/BatchAccountGet.json" + } }, "description": "Gets information about the specified Batch account.", "parameters": [ diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountCreate_BYOS.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountCreate_BYOS.json index 64f64b0de20e..3defd1fa06eb 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountCreate_BYOS.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountCreate_BYOS.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountCreate_Default.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountCreate_Default.json index ed46494d435b..12946a50293d 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountCreate_Default.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountCreate_Default.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountDelete.json index 23aaea5ca59d..0c3b19688460 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountDelete.json @@ -9,4 +9,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountGet.json index af2c0d101525..3078a08e3520 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-01-01/examples/BatchAccountGet.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/BatchManagement.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/BatchManagement.json index 4b95189fa3d9..038d69370f86 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/BatchManagement.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/BatchManagement.json @@ -43,8 +43,12 @@ ], "operationId": "BatchAccount_Create", "x-ms-examples": { - "BatchAccountCreate_Default": { "$ref": "./examples/BatchAccountCreate_Default.json" }, - "BatchAccountCreate_BYOS": { "$ref": "./examples/BatchAccountCreate_BYOS.json" } + "BatchAccountCreate_Default": { + "$ref": "./examples/BatchAccountCreate_Default.json" + }, + "BatchAccountCreate_BYOS": { + "$ref": "./examples/BatchAccountCreate_BYOS.json" + } }, "description": "Creates a new Batch account with the specified parameters. Existing accounts cannot be updated with this API and should instead be updated with the Update Batch Account API.", "parameters": [ @@ -113,7 +117,9 @@ ], "operationId": "BatchAccount_Update", "x-ms-examples": { - "BatchAccountUpdate": { "$ref": "./examples/BatchAccountUpdate.json" } + "BatchAccountUpdate": { + "$ref": "./examples/BatchAccountUpdate.json" + } }, "description": "Updates the properties of an existing Batch account.", "parameters": [ @@ -160,7 +166,9 @@ ], "operationId": "BatchAccount_Delete", "x-ms-examples": { - "BatchAccountDelete": { "$ref": "./examples/BatchAccountDelete.json" } + "BatchAccountDelete": { + "$ref": "./examples/BatchAccountDelete.json" + } }, "description": "Deletes the specified Batch account.", "parameters": [ @@ -213,7 +221,9 @@ ], "operationId": "BatchAccount_Get", "x-ms-examples": { - "BatchAccountGet": { "$ref": "./examples/BatchAccountGet.json" } + "BatchAccountGet": { + "$ref": "./examples/BatchAccountGet.json" + } }, "description": "Gets information about the specified Batch account.", "parameters": [ @@ -253,7 +263,9 @@ ], "operationId": "BatchAccount_List", "x-ms-examples": { - "BatchAccountList": { "$ref": "./examples/BatchAccountList.json" } + "BatchAccountList": { + "$ref": "./examples/BatchAccountList.json" + } }, "description": "Gets information about the Batch accounts associated with the subscription.", "parameters": [ @@ -290,7 +302,9 @@ ], "operationId": "BatchAccount_ListByResourceGroup", "x-ms-examples": { - "BatchAccountListByResourceGroup": { "$ref": "./examples/BatchAccountListByResourceGroup.json" } + "BatchAccountListByResourceGroup": { + "$ref": "./examples/BatchAccountListByResourceGroup.json" + } }, "description": "Gets information about the Batch accounts associated with the specified resource group.", "parameters": [ @@ -364,7 +378,9 @@ ], "operationId": "BatchAccount_RegenerateKey", "x-ms-examples": { - "BatchAccountRegenerateKey": { "$ref": "./examples/BatchAccountRegenerateKey.json" } + "BatchAccountRegenerateKey": { + "$ref": "./examples/BatchAccountRegenerateKey.json" + } }, "description": "Regenerates the specified account key for the Batch account.", "parameters": [ @@ -413,7 +429,9 @@ ], "operationId": "BatchAccount_GetKeys", "x-ms-examples": { - "BatchAccountGetKeys": { "$ref": "./examples/BatchAccountGetKeys.json" } + "BatchAccountGetKeys": { + "$ref": "./examples/BatchAccountGetKeys.json" + } }, "summary": "Gets the account keys for the specified Batch account.", "description": "This operation applies only to Batch accounts created with a poolAllocationMode of 'BatchService'. If the Batch account was created with a poolAllocationMode of 'UserSubscription', clients cannot use access to keys to authenticate, and must use Azure Active Directory instead. In this case, getting the keys will fail.", @@ -887,7 +905,9 @@ ], "operationId": "Location_GetQuotas", "x-ms-examples": { - "LocationGetQuotas": { "$ref": "./examples/LocationGetQuotas.json" } + "LocationGetQuotas": { + "$ref": "./examples/LocationGetQuotas.json" + } }, "description": "Gets the Batch service quotas for the specified subscription at the given location.", "parameters": [ @@ -930,7 +950,7 @@ "description": "Lists available operations for the Microsoft.Batch provider", "parameters": [ { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -957,8 +977,12 @@ "operationId": "Location_CheckNameAvailability", "description": "Checks whether the Batch account name is available in the specified region.", "x-ms-examples": { - "LocationCheckNameAvailability_Available": { "$ref": "./examples/LocationCheckNameAvailability_Available.json" }, - "LocationCheckNameAvailability_AlreadyExists": { "$ref": "./examples/LocationCheckNameAvailability_AlreadyExists.json" } + "LocationCheckNameAvailability_Available": { + "$ref": "./examples/LocationCheckNameAvailability_Available.json" + }, + "LocationCheckNameAvailability_AlreadyExists": { + "$ref": "./examples/LocationCheckNameAvailability_AlreadyExists.json" + } }, "parameters": [ { @@ -1530,7 +1554,7 @@ } }, "OperationListResult": { - "title": "Result of the request to list REST API operations. It contains a list of operations and a URL nextLink to get the next set of results.", + "title": "Result of the request to list REST API operations. It contains a list of operations and a URL nextLink to get the next set of results.", "properties": { "value": { "type": "array", @@ -1553,7 +1577,9 @@ }, "type": { "type": "string", - "enum": [ "Microsoft.Batch/batchAccounts" ], + "enum": [ + "Microsoft.Batch/batchAccounts" + ], "x-ms-enum": { "name": "Type", "modelAsString": false @@ -1610,7 +1636,7 @@ "required": true, "type": "string", "description": "The API version to be used with the HTTP request." - }, + }, "ResourceGroupNameParameter": { "name": "resourceGroupName", "in": "path", diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountCreate_BYOS.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountCreate_BYOS.json index 184c1983f33f..b792d762f1b4 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountCreate_BYOS.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountCreate_BYOS.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountCreate_Default.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountCreate_Default.json index d40b7dc0e4f5..71e54cb6e7f3 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountCreate_Default.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountCreate_Default.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountDelete.json index 96b4054b31ba..9587bf4acee7 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountGet.json index 04449e59170c..4090b92fb131 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountGet.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountGetKeys.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountGetKeys.json index 96115b5df174..d6f83265bdb5 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountGetKeys.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountGetKeys.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountList.json index c58fed22cbe7..c3e9ed29f21f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountList.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountListByResourceGroup.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountListByResourceGroup.json index 1ebffb0dd020..7734501b03b1 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountListByResourceGroup.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountListByResourceGroup.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountRegenerateKey.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountRegenerateKey.json index a0ee4ba665a3..7438e8272d61 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountRegenerateKey.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountRegenerateKey.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountUpdate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountUpdate.json index 6b9a967554c0..3ec92d8f2179 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountUpdate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/BatchAccountUpdate.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationCheckNameAvailability_AlreadyExists.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationCheckNameAvailability_AlreadyExists.json index 94eb5ce5e42e..2de4c0ce7acd 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationCheckNameAvailability_AlreadyExists.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationCheckNameAvailability_AlreadyExists.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationCheckNameAvailability_Available.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationCheckNameAvailability_Available.json index c1dbd40f565c..9db9c7979263 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationCheckNameAvailability_Available.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationCheckNameAvailability_Available.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationGetQuotas.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationGetQuotas.json index 591e38a9b0c5..39bd69be968b 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationGetQuotas.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-05-01/examples/LocationGetQuotas.json @@ -11,4 +11,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/BatchManagement.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/BatchManagement.json index 8973929eee8b..18743ad61765 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/BatchManagement.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/BatchManagement.json @@ -43,8 +43,12 @@ ], "operationId": "BatchAccount_Create", "x-ms-examples": { - "BatchAccountCreate_Default": { "$ref": "./examples/BatchAccountCreate_Default.json" }, - "BatchAccountCreate_BYOS": { "$ref": "./examples/BatchAccountCreate_BYOS.json" } + "BatchAccountCreate_Default": { + "$ref": "./examples/BatchAccountCreate_Default.json" + }, + "BatchAccountCreate_BYOS": { + "$ref": "./examples/BatchAccountCreate_BYOS.json" + } }, "description": "Creates a new Batch account with the specified parameters. Existing accounts cannot be updated with this API and should instead be updated with the Update Batch Account API.", "parameters": [ @@ -113,7 +117,9 @@ ], "operationId": "BatchAccount_Update", "x-ms-examples": { - "BatchAccountUpdate": { "$ref": "./examples/BatchAccountUpdate.json" } + "BatchAccountUpdate": { + "$ref": "./examples/BatchAccountUpdate.json" + } }, "description": "Updates the properties of an existing Batch account.", "parameters": [ @@ -160,7 +166,9 @@ ], "operationId": "BatchAccount_Delete", "x-ms-examples": { - "BatchAccountDelete": { "$ref": "./examples/BatchAccountDelete.json" } + "BatchAccountDelete": { + "$ref": "./examples/BatchAccountDelete.json" + } }, "description": "Deletes the specified Batch account.", "parameters": [ @@ -213,7 +221,9 @@ ], "operationId": "BatchAccount_Get", "x-ms-examples": { - "BatchAccountGet": { "$ref": "./examples/BatchAccountGet.json" } + "BatchAccountGet": { + "$ref": "./examples/BatchAccountGet.json" + } }, "description": "Gets information about the specified Batch account.", "parameters": [ @@ -253,7 +263,9 @@ ], "operationId": "BatchAccount_List", "x-ms-examples": { - "BatchAccountList": { "$ref": "./examples/BatchAccountList.json" } + "BatchAccountList": { + "$ref": "./examples/BatchAccountList.json" + } }, "description": "Gets information about the Batch accounts associated with the subscription.", "parameters": [ @@ -290,7 +302,9 @@ ], "operationId": "BatchAccount_ListByResourceGroup", "x-ms-examples": { - "BatchAccountListByResourceGroup": { "$ref": "./examples/BatchAccountListByResourceGroup.json" } + "BatchAccountListByResourceGroup": { + "$ref": "./examples/BatchAccountListByResourceGroup.json" + } }, "description": "Gets information about the Batch accounts associated with the specified resource group.", "parameters": [ @@ -330,7 +344,9 @@ ], "operationId": "BatchAccount_SynchronizeAutoStorageKeys", "x-ms-examples": { - "BatchAccountSynchronizeAutoStorageKeys": { "$ref": "./examples/BatchAccountSynchronizeAutoStorageKeys.json" } + "BatchAccountSynchronizeAutoStorageKeys": { + "$ref": "./examples/BatchAccountSynchronizeAutoStorageKeys.json" + } }, "description": "Synchronizes access keys for the auto-storage account configured for the specified Batch account.", "parameters": [ @@ -367,7 +383,9 @@ ], "operationId": "BatchAccount_RegenerateKey", "x-ms-examples": { - "BatchAccountRegenerateKey": { "$ref": "./examples/BatchAccountRegenerateKey.json" } + "BatchAccountRegenerateKey": { + "$ref": "./examples/BatchAccountRegenerateKey.json" + } }, "description": "Regenerates the specified account key for the Batch account.", "parameters": [ @@ -416,7 +434,9 @@ ], "operationId": "BatchAccount_GetKeys", "x-ms-examples": { - "BatchAccountGetKeys": { "$ref": "./examples/BatchAccountGetKeys.json" } + "BatchAccountGetKeys": { + "$ref": "./examples/BatchAccountGetKeys.json" + } }, "summary": "Gets the account keys for the specified Batch account.", "description": "This operation applies only to Batch accounts created with a poolAllocationMode of 'BatchService'. If the Batch account was created with a poolAllocationMode of 'UserSubscription', clients cannot use access to keys to authenticate, and must use Azure Active Directory instead. In this case, getting the keys will fail.", @@ -457,7 +477,9 @@ ], "operationId": "ApplicationPackage_Activate", "x-ms-examples": { - "ApplicationPackageActivate": { "$ref": "./examples/ApplicationPackageActivate.json" } + "ApplicationPackageActivate": { + "$ref": "./examples/ApplicationPackageActivate.json" + } }, "description": "Activates the specified application package.", "parameters": [ @@ -517,7 +539,9 @@ ], "operationId": "Application_Create", "x-ms-examples": { - "ApplicationCreate": { "$ref": "./examples/ApplicationCreate.json" } + "ApplicationCreate": { + "$ref": "./examples/ApplicationCreate.json" + } }, "description": "Adds an application to the specified Batch account.", "parameters": [ @@ -571,7 +595,9 @@ ], "operationId": "Application_Delete", "x-ms-examples": { - "ApplicationDelete": { "$ref": "./examples/ApplicationDelete.json" } + "ApplicationDelete": { + "$ref": "./examples/ApplicationDelete.json" + } }, "description": "Deletes an application.", "parameters": [ @@ -613,7 +639,9 @@ ], "operationId": "Application_Get", "x-ms-examples": { - "ApplicationGet": { "$ref": "./examples/ApplicationGet.json" } + "ApplicationGet": { + "$ref": "./examples/ApplicationGet.json" + } }, "description": "Gets information about the specified application.", "parameters": [ @@ -658,7 +686,9 @@ ], "operationId": "Application_Update", "x-ms-examples": { - "ApplicationUpdate": { "$ref": "./examples/ApplicationUpdate.json" } + "ApplicationUpdate": { + "$ref": "./examples/ApplicationUpdate.json" + } }, "description": "Updates settings for the specified application.", "parameters": [ @@ -711,7 +741,9 @@ ], "operationId": "ApplicationPackage_Create", "x-ms-examples": { - "ApplicationPackageCreate": { "$ref": "./examples/ApplicationPackageCreate.json" } + "ApplicationPackageCreate": { + "$ref": "./examples/ApplicationPackageCreate.json" + } }, "description": "Creates an application package record.", "parameters": [ @@ -763,7 +795,9 @@ ], "operationId": "ApplicationPackage_Delete", "x-ms-examples": { - "ApplicationPackageDelete": { "$ref": "./examples/ApplicationPackageDelete.json" } + "ApplicationPackageDelete": { + "$ref": "./examples/ApplicationPackageDelete.json" + } }, "description": "Deletes an application package record and its associated binary file.", "parameters": [ @@ -812,7 +846,9 @@ ], "operationId": "ApplicationPackage_Get", "x-ms-examples": { - "ApplicationPackageGet": { "$ref": "./examples/ApplicationPackageGet.json" } + "ApplicationPackageGet": { + "$ref": "./examples/ApplicationPackageGet.json" + } }, "description": "Gets information about the specified application package.", "parameters": [ @@ -866,7 +902,9 @@ ], "operationId": "Application_List", "x-ms-examples": { - "ApplicationList": { "$ref": "./examples/ApplicationList.json" } + "ApplicationList": { + "$ref": "./examples/ApplicationList.json" + } }, "description": "Lists all of the applications in the specified account.", "parameters": [ @@ -917,7 +955,9 @@ ], "operationId": "Location_GetQuotas", "x-ms-examples": { - "LocationGetQuotas": { "$ref": "./examples/LocationGetQuotas.json" } + "LocationGetQuotas": { + "$ref": "./examples/LocationGetQuotas.json" + } }, "description": "Gets the Batch service quotas for the specified subscription at the given location.", "parameters": [ @@ -987,8 +1027,12 @@ "operationId": "Location_CheckNameAvailability", "description": "Checks whether the Batch account name is available in the specified region.", "x-ms-examples": { - "LocationCheckNameAvailability_Available": { "$ref": "./examples/LocationCheckNameAvailability_Available.json" }, - "LocationCheckNameAvailability_AlreadyExists": { "$ref": "./examples/LocationCheckNameAvailability_AlreadyExists.json" } + "LocationCheckNameAvailability_Available": { + "$ref": "./examples/LocationCheckNameAvailability_Available.json" + }, + "LocationCheckNameAvailability_AlreadyExists": { + "$ref": "./examples/LocationCheckNameAvailability_AlreadyExists.json" + } }, "parameters": [ { @@ -1038,8 +1082,12 @@ "operationId": "Certificate_ListByBatchAccount", "description": "Lists all of the certificates in the specified account.", "x-ms-examples": { - "ListCertificates": { "$ref": "./examples/CertificateList.json" }, - "ListCertificates - Filter and Select": { "$ref": "./examples/CertificateListWithFilter.json" } + "ListCertificates": { + "$ref": "./examples/CertificateList.json" + }, + "ListCertificates - Filter and Select": { + "$ref": "./examples/CertificateListWithFilter.json" + } }, "parameters": [ { @@ -1104,9 +1152,15 @@ "operationId": "Certificate_Create", "description": "Creates a new certificate inside the specified account.", "x-ms-examples": { - "CreateCertificate - Minimal Pfx": { "$ref": "./examples/CertificateCreate_Minimal.json" }, - "CreateCertificate - Minimal Cer": { "$ref": "./examples/CertificateCreate_MinimalCer.json" }, - "CreateCertificate - Full": { "$ref": "./examples/CertificateCreate_Full.json" } + "CreateCertificate - Minimal Pfx": { + "$ref": "./examples/CertificateCreate_Minimal.json" + }, + "CreateCertificate - Minimal Cer": { + "$ref": "./examples/CertificateCreate_MinimalCer.json" + }, + "CreateCertificate - Full": { + "$ref": "./examples/CertificateCreate_Full.json" + } }, "parameters": [ { @@ -1177,7 +1231,9 @@ "operationId": "Certificate_Update", "description": "Updates the properties of an existing certificate.", "x-ms-examples": { - "UpdateCertificate": { "$ref": "./examples/CertificateUpdate.json" } + "UpdateCertificate": { + "$ref": "./examples/CertificateUpdate.json" + } }, "parameters": [ { @@ -1240,7 +1296,9 @@ "operationId": "Certificate_Delete", "description": "Deletes the specified certificate.", "x-ms-examples": { - "CertificateDelete": { "$ref": "./examples/CertificateDelete.json" } + "CertificateDelete": { + "$ref": "./examples/CertificateDelete.json" + } }, "parameters": [ { @@ -1296,8 +1354,12 @@ "operationId": "Certificate_Get", "description": "Gets information about the specified certificate.", "x-ms-examples": { - "Get Certificate": { "$ref": "./examples/CertificateGet.json" }, - "Get Certificate with Deletion Error": { "$ref": "./examples/CertificateGetWithDeletionError.json" } + "Get Certificate": { + "$ref": "./examples/CertificateGet.json" + }, + "Get Certificate with Deletion Error": { + "$ref": "./examples/CertificateGetWithDeletionError.json" + } }, "parameters": [ { @@ -1347,7 +1409,9 @@ "summary": "Cancels a failed deletion of a certificate from the specified account.", "description": "If you try to delete a certificate that is being used by a pool or compute node, the status of the certificate changes to deleteFailed. If you decide that you want to continue using the certificate, you can use this operation to set the status of the certificate back to active. If you intend to delete the certificate, you do not need to run this operation after the deletion failed. You must make sure that the certificate is not being used by any resources, and then you can try again to delete the certificate.", "x-ms-examples": { - "CertificateCancelDeletion": { "$ref": "./examples/CertificateCancelDeletion.json" } + "CertificateCancelDeletion": { + "$ref": "./examples/CertificateCancelDeletion.json" + } }, "parameters": [ { @@ -1396,8 +1460,12 @@ "operationId": "Pool_ListByBatchAccount", "description": "Lists all of the pools in the specified account.", "x-ms-examples": { - "ListPool": { "$ref": "./examples/PoolList.json" }, - "ListPoolWithFilter": { "$ref": "./examples/PoolListWithFilter.json" } + "ListPool": { + "$ref": "./examples/PoolList.json" + }, + "ListPoolWithFilter": { + "$ref": "./examples/PoolListWithFilter.json" + } }, "parameters": [ { @@ -1462,11 +1530,21 @@ "operationId": "Pool_Create", "description": "Creates a new pool inside the specified account.", "x-ms-examples": { - "CreatePool - Minimal CloudServiceConfiguration": { "$ref": "./examples/PoolCreate_MinimalCloudServiceConfiguration.json" }, - "CreatePool - Minimal VirtualMachineConfiguration": { "$ref": "./examples/PoolCreate_MinimalVirtualMachineConfiguration.json" }, - "CreatePool - Full Example": { "$ref": "./examples/PoolCreate_FullExample.json" }, - "CreatePool - Custom Image": { "$ref": "./examples/PoolCreate_CustomImage.json" }, - "CreatePool - Full VirtualMachineConfiguration": { "$ref": "./examples/PoolCreate_VirtualMachineConfiguration.json" } + "CreatePool - Minimal CloudServiceConfiguration": { + "$ref": "./examples/PoolCreate_MinimalCloudServiceConfiguration.json" + }, + "CreatePool - Minimal VirtualMachineConfiguration": { + "$ref": "./examples/PoolCreate_MinimalVirtualMachineConfiguration.json" + }, + "CreatePool - Full Example": { + "$ref": "./examples/PoolCreate_FullExample.json" + }, + "CreatePool - Custom Image": { + "$ref": "./examples/PoolCreate_CustomImage.json" + }, + "CreatePool - Full VirtualMachineConfiguration": { + "$ref": "./examples/PoolCreate_VirtualMachineConfiguration.json" + } }, "parameters": [ { @@ -1537,10 +1615,18 @@ "operationId": "Pool_Update", "description": "Updates the properties of an existing pool.", "x-ms-examples": { - "UpdatePool - Resize Pool": { "$ref": "./examples/PoolUpdate_ResizePool.json" }, - "UpdatePool - Enable Autoscale": { "$ref": "./examples/PoolUpdate_EnableAutoScale.json" }, - "UpdatePool - Remove Start Task": { "$ref": "./examples/PoolUpdate_RemoveStartTask.json" }, - "UpdatePool - Other Properties": { "$ref": "./examples/PoolUpdate_OtherProperties.json" } + "UpdatePool - Resize Pool": { + "$ref": "./examples/PoolUpdate_ResizePool.json" + }, + "UpdatePool - Enable Autoscale": { + "$ref": "./examples/PoolUpdate_EnableAutoScale.json" + }, + "UpdatePool - Remove Start Task": { + "$ref": "./examples/PoolUpdate_RemoveStartTask.json" + }, + "UpdatePool - Other Properties": { + "$ref": "./examples/PoolUpdate_OtherProperties.json" + } }, "parameters": [ { @@ -1603,7 +1689,9 @@ "operationId": "Pool_Delete", "description": "Deletes the specified pool.", "x-ms-examples": { - "DeletePool": { "$ref": "./examples/PoolDelete.json" } + "DeletePool": { + "$ref": "./examples/PoolDelete.json" + } }, "parameters": [ { @@ -1659,7 +1747,9 @@ "operationId": "Pool_Get", "description": "Gets information about the specified pool.", "x-ms-examples": { - "GetPool": { "$ref": "./examples/PoolGet.json" } + "GetPool": { + "$ref": "./examples/PoolGet.json" + } }, "parameters": [ { @@ -1708,7 +1798,9 @@ "operationId": "Pool_DisableAutoScale", "description": "Disables automatic scaling for a pool.", "x-ms-examples": { - "Disable AutoScale": { "$ref": "./examples/PoolDisableAutoScale.json" } + "Disable AutoScale": { + "$ref": "./examples/PoolDisableAutoScale.json" + } }, "parameters": [ { @@ -1758,7 +1850,9 @@ "summary": "Stops an ongoing resize operation on the pool.", "description": "This does not restore the pool to its previous state before the resize operation: it only stops any further changes being made, and the pool maintains its current state. After stopping, the pool stabilizes at the number of nodes it was at when the stop operation was done. During the stop operation, the pool allocation state changes first to stopping and then to steady. A resize operation need not be an explicit resize pool request; this API can also be used to halt the initial sizing of the pool when it is created.", "x-ms-examples": { - "StopPoolResize": { "$ref": "./examples/PoolStopResize.json" } + "StopPoolResize": { + "$ref": "./examples/PoolStopResize.json" + } }, "parameters": [ { @@ -2284,7 +2378,7 @@ "thumbprintAlgorithm": { "type": "string", "title": "The algorithm of the certificate thumbprint", - "description": "This must match the first portion of the certificate name. Currently required to be 'SHA1'." + "description": "This must match the first portion of the certificate name. Currently required to be 'SHA1'." }, "thumbprint": { "type": "string", @@ -2389,7 +2483,9 @@ } }, "description": "Certificate properties for create operations", - "required": [ "data" ] + "required": [ + "data" + ] }, "Certificate": { "properties": { @@ -2459,7 +2555,10 @@ "description": "A list of additional details about the error." } }, - "required": [ "code", "message" ], + "required": [ + "code", + "message" + ], "description": "An error response from the Batch service." }, "Pool": { @@ -2696,7 +2795,9 @@ "description": "If omitted, the default value is 15 minutes (PT15M)." } }, - "required": [ "formula" ], + "required": [ + "formula" + ], "title": "AutoScale settings for the pool." }, "FixedScaleSettings": { @@ -2785,7 +2886,9 @@ "description": "Values are:\n\n starttask - The user account under which the start task is run.\n task - The accounts under which job tasks are run.\n remoteuser - The accounts under which users remotely access the node.\n\n You can specify more than one visibility in this collection. The default is all accounts." } }, - "required": [ "id" ], + "required": [ + "id" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool. This must exist inside the same account as the pool." }, "ApplicationPackageReference": { @@ -2801,7 +2904,9 @@ } }, "title": "Link to an application package inside the batch account", - "required": [ "id" ] + "required": [ + "id" + ] }, "ResizeError": { "properties": { @@ -2822,7 +2927,10 @@ } }, "title": "An error that occurred when resizing a pool.", - "required": [ "code", "message" ] + "required": [ + "code", + "message" + ] }, "AutoScaleRunError": { "properties": { @@ -2843,7 +2951,10 @@ } }, "title": "An error that occurred when autoscaling a pool.", - "required": [ "code", "message" ] + "required": [ + "code", + "message" + ] }, "AutoScaleRun": { "properties": { @@ -2862,7 +2973,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": [ "evaluationTime" ], + "required": [ + "evaluationTime" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "VirtualMachineConfiguration": { @@ -2899,7 +3012,10 @@ "description": "This only applies to images that contain the Windows operating system, and should only be used when you hold valid on-premises licenses for the nodes which will be deployed. If omitted, no on-premises licensing discount is applied. Values are:\n\n Windows_Server - The on-premises license is for Windows Server.\n Windows_Client - The on-premises license is for Windows Client.\n" } }, - "required": [ "imageReference", "nodeAgentSkuId" ], + "required": [ + "imageReference", + "nodeAgentSkuId" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "WindowsConfiguration": { @@ -2987,7 +3103,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "LinuxUserConfiguration": { @@ -3033,7 +3151,10 @@ "$ref": "#/definitions/LinuxUserConfiguration" } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user on an Azure Batch node." }, "StartTask": { @@ -3093,7 +3214,10 @@ "description": "This property applies only to files being downloaded to Linux compute nodes. It will be ignored if it is specified for a resourceFile which will be downloaded to a Windows node. If this property is not specified for a Linux node, then a default value of 0770 is applied to the file." } }, - "required": [ "blobSource", "filePath" ], + "required": [ + "blobSource", + "filePath" + ], "title": "A file to be downloaded from Azure blob storage to a compute node." }, "EnvironmentSetting": { @@ -3107,7 +3231,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, "UserIdentity": { @@ -3235,7 +3361,9 @@ "description": "This may differ from targetOSVersion if the pool state is Upgrading. In this case some virtual machines may be on the targetOSVersion and some may be on the currentOSVersion during the upgrade process. Once all virtual machines have upgraded, currentOSVersion is updated to be the same as targetOSVersion." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "MetadataItem": { @@ -3249,7 +3377,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -3304,7 +3435,9 @@ "description": "The maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400." } }, - "required": [ "inboundNatPools" ], + "required": [ + "inboundNatPools" + ], "title": "The endpoint configuration for a pool." }, "InboundNatPool": { @@ -3353,7 +3486,13 @@ } } }, - "required": [ "name", "protocol", "backendPort", "frontendPortRangeStart", "frontendPortRangeEnd" ], + "required": [ + "name", + "protocol", + "backendPort", + "frontendPortRangeStart", + "frontendPortRangeEnd" + ], "title": "A inbound NAT pool that can be used to address specific ports on compute nodes in a Batch pool externally." }, "NetworkSecurityGroupRule": { @@ -3382,7 +3521,11 @@ "description": "Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400." } }, - "required": [ "priority", "access", "sourceAddressPrefix" ], + "required": [ + "priority", + "access", + "sourceAddressPrefix" + ], "title": "A network security group rule to apply to an inbound endpoint." }, "ListPoolsResult": { @@ -3500,7 +3643,9 @@ }, "type": { "type": "string", - "enum": [ "Microsoft.Batch/batchAccounts" ], + "enum": [ + "Microsoft.Batch/batchAccounts" + ], "x-ms-enum": { "name": "Type", "modelAsString": false diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationCreate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationCreate.json index 12e25c7bc563..2b87440d8ab4 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationCreate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationCreate.json @@ -18,4 +18,4 @@ "allowUpdates": false } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationDelete.json index 2c21f73e798d..82924b6330fd 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationDelete.json @@ -9,4 +9,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationGet.json index afa72b016685..8fce07113859 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationGet.json @@ -16,11 +16,11 @@ "version": "1", "state": "active", "format": "zip", - "lastActivationTime":"2017-06-27T18:48:09.9330991Z" + "lastActivationTime": "2017-06-27T18:48:09.9330991Z" } ], "allowUpdates": false, "defaultVersion": "1" } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationList.json index 5505aeb74487..5de3779857ae 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationList.json @@ -39,4 +39,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageActivate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageActivate.json index 2929df616eb5..3d6500dd6758 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageActivate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageActivate.json @@ -13,4 +13,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageCreate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageCreate.json index 3da70733fda3..00377b4a8d2d 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageCreate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageCreate.json @@ -17,4 +17,4 @@ "storageUrlExpiry": "2017-06-27T18:48:09.9330991Z" } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageDelete.json index 64594e7fc59b..75cd8efdbb4f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageDelete.json @@ -10,4 +10,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageGet.json index 4ece56880d3d..a5c2e055a230 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationPackageGet.json @@ -13,7 +13,7 @@ "version": "1", "state": "active", "format": "zip", - "lastActivationTime":"2017-06-27T18:48:09.9330991Z" + "lastActivationTime": "2017-06-27T18:48:09.9330991Z" } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationUpdate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationUpdate.json index 154da2b40d7e..e7b3bbd17373 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationUpdate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/ApplicationUpdate.json @@ -14,4 +14,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountCreate_BYOS.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountCreate_BYOS.json index 2bf50c19d1e5..f2e6257554e0 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountCreate_BYOS.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountCreate_BYOS.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountCreate_Default.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountCreate_Default.json index 8bdde90c6f9c..e4cdf627d50f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountCreate_Default.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountCreate_Default.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountDelete.json index 4b9d997298d8..02bafa442b43 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountGet.json index 1af41189517e..7e5cb7498a9d 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountGet.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountGetKeys.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountGetKeys.json index e1dc77d861a3..f54644dbcbca 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountGetKeys.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountGetKeys.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountList.json index ebf8216233a7..1dcb90c4469f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountList.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountListByResourceGroup.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountListByResourceGroup.json index 994e6b7ae695..fdc8e497e8ac 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountListByResourceGroup.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountListByResourceGroup.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountRegenerateKey.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountRegenerateKey.json index fca4f55fe934..685f9afbf911 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountRegenerateKey.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountRegenerateKey.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountSynchronizeAutoStorageKeys.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountSynchronizeAutoStorageKeys.json index e9b2f050e728..7b76ca7d348a 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountSynchronizeAutoStorageKeys.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountSynchronizeAutoStorageKeys.json @@ -8,4 +8,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountUpdate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountUpdate.json index 2a232c7c8521..6dcffbed10af 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountUpdate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/BatchAccountUpdate.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCancelDeletion.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCancelDeletion.json index 59af619c03b6..3f8f77d2104f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCancelDeletion.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCancelDeletion.json @@ -14,19 +14,19 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", + "type": "Microsoft.Batch/batchAccounts/certificates", "etag": "W/\"0x8D4EDD513C3EDBB\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "previousProvisioningState": "Failed", "previousProvisioningStateTransitionTime": "2017-07-21T00:22:54.3299195Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_Full.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_Full.json index 6752b3613c9d..a541545442c6 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_Full.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_Full.json @@ -7,10 +7,10 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "data":"MIIJsgIBAzCCCW4GCSqGSIb3DQE...", - "password":"KG0UY40e...", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "data": "MIIJsgIBAzCCCW4GCSqGSIb3DQE...", + "password": "KG0UY40e...", "format": "Pfx" } } @@ -23,17 +23,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_Minimal.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_Minimal.json index 4928a822e97f..644603f7f333 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_Minimal.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_Minimal.json @@ -7,8 +7,8 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "data":"MIIJsgIBAzCCCW4GCSqGSIb3DQE...", - "password":"KG0UY40e..." + "data": "MIIJsgIBAzCCCW4GCSqGSIb3DQE...", + "password": "KG0UY40e..." } } }, @@ -20,17 +20,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_MinimalCer.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_MinimalCer.json index ae46d24c4d72..95095926ad69 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_MinimalCer.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateCreate_MinimalCer.json @@ -7,7 +7,7 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "data":"MIICrjCCAZagAwI...", + "data": "MIICrjCCAZagAwI...", "format": "Cer" } } @@ -20,17 +20,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Cer", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateDelete.json index 051d2b0cda0b..688dee7de179 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateDelete.json @@ -7,13 +7,13 @@ "api-version": "2017-09-01" }, "responses": { - "200": { }, + "200": {}, "202": { "headers": { "Retry-After": "15", "Location": "https://management.azure.com/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/sampleacct/certificateOperationResults/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E-8D4EDFF164A11C9?api-version=2017-09-01" } }, - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateGet.json index b3b56ed62b3a..17a44fe5f517 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateGet.json @@ -14,17 +14,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateGetWithDeletionError.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateGetWithDeletionError.json index 2b9467c4814e..2702cb6fe2c8 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateGetWithDeletionError.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateGetWithDeletionError.json @@ -14,17 +14,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Failed", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "previousProvisioningState": "Deleting", - "previousProvisioningStateTransitionTime":"2017-07-21T00:15:25.5625498Z", + "previousProvisioningStateTransitionTime": "2017-07-21T00:15:25.5625498Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI...", + "publicData": "MIICrjCCAZagAwI...", "deleteCertificateError": { "code": "NodesReferencingCertificate", "message": "The specified certificate is being used by the below mentioned node(s)\nRequestId:2dc78afc-b15b-42d2-8c85-39cb61a0799e\nTime:2017-08-28T10:22:52.8633406Z", @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateList.json index 5ed27118a56d..3940d6d4bafa 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateList.json @@ -13,15 +13,15 @@ { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } ], @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateListWithFilter.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateListWithFilter.json index 8a52c0ea3045..4f5ec5ba6a0b 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateListWithFilter.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateListWithFilter.json @@ -14,8 +14,8 @@ { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { "provisioningState": "Failed", "format": "Pfx" @@ -24,8 +24,8 @@ { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-AEB228FFB0BF67A793D61DCE263EBD16949F15A1", "name": "SHA1-AEB228FFB0BF67A793D61DCE263EBD16949F15A1", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118572E0\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118572E0\"", "properties": { "provisioningState": "Failed", "format": "Cer" @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateUpdate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateUpdate.json index 4928a822e97f..644603f7f333 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateUpdate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/CertificateUpdate.json @@ -7,8 +7,8 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "data":"MIIJsgIBAzCCCW4GCSqGSIb3DQE...", - "password":"KG0UY40e..." + "data": "MIIJsgIBAzCCCW4GCSqGSIb3DQE...", + "password": "KG0UY40e..." } } }, @@ -20,17 +20,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationCheckNameAvailability_AlreadyExists.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationCheckNameAvailability_AlreadyExists.json index 76c0749a47fe..e62651d58f64 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationCheckNameAvailability_AlreadyExists.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationCheckNameAvailability_AlreadyExists.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationCheckNameAvailability_Available.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationCheckNameAvailability_Available.json index 752806f214ad..ffd5ebacdc30 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationCheckNameAvailability_Available.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationCheckNameAvailability_Available.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationGetQuotas.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationGetQuotas.json index 42168a1c8f5a..c487baf09cce 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationGetQuotas.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/LocationGetQuotas.json @@ -11,4 +11,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_CustomImage.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_CustomImage.json index bef78e507aff..12151738c65c 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_CustomImage.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_CustomImage.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_FullExample.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_FullExample.json index 6be6e453d602..3e5930304835 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_FullExample.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_FullExample.json @@ -256,4 +256,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json index 7570fb64e068..48771811a628 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json index 0904eda8ec0c..b4f1056355c0 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_VirtualMachineConfiguration.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_VirtualMachineConfiguration.json index 21bd7033c0b6..bd10af725d2d 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_VirtualMachineConfiguration.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolCreate_VirtualMachineConfiguration.json @@ -166,4 +166,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolDelete.json index 294395a43e2b..1cac8719908b 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolDelete.json @@ -7,8 +7,8 @@ "api-version": "2017-09-01" }, "responses": { - "200": { }, - "204": { }, + "200": {}, + "204": {}, "202": { "headers": { "Retry-After": "15", @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolDisableAutoScale.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolDisableAutoScale.json index e91cf7009a55..d1a8271f1af3 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolDisableAutoScale.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolDisableAutoScale.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolGet.json index 0a42c6ff3a21..477ca57b02aa 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolGet.json @@ -145,4 +145,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolList.json index db973fbde6fd..ed40c108a9dd 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolList.json @@ -152,4 +152,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolListWithFilter.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolListWithFilter.json index b702caa5e36c..392848caac4b 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolListWithFilter.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolListWithFilter.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolStopResize.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolStopResize.json index 3e776ba1b4a6..662af874fbd3 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolStopResize.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolStopResize.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_EnableAutoScale.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_EnableAutoScale.json index 032ebdfcbaf2..b373553cccb0 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_EnableAutoScale.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_EnableAutoScale.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_OtherProperties.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_OtherProperties.json index 41eb6f0b70f8..a18dae4a21bd 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_OtherProperties.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_OtherProperties.json @@ -112,4 +112,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_RemoveStartTask.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_RemoveStartTask.json index 07e0c6b576ad..8dfd20d1b02a 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_RemoveStartTask.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_RemoveStartTask.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_ResizePool.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_ResizePool.json index 6d756bb998a1..c9b3cf179f10 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_ResizePool.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2017-09-01/examples/PoolUpdate_ResizePool.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/BatchManagement.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/BatchManagement.json index 1a537f8648b6..8d707a32e74e 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/BatchManagement.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/BatchManagement.json @@ -43,8 +43,12 @@ ], "operationId": "BatchAccount_Create", "x-ms-examples": { - "BatchAccountCreate_Default": { "$ref": "./examples/BatchAccountCreate_Default.json" }, - "BatchAccountCreate_BYOS": { "$ref": "./examples/BatchAccountCreate_BYOS.json" } + "BatchAccountCreate_Default": { + "$ref": "./examples/BatchAccountCreate_Default.json" + }, + "BatchAccountCreate_BYOS": { + "$ref": "./examples/BatchAccountCreate_BYOS.json" + } }, "description": "Creates a new Batch account with the specified parameters. Existing accounts cannot be updated with this API and should instead be updated with the Update Batch Account API.", "parameters": [ @@ -113,7 +117,9 @@ ], "operationId": "BatchAccount_Update", "x-ms-examples": { - "BatchAccountUpdate": { "$ref": "./examples/BatchAccountUpdate.json" } + "BatchAccountUpdate": { + "$ref": "./examples/BatchAccountUpdate.json" + } }, "description": "Updates the properties of an existing Batch account.", "parameters": [ @@ -160,7 +166,9 @@ ], "operationId": "BatchAccount_Delete", "x-ms-examples": { - "BatchAccountDelete": { "$ref": "./examples/BatchAccountDelete.json" } + "BatchAccountDelete": { + "$ref": "./examples/BatchAccountDelete.json" + } }, "description": "Deletes the specified Batch account.", "parameters": [ @@ -213,7 +221,9 @@ ], "operationId": "BatchAccount_Get", "x-ms-examples": { - "BatchAccountGet": { "$ref": "./examples/BatchAccountGet.json" } + "BatchAccountGet": { + "$ref": "./examples/BatchAccountGet.json" + } }, "description": "Gets information about the specified Batch account.", "parameters": [ @@ -253,7 +263,9 @@ ], "operationId": "BatchAccount_List", "x-ms-examples": { - "BatchAccountList": { "$ref": "./examples/BatchAccountList.json" } + "BatchAccountList": { + "$ref": "./examples/BatchAccountList.json" + } }, "description": "Gets information about the Batch accounts associated with the subscription.", "parameters": [ @@ -290,7 +302,9 @@ ], "operationId": "BatchAccount_ListByResourceGroup", "x-ms-examples": { - "BatchAccountListByResourceGroup": { "$ref": "./examples/BatchAccountListByResourceGroup.json" } + "BatchAccountListByResourceGroup": { + "$ref": "./examples/BatchAccountListByResourceGroup.json" + } }, "description": "Gets information about the Batch accounts associated with the specified resource group.", "parameters": [ @@ -330,7 +344,9 @@ ], "operationId": "BatchAccount_SynchronizeAutoStorageKeys", "x-ms-examples": { - "BatchAccountSynchronizeAutoStorageKeys": { "$ref": "./examples/BatchAccountSynchronizeAutoStorageKeys.json" } + "BatchAccountSynchronizeAutoStorageKeys": { + "$ref": "./examples/BatchAccountSynchronizeAutoStorageKeys.json" + } }, "description": "Synchronizes access keys for the auto-storage account configured for the specified Batch account.", "parameters": [ @@ -367,7 +383,9 @@ ], "operationId": "BatchAccount_RegenerateKey", "x-ms-examples": { - "BatchAccountRegenerateKey": { "$ref": "./examples/BatchAccountRegenerateKey.json" } + "BatchAccountRegenerateKey": { + "$ref": "./examples/BatchAccountRegenerateKey.json" + } }, "description": "Regenerates the specified account key for the Batch account.", "parameters": [ @@ -416,7 +434,9 @@ ], "operationId": "BatchAccount_GetKeys", "x-ms-examples": { - "BatchAccountGetKeys": { "$ref": "./examples/BatchAccountGetKeys.json" } + "BatchAccountGetKeys": { + "$ref": "./examples/BatchAccountGetKeys.json" + } }, "summary": "Gets the account keys for the specified Batch account.", "description": "This operation applies only to Batch accounts created with a poolAllocationMode of 'BatchService'. If the Batch account was created with a poolAllocationMode of 'UserSubscription', clients cannot use access to keys to authenticate, and must use Azure Active Directory instead. In this case, getting the keys will fail.", @@ -457,7 +477,9 @@ ], "operationId": "ApplicationPackage_Activate", "x-ms-examples": { - "ApplicationPackageActivate": { "$ref": "./examples/ApplicationPackageActivate.json" } + "ApplicationPackageActivate": { + "$ref": "./examples/ApplicationPackageActivate.json" + } }, "description": "Activates the specified application package.", "parameters": [ @@ -512,7 +534,9 @@ ], "operationId": "Application_Create", "x-ms-examples": { - "ApplicationCreate": { "$ref": "./examples/ApplicationCreate.json" } + "ApplicationCreate": { + "$ref": "./examples/ApplicationCreate.json" + } }, "description": "Adds an application to the specified Batch account.", "parameters": [ @@ -562,7 +586,9 @@ ], "operationId": "Application_Delete", "x-ms-examples": { - "ApplicationDelete": { "$ref": "./examples/ApplicationDelete.json" } + "ApplicationDelete": { + "$ref": "./examples/ApplicationDelete.json" + } }, "description": "Deletes an application.", "parameters": [ @@ -603,7 +629,9 @@ ], "operationId": "Application_Get", "x-ms-examples": { - "ApplicationGet": { "$ref": "./examples/ApplicationGet.json" } + "ApplicationGet": { + "$ref": "./examples/ApplicationGet.json" + } }, "description": "Gets information about the specified application.", "parameters": [ @@ -644,7 +672,9 @@ ], "operationId": "Application_Update", "x-ms-examples": { - "ApplicationUpdate": { "$ref": "./examples/ApplicationUpdate.json" } + "ApplicationUpdate": { + "$ref": "./examples/ApplicationUpdate.json" + } }, "description": "Updates settings for the specified application.", "parameters": [ @@ -696,7 +726,9 @@ ], "operationId": "ApplicationPackage_Create", "x-ms-examples": { - "ApplicationPackageCreate": { "$ref": "./examples/ApplicationPackageCreate.json" } + "ApplicationPackageCreate": { + "$ref": "./examples/ApplicationPackageCreate.json" + } }, "description": "Creates an application package record.", "parameters": [ @@ -749,7 +781,9 @@ ], "operationId": "ApplicationPackage_Delete", "x-ms-examples": { - "ApplicationPackageDelete": { "$ref": "./examples/ApplicationPackageDelete.json" } + "ApplicationPackageDelete": { + "$ref": "./examples/ApplicationPackageDelete.json" + } }, "description": "Deletes an application package record and its associated binary file.", "parameters": [ @@ -793,7 +827,9 @@ ], "operationId": "ApplicationPackage_Get", "x-ms-examples": { - "ApplicationPackageGet": { "$ref": "./examples/ApplicationPackageGet.json" } + "ApplicationPackageGet": { + "$ref": "./examples/ApplicationPackageGet.json" + } }, "description": "Gets information about the specified application package.", "parameters": [ @@ -839,7 +875,9 @@ ], "operationId": "Application_List", "x-ms-examples": { - "ApplicationList": { "$ref": "./examples/ApplicationList.json" } + "ApplicationList": { + "$ref": "./examples/ApplicationList.json" + } }, "description": "Lists all of the applications in the specified account.", "parameters": [ @@ -890,7 +928,9 @@ ], "operationId": "ApplicationPackage_List", "x-ms-examples": { - "ApplicationList": { "$ref": "./examples/ApplicationPackageList.json" } + "ApplicationList": { + "$ref": "./examples/ApplicationPackageList.json" + } }, "description": "Lists all of the application packages in the specified application.", "parameters": [ @@ -944,7 +984,9 @@ ], "operationId": "Location_GetQuotas", "x-ms-examples": { - "LocationGetQuotas": { "$ref": "./examples/LocationGetQuotas.json" } + "LocationGetQuotas": { + "$ref": "./examples/LocationGetQuotas.json" + } }, "description": "Gets the Batch service quotas for the specified subscription at the given location.", "parameters": [ @@ -1014,8 +1056,12 @@ "operationId": "Location_CheckNameAvailability", "description": "Checks whether the Batch account name is available in the specified region.", "x-ms-examples": { - "LocationCheckNameAvailability_Available": { "$ref": "./examples/LocationCheckNameAvailability_Available.json" }, - "LocationCheckNameAvailability_AlreadyExists": { "$ref": "./examples/LocationCheckNameAvailability_AlreadyExists.json" } + "LocationCheckNameAvailability_Available": { + "$ref": "./examples/LocationCheckNameAvailability_Available.json" + }, + "LocationCheckNameAvailability_AlreadyExists": { + "$ref": "./examples/LocationCheckNameAvailability_AlreadyExists.json" + } }, "parameters": [ { @@ -1065,8 +1111,12 @@ "operationId": "Certificate_ListByBatchAccount", "description": "Lists all of the certificates in the specified account.", "x-ms-examples": { - "ListCertificates": { "$ref": "./examples/CertificateList.json" }, - "ListCertificates - Filter and Select": { "$ref": "./examples/CertificateListWithFilter.json" } + "ListCertificates": { + "$ref": "./examples/CertificateList.json" + }, + "ListCertificates - Filter and Select": { + "$ref": "./examples/CertificateListWithFilter.json" + } }, "parameters": [ { @@ -1131,9 +1181,15 @@ "operationId": "Certificate_Create", "description": "Creates a new certificate inside the specified account.", "x-ms-examples": { - "CreateCertificate - Minimal Pfx": { "$ref": "./examples/CertificateCreate_Minimal.json" }, - "CreateCertificate - Minimal Cer": { "$ref": "./examples/CertificateCreate_MinimalCer.json" }, - "CreateCertificate - Full": { "$ref": "./examples/CertificateCreate_Full.json" } + "CreateCertificate - Minimal Pfx": { + "$ref": "./examples/CertificateCreate_Minimal.json" + }, + "CreateCertificate - Minimal Cer": { + "$ref": "./examples/CertificateCreate_MinimalCer.json" + }, + "CreateCertificate - Full": { + "$ref": "./examples/CertificateCreate_Full.json" + } }, "parameters": [ { @@ -1204,7 +1260,9 @@ "operationId": "Certificate_Update", "description": "Updates the properties of an existing certificate.", "x-ms-examples": { - "UpdateCertificate": { "$ref": "./examples/CertificateUpdate.json" } + "UpdateCertificate": { + "$ref": "./examples/CertificateUpdate.json" + } }, "parameters": [ { @@ -1267,7 +1325,9 @@ "operationId": "Certificate_Delete", "description": "Deletes the specified certificate.", "x-ms-examples": { - "CertificateDelete": { "$ref": "./examples/CertificateDelete.json" } + "CertificateDelete": { + "$ref": "./examples/CertificateDelete.json" + } }, "parameters": [ { @@ -1323,8 +1383,12 @@ "operationId": "Certificate_Get", "description": "Gets information about the specified certificate.", "x-ms-examples": { - "Get Certificate": { "$ref": "./examples/CertificateGet.json" }, - "Get Certificate with Deletion Error": { "$ref": "./examples/CertificateGetWithDeletionError.json" } + "Get Certificate": { + "$ref": "./examples/CertificateGet.json" + }, + "Get Certificate with Deletion Error": { + "$ref": "./examples/CertificateGetWithDeletionError.json" + } }, "parameters": [ { @@ -1374,7 +1438,9 @@ "summary": "Cancels a failed deletion of a certificate from the specified account.", "description": "If you try to delete a certificate that is being used by a pool or compute node, the status of the certificate changes to deleteFailed. If you decide that you want to continue using the certificate, you can use this operation to set the status of the certificate back to active. If you intend to delete the certificate, you do not need to run this operation after the deletion failed. You must make sure that the certificate is not being used by any resources, and then you can try again to delete the certificate.", "x-ms-examples": { - "CertificateCancelDeletion": { "$ref": "./examples/CertificateCancelDeletion.json" } + "CertificateCancelDeletion": { + "$ref": "./examples/CertificateCancelDeletion.json" + } }, "parameters": [ { @@ -1423,8 +1489,12 @@ "operationId": "Pool_ListByBatchAccount", "description": "Lists all of the pools in the specified account.", "x-ms-examples": { - "ListPool": { "$ref": "./examples/PoolList.json" }, - "ListPoolWithFilter": { "$ref": "./examples/PoolListWithFilter.json" } + "ListPool": { + "$ref": "./examples/PoolList.json" + }, + "ListPoolWithFilter": { + "$ref": "./examples/PoolListWithFilter.json" + } }, "parameters": [ { @@ -1489,11 +1559,21 @@ "operationId": "Pool_Create", "description": "Creates a new pool inside the specified account.", "x-ms-examples": { - "CreatePool - Minimal CloudServiceConfiguration": { "$ref": "./examples/PoolCreate_MinimalCloudServiceConfiguration.json" }, - "CreatePool - Minimal VirtualMachineConfiguration": { "$ref": "./examples/PoolCreate_MinimalVirtualMachineConfiguration.json" }, - "CreatePool - Full Example": { "$ref": "./examples/PoolCreate_FullExample.json" }, - "CreatePool - Custom Image": { "$ref": "./examples/PoolCreate_CustomImage.json" }, - "CreatePool - Full VirtualMachineConfiguration": { "$ref": "./examples/PoolCreate_VirtualMachineConfiguration.json" } + "CreatePool - Minimal CloudServiceConfiguration": { + "$ref": "./examples/PoolCreate_MinimalCloudServiceConfiguration.json" + }, + "CreatePool - Minimal VirtualMachineConfiguration": { + "$ref": "./examples/PoolCreate_MinimalVirtualMachineConfiguration.json" + }, + "CreatePool - Full Example": { + "$ref": "./examples/PoolCreate_FullExample.json" + }, + "CreatePool - Custom Image": { + "$ref": "./examples/PoolCreate_CustomImage.json" + }, + "CreatePool - Full VirtualMachineConfiguration": { + "$ref": "./examples/PoolCreate_VirtualMachineConfiguration.json" + } }, "parameters": [ { @@ -1564,10 +1644,18 @@ "operationId": "Pool_Update", "description": "Updates the properties of an existing pool.", "x-ms-examples": { - "UpdatePool - Resize Pool": { "$ref": "./examples/PoolUpdate_ResizePool.json" }, - "UpdatePool - Enable Autoscale": { "$ref": "./examples/PoolUpdate_EnableAutoScale.json" }, - "UpdatePool - Remove Start Task": { "$ref": "./examples/PoolUpdate_RemoveStartTask.json" }, - "UpdatePool - Other Properties": { "$ref": "./examples/PoolUpdate_OtherProperties.json" } + "UpdatePool - Resize Pool": { + "$ref": "./examples/PoolUpdate_ResizePool.json" + }, + "UpdatePool - Enable Autoscale": { + "$ref": "./examples/PoolUpdate_EnableAutoScale.json" + }, + "UpdatePool - Remove Start Task": { + "$ref": "./examples/PoolUpdate_RemoveStartTask.json" + }, + "UpdatePool - Other Properties": { + "$ref": "./examples/PoolUpdate_OtherProperties.json" + } }, "parameters": [ { @@ -1630,7 +1718,9 @@ "operationId": "Pool_Delete", "description": "Deletes the specified pool.", "x-ms-examples": { - "DeletePool": { "$ref": "./examples/PoolDelete.json" } + "DeletePool": { + "$ref": "./examples/PoolDelete.json" + } }, "parameters": [ { @@ -1686,7 +1776,9 @@ "operationId": "Pool_Get", "description": "Gets information about the specified pool.", "x-ms-examples": { - "GetPool": { "$ref": "./examples/PoolGet.json" } + "GetPool": { + "$ref": "./examples/PoolGet.json" + } }, "parameters": [ { @@ -1735,7 +1827,9 @@ "operationId": "Pool_DisableAutoScale", "description": "Disables automatic scaling for a pool.", "x-ms-examples": { - "Disable AutoScale": { "$ref": "./examples/PoolDisableAutoScale.json" } + "Disable AutoScale": { + "$ref": "./examples/PoolDisableAutoScale.json" + } }, "parameters": [ { @@ -1785,7 +1879,9 @@ "summary": "Stops an ongoing resize operation on the pool.", "description": "This does not restore the pool to its previous state before the resize operation: it only stops any further changes being made, and the pool maintains its current state. After stopping, the pool stabilizes at the number of nodes it was at when the stop operation was done. During the stop operation, the pool allocation state changes first to stopping and then to steady. A resize operation need not be an explicit resize pool request; this API can also be used to halt the initial sizing of the pool when it is created.", "x-ms-examples": { - "StopPoolResize": { "$ref": "./examples/PoolStopResize.json" } + "StopPoolResize": { + "$ref": "./examples/PoolStopResize.json" + } }, "parameters": [ { @@ -2503,7 +2599,9 @@ } }, "description": "Certificate properties for create operations", - "required": [ "data" ] + "required": [ + "data" + ] }, "Certificate": { "properties": { @@ -2573,7 +2671,10 @@ "description": "A list of additional details about the error." } }, - "required": [ "code", "message" ], + "required": [ + "code", + "message" + ], "description": "An error response from the Batch service." }, "Pool": { @@ -2842,7 +2943,9 @@ "description": "If omitted, the default value is 15 minutes (PT15M)." } }, - "required": [ "formula" ], + "required": [ + "formula" + ], "title": "AutoScale settings for the pool." }, "FixedScaleSettings": { @@ -2971,7 +3074,9 @@ "title": "Which user accounts on the compute node should have access to the private data of the certificate." } }, - "required": [ "id" ], + "required": [ + "id" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool. This must exist inside the same account as the pool." }, "ApplicationPackageReference": { @@ -2987,7 +3092,9 @@ } }, "title": "Link to an application package inside the batch account", - "required": [ "id" ] + "required": [ + "id" + ] }, "ResizeError": { "properties": { @@ -3008,7 +3115,10 @@ } }, "title": "An error that occurred when resizing a pool.", - "required": [ "code", "message" ] + "required": [ + "code", + "message" + ] }, "AutoScaleRunError": { "properties": { @@ -3029,7 +3139,10 @@ } }, "title": "An error that occurred when autoscaling a pool.", - "required": [ "code", "message" ] + "required": [ + "code", + "message" + ] }, "AutoScaleRun": { "properties": { @@ -3048,7 +3161,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": [ "evaluationTime" ], + "required": [ + "evaluationTime" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "VirtualMachineConfiguration": { @@ -3086,7 +3201,10 @@ "description": "If specified, setup is performed on each node in the pool to allow tasks to run in containers. All regular tasks and job manager tasks run on this pool must specify the containerSettings property, and all other tasks may specify it." } }, - "required": [ "imageReference", "nodeAgentSkuId" ], + "required": [ + "imageReference", + "nodeAgentSkuId" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "ContainerRegistry": { @@ -3106,7 +3224,10 @@ "title": "The password to log into the registry server." } }, - "required": [ "username", "password" ], + "required": [ + "username", + "password" + ], "title": "A private container registry." }, "ContainerConfiguration": { @@ -3145,7 +3266,9 @@ "description": "If any images must be downloaded from a private registry which requires credentials, then those credentials must be provided here." } }, - "required": [ "type" ], + "required": [ + "type" + ], "title": "The configuration for container-enabled pools." }, "WindowsConfiguration": { @@ -3243,7 +3366,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "LinuxUserConfiguration": { @@ -3322,7 +3447,10 @@ "$ref": "#/definitions/WindowsUserConfiguration" } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user on an Azure Batch node." }, "StartTask": { @@ -3388,7 +3516,9 @@ "description": "This setting can be omitted if was already provided at pool creation." } }, - "required": [ "imageName" ], + "required": [ + "imageName" + ], "title": "The container settings for a task." }, "ResourceFile": { @@ -3437,7 +3567,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, "UserIdentity": { @@ -3592,7 +3724,9 @@ "description": "The default value is * which specifies the latest operating system version for the specified OS family." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "MetadataItem": { @@ -3606,7 +3740,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -3661,7 +3798,9 @@ "description": "The maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400." } }, - "required": [ "inboundNatPools" ], + "required": [ + "inboundNatPools" + ], "title": "The endpoint configuration for a pool." }, "InboundNatPool": { @@ -3720,7 +3859,13 @@ } } }, - "required": [ "name", "protocol", "backendPort", "frontendPortRangeStart", "frontendPortRangeEnd" ], + "required": [ + "name", + "protocol", + "backendPort", + "frontendPortRangeStart", + "frontendPortRangeEnd" + ], "title": "A inbound NAT pool that can be used to address specific ports on compute nodes in a Batch pool externally." }, "NetworkSecurityGroupRule": { @@ -3759,7 +3904,11 @@ "description": "Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400." } }, - "required": [ "priority", "access", "sourceAddressPrefix" ], + "required": [ + "priority", + "access", + "sourceAddressPrefix" + ], "title": "A network security group rule to apply to an inbound endpoint." }, "ListPoolsResult": { @@ -3877,7 +4026,9 @@ }, "type": { "type": "string", - "enum": [ "Microsoft.Batch/batchAccounts" ], + "enum": [ + "Microsoft.Batch/batchAccounts" + ], "x-ms-enum": { "name": "Type", "modelAsString": false, diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationCreate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationCreate.json index 0c1047f0b948..c2945c6ffe5e 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationCreate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationCreate.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationDelete.json index 5e440c03da85..054cfce5d90d 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationGet.json index aec413231def..701ad1146ed5 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationGet.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationList.json index 231fd196cddf..b8f80d28dd2a 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationList.json @@ -32,4 +32,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageActivate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageActivate.json index d8bc48c2f823..9ce018c47008 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageActivate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageActivate.json @@ -23,9 +23,9 @@ "properties": { "state": "Active", "format": "zip", - "lastActivationTime":"2017-06-27T18:48:09.9330991Z" + "lastActivationTime": "2017-06-27T18:48:09.9330991Z" } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageCreate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageCreate.json index 8be9b15da357..79ee980403c9 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageCreate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageCreate.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageDelete.json index 76181969de38..eae758eed6f3 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageGet.json index 40253cbe68e2..eea81371c8e1 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageGet.json @@ -20,9 +20,9 @@ "properties": { "state": "Active", "format": "zip", - "lastActivationTime":"2017-06-27T18:48:09.9330991Z" + "lastActivationTime": "2017-06-27T18:48:09.9330991Z" } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageList.json index f4ef7ba4189b..7de526067116 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationPackageList.json @@ -26,10 +26,10 @@ "properties": { "state": "Active", "format": "zip", - "lastActivationTime":"2017-06-27T18:48:09.9330991Z" + "lastActivationTime": "2017-06-27T18:48:09.9330991Z" } } ] } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationUpdate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationUpdate.json index c9355a114953..3396b1999e1d 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationUpdate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/ApplicationUpdate.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountCreate_BYOS.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountCreate_BYOS.json index b5b305cdc8e9..599eed0d2b2e 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountCreate_BYOS.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountCreate_BYOS.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountCreate_Default.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountCreate_Default.json index c0b7541190f7..ead7005292a2 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountCreate_Default.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountCreate_Default.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountDelete.json index 7d32947fb5a2..699314908db8 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountGet.json index 3e9b561e4383..fc0c7feb5718 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountGet.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountGetKeys.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountGetKeys.json index ffb9a92b7bb0..5c4595f51571 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountGetKeys.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountGetKeys.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountList.json index 7f366d7f2ae6..26b6661fad16 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountList.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountListByResourceGroup.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountListByResourceGroup.json index 889e7753d5b2..3611b0ba9676 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountListByResourceGroup.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountListByResourceGroup.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountRegenerateKey.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountRegenerateKey.json index d867fd3eed63..1c962e8d2e08 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountRegenerateKey.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountRegenerateKey.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountSynchronizeAutoStorageKeys.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountSynchronizeAutoStorageKeys.json index 0bfc652df0cb..fd2a4d596509 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountSynchronizeAutoStorageKeys.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountSynchronizeAutoStorageKeys.json @@ -8,4 +8,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountUpdate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountUpdate.json index 35470243a9c7..6757f93a22b1 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountUpdate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/BatchAccountUpdate.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCancelDeletion.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCancelDeletion.json index 710568d78965..29f4785e4480 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCancelDeletion.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCancelDeletion.json @@ -14,19 +14,19 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", + "type": "Microsoft.Batch/batchAccounts/certificates", "etag": "W/\"0x8D4EDD513C3EDBB\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "previousProvisioningState": "Failed", "previousProvisioningStateTransitionTime": "2017-07-21T00:22:54.3299195Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_Full.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_Full.json index 0a3c2b332054..cb090fdb6233 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_Full.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_Full.json @@ -7,10 +7,10 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "data":"MIIJsgIBAzCCCW4GCSqGSIb3DQE...", - "password":"KG0UY40e...", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "data": "MIIJsgIBAzCCCW4GCSqGSIb3DQE...", + "password": "KG0UY40e...", "format": "Pfx" } } @@ -23,17 +23,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_Minimal.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_Minimal.json index bd3b1ff2b93f..fe91a8a843e1 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_Minimal.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_Minimal.json @@ -7,8 +7,8 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "data":"MIIJsgIBAzCCCW4GCSqGSIb3DQE...", - "password":"KG0UY40e..." + "data": "MIIJsgIBAzCCCW4GCSqGSIb3DQE...", + "password": "KG0UY40e..." } } }, @@ -20,17 +20,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_MinimalCer.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_MinimalCer.json index ee9b9fb0526f..5654a0161a28 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_MinimalCer.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateCreate_MinimalCer.json @@ -7,7 +7,7 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "data":"MIICrjCCAZagAwI...", + "data": "MIICrjCCAZagAwI...", "format": "Cer" } } @@ -20,17 +20,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Cer", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateDelete.json index d7404dfd2977..4eaaef4ec17f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateDelete.json @@ -7,13 +7,13 @@ "api-version": "2018-12-01" }, "responses": { - "200": { }, + "200": {}, "202": { "headers": { "Retry-After": "15", "Location": "https://management.azure.com/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/sampleacct/certificateOperationResults/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E-8D4EDFF164A11C9?api-version=2018-12-01" } }, - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateGet.json index d22d85bb10e2..96a61de7339b 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateGet.json @@ -14,17 +14,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateGetWithDeletionError.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateGetWithDeletionError.json index 979e1d11ea25..73ab9686ecb3 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateGetWithDeletionError.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateGetWithDeletionError.json @@ -14,17 +14,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Failed", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "previousProvisioningState": "Deleting", - "previousProvisioningStateTransitionTime":"2017-07-21T00:15:25.5625498Z", + "previousProvisioningStateTransitionTime": "2017-07-21T00:15:25.5625498Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI...", + "publicData": "MIICrjCCAZagAwI...", "deleteCertificateError": { "code": "NodesReferencingCertificate", "message": "The specified certificate is being used by the below mentioned node(s)\nRequestId:2dc78afc-b15b-42d2-8c85-39cb61a0799e\nTime:2017-08-28T10:22:52.8633406Z", @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateList.json index ca246d74904a..1a233918834f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateList.json @@ -13,15 +13,15 @@ { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } ], @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateListWithFilter.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateListWithFilter.json index 9e5431fba385..edc90ffa57e9 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateListWithFilter.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateListWithFilter.json @@ -14,8 +14,8 @@ { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { "provisioningState": "Failed", "format": "Pfx" @@ -24,8 +24,8 @@ { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-AEB228FFB0BF67A793D61DCE263EBD16949F15A1", "name": "SHA1-AEB228FFB0BF67A793D61DCE263EBD16949F15A1", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118572E0\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118572E0\"", "properties": { "provisioningState": "Failed", "format": "Cer" @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateUpdate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateUpdate.json index bd3b1ff2b93f..fe91a8a843e1 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateUpdate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/CertificateUpdate.json @@ -7,8 +7,8 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "data":"MIIJsgIBAzCCCW4GCSqGSIb3DQE...", - "password":"KG0UY40e..." + "data": "MIIJsgIBAzCCCW4GCSqGSIb3DQE...", + "password": "KG0UY40e..." } } }, @@ -20,17 +20,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationCheckNameAvailability_AlreadyExists.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationCheckNameAvailability_AlreadyExists.json index 08ef61ee753e..1277426222e3 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationCheckNameAvailability_AlreadyExists.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationCheckNameAvailability_AlreadyExists.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationCheckNameAvailability_Available.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationCheckNameAvailability_Available.json index b591ebafbb81..383b87164112 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationCheckNameAvailability_Available.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationCheckNameAvailability_Available.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationGetQuotas.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationGetQuotas.json index 4a47f4fb34fd..ae689ac81e0e 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationGetQuotas.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/LocationGetQuotas.json @@ -11,4 +11,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_CustomImage.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_CustomImage.json index 325b22b75b60..be50503bb422 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_CustomImage.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_CustomImage.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_FullExample.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_FullExample.json index 4f44add3995b..112a54a3174b 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_FullExample.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_FullExample.json @@ -256,4 +256,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json index 67cebc4b7d31..ed9ececdeb0c 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json index 38a823508f17..4ff398030c01 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_VirtualMachineConfiguration.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_VirtualMachineConfiguration.json index 1f87a33b867d..19d0d64e4ac7 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_VirtualMachineConfiguration.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolCreate_VirtualMachineConfiguration.json @@ -160,4 +160,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolDelete.json index f5543c64c4c9..fd5e1fc583eb 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolDelete.json @@ -7,8 +7,8 @@ "api-version": "2018-12-01" }, "responses": { - "200": { }, - "204": { }, + "200": {}, + "204": {}, "202": { "headers": { "Retry-After": "15", @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolDisableAutoScale.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolDisableAutoScale.json index 6d9a91938ae2..2cb89984b882 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolDisableAutoScale.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolDisableAutoScale.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolGet.json index e672b1ac68e7..78ef8f3a17f1 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolGet.json @@ -145,4 +145,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolList.json index bc0871c46074..a1de84b03dd2 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolList.json @@ -152,4 +152,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolListWithFilter.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolListWithFilter.json index c378f2bf4f76..378263207fe8 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolListWithFilter.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolListWithFilter.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolStopResize.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolStopResize.json index e61b3f7db192..ff08cf3a641d 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolStopResize.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolStopResize.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_EnableAutoScale.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_EnableAutoScale.json index aa8194d9e9a1..404fd8176528 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_EnableAutoScale.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_EnableAutoScale.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_OtherProperties.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_OtherProperties.json index 952e920f3a3b..258b37682526 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_OtherProperties.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_OtherProperties.json @@ -112,4 +112,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_RemoveStartTask.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_RemoveStartTask.json index 4ecbed138f9a..a34719194a29 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_RemoveStartTask.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_RemoveStartTask.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_ResizePool.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_ResizePool.json index 34ca20e96fda..b3a6ef0a3dfa 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_ResizePool.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2018-12-01/examples/PoolUpdate_ResizePool.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/BatchManagement.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/BatchManagement.json index 212b5bd1e955..317c5da8b95f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/BatchManagement.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/BatchManagement.json @@ -43,8 +43,12 @@ ], "operationId": "BatchAccount_Create", "x-ms-examples": { - "BatchAccountCreate_Default": { "$ref": "./examples/BatchAccountCreate_Default.json" }, - "BatchAccountCreate_BYOS": { "$ref": "./examples/BatchAccountCreate_BYOS.json" } + "BatchAccountCreate_Default": { + "$ref": "./examples/BatchAccountCreate_Default.json" + }, + "BatchAccountCreate_BYOS": { + "$ref": "./examples/BatchAccountCreate_BYOS.json" + } }, "description": "Creates a new Batch account with the specified parameters. Existing accounts cannot be updated with this API and should instead be updated with the Update Batch Account API.", "parameters": [ @@ -113,7 +117,9 @@ ], "operationId": "BatchAccount_Update", "x-ms-examples": { - "BatchAccountUpdate": { "$ref": "./examples/BatchAccountUpdate.json" } + "BatchAccountUpdate": { + "$ref": "./examples/BatchAccountUpdate.json" + } }, "description": "Updates the properties of an existing Batch account.", "parameters": [ @@ -160,7 +166,9 @@ ], "operationId": "BatchAccount_Delete", "x-ms-examples": { - "BatchAccountDelete": { "$ref": "./examples/BatchAccountDelete.json" } + "BatchAccountDelete": { + "$ref": "./examples/BatchAccountDelete.json" + } }, "description": "Deletes the specified Batch account.", "parameters": [ @@ -213,7 +221,9 @@ ], "operationId": "BatchAccount_Get", "x-ms-examples": { - "BatchAccountGet": { "$ref": "./examples/BatchAccountGet.json" } + "BatchAccountGet": { + "$ref": "./examples/BatchAccountGet.json" + } }, "description": "Gets information about the specified Batch account.", "parameters": [ @@ -253,7 +263,9 @@ ], "operationId": "BatchAccount_List", "x-ms-examples": { - "BatchAccountList": { "$ref": "./examples/BatchAccountList.json" } + "BatchAccountList": { + "$ref": "./examples/BatchAccountList.json" + } }, "description": "Gets information about the Batch accounts associated with the subscription.", "parameters": [ @@ -290,7 +302,9 @@ ], "operationId": "BatchAccount_ListByResourceGroup", "x-ms-examples": { - "BatchAccountListByResourceGroup": { "$ref": "./examples/BatchAccountListByResourceGroup.json" } + "BatchAccountListByResourceGroup": { + "$ref": "./examples/BatchAccountListByResourceGroup.json" + } }, "description": "Gets information about the Batch accounts associated with the specified resource group.", "parameters": [ @@ -330,7 +344,9 @@ ], "operationId": "BatchAccount_SynchronizeAutoStorageKeys", "x-ms-examples": { - "BatchAccountSynchronizeAutoStorageKeys": { "$ref": "./examples/BatchAccountSynchronizeAutoStorageKeys.json" } + "BatchAccountSynchronizeAutoStorageKeys": { + "$ref": "./examples/BatchAccountSynchronizeAutoStorageKeys.json" + } }, "description": "Synchronizes access keys for the auto-storage account configured for the specified Batch account.", "parameters": [ @@ -367,7 +383,9 @@ ], "operationId": "BatchAccount_RegenerateKey", "x-ms-examples": { - "BatchAccountRegenerateKey": { "$ref": "./examples/BatchAccountRegenerateKey.json" } + "BatchAccountRegenerateKey": { + "$ref": "./examples/BatchAccountRegenerateKey.json" + } }, "description": "Regenerates the specified account key for the Batch account.", "parameters": [ @@ -416,7 +434,9 @@ ], "operationId": "BatchAccount_GetKeys", "x-ms-examples": { - "BatchAccountGetKeys": { "$ref": "./examples/BatchAccountGetKeys.json" } + "BatchAccountGetKeys": { + "$ref": "./examples/BatchAccountGetKeys.json" + } }, "summary": "Gets the account keys for the specified Batch account.", "description": "This operation applies only to Batch accounts created with a poolAllocationMode of 'BatchService'. If the Batch account was created with a poolAllocationMode of 'UserSubscription', clients cannot use access to keys to authenticate, and must use Azure Active Directory instead. In this case, getting the keys will fail.", @@ -457,7 +477,9 @@ ], "operationId": "ApplicationPackage_Activate", "x-ms-examples": { - "ApplicationPackageActivate": { "$ref": "./examples/ApplicationPackageActivate.json" } + "ApplicationPackageActivate": { + "$ref": "./examples/ApplicationPackageActivate.json" + } }, "description": "Activates the specified application package.", "parameters": [ @@ -512,7 +534,9 @@ ], "operationId": "Application_Create", "x-ms-examples": { - "ApplicationCreate": { "$ref": "./examples/ApplicationCreate.json" } + "ApplicationCreate": { + "$ref": "./examples/ApplicationCreate.json" + } }, "description": "Adds an application to the specified Batch account.", "parameters": [ @@ -562,7 +586,9 @@ ], "operationId": "Application_Delete", "x-ms-examples": { - "ApplicationDelete": { "$ref": "./examples/ApplicationDelete.json" } + "ApplicationDelete": { + "$ref": "./examples/ApplicationDelete.json" + } }, "description": "Deletes an application.", "parameters": [ @@ -603,7 +629,9 @@ ], "operationId": "Application_Get", "x-ms-examples": { - "ApplicationGet": { "$ref": "./examples/ApplicationGet.json" } + "ApplicationGet": { + "$ref": "./examples/ApplicationGet.json" + } }, "description": "Gets information about the specified application.", "parameters": [ @@ -644,7 +672,9 @@ ], "operationId": "Application_Update", "x-ms-examples": { - "ApplicationUpdate": { "$ref": "./examples/ApplicationUpdate.json" } + "ApplicationUpdate": { + "$ref": "./examples/ApplicationUpdate.json" + } }, "description": "Updates settings for the specified application.", "parameters": [ @@ -696,7 +726,9 @@ ], "operationId": "ApplicationPackage_Create", "x-ms-examples": { - "ApplicationPackageCreate": { "$ref": "./examples/ApplicationPackageCreate.json" } + "ApplicationPackageCreate": { + "$ref": "./examples/ApplicationPackageCreate.json" + } }, "description": "Creates an application package record.", "parameters": [ @@ -749,7 +781,9 @@ ], "operationId": "ApplicationPackage_Delete", "x-ms-examples": { - "ApplicationPackageDelete": { "$ref": "./examples/ApplicationPackageDelete.json" } + "ApplicationPackageDelete": { + "$ref": "./examples/ApplicationPackageDelete.json" + } }, "description": "Deletes an application package record and its associated binary file.", "parameters": [ @@ -793,7 +827,9 @@ ], "operationId": "ApplicationPackage_Get", "x-ms-examples": { - "ApplicationPackageGet": { "$ref": "./examples/ApplicationPackageGet.json" } + "ApplicationPackageGet": { + "$ref": "./examples/ApplicationPackageGet.json" + } }, "description": "Gets information about the specified application package.", "parameters": [ @@ -839,7 +875,9 @@ ], "operationId": "Application_List", "x-ms-examples": { - "ApplicationList": { "$ref": "./examples/ApplicationList.json" } + "ApplicationList": { + "$ref": "./examples/ApplicationList.json" + } }, "description": "Lists all of the applications in the specified account.", "parameters": [ @@ -890,7 +928,9 @@ ], "operationId": "ApplicationPackage_List", "x-ms-examples": { - "ApplicationList": { "$ref": "./examples/ApplicationPackageList.json" } + "ApplicationList": { + "$ref": "./examples/ApplicationPackageList.json" + } }, "description": "Lists all of the application packages in the specified application.", "parameters": [ @@ -944,7 +984,9 @@ ], "operationId": "Location_GetQuotas", "x-ms-examples": { - "LocationGetQuotas": { "$ref": "./examples/LocationGetQuotas.json" } + "LocationGetQuotas": { + "$ref": "./examples/LocationGetQuotas.json" + } }, "description": "Gets the Batch service quotas for the specified subscription at the given location.", "parameters": [ @@ -1014,8 +1056,12 @@ "operationId": "Location_CheckNameAvailability", "description": "Checks whether the Batch account name is available in the specified region.", "x-ms-examples": { - "LocationCheckNameAvailability_Available": { "$ref": "./examples/LocationCheckNameAvailability_Available.json" }, - "LocationCheckNameAvailability_AlreadyExists": { "$ref": "./examples/LocationCheckNameAvailability_AlreadyExists.json" } + "LocationCheckNameAvailability_Available": { + "$ref": "./examples/LocationCheckNameAvailability_Available.json" + }, + "LocationCheckNameAvailability_AlreadyExists": { + "$ref": "./examples/LocationCheckNameAvailability_AlreadyExists.json" + } }, "parameters": [ { @@ -1065,8 +1111,12 @@ "operationId": "Certificate_ListByBatchAccount", "description": "Lists all of the certificates in the specified account.", "x-ms-examples": { - "ListCertificates": { "$ref": "./examples/CertificateList.json" }, - "ListCertificates - Filter and Select": { "$ref": "./examples/CertificateListWithFilter.json" } + "ListCertificates": { + "$ref": "./examples/CertificateList.json" + }, + "ListCertificates - Filter and Select": { + "$ref": "./examples/CertificateListWithFilter.json" + } }, "parameters": [ { @@ -1131,9 +1181,15 @@ "operationId": "Certificate_Create", "description": "Creates a new certificate inside the specified account.", "x-ms-examples": { - "CreateCertificate - Minimal Pfx": { "$ref": "./examples/CertificateCreate_Minimal.json" }, - "CreateCertificate - Minimal Cer": { "$ref": "./examples/CertificateCreate_MinimalCer.json" }, - "CreateCertificate - Full": { "$ref": "./examples/CertificateCreate_Full.json" } + "CreateCertificate - Minimal Pfx": { + "$ref": "./examples/CertificateCreate_Minimal.json" + }, + "CreateCertificate - Minimal Cer": { + "$ref": "./examples/CertificateCreate_MinimalCer.json" + }, + "CreateCertificate - Full": { + "$ref": "./examples/CertificateCreate_Full.json" + } }, "parameters": [ { @@ -1204,7 +1260,9 @@ "operationId": "Certificate_Update", "description": "Updates the properties of an existing certificate.", "x-ms-examples": { - "UpdateCertificate": { "$ref": "./examples/CertificateUpdate.json" } + "UpdateCertificate": { + "$ref": "./examples/CertificateUpdate.json" + } }, "parameters": [ { @@ -1267,7 +1325,9 @@ "operationId": "Certificate_Delete", "description": "Deletes the specified certificate.", "x-ms-examples": { - "CertificateDelete": { "$ref": "./examples/CertificateDelete.json" } + "CertificateDelete": { + "$ref": "./examples/CertificateDelete.json" + } }, "parameters": [ { @@ -1323,8 +1383,12 @@ "operationId": "Certificate_Get", "description": "Gets information about the specified certificate.", "x-ms-examples": { - "Get Certificate": { "$ref": "./examples/CertificateGet.json" }, - "Get Certificate with Deletion Error": { "$ref": "./examples/CertificateGetWithDeletionError.json" } + "Get Certificate": { + "$ref": "./examples/CertificateGet.json" + }, + "Get Certificate with Deletion Error": { + "$ref": "./examples/CertificateGetWithDeletionError.json" + } }, "parameters": [ { @@ -1374,7 +1438,9 @@ "summary": "Cancels a failed deletion of a certificate from the specified account.", "description": "If you try to delete a certificate that is being used by a pool or compute node, the status of the certificate changes to deleteFailed. If you decide that you want to continue using the certificate, you can use this operation to set the status of the certificate back to active. If you intend to delete the certificate, you do not need to run this operation after the deletion failed. You must make sure that the certificate is not being used by any resources, and then you can try again to delete the certificate.", "x-ms-examples": { - "CertificateCancelDeletion": { "$ref": "./examples/CertificateCancelDeletion.json" } + "CertificateCancelDeletion": { + "$ref": "./examples/CertificateCancelDeletion.json" + } }, "parameters": [ { @@ -1423,8 +1489,12 @@ "operationId": "Pool_ListByBatchAccount", "description": "Lists all of the pools in the specified account.", "x-ms-examples": { - "ListPool": { "$ref": "./examples/PoolList.json" }, - "ListPoolWithFilter": { "$ref": "./examples/PoolListWithFilter.json" } + "ListPool": { + "$ref": "./examples/PoolList.json" + }, + "ListPoolWithFilter": { + "$ref": "./examples/PoolListWithFilter.json" + } }, "parameters": [ { @@ -1489,11 +1559,21 @@ "operationId": "Pool_Create", "description": "Creates a new pool inside the specified account.", "x-ms-examples": { - "CreatePool - Minimal CloudServiceConfiguration": { "$ref": "./examples/PoolCreate_MinimalCloudServiceConfiguration.json" }, - "CreatePool - Minimal VirtualMachineConfiguration": { "$ref": "./examples/PoolCreate_MinimalVirtualMachineConfiguration.json" }, - "CreatePool - Full Example": { "$ref": "./examples/PoolCreate_FullExample.json" }, - "CreatePool - Custom Image": { "$ref": "./examples/PoolCreate_CustomImage.json" }, - "CreatePool - Full VirtualMachineConfiguration": { "$ref": "./examples/PoolCreate_VirtualMachineConfiguration.json" } + "CreatePool - Minimal CloudServiceConfiguration": { + "$ref": "./examples/PoolCreate_MinimalCloudServiceConfiguration.json" + }, + "CreatePool - Minimal VirtualMachineConfiguration": { + "$ref": "./examples/PoolCreate_MinimalVirtualMachineConfiguration.json" + }, + "CreatePool - Full Example": { + "$ref": "./examples/PoolCreate_FullExample.json" + }, + "CreatePool - Custom Image": { + "$ref": "./examples/PoolCreate_CustomImage.json" + }, + "CreatePool - Full VirtualMachineConfiguration": { + "$ref": "./examples/PoolCreate_VirtualMachineConfiguration.json" + } }, "parameters": [ { @@ -1564,10 +1644,18 @@ "operationId": "Pool_Update", "description": "Updates the properties of an existing pool.", "x-ms-examples": { - "UpdatePool - Resize Pool": { "$ref": "./examples/PoolUpdate_ResizePool.json" }, - "UpdatePool - Enable Autoscale": { "$ref": "./examples/PoolUpdate_EnableAutoScale.json" }, - "UpdatePool - Remove Start Task": { "$ref": "./examples/PoolUpdate_RemoveStartTask.json" }, - "UpdatePool - Other Properties": { "$ref": "./examples/PoolUpdate_OtherProperties.json" } + "UpdatePool - Resize Pool": { + "$ref": "./examples/PoolUpdate_ResizePool.json" + }, + "UpdatePool - Enable Autoscale": { + "$ref": "./examples/PoolUpdate_EnableAutoScale.json" + }, + "UpdatePool - Remove Start Task": { + "$ref": "./examples/PoolUpdate_RemoveStartTask.json" + }, + "UpdatePool - Other Properties": { + "$ref": "./examples/PoolUpdate_OtherProperties.json" + } }, "parameters": [ { @@ -1630,7 +1718,9 @@ "operationId": "Pool_Delete", "description": "Deletes the specified pool.", "x-ms-examples": { - "DeletePool": { "$ref": "./examples/PoolDelete.json" } + "DeletePool": { + "$ref": "./examples/PoolDelete.json" + } }, "parameters": [ { @@ -1686,7 +1776,9 @@ "operationId": "Pool_Get", "description": "Gets information about the specified pool.", "x-ms-examples": { - "GetPool": { "$ref": "./examples/PoolGet.json" } + "GetPool": { + "$ref": "./examples/PoolGet.json" + } }, "parameters": [ { @@ -1735,7 +1827,9 @@ "operationId": "Pool_DisableAutoScale", "description": "Disables automatic scaling for a pool.", "x-ms-examples": { - "Disable AutoScale": { "$ref": "./examples/PoolDisableAutoScale.json" } + "Disable AutoScale": { + "$ref": "./examples/PoolDisableAutoScale.json" + } }, "parameters": [ { @@ -1785,7 +1879,9 @@ "summary": "Stops an ongoing resize operation on the pool.", "description": "This does not restore the pool to its previous state before the resize operation: it only stops any further changes being made, and the pool maintains its current state. After stopping, the pool stabilizes at the number of nodes it was at when the stop operation was done. During the stop operation, the pool allocation state changes first to stopping and then to steady. A resize operation need not be an explicit resize pool request; this API can also be used to halt the initial sizing of the pool when it is created.", "x-ms-examples": { - "StopPoolResize": { "$ref": "./examples/PoolStopResize.json" } + "StopPoolResize": { + "$ref": "./examples/PoolStopResize.json" + } }, "parameters": [ { @@ -2539,7 +2635,9 @@ } }, "description": "Certificate properties for create operations", - "required": [ "data" ] + "required": [ + "data" + ] }, "Certificate": { "properties": { @@ -2609,7 +2707,10 @@ "description": "A list of additional details about the error." } }, - "required": [ "code", "message" ], + "required": [ + "code", + "message" + ], "description": "An error response from the Batch service." }, "Pool": { @@ -2880,7 +2981,9 @@ "description": "If omitted, the default value is 15 minutes (PT15M)." } }, - "required": [ "formula" ], + "required": [ + "formula" + ], "title": "AutoScale settings for the pool." }, "FixedScaleSettings": { @@ -3009,7 +3112,9 @@ "title": "Which user accounts on the compute node should have access to the private data of the certificate." } }, - "required": [ "id" ], + "required": [ + "id" + ], "title": "A reference to a certificate to be installed on compute nodes in a pool. This must exist inside the same account as the pool." }, "ApplicationPackageReference": { @@ -3025,7 +3130,9 @@ } }, "title": "Link to an application package inside the batch account", - "required": [ "id" ] + "required": [ + "id" + ] }, "ResizeError": { "properties": { @@ -3046,7 +3153,10 @@ } }, "title": "An error that occurred when resizing a pool.", - "required": [ "code", "message" ] + "required": [ + "code", + "message" + ] }, "AutoScaleRunError": { "properties": { @@ -3067,7 +3177,10 @@ } }, "title": "An error that occurred when autoscaling a pool.", - "required": [ "code", "message" ] + "required": [ + "code", + "message" + ] }, "AutoScaleRun": { "properties": { @@ -3086,7 +3199,9 @@ "title": "Details of the error encountered evaluating the autoscale formula on the pool, if the evaluation was unsuccessful." } }, - "required": [ "evaluationTime" ], + "required": [ + "evaluationTime" + ], "title": "The results and errors from an execution of a pool autoscale formula." }, "VirtualMachineConfiguration": { @@ -3124,7 +3239,10 @@ "description": "If specified, setup is performed on each node in the pool to allow tasks to run in containers. All regular tasks and job manager tasks run on this pool must specify the containerSettings property, and all other tasks may specify it." } }, - "required": [ "imageReference", "nodeAgentSkuId" ], + "required": [ + "imageReference", + "nodeAgentSkuId" + ], "title": "The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure." }, "ContainerRegistry": { @@ -3144,7 +3262,10 @@ "title": "The password to log into the registry server." } }, - "required": [ "username", "password" ], + "required": [ + "username", + "password" + ], "title": "A private container registry." }, "ContainerConfiguration": { @@ -3183,7 +3304,9 @@ "description": "If any images must be downloaded from a private registry which requires credentials, then those credentials must be provided here." } }, - "required": [ "type" ], + "required": [ + "type" + ], "title": "The configuration for container-enabled pools." }, "WindowsConfiguration": { @@ -3281,7 +3404,9 @@ } } }, - "required": [ "nodeFillType" ], + "required": [ + "nodeFillType" + ], "title": "Specifies how tasks should be distributed across compute nodes." }, "LinuxUserConfiguration": { @@ -3360,7 +3485,10 @@ "$ref": "#/definitions/WindowsUserConfiguration" } }, - "required": [ "name", "password" ], + "required": [ + "name", + "password" + ], "title": "Properties used to create a user on an Azure Batch node." }, "StartTask": { @@ -3427,7 +3555,9 @@ "description": "This setting can be omitted if was already provided at pool creation." } }, - "required": [ "imageName" ], + "required": [ + "imageName" + ], "title": "The container settings for a task." }, "ResourceFile": { @@ -3476,7 +3606,9 @@ "title": "The value of the environment variable." } }, - "required": [ "name" ], + "required": [ + "name" + ], "title": "An environment variable to be set on a task process." }, "UserIdentity": { @@ -3631,7 +3763,9 @@ "description": "The default value is * which specifies the latest operating system version for the specified OS family." } }, - "required": [ "osFamily" ], + "required": [ + "osFamily" + ], "title": "The configuration for nodes in a pool based on the Azure Cloud Services platform." }, "MetadataItem": { @@ -3645,7 +3779,10 @@ "title": "The value of the metadata item." } }, - "required": [ "name", "value" ], + "required": [ + "name", + "value" + ], "title": "A name-value pair associated with a Batch service resource.", "description": "The Batch service does not assign any meaning to this metadata; it is solely for the use of user code." }, @@ -3700,7 +3837,9 @@ "description": "The maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400." } }, - "required": [ "inboundNatPools" ], + "required": [ + "inboundNatPools" + ], "title": "The endpoint configuration for a pool." }, "InboundNatPool": { @@ -3759,7 +3898,13 @@ } } }, - "required": [ "name", "protocol", "backendPort", "frontendPortRangeStart", "frontendPortRangeEnd" ], + "required": [ + "name", + "protocol", + "backendPort", + "frontendPortRangeStart", + "frontendPortRangeEnd" + ], "title": "A inbound NAT pool that can be used to address specific ports on compute nodes in a Batch pool externally." }, "NetworkSecurityGroupRule": { @@ -3798,7 +3943,11 @@ "description": "Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400." } }, - "required": [ "priority", "access", "sourceAddressPrefix" ], + "required": [ + "priority", + "access", + "sourceAddressPrefix" + ], "title": "A network security group rule to apply to an inbound endpoint." }, "ListPoolsResult": { @@ -3916,7 +4065,9 @@ }, "type": { "type": "string", - "enum": [ "Microsoft.Batch/batchAccounts" ], + "enum": [ + "Microsoft.Batch/batchAccounts" + ], "x-ms-enum": { "name": "Type", "modelAsString": false, diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationCreate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationCreate.json index 70de9cb2f13c..eed441c19009 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationCreate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationCreate.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationDelete.json index e6e0ae8308a1..3829a45f104a 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationGet.json index 00bd42058ec9..2bb409983944 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationGet.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationList.json index 9109aefee6e7..069f28aa4a9f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationList.json @@ -32,4 +32,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageActivate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageActivate.json index a6873b466bf9..bbe9236cf8de 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageActivate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageActivate.json @@ -23,9 +23,9 @@ "properties": { "state": "Active", "format": "zip", - "lastActivationTime":"2017-06-27T18:48:09.9330991Z" + "lastActivationTime": "2017-06-27T18:48:09.9330991Z" } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageCreate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageCreate.json index 0394faf46bf2..3590ef8d5b63 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageCreate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageCreate.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageDelete.json index 6c3ebee76f05..0a051c88011f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageGet.json index a86aed77eca8..0fdf50d3e0a2 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageGet.json @@ -20,9 +20,9 @@ "properties": { "state": "Active", "format": "zip", - "lastActivationTime":"2017-06-27T18:48:09.9330991Z" + "lastActivationTime": "2017-06-27T18:48:09.9330991Z" } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageList.json index aec2bea6d3a1..fd3c2b8921f8 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationPackageList.json @@ -26,10 +26,10 @@ "properties": { "state": "Active", "format": "zip", - "lastActivationTime":"2017-06-27T18:48:09.9330991Z" + "lastActivationTime": "2017-06-27T18:48:09.9330991Z" } } ] } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationUpdate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationUpdate.json index 6704c85ee742..d321b0e97836 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationUpdate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/ApplicationUpdate.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountCreate_BYOS.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountCreate_BYOS.json index 7a24326935cb..bfb63f39428a 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountCreate_BYOS.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountCreate_BYOS.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountCreate_Default.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountCreate_Default.json index 54043239b837..dbb4cf4d1079 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountCreate_Default.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountCreate_Default.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountDelete.json index 4bb2c6fca09c..f9ca3455a667 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountGet.json index b42e0d49e357..dcb50e93f523 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountGet.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountGetKeys.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountGetKeys.json index 36d4f080c340..6eb47d2ab77a 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountGetKeys.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountGetKeys.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountList.json index 0aa75dba68f2..f45623f0f080 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountList.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountListByResourceGroup.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountListByResourceGroup.json index c1124a5170f7..6a557fb1050f 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountListByResourceGroup.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountListByResourceGroup.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountRegenerateKey.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountRegenerateKey.json index f87ad16770f0..f5a4cdef2ba3 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountRegenerateKey.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountRegenerateKey.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountSynchronizeAutoStorageKeys.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountSynchronizeAutoStorageKeys.json index bff4cd15a9f8..f958dcd17841 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountSynchronizeAutoStorageKeys.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountSynchronizeAutoStorageKeys.json @@ -8,4 +8,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountUpdate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountUpdate.json index bcf2a9c6c00e..ef5ed5de429b 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountUpdate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/BatchAccountUpdate.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCancelDeletion.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCancelDeletion.json index f27b86ab9f48..4b93a00a8dd1 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCancelDeletion.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCancelDeletion.json @@ -14,19 +14,19 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", + "type": "Microsoft.Batch/batchAccounts/certificates", "etag": "W/\"0x8D4EDD513C3EDBB\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "previousProvisioningState": "Failed", "previousProvisioningStateTransitionTime": "2017-07-21T00:22:54.3299195Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_Full.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_Full.json index fd362745568c..7799e0ffb12b 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_Full.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_Full.json @@ -7,10 +7,10 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "data":"MIIJsgIBAzCCCW4GCSqGSIb3DQE...", - "password":"KG0UY40e...", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "data": "MIIJsgIBAzCCCW4GCSqGSIb3DQE...", + "password": "KG0UY40e...", "format": "Pfx" } } @@ -23,17 +23,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_Minimal.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_Minimal.json index 54fb1b1a371b..c14a4815b336 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_Minimal.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_Minimal.json @@ -7,8 +7,8 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "data":"MIIJsgIBAzCCCW4GCSqGSIb3DQE...", - "password":"KG0UY40e..." + "data": "MIIJsgIBAzCCCW4GCSqGSIb3DQE...", + "password": "KG0UY40e..." } } }, @@ -20,17 +20,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_MinimalCer.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_MinimalCer.json index 0ab8aa69872e..6a3b1e913466 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_MinimalCer.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateCreate_MinimalCer.json @@ -7,7 +7,7 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "data":"MIICrjCCAZagAwI...", + "data": "MIICrjCCAZagAwI...", "format": "Cer" } } @@ -20,17 +20,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Cer", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateDelete.json index adfc3e648fe1..db5d0de0a0be 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateDelete.json @@ -7,13 +7,13 @@ "api-version": "2019-04-01" }, "responses": { - "200": { }, + "200": {}, "202": { "headers": { "Retry-After": "15", "Location": "https://management.azure.com/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/sampleacct/certificateOperationResults/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E-8D4EDFF164A11C9?api-version=2019-04-01" } }, - "204": { } + "204": {} } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateGet.json index c0782c09f975..689eb0a795ea 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateGet.json @@ -14,17 +14,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateGetWithDeletionError.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateGetWithDeletionError.json index d58071509964..f495c5dc3900 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateGetWithDeletionError.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateGetWithDeletionError.json @@ -14,17 +14,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Failed", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "previousProvisioningState": "Deleting", - "previousProvisioningStateTransitionTime":"2017-07-21T00:15:25.5625498Z", + "previousProvisioningStateTransitionTime": "2017-07-21T00:15:25.5625498Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI...", + "publicData": "MIICrjCCAZagAwI...", "deleteCertificateError": { "code": "NodesReferencingCertificate", "message": "The specified certificate is being used by the below mentioned node(s)\nRequestId:2dc78afc-b15b-42d2-8c85-39cb61a0799e\nTime:2017-08-28T10:22:52.8633406Z", @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateList.json index c142bbbc13a6..7efbea1caef9 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateList.json @@ -13,15 +13,15 @@ { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } ], @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateListWithFilter.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateListWithFilter.json index 51da953c4115..42b58cd95a67 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateListWithFilter.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateListWithFilter.json @@ -14,8 +14,8 @@ { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { "provisioningState": "Failed", "format": "Pfx" @@ -24,8 +24,8 @@ { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-AEB228FFB0BF67A793D61DCE263EBD16949F15A1", "name": "SHA1-AEB228FFB0BF67A793D61DCE263EBD16949F15A1", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118572E0\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118572E0\"", "properties": { "provisioningState": "Failed", "format": "Cer" @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateUpdate.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateUpdate.json index 54fb1b1a371b..c14a4815b336 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateUpdate.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/CertificateUpdate.json @@ -7,8 +7,8 @@ "certificateName": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "parameters": { "properties": { - "data":"MIIJsgIBAzCCCW4GCSqGSIb3DQE...", - "password":"KG0UY40e..." + "data": "MIIJsgIBAzCCCW4GCSqGSIb3DQE...", + "password": "KG0UY40e..." } } }, @@ -20,17 +20,17 @@ "body": { "id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "name": "SHA1-0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", - "type":"Microsoft.Batch/batchAccounts/certificates", - "etag":"W/\"0x8D4EDD5118668F7\"", + "type": "Microsoft.Batch/batchAccounts/certificates", + "etag": "W/\"0x8D4EDD5118668F7\"", "properties": { - "thumbprintAlgorithm":"SHA1", - "thumbprint":"0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", + "thumbprintAlgorithm": "SHA1", + "thumbprint": "0A0E4F50D51BEADEAC1D35AFC5116098E7902E6E", "provisioningState": "Succeeded", - "provisioningStateTransitionTime":"2017-07-21T01:47:38.4420202Z", + "provisioningStateTransitionTime": "2017-07-21T01:47:38.4420202Z", "format": "Pfx", - "publicData":"MIICrjCCAZagAwI..." + "publicData": "MIICrjCCAZagAwI..." } } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationCheckNameAvailability_AlreadyExists.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationCheckNameAvailability_AlreadyExists.json index fbd5ed25251f..538aa4a72ca0 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationCheckNameAvailability_AlreadyExists.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationCheckNameAvailability_AlreadyExists.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationCheckNameAvailability_Available.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationCheckNameAvailability_Available.json index 6a3e9d770b5e..eab309be5075 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationCheckNameAvailability_Available.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationCheckNameAvailability_Available.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationGetQuotas.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationGetQuotas.json index 37d2e3e7c878..79d91ef60668 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationGetQuotas.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/LocationGetQuotas.json @@ -11,4 +11,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_CustomImage.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_CustomImage.json index 43b079492fc9..d5b0c67fccb5 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_CustomImage.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_CustomImage.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_FullExample.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_FullExample.json index ba07e157d8c8..dde5b7fd1a77 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_FullExample.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_FullExample.json @@ -256,4 +256,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json index 2d1aec7986b8..f7f4108090db 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_MinimalCloudServiceConfiguration.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json index 69cac7dbea42..2b9ccb4e784c 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_MinimalVirtualMachineConfiguration.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_VirtualMachineConfiguration.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_VirtualMachineConfiguration.json index 342cf9f4e564..8ecd8802f18e 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_VirtualMachineConfiguration.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolCreate_VirtualMachineConfiguration.json @@ -160,4 +160,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolDelete.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolDelete.json index 0380c99118ce..8465ce0e73d9 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolDelete.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolDelete.json @@ -7,8 +7,8 @@ "api-version": "2019-04-01" }, "responses": { - "200": { }, - "204": { }, + "200": {}, + "204": {}, "202": { "headers": { "Retry-After": "15", @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolDisableAutoScale.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolDisableAutoScale.json index 11ff186d1dd0..be1451c0812c 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolDisableAutoScale.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolDisableAutoScale.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolGet.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolGet.json index be1358781450..adbedc659a99 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolGet.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolGet.json @@ -145,4 +145,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolList.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolList.json index 90fced05afd1..cebf3715317d 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolList.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolList.json @@ -152,4 +152,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolListWithFilter.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolListWithFilter.json index 7e9b8cc6c911..4c47e72abe33 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolListWithFilter.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolListWithFilter.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolStopResize.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolStopResize.json index c852f6993164..c829191550fa 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolStopResize.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolStopResize.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_EnableAutoScale.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_EnableAutoScale.json index 6c6e19f2223a..2edc9459c904 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_EnableAutoScale.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_EnableAutoScale.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_OtherProperties.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_OtherProperties.json index d375c024b7c4..be86d8a6295c 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_OtherProperties.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_OtherProperties.json @@ -112,4 +112,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_RemoveStartTask.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_RemoveStartTask.json index 9843589aa33f..5077985338ad 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_RemoveStartTask.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_RemoveStartTask.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_ResizePool.json b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_ResizePool.json index bc1f7a0f6520..a179a891ffd7 100644 --- a/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_ResizePool.json +++ b/specification/batch/resource-manager/Microsoft.Batch/stable/2019-04-01/examples/PoolUpdate_ResizePool.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/billing.json b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/billing.json index 7107010b5fd5..7546ebcafed2 100644 --- a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/billing.json +++ b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/billing.json @@ -148,7 +148,7 @@ }, "202": { "description": "Accepted. Billing account update is in progress." - }, + }, "default": { "description": "Error response describing why the operation failed.", "schema": { @@ -3565,25 +3565,25 @@ } } }, - "ValidateAddressResponse": { - "type":"object", - "description" :" Result of the address validation", - "properties" : { - "status": { - "description": "status of the address validation.", - "$ref": "#/definitions/AddressValidationStatus" - }, - "suggestedAddresses": { - "description": "list of suggested addresses.", - "type": "array", - "items": { - "$ref": "#/definitions/Address" + "ValidateAddressResponse": { + "type": "object", + "description": " Result of the address validation", + "properties": { + "status": { + "description": "status of the address validation.", + "$ref": "#/definitions/AddressValidationStatus" + }, + "suggestedAddresses": { + "description": "list of suggested addresses.", + "type": "array", + "items": { + "$ref": "#/definitions/Address" + } + }, + "validationMessage": { + "description": "Validation error message.", + "type": "string" } - }, - "validationMessage" : { - "description": "Validation error message.", - "type": "string" - } } }, "AddressValidationStatus": { @@ -3597,7 +3597,7 @@ "name": "addressValidationStatus", "modelAsString": true } - }, + }, "InitiateTransferProperties": { "type": "object", "description": "Request parameters to initiate transfer.", diff --git a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/UpdateBillingAccount.json b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/UpdateBillingAccount.json index 693af0eb8693..bcd167458350 100644 --- a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/UpdateBillingAccount.json +++ b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/UpdateBillingAccount.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateAddressInvalid.json b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateAddressInvalid.json index d397f2ceddef..cef8bdaeb63f 100644 --- a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateAddressInvalid.json +++ b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateAddressInvalid.json @@ -7,37 +7,37 @@ "region": "wa", "postalCode": "98004", "country": "us" - } + } }, "responses": { "200": { "body": { - "status": "Invalid", - "suggestedAddresses": [ - { - "country": "US", - "region": "WA", - "city": "Bellevue", - "addressLine1": "100 110th Ave NE", - "postalCode": "98004" - }, - { - "country": "US", - "region": "WA", - "city": "Bellevue", - "addressLine1": "102 110th Ave NE", - "postalCode": "98004-5804" - }, - { - "country": "US", - "region": "WA", - "city": "Bellevue", - "addressLine1": "104 110th Ave NE", - "postalCode": "98004-5804" - } - ], - "validationMessage" : "Invalid address" - } - } + "status": "Invalid", + "suggestedAddresses": [ + { + "country": "US", + "region": "WA", + "city": "Bellevue", + "addressLine1": "100 110th Ave NE", + "postalCode": "98004" + }, + { + "country": "US", + "region": "WA", + "city": "Bellevue", + "addressLine1": "102 110th Ave NE", + "postalCode": "98004-5804" + }, + { + "country": "US", + "region": "WA", + "city": "Bellevue", + "addressLine1": "104 110th Ave NE", + "postalCode": "98004-5804" + } + ], + "validationMessage": "Invalid address" + } + } } -} \ No newline at end of file +} diff --git a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateAddressValid.json b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateAddressValid.json index 7ce28c1f7523..efff459f6a34 100644 --- a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateAddressValid.json +++ b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateAddressValid.json @@ -7,22 +7,22 @@ "region": "wa", "postalCode": "98004", "country": "us" - } + } }, "responses": { "200": { "body": { - "status": "Valid", - "suggestedAddresses": [ - { - "country": "US", - "region": "WA", - "city": "Bellevue", - "addressLine1": "555 110th Ave NE", - "postalCode": "98004-5124" - } - ] - } - } + "status": "Valid", + "suggestedAddresses": [ + { + "country": "US", + "region": "WA", + "city": "Bellevue", + "addressLine1": "555 110th Ave NE", + "postalCode": "98004-5124" + } + ] + } + } } -} \ No newline at end of file +} diff --git a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateProductTransferFailure.json b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateProductTransferFailure.json index de33919caad3..1f3396204209 100644 --- a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateProductTransferFailure.json +++ b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateProductTransferFailure.json @@ -14,10 +14,10 @@ "body": { "isTransferEligible": false, "errorDetails": { - "code" : "ProductTypeNotSupported", - "message" : "Product '{productName}' is not allowed to be transferred." + "code": "ProductTypeNotSupported", + "message": "Product '{productName}' is not allowed to be transferred." } } } } -} \ No newline at end of file +} diff --git a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateProductTransferSuccess.json b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateProductTransferSuccess.json index 7edb141ae853..c05be235d44d 100644 --- a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateProductTransferSuccess.json +++ b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateProductTransferSuccess.json @@ -12,8 +12,8 @@ "responses": { "200": { "body": { - "isTransferEligible": true - } - } + "isTransferEligible": true + } + } } -} \ No newline at end of file +} diff --git a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateSubscriptionTransferFailure.json b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateSubscriptionTransferFailure.json index e0004f41cd19..a342d036c8af 100644 --- a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateSubscriptionTransferFailure.json +++ b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateSubscriptionTransferFailure.json @@ -14,10 +14,10 @@ "body": { "isTransferEligible": false, "errorDetails": { - "code" : "SubscriptionNotActive", - "message" : "Invoice Sections can only be changed for active subscriptions." + "code": "SubscriptionNotActive", + "message": "Invoice Sections can only be changed for active subscriptions." } } } } -} \ No newline at end of file +} diff --git a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateSubscriptionTransferSuccess.json b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateSubscriptionTransferSuccess.json index c5e93cf366ec..c007d9775dd0 100644 --- a/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateSubscriptionTransferSuccess.json +++ b/specification/billing/resource-manager/Microsoft.Billing/preview/2018-11-01-preview/examples/ValidateSubscriptionTransferSuccess.json @@ -12,8 +12,8 @@ "responses": { "200": { "body": { - "isTransferEligible": true - } - } + "isTransferEligible": true + } + } } -} \ No newline at end of file +} diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/blockchain.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/blockchain.json index 2cde3a49e51e..8fc167645305 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/blockchain.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/blockchain.json @@ -948,7 +948,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/TrackedResource" + "$ref": "#/definitions/TrackedResource" } ], "properties": { @@ -1065,12 +1065,12 @@ "description": "Tags of the service which is a list of key value pairs that describes the resource.", "type": "object", "additionalProperties": { - "type": "string" + "type": "string" }, "x-ms-mutability": [ - "read", - "create", - "update" + "read", + "create", + "update" ] }, "properties": { @@ -1079,13 +1079,13 @@ "x-ms-client-flatten": true } } - }, + }, "BlockchainMemberPropertiesUpdate": { "description": "Update the payload of the blockchain member properties for a blockchain member.", "type": "object", "allOf": [ { - "$ref": "#/definitions/TransactionNodePropertiesUpdate" + "$ref": "#/definitions/TransactionNodePropertiesUpdate" } ], "properties": { @@ -1466,7 +1466,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/Resource" + "$ref": "#/definitions/Resource" } ], "properties": { @@ -1581,52 +1581,52 @@ "description": "The resource model definition for a top level resource.", "type": "object", "allOf": [ - { - "$ref": "#/definitions/Resource" - } + { + "$ref": "#/definitions/Resource" + } ], "properties": { - "location": { - "description": "The GEO location of the blockchain service.", - "type": "string", - "x-ms-mutability": [ - "read", - "create" - ] - }, - "tags": { - "description": "Tags of the service which is a list of key value pairs that describes the resource.", - "type": "object", - "additionalProperties": { - "type": "string" - }, - "x-ms-mutability": [ - "read", - "create", - "update" - ] - } + "location": { + "description": "The GEO location of the blockchain service.", + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "tags": { + "description": "Tags of the service which is a list of key value pairs that describes the resource.", + "type": "object", + "additionalProperties": { + "type": "string" + }, + "x-ms-mutability": [ + "read", + "create", + "update" + ] + } } }, "Resource": { "description": "The core properties of the resources.", "type": "object", "properties": { - "id": { - "description": "Fully qualified resource Id of the resource.", - "type": "string", - "readOnly": true - }, - "name": { - "description": "The name of the resource.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "The type of the service - e.g. \"Microsoft.Blockchain\"", - "type": "string", - "readOnly": true - } + "id": { + "description": "Fully qualified resource Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "The name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "The type of the service - e.g. \"Microsoft.Blockchain\"", + "type": "string", + "readOnly": true + } }, "x-ms-azure-resource": true } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMemberOperationResults_Get.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMemberOperationResults_Get.json index 436b17b45a43..53aaf3eeb299 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMemberOperationResults_Get.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMemberOperationResults_Get.json @@ -1,18 +1,18 @@ { - "parameters": { + "parameters": { "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", "locationName": "southeastasia", "operationId": "12f4b309-01e3-4fcf-bc0b-1cc034ca03f8", "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "name": "DeleteTransactionNode", - "startTime": "2018-06-23T22:34:00.330Z", - "endTime": "2018-06-23T22:28:04.677Z" - } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "name": "DeleteTransactionNode", + "startTime": "2018-06-23T22:34:00.330Z", + "endTime": "2018-06-23T22:28:04.677Z" + } }, "204": {} } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Create.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Create.json index 65ad503e69f7..dc0b961b6ca7 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Create.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Create.json @@ -1,78 +1,78 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "api-version": "2018-06-01-preview", - "blockchainMember": { - "location": "southeastasia", - "properties": { - "validatorNodesSku": { - "capacity": 2 - }, - "protocol": "Quorum", - "password": "$@123_34#&", - "consortium": "ContoseConsortium", - "consortiumManagementAccountPassword": "$@123_34#&" - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "api-version": "2018-06-01-preview", + "blockchainMember": { + "location": "southeastasia", + "properties": { + "validatorNodesSku": { + "capacity": 2 + }, + "protocol": "Quorum", + "password": "$@123_34#&", + "consortium": "ContoseConsortium", + "consortiumManagementAccountPassword": "$@123_34#&" + } + } + }, + "responses": { + "201": { + "headers": {}, + "body": { + "location": "southeastasia", + "name": "contosemember1", + "properties": { + "protocol": "Quorum", + "validatorNodesSku": { + "capacity": 2 + }, + "provisioningState": "Updating", + "dns": null, + "userName": "contosemember1", + "password": null, + "consortium": "ContoseConsortium", + "consortiumManagementAccountAddress": null, + "consortiumManagementAccountPassword": null, + "consortiumRole": null, + "consortiumMemberDisplayName": null, + "rootContractAddress": null, + "publicKey": null, + "firewallRules": null + }, + "type": "Microsoft.Blockchain/blockchainMembers", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1", + "tags": null + } }, - "responses": { - "201": { - "headers": {}, - "body": { - "location": "southeastasia", - "name": "contosemember1", - "properties": { - "protocol": "Quorum", - "validatorNodesSku": { - "capacity": 2 - }, - "provisioningState": "Updating", - "dns": null, - "userName": "contosemember1", - "password": null, - "consortium": "ContoseConsortium", - "consortiumManagementAccountAddress": null, - "consortiumManagementAccountPassword": null, - "consortiumRole": null, - "consortiumMemberDisplayName": null, - "rootContractAddress": null, - "publicKey": null, - "firewallRules": null - }, - "type": "Microsoft.Blockchain/blockchainMembers", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1", - "tags": null - } + "200": { + "headers": {}, + "body": { + "location": "southeastasia", + "name": "contosemember1", + "properties": { + "protocol": "Quorum", + "validatorNodesSku": { + "capacity": 2 + }, + "provisioningState": "Updating", + "dns": null, + "userName": "contosemember1", + "password": null, + "consortium": "ContoseConsortium", + "consortiumManagementAccountAddress": null, + "consortiumManagementAccountPassword": null, + "consortiumRole": null, + "consortiumMemberDisplayName": null, + "rootContractAddress": null, + "publicKey": null, + "firewallRules": null }, - "200": { - "headers": {}, - "body": { - "location": "southeastasia", - "name": "contosemember1", - "properties": { - "protocol": "Quorum", - "validatorNodesSku": { - "capacity": 2 - }, - "provisioningState": "Updating", - "dns": null, - "userName": "contosemember1", - "password": null, - "consortium": "ContoseConsortium", - "consortiumManagementAccountAddress": null, - "consortiumManagementAccountPassword": null, - "consortiumRole": null, - "consortiumMemberDisplayName": null, - "rootContractAddress": null, - "publicKey": null, - "firewallRules": null - }, - "type": "Microsoft.Blockchain/blockchainMembers", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1", - "tags": null - } - } + "type": "Microsoft.Blockchain/blockchainMembers", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1", + "tags": null + } } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Delete.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Delete.json index a3cab6ef4846..68a02eab33f1 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Delete.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Delete.json @@ -1,12 +1,12 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "api-version": "2018-06-01-preview" - }, - "responses": { - "202": {}, - "204": {} - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "api-version": "2018-06-01-preview" + }, + "responses": { + "202": {}, + "204": {} + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Get.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Get.json index 14b4128b3278..e384e2a62ecc 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Get.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Get.json @@ -1,38 +1,38 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "location": "southeastasia", - "name": "contosemember1", - "properties": { - "protocol": "Quorum", - "validatorNodesSku": { - "capacity": 2 - }, - "provisioningState": "Succeeded", - "dns": "contosemember1.blockchain.azure.com", - "userName": "contosemember1", - "password": null, - "consortium": "ContoseConsortium", - "consortiumManagementAccountAddress": "0xc40d40dedc353885d3e8393735cf799e4d7fe38c", - "consortiumManagementAccountPassword": null, - "consortiumRole": "ADMIN", - "consortiumMemberDisplayName": "contosemember1", - "rootContractAddress": "0x7407947df2f67142340ca7d1a2c120f0dbfd30e1", - "publicKey": "1VhPX4PbNGnE9dOEjgTrw92dltBpKxFQjXWNugcwvl0=", - "firewallRules": null - }, - "type": "Microsoft.Blockchain/blockchainMembers", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1", - "tags": null - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "location": "southeastasia", + "name": "contosemember1", + "properties": { + "protocol": "Quorum", + "validatorNodesSku": { + "capacity": 2 + }, + "provisioningState": "Succeeded", + "dns": "contosemember1.blockchain.azure.com", + "userName": "contosemember1", + "password": null, + "consortium": "ContoseConsortium", + "consortiumManagementAccountAddress": "0xc40d40dedc353885d3e8393735cf799e4d7fe38c", + "consortiumManagementAccountPassword": null, + "consortiumRole": "ADMIN", + "consortiumMemberDisplayName": "contosemember1", + "rootContractAddress": "0x7407947df2f67142340ca7d1a2c120f0dbfd30e1", + "publicKey": "1VhPX4PbNGnE9dOEjgTrw92dltBpKxFQjXWNugcwvl0=", + "firewallRules": null + }, + "type": "Microsoft.Blockchain/blockchainMembers", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1", + "tags": null + } } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_List.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_List.json index 31034cb8b713..ac466ecb6ddd 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_List.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_List.json @@ -1,42 +1,41 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "location": "southeastasia", - "name": "contosemember1", - "properties": { - "protocol": "Quorum", - "validatorNodesSku": { - "capacity": 2 - }, - "provisioningState": "Succeeded", - "dns": "contosemember1.blockchain.azure.com", - "userName": "contosemember1", - "password": null, - "consortium": "ContoseConsortium", - "consortiumManagementAccountAddress": null, - "consortiumManagementAccountPassword": null, - "consortiumRole": "ADMIN", - "consortiumMemberDisplayName": "contosemember1", - "rootContractAddress": "0x7407947df2f67142340ca7d1a2c120f0dbfd30e1", - "publicKey": "1VhPX4PbNGnE9dOEjgTrw92dltBpKxFQjXWNugcwvl0=", - "firewallRules": null - }, - "type": "Microsoft.Blockchain/blockchainMembers", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1", - "tags": null - } - ] - - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "location": "southeastasia", + "name": "contosemember1", + "properties": { + "protocol": "Quorum", + "validatorNodesSku": { + "capacity": 2 + }, + "provisioningState": "Succeeded", + "dns": "contosemember1.blockchain.azure.com", + "userName": "contosemember1", + "password": null, + "consortium": "ContoseConsortium", + "consortiumManagementAccountAddress": null, + "consortiumManagementAccountPassword": null, + "consortiumRole": "ADMIN", + "consortiumMemberDisplayName": "contosemember1", + "rootContractAddress": "0x7407947df2f67142340ca7d1a2c120f0dbfd30e1", + "publicKey": "1VhPX4PbNGnE9dOEjgTrw92dltBpKxFQjXWNugcwvl0=", + "firewallRules": null + }, + "type": "Microsoft.Blockchain/blockchainMembers", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1", + "tags": null + } + ] + } } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListAll.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListAll.json index 3b1f0f20c541..31c0b496539f 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListAll.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListAll.json @@ -1,41 +1,40 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "location": "southeastasia", - "name": "contosemember1", - "properties": { - "protocol": "Quorum", - "validatorNodesSku": { - "capacity": 2 - }, - "provisioningState": "Succeeded", - "dns": "contosemember1.blockchain.azure.com", - "userName": "contosemember1", - "password": null, - "consortium": "ContoseConsortium", - "consortiumManagementAccountAddress": null, - "consortiumManagementAccountPassword": null, - "consortiumRole": "ADMIN", - "consortiumMemberDisplayName": "contosemember1", - "rootContractAddress": "0x7407947df2f67142340ca7d1a2c120f0dbfd30e1", - "publicKey": "1VhPX4PbNGnE9dOEjgTrw92dltBpKxFQjXWNugcwvl0=", - "firewallRules": null - }, - "type": "Microsoft.Blockchain/blockchainMembers", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1", - "tags": null - } - ] - - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "location": "southeastasia", + "name": "contosemember1", + "properties": { + "protocol": "Quorum", + "validatorNodesSku": { + "capacity": 2 + }, + "provisioningState": "Succeeded", + "dns": "contosemember1.blockchain.azure.com", + "userName": "contosemember1", + "password": null, + "consortium": "ContoseConsortium", + "consortiumManagementAccountAddress": null, + "consortiumManagementAccountPassword": null, + "consortiumRole": "ADMIN", + "consortiumMemberDisplayName": "contosemember1", + "rootContractAddress": "0x7407947df2f67142340ca7d1a2c120f0dbfd30e1", + "publicKey": "1VhPX4PbNGnE9dOEjgTrw92dltBpKxFQjXWNugcwvl0=", + "firewallRules": null + }, + "type": "Microsoft.Blockchain/blockchainMembers", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1", + "tags": null + } + ] + } } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListApiKeys.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListApiKeys.json index 6dfac89cdccf..c3099f22e9fb 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListApiKeys.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListApiKeys.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "keys": [ - { - "keyName": "key1", - "value": "-EnIUzu29xj60xPJmstyCURo" - }, - { - "keyName": "key2", - "value": "I8P-q4u_WDuCZUBYXnJ3yYX7" - } - ] - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "keys": [ + { + "keyName": "key1", + "value": "-EnIUzu29xj60xPJmstyCURo" + }, + { + "keyName": "key2", + "value": "I8P-q4u_WDuCZUBYXnJ3yYX7" + } + ] + } } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListConsortiumMembers.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListConsortiumMembers.json index 607c2a2cb330..b3ecb14a0afd 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListConsortiumMembers.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListConsortiumMembers.json @@ -1,35 +1,35 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "name": "contosemember1", - "displayName": "Contose member 1", - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "role": "Member", - "status": "Ready", - "joinDate": "2019-04-23T22:34:00.330Z", - "dateModified": "2019-04-23T22:34:00.330Z" - }, - { - "name": "", - "displayName": null, - "subscriptionId": "02bf808a-5446-4e54-aea8-39723aaa05e7", - "role": "ADMIN", - "status": "Invited", - "joinDate": null, - "dateModified": "2019-06-23T22:34:00.330Z" - } - ] - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "name": "contosemember1", + "displayName": "Contose member 1", + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "role": "Member", + "status": "Ready", + "joinDate": "2019-04-23T22:34:00.330Z", + "dateModified": "2019-04-23T22:34:00.330Z" + }, + { + "name": "", + "displayName": null, + "subscriptionId": "02bf808a-5446-4e54-aea8-39723aaa05e7", + "role": "ADMIN", + "status": "Invited", + "joinDate": null, + "dateModified": "2019-06-23T22:34:00.330Z" + } + ] + } } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListRegenerateApiKeys.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListRegenerateApiKeys.json index 372a6013e945..ad32ebfc113e 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListRegenerateApiKeys.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_ListRegenerateApiKeys.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "api-version": "2018-06-01-preview", - "apiKey": { - "keyName": "key1" - } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "keys": [ - { - "keyName": "key1", - "value": "-EnIUzu29xj60xPJmstyCURo" - }, - { - "keyName": "key2", - "value": "-EHio4yRJLxajDaxRNaoD7cZ" - } - ] - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "api-version": "2018-06-01-preview", + "apiKey": { + "keyName": "key1" } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "keys": [ + { + "keyName": "key1", + "value": "-EnIUzu29xj60xPJmstyCURo" + }, + { + "keyName": "key2", + "value": "-EHio4yRJLxajDaxRNaoD7cZ" + } + ] + } + } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Update.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Update.json index ec8ec60ec8d0..0e5b08b2ba45 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Update.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/BlockchainMembers_Update.json @@ -1,45 +1,45 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "ContoseMember1", - "api-version": "2018-06-01-preview", - "blockchainMember": { - "properties": { - "password": "$@123_34#&", - "consortiumManagementAccountPassword": "$@123_34#&", - "firewallRules": null - }, - "tags": null - } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "location": "southeastasia", - "name": "ContoseMember1", - "properties": { - "protocol": "Quorum", - "validatorNodesSku": { - "capacity": 2 - }, - "provisioningState": "Succeeded", - "dns": null, - "userName": "testuser1", - "password": null, - "consortium": "ContoseConsortium", - "consortiumManagementAccountAddress": null, - "consortiumManagementAccountPassword": null, - "consortiumRole": "ADMIN", - "consortiumMemberDisplayName": "contosemember1", - "rootContractAddress": null, - "publicKey": null - }, - "type": "Microsoft.Blockchain/blockchainMembers", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/ContoseMember1", - "tags": null - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "ContoseMember1", + "api-version": "2018-06-01-preview", + "blockchainMember": { + "properties": { + "password": "$@123_34#&", + "consortiumManagementAccountPassword": "$@123_34#&", + "firewallRules": null + }, + "tags": null } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "location": "southeastasia", + "name": "ContoseMember1", + "properties": { + "protocol": "Quorum", + "validatorNodesSku": { + "capacity": 2 + }, + "provisioningState": "Succeeded", + "dns": null, + "userName": "testuser1", + "password": null, + "consortium": "ContoseConsortium", + "consortiumManagementAccountAddress": null, + "consortiumManagementAccountPassword": null, + "consortiumRole": "ADMIN", + "consortiumMemberDisplayName": "contosemember1", + "rootContractAddress": null, + "publicKey": null + }, + "type": "Microsoft.Blockchain/blockchainMembers", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/ContoseMember1", + "tags": null + } + } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Locations_CheckNameAvailability.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Locations_CheckNameAvailability.json index b3f9debd9117..fd687110f82b 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Locations_CheckNameAvailability.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Locations_CheckNameAvailability.json @@ -1,21 +1,21 @@ { - "parameters": { + "parameters": { "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", "api-version": "2018-06-01-preview", "locationName": "southeastasia", - "nameAvailabilityRequest" : { - "name": "contosemember1", - "type": "Microsoft.Blockchain/blockchainMembers" + "nameAvailabilityRequest": { + "name": "contosemember1", + "type": "Microsoft.Blockchain/blockchainMembers" + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "nameAvailable": false, + "message": "A blockchain member named 'contosemember1' is already in use.", + "reason": "AlreadyExists" } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "nameAvailable": false, - "message": "A blockchain member named 'contosemember1' is already in use.", - "reason": "AlreadyExists" - } } } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Locations_ListConsortiums.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Locations_ListConsortiums.json index c3dcce63ebd6..8f43501f1591 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Locations_ListConsortiums.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Locations_ListConsortiums.json @@ -1,28 +1,28 @@ { - "parameters": { + "parameters": { "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", "locationName": "southeastasia", "api-version": "2018-06-01-preview" }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "name": "gebiconsortium1", - "protocol": "Parity" - }, - { - "name": "bwtestpsh", - "protocol": "Parity" - }, - { - "name": "jackyhsuconsortium", - "protocol": "Quorum" - } - ] - } + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "name": "gebiconsortium1", + "protocol": "Parity" + }, + { + "name": "bwtestpsh", + "protocol": "Parity" + }, + { + "name": "jackyhsuconsortium", + "protocol": "Quorum" + } + ] + } } } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Operations_List.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Operations_List.json index e6a40b26bac3..bb05a88f573e 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Operations_List.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Operations_List.json @@ -1,11 +1,11 @@ { - "parameters": { - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { + "parameters": { + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { "value": [ { "origin": null, @@ -164,5 +164,5 @@ ] } } - } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Skus_List.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Skus_List.json index 99b50f2bbb53..c7b6e1647342 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Skus_List.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/Skus_List.json @@ -1,13 +1,13 @@ { - "parameters": { + "parameters": { "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", "api-version": "2018-06-01-preview" }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ { "resourceType": "blockchainMembers", "skus": [ @@ -36,5 +36,5 @@ ] } } - } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Create.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Create.json index 798e573a388c..c67f8c60f4f6 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Create.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Create.json @@ -1,51 +1,51 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "transactionNodeName": "txnode2", - "api-version": "2018-06-01-preview", - "transactionNode": { - "location": "southeastasia", - "properties": { - "password": "$@123_34#&" - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "transactionNodeName": "txnode2", + "api-version": "2018-06-01-preview", + "transactionNode": { + "location": "southeastasia", + "properties": { + "password": "$@123_34#&" + } + } + }, + "responses": { + "201": { + "headers": {}, + "body": { + "location": "southeastasia", + "name": "txnode2", + "properties": { + "provisioningState": "Updating", + "dns": null, + "publicKey": null, + "userName": "txnode2", + "password": null, + "firewallRules": null + }, + "type": "Microsoft.Blockchain/blockchainMembers/transactionNodes", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2" + } }, - "responses": { - "201": { - "headers": {}, - "body": { - "location": "southeastasia", - "name": "txnode2", - "properties": { - "provisioningState": "Updating", - "dns": null, - "publicKey": null, - "userName": "txnode2", - "password": null, - "firewallRules": null - }, - "type": "Microsoft.Blockchain/blockchainMembers/transactionNodes", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2" - } + "200": { + "headers": {}, + "body": { + "location": "southeastasia", + "name": "txnode2", + "properties": { + "provisioningState": "Updating", + "dns": null, + "publicKey": null, + "userName": "txnode2", + "password": null, + "firewallRules": null }, - "200": { - "headers": {}, - "body": { - "location": "southeastasia", - "name": "txnode2", - "properties": { - "provisioningState": "Updating", - "dns": null, - "publicKey": null, - "userName": "txnode2", - "password": null, - "firewallRules": null - }, - "type": "Microsoft.Blockchain/blockchainMembers/transactionNodes", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2" - } - } + "type": "Microsoft.Blockchain/blockchainMembers/transactionNodes", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2" + } } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Delete.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Delete.json index 25d5c2664eaf..5173ef34a2cc 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Delete.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Delete.json @@ -1,13 +1,13 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "transactionNodeName": "txNode2", - "api-version": "2018-06-01-preview" - }, - "responses": { - "202": {}, - "204": {} - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "transactionNodeName": "txNode2", + "api-version": "2018-06-01-preview" + }, + "responses": { + "202": {}, + "204": {} + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Get.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Get.json index 12e149efbd99..8ccbe965cfdf 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Get.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Get.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "transactionNodeName": "txnode2", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "location": "southeastasia", - "name": "txnode2", - "properties": { - "provisioningState": "Succeeded", - "dns": "txnode2-contosemember1.blockchain.ppe.azure-int.net", - "publicKey": "h7Q10I/1dLK/hzX8FkVrfl03D/aX8jW3YNoxJ/n4vkY=", - "userName": "txnode2", - "password": null, - "firewallRules": null - }, - "type": "Microsoft.Blockchain/blockchainMembers/transactionNodes", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2" - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "transactionNodeName": "txnode2", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "location": "southeastasia", + "name": "txnode2", + "properties": { + "provisioningState": "Succeeded", + "dns": "txnode2-contosemember1.blockchain.ppe.azure-int.net", + "publicKey": "h7Q10I/1dLK/hzX8FkVrfl03D/aX8jW3YNoxJ/n4vkY=", + "userName": "txnode2", + "password": null, + "firewallRules": null + }, + "type": "Microsoft.Blockchain/blockchainMembers/transactionNodes", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2" + } } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_List.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_List.json index 1aa8e999f259..62d760a053de 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_List.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_List.json @@ -1,31 +1,31 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "location": "southeastasia", - "name": "txnode2", - "properties": { - "provisioningState": "Succeeded", - "dns": "txnode2-contosemember1.blockchain.azure.com", - "publicKey": "DbRYTorBtY7rZfNfByUQpdC+hD3k/0lfA7+UnH4ovWM=", - "userName": "txnode2", - "password": null, - "firewallRules": null - }, - "type": "Microsoft.Blockchain/blockchainMembers/transactionNodes", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2" - } - ] - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "location": "southeastasia", + "name": "txnode2", + "properties": { + "provisioningState": "Succeeded", + "dns": "txnode2-contosemember1.blockchain.azure.com", + "publicKey": "DbRYTorBtY7rZfNfByUQpdC+hD3k/0lfA7+UnH4ovWM=", + "userName": "txnode2", + "password": null, + "firewallRules": null + }, + "type": "Microsoft.Blockchain/blockchainMembers/transactionNodes", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2" + } + ] + } } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_ListApiKeys.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_ListApiKeys.json index 7bba22ff1ae1..e8cd9e7b1863 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_ListApiKeys.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_ListApiKeys.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "transactionNodeName": "txnode2", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "keys": [ - { - "keyName": "key1", - "value": "-EnIUzu29xj60xPJmstyCURo" - }, - { - "keyName": "key2", - "value": "I8P-q4u_WDuCZUBYXnJ3yYX7" - } - ] - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "transactionNodeName": "txnode2", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "keys": [ + { + "keyName": "key1", + "value": "-EnIUzu29xj60xPJmstyCURo" + }, + { + "keyName": "key2", + "value": "I8P-q4u_WDuCZUBYXnJ3yYX7" + } + ] + } } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_ListRegenerateApiKeys.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_ListRegenerateApiKeys.json index 48f69fc708fe..ae97057f2169 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_ListRegenerateApiKeys.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_ListRegenerateApiKeys.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "transactionNodeName": "txnode2", - "api-version": "2018-06-01-preview", - "apiKey": { - "keyName": "key1" - } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "keys": [ - { - "keyName": "key1", - "value": "-EnIUzu29xj60xPJmstyCURo" - }, - { - "keyName": "key2", - "value": "-EHio4yRJLxajDaxRNaoD7cZ" - } - ] - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "transactionNodeName": "txnode2", + "api-version": "2018-06-01-preview", + "apiKey": { + "keyName": "key1" } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "keys": [ + { + "keyName": "key1", + "value": "-EnIUzu29xj60xPJmstyCURo" + }, + { + "keyName": "key2", + "value": "-EHio4yRJLxajDaxRNaoD7cZ" + } + ] + } + } + } } diff --git a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Update.json b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Update.json index adb08b85e4e7..4db7bf67ace2 100644 --- a/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Update.json +++ b/specification/blockchain/resource-manager/Microsoft.Blockchain/preview/2018-06-01-preview/examples/TransactionNodes_Update.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", - "resourceGroupName": "mygroup", - "blockchainMemberName": "contosemember1", - "transactionNodeName": "txnode2", - "api-version": "2018-06-01-preview", - "transactionNode": { - "properties": { - "password": "$@123_34#&" - } - } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "location": "southeastasia", - "name": "txnode2", - "properties": { - "provisioningState": "Succeeded", - "dns": "txnode1-contosemember1.blockchain.azure.com", - "publicKey": "DbRYTorBtY7rZfNfByUQpdC+hD3k/0lfA7+UnH4ovWM=", - "userName": "txnode2", - "password": null, - "firewallRules": null - }, - "type": "Microsoft.Blockchain/blockchainMembers/transactionNodes", - "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2" - } - } + "parameters": { + "subscriptionId": "51766542-3ed7-4a72-a187-0c8ab644ddab", + "resourceGroupName": "mygroup", + "blockchainMemberName": "contosemember1", + "transactionNodeName": "txnode2", + "api-version": "2018-06-01-preview", + "transactionNode": { + "properties": { + "password": "$@123_34#&" + } } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "location": "southeastasia", + "name": "txnode2", + "properties": { + "provisioningState": "Succeeded", + "dns": "txnode1-contosemember1.blockchain.azure.com", + "publicKey": "DbRYTorBtY7rZfNfByUQpdC+hD3k/0lfA7+UnH4ovWM=", + "userName": "txnode2", + "password": null, + "firewallRules": null + }, + "type": "Microsoft.Blockchain/blockchainMembers/transactionNodes", + "id": "/subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2" + } + } + } } diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/botservice.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/botservice.json index c4c0937d18bb..17d42ea04a8a 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/botservice.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/botservice.json @@ -762,7 +762,7 @@ } } } - } + } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/Connections/{connectionName}": { "put": { @@ -1904,7 +1904,7 @@ ], "properties": { "properties": { - "$ref": "#/definitions/ConnectionSettingProperties", + "$ref": "#/definitions/ConnectionSettingProperties", "description": "The set of properties specific to bot channel resource" } } @@ -1990,7 +1990,7 @@ "description": "Display Name of the Service Provider", "readOnly": true }, - "serviceProviderName": { + "serviceProviderName": { "type": "string", "description": "Display Name of the Service Provider", "readOnly": true @@ -2212,38 +2212,38 @@ "modelAsString": false, "values": [ { - "value": "FacebookChannel" + "value": "FacebookChannel" }, { - "value": "EmailChannel" + "value": "EmailChannel" }, { - "value": "KikChannel" + "value": "KikChannel" }, { - "value": "TelegramChannel" + "value": "TelegramChannel" }, { - "value": "SlackChannel" + "value": "SlackChannel" }, { - "value": "MsTeamsChannel" + "value": "MsTeamsChannel" }, { - "value": "SkypeChannel" + "value": "SkypeChannel" }, { - "value": "WebChatChannel" + "value": "WebChatChannel" }, { - "value": "DirectLineChannel" + "value": "DirectLineChannel" }, { - "value": "SmsChannel" + "value": "SmsChannel" } ] }, "description": "The name of the Channel resource." } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/CheckNameAvailability.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/CheckNameAvailability.json index 76879ee47152..9fcfe64e34f5 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/CheckNameAvailability.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/CheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/CreateBot.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/CreateBot.json index 93aef41e70a4..d996c2ff1856 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/CreateBot.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/CreateBot.json @@ -105,4 +105,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteBot.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteBot.json index 08b09eeb7aaa..db0a9ac54feb 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteBot.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteBot.json @@ -6,9 +6,7 @@ "resourceName": "samplebotname" }, "responses": { - "200": { - }, - "204": { - } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteChannel.json index 3ef121f395fe..e4d585042a4e 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteChannel.json @@ -1,15 +1,13 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "channelName": "EmailChannel" - }, - "responses": { - "200": { - }, - "204": { - } - } - } \ No newline at end of file + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "channelName": "EmailChannel" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteConnection.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteConnection.json index 7f11a36734a0..cbf6b1cbcae2 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteConnection.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/DeleteConnection.json @@ -1,15 +1,13 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "connectionName": "sampleConnection" - }, - "responses": { - "200": { - }, - "204": { - } - } - } \ No newline at end of file + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "connectionName": "sampleConnection" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetBot.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetBot.json index 2a350bd44f8c..2f10fc01f960 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetBot.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetBot.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetChannel.json index b4d47e2ff7bd..347067a44c35 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetChannel.json @@ -1,24 +1,24 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "channelName": "EmailChannel" - }, - "responses": { - "200": { - "body": { - "location": "global", + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "channelName": "EmailChannel" + }, + "responses": { + "200": { + "body": { + "location": "global", + "properties": { + "channelName": "EmailChannel", "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true } } } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetConnection.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetConnection.json index c77afa08e4f4..68d996399fbb 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetConnection.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetConnection.json @@ -1,36 +1,36 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "connectionName": "sampleConnection" - }, - "responses": { - "200": { - "body": { - "location": "global", - "id": "someid", - "etag": "etag1", - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "serviceProviderDisplayName": "serviceProviderDisplayName", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] - } + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "connectionName": "sampleConnection" + }, + "responses": { + "200": { + "body": { + "location": "global", + "id": "someid", + "etag": "etag1", + "name": "The Name of the Connection Setting", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "serviceProviderDisplayName": "serviceProviderDisplayName", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" + } + ] } } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetOperations.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetOperations.json index 1f4b66c26e48..69c51e28cc39 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetOperations.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/GetOperations.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListBotsByResourceGroup.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListBotsByResourceGroup.json index 848588797bff..a4149dff51f7 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListBotsByResourceGroup.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListBotsByResourceGroup.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListBotsBySubscription.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListBotsBySubscription.json index d67462778e86..e9b7512bea46 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListBotsBySubscription.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListBotsBySubscription.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListChannel.json index e67f9a9991cc..9e40a9715f36 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListChannel.json @@ -1,27 +1,27 @@ { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "channelName": "EmailChannel", "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "channelName": "EmailChannel", - "parameters": { - "location": "global" - } - }, - "responses": { - "200": { - "body": { - "location": "global", + "location": "global" + } + }, + "responses": { + "200": { + "body": { + "location": "global", + "properties": { + "channelName": "EmailChannel", "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true } } } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListChannelsByBotService.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListChannelsByBotService.json index 2f6126c6eef8..679c19597e75 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListChannelsByBotService.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListChannelsByBotService.json @@ -1,46 +1,46 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "resourceName": "samplebotname", - "api-version": "2017-01-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "location": "global", + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "resourceName": "samplebotname", + "api-version": "2017-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "location": "global", + "properties": { + "channelName": "EmailChannel", "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true } - }, - { - "location": "global", + } + }, + { + "location": "global", + "properties": { + "channelName": "FacebookChannel", "properties": { - "channelName": "FacebookChannel", - "properties":{ - "verifyToken": "othertoken", - "appId": "id", - "appSecret": "secret", - "callbackUrl": "appid", - "isEnabled": true, - "pages": [ - { - "accessToken": "token", - "id": "id" - } - ] - } + "verifyToken": "othertoken", + "appId": "id", + "appSecret": "secret", + "callbackUrl": "appid", + "isEnabled": true, + "pages": [ + { + "accessToken": "token", + "id": "id" + } + ] } } - ] - } + } + ] } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListConnectionsByBotService.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListConnectionsByBotService.json index 49c377536a72..e43d92231c3a 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListConnectionsByBotService.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListConnectionsByBotService.json @@ -1,35 +1,35 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "The Name of the Connection Setting", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" } - } - ] + ] + } + } + ] } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListServiceProviders.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListServiceProviders.json index ff0c08f4bb8d..b74af64b98b1 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListServiceProviders.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/ListServiceProviders.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "api-version": "2017-01-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "id": "sampleId", - "displayName": "sample display name", - "serviceProviderName": "sampleServiceProvider", - "devPortalUrl": "sampleDevPortalUrl", - "iconUrl": "sampleIconUrl", - "parameters": [ - { - "name": "sampleParameterName", - "type": "sampleParameterType", - "displayName": "sampleDisplayName", - "description": "sampleDescription", - "helpUrl": "sampleHelpUrl", - "default": "sampleDefaultValue" - } - ] + "parameters": { + "subscriptionId": "subscription-id", + "api-version": "2017-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "id": "sampleId", + "displayName": "sample display name", + "serviceProviderName": "sampleServiceProvider", + "devPortalUrl": "sampleDevPortalUrl", + "iconUrl": "sampleIconUrl", + "parameters": [ + { + "name": "sampleParameterName", + "type": "sampleParameterType", + "displayName": "sampleDisplayName", + "description": "sampleDescription", + "helpUrl": "sampleHelpUrl", + "default": "sampleDefaultValue" } - } - ] + ] + } + } + ] } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/PutChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/PutChannel.json index e14c2fd30a52..7b9f1bb62567 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/PutChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/PutChannel.json @@ -1,15 +1,29 @@ { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "channelName": "EmailChannel", "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "channelName": "EmailChannel", - "parameters": { + "location": "global", + "properties": { + "channelName": "EmailChannel", + "properties": { + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true + } + } + } + }, + "responses": { + "200": { + "body": { "location": "global", "properties": { "channelName": "EmailChannel", - "properties":{ + "properties": { "emailAddress": "a@b.com", "password": "pwd", "isEnabled": true @@ -17,32 +31,18 @@ } } }, - "responses": { - "200": { - "body": { - "location": "global", - "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } - } - } - }, - "201": { - "body": { - "location": "global", + "201": { + "body": { + "location": "global", + "properties": { + "channelName": "EmailChannel", "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true } } } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/PutConnection.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/PutConnection.json index 513f1bd473c5..d010920c65a2 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/PutConnection.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/PutConnection.json @@ -1,84 +1,84 @@ { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "connectionName": "sampleConnection", "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "connectionName": "sampleConnection", - "parameters": { - "location": "West US", - "etag": "etag1", - "name": "samplename", - "type": "sampletype", + "location": "West US", + "etag": "etag1", + "name": "samplename", + "type": "sampletype", + "id": "someid", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "location": "global", "id": "someid", + "etag": "etag1", + "name": "The Name of the Connection Setting", "properties": { "clientId": "sampleclientid", "clientSecret": "samplesecret", "scopes": "samplescope", "serviceProviderId": "serviceproviderid", + "serviceProviderDisplayName": "serviceProviderDisplayName", "parameters": [ { - "key": "key1", - "value": "value1" + "key": "key1", + "value": "value1" }, { - "key": "key2", - "value": "value2" + "key": "key2", + "value": "value2" } ] } } }, - "responses": { - "200": { - "body": { - "location": "global", - "id": "someid", - "etag": "etag1", - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "serviceProviderDisplayName": "serviceProviderDisplayName", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] - } - } - }, - "201": { - "body": { - "location": "global", - "id": "someid", - "etag": "etag1", - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "serviceProviderDisplayName": "serviceProviderDisplayName", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] - } + "201": { + "body": { + "location": "global", + "id": "someid", + "etag": "etag1", + "name": "The Name of the Connection Setting", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "serviceProviderDisplayName": "serviceProviderDisplayName", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" + } + ] } + } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateBot.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateBot.json index 350fb4b8dd25..e43047d57cae 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateBot.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateBot.json @@ -107,4 +107,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateChannel.json index e14c2fd30a52..7b9f1bb62567 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateChannel.json @@ -1,15 +1,29 @@ { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "channelName": "EmailChannel", "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "channelName": "EmailChannel", - "parameters": { + "location": "global", + "properties": { + "channelName": "EmailChannel", + "properties": { + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true + } + } + } + }, + "responses": { + "200": { + "body": { "location": "global", "properties": { "channelName": "EmailChannel", - "properties":{ + "properties": { "emailAddress": "a@b.com", "password": "pwd", "isEnabled": true @@ -17,32 +31,18 @@ } } }, - "responses": { - "200": { - "body": { - "location": "global", - "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } - } - } - }, - "201": { - "body": { - "location": "global", + "201": { + "body": { + "location": "global", + "properties": { + "channelName": "EmailChannel", "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true } } } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateConnection.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateConnection.json index ed4550c1d27f..37bf4e7d4431 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateConnection.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2017-12-01/examples/UpdateConnection.json @@ -1,13 +1,38 @@ { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "connectionName": "sampleConnection", "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "connectionName": "sampleConnection", - "parameters": { + "location": "global", + "etag": "etag1", + "id": "someid", + "name": "The Name of the Connection Setting", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "serviceProviderDisplayName": "serviceProviderDisplayName", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" + } + ] + } + } + }, + "responses": { + "200": { + "body": { "location": "global", - "etag": "etag1", "id": "someid", "name": "The Name of the Connection Setting", "properties": { @@ -18,66 +43,41 @@ "serviceProviderDisplayName": "serviceProviderDisplayName", "parameters": [ { - "key": "key1", - "value": "value1" + "key": "key1", + "value": "value1" }, { - "key": "key2", - "value": "value2" + "key": "key2", + "value": "value2" } ] } } }, - "responses": { - "200": { - "body": { - "location": "global", - "id": "someid", - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "serviceProviderDisplayName": "serviceProviderDisplayName", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] - } - } - }, - "201": { - "body": { - "location": "global", - "etag": "etag1", - "id": "someid", - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "serviceProviderDisplayName": "serviceProviderDisplayName", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] - } + "201": { + "body": { + "location": "global", + "etag": "etag1", + "id": "someid", + "name": "The Name of the Connection Setting", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "serviceProviderDisplayName": "serviceProviderDisplayName", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" + } + ] } + } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/botservice.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/botservice.json index f49c370b5504..436bf13eb42a 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/botservice.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/botservice.json @@ -1105,7 +1105,7 @@ "description": "Creates an Enterprise Channel.", "operationId": "EnterpriseChannels_Create", "x-ms-long-running-operation": true, - "x-ms-long-running-operation-options" : { + "x-ms-long-running-operation-options": { "final-state-via": "azure-async-operation" }, "x-ms-examples": { @@ -1164,7 +1164,7 @@ "description": "Updates an Enterprise Channel.", "operationId": "EnterpriseChannels_Update", "x-ms-long-running-operation": true, - "x-ms-long-running-operation-options" : { + "x-ms-long-running-operation-options": { "final-state-via": "azure-async-operation" }, "x-ms-examples": { @@ -1224,7 +1224,7 @@ "description": "Deletes an Enterprise Channel from the resource group", "operationId": "EnterpriseChannels_Delete", "x-ms-long-running-operation": true, - "x-ms-long-running-operation-options" : { + "x-ms-long-running-operation-options": { "final-state-via": "azure-async-operation" }, "x-ms-examples": { @@ -2489,7 +2489,18 @@ "state": { "type": "string", "description": "The current state of the Enterprise Channel.", - "enum": ["Creating", "CreateFailed", "Started", "Starting", "StartFailed", "Stopped", "Stopping", "StopFailed", "Deleting", "DeleteFailed"], + "enum": [ + "Creating", + "CreateFailed", + "Started", + "Starting", + "StartFailed", + "Stopped", + "Stopping", + "StopFailed", + "Deleting", + "DeleteFailed" + ], "x-ms-enum": { "name": "EnterpriseChannelState", "modelAsString": true @@ -2518,7 +2529,18 @@ "state": { "type": "string", "description": "The current state of the Enterprise Channel Node.", - "enum": ["Creating", "CreateFailed", "Started", "Starting", "StartFailed", "Stopped", "Stopping", "StopFailed", "Deleting", "DeleteFailed"], + "enum": [ + "Creating", + "CreateFailed", + "Started", + "Starting", + "StartFailed", + "Stopped", + "Stopping", + "StopFailed", + "Deleting", + "DeleteFailed" + ], "x-ms-enum": { "name": "EnterpriseChannelNodeState", "modelAsString": true @@ -2650,4 +2672,4 @@ "description": "The name of the Channel resource." } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CheckNameAvailability.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CheckNameAvailability.json index 28cf840c235e..b2cfc2eea323 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CheckNameAvailability.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CreateBot.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CreateBot.json index 93aef41e70a4..d996c2ff1856 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CreateBot.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CreateBot.json @@ -105,4 +105,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CreateEnterpriseChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CreateEnterpriseChannel.json index 85c333d8ee82..24158455c93a 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CreateEnterpriseChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/CreateEnterpriseChannel.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteBot.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteBot.json index 08b09eeb7aaa..db0a9ac54feb 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteBot.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteBot.json @@ -6,9 +6,7 @@ "resourceName": "samplebotname" }, "responses": { - "200": { - }, - "204": { - } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteChannel.json index 3ef121f395fe..e4d585042a4e 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteChannel.json @@ -1,15 +1,13 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "channelName": "EmailChannel" - }, - "responses": { - "200": { - }, - "204": { - } - } - } \ No newline at end of file + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "channelName": "EmailChannel" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteConnection.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteConnection.json index 7f11a36734a0..cbf6b1cbcae2 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteConnection.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteConnection.json @@ -1,15 +1,13 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "connectionName": "sampleConnection" - }, - "responses": { - "200": { - }, - "204": { - } - } - } \ No newline at end of file + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "connectionName": "sampleConnection" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteEnterpriseChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteEnterpriseChannel.json index 06808df3de3f..5c848da77dce 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteEnterpriseChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/DeleteEnterpriseChannel.json @@ -6,9 +6,7 @@ "resourceName": "contoso-dl" }, "responses": { - "200": { - }, - "204": { - } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/EnterpriseChannelCheckNameAvailability.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/EnterpriseChannelCheckNameAvailability.json index a5f6c1221cd6..09f972f38418 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/EnterpriseChannelCheckNameAvailability.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/EnterpriseChannelCheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetBot.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetBot.json index 2a350bd44f8c..2f10fc01f960 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetBot.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetBot.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetChannel.json index b4d47e2ff7bd..347067a44c35 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetChannel.json @@ -1,24 +1,24 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "channelName": "EmailChannel" - }, - "responses": { - "200": { - "body": { - "location": "global", + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "channelName": "EmailChannel" + }, + "responses": { + "200": { + "body": { + "location": "global", + "properties": { + "channelName": "EmailChannel", "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true } } } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetConnection.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetConnection.json index c77afa08e4f4..68d996399fbb 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetConnection.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetConnection.json @@ -1,36 +1,36 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "connectionName": "sampleConnection" - }, - "responses": { - "200": { - "body": { - "location": "global", - "id": "someid", - "etag": "etag1", - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "serviceProviderDisplayName": "serviceProviderDisplayName", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] - } + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "connectionName": "sampleConnection" + }, + "responses": { + "200": { + "body": { + "location": "global", + "id": "someid", + "etag": "etag1", + "name": "The Name of the Connection Setting", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "serviceProviderDisplayName": "serviceProviderDisplayName", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" + } + ] } } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetEnterpriseChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetEnterpriseChannel.json index 36160b0941fc..e75ee68f0148 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetEnterpriseChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetEnterpriseChannel.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetOperations.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetOperations.json index 1f4b66c26e48..69c51e28cc39 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetOperations.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/GetOperations.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListBotsByResourceGroup.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListBotsByResourceGroup.json index 848588797bff..a4149dff51f7 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListBotsByResourceGroup.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListBotsByResourceGroup.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListBotsBySubscription.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListBotsBySubscription.json index d67462778e86..e9b7512bea46 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListBotsBySubscription.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListBotsBySubscription.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListChannel.json index e67f9a9991cc..9e40a9715f36 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListChannel.json @@ -1,27 +1,27 @@ { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "channelName": "EmailChannel", "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "channelName": "EmailChannel", - "parameters": { - "location": "global" - } - }, - "responses": { - "200": { - "body": { - "location": "global", + "location": "global" + } + }, + "responses": { + "200": { + "body": { + "location": "global", + "properties": { + "channelName": "EmailChannel", "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true } } } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListChannelsByBotService.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListChannelsByBotService.json index 2f6126c6eef8..679c19597e75 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListChannelsByBotService.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListChannelsByBotService.json @@ -1,46 +1,46 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "resourceName": "samplebotname", - "api-version": "2017-01-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "location": "global", + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "resourceName": "samplebotname", + "api-version": "2017-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "location": "global", + "properties": { + "channelName": "EmailChannel", "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true } - }, - { - "location": "global", + } + }, + { + "location": "global", + "properties": { + "channelName": "FacebookChannel", "properties": { - "channelName": "FacebookChannel", - "properties":{ - "verifyToken": "othertoken", - "appId": "id", - "appSecret": "secret", - "callbackUrl": "appid", - "isEnabled": true, - "pages": [ - { - "accessToken": "token", - "id": "id" - } - ] - } + "verifyToken": "othertoken", + "appId": "id", + "appSecret": "secret", + "callbackUrl": "appid", + "isEnabled": true, + "pages": [ + { + "accessToken": "token", + "id": "id" + } + ] } } - ] - } + } + ] } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListConnectionsByBotService.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListConnectionsByBotService.json index 49c377536a72..e43d92231c3a 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListConnectionsByBotService.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListConnectionsByBotService.json @@ -1,35 +1,35 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "The Name of the Connection Setting", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" } - } - ] + ] + } + } + ] } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListEnterpriseChannelsByResourceGroup.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListEnterpriseChannelsByResourceGroup.json index a3ec61874c53..efce8f37fc1a 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListEnterpriseChannelsByResourceGroup.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListEnterpriseChannelsByResourceGroup.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListServiceProviders.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListServiceProviders.json index ff0c08f4bb8d..b74af64b98b1 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListServiceProviders.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/ListServiceProviders.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "api-version": "2017-01-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "id": "sampleId", - "displayName": "sample display name", - "serviceProviderName": "sampleServiceProvider", - "devPortalUrl": "sampleDevPortalUrl", - "iconUrl": "sampleIconUrl", - "parameters": [ - { - "name": "sampleParameterName", - "type": "sampleParameterType", - "displayName": "sampleDisplayName", - "description": "sampleDescription", - "helpUrl": "sampleHelpUrl", - "default": "sampleDefaultValue" - } - ] + "parameters": { + "subscriptionId": "subscription-id", + "api-version": "2017-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "id": "sampleId", + "displayName": "sample display name", + "serviceProviderName": "sampleServiceProvider", + "devPortalUrl": "sampleDevPortalUrl", + "iconUrl": "sampleIconUrl", + "parameters": [ + { + "name": "sampleParameterName", + "type": "sampleParameterType", + "displayName": "sampleDisplayName", + "description": "sampleDescription", + "helpUrl": "sampleHelpUrl", + "default": "sampleDefaultValue" } - } - ] + ] + } + } + ] } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/PutChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/PutChannel.json index e14c2fd30a52..7b9f1bb62567 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/PutChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/PutChannel.json @@ -1,15 +1,29 @@ { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "channelName": "EmailChannel", "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "channelName": "EmailChannel", - "parameters": { + "location": "global", + "properties": { + "channelName": "EmailChannel", + "properties": { + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true + } + } + } + }, + "responses": { + "200": { + "body": { "location": "global", "properties": { "channelName": "EmailChannel", - "properties":{ + "properties": { "emailAddress": "a@b.com", "password": "pwd", "isEnabled": true @@ -17,32 +31,18 @@ } } }, - "responses": { - "200": { - "body": { - "location": "global", - "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } - } - } - }, - "201": { - "body": { - "location": "global", + "201": { + "body": { + "location": "global", + "properties": { + "channelName": "EmailChannel", "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true } } } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/PutConnection.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/PutConnection.json index 513f1bd473c5..d010920c65a2 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/PutConnection.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/PutConnection.json @@ -1,84 +1,84 @@ { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "connectionName": "sampleConnection", "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "connectionName": "sampleConnection", - "parameters": { - "location": "West US", - "etag": "etag1", - "name": "samplename", - "type": "sampletype", + "location": "West US", + "etag": "etag1", + "name": "samplename", + "type": "sampletype", + "id": "someid", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "location": "global", "id": "someid", + "etag": "etag1", + "name": "The Name of the Connection Setting", "properties": { "clientId": "sampleclientid", "clientSecret": "samplesecret", "scopes": "samplescope", "serviceProviderId": "serviceproviderid", + "serviceProviderDisplayName": "serviceProviderDisplayName", "parameters": [ { - "key": "key1", - "value": "value1" + "key": "key1", + "value": "value1" }, { - "key": "key2", - "value": "value2" + "key": "key2", + "value": "value2" } ] } } }, - "responses": { - "200": { - "body": { - "location": "global", - "id": "someid", - "etag": "etag1", - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "serviceProviderDisplayName": "serviceProviderDisplayName", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] - } - } - }, - "201": { - "body": { - "location": "global", - "id": "someid", - "etag": "etag1", - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "serviceProviderDisplayName": "serviceProviderDisplayName", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] - } + "201": { + "body": { + "location": "global", + "id": "someid", + "etag": "etag1", + "name": "The Name of the Connection Setting", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "serviceProviderDisplayName": "serviceProviderDisplayName", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" + } + ] } + } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateBot.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateBot.json index 350fb4b8dd25..e43047d57cae 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateBot.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateBot.json @@ -107,4 +107,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateChannel.json index e14c2fd30a52..7b9f1bb62567 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateChannel.json @@ -1,15 +1,29 @@ { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "channelName": "EmailChannel", "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "channelName": "EmailChannel", - "parameters": { + "location": "global", + "properties": { + "channelName": "EmailChannel", + "properties": { + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true + } + } + } + }, + "responses": { + "200": { + "body": { "location": "global", "properties": { "channelName": "EmailChannel", - "properties":{ + "properties": { "emailAddress": "a@b.com", "password": "pwd", "isEnabled": true @@ -17,32 +31,18 @@ } } }, - "responses": { - "200": { - "body": { - "location": "global", - "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } - } - } - }, - "201": { - "body": { - "location": "global", + "201": { + "body": { + "location": "global", + "properties": { + "channelName": "EmailChannel", "properties": { - "channelName": "EmailChannel", - "properties":{ - "emailAddress": "a@b.com", - "password": "pwd", - "isEnabled": true - } + "emailAddress": "a@b.com", + "password": "pwd", + "isEnabled": true } } } } - } \ No newline at end of file + } +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateConnection.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateConnection.json index ed4550c1d27f..37bf4e7d4431 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateConnection.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateConnection.json @@ -1,13 +1,38 @@ { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "resourceName": "samplebotname", + "connectionName": "sampleConnection", "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "resourceName": "samplebotname", - "connectionName": "sampleConnection", - "parameters": { + "location": "global", + "etag": "etag1", + "id": "someid", + "name": "The Name of the Connection Setting", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "serviceProviderDisplayName": "serviceProviderDisplayName", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" + } + ] + } + } + }, + "responses": { + "200": { + "body": { "location": "global", - "etag": "etag1", "id": "someid", "name": "The Name of the Connection Setting", "properties": { @@ -18,66 +43,41 @@ "serviceProviderDisplayName": "serviceProviderDisplayName", "parameters": [ { - "key": "key1", - "value": "value1" + "key": "key1", + "value": "value1" }, { - "key": "key2", - "value": "value2" + "key": "key2", + "value": "value2" } ] } } }, - "responses": { - "200": { - "body": { - "location": "global", - "id": "someid", - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "serviceProviderDisplayName": "serviceProviderDisplayName", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] - } - } - }, - "201": { - "body": { - "location": "global", - "etag": "etag1", - "id": "someid", - "name": "The Name of the Connection Setting", - "properties": { - "clientId": "sampleclientid", - "clientSecret": "samplesecret", - "scopes": "samplescope", - "serviceProviderId": "serviceproviderid", - "serviceProviderDisplayName": "serviceProviderDisplayName", - "parameters": [ - { - "key": "key1", - "value": "value1" - }, - { - "key": "key2", - "value": "value2" - } - ] - } + "201": { + "body": { + "location": "global", + "etag": "etag1", + "id": "someid", + "name": "The Name of the Connection Setting", + "properties": { + "clientId": "sampleclientid", + "clientSecret": "samplesecret", + "scopes": "samplescope", + "serviceProviderId": "serviceproviderid", + "serviceProviderDisplayName": "serviceProviderDisplayName", + "parameters": [ + { + "key": "key1", + "value": "value1" + }, + { + "key": "key2", + "value": "value2" + } + ] } + } } } -} \ No newline at end of file +} diff --git a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateEnterpriseChannel.json b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateEnterpriseChannel.json index 1481a2406a65..c3c9eb05a1a7 100644 --- a/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateEnterpriseChannel.json +++ b/specification/botservice/resource-manager/Microsoft.BotService/preview/2018-07-12/examples/UpdateEnterpriseChannel.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/FormRecognizerReceipt.json b/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/FormRecognizerReceipt.json index 2c4ecaf82db7..8db7ac356f97 100644 --- a/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/FormRecognizerReceipt.json +++ b/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/FormRecognizerReceipt.json @@ -174,7 +174,7 @@ } }, "understandingResult": { - "description" : "A set of extracted fields corresponding to a semantic object, such as a receipt, in the input document.", + "description": "A set of extracted fields corresponding to a semantic object, such as a receipt, in the input document.", "properties": { "pages": { "description": "List of pages where the document is found.", diff --git a/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/FormRecognizerReceiptOcr.json b/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/FormRecognizerReceiptOcr.json index 4d0e1010ae01..4039f523e2f9 100644 --- a/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/FormRecognizerReceiptOcr.json +++ b/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/FormRecognizerReceiptOcr.json @@ -20,7 +20,7 @@ "modelAsString": false }, "x-nullable": false - }, + }, "TextRecognitionResult": { "description": "An object representing a recognized text region", "type": "object", @@ -36,7 +36,7 @@ "description": "The orientation of the image in degrees in the clockwise direction. Range between [0, 360).", "type": "number" }, - "width": { + "width": { "description": "The width of the image in pixels or the PDF in inches.", "type": "number" }, @@ -44,7 +44,7 @@ "description": "The height of the image in pixels or the PDF in inches.", "type": "number" }, - "unit": { + "unit": { "description": "The unit used in the Width, Height and BoundingBox. For images, the unit is 'pixel'. For PDF, the unit is 'inch'.", "type": "string", "enum": [ @@ -218,6 +218,5 @@ "x-ms-skip-url-encoding": true } }, - "paths": { - } -} \ No newline at end of file + "paths": {} +} diff --git a/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulBatchReadReceiptWithStream.json b/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulBatchReadReceiptWithStream.json index b4d0bd13f769..7a7a35ec623f 100644 --- a/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulBatchReadReceiptWithStream.json +++ b/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulBatchReadReceiptWithStream.json @@ -11,4 +11,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulBatchReadReceiptWithUrl.json b/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulBatchReadReceiptWithUrl.json index 168d816944f3..e8816ded9af6 100644 --- a/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulBatchReadReceiptWithUrl.json +++ b/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulBatchReadReceiptWithUrl.json @@ -11,4 +11,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulReadReceiptResult.json b/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulReadReceiptResult.json index 73fb2a085147..5d6a27860d97 100644 --- a/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulReadReceiptResult.json +++ b/specification/cognitiveservices/data-plane/FormRecognizer/preview/v1.0/examples/SuccessfulReadReceiptResult.json @@ -2942,4 +2942,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/QnAMaker.json b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/QnAMaker.json index d6d231e026c5..9d93cd4ef960 100644 --- a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/QnAMaker.json +++ b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/QnAMaker.json @@ -1453,4 +1453,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/QnAMakerRuntime.json b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/QnAMakerRuntime.json index 0afe61bcd387..480a5eb4ec37 100644 --- a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/QnAMakerRuntime.json +++ b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/QnAMakerRuntime.json @@ -390,7 +390,7 @@ "type": "array", "description": "Represents Search Result list.", "items": { - "$ref": "#/definitions/QnASearchResult" + "$ref": "#/definitions/QnASearchResult" } } } @@ -428,8 +428,8 @@ "type": "array", "description": "List of metadata.", "items": { - "$ref": "#/definitions/MetadataDTO" - } + "$ref": "#/definitions/MetadataDTO" + } }, "context": { "type": "object", diff --git a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulGenAns.json b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulGenAns.json index c586a2934a32..63e0a9556c49 100644 --- a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulGenAns.json +++ b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulGenAns.json @@ -29,7 +29,7 @@ "answer": "There is no direct integration of LUIS with QnA Maker. But, in your bot code, you can use LUIS and QnA Maker together.", "source": "Custom Editorial", "questions": [ - "How can I integrate LUIS with QnA Maker?" + "How can I integrate LUIS with QnA Maker?" ], "metadata": [ { diff --git a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulGetEpSettings.json b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulGetEpSettings.json index 5262a630924c..97cc7fcac360 100644 --- a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulGetEpSettings.json +++ b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulGetEpSettings.json @@ -8,7 +8,7 @@ "200": { "headers": {}, "body": { - "activeLearning":{ + "activeLearning": { "enable": "True" } } diff --git a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulSetEpSettings.json b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulSetEpSettings.json index 1b42c44652b1..a12bd163bd89 100644 --- a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulSetEpSettings.json +++ b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulSetEpSettings.json @@ -4,7 +4,7 @@ "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "{API key}", "endpointSettingsPayload": { - "activeLearning":{ + "activeLearning": { "enable": "True" } } diff --git a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulTrain.json b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulTrain.json index b4443bccde50..3448a4009b3d 100644 --- a/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulTrain.json +++ b/specification/cognitiveservices/data-plane/QnAMaker/stable/v4.0/examples/SuccessfulTrain.json @@ -17,4 +17,4 @@ "responses": { "204": {} } -} \ No newline at end of file +} diff --git a/specification/cognitiveservices/resource-manager/Microsoft.CognitiveServices/stable/2017-04-18/cognitiveservices.json b/specification/cognitiveservices/resource-manager/Microsoft.CognitiveServices/stable/2017-04-18/cognitiveservices.json index cf908ebfc74b..c873ce40bdf5 100644 --- a/specification/cognitiveservices/resource-manager/Microsoft.CognitiveServices/stable/2017-04-18/cognitiveservices.json +++ b/specification/cognitiveservices/resource-manager/Microsoft.CognitiveServices/stable/2017-04-18/cognitiveservices.json @@ -1303,7 +1303,7 @@ ], "description": "The Get Skus operation response." }, - "NetworkRuleSet": { + "NetworkRuleSet": { "properties": { "bypass": { "type": "string", diff --git a/specification/compute/resource-manager/Microsoft.Compute/stable/2019-03-01/compute.json b/specification/compute/resource-manager/Microsoft.Compute/stable/2019-03-01/compute.json index d6601b0adfb6..10b8757892df 100644 --- a/specification/compute/resource-manager/Microsoft.Compute/stable/2019-03-01/compute.json +++ b/specification/compute/resource-manager/Microsoft.Compute/stable/2019-03-01/compute.json @@ -1891,7 +1891,6 @@ "Update a VM by detaching data disk": { "$ref": "./examples/UpdateVMDetachDataDiskUsingToBeDetachedProperty.json" } - } }, "delete": { @@ -5894,7 +5893,7 @@ }, "toBeDetached": { "type": "boolean", - "description": "Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset" + "description": "Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset" } }, "required": [ diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/containerregistry_scopemap.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/containerregistry_scopemap.json index e9e84199b40f..d6b9e854eb3e 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/containerregistry_scopemap.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/containerregistry_scopemap.json @@ -972,4 +972,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/RegistryGenerateCredentials.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/RegistryGenerateCredentials.json index 0065a3d5f394..1a7c8cb8e0cb 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/RegistryGenerateCredentials.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/RegistryGenerateCredentials.json @@ -1,32 +1,32 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "generateCredentialsParameters": { - "tokenId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", - "expiry": "2020-12-31T15:59:59.0707808Z" - } - }, - "responses": { - "200": { - "body": { - "username": "myToken", - "passwords": [ - { - "expiry": "2020-12-31T15:59:59.0707808Z", - "name": "password1", - "value": "00000000000000000000000000000000" - }, - { - "expiry": "2020-12-31T15:59:59.0707808Z", - "name": "password2", - "value": "00000000000000000000000000000000" - } - ] - } - }, - "202": {} + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "generateCredentialsParameters": { + "tokenId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", + "expiry": "2020-12-31T15:59:59.0707808Z" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "username": "myToken", + "passwords": [ + { + "expiry": "2020-12-31T15:59:59.0707808Z", + "name": "password1", + "value": "00000000000000000000000000000000" + }, + { + "expiry": "2020-12-31T15:59:59.0707808Z", + "name": "password2", + "value": "00000000000000000000000000000000" + } + ] + } + }, + "202": {} + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapCreate.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapCreate.json index 943f0c70cc6f..af105d443b7a 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapCreate.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapCreate.json @@ -1,52 +1,52 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "scopeMapName": "myScopeMap", - "scopeMapCreateParameters": { - "properties": { - "description": "Developer Scopes", - "actions": [ - "repositories/myrepository/contentWrite", - "repositories/myrepository/delete" - ] - } + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "scopeMapName": "myScopeMap", + "scopeMapCreateParameters": { + "properties": { + "description": "Developer Scopes", + "actions": [ + "repositories/myrepository/contentWrite", + "repositories/myrepository/delete" + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "name": "myScopeMap", + "type": "Microsoft.ContainerRegistry/registries/scopeMaps", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "type": "IsUserDefined", + "actions": [ + "repositories/myrepository/contentWrite", + "repositories/myrepository/delete" + ], + "provisioningState": "Succeeded" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "name": "myScopeMap", - "type": "Microsoft.ContainerRegistry/registries/scopeMaps", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "type": "IsUserDefined", - "actions": [ - "repositories/myrepository/contentWrite", - "repositories/myrepository/delete" - ], - "provisioningState": "Succeeded" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "name": "myScopeMap", - "type": "Microsoft.ContainerRegistry/registries/scopeMaps", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "type": "IsUserDefined", - "actions": [ - "repositories/myrepository/contentWrite", - "repositories/myrepository/delete" - ], - "provisioningState": "Succeeded" - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "name": "myScopeMap", + "type": "Microsoft.ContainerRegistry/registries/scopeMaps", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "type": "IsUserDefined", + "actions": [ + "repositories/myrepository/contentWrite", + "repositories/myrepository/delete" + ], + "provisioningState": "Succeeded" } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapDelete.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapDelete.json index 37c19232e25d..4383cfa7308e 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapDelete.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapDelete.json @@ -1,14 +1,14 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "scopeMapName": "myScopeMap" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "scopeMapName": "myScopeMap" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapGet.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapGet.json index 87e29454892c..a4c9936c1443 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapGet.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapGet.json @@ -1,27 +1,27 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "scopeMapName": "myScopeMap" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "name": "myScopeMap", - "type": "Microsoft.ContainerRegistry/registries/scopeMaps", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "type": "IsUserDefined", - "actions": [ - "repositories/myrepository/contentWrite", - "repositories/myrepository/delete" - ], - "provisioningState": "Succeeded" - } - } + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "scopeMapName": "myScopeMap" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "name": "myScopeMap", + "type": "Microsoft.ContainerRegistry/registries/scopeMaps", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "type": "IsUserDefined", + "actions": [ + "repositories/myrepository/contentWrite", + "repositories/myrepository/delete" + ], + "provisioningState": "Succeeded" } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapList.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapList.json index ad075f5d99c9..33368ccd6f24 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapList.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapList.json @@ -1,30 +1,30 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "name": "myScopeMap", - "type": "Microsoft.ContainerRegistry/registries/scopeMaps", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "type": "IsUserDefined", - "actions": [ - "repositories/myrepository/contentWrite", - "repositories/myrepository/delete" - ], - "provisioningState": "Succeeded" - } - } - ] + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "name": "myScopeMap", + "type": "Microsoft.ContainerRegistry/registries/scopeMaps", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "type": "IsUserDefined", + "actions": [ + "repositories/myrepository/contentWrite", + "repositories/myrepository/delete" + ], + "provisioningState": "Succeeded" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapUpdate.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapUpdate.json index 1d7251182953..970a48998836 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapUpdate.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/ScopeMapUpdate.json @@ -1,52 +1,52 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "scopeMapName": "myScopeMap", - "scopeMapUpdateParameters": { - "properties": { - "description": "Developer Scopes", - "actions": [ - "repositories/myrepository/contentWrite", - "repositories/myrepository/contentRead" - ] - } + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "scopeMapName": "myScopeMap", + "scopeMapUpdateParameters": { + "properties": { + "description": "Developer Scopes", + "actions": [ + "repositories/myrepository/contentWrite", + "repositories/myrepository/contentRead" + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "name": "myScopeMap", + "type": "Microsoft.ContainerRegistry/registries/scopeMaps", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "type": "IsUserDefined", + "actions": [ + "repositories/myrepository/contentWrite", + "repositories/myrepository/contentRead" + ], + "provisioningState": "Succeeded" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "name": "myScopeMap", - "type": "Microsoft.ContainerRegistry/registries/scopeMaps", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "type": "IsUserDefined", - "actions": [ - "repositories/myrepository/contentWrite", - "repositories/myrepository/contentRead" - ], - "provisioningState": "Succeeded" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "name": "myScopeMap", - "type": "Microsoft.ContainerRegistry/registries/scopeMaps", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "type": "IsUserDefined", - "actions": [ - "repositories/myrepository/contentWrite", - "repositories/myrepository/contentRead" - ], - "provisioningState": "Succeeded" - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "name": "myScopeMap", + "type": "Microsoft.ContainerRegistry/registries/scopeMaps", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "type": "IsUserDefined", + "actions": [ + "repositories/myrepository/contentWrite", + "repositories/myrepository/contentRead" + ], + "provisioningState": "Succeeded" } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenCreate.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenCreate.json index 0167853f3d3e..ab71b8bbe14a 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenCreate.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenCreate.json @@ -1,69 +1,69 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "tokenName": "myToken", - "tokenCreateParameters": { - "properties": { - "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "status": "disabled", - "credentials": { - "certificates": [ - { - "name": "certificate1", - "encodedPemCertificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUc3akNDQk5hZ0F3SUJBZ0lURmdBQlR3UVpyZGdmdmhxdzBnQUFBQUZQQkRBTkJna3Foa2lHOXcwQkFRc0YKQURDQml6RUxNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2xkaGMyaHBibWQwYjI0eEVEQU9CZ05WQkFjVApCMUpsWkcxdmJtUXhIakFjQmdOVkJBb1RGVTFwWTNKdmMyOW1kQ0JEYjNKd2IzSmhkR2x2YmpFVk1CTUdBMVVFCkN4TU1UV2xqY205emIyWjBJRWxVTVI0d0hBWURWUVFERXhWTmFXTnliM052Wm5RZ1NWUWdWRXhUSUVOQklEUXcKSGhjTk1UZ3dOREV5TWpJek1qUTRXaGNOTWpBd05ERXlNakl6TWpRNFdqQTVNVGN3TlFZRFZRUURFeTV6WlhKMgphV05sWTJ4cFpXNTBZMlZ5ZEMxd1lYSjBibVZ5TG0xaGJtRm5aVzFsYm5RdVlYcDFjbVV1WTI5dE1JSUJJakFOCkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBSYjdJcHpxMmR4emhhbVpyS1ZDakMzeTQyYlYKUnNIY2pCUTFuSDBHZ1puUDhXeDZDSE1mWThybkVJQzRLeVRRYkJXVzhnNXlmc3NSQ0ZXbFpxYjR6SkRXS0pmTgpGSmNMUm9LNnhwTktZYVZVTkVlT25IdUxHYTM0ZlA0VjBFRjZybzdvbkRLME5zanhjY1dZVzRNVXVzc0xrQS94CkUrM2RwU1REdk1KcjJoWUpsVnFDcVR6blQvbmZaVUZzQUVEQnp5MUpOOHZiZDlIR2czc2Myd0x4dk95cFJOc0gKT1V3V2pmN2xzWWZleEVlcWkzY29EeHc2alpLVWEyVkdsUnBpTkowMjhBQitYSi9TU1FVNVBsd0JBbU9TT3ovRApGY0NKdGpPZlBqU1NKckFIQVV3SHU3RzlSV05JTFBwYU9zQ1J5eitETE5zNGpvNlEvUUg4d1lManJRSURBUUFCCm80SUNtakNDQXBZd0N3WURWUjBQQkFRREFnU3dNQjBHQTFVZEpRUVdNQlFHQ0NzR0FRVUZCd01DQmdnckJnRUYKQlFjREFUQWRCZ05WSFE0RUZnUVVlbEdkVVJrZzJoSFFOWEQ4WUc4L3drdjJVT0F3SHdZRFZSMGpCQmd3Rm9BVQplbnVNd2Mvbm9Nb2MxR3Y2KytFend3OGFvcDB3Z2F3R0ExVWRId1NCcERDQm9UQ0JucUNCbTZDQm1JWkxhSFIwCmNEb3ZMMjF6WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjAKSlRJd1NWUWxNakJVVEZNbE1qQkRRU1V5TURRdVkzSnNoa2xvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1agpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjBKVEl3U1ZRbE1qQlVURk1sTWpCRFFTVXlNRFF1ClkzSnNNSUdGQmdnckJnRUZCUWNCQVFSNU1IY3dVUVlJS3dZQkJRVUhNQUtHUldoMGRIQTZMeTkzZDNjdWJXbGoKY205emIyWjBMbU52YlM5d2Eya3ZiWE5qYjNKd0wwMXBZM0p2YzI5bWRDVXlNRWxVSlRJd1ZFeFRKVEl3UTBFbApNakEwTG1OeWREQWlCZ2dyQmdFRkJRY3dBWVlXYUhSMGNEb3ZMMjlqYzNBdWJYTnZZM053TG1OdmJUQStCZ2tyCkJnRUVBWUkzRlFjRU1UQXZCaWNyQmdFRUFZSTNGUWlIMm9aMWcrN1pBWUxKaFJ1QnRaNWhoZlRyWUlGZGhOTGYKUW9Mbmszb0NBV1FDQVIwd1RRWURWUjBnQkVZd1JEQkNCZ2tyQmdFRUFZSTNLZ0V3TlRBekJnZ3JCZ0VGQlFjQwpBUlluYUhSMGNEb3ZMM2QzZHk1dGFXTnliM052Wm5RdVkyOXRMM0JyYVM5dGMyTnZjbkF2WTNCek1DY0dDU3NHCkFRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0l3Q2dZSUt3WUJCUVVIQXdFd09RWURWUjBSQkRJd01JSXUKYzJWeWRtbGpaV05zYVdWdWRHTmxjblF0Y0dGeWRHNWxjaTV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRBTgpCZ2txaGtpRzl3MEJBUXNGQUFPQ0FnRUFIVXIzbk1vdUI5WWdDUlRWYndUTllIS2RkWGJkSW1GUXNDYys4T1g1CjE5c0N6dFFSR05iSXEwVW1Ba01MbFVvWTIxckh4ZXdxU2hWczFhL2RwaFh5Tk1pcUdaU2QzU1BtYzZscitqUFQKNXVEREs0MUlWeXN0K2VUNlpyazFvcCtMVmdkeS9EU2lyNzVqcWZFY016bS82bU8rNnFNeWRLTWtVYmM5K3JHVwphUkpUcjRWUUdIRmEwNEIwZVZpNUd4MG9pL2RpZDNSaXg2aXJMMjFJSGEwYjN6c1hzZHpHU0R2K3hqL2Q2S0l4Ckdrd2FhYmZvU1NoQnFqaFNlQ0VyZXFlb1RpYjljdGw0MGRVdUp3THl4bjhHS2N6K3AvMEJUOEIxU3lYK01OQ2wKY0pkMjVtMjhLajY2TGUxOEVyeFlJYXZJVGVGa3Y2eGZjdkEvcHladDdPaU41QTlGQk1IUmpQK1kyZ2tvdjMrcQpISFRUZG4xNnlRajduNit3YlFHNGVleXc0YisyQkRLcUxNVFU2ZmlSQ3ZPM2FPZVBLSFVNN3R4b1FidWl6Z3NzCkNiMzl3QnJOTEZsMkJLQ1RkSCtkSU9oZVJiSkZvbmlwOGRPOUVFZWdSSG9lQW54ZUlYTFBrdXMzTzEvZjRhNkIKWHQ3RG5BUm8xSzJmeEp3VXRaU2MvR3dFSjU5NzlnRXlEa3pDZEVsLzdpWE9QZXVjTXhlM2xVM2pweUtsNERUaApjSkJqQytqNGpLWTFrK1U4b040aGdqYnJISUx6Vnd2eU15OU5KS290U3BMSjQxeHdPOHlGangxalFTT3Bxc0N1ClFhUFUvTjhSZ0hxWjBGTkFzS3dNUmZ6WmdXanRCNzRzYUVEdk5jVmNuNFhCQnFNSG0ydHo2Uzk3d3kxZGt0cTgKSE5BPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - } - ] - } + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "tokenName": "myToken", + "tokenCreateParameters": { + "properties": { + "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "status": "disabled", + "credentials": { + "certificates": [ + { + "name": "certificate1", + "encodedPemCertificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUc3akNDQk5hZ0F3SUJBZ0lURmdBQlR3UVpyZGdmdmhxdzBnQUFBQUZQQkRBTkJna3Foa2lHOXcwQkFRc0YKQURDQml6RUxNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2xkaGMyaHBibWQwYjI0eEVEQU9CZ05WQkFjVApCMUpsWkcxdmJtUXhIakFjQmdOVkJBb1RGVTFwWTNKdmMyOW1kQ0JEYjNKd2IzSmhkR2x2YmpFVk1CTUdBMVVFCkN4TU1UV2xqY205emIyWjBJRWxVTVI0d0hBWURWUVFERXhWTmFXTnliM052Wm5RZ1NWUWdWRXhUSUVOQklEUXcKSGhjTk1UZ3dOREV5TWpJek1qUTRXaGNOTWpBd05ERXlNakl6TWpRNFdqQTVNVGN3TlFZRFZRUURFeTV6WlhKMgphV05sWTJ4cFpXNTBZMlZ5ZEMxd1lYSjBibVZ5TG0xaGJtRm5aVzFsYm5RdVlYcDFjbVV1WTI5dE1JSUJJakFOCkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBSYjdJcHpxMmR4emhhbVpyS1ZDakMzeTQyYlYKUnNIY2pCUTFuSDBHZ1puUDhXeDZDSE1mWThybkVJQzRLeVRRYkJXVzhnNXlmc3NSQ0ZXbFpxYjR6SkRXS0pmTgpGSmNMUm9LNnhwTktZYVZVTkVlT25IdUxHYTM0ZlA0VjBFRjZybzdvbkRLME5zanhjY1dZVzRNVXVzc0xrQS94CkUrM2RwU1REdk1KcjJoWUpsVnFDcVR6blQvbmZaVUZzQUVEQnp5MUpOOHZiZDlIR2czc2Myd0x4dk95cFJOc0gKT1V3V2pmN2xzWWZleEVlcWkzY29EeHc2alpLVWEyVkdsUnBpTkowMjhBQitYSi9TU1FVNVBsd0JBbU9TT3ovRApGY0NKdGpPZlBqU1NKckFIQVV3SHU3RzlSV05JTFBwYU9zQ1J5eitETE5zNGpvNlEvUUg4d1lManJRSURBUUFCCm80SUNtakNDQXBZd0N3WURWUjBQQkFRREFnU3dNQjBHQTFVZEpRUVdNQlFHQ0NzR0FRVUZCd01DQmdnckJnRUYKQlFjREFUQWRCZ05WSFE0RUZnUVVlbEdkVVJrZzJoSFFOWEQ4WUc4L3drdjJVT0F3SHdZRFZSMGpCQmd3Rm9BVQplbnVNd2Mvbm9Nb2MxR3Y2KytFend3OGFvcDB3Z2F3R0ExVWRId1NCcERDQm9UQ0JucUNCbTZDQm1JWkxhSFIwCmNEb3ZMMjF6WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjAKSlRJd1NWUWxNakJVVEZNbE1qQkRRU1V5TURRdVkzSnNoa2xvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1agpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjBKVEl3U1ZRbE1qQlVURk1sTWpCRFFTVXlNRFF1ClkzSnNNSUdGQmdnckJnRUZCUWNCQVFSNU1IY3dVUVlJS3dZQkJRVUhNQUtHUldoMGRIQTZMeTkzZDNjdWJXbGoKY205emIyWjBMbU52YlM5d2Eya3ZiWE5qYjNKd0wwMXBZM0p2YzI5bWRDVXlNRWxVSlRJd1ZFeFRKVEl3UTBFbApNakEwTG1OeWREQWlCZ2dyQmdFRkJRY3dBWVlXYUhSMGNEb3ZMMjlqYzNBdWJYTnZZM053TG1OdmJUQStCZ2tyCkJnRUVBWUkzRlFjRU1UQXZCaWNyQmdFRUFZSTNGUWlIMm9aMWcrN1pBWUxKaFJ1QnRaNWhoZlRyWUlGZGhOTGYKUW9Mbmszb0NBV1FDQVIwd1RRWURWUjBnQkVZd1JEQkNCZ2tyQmdFRUFZSTNLZ0V3TlRBekJnZ3JCZ0VGQlFjQwpBUlluYUhSMGNEb3ZMM2QzZHk1dGFXTnliM052Wm5RdVkyOXRMM0JyYVM5dGMyTnZjbkF2WTNCek1DY0dDU3NHCkFRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0l3Q2dZSUt3WUJCUVVIQXdFd09RWURWUjBSQkRJd01JSXUKYzJWeWRtbGpaV05zYVdWdWRHTmxjblF0Y0dGeWRHNWxjaTV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRBTgpCZ2txaGtpRzl3MEJBUXNGQUFPQ0FnRUFIVXIzbk1vdUI5WWdDUlRWYndUTllIS2RkWGJkSW1GUXNDYys4T1g1CjE5c0N6dFFSR05iSXEwVW1Ba01MbFVvWTIxckh4ZXdxU2hWczFhL2RwaFh5Tk1pcUdaU2QzU1BtYzZscitqUFQKNXVEREs0MUlWeXN0K2VUNlpyazFvcCtMVmdkeS9EU2lyNzVqcWZFY016bS82bU8rNnFNeWRLTWtVYmM5K3JHVwphUkpUcjRWUUdIRmEwNEIwZVZpNUd4MG9pL2RpZDNSaXg2aXJMMjFJSGEwYjN6c1hzZHpHU0R2K3hqL2Q2S0l4Ckdrd2FhYmZvU1NoQnFqaFNlQ0VyZXFlb1RpYjljdGw0MGRVdUp3THl4bjhHS2N6K3AvMEJUOEIxU3lYK01OQ2wKY0pkMjVtMjhLajY2TGUxOEVyeFlJYXZJVGVGa3Y2eGZjdkEvcHladDdPaU41QTlGQk1IUmpQK1kyZ2tvdjMrcQpISFRUZG4xNnlRajduNit3YlFHNGVleXc0YisyQkRLcUxNVFU2ZmlSQ3ZPM2FPZVBLSFVNN3R4b1FidWl6Z3NzCkNiMzl3QnJOTEZsMkJLQ1RkSCtkSU9oZVJiSkZvbmlwOGRPOUVFZWdSSG9lQW54ZUlYTFBrdXMzTzEvZjRhNkIKWHQ3RG5BUm8xSzJmeEp3VXRaU2MvR3dFSjU5NzlnRXlEa3pDZEVsLzdpWE9QZXVjTXhlM2xVM2pweUtsNERUaApjSkJqQytqNGpLWTFrK1U4b040aGdqYnJISUx6Vnd2eU15OU5KS290U3BMSjQxeHdPOHlGangxalFTT3Bxc0N1ClFhUFUvTjhSZ0hxWjBGTkFzS3dNUmZ6WmdXanRCNzRzYUVEdk5jVmNuNFhCQnFNSG0ydHo2Uzk3d3kxZGt0cTgKSE5BPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" } + ] } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", + "name": "myToken", + "type": "Microsoft.ContainerRegistry/registries/tokens", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "provisioningState": "Succeeded", + "status": "disabled", + "credentials": { + "certificates": [ + { + "name": "certificate1", + "thumbprint": "feeb79a888bf1415f8e17c4965a2a5bb5c8a2ff7", + "expiry": "2020-12-04T15:32:48.0707808Z" + } + ] + } + } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", - "name": "myToken", - "type": "Microsoft.ContainerRegistry/registries/tokens", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "provisioningState": "Succeeded", - "status": "disabled", - "credentials": { - "certificates": [ - { - "name": "certificate1", - "thumbprint":"feeb79a888bf1415f8e17c4965a2a5bb5c8a2ff7", - "expiry":"2020-12-04T15:32:48.0707808Z" - } - ] - } - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", - "name": "myToken", - "type": "Microsoft.ContainerRegistry/registries/tokens", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "provisioningState": "Succeeded", - "status": "disabled", - "credentials": { - "certificates": [ - { - "name": "certificate1", - "thumbprint":"feeb79a888bf1415f8e17c4965a2a5bb5c8a2ff7", - "expiry":"2020-12-04T15:32:48.0707808Z" - } - ] - } - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", + "name": "myToken", + "type": "Microsoft.ContainerRegistry/registries/tokens", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "provisioningState": "Succeeded", + "status": "disabled", + "credentials": { + "certificates": [ + { + "name": "certificate1", + "thumbprint": "feeb79a888bf1415f8e17c4965a2a5bb5c8a2ff7", + "expiry": "2020-12-04T15:32:48.0707808Z" + } + ] + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenDelete.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenDelete.json index 16a75c5c98a3..73187182a3c9 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenDelete.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenDelete.json @@ -1,14 +1,14 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "tokenName": "myToken" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "tokenName": "myToken" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenGet.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenGet.json index cdc64b423794..46ee35e9719c 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenGet.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenGet.json @@ -1,24 +1,24 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "tokenName": "myToken" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", - "name": "myToken", - "type": "Microsoft.ContainerRegistry/registries/tokens", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "provisioningState": "Succeeded", - "status": "enabled" - } - } + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "tokenName": "myToken" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", + "name": "myToken", + "type": "Microsoft.ContainerRegistry/registries/tokens", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "provisioningState": "Succeeded", + "status": "enabled" } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenList.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenList.json index 4ac04229390d..5427d8764cea 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenList.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenList.json @@ -1,27 +1,27 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", - "name": "myToken", - "type": "Microsoft.ContainerRegistry/registries/tokens", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", - "provisioningState": "Succeeded", - "status": "enabled" - } - } - ] + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", + "name": "myToken", + "type": "Microsoft.ContainerRegistry/registries/tokens", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myScopeMap", + "provisioningState": "Succeeded", + "status": "enabled" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenUpdate.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenUpdate.json index 915edaa9fe19..613f35f8a7fb 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenUpdate.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/preview/2019-05-01-preview/examples/TokenUpdate.json @@ -1,66 +1,66 @@ { - "parameters": { - "api-version": "2019-05-01-preview", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "tokenName": "myToken", - "tokenUpdateParameters": { - "properties": { - "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myNewScopeMap", - "credentials": { - "certificates": [ - { - "name": "certificate1", - "encodedPemCertificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUc3akNDQk5hZ0F3SUJBZ0lURmdBQlR3UVpyZGdmdmhxdzBnQUFBQUZQQkRBTkJna3Foa2lHOXcwQkFRc0YKQURDQml6RUxNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2xkaGMyaHBibWQwYjI0eEVEQU9CZ05WQkFjVApCMUpsWkcxdmJtUXhIakFjQmdOVkJBb1RGVTFwWTNKdmMyOW1kQ0JEYjNKd2IzSmhkR2x2YmpFVk1CTUdBMVVFCkN4TU1UV2xqY205emIyWjBJRWxVTVI0d0hBWURWUVFERXhWTmFXTnliM052Wm5RZ1NWUWdWRXhUSUVOQklEUXcKSGhjTk1UZ3dOREV5TWpJek1qUTRXaGNOTWpBd05ERXlNakl6TWpRNFdqQTVNVGN3TlFZRFZRUURFeTV6WlhKMgphV05sWTJ4cFpXNTBZMlZ5ZEMxd1lYSjBibVZ5TG0xaGJtRm5aVzFsYm5RdVlYcDFjbVV1WTI5dE1JSUJJakFOCkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBSYjdJcHpxMmR4emhhbVpyS1ZDakMzeTQyYlYKUnNIY2pCUTFuSDBHZ1puUDhXeDZDSE1mWThybkVJQzRLeVRRYkJXVzhnNXlmc3NSQ0ZXbFpxYjR6SkRXS0pmTgpGSmNMUm9LNnhwTktZYVZVTkVlT25IdUxHYTM0ZlA0VjBFRjZybzdvbkRLME5zanhjY1dZVzRNVXVzc0xrQS94CkUrM2RwU1REdk1KcjJoWUpsVnFDcVR6blQvbmZaVUZzQUVEQnp5MUpOOHZiZDlIR2czc2Myd0x4dk95cFJOc0gKT1V3V2pmN2xzWWZleEVlcWkzY29EeHc2alpLVWEyVkdsUnBpTkowMjhBQitYSi9TU1FVNVBsd0JBbU9TT3ovRApGY0NKdGpPZlBqU1NKckFIQVV3SHU3RzlSV05JTFBwYU9zQ1J5eitETE5zNGpvNlEvUUg4d1lManJRSURBUUFCCm80SUNtakNDQXBZd0N3WURWUjBQQkFRREFnU3dNQjBHQTFVZEpRUVdNQlFHQ0NzR0FRVUZCd01DQmdnckJnRUYKQlFjREFUQWRCZ05WSFE0RUZnUVVlbEdkVVJrZzJoSFFOWEQ4WUc4L3drdjJVT0F3SHdZRFZSMGpCQmd3Rm9BVQplbnVNd2Mvbm9Nb2MxR3Y2KytFend3OGFvcDB3Z2F3R0ExVWRId1NCcERDQm9UQ0JucUNCbTZDQm1JWkxhSFIwCmNEb3ZMMjF6WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjAKSlRJd1NWUWxNakJVVEZNbE1qQkRRU1V5TURRdVkzSnNoa2xvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1agpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjBKVEl3U1ZRbE1qQlVURk1sTWpCRFFTVXlNRFF1ClkzSnNNSUdGQmdnckJnRUZCUWNCQVFSNU1IY3dVUVlJS3dZQkJRVUhNQUtHUldoMGRIQTZMeTkzZDNjdWJXbGoKY205emIyWjBMbU52YlM5d2Eya3ZiWE5qYjNKd0wwMXBZM0p2YzI5bWRDVXlNRWxVSlRJd1ZFeFRKVEl3UTBFbApNakEwTG1OeWREQWlCZ2dyQmdFRkJRY3dBWVlXYUhSMGNEb3ZMMjlqYzNBdWJYTnZZM053TG1OdmJUQStCZ2tyCkJnRUVBWUkzRlFjRU1UQXZCaWNyQmdFRUFZSTNGUWlIMm9aMWcrN1pBWUxKaFJ1QnRaNWhoZlRyWUlGZGhOTGYKUW9Mbmszb0NBV1FDQVIwd1RRWURWUjBnQkVZd1JEQkNCZ2tyQmdFRUFZSTNLZ0V3TlRBekJnZ3JCZ0VGQlFjQwpBUlluYUhSMGNEb3ZMM2QzZHk1dGFXTnliM052Wm5RdVkyOXRMM0JyYVM5dGMyTnZjbkF2WTNCek1DY0dDU3NHCkFRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0l3Q2dZSUt3WUJCUVVIQXdFd09RWURWUjBSQkRJd01JSXUKYzJWeWRtbGpaV05zYVdWdWRHTmxjblF0Y0dGeWRHNWxjaTV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRBTgpCZ2txaGtpRzl3MEJBUXNGQUFPQ0FnRUFIVXIzbk1vdUI5WWdDUlRWYndUTllIS2RkWGJkSW1GUXNDYys4T1g1CjE5c0N6dFFSR05iSXEwVW1Ba01MbFVvWTIxckh4ZXdxU2hWczFhL2RwaFh5Tk1pcUdaU2QzU1BtYzZscitqUFQKNXVEREs0MUlWeXN0K2VUNlpyazFvcCtMVmdkeS9EU2lyNzVqcWZFY016bS82bU8rNnFNeWRLTWtVYmM5K3JHVwphUkpUcjRWUUdIRmEwNEIwZVZpNUd4MG9pL2RpZDNSaXg2aXJMMjFJSGEwYjN6c1hzZHpHU0R2K3hqL2Q2S0l4Ckdrd2FhYmZvU1NoQnFqaFNlQ0VyZXFlb1RpYjljdGw0MGRVdUp3THl4bjhHS2N6K3AvMEJUOEIxU3lYK01OQ2wKY0pkMjVtMjhLajY2TGUxOEVyeFlJYXZJVGVGa3Y2eGZjdkEvcHladDdPaU41QTlGQk1IUmpQK1kyZ2tvdjMrcQpISFRUZG4xNnlRajduNit3YlFHNGVleXc0YisyQkRLcUxNVFU2ZmlSQ3ZPM2FPZVBLSFVNN3R4b1FidWl6Z3NzCkNiMzl3QnJOTEZsMkJLQ1RkSCtkSU9oZVJiSkZvbmlwOGRPOUVFZWdSSG9lQW54ZUlYTFBrdXMzTzEvZjRhNkIKWHQ3RG5BUm8xSzJmeEp3VXRaU2MvR3dFSjU5NzlnRXlEa3pDZEVsLzdpWE9QZXVjTXhlM2xVM2pweUtsNERUaApjSkJqQytqNGpLWTFrK1U4b040aGdqYnJISUx6Vnd2eU15OU5KS290U3BMSjQxeHdPOHlGangxalFTT3Bxc0N1ClFhUFUvTjhSZ0hxWjBGTkFzS3dNUmZ6WmdXanRCNzRzYUVEdk5jVmNuNFhCQnFNSG0ydHo2Uzk3d3kxZGt0cTgKSE5BPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - } - ] - } + "parameters": { + "api-version": "2019-05-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "tokenName": "myToken", + "tokenUpdateParameters": { + "properties": { + "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myNewScopeMap", + "credentials": { + "certificates": [ + { + "name": "certificate1", + "encodedPemCertificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUc3akNDQk5hZ0F3SUJBZ0lURmdBQlR3UVpyZGdmdmhxdzBnQUFBQUZQQkRBTkJna3Foa2lHOXcwQkFRc0YKQURDQml6RUxNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2xkaGMyaHBibWQwYjI0eEVEQU9CZ05WQkFjVApCMUpsWkcxdmJtUXhIakFjQmdOVkJBb1RGVTFwWTNKdmMyOW1kQ0JEYjNKd2IzSmhkR2x2YmpFVk1CTUdBMVVFCkN4TU1UV2xqY205emIyWjBJRWxVTVI0d0hBWURWUVFERXhWTmFXTnliM052Wm5RZ1NWUWdWRXhUSUVOQklEUXcKSGhjTk1UZ3dOREV5TWpJek1qUTRXaGNOTWpBd05ERXlNakl6TWpRNFdqQTVNVGN3TlFZRFZRUURFeTV6WlhKMgphV05sWTJ4cFpXNTBZMlZ5ZEMxd1lYSjBibVZ5TG0xaGJtRm5aVzFsYm5RdVlYcDFjbVV1WTI5dE1JSUJJakFOCkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBSYjdJcHpxMmR4emhhbVpyS1ZDakMzeTQyYlYKUnNIY2pCUTFuSDBHZ1puUDhXeDZDSE1mWThybkVJQzRLeVRRYkJXVzhnNXlmc3NSQ0ZXbFpxYjR6SkRXS0pmTgpGSmNMUm9LNnhwTktZYVZVTkVlT25IdUxHYTM0ZlA0VjBFRjZybzdvbkRLME5zanhjY1dZVzRNVXVzc0xrQS94CkUrM2RwU1REdk1KcjJoWUpsVnFDcVR6blQvbmZaVUZzQUVEQnp5MUpOOHZiZDlIR2czc2Myd0x4dk95cFJOc0gKT1V3V2pmN2xzWWZleEVlcWkzY29EeHc2alpLVWEyVkdsUnBpTkowMjhBQitYSi9TU1FVNVBsd0JBbU9TT3ovRApGY0NKdGpPZlBqU1NKckFIQVV3SHU3RzlSV05JTFBwYU9zQ1J5eitETE5zNGpvNlEvUUg4d1lManJRSURBUUFCCm80SUNtakNDQXBZd0N3WURWUjBQQkFRREFnU3dNQjBHQTFVZEpRUVdNQlFHQ0NzR0FRVUZCd01DQmdnckJnRUYKQlFjREFUQWRCZ05WSFE0RUZnUVVlbEdkVVJrZzJoSFFOWEQ4WUc4L3drdjJVT0F3SHdZRFZSMGpCQmd3Rm9BVQplbnVNd2Mvbm9Nb2MxR3Y2KytFend3OGFvcDB3Z2F3R0ExVWRId1NCcERDQm9UQ0JucUNCbTZDQm1JWkxhSFIwCmNEb3ZMMjF6WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjAKSlRJd1NWUWxNakJVVEZNbE1qQkRRU1V5TURRdVkzSnNoa2xvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1agpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjBKVEl3U1ZRbE1qQlVURk1sTWpCRFFTVXlNRFF1ClkzSnNNSUdGQmdnckJnRUZCUWNCQVFSNU1IY3dVUVlJS3dZQkJRVUhNQUtHUldoMGRIQTZMeTkzZDNjdWJXbGoKY205emIyWjBMbU52YlM5d2Eya3ZiWE5qYjNKd0wwMXBZM0p2YzI5bWRDVXlNRWxVSlRJd1ZFeFRKVEl3UTBFbApNakEwTG1OeWREQWlCZ2dyQmdFRkJRY3dBWVlXYUhSMGNEb3ZMMjlqYzNBdWJYTnZZM053TG1OdmJUQStCZ2tyCkJnRUVBWUkzRlFjRU1UQXZCaWNyQmdFRUFZSTNGUWlIMm9aMWcrN1pBWUxKaFJ1QnRaNWhoZlRyWUlGZGhOTGYKUW9Mbmszb0NBV1FDQVIwd1RRWURWUjBnQkVZd1JEQkNCZ2tyQmdFRUFZSTNLZ0V3TlRBekJnZ3JCZ0VGQlFjQwpBUlluYUhSMGNEb3ZMM2QzZHk1dGFXTnliM052Wm5RdVkyOXRMM0JyYVM5dGMyTnZjbkF2WTNCek1DY0dDU3NHCkFRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0l3Q2dZSUt3WUJCUVVIQXdFd09RWURWUjBSQkRJd01JSXUKYzJWeWRtbGpaV05zYVdWdWRHTmxjblF0Y0dGeWRHNWxjaTV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRBTgpCZ2txaGtpRzl3MEJBUXNGQUFPQ0FnRUFIVXIzbk1vdUI5WWdDUlRWYndUTllIS2RkWGJkSW1GUXNDYys4T1g1CjE5c0N6dFFSR05iSXEwVW1Ba01MbFVvWTIxckh4ZXdxU2hWczFhL2RwaFh5Tk1pcUdaU2QzU1BtYzZscitqUFQKNXVEREs0MUlWeXN0K2VUNlpyazFvcCtMVmdkeS9EU2lyNzVqcWZFY016bS82bU8rNnFNeWRLTWtVYmM5K3JHVwphUkpUcjRWUUdIRmEwNEIwZVZpNUd4MG9pL2RpZDNSaXg2aXJMMjFJSGEwYjN6c1hzZHpHU0R2K3hqL2Q2S0l4Ckdrd2FhYmZvU1NoQnFqaFNlQ0VyZXFlb1RpYjljdGw0MGRVdUp3THl4bjhHS2N6K3AvMEJUOEIxU3lYK01OQ2wKY0pkMjVtMjhLajY2TGUxOEVyeFlJYXZJVGVGa3Y2eGZjdkEvcHladDdPaU41QTlGQk1IUmpQK1kyZ2tvdjMrcQpISFRUZG4xNnlRajduNit3YlFHNGVleXc0YisyQkRLcUxNVFU2ZmlSQ3ZPM2FPZVBLSFVNN3R4b1FidWl6Z3NzCkNiMzl3QnJOTEZsMkJLQ1RkSCtkSU9oZVJiSkZvbmlwOGRPOUVFZWdSSG9lQW54ZUlYTFBrdXMzTzEvZjRhNkIKWHQ3RG5BUm8xSzJmeEp3VXRaU2MvR3dFSjU5NzlnRXlEa3pDZEVsLzdpWE9QZXVjTXhlM2xVM2pweUtsNERUaApjSkJqQytqNGpLWTFrK1U4b040aGdqYnJISUx6Vnd2eU15OU5KS290U3BMSjQxeHdPOHlGangxalFTT3Bxc0N1ClFhUFUvTjhSZ0hxWjBGTkFzS3dNUmZ6WmdXanRCNzRzYUVEdk5jVmNuNFhCQnFNSG0ydHo2Uzk3d3kxZGt0cTgKSE5BPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" } + ] } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", + "name": "myToken", + "type": "Microsoft.ContainerRegistry/registries/tokens", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myNewScopeMap", + "provisioningState": "Succeeded", + "status": "enabled", + "credentials": { + "certificates": [ + { + "name": "certificate1", + "encodedPemCertificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUc3akNDQk5hZ0F3SUJBZ0lURmdBQlR3UVpyZGdmdmhxdzBnQUFBQUZQQkRBTkJna3Foa2lHOXcwQkFRc0YKQURDQml6RUxNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2xkaGMyaHBibWQwYjI0eEVEQU9CZ05WQkFjVApCMUpsWkcxdmJtUXhIakFjQmdOVkJBb1RGVTFwWTNKdmMyOW1kQ0JEYjNKd2IzSmhkR2x2YmpFVk1CTUdBMVVFCkN4TU1UV2xqY205emIyWjBJRWxVTVI0d0hBWURWUVFERXhWTmFXTnliM052Wm5RZ1NWUWdWRXhUSUVOQklEUXcKSGhjTk1UZ3dOREV5TWpJek1qUTRXaGNOTWpBd05ERXlNakl6TWpRNFdqQTVNVGN3TlFZRFZRUURFeTV6WlhKMgphV05sWTJ4cFpXNTBZMlZ5ZEMxd1lYSjBibVZ5TG0xaGJtRm5aVzFsYm5RdVlYcDFjbVV1WTI5dE1JSUJJakFOCkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBSYjdJcHpxMmR4emhhbVpyS1ZDakMzeTQyYlYKUnNIY2pCUTFuSDBHZ1puUDhXeDZDSE1mWThybkVJQzRLeVRRYkJXVzhnNXlmc3NSQ0ZXbFpxYjR6SkRXS0pmTgpGSmNMUm9LNnhwTktZYVZVTkVlT25IdUxHYTM0ZlA0VjBFRjZybzdvbkRLME5zanhjY1dZVzRNVXVzc0xrQS94CkUrM2RwU1REdk1KcjJoWUpsVnFDcVR6blQvbmZaVUZzQUVEQnp5MUpOOHZiZDlIR2czc2Myd0x4dk95cFJOc0gKT1V3V2pmN2xzWWZleEVlcWkzY29EeHc2alpLVWEyVkdsUnBpTkowMjhBQitYSi9TU1FVNVBsd0JBbU9TT3ovRApGY0NKdGpPZlBqU1NKckFIQVV3SHU3RzlSV05JTFBwYU9zQ1J5eitETE5zNGpvNlEvUUg4d1lManJRSURBUUFCCm80SUNtakNDQXBZd0N3WURWUjBQQkFRREFnU3dNQjBHQTFVZEpRUVdNQlFHQ0NzR0FRVUZCd01DQmdnckJnRUYKQlFjREFUQWRCZ05WSFE0RUZnUVVlbEdkVVJrZzJoSFFOWEQ4WUc4L3drdjJVT0F3SHdZRFZSMGpCQmd3Rm9BVQplbnVNd2Mvbm9Nb2MxR3Y2KytFend3OGFvcDB3Z2F3R0ExVWRId1NCcERDQm9UQ0JucUNCbTZDQm1JWkxhSFIwCmNEb3ZMMjF6WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjAKSlRJd1NWUWxNakJVVEZNbE1qQkRRU1V5TURRdVkzSnNoa2xvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1agpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjBKVEl3U1ZRbE1qQlVURk1sTWpCRFFTVXlNRFF1ClkzSnNNSUdGQmdnckJnRUZCUWNCQVFSNU1IY3dVUVlJS3dZQkJRVUhNQUtHUldoMGRIQTZMeTkzZDNjdWJXbGoKY205emIyWjBMbU52YlM5d2Eya3ZiWE5qYjNKd0wwMXBZM0p2YzI5bWRDVXlNRWxVSlRJd1ZFeFRKVEl3UTBFbApNakEwTG1OeWREQWlCZ2dyQmdFRkJRY3dBWVlXYUhSMGNEb3ZMMjlqYzNBdWJYTnZZM053TG1OdmJUQStCZ2tyCkJnRUVBWUkzRlFjRU1UQXZCaWNyQmdFRUFZSTNGUWlIMm9aMWcrN1pBWUxKaFJ1QnRaNWhoZlRyWUlGZGhOTGYKUW9Mbmszb0NBV1FDQVIwd1RRWURWUjBnQkVZd1JEQkNCZ2tyQmdFRUFZSTNLZ0V3TlRBekJnZ3JCZ0VGQlFjQwpBUlluYUhSMGNEb3ZMM2QzZHk1dGFXTnliM052Wm5RdVkyOXRMM0JyYVM5dGMyTnZjbkF2WTNCek1DY0dDU3NHCkFRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0l3Q2dZSUt3WUJCUVVIQXdFd09RWURWUjBSQkRJd01JSXUKYzJWeWRtbGpaV05zYVdWdWRHTmxjblF0Y0dGeWRHNWxjaTV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRBTgpCZ2txaGtpRzl3MEJBUXNGQUFPQ0FnRUFIVXIzbk1vdUI5WWdDUlRWYndUTllIS2RkWGJkSW1GUXNDYys4T1g1CjE5c0N6dFFSR05iSXEwVW1Ba01MbFVvWTIxckh4ZXdxU2hWczFhL2RwaFh5Tk1pcUdaU2QzU1BtYzZscitqUFQKNXVEREs0MUlWeXN0K2VUNlpyazFvcCtMVmdkeS9EU2lyNzVqcWZFY016bS82bU8rNnFNeWRLTWtVYmM5K3JHVwphUkpUcjRWUUdIRmEwNEIwZVZpNUd4MG9pL2RpZDNSaXg2aXJMMjFJSGEwYjN6c1hzZHpHU0R2K3hqL2Q2S0l4Ckdrd2FhYmZvU1NoQnFqaFNlQ0VyZXFlb1RpYjljdGw0MGRVdUp3THl4bjhHS2N6K3AvMEJUOEIxU3lYK01OQ2wKY0pkMjVtMjhLajY2TGUxOEVyeFlJYXZJVGVGa3Y2eGZjdkEvcHladDdPaU41QTlGQk1IUmpQK1kyZ2tvdjMrcQpISFRUZG4xNnlRajduNit3YlFHNGVleXc0YisyQkRLcUxNVFU2ZmlSQ3ZPM2FPZVBLSFVNN3R4b1FidWl6Z3NzCkNiMzl3QnJOTEZsMkJLQ1RkSCtkSU9oZVJiSkZvbmlwOGRPOUVFZWdSSG9lQW54ZUlYTFBrdXMzTzEvZjRhNkIKWHQ3RG5BUm8xSzJmeEp3VXRaU2MvR3dFSjU5NzlnRXlEa3pDZEVsLzdpWE9QZXVjTXhlM2xVM2pweUtsNERUaApjSkJqQytqNGpLWTFrK1U4b040aGdqYnJISUx6Vnd2eU15OU5KS290U3BMSjQxeHdPOHlGangxalFTT3Bxc0N1ClFhUFUvTjhSZ0hxWjBGTkFzS3dNUmZ6WmdXanRCNzRzYUVEdk5jVmNuNFhCQnFNSG0ydHo2Uzk3d3kxZGt0cTgKSE5BPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + } + ] + } + } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", - "name": "myToken", - "type": "Microsoft.ContainerRegistry/registries/tokens", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myNewScopeMap", - "provisioningState": "Succeeded", - "status": "enabled", - "credentials": { - "certificates": [ - { - "name": "certificate1", - "encodedPemCertificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUc3akNDQk5hZ0F3SUJBZ0lURmdBQlR3UVpyZGdmdmhxdzBnQUFBQUZQQkRBTkJna3Foa2lHOXcwQkFRc0YKQURDQml6RUxNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2xkaGMyaHBibWQwYjI0eEVEQU9CZ05WQkFjVApCMUpsWkcxdmJtUXhIakFjQmdOVkJBb1RGVTFwWTNKdmMyOW1kQ0JEYjNKd2IzSmhkR2x2YmpFVk1CTUdBMVVFCkN4TU1UV2xqY205emIyWjBJRWxVTVI0d0hBWURWUVFERXhWTmFXTnliM052Wm5RZ1NWUWdWRXhUSUVOQklEUXcKSGhjTk1UZ3dOREV5TWpJek1qUTRXaGNOTWpBd05ERXlNakl6TWpRNFdqQTVNVGN3TlFZRFZRUURFeTV6WlhKMgphV05sWTJ4cFpXNTBZMlZ5ZEMxd1lYSjBibVZ5TG0xaGJtRm5aVzFsYm5RdVlYcDFjbVV1WTI5dE1JSUJJakFOCkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBSYjdJcHpxMmR4emhhbVpyS1ZDakMzeTQyYlYKUnNIY2pCUTFuSDBHZ1puUDhXeDZDSE1mWThybkVJQzRLeVRRYkJXVzhnNXlmc3NSQ0ZXbFpxYjR6SkRXS0pmTgpGSmNMUm9LNnhwTktZYVZVTkVlT25IdUxHYTM0ZlA0VjBFRjZybzdvbkRLME5zanhjY1dZVzRNVXVzc0xrQS94CkUrM2RwU1REdk1KcjJoWUpsVnFDcVR6blQvbmZaVUZzQUVEQnp5MUpOOHZiZDlIR2czc2Myd0x4dk95cFJOc0gKT1V3V2pmN2xzWWZleEVlcWkzY29EeHc2alpLVWEyVkdsUnBpTkowMjhBQitYSi9TU1FVNVBsd0JBbU9TT3ovRApGY0NKdGpPZlBqU1NKckFIQVV3SHU3RzlSV05JTFBwYU9zQ1J5eitETE5zNGpvNlEvUUg4d1lManJRSURBUUFCCm80SUNtakNDQXBZd0N3WURWUjBQQkFRREFnU3dNQjBHQTFVZEpRUVdNQlFHQ0NzR0FRVUZCd01DQmdnckJnRUYKQlFjREFUQWRCZ05WSFE0RUZnUVVlbEdkVVJrZzJoSFFOWEQ4WUc4L3drdjJVT0F3SHdZRFZSMGpCQmd3Rm9BVQplbnVNd2Mvbm9Nb2MxR3Y2KytFend3OGFvcDB3Z2F3R0ExVWRId1NCcERDQm9UQ0JucUNCbTZDQm1JWkxhSFIwCmNEb3ZMMjF6WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjAKSlRJd1NWUWxNakJVVEZNbE1qQkRRU1V5TURRdVkzSnNoa2xvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1agpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjBKVEl3U1ZRbE1qQlVURk1sTWpCRFFTVXlNRFF1ClkzSnNNSUdGQmdnckJnRUZCUWNCQVFSNU1IY3dVUVlJS3dZQkJRVUhNQUtHUldoMGRIQTZMeTkzZDNjdWJXbGoKY205emIyWjBMbU52YlM5d2Eya3ZiWE5qYjNKd0wwMXBZM0p2YzI5bWRDVXlNRWxVSlRJd1ZFeFRKVEl3UTBFbApNakEwTG1OeWREQWlCZ2dyQmdFRkJRY3dBWVlXYUhSMGNEb3ZMMjlqYzNBdWJYTnZZM053TG1OdmJUQStCZ2tyCkJnRUVBWUkzRlFjRU1UQXZCaWNyQmdFRUFZSTNGUWlIMm9aMWcrN1pBWUxKaFJ1QnRaNWhoZlRyWUlGZGhOTGYKUW9Mbmszb0NBV1FDQVIwd1RRWURWUjBnQkVZd1JEQkNCZ2tyQmdFRUFZSTNLZ0V3TlRBekJnZ3JCZ0VGQlFjQwpBUlluYUhSMGNEb3ZMM2QzZHk1dGFXTnliM052Wm5RdVkyOXRMM0JyYVM5dGMyTnZjbkF2WTNCek1DY0dDU3NHCkFRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0l3Q2dZSUt3WUJCUVVIQXdFd09RWURWUjBSQkRJd01JSXUKYzJWeWRtbGpaV05zYVdWdWRHTmxjblF0Y0dGeWRHNWxjaTV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRBTgpCZ2txaGtpRzl3MEJBUXNGQUFPQ0FnRUFIVXIzbk1vdUI5WWdDUlRWYndUTllIS2RkWGJkSW1GUXNDYys4T1g1CjE5c0N6dFFSR05iSXEwVW1Ba01MbFVvWTIxckh4ZXdxU2hWczFhL2RwaFh5Tk1pcUdaU2QzU1BtYzZscitqUFQKNXVEREs0MUlWeXN0K2VUNlpyazFvcCtMVmdkeS9EU2lyNzVqcWZFY016bS82bU8rNnFNeWRLTWtVYmM5K3JHVwphUkpUcjRWUUdIRmEwNEIwZVZpNUd4MG9pL2RpZDNSaXg2aXJMMjFJSGEwYjN6c1hzZHpHU0R2K3hqL2Q2S0l4Ckdrd2FhYmZvU1NoQnFqaFNlQ0VyZXFlb1RpYjljdGw0MGRVdUp3THl4bjhHS2N6K3AvMEJUOEIxU3lYK01OQ2wKY0pkMjVtMjhLajY2TGUxOEVyeFlJYXZJVGVGa3Y2eGZjdkEvcHladDdPaU41QTlGQk1IUmpQK1kyZ2tvdjMrcQpISFRUZG4xNnlRajduNit3YlFHNGVleXc0YisyQkRLcUxNVFU2ZmlSQ3ZPM2FPZVBLSFVNN3R4b1FidWl6Z3NzCkNiMzl3QnJOTEZsMkJLQ1RkSCtkSU9oZVJiSkZvbmlwOGRPOUVFZWdSSG9lQW54ZUlYTFBrdXMzTzEvZjRhNkIKWHQ3RG5BUm8xSzJmeEp3VXRaU2MvR3dFSjU5NzlnRXlEa3pDZEVsLzdpWE9QZXVjTXhlM2xVM2pweUtsNERUaApjSkJqQytqNGpLWTFrK1U4b040aGdqYnJISUx6Vnd2eU15OU5KS290U3BMSjQxeHdPOHlGangxalFTT3Bxc0N1ClFhUFUvTjhSZ0hxWjBGTkFzS3dNUmZ6WmdXanRCNzRzYUVEdk5jVmNuNFhCQnFNSG0ydHo2Uzk3d3kxZGt0cTgKSE5BPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - } - ] - } - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", - "name": "myToken", - "type": "Microsoft.ContainerRegistry/registries/tokens", - "properties": { - "creationDate": "2017-03-01T23:14:37.0707808Z", - "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myNewScopeMap", - "provisioningState": "Succeeded", - "status": "enabled", - "credentials": { - "certificates": [ - { - "name": "certificate1", - "encodedPemCertificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUc3akNDQk5hZ0F3SUJBZ0lURmdBQlR3UVpyZGdmdmhxdzBnQUFBQUZQQkRBTkJna3Foa2lHOXcwQkFRc0YKQURDQml6RUxNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2xkaGMyaHBibWQwYjI0eEVEQU9CZ05WQkFjVApCMUpsWkcxdmJtUXhIakFjQmdOVkJBb1RGVTFwWTNKdmMyOW1kQ0JEYjNKd2IzSmhkR2x2YmpFVk1CTUdBMVVFCkN4TU1UV2xqY205emIyWjBJRWxVTVI0d0hBWURWUVFERXhWTmFXTnliM052Wm5RZ1NWUWdWRXhUSUVOQklEUXcKSGhjTk1UZ3dOREV5TWpJek1qUTRXaGNOTWpBd05ERXlNakl6TWpRNFdqQTVNVGN3TlFZRFZRUURFeTV6WlhKMgphV05sWTJ4cFpXNTBZMlZ5ZEMxd1lYSjBibVZ5TG0xaGJtRm5aVzFsYm5RdVlYcDFjbVV1WTI5dE1JSUJJakFOCkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBSYjdJcHpxMmR4emhhbVpyS1ZDakMzeTQyYlYKUnNIY2pCUTFuSDBHZ1puUDhXeDZDSE1mWThybkVJQzRLeVRRYkJXVzhnNXlmc3NSQ0ZXbFpxYjR6SkRXS0pmTgpGSmNMUm9LNnhwTktZYVZVTkVlT25IdUxHYTM0ZlA0VjBFRjZybzdvbkRLME5zanhjY1dZVzRNVXVzc0xrQS94CkUrM2RwU1REdk1KcjJoWUpsVnFDcVR6blQvbmZaVUZzQUVEQnp5MUpOOHZiZDlIR2czc2Myd0x4dk95cFJOc0gKT1V3V2pmN2xzWWZleEVlcWkzY29EeHc2alpLVWEyVkdsUnBpTkowMjhBQitYSi9TU1FVNVBsd0JBbU9TT3ovRApGY0NKdGpPZlBqU1NKckFIQVV3SHU3RzlSV05JTFBwYU9zQ1J5eitETE5zNGpvNlEvUUg4d1lManJRSURBUUFCCm80SUNtakNDQXBZd0N3WURWUjBQQkFRREFnU3dNQjBHQTFVZEpRUVdNQlFHQ0NzR0FRVUZCd01DQmdnckJnRUYKQlFjREFUQWRCZ05WSFE0RUZnUVVlbEdkVVJrZzJoSFFOWEQ4WUc4L3drdjJVT0F3SHdZRFZSMGpCQmd3Rm9BVQplbnVNd2Mvbm9Nb2MxR3Y2KytFend3OGFvcDB3Z2F3R0ExVWRId1NCcERDQm9UQ0JucUNCbTZDQm1JWkxhSFIwCmNEb3ZMMjF6WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjAKSlRJd1NWUWxNakJVVEZNbE1qQkRRU1V5TURRdVkzSnNoa2xvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1agpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjBKVEl3U1ZRbE1qQlVURk1sTWpCRFFTVXlNRFF1ClkzSnNNSUdGQmdnckJnRUZCUWNCQVFSNU1IY3dVUVlJS3dZQkJRVUhNQUtHUldoMGRIQTZMeTkzZDNjdWJXbGoKY205emIyWjBMbU52YlM5d2Eya3ZiWE5qYjNKd0wwMXBZM0p2YzI5bWRDVXlNRWxVSlRJd1ZFeFRKVEl3UTBFbApNakEwTG1OeWREQWlCZ2dyQmdFRkJRY3dBWVlXYUhSMGNEb3ZMMjlqYzNBdWJYTnZZM053TG1OdmJUQStCZ2tyCkJnRUVBWUkzRlFjRU1UQXZCaWNyQmdFRUFZSTNGUWlIMm9aMWcrN1pBWUxKaFJ1QnRaNWhoZlRyWUlGZGhOTGYKUW9Mbmszb0NBV1FDQVIwd1RRWURWUjBnQkVZd1JEQkNCZ2tyQmdFRUFZSTNLZ0V3TlRBekJnZ3JCZ0VGQlFjQwpBUlluYUhSMGNEb3ZMM2QzZHk1dGFXTnliM052Wm5RdVkyOXRMM0JyYVM5dGMyTnZjbkF2WTNCek1DY0dDU3NHCkFRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0l3Q2dZSUt3WUJCUVVIQXdFd09RWURWUjBSQkRJd01JSXUKYzJWeWRtbGpaV05zYVdWdWRHTmxjblF0Y0dGeWRHNWxjaTV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRBTgpCZ2txaGtpRzl3MEJBUXNGQUFPQ0FnRUFIVXIzbk1vdUI5WWdDUlRWYndUTllIS2RkWGJkSW1GUXNDYys4T1g1CjE5c0N6dFFSR05iSXEwVW1Ba01MbFVvWTIxckh4ZXdxU2hWczFhL2RwaFh5Tk1pcUdaU2QzU1BtYzZscitqUFQKNXVEREs0MUlWeXN0K2VUNlpyazFvcCtMVmdkeS9EU2lyNzVqcWZFY016bS82bU8rNnFNeWRLTWtVYmM5K3JHVwphUkpUcjRWUUdIRmEwNEIwZVZpNUd4MG9pL2RpZDNSaXg2aXJMMjFJSGEwYjN6c1hzZHpHU0R2K3hqL2Q2S0l4Ckdrd2FhYmZvU1NoQnFqaFNlQ0VyZXFlb1RpYjljdGw0MGRVdUp3THl4bjhHS2N6K3AvMEJUOEIxU3lYK01OQ2wKY0pkMjVtMjhLajY2TGUxOEVyeFlJYXZJVGVGa3Y2eGZjdkEvcHladDdPaU41QTlGQk1IUmpQK1kyZ2tvdjMrcQpISFRUZG4xNnlRajduNit3YlFHNGVleXc0YisyQkRLcUxNVFU2ZmlSQ3ZPM2FPZVBLSFVNN3R4b1FidWl6Z3NzCkNiMzl3QnJOTEZsMkJLQ1RkSCtkSU9oZVJiSkZvbmlwOGRPOUVFZWdSSG9lQW54ZUlYTFBrdXMzTzEvZjRhNkIKWHQ3RG5BUm8xSzJmeEp3VXRaU2MvR3dFSjU5NzlnRXlEa3pDZEVsLzdpWE9QZXVjTXhlM2xVM2pweUtsNERUaApjSkJqQytqNGpLWTFrK1U4b040aGdqYnJISUx6Vnd2eU15OU5KS290U3BMSjQxeHdPOHlGangxalFTT3Bxc0N1ClFhUFUvTjhSZ0hxWjBGTkFzS3dNUmZ6WmdXanRCNzRzYUVEdk5jVmNuNFhCQnFNSG0ydHo2Uzk3d3kxZGt0cTgKSE5BPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - } - ] - } - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/tokens/myToken", + "name": "myToken", + "type": "Microsoft.ContainerRegistry/registries/tokens", + "properties": { + "creationDate": "2017-03-01T23:14:37.0707808Z", + "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/scopeMaps/myNewScopeMap", + "provisioningState": "Succeeded", + "status": "enabled", + "credentials": { + "certificates": [ + { + "name": "certificate1", + "encodedPemCertificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUc3akNDQk5hZ0F3SUJBZ0lURmdBQlR3UVpyZGdmdmhxdzBnQUFBQUZQQkRBTkJna3Foa2lHOXcwQkFRc0YKQURDQml6RUxNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2xkaGMyaHBibWQwYjI0eEVEQU9CZ05WQkFjVApCMUpsWkcxdmJtUXhIakFjQmdOVkJBb1RGVTFwWTNKdmMyOW1kQ0JEYjNKd2IzSmhkR2x2YmpFVk1CTUdBMVVFCkN4TU1UV2xqY205emIyWjBJRWxVTVI0d0hBWURWUVFERXhWTmFXTnliM052Wm5RZ1NWUWdWRXhUSUVOQklEUXcKSGhjTk1UZ3dOREV5TWpJek1qUTRXaGNOTWpBd05ERXlNakl6TWpRNFdqQTVNVGN3TlFZRFZRUURFeTV6WlhKMgphV05sWTJ4cFpXNTBZMlZ5ZEMxd1lYSjBibVZ5TG0xaGJtRm5aVzFsYm5RdVlYcDFjbVV1WTI5dE1JSUJJakFOCkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBSYjdJcHpxMmR4emhhbVpyS1ZDakMzeTQyYlYKUnNIY2pCUTFuSDBHZ1puUDhXeDZDSE1mWThybkVJQzRLeVRRYkJXVzhnNXlmc3NSQ0ZXbFpxYjR6SkRXS0pmTgpGSmNMUm9LNnhwTktZYVZVTkVlT25IdUxHYTM0ZlA0VjBFRjZybzdvbkRLME5zanhjY1dZVzRNVXVzc0xrQS94CkUrM2RwU1REdk1KcjJoWUpsVnFDcVR6blQvbmZaVUZzQUVEQnp5MUpOOHZiZDlIR2czc2Myd0x4dk95cFJOc0gKT1V3V2pmN2xzWWZleEVlcWkzY29EeHc2alpLVWEyVkdsUnBpTkowMjhBQitYSi9TU1FVNVBsd0JBbU9TT3ovRApGY0NKdGpPZlBqU1NKckFIQVV3SHU3RzlSV05JTFBwYU9zQ1J5eitETE5zNGpvNlEvUUg4d1lManJRSURBUUFCCm80SUNtakNDQXBZd0N3WURWUjBQQkFRREFnU3dNQjBHQTFVZEpRUVdNQlFHQ0NzR0FRVUZCd01DQmdnckJnRUYKQlFjREFUQWRCZ05WSFE0RUZnUVVlbEdkVVJrZzJoSFFOWEQ4WUc4L3drdjJVT0F3SHdZRFZSMGpCQmd3Rm9BVQplbnVNd2Mvbm9Nb2MxR3Y2KytFend3OGFvcDB3Z2F3R0ExVWRId1NCcERDQm9UQ0JucUNCbTZDQm1JWkxhSFIwCmNEb3ZMMjF6WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjAKSlRJd1NWUWxNakJVVEZNbE1qQkRRU1V5TURRdVkzSnNoa2xvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1agpiMjB2Y0d0cEwyMXpZMjl5Y0M5amNtd3ZUV2xqY205emIyWjBKVEl3U1ZRbE1qQlVURk1sTWpCRFFTVXlNRFF1ClkzSnNNSUdGQmdnckJnRUZCUWNCQVFSNU1IY3dVUVlJS3dZQkJRVUhNQUtHUldoMGRIQTZMeTkzZDNjdWJXbGoKY205emIyWjBMbU52YlM5d2Eya3ZiWE5qYjNKd0wwMXBZM0p2YzI5bWRDVXlNRWxVSlRJd1ZFeFRKVEl3UTBFbApNakEwTG1OeWREQWlCZ2dyQmdFRkJRY3dBWVlXYUhSMGNEb3ZMMjlqYzNBdWJYTnZZM053TG1OdmJUQStCZ2tyCkJnRUVBWUkzRlFjRU1UQXZCaWNyQmdFRUFZSTNGUWlIMm9aMWcrN1pBWUxKaFJ1QnRaNWhoZlRyWUlGZGhOTGYKUW9Mbmszb0NBV1FDQVIwd1RRWURWUjBnQkVZd1JEQkNCZ2tyQmdFRUFZSTNLZ0V3TlRBekJnZ3JCZ0VGQlFjQwpBUlluYUhSMGNEb3ZMM2QzZHk1dGFXTnliM052Wm5RdVkyOXRMM0JyYVM5dGMyTnZjbkF2WTNCek1DY0dDU3NHCkFRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0l3Q2dZSUt3WUJCUVVIQXdFd09RWURWUjBSQkRJd01JSXUKYzJWeWRtbGpaV05zYVdWdWRHTmxjblF0Y0dGeWRHNWxjaTV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRBTgpCZ2txaGtpRzl3MEJBUXNGQUFPQ0FnRUFIVXIzbk1vdUI5WWdDUlRWYndUTllIS2RkWGJkSW1GUXNDYys4T1g1CjE5c0N6dFFSR05iSXEwVW1Ba01MbFVvWTIxckh4ZXdxU2hWczFhL2RwaFh5Tk1pcUdaU2QzU1BtYzZscitqUFQKNXVEREs0MUlWeXN0K2VUNlpyazFvcCtMVmdkeS9EU2lyNzVqcWZFY016bS82bU8rNnFNeWRLTWtVYmM5K3JHVwphUkpUcjRWUUdIRmEwNEIwZVZpNUd4MG9pL2RpZDNSaXg2aXJMMjFJSGEwYjN6c1hzZHpHU0R2K3hqL2Q2S0l4Ckdrd2FhYmZvU1NoQnFqaFNlQ0VyZXFlb1RpYjljdGw0MGRVdUp3THl4bjhHS2N6K3AvMEJUOEIxU3lYK01OQ2wKY0pkMjVtMjhLajY2TGUxOEVyeFlJYXZJVGVGa3Y2eGZjdkEvcHladDdPaU41QTlGQk1IUmpQK1kyZ2tvdjMrcQpISFRUZG4xNnlRajduNit3YlFHNGVleXc0YisyQkRLcUxNVFU2ZmlSQ3ZPM2FPZVBLSFVNN3R4b1FidWl6Z3NzCkNiMzl3QnJOTEZsMkJLQ1RkSCtkSU9oZVJiSkZvbmlwOGRPOUVFZWdSSG9lQW54ZUlYTFBrdXMzTzEvZjRhNkIKWHQ3RG5BUm8xSzJmeEp3VXRaU2MvR3dFSjU5NzlnRXlEa3pDZEVsLzdpWE9QZXVjTXhlM2xVM2pweUtsNERUaApjSkJqQytqNGpLWTFrK1U4b040aGdqYnJISUx6Vnd2eU15OU5KS290U3BMSjQxeHdPOHlGangxalFTT3Bxc0N1ClFhUFUvTjhSZ0hxWjBGTkFzS3dNUmZ6WmdXanRCNzRzYUVEdk5jVmNuNFhCQnFNSG0ydHo2Uzk3d3kxZGt0cTgKSE5BPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + } + ] + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageByManifestDigest.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageByManifestDigest.json index ec649f51a16a..8fb58f959c71 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageByManifestDigest.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageByManifestDigest.json @@ -1,25 +1,25 @@ { + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "parameters": { - "source": { - "resourceId": "/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/sourceResourceGroup/providers/Microsoft.ContainerRegistry/registries/sourceRegistry", - "sourceImage": "sourceRepository@sha256:0000000000000000000000000000000000000000000000000000000000000000" - }, - "targetTags": [ - "targetRepository:targetTag" - ], - "untaggedTargetRepositories": [ - "targetRepository1" - ], - "mode": "Force" - } - }, - "responses": { - "200": {}, - "202": {} + "source": { + "resourceId": "/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/sourceResourceGroup/providers/Microsoft.ContainerRegistry/registries/sourceRegistry", + "sourceImage": "sourceRepository@sha256:0000000000000000000000000000000000000000000000000000000000000000" + }, + "targetTags": [ + "targetRepository:targetTag" + ], + "untaggedTargetRepositories": [ + "targetRepository1" + ], + "mode": "Force" } -} \ No newline at end of file + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageByTag.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageByTag.json index 0dd0bfa0bd2d..670ea3ad7868 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageByTag.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageByTag.json @@ -1,25 +1,25 @@ { + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "parameters": { - "source": { - "resourceId": "/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/sourceResourceGroup/providers/Microsoft.ContainerRegistry/registries/sourceRegistry", - "sourceImage": "sourceRepository:sourceTag" - }, - "targetTags": [ - "targetRepository:targetTag" - ], - "untaggedTargetRepositories": [ - "targetRepository1" - ], - "mode": "Force" - } - }, - "responses": { - "200": {}, - "202": {} + "source": { + "resourceId": "/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/sourceResourceGroup/providers/Microsoft.ContainerRegistry/registries/sourceRegistry", + "sourceImage": "sourceRepository:sourceTag" + }, + "targetTags": [ + "targetRepository:targetTag" + ], + "untaggedTargetRepositories": [ + "targetRepository1" + ], + "mode": "Force" } -} \ No newline at end of file + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageFromPublicRegistry.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageFromPublicRegistry.json index 28af584fe5c6..cf238912668d 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageFromPublicRegistry.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ImportImageFromPublicRegistry.json @@ -1,25 +1,25 @@ { + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "parameters": { - "source": { - "registryUri": "registry.hub.docker.com", - "sourceImage":"library/hello-world" - }, - "targetTags": [ - "targetRepository:targetTag" - ], - "untaggedTargetRepositories": [ - "targetRepository1" - ], - "mode": "Force" - } - }, - "responses": { - "200": {}, - "202": {} + "source": { + "registryUri": "registry.hub.docker.com", + "sourceImage": "library/hello-world" + }, + "targetTags": [ + "targetRepository:targetTag" + ], + "untaggedTargetRepositories": [ + "targetRepository1" + ], + "mode": "Force" } -} \ No newline at end of file + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCheckNameAvailable.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCheckNameAvailable.json index ad298cef632c..d7190c1848e8 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCheckNameAvailable.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCheckNameAvailable.json @@ -1,17 +1,17 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "registryNameCheckRequest": { - "name": "myRegistry", - "type": "Microsoft.ContainerRegistry/registries" - } - }, - "responses": { - "200": { - "body": { - "nameAvailable": true - } - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "registryNameCheckRequest": { + "name": "myRegistry", + "type": "Microsoft.ContainerRegistry/registries" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": true + } + } + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCheckNameNotAvailable.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCheckNameNotAvailable.json index 0e37ea5b913c..862323839355 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCheckNameNotAvailable.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCheckNameNotAvailable.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "registryNameCheckRequest": { - "name": "myRegistry", - "type": "Microsoft.ContainerRegistry/registries" - } - }, - "responses": { - "200": { - "body": { - "nameAvailable": false, - "reason": "AlreadyExists", - "message": "The registry myRegistry is already in use." - } - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "registryNameCheckRequest": { + "name": "myRegistry", + "type": "Microsoft.ContainerRegistry/registries" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": false, + "reason": "AlreadyExists", + "message": "The registry myRegistry is already in use." + } + } + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCreate.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCreate.json index 9603d0895614..fbc63f844933 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCreate.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryCreate.json @@ -1,74 +1,74 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "registry": { - "location": "westus", - "tags": { - "key": "value" - }, - "sku": { - "name": "Standard" - }, - "properties": { - "adminUserEnabled": true - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "registry": { + "location": "westus", + "tags": { + "key": "value" + }, + "sku": { + "name": "Standard" + }, + "properties": { + "adminUserEnabled": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", + "name": "myRegistry", + "type": "Microsoft.ContainerRegistry/registries", + "location": "westus", + "tags": { + "key": "value" + }, + "sku": { + "name": "Standard", + "tier": "Standard" + }, + "properties": { + "loginServer": "myregistry.azurecr.io", + "creationDate": "2017-03-01T23:14:37.0707808Z", + "provisioningState": "Succeeded", + "status": { + "displayStatus": "Ready", + "message": "The registry is ready.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + }, + "adminUserEnabled": true } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", - "name": "myRegistry", - "type": "Microsoft.ContainerRegistry/registries", - "location": "westus", - "tags": { - "key": "value" - }, - "sku": { - "name": "Standard", - "tier": "Standard" - }, - "properties": { - "loginServer": "myregistry.azurecr.io", - "creationDate": "2017-03-01T23:14:37.0707808Z", - "provisioningState": "Succeeded", - "status": { - "displayStatus": "Ready", - "message": "The registry is ready.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - }, - "adminUserEnabled": true - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", + "name": "myRegistry", + "type": "Microsoft.ContainerRegistry/registries", + "location": "westus", + "tags": { + "key": "value" + }, + "sku": { + "name": "Standard", + "tier": "Standard" }, - "201": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", - "name": "myRegistry", - "type": "Microsoft.ContainerRegistry/registries", - "location": "westus", - "tags": { - "key": "value" - }, - "sku": { - "name": "Standard", - "tier": "Standard" - }, - "properties": { - "loginServer": "myregistry.azurecr.io", - "creationDate": "2017-03-01T23:14:37.0707808Z", - "provisioningState": "Creating", - "status": { - "displayStatus": "Provisioning", - "message": "The registry is provisioning.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - }, - "adminUserEnabled": true - } - } + "properties": { + "loginServer": "myregistry.azurecr.io", + "creationDate": "2017-03-01T23:14:37.0707808Z", + "provisioningState": "Creating", + "status": { + "displayStatus": "Provisioning", + "message": "The registry is provisioning.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + }, + "adminUserEnabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryDelete.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryDelete.json index e5ac6a1503dc..323c7928bad7 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryDelete.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryDelete.json @@ -1,13 +1,13 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryGet.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryGet.json index bf200514f342..d68238abd360 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryGet.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryGet.json @@ -1,36 +1,36 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", - "name": "myRegistry", - "type": "Microsoft.ContainerRegistry/registries", - "location": "westus", - "tags": { - "key": "value" - }, - "sku": { - "name": "Standard", - "tier": "Standard" - }, - "properties": { - "loginServer": "myregistry.azurecr.io", - "creationDate": "2017-03-01T23:14:37.0707808Z", - "provisioningState": "Succeeded", - "status": { - "displayStatus": "Ready", - "message": "The registry is ready.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - }, - "adminUserEnabled": true - } - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", + "name": "myRegistry", + "type": "Microsoft.ContainerRegistry/registries", + "location": "westus", + "tags": { + "key": "value" + }, + "sku": { + "name": "Standard", + "tier": "Standard" + }, + "properties": { + "loginServer": "myregistry.azurecr.io", + "creationDate": "2017-03-01T23:14:37.0707808Z", + "provisioningState": "Succeeded", + "status": { + "displayStatus": "Ready", + "message": "The registry is ready.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + }, + "adminUserEnabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryList.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryList.json index 8bf9da0812b0..cfdd1c1ebf56 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryList.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryList.json @@ -1,38 +1,38 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", - "name": "myRegistry", - "type": "Microsoft.ContainerRegistry/registries", - "location": "westus", - "tags": { - "key": "value" - }, - "sku": { - "name": "Standard", - "tier": "Standard" - }, - "properties": { - "loginServer": "myregistry.azurecr.io", - "creationDate": "2017-03-01T23:14:37.0707808Z", - "provisioningState": "Succeeded", - "status": { - "displayStatus": "Ready", - "message": "The registry is ready.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - }, - "adminUserEnabled": true - } - } - ] + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", + "name": "myRegistry", + "type": "Microsoft.ContainerRegistry/registries", + "location": "westus", + "tags": { + "key": "value" + }, + "sku": { + "name": "Standard", + "tier": "Standard" + }, + "properties": { + "loginServer": "myregistry.azurecr.io", + "creationDate": "2017-03-01T23:14:37.0707808Z", + "provisioningState": "Succeeded", + "status": { + "displayStatus": "Ready", + "message": "The registry is ready.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + }, + "adminUserEnabled": true } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListByResourceGroup.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListByResourceGroup.json index 7cf5bd248328..10207c29d4c5 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListByResourceGroup.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListByResourceGroup.json @@ -1,39 +1,39 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", - "name": "myRegistry", - "type": "Microsoft.ContainerRegistry/registries", - "location": "westus", - "tags": { - "key": "value" - }, - "sku": { - "name": "Standard", - "tier": "Standard" - }, - "properties": { - "loginServer": "myregistry.azurecr.io", - "creationDate": "2017-03-01T23:14:37.0707808Z", - "provisioningState": "Succeeded", - "status": { - "displayStatus": "Ready", - "message": "The registry is ready.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - }, - "adminUserEnabled": true - } - } - ] + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", + "name": "myRegistry", + "type": "Microsoft.ContainerRegistry/registries", + "location": "westus", + "tags": { + "key": "value" + }, + "sku": { + "name": "Standard", + "tier": "Standard" + }, + "properties": { + "loginServer": "myregistry.azurecr.io", + "creationDate": "2017-03-01T23:14:37.0707808Z", + "provisioningState": "Succeeded", + "status": { + "displayStatus": "Ready", + "message": "The registry is ready.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + }, + "adminUserEnabled": true } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListCredentials.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListCredentials.json index 4cdd541af9e8..544697dfe180 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListCredentials.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListCredentials.json @@ -1,25 +1,25 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry" - }, - "responses": { - "200": { - "body": { - "username": "myRegistry", - "passwords": [ - { - "name": "password", - "value": "00000000000000000000000000000000" - }, - { - "name": "password2", - "value": "00000000000000000000000000000000" - } - ] - } - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry" + }, + "responses": { + "200": { + "body": { + "username": "myRegistry", + "passwords": [ + { + "name": "password", + "value": "00000000000000000000000000000000" + }, + { + "name": "password2", + "value": "00000000000000000000000000000000" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListUsages.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListUsages.json index c0af4318b531..14afdc63e930 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListUsages.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryListUsages.json @@ -1,28 +1,28 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "Size", - "limit": 107374182400, - "currentValue": 12345678, - "unit": "Bytes" - }, - { - "name": "Webhooks", - "limit": 10, - "currentValue": 2, - "unit": "Count" - } - ] - } - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Size", + "limit": 107374182400, + "currentValue": 12345678, + "unit": "Bytes" + }, + { + "name": "Webhooks", + "limit": 10, + "currentValue": 2, + "unit": "Count" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryRegenerateCredential.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryRegenerateCredential.json index 424711d9d97e..9eadc9e2938d 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryRegenerateCredential.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryRegenerateCredential.json @@ -1,28 +1,28 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "regenerateCredentialParameters": { - "name": "password" - } - }, - "responses": { - "200": { - "body": { - "username": "myRegistry", - "passwords": [ - { - "name": "password", - "value": "00000000000000000000000000000000" - }, - { - "name": "password2", - "value": "00000000000000000000000000000000" - } - ] - } - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "regenerateCredentialParameters": { + "name": "password" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "username": "myRegistry", + "passwords": [ + { + "name": "password", + "value": "00000000000000000000000000000000" + }, + { + "name": "password2", + "value": "00000000000000000000000000000000" + } + ] + } + } + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryUpdate.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryUpdate.json index a602000be9c6..72641187057f 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryUpdate.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/RegistryUpdate.json @@ -1,73 +1,73 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "registryUpdateParameters": { - "tags": { - "key": "value" - }, - "sku": { - "name": "Standard" - }, - "properties": { - "adminUserEnabled": true - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "registryUpdateParameters": { + "tags": { + "key": "value" + }, + "sku": { + "name": "Standard" + }, + "properties": { + "adminUserEnabled": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", + "name": "myRegistry", + "type": "Microsoft.ContainerRegistry/registries", + "location": "westus", + "tags": { + "key": "value" + }, + "sku": { + "name": "Standard", + "tier": "Standard" + }, + "properties": { + "loginServer": "myregistry.azurecr.io", + "creationDate": "2017-03-01T23:14:37.0707808Z", + "provisioningState": "Succeeded", + "status": { + "displayStatus": "Ready", + "message": "The registry is ready.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + }, + "adminUserEnabled": true } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", - "name": "myRegistry", - "type": "Microsoft.ContainerRegistry/registries", - "location": "westus", - "tags": { - "key": "value" - }, - "sku": { - "name": "Standard", - "tier": "Standard" - }, - "properties": { - "loginServer": "myregistry.azurecr.io", - "creationDate": "2017-03-01T23:14:37.0707808Z", - "provisioningState": "Succeeded", - "status": { - "displayStatus": "Ready", - "message": "The registry is ready.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - }, - "adminUserEnabled": true - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", + "name": "myRegistry", + "type": "Microsoft.ContainerRegistry/registries", + "location": "westus", + "tags": { + "key": "value" + }, + "sku": { + "name": "Standard", + "tier": "Standard" }, - "201": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry", - "name": "myRegistry", - "type": "Microsoft.ContainerRegistry/registries", - "location": "westus", - "tags": { - "key": "value" - }, - "sku": { - "name": "Standard", - "tier": "Standard" - }, - "properties": { - "loginServer": "myregistry.azurecr.io", - "creationDate": "2017-03-01T23:14:37.0707808Z", - "provisioningState": "Updating", - "status": { - "displayStatus": "Provisioning", - "message": "The registry is provisioning.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - }, - "adminUserEnabled": true - } - } + "properties": { + "loginServer": "myregistry.azurecr.io", + "creationDate": "2017-03-01T23:14:37.0707808Z", + "provisioningState": "Updating", + "status": { + "displayStatus": "Provisioning", + "message": "The registry is provisioning.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + }, + "adminUserEnabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationCreate.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationCreate.json index 8b691b02dbf8..97a64ae171ca 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationCreate.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationCreate.json @@ -1,55 +1,55 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "replicationName": "myReplication", - "replication": { - "location": "eastus", - "tags": { - "key": "value" - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "replicationName": "myReplication", + "replication": { + "location": "eastus", + "tags": { + "key": "value" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", + "name": "myReplication", + "type": "Microsoft.ContainerRegistry/registries/replications", + "location": "eastus", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded", + "status": { + "displayStatus": "Ready", + "message": "The replication is ready.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + } } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", - "name": "myReplication", - "type": "Microsoft.ContainerRegistry/registries/replications", - "location": "eastus", - "tags": { - "key": "value" - }, - "properties": { - "provisioningState": "Succeeded", - "status": { - "displayStatus": "Ready", - "message": "The replication is ready.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - } - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", + "name": "myReplication", + "type": "Microsoft.ContainerRegistry/registries/replications", + "location": "eastus", + "tags": { + "key": "value" }, - "201": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", - "name": "myReplication", - "type": "Microsoft.ContainerRegistry/registries/replications", - "location": "eastus", - "tags": { - "key": "value" - }, - "properties": { - "provisioningState": "Creating", - "status": { - "displayStatus": "Provisioning", - "message": "The replication is provisioning.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - } - } - } + "properties": { + "provisioningState": "Creating", + "status": { + "displayStatus": "Provisioning", + "message": "The replication is provisioning.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationDelete.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationDelete.json index 290be3489404..3f854c0cf3f3 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationDelete.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationDelete.json @@ -1,14 +1,14 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "replicationName": "myReplication" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "replicationName": "myReplication" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationGet.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationGet.json index 86ff0864fc73..abcd2a356b3f 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationGet.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationGet.json @@ -1,30 +1,30 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "replicationName": "myReplication" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", - "name": "myReplication", - "type": "Microsoft.ContainerRegistry/registries/replications", - "location": "eastus", - "tags": { - "key": "value" - }, - "properties": { - "provisioningState": "Succeeded", - "status": { - "displayStatus": "Ready", - "message": "The replication is ready.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - } - } - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "replicationName": "myReplication" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", + "name": "myReplication", + "type": "Microsoft.ContainerRegistry/registries/replications", + "location": "eastus", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded", + "status": { + "displayStatus": "Ready", + "message": "The replication is ready.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationList.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationList.json index 10a6b9050d97..11fb205b06fb 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationList.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationList.json @@ -1,33 +1,33 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", - "name": "myReplication", - "type": "Microsoft.ContainerRegistry/registries/replications", - "location": "eastus", - "tags": { - "key": "value" - }, - "properties": { - "provisioningState": "Succeeded", - "status": { - "displayStatus": "Ready", - "message": "The replication is ready.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - } - } - } - ] + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", + "name": "myReplication", + "type": "Microsoft.ContainerRegistry/registries/replications", + "location": "eastus", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded", + "status": { + "displayStatus": "Ready", + "message": "The replication is ready.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + } } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationUpdate.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationUpdate.json index 2d8b5d797fb7..5fc8147ce36f 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationUpdate.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/ReplicationUpdate.json @@ -1,54 +1,54 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "replicationName": "myReplication", - "replicationUpdateParameters": { - "tags": { - "key": "value" - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "replicationName": "myReplication", + "replicationUpdateParameters": { + "tags": { + "key": "value" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", + "name": "myReplication", + "type": "Microsoft.ContainerRegistry/registries/replications", + "location": "eastus", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded", + "status": { + "displayStatus": "Ready", + "message": "The replication is ready.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + } } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", - "name": "myReplication", - "type": "Microsoft.ContainerRegistry/registries/replications", - "location": "eastus", - "tags": { - "key": "value" - }, - "properties": { - "provisioningState": "Succeeded", - "status": { - "displayStatus": "Ready", - "message": "The replication is ready.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - } - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", + "name": "myReplication", + "type": "Microsoft.ContainerRegistry/registries/replications", + "location": "eastus", + "tags": { + "key": "value" }, - "201": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/replications/myReplication", - "name": "myReplication", - "type": "Microsoft.ContainerRegistry/registries/replications", - "location": "eastus", - "tags": { - "key": "value" - }, - "properties": { - "provisioningState": "Updating", - "status": { - "displayStatus": "Provisioning", - "message": "The replication is provisioning.", - "timestamp": "2017-03-01T23:15:37.0707808Z" - } - } - } + "properties": { + "provisioningState": "Updating", + "status": { + "displayStatus": "Provisioning", + "message": "The replication is provisioning.", + "timestamp": "2017-03-01T23:15:37.0707808Z" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookCreate.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookCreate.json index 26db9e36f611..7594d809ac47 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookCreate.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookCreate.json @@ -1,66 +1,66 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "webhookName": "myWebhook", - "webhookCreateParameters": { - "location": "westus", - "tags": { - "key": "value" - }, - "properties": { - "serviceUri": "http://myservice.com", - "customHeaders": { - "Authorization": "Basic 000000000000000000000000000000000000000000000000000" - }, - "status": "enabled", - "scope": "myRepository", - "actions": [ - "push" - ] - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "webhookName": "myWebhook", + "webhookCreateParameters": { + "location": "westus", + "tags": { + "key": "value" + }, + "properties": { + "serviceUri": "http://myservice.com", + "customHeaders": { + "Authorization": "Basic 000000000000000000000000000000000000000000000000000" + }, + "status": "enabled", + "scope": "myRepository", + "actions": [ + "push" + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", + "name": "myWebhook", + "type": "Microsoft.ContainerRegistry/registries/webhooks", + "location": "westus", + "tags": { + "key": "value" + }, + "properties": { + "status": "enabled", + "scope": "myRepository", + "actions": [ + "push" + ], + "provisioningState": "Succeeded" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", - "name": "myWebhook", - "type": "Microsoft.ContainerRegistry/registries/webhooks", - "location": "westus", - "tags": { - "key": "value" - }, - "properties": { - "status": "enabled", - "scope": "myRepository", - "actions": [ - "push" - ], - "provisioningState": "Succeeded" - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", + "name": "myWebhook", + "type": "Microsoft.ContainerRegistry/registries/webhooks", + "location": "westus", + "tags": { + "key": "value" }, - "201": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", - "name": "myWebhook", - "type": "Microsoft.ContainerRegistry/registries/webhooks", - "location": "westus", - "tags": { - "key": "value" - }, - "properties": { - "status": "enabled", - "scope": "myRepository", - "actions": [ - "push" - ], - "provisioningState": "Creating" - } - } + "properties": { + "status": "enabled", + "scope": "myRepository", + "actions": [ + "push" + ], + "provisioningState": "Creating" } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookDelete.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookDelete.json index a38e8a439f52..d9b0af73c561 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookDelete.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookDelete.json @@ -1,14 +1,14 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "webhookName": "myWebhook" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "webhookName": "myWebhook" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookGet.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookGet.json index 85d93fae47d5..b7c3e74ed61c 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookGet.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookGet.json @@ -1,30 +1,30 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "webhookName": "myWebhook" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", - "name": "myWebhook", - "type": "Microsoft.ContainerRegistry/registries/webhooks", - "location": "westus", - "tags": { - "key": "value" - }, - "properties": { - "status": "enabled", - "scope": "myRepository", - "actions": [ - "push" - ], - "provisioningState": "Succeeded" - } - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "webhookName": "myWebhook" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", + "name": "myWebhook", + "type": "Microsoft.ContainerRegistry/registries/webhooks", + "location": "westus", + "tags": { + "key": "value" + }, + "properties": { + "status": "enabled", + "scope": "myRepository", + "actions": [ + "push" + ], + "provisioningState": "Succeeded" } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookGetCallbackConfig.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookGetCallbackConfig.json index 15a80e75ced1..6b2e413ebfe5 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookGetCallbackConfig.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookGetCallbackConfig.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "webhookName": "myWebhook" - }, - "responses": { - "200": { - "body": { - "serviceUri": "http://myservice.com", - "customHeaders": { - "Authorization": "Basic 000000000000000000000000000000000000000000000000000" - } - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "webhookName": "myWebhook" + }, + "responses": { + "200": { + "body": { + "serviceUri": "http://myservice.com", + "customHeaders": { + "Authorization": "Basic 000000000000000000000000000000000000000000000000000" } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookList.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookList.json index 3ae308d41b93..57b8c6237c1c 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookList.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookList.json @@ -1,33 +1,33 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", - "name": "myWebhook", - "type": "Microsoft.ContainerRegistry/registries/webhooks", - "location": "westus", - "tags": { - "key": "value" - }, - "properties": { - "status": "enabled", - "scope": "myRepository", - "actions": [ - "push" - ], - "provisioningState": "Succeeded" - } - } - ] + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", + "name": "myWebhook", + "type": "Microsoft.ContainerRegistry/registries/webhooks", + "location": "westus", + "tags": { + "key": "value" + }, + "properties": { + "status": "enabled", + "scope": "myRepository", + "actions": [ + "push" + ], + "provisioningState": "Succeeded" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookListEvents.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookListEvents.json index 5d0cf2d5a9b3..3647332ac821 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookListEvents.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookListEvents.json @@ -1,63 +1,63 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "webhookName": "myWebhook" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "00000000-0000-0000-0000-000000000000", - "eventRequestMessage": { - "content": { - "id": "00000000-0000-0000-0000-000000000000", - "timestamp": "2017-03-01T23:14:37.0707808Z", - "action": "push", - "target": { - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", - "size": 708, - "digest": "sha256:fea8895f450959fa676bcc1df0611ea93823a735a01205fd8622846041d0c7cf", - "length": 708, - "repository": "hello-world", - "url": "http://192.168.100.227:5000/v2/hello-world/manifests/sha256:fea8895f450959fa676bcc1df0611ea93823a735a01205fd8622846041d0c7cf", - "tag": "latest" - }, - "request": { - "id": "00000000-0000-0000-0000-000000000000", - "addr": "192.168.64.11:42961", - "host": "192.168.100.227:5000", - "method": "GET", - "useragent": "curl/7.38.0" - }, - "actor": {}, - "source": { - "addr": "xtal.local:5000", - "instanceID": "00000000-0000-0000-0000-000000000000" - } - }, - "headers": { - "Content-Type": "application/json", - "Content-Length": "719", - "Authorization": "******" - }, - "method": "POST", - "requestUri": "http://myservice.com", - "version": "1.1" - }, - "eventResponseMessage": { - "headers": { - "Content-Length": "0" - }, - "statusCode": "200", - "version": "1.1" - } - } - ] + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "webhookName": "myWebhook" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "00000000-0000-0000-0000-000000000000", + "eventRequestMessage": { + "content": { + "id": "00000000-0000-0000-0000-000000000000", + "timestamp": "2017-03-01T23:14:37.0707808Z", + "action": "push", + "target": { + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", + "size": 708, + "digest": "sha256:fea8895f450959fa676bcc1df0611ea93823a735a01205fd8622846041d0c7cf", + "length": 708, + "repository": "hello-world", + "url": "http://192.168.100.227:5000/v2/hello-world/manifests/sha256:fea8895f450959fa676bcc1df0611ea93823a735a01205fd8622846041d0c7cf", + "tag": "latest" + }, + "request": { + "id": "00000000-0000-0000-0000-000000000000", + "addr": "192.168.64.11:42961", + "host": "192.168.100.227:5000", + "method": "GET", + "useragent": "curl/7.38.0" + }, + "actor": {}, + "source": { + "addr": "xtal.local:5000", + "instanceID": "00000000-0000-0000-0000-000000000000" + } + }, + "headers": { + "Content-Type": "application/json", + "Content-Length": "719", + "Authorization": "******" + }, + "method": "POST", + "requestUri": "http://myservice.com", + "version": "1.1" + }, + "eventResponseMessage": { + "headers": { + "Content-Length": "0" + }, + "statusCode": "200", + "version": "1.1" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookPing.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookPing.json index 61db2c63803d..a3ce1406b29a 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookPing.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookPing.json @@ -1,16 +1,16 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "webhookName": "myWebhook" - }, - "responses": { - "200": { - "body": { - "id": "00000000-0000-0000-0000-000000000000" - } - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "webhookName": "myWebhook" + }, + "responses": { + "200": { + "body": { + "id": "00000000-0000-0000-0000-000000000000" + } } -} \ No newline at end of file + } +} diff --git a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookUpdate.json b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookUpdate.json index 06c7f3cc7a3e..89a4118a2134 100644 --- a/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookUpdate.json +++ b/specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2019-05-01/examples/WebhookUpdate.json @@ -1,65 +1,65 @@ { - "parameters": { - "api-version": "2019-05-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "registryName": "myRegistry", - "webhookName": "myWebhook", - "webhookUpdateParameters": { - "tags": { - "key": "value" - }, - "properties": { - "serviceUri": "http://myservice.com", - "customHeaders": { - "Authorization": "Basic 000000000000000000000000000000000000000000000000000" - }, - "status": "enabled", - "scope": "myRepository", - "actions": [ - "push" - ] - } + "parameters": { + "api-version": "2019-05-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "registryName": "myRegistry", + "webhookName": "myWebhook", + "webhookUpdateParameters": { + "tags": { + "key": "value" + }, + "properties": { + "serviceUri": "http://myservice.com", + "customHeaders": { + "Authorization": "Basic 000000000000000000000000000000000000000000000000000" + }, + "status": "enabled", + "scope": "myRepository", + "actions": [ + "push" + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", + "name": "myWebhook", + "type": "Microsoft.ContainerRegistry/registries/webhooks", + "location": "westus", + "tags": { + "key": "value" + }, + "properties": { + "status": "enabled", + "scope": "myRepository", + "actions": [ + "push" + ], + "provisioningState": "Succeeded" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", - "name": "myWebhook", - "type": "Microsoft.ContainerRegistry/registries/webhooks", - "location": "westus", - "tags": { - "key": "value" - }, - "properties": { - "status": "enabled", - "scope": "myRepository", - "actions": [ - "push" - ], - "provisioningState": "Succeeded" - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", + "name": "myWebhook", + "type": "Microsoft.ContainerRegistry/registries/webhooks", + "location": "westus", + "tags": { + "key": "value" }, - "201": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/webhooks/myWebhook", - "name": "myWebhook", - "type": "Microsoft.ContainerRegistry/registries/webhooks", - "location": "westus", - "tags": { - "key": "value" - }, - "properties": { - "status": "enabled", - "scope": "myRepository", - "actions": [ - "push" - ], - "provisioningState": "Updating" - } - } + "properties": { + "status": "enabled", + "scope": "myRepository", + "actions": [ + "push" + ], + "provisioningState": "Updating" } + } } -} \ No newline at end of file + } +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsCreate_Update.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsCreate_Update.json index c86ee98e0598..652da57b0fa5 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsCreate_Update.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsCreate_Update.json @@ -4,7 +4,7 @@ "subscriptionId": "subid1", "resourceGroupName": "rg1", "resourceName": "clustername1", - "agentPoolName":"agentpool1", + "agentPoolName": "agentpool1", "parameters": { "properties": { "orchestratorVersion": "", diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsDelete.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsDelete.json index 059d03a54b29..77da864aafb0 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsDelete.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsDelete.json @@ -1,13 +1,13 @@ { - "parameters": { - "api-version": "2019-04-01", - "subscriptionId": "subid1", - "resourceGroupName": "rg1", - "resourceName": "clustername1", - "agentPoolName":"agentpool1" - }, - "responses": { - "202": {}, - "204": {} - } + "parameters": { + "api-version": "2019-04-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "resourceName": "clustername1", + "agentPoolName": "agentpool1" + }, + "responses": { + "202": {}, + "204": {} + } } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsGet.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsGet.json index a4351d618126..281556e6bf80 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsGet.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsGet.json @@ -4,7 +4,7 @@ "subscriptionId": "subid1", "resourceGroupName": "rg1", "resourceName": "clustername1", - "agentPoolName":"agentpool1" + "agentPoolName": "agentpool1" }, "responses": { "200": { diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsList.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsList.json index 45f78275f3b9..65d49864620e 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsList.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2019-04-01/examples/AgentPoolsList.json @@ -9,18 +9,18 @@ "200": { "body": { "value": [ - { - "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/clustername1/agentPools/agentpool1", - "name": "agentpool1", - "properties": { - "provisioningState": "Succeeded", - "count": 3, - "vmSize": "Standard_DS1_v2", - "maxPods": 110, - "osType": "Linux", - "orchestratorVersion": "1.9.6" - } + { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/clustername1/agentPools/agentpool1", + "name": "agentpool1", + "properties": { + "provisioningState": "Succeeded", + "count": 3, + "vmSize": "Standard_DS1_v2", + "maxPods": 110, + "osType": "Linux", + "orchestratorVersion": "1.9.6" } + } ] } } diff --git a/specification/cosmos-db/resource-manager/Microsoft.DocumentDB/stable/2015-04-08/examples/CosmosDBGremlinGraphCreateUpdate.json b/specification/cosmos-db/resource-manager/Microsoft.DocumentDB/stable/2015-04-08/examples/CosmosDBGremlinGraphCreateUpdate.json index de71a97b73df..980202f358ed 100644 --- a/specification/cosmos-db/resource-manager/Microsoft.DocumentDB/stable/2015-04-08/examples/CosmosDBGremlinGraphCreateUpdate.json +++ b/specification/cosmos-db/resource-manager/Microsoft.DocumentDB/stable/2015-04-08/examples/CosmosDBGremlinGraphCreateUpdate.json @@ -115,4 +115,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ExternalBillingAccountForecast.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ExternalBillingAccountForecast.json index 1d863cba74b1..6de290d23a14 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ExternalBillingAccountForecast.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ExternalBillingAccountForecast.json @@ -125,4 +125,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRuleGet.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRuleGet.json index f843a9ed4cd8..c5b6f5444c38 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRuleGet.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRuleGet.json @@ -21,7 +21,9 @@ "scopes": null, "details": { "pricesheet": "Pay-As-You-Go (0003P)", - "benefits": ["None"], + "benefits": [ + "None" + ], "markups": null } } diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulePut.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulePut.json index f2dacd00423c..010f490e8cea 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulePut.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulePut.json @@ -18,7 +18,9 @@ ], "details": { "pricesheet": "Pay-As-You-Go (0003P)", - "benefits": ["None"], + "benefits": [ + "None" + ], "markups": [ { "percentage": "1.1" @@ -45,7 +47,9 @@ "scopes": null, "details": { "pricesheet": "Pay-As-You-Go (0003P)", - "benefits": ["None"], + "benefits": [ + "None" + ], "markups": [ { "percentage": "1.1" diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulesList.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulesList.json index 1e5451776912..96e0fdf81b92 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulesList.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulesList.json @@ -22,7 +22,9 @@ "scopes": null, "details": { "pricesheet": "Pay-As-You-Go (0003P)", - "benefits": ["None"], + "benefits": [ + "None" + ], "markups": null } } diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/costmanagement.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/costmanagement.json index 397b890a02ae..6ee1ded63ee5 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/costmanagement.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/costmanagement.json @@ -32,7 +32,7 @@ } } }, - "paths": { + "paths": { "/providers/Microsoft.CostManagement/views": { "get": { "tags": [ @@ -378,10 +378,12 @@ } } } - }, + }, "/{scope}/providers/Microsoft.CostManagement/budgets": { "get": { - "tags": ["Budgets"], + "tags": [ + "Budgets" + ], "operationId": "Budgets_List", "description": "Lists all budgets for the defined scope.", "externalDocs": { @@ -421,7 +423,9 @@ }, "/{scope}/providers/Microsoft.CostManagement/budgets/{budgetName}": { "get": { - "tags": ["Budgets"], + "tags": [ + "Budgets" + ], "operationId": "Budget_Get", "description": "Gets the budget for the scope by budget name.", "externalDocs": { @@ -459,7 +463,9 @@ } }, "put": { - "tags": ["Budgets"], + "tags": [ + "Budgets" + ], "operationId": "Budget_CreateOrUpdate", "description": "The operation to create or update a budget. Update operation requires latest eTag to be set in the request mandatorily. You may obtain the latest eTag by performing a get operation. Create operation does not require eTag.", "externalDocs": { @@ -512,7 +518,9 @@ } }, "delete": { - "tags": ["Budgets"], + "tags": [ + "Budgets" + ], "operationId": "Budget_Delete", "description": "The operation to delete a budget.", "externalDocs": { @@ -1136,14 +1144,14 @@ "type": "array", "items": { "$ref": "#/definitions/KpiProperties" - } + } }, "pivots": { "description": "Configuration of 3 sub-views in the Cost Analysis UI.", "type": "array", "items": { "$ref": "#/definitions/PivotProperties" - } + } } } }, @@ -1234,7 +1242,10 @@ "category": { "description": "The category of the budget, whether the budget tracks cost or usage.", "type": "string", - "enum": ["Cost", "Usage"], + "enum": [ + "Cost", + "Usage" + ], "x-ms-enum": { "name": "CategoryType", "modelAsString": true @@ -1248,7 +1259,11 @@ "timeGrain": { "description": "The time covered by a budget. Tracking of the amount will be reset based on the time grain.", "type": "string", - "enum": ["Monthly", "Quarterly", "Annually"], + "enum": [ + "Monthly", + "Quarterly", + "Annually" + ], "x-ms-enum": { "name": "TimeGrainType", "modelAsString": true @@ -1278,7 +1293,12 @@ "maxItems": 5 } }, - "required": ["category", "amount", "timeGrain", "timePeriod"] + "required": [ + "category", + "amount", + "timeGrain", + "timePeriod" + ] }, "BudgetTimePeriod": { "description": "The start and end date for a budget.", @@ -1294,7 +1314,9 @@ "format": "date-time" } }, - "required": ["startDate"] + "required": [ + "startDate" + ] }, "CurrentSpend": { "description": "The current amount of cost which is being tracked for a budget.", @@ -1322,7 +1344,11 @@ "operator": { "description": "The comparison operator.", "type": "string", - "enum": ["EqualTo", "GreaterThan", "GreaterThanOrEqualTo"], + "enum": [ + "EqualTo", + "GreaterThan", + "GreaterThanOrEqualTo" + ], "x-ms-enum": { "name": "NotificationOperatorType", "modelAsString": true @@ -1359,7 +1385,12 @@ "maxItems": 50 } }, - "required": ["enabled", "operator", "threshold", "contactEmails"] + "required": [ + "enabled", + "operator", + "threshold", + "contactEmails" + ] } }, "parameters": { @@ -1451,4 +1482,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/Budget.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/Budget.json index c50ca3a07656..fd2bacba9ef7 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/Budget.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/Budget.json @@ -27,7 +27,9 @@ "dimension": { "name": "ResourceGroupName", "operator": "In", - "values": ["MYDEVTESTRG"] + "values": [ + "MYDEVTESTRG" + ] } }, { @@ -44,14 +46,18 @@ "dimension": { "name": "Meter", "operator": "In", - "values": ["00000000-0000-0000-0000-000000000000"] + "values": [ + "00000000-0000-0000-0000-000000000000" + ] } }, { "tag": { "name": "Dev", "operator": "In", - "values": ["engineering"] + "values": [ + "engineering" + ] } } ] @@ -65,8 +71,14 @@ "enabled": true, "operator": "GreaterThan", "threshold": 80, - "contactEmails": ["johndoe@contoso.com", "janesmith@contoso.com"], - "contactRoles": ["Contributor", "Reader"], + "contactEmails": [ + "johndoe@contoso.com", + "janesmith@contoso.com" + ], + "contactRoles": [ + "Contributor", + "Reader" + ], "contactGroups": [ "/subscriptions/{subscription-id}/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup" ] diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/BudgetsList.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/BudgetsList.json index b7f50ea34103..805e150c0edf 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/BudgetsList.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/BudgetsList.json @@ -28,7 +28,9 @@ "dimension": { "name": "ResourceGroupName", "operator": "In", - "values": ["MYDEVTESTRG"] + "values": [ + "MYDEVTESTRG" + ] } }, { @@ -45,14 +47,18 @@ "dimension": { "name": "Meter", "operator": "In", - "values": ["00000000-0000-0000-0000-000000000000"] + "values": [ + "00000000-0000-0000-0000-000000000000" + ] } }, { "tag": { "name": "Dev", "operator": "In", - "values": ["engineering"] + "values": [ + "engineering" + ] } } ] @@ -70,7 +76,10 @@ "johndoe@contoso.com", "janesmith@contoso.com" ], - "contactRoles": ["Contributor", "Reader"] + "contactRoles": [ + "Contributor", + "Reader" + ] }, "Actual_GreaterThanOrEqualTo_90_Percent": { "enabled": true, @@ -80,7 +89,10 @@ "johndoe@contoso.com", "janesmith@contoso.com" ], - "contactRoles": ["Contributor", "Reader"], + "contactRoles": [ + "Contributor", + "Reader" + ], "contactGroups": [ "/subscriptions/{subscription-id}/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup" ] @@ -107,7 +119,9 @@ "dimension": { "name": "ResourceGroupName", "operator": "In", - "values": ["MYDEVTESTRG"] + "values": [ + "MYDEVTESTRG" + ] } }, { @@ -124,14 +138,18 @@ "dimension": { "name": "Meter", "operator": "In", - "values": ["00000000-0000-0000-0000-000000000000"] + "values": [ + "00000000-0000-0000-0000-000000000000" + ] } }, { "tag": { "name": "Dev", "operator": "In", - "values": ["engineering"] + "values": [ + "engineering" + ] } } ] @@ -149,7 +167,10 @@ "johndoe@contoso.com", "janesmith@contoso.com" ], - "contactRoles": ["Contributor", "Reader"] + "contactRoles": [ + "Contributor", + "Reader" + ] }, "Actual_GreaterThanOrEqualTo_60_Percent": { "enabled": true, @@ -159,7 +180,10 @@ "johndoe@contoso.com", "janesmith@contoso.com" ], - "contactRoles": ["Contributor", "Reader"], + "contactRoles": [ + "Contributor", + "Reader" + ], "contactGroups": [ "/subscriptions/{subscription-id}/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup" ] diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/CreateOrUpdateBudget.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/CreateOrUpdateBudget.json index 0b7f288364e0..e71edf730de5 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/CreateOrUpdateBudget.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/CreateOrUpdateBudget.json @@ -21,7 +21,9 @@ "dimension": { "name": "ResourceGroupName", "operator": "In", - "values": ["MYDEVTESTRG"] + "values": [ + "MYDEVTESTRG" + ] } }, { @@ -38,14 +40,18 @@ "dimension": { "name": "Meter", "operator": "In", - "values": ["00000000-0000-0000-0000-000000000000"] + "values": [ + "00000000-0000-0000-0000-000000000000" + ] } }, { "tag": { "name": "Dev", "operator": "In", - "values": ["engineering"] + "values": [ + "engineering" + ] } } ] @@ -55,8 +61,14 @@ "enabled": true, "operator": "GreaterThan", "threshold": 80, - "contactEmails": ["johndoe@contoso.com", "janesmith@contoso.com"], - "contactRoles": ["Contributor", "Reader"], + "contactEmails": [ + "johndoe@contoso.com", + "janesmith@contoso.com" + ], + "contactRoles": [ + "Contributor", + "Reader" + ], "contactGroups": [ "/subscriptions/{subscription-id}/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup" ] @@ -86,7 +98,9 @@ "dimension": { "name": "ResourceGroupName", "operator": "In", - "values": ["MYDEVTESTRG"] + "values": [ + "MYDEVTESTRG" + ] } }, { @@ -103,14 +117,18 @@ "dimension": { "name": "Meter", "operator": "In", - "values": ["00000000-0000-0000-0000-000000000000"] + "values": [ + "00000000-0000-0000-0000-000000000000" + ] } }, { "tag": { "name": "Dev", "operator": "In", - "values": ["engineering"] + "values": [ + "engineering" + ] } } ] @@ -124,8 +142,14 @@ "enabled": true, "operator": "GreaterThan", "threshold": 80, - "contactEmails": ["johndoe@contoso.com", "janesmith@contoso.com"], - "contactRoles": ["Contributor", "Reader"], + "contactEmails": [ + "johndoe@contoso.com", + "janesmith@contoso.com" + ], + "contactRoles": [ + "Contributor", + "Reader" + ], "contactGroups": [ "/subscriptions/{subscription-id}/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup" ] @@ -154,7 +178,9 @@ "dimension": { "name": "ResourceGroupName", "operator": "In", - "values": ["MYDEVTESTRG"] + "values": [ + "MYDEVTESTRG" + ] } }, { @@ -171,14 +197,18 @@ "dimension": { "name": "Meter", "operator": "In", - "values": ["00000000-0000-0000-0000-000000000000"] + "values": [ + "00000000-0000-0000-0000-000000000000" + ] } }, { "tag": { "name": "Dev", "operator": "In", - "values": ["engineering"] + "values": [ + "engineering" + ] } } ] @@ -192,8 +222,14 @@ "enabled": true, "operator": "GreaterThan", "threshold": 80, - "contactEmails": ["johndoe@contoso.com", "janesmith@contoso.com"], - "contactRoles": ["Contributor", "Reader"], + "contactEmails": [ + "johndoe@contoso.com", + "janesmith@contoso.com" + ], + "contactRoles": [ + "Contributor", + "Reader" + ], "contactGroups": [ "/subscriptions/{subscription-id}/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup" ] diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/DeleteBudget.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/DeleteBudget.json index 7eb6ba84133e..53d0c16c522f 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/DeleteBudget.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/DeleteBudget.json @@ -7,9 +7,7 @@ "scope": "subscriptions/00000000-0000-0000-0000-000000000000" }, "responses": { - "200": { - }, - "204": { - } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateView.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateView.json index e0ac14277f1f..e96ebb9fdf7c 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateView.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateView.json @@ -62,8 +62,8 @@ "name": "swaggerTagKey" } ] - } + } } } } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewCreateOrUpdate.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewCreateOrUpdate.json index d75cd493745e..85d18a6d302d 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewCreateOrUpdate.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewCreateOrUpdate.json @@ -117,7 +117,7 @@ "name": "swaggerTagKey" } ] - } + } } }, "200": { @@ -178,8 +178,8 @@ "name": "swaggerTagKey" } ] - } + } } } } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewDelete.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewDelete.json index 6098335e58e9..12a0239b9dc5 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewDelete.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewDelete.json @@ -4,9 +4,7 @@ "viewName": "TestView" }, "responses": { - "200": { - }, - "204": { - } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewList.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewList.json index 1657fec91760..86eb6ee3b68b 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewList.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/PrivateViewList.json @@ -128,4 +128,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewByResourceGroup.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewByResourceGroup.json index 3bac24905b23..4a76a9b898a0 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewByResourceGroup.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewByResourceGroup.json @@ -63,8 +63,8 @@ "name": "swaggerTagKey" } ] - } + } } } } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewCreateOrUpdateByResourceGroup.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewCreateOrUpdateByResourceGroup.json index 7956c8df6773..1edc69822cad 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewCreateOrUpdateByResourceGroup.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewCreateOrUpdateByResourceGroup.json @@ -118,7 +118,7 @@ "name": "swaggerTagKey" } ] - } + } } }, "200": { @@ -179,8 +179,8 @@ "name": "swaggerTagKey" } ] - } + } } } } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewDeleteByResourceGroup.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewDeleteByResourceGroup.json index be29fdb7591c..3a9f210abf3e 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewDeleteByResourceGroup.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewDeleteByResourceGroup.json @@ -5,9 +5,7 @@ "viewName": "TestView" }, "responses": { - "200": { - }, - "204": { - } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewListByResourceGroup.json b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewListByResourceGroup.json index 736a3a074cdb..39edbdffbdea 100644 --- a/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewListByResourceGroup.json +++ b/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-04-01-preview/examples/ViewListByResourceGroup.json @@ -129,4 +129,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/customer-insights.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/customer-insights.json index 22675f81ce9d..70a68c885d6f 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/customer-insights.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/customer-insights.json @@ -5697,4 +5697,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesCreateOrUpdate.json index 14d860ac082b..e30b0f50550a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesCreateOrUpdate.json @@ -2,14 +2,16 @@ "parameters": { "hubName": "azSdkTestHub", "resourceGroupName": "TestHubRG", - "authorizationPolicyName": "testPolicy4222", + "authorizationPolicyName": "testPolicy4222", "api-version": "2016-01-01", "subscriptionId": "subid", "parameters": { "properties": { - "permissions": ["Read", - "Write", - "Manage"] + "permissions": [ + "Read", + "Write", + "Manage" + ] } } }, @@ -20,12 +22,14 @@ "name": "testPolicy4222", "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies", "properties": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy4222", - "primaryKey": "cHJpbWFyeVRlc3RSZWFk", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy4222", + "primaryKey": "cHJpbWFyeVRlc3RSZWFk", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" } } }, @@ -35,14 +39,16 @@ "name": "testPolicy4222", "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies", "properties": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy4222", - "primaryKey": "cHJpbWFyeVRlc3RSZWFk", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy4222", + "primaryKey": "cHJpbWFyeVRlc3RSZWFk", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" } } } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesGet.json index 2cfbc82731a6..4e59c0c29c69 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesGet.json @@ -1,26 +1,28 @@ { - "parameters": { - "hubName": "azSdkTestHub", - "resourceGroupName": "TestHubRG", - "authorizationPolicyName": "testPolicy4222", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/testPolicy4222", - "name": "azSdkTestHub/testPolicy4222", - "properties": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy4222", - "primaryKey": "cHJpbWFyeVRlc3RSZWFk", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" - }, - "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "azSdkTestHub", + "resourceGroupName": "TestHubRG", + "authorizationPolicyName": "testPolicy4222", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/testPolicy4222", + "name": "azSdkTestHub/testPolicy4222", + "properties": { + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy4222", + "primaryKey": "cHJpbWFyeVRlc3RSZWFk", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + }, + "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesListByHub.json index c0af0c058ab2..7bb7493fa7e2 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesListByHub.json @@ -1,40 +1,46 @@ { - "parameters": { - "hubName": "azSdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/RootManageSharedAccessKey", - "name": "azSdkTestHub/RootManageSharedAccessKey", - "properties": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "RootManageSharedAccessKey", - "primaryKey": "KEvPnaBbDbEdSch27GhFx/D5Smu1bZC8bCmG33fHyi4=", - "secondaryKey": "wvOahlAtWZh9127MVr1yYX2pPgioqFWGEUtp1ADbfcQ=" - }, - "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" - }, - { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/testPolicy1125", - "name": "azSdkTestHub/testPolicy1125", - "properties": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy1125", - "primaryKey": "3Nk5Yce0eQXHY3S+KDuUPKFS5NkOWLqtzNYEadh1WeI=", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" - }, - "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "azSdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/RootManageSharedAccessKey", + "name": "azSdkTestHub/RootManageSharedAccessKey", + "properties": { + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "RootManageSharedAccessKey", + "primaryKey": "KEvPnaBbDbEdSch27GhFx/D5Smu1bZC8bCmG33fHyi4=", + "secondaryKey": "wvOahlAtWZh9127MVr1yYX2pPgioqFWGEUtp1ADbfcQ=" + }, + "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" + }, + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/testPolicy1125", + "name": "azSdkTestHub/testPolicy1125", + "properties": { + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy1125", + "primaryKey": "3Nk5Yce0eQXHY3S+KDuUPKFS5NkOWLqtzNYEadh1WeI=", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + }, + "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesRegeneratePrimaryKey.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesRegeneratePrimaryKey.json index 4fd4b5c2c94e..547425739bef 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesRegeneratePrimaryKey.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesRegeneratePrimaryKey.json @@ -1,21 +1,23 @@ { - "parameters": { - "hubName": "azSdkTestHub", - "resourceGroupName": "TestHubRG", - "authorizationPolicyName": "testPolicy4222", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy4009", - "primaryKey": "UXZMQlt3kbcUc7Mx6WMVsNWj5rTmG6/cg9UrTY9YuoY=", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "azSdkTestHub", + "resourceGroupName": "TestHubRG", + "authorizationPolicyName": "testPolicy4222", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy4009", + "primaryKey": "UXZMQlt3kbcUc7Mx6WMVsNWj5rTmG6/cg9UrTY9YuoY=", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesRegenerateSecondaryKey.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesRegenerateSecondaryKey.json index 4fd4b5c2c94e..547425739bef 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesRegenerateSecondaryKey.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/AuthorizationPoliciesRegenerateSecondaryKey.json @@ -1,21 +1,23 @@ { - "parameters": { - "hubName": "azSdkTestHub", - "resourceGroupName": "TestHubRG", - "authorizationPolicyName": "testPolicy4222", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy4009", - "primaryKey": "UXZMQlt3kbcUc7Mx6WMVsNWj5rTmG6/cg9UrTY9YuoY=", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "azSdkTestHub", + "resourceGroupName": "TestHubRG", + "authorizationPolicyName": "testPolicy4222", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy4009", + "primaryKey": "UXZMQlt3kbcUc7Mx6WMVsNWj5rTmG6/cg9UrTY9YuoY=", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsCreateOrUpdate.json index a618ef8e989b..ded66bd2a2a2 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsCreateOrUpdate.json @@ -1,159 +1,165 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector8858", - "mappingName": "testMapping12491", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "entityType": "Interaction", - "entityTypeName": "TestInteractionType2967", - "displayName": "testMapping12491", - "description": "Test mapping", - "mappingProperties": { - "folderPath": "http://sample.dne/file", - "fileFilter": "unknown", - "hasHeader": false, - "errorManagement": { - "errorManagementType": "StopImport", - "errorLimit": 10 - }, - "format": { - "formatType": "TextFormat", - "columnDelimiter": "|" - }, - "availability": { - "frequency": "Hour", - "interval": 5 - }, - "structure": [{ - "propertyName": "unknwon1", - "columnName": "unknown1", - "isEncrypted": false - }, - { - "propertyName": "unknwon2", - "columnName": "unknown2", - "isEncrypted": true - }], - "completeOperation": { - "completionOperationType": "DeleteFile", - "destinationFolder": "fakePath" - } - } - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", - "name": "sdkTestHub/testConnector8858/testMapping12491", - "properties": { - "connectorMappingName": "testMapping12491", - "connectorName": "testConnector8858", - "connectorType": "AzureBlob", - "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", - "description": "Test mapping", - "displayName": "testMapping12491", - "entityType": "Interaction", - "entityTypeName": "TestInteractionType2967", - "mappingProperties": { - "availability": { - "frequency": "Hour", - "interval": 5 - }, - "completeOperation": { - "completionOperationType": "DeleteFile", - "destinationFolder": "fakePath" - }, - "errorManagement": { - "errorLimit": 10, - "errorManagementType": "StopImport" - }, - "fileFilter": "unknown", - "folderPath": "http://sample.dne/file", - "format": { - "columnDelimiter": "|", - "acceptLanguage": "", - "quoteCharacter": "\\\"", - "quoteEscapeCharacter": "\\\"", - "formatType": "TextFormat", - "arraySeparator": ";" - }, - "hasHeader": false, - "structure": [{ - "columnName": "unknown1", - "isEncrypted": false, - "propertyName": "unknwon1" - }, - { - "columnName": "unknown2", - "isEncrypted": true, - "propertyName": "unknwon2" - }] - }, - "state": "Created", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" - } - }, - "201": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", - "name": "sdkTestHub/testConnector8858/testMapping12491", - "properties": { - "connectorMappingName": "testMapping12491", - "connectorName": "testConnector8858", - "connectorType": "AzureBlob", - "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", - "description": "Test mapping", - "displayName": "testMapping12491", - "entityType": "Interaction", - "entityTypeName": "TestInteractionType2967", - "mappingProperties": { - "availability": { - "frequency": "Hour", - "interval": 5 - }, - "completeOperation": { - "completionOperationType": "DeleteFile", - "destinationFolder": "fakePath" - }, - "errorManagement": { - "errorLimit": 10, - "errorManagementType": "StopImport" - }, - "fileFilter": "unknown", - "folderPath": "http://sample.dne/file", - "format": { - "columnDelimiter": "|", - "acceptLanguage": "", - "quoteCharacter": "\\\"", - "quoteEscapeCharacter": "\\\"", - "formatType": "TextFormat", - "arraySeparator": ";" - }, - "hasHeader": false, - "structure": [{ - "columnName": "unknown1", - "isEncrypted": false, - "propertyName": "unknwon1" - }, - { - "columnName": "unknown2", - "isEncrypted": true, - "propertyName": "unknwon2" - }] - }, - "state": "Created", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector8858", + "mappingName": "testMapping12491", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "entityType": "Interaction", + "entityTypeName": "TestInteractionType2967", + "displayName": "testMapping12491", + "description": "Test mapping", + "mappingProperties": { + "folderPath": "http://sample.dne/file", + "fileFilter": "unknown", + "hasHeader": false, + "errorManagement": { + "errorManagementType": "StopImport", + "errorLimit": 10 + }, + "format": { + "formatType": "TextFormat", + "columnDelimiter": "|" + }, + "availability": { + "frequency": "Hour", + "interval": 5 + }, + "structure": [ + { + "propertyName": "unknwon1", + "columnName": "unknown1", + "isEncrypted": false + }, + { + "propertyName": "unknwon2", + "columnName": "unknown2", + "isEncrypted": true + } + ], + "completeOperation": { + "completionOperationType": "DeleteFile", + "destinationFolder": "fakePath" + } + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", + "name": "sdkTestHub/testConnector8858/testMapping12491", + "properties": { + "connectorMappingName": "testMapping12491", + "connectorName": "testConnector8858", + "connectorType": "AzureBlob", + "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", + "description": "Test mapping", + "displayName": "testMapping12491", + "entityType": "Interaction", + "entityTypeName": "TestInteractionType2967", + "mappingProperties": { + "availability": { + "frequency": "Hour", + "interval": 5 + }, + "completeOperation": { + "completionOperationType": "DeleteFile", + "destinationFolder": "fakePath" + }, + "errorManagement": { + "errorLimit": 10, + "errorManagementType": "StopImport" + }, + "fileFilter": "unknown", + "folderPath": "http://sample.dne/file", + "format": { + "columnDelimiter": "|", + "acceptLanguage": "", + "quoteCharacter": "\\\"", + "quoteEscapeCharacter": "\\\"", + "formatType": "TextFormat", + "arraySeparator": ";" + }, + "hasHeader": false, + "structure": [ + { + "columnName": "unknown1", + "isEncrypted": false, + "propertyName": "unknwon1" + }, + { + "columnName": "unknown2", + "isEncrypted": true, + "propertyName": "unknwon2" + } + ] + }, + "state": "Created", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" + } + }, + "201": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", + "name": "sdkTestHub/testConnector8858/testMapping12491", + "properties": { + "connectorMappingName": "testMapping12491", + "connectorName": "testConnector8858", + "connectorType": "AzureBlob", + "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", + "description": "Test mapping", + "displayName": "testMapping12491", + "entityType": "Interaction", + "entityTypeName": "TestInteractionType2967", + "mappingProperties": { + "availability": { + "frequency": "Hour", + "interval": 5 + }, + "completeOperation": { + "completionOperationType": "DeleteFile", + "destinationFolder": "fakePath" + }, + "errorManagement": { + "errorLimit": 10, + "errorManagementType": "StopImport" + }, + "fileFilter": "unknown", + "folderPath": "http://sample.dne/file", + "format": { + "columnDelimiter": "|", + "acceptLanguage": "", + "quoteCharacter": "\\\"", + "quoteEscapeCharacter": "\\\"", + "formatType": "TextFormat", + "arraySeparator": ";" + }, + "hasHeader": false, + "structure": [ + { + "columnName": "unknown1", + "isEncrypted": false, + "propertyName": "unknwon1" + }, + { + "columnName": "unknown2", + "isEncrypted": true, + "propertyName": "unknwon2" + } + ] + }, + "state": "Created", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsDelete.json index 0d7f1846761c..924976644b8e 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsDelete.json @@ -1,14 +1,14 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector8858", - "mappingName": "testMapping12491", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector8858", + "mappingName": "testMapping12491", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsGet.json index 3bda377203e7..cf626302e2b8 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsGet.json @@ -1,66 +1,68 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector8858", - "mappingName": "testMapping12491", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", - "name": "sdkTestHub/testConnector8858/testMapping12491", - "properties": { - "connectorMappingName": "testMapping12491", - "connectorName": "testConnector8858", - "connectorType": "AzureBlob", - "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", - "description": "Test mapping", - "displayName": "testMapping12491", - "entityType": "Interaction", - "entityTypeName": "TestInteractionType2967", - "mappingProperties": { - "availability": { - "frequency": "Hour", - "interval": 5 - }, - "completeOperation": { - "completionOperationType": "DeleteFile", - "destinationFolder": "fakePath" - }, - "errorManagement": { - "errorLimit": 10, - "errorManagementType": "StopImport" - }, - "fileFilter": "unknown", - "folderPath": "http://sample.dne/file", - "format": { - "columnDelimiter": "|", - "acceptLanguage": "", - "quoteCharacter": "\\\"", - "quoteEscapeCharacter": "\\\"", - "formatType": "TextFormat", - "arraySeparator": ";" - }, - "hasHeader": false, - "structure": [{ - "columnName": "unknown1", - "isEncrypted": false, - "propertyName": "unknwon1" - }, - { - "columnName": "unknown2", - "isEncrypted": true, - "propertyName": "unknwon2" - }] - }, - "state": "Created", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector8858", + "mappingName": "testMapping12491", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", + "name": "sdkTestHub/testConnector8858/testMapping12491", + "properties": { + "connectorMappingName": "testMapping12491", + "connectorName": "testConnector8858", + "connectorType": "AzureBlob", + "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", + "description": "Test mapping", + "displayName": "testMapping12491", + "entityType": "Interaction", + "entityTypeName": "TestInteractionType2967", + "mappingProperties": { + "availability": { + "frequency": "Hour", + "interval": 5 + }, + "completeOperation": { + "completionOperationType": "DeleteFile", + "destinationFolder": "fakePath" + }, + "errorManagement": { + "errorLimit": 10, + "errorManagementType": "StopImport" + }, + "fileFilter": "unknown", + "folderPath": "http://sample.dne/file", + "format": { + "columnDelimiter": "|", + "acceptLanguage": "", + "quoteCharacter": "\\\"", + "quoteEscapeCharacter": "\\\"", + "formatType": "TextFormat", + "arraySeparator": ";" + }, + "hasHeader": false, + "structure": [ + { + "columnName": "unknown1", + "isEncrypted": false, + "propertyName": "unknwon1" + }, + { + "columnName": "unknown2", + "isEncrypted": true, + "propertyName": "unknwon2" + } + ] + }, + "state": "Created", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsListByConnector.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsListByConnector.json index 5259745619e4..e3c7c8a6f67f 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsListByConnector.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorMappingsListByConnector.json @@ -1,67 +1,71 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector8858", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", - "name": "sdkTestHub/testConnector8858/testMapping12491", - "properties": { - "connectorMappingName": "testMapping12491", - "connectorName": "testConnector8858", - "connectorType": "AzureBlob", - "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", - "description": "Test mapping", - "displayName": "testMapping12491", - "entityType": "Interaction", - "entityTypeName": "TestInteractionType2967", - "mappingProperties": { - "availability": { - "frequency": "Hour", - "interval": 5 - }, - "completeOperation": { - "completionOperationType": "DeleteFile", - "destinationFolder": "fakePath" - }, - "errorManagement": { - "errorLimit": 10, - "errorManagementType": "StopImport" - }, - "fileFilter": "unknown", - "folderPath": "http://sample.dne/file", - "format": { - "columnDelimiter": "|", - "acceptLanguage": "", - "quoteCharacter": "\\\"", - "quoteEscapeCharacter": "\\\"", - "formatType": "TextFormat", - "arraySeparator": ";" - }, - "hasHeader": false, - "structure": [{ - "columnName": "unknown1", - "isEncrypted": false, - "propertyName": "unknwon1" - }, - { - "columnName": "unknown2", - "isEncrypted": true, - "propertyName": "unknwon2" - }] - }, - "state": "Created", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector8858", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", + "name": "sdkTestHub/testConnector8858/testMapping12491", + "properties": { + "connectorMappingName": "testMapping12491", + "connectorName": "testConnector8858", + "connectorType": "AzureBlob", + "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", + "description": "Test mapping", + "displayName": "testMapping12491", + "entityType": "Interaction", + "entityTypeName": "TestInteractionType2967", + "mappingProperties": { + "availability": { + "frequency": "Hour", + "interval": 5 + }, + "completeOperation": { + "completionOperationType": "DeleteFile", + "destinationFolder": "fakePath" + }, + "errorManagement": { + "errorLimit": 10, + "errorManagementType": "StopImport" + }, + "fileFilter": "unknown", + "folderPath": "http://sample.dne/file", + "format": { + "columnDelimiter": "|", + "acceptLanguage": "", + "quoteCharacter": "\\\"", + "quoteEscapeCharacter": "\\\"", + "formatType": "TextFormat", + "arraySeparator": ";" + }, + "hasHeader": false, + "structure": [ + { + "columnName": "unknown1", + "isEncrypted": false, + "propertyName": "unknwon1" + }, + { + "columnName": "unknown2", + "isEncrypted": true, + "propertyName": "unknwon2" + } + ] + }, + "state": "Created", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsCreateOrUpdate.json index 20c3288aa55f..93af22e94dac 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsCreateOrUpdate.json @@ -1,49 +1,47 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "connectorType": "AzureBlob", - "displayName": "testConnector", - "description": "Test connector", - "connectorProperties": { - "connectionKeyVaultUrl": { - "organizationId": "XXX", - "organizationUrl": "https://XXX.crmlivetie.com/" - } - } - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", - "name": "sdkTestHub/testConnector", - "properties": { - "connectorId": 0, - "connectorName": "testConnector", - "connectorType": "AzureBlob", - "description": "Test connector", - "displayName": "testConnector", - "state": "Creating", - "tenantId": "sdktesthub", - "connectorProperties": { - "connectionKeyVaultUrl": { - "organizationId": "XXX", - "organizationUrl": "https://XXX.crmlivetie.com/" - } - } - }, - "type": "Microsoft.CustomerInsights/hubs/connectors" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "connectorType": "AzureBlob", + "displayName": "testConnector", + "description": "Test connector", + "connectorProperties": { + "connectionKeyVaultUrl": { + "organizationId": "XXX", + "organizationUrl": "https://XXX.crmlivetie.com/" + } + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", + "name": "sdkTestHub/testConnector", + "properties": { + "connectorId": 0, + "connectorName": "testConnector", + "connectorType": "AzureBlob", + "description": "Test connector", + "displayName": "testConnector", + "state": "Creating", + "tenantId": "sdktesthub", + "connectorProperties": { + "connectionKeyVaultUrl": { + "organizationId": "XXX", + "organizationUrl": "https://XXX.crmlivetie.com/" + } + } + }, + "type": "Microsoft.CustomerInsights/hubs/connectors" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsDelete.json index 223bbe751413..c9d4054fe03a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsDelete.json @@ -1,20 +1,14 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - }, - "202": { - - }, - "204": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsGet.json index 8eb04134ad71..cd50e4833616 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsGet.json @@ -1,33 +1,33 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", - "name": "sdkTestHub/testConnector", - "properties": { - "connectorId": 0, - "connectorName": "testConnector", - "connectorType": "AzureBlob", - "description": "Test connector", - "displayName": "testConnector", - "state": "Creating", - "tenantId": "sdktesthub", - "connectorProperties": { - "connectionKeyVaultUrl": { - "organizationId": "XXX", - "organizationUrl": "https://XXX.crmlivetie.com/" - } - } - }, - "type": "Microsoft.CustomerInsights/hubs/connectors" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", + "name": "sdkTestHub/testConnector", + "properties": { + "connectorId": 0, + "connectorName": "testConnector", + "connectorType": "AzureBlob", + "description": "Test connector", + "displayName": "testConnector", + "state": "Creating", + "tenantId": "sdktesthub", + "connectorProperties": { + "connectionKeyVaultUrl": { + "organizationId": "XXX", + "organizationUrl": "https://XXX.crmlivetie.com/" + } + } + }, + "type": "Microsoft.CustomerInsights/hubs/connectors" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsListByHub.json index 13f587390507..5dbcbb24dabc 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ConnectorsListByHub.json @@ -1,34 +1,36 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", - "name": "sdkTestHub/testConnector", - "properties": { - "connectorId": 0, - "connectorName": "testConnector", - "connectorType": "AzureBlob", - "description": "Test connector", - "displayName": "testConnector", - "state": "Creating", - "tenantId": "sdktesthub", - "connectorProperties": { - "connectionKeyVaultUrl": { - "organizationId": "XXX", - "organizationUrl": "https://XXX.crmlivetie.com/" - } - } - }, - "type": "Microsoft.CustomerInsights/hubs/connectors" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", + "name": "sdkTestHub/testConnector", + "properties": { + "connectorId": 0, + "connectorName": "testConnector", + "connectorType": "AzureBlob", + "description": "Test connector", + "displayName": "testConnector", + "state": "Creating", + "tenantId": "sdktesthub", + "connectorProperties": { + "connectionKeyVaultUrl": { + "organizationId": "XXX", + "organizationUrl": "https://XXX.crmlivetie.com/" + } + } + }, + "type": "Microsoft.CustomerInsights/hubs/connectors" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/DCIOperations_List.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/DCIOperations_List.json index db43dc6f6242..5b6b170d8388 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/DCIOperations_List.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/DCIOperations_List.json @@ -289,4 +289,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsCreateOrUpdate.json index af90ced06152..d26a46e6c2dc 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsCreateOrUpdate.json @@ -1,64 +1,60 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "location": "West US", - "properties": { - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - } - } - } - }, - "responses": { - "201": { - "body": { - "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", - "location": "West US", - "name": "testHub2839", - "properties": { - "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", - "provisioningState": "Creating", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - } - }, - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", - "location": "East US", - "name": "testHub2839", - "properties": { - "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", - "provisioningState": "Creating", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "location": "West US", + "properties": { + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + } + } + } + }, + "responses": { + "201": { + "body": { + "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", + "location": "West US", + "name": "testHub2839", + "properties": { + "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", + "provisioningState": "Creating", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + }, + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", + "location": "East US", + "name": "testHub2839", + "properties": { + "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", + "provisioningState": "Creating", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsDelete.json index 6afd4d1b4ddc..447e31547e47 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsDelete.json @@ -1,13 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsGet.json index ae0885c10cfa..75f252eaef7a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsGet.json @@ -1,32 +1,30 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", - "location": "East US", - "name": "testHub2839", - "properties": { - "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", - "provisioningState": "Creating", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", + "location": "East US", + "name": "testHub2839", + "properties": { + "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", + "provisioningState": "Creating", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsList.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsList.json index d86c96e024f6..4b5b14c95d5a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsList.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsList.json @@ -1,52 +1,50 @@ { - "parameters": { - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub", - "location": "East US", - "name": "azSdkTestHub", - "properties": { - "apiEndpoint": "https://azSdkTestHub.dfd.projectuic-int.net", - "provisioningState": "Succeeded", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 1 - }, - "tenantFeatures": 0, - "webEndpoint": "https://azSdkTestHub.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - }, - { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub1058", - "location": "East US", - "name": "testHub1058", - "properties": { - "apiEndpoint": "https://testHub1058.dfd.projectuic-int.net", - "provisioningState": "Succeeded", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub1058.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub", + "location": "East US", + "name": "azSdkTestHub", + "properties": { + "apiEndpoint": "https://azSdkTestHub.dfd.projectuic-int.net", + "provisioningState": "Succeeded", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 1 + }, + "tenantFeatures": 0, + "webEndpoint": "https://azSdkTestHub.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + }, + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub1058", + "location": "East US", + "name": "testHub1058", + "properties": { + "apiEndpoint": "https://testHub1058.dfd.projectuic-int.net", + "provisioningState": "Succeeded", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub1058.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsListByResourceGroup.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsListByResourceGroup.json index ea16b5f3e3c9..4d7946a2a372 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsListByResourceGroup.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsListByResourceGroup.json @@ -1,53 +1,51 @@ { - "parameters": { - "api-version": "2016-01-01", - "subscriptionId": "subid", - "resourceGroupName": "TestHubRG" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub", - "location": "East US", - "name": "azSdkTestHub", - "properties": { - "apiEndpoint": "https://azSdkTestHub.dfd.projectuic-int.net", - "provisioningState": "Succeeded", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 1 - }, - "tenantFeatures": 0, - "webEndpoint": "https://azSdkTestHub.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - }, - { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub1058", - "location": "East US", - "name": "testHub1058", - "properties": { - "apiEndpoint": "https://testHub1058.dfd.projectuic-int.net", - "provisioningState": "Succeeded", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub1058.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2016-01-01", + "subscriptionId": "subid", + "resourceGroupName": "TestHubRG" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub", + "location": "East US", + "name": "azSdkTestHub", + "properties": { + "apiEndpoint": "https://azSdkTestHub.dfd.projectuic-int.net", + "provisioningState": "Succeeded", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 1 + }, + "tenantFeatures": 0, + "webEndpoint": "https://azSdkTestHub.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + }, + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub1058", + "location": "East US", + "name": "testHub1058", + "properties": { + "apiEndpoint": "https://testHub1058.dfd.projectuic-int.net", + "provisioningState": "Succeeded", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub1058.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsUpdate.json index 3adb220f2dc6..068afee45e73 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/HubsUpdate.json @@ -1,42 +1,40 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "location": "West US", - "properties": { - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - } - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", - "location": "East US", - "name": "testHub2839", - "properties": { - "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", - "provisioningState": "Created", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "location": "West US", + "properties": { + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", + "location": "East US", + "name": "testHub2839", + "properties": { + "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", + "provisioningState": "Created", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ImagesGetUploadUrlForData.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ImagesGetUploadUrlForData.json index 454860d5e639..3a252dda2637 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ImagesGetUploadUrlForData.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ImagesGetUploadUrlForData.json @@ -1,22 +1,22 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "entityType": "Profile", - "entityTypeName": "Contact", - "relativePath": "images/profile1.png" - } - }, - "responses": { - "200": { - "body": { - "contentUrl": "https://ucidfdbl2001img.blob.core.windows.net/images/3ac3a97a5e3246ffb41812f60fd9f83c/EntityTypeImage/Profile/Contact/images/profile1.png?sv=2015-04-05&sr=b&sig=yIt7DGVRTyNl15%2BPc0kO%2FDITJ2cExnBPVvvh6p86qdc%3D&se=2017-01-06T01%3A56%3A43Z&sp=cw", - "relativePath": "images/profile1.png", - "imageExists": false - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "entityType": "Profile", + "entityTypeName": "Contact", + "relativePath": "images/profile1.png" + } + }, + "responses": { + "200": { + "body": { + "contentUrl": "https://ucidfdbl2001img.blob.core.windows.net/images/3ac3a97a5e3246ffb41812f60fd9f83c/EntityTypeImage/Profile/Contact/images/profile1.png?sv=2015-04-05&sr=b&sig=yIt7DGVRTyNl15%2BPc0kO%2FDITJ2cExnBPVvvh6p86qdc%3D&se=2017-01-06T01%3A56%3A43Z&sp=cw", + "relativePath": "images/profile1.png", + "imageExists": false + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ImagesGetUploadUrlForEntityType.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ImagesGetUploadUrlForEntityType.json index 454860d5e639..3a252dda2637 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ImagesGetUploadUrlForEntityType.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ImagesGetUploadUrlForEntityType.json @@ -1,22 +1,22 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "entityType": "Profile", - "entityTypeName": "Contact", - "relativePath": "images/profile1.png" - } - }, - "responses": { - "200": { - "body": { - "contentUrl": "https://ucidfdbl2001img.blob.core.windows.net/images/3ac3a97a5e3246ffb41812f60fd9f83c/EntityTypeImage/Profile/Contact/images/profile1.png?sv=2015-04-05&sr=b&sig=yIt7DGVRTyNl15%2BPc0kO%2FDITJ2cExnBPVvvh6p86qdc%3D&se=2017-01-06T01%3A56%3A43Z&sp=cw", - "relativePath": "images/profile1.png", - "imageExists": false - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "entityType": "Profile", + "entityTypeName": "Contact", + "relativePath": "images/profile1.png" + } + }, + "responses": { + "200": { + "body": { + "contentUrl": "https://ucidfdbl2001img.blob.core.windows.net/images/3ac3a97a5e3246ffb41812f60fd9f83c/EntityTypeImage/Profile/Contact/images/profile1.png?sv=2015-04-05&sr=b&sig=yIt7DGVRTyNl15%2BPc0kO%2FDITJ2cExnBPVvvh6p86qdc%3D&se=2017-01-06T01%3A56%3A43Z&sp=cw", + "relativePath": "images/profile1.png", + "imageExists": false + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsCreateOrUpdate.json index 160b21a30088..ce7c21837094 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsCreateOrUpdate.json @@ -1,80 +1,86 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "interactionName": "TestProfileType396", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "idPropertyNames": ["TestInteractionType6358"], - "primaryParticipantProfilePropertyName": "profile1", - "apiEntitySetName": "TestInteractionType6358", - "fields": [{ - "fieldName": "TestInteractionType6358", - "fieldType": "Edm.String", - "isArray": false, - "isRequired": true - }, - { - "fieldName": "profile1", - "fieldType": "Edm.String" - }], - "smallImage": "\\\\Images\\\\smallImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "largeImage": "\\\\Images\\\\LargeImage", - "isActivity": false - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", - "name": "azSdkTestHub/TestInteractionType6358", - "properties": { - "idPropertyNames": ["TestInteractionType6358"], - "primaryParticipantProfilePropertyName": "profile1", - "apiEntitySetName": "TestInteractionType6358", - "entityType": "Interaction", - "fields": [{ - "fieldName": "TestInteractionType6358", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "profile1", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "tenantId": "azsdktesthub", - "typeName": "TestInteractionType6358", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage", - "isActivity": false - }, - "type": "Microsoft.CustomerInsights/hubs/interactions" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "interactionName": "TestProfileType396", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "idPropertyNames": [ + "TestInteractionType6358" + ], + "primaryParticipantProfilePropertyName": "profile1", + "apiEntitySetName": "TestInteractionType6358", + "fields": [ + { + "fieldName": "TestInteractionType6358", + "fieldType": "Edm.String", + "isArray": false, + "isRequired": true + }, + { + "fieldName": "profile1", + "fieldType": "Edm.String" + } + ], + "smallImage": "\\\\Images\\\\smallImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "largeImage": "\\\\Images\\\\LargeImage", + "isActivity": false + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", + "name": "azSdkTestHub/TestInteractionType6358", + "properties": { + "idPropertyNames": [ + "TestInteractionType6358" + ], + "primaryParticipantProfilePropertyName": "profile1", + "apiEntitySetName": "TestInteractionType6358", + "entityType": "Interaction", + "fields": [ + { + "fieldName": "TestInteractionType6358", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "profile1", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "tenantId": "azsdktesthub", + "typeName": "TestInteractionType6358", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage", + "isActivity": false + }, + "type": "Microsoft.CustomerInsights/hubs/interactions" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsGet.json index 0aac643643d4..b77a19b39052 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsGet.json @@ -1,88 +1,92 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "interactionName": "TestInteractionType6358", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", - "name": "azSdkTestHub/TestInteractionType6358", - "properties": { - "idPropertyNames": ["TestInteractionType6358"], - "primaryParticipantProfilePropertyName": "profile1", - "apiEntitySetName": "TestInteractionType6358", - "entityType": "Interaction", - "fields": [{ - "fieldName": "TestInteractionType6358", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1", - "dataSourcePrecedenceRules": [] - }, - { - "fieldName": "profile1", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1", - "dataSourcePrecedenceRules": [ - { - "dataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "precedence": 50 - } - ] - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "tenantId": "azsdktesthub", - "typeName": "TestInteractionType6358", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage", - "defaultDataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "dataSourcePrecedenceRules": [ - { - "dataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "precedence": 50 - } - ], - "isActivity": true - }, - "type": "Microsoft.CustomerInsights/hubs/interactions" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "interactionName": "TestInteractionType6358", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", + "name": "azSdkTestHub/TestInteractionType6358", + "properties": { + "idPropertyNames": [ + "TestInteractionType6358" + ], + "primaryParticipantProfilePropertyName": "profile1", + "apiEntitySetName": "TestInteractionType6358", + "entityType": "Interaction", + "fields": [ + { + "fieldName": "TestInteractionType6358", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1", + "dataSourcePrecedenceRules": [] + }, + { + "fieldName": "profile1", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1", + "dataSourcePrecedenceRules": [ + { + "dataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "precedence": 50 + } + ] + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "tenantId": "azsdktesthub", + "typeName": "TestInteractionType6358", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage", + "defaultDataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "dataSourcePrecedenceRules": [ + { + "dataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "precedence": 50 + } + ], + "isActivity": true + }, + "type": "Microsoft.CustomerInsights/hubs/interactions" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsListByHub.json index ebb489a5b2dd..f532a73c7d85 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsListByHub.json @@ -1,89 +1,95 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", - "name": "azSdkTestHub/TestInteractionType6358", - "properties": { - "idPropertyNames": ["TestInteractionType6358"], - "primaryParticipantProfilePropertyName": "profile1", - "apiEntitySetName": "TestInteractionType6358", - "entityType": "Interaction", - "fields": [{ - "fieldName": "TestInteractionType6358", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1", - "dataSourcePrecedenceRules": [] - }, - { - "fieldName": "profile1", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1", - "dataSourcePrecedenceRules": [ - { - "dataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "precedence": 50 - } - ] - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "tenantId": "azsdktesthub", - "typeName": "TestInteractionType6358", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage", - "defaultDataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "dataSourcePrecedenceRules": [ - { - "dataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "precedence": 50 - } - ], - "isActivity": true - }, - "type": "Microsoft.CustomerInsights/hubs/interactions" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", + "name": "azSdkTestHub/TestInteractionType6358", + "properties": { + "idPropertyNames": [ + "TestInteractionType6358" + ], + "primaryParticipantProfilePropertyName": "profile1", + "apiEntitySetName": "TestInteractionType6358", + "entityType": "Interaction", + "fields": [ + { + "fieldName": "TestInteractionType6358", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1", + "dataSourcePrecedenceRules": [] + }, + { + "fieldName": "profile1", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1", + "dataSourcePrecedenceRules": [ + { + "dataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "precedence": 50 + } + ] + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "tenantId": "azsdktesthub", + "typeName": "TestInteractionType6358", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage", + "defaultDataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "dataSourcePrecedenceRules": [ + { + "dataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "precedence": 50 + } + ], + "isActivity": true + }, + "type": "Microsoft.CustomerInsights/hubs/interactions" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsSuggestRelationshipLinks.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsSuggestRelationshipLinks.json index 504cb8b9d223..8fa2f3ab4138 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsSuggestRelationshipLinks.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/InteractionsSuggestRelationshipLinks.json @@ -1,40 +1,50 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "interactionName": "Deposit", - "api-version": "2017-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "interactionName": "Deposit", - "suggestedRelationships": [{ - "profileName": "Branch", - "profilePropertyReferences": [{ - "interactionPropertyName": "BranchId", - "profilePropertyName": "BranchId" - }], - "relatedProfileName": "Contact", - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "ContactId", - "profilePropertyName": "ContactId" - }] - }, - { - "profileName": "Contact", - "profilePropertyReferences": [{ - "interactionPropertyName": "ContactId", - "profilePropertyName": "ContactId" - }], - "relatedProfileName": "Branch", - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "BranchId", - "profilePropertyName": "BranchId" - }] - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "interactionName": "Deposit", + "api-version": "2017-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "interactionName": "Deposit", + "suggestedRelationships": [ + { + "profileName": "Branch", + "profilePropertyReferences": [ + { + "interactionPropertyName": "BranchId", + "profilePropertyName": "BranchId" + } + ], + "relatedProfileName": "Contact", + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "ContactId", + "profilePropertyName": "ContactId" + } + ] + }, + { + "profileName": "Contact", + "profilePropertyReferences": [ + { + "interactionPropertyName": "ContactId", + "profilePropertyName": "ContactId" + } + ], + "relatedProfileName": "Branch", + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "BranchId", + "profilePropertyName": "BranchId" + } + ] + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiCreateOrUpdate.json index bc06a79c3e8a..25f7bf4e8e5d 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiCreateOrUpdate.json @@ -1,74 +1,80 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "kpiName": "kpiTest45453647", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "entityType": "Profile", - "entityTypeName": "testProfile2327128", - "displayName": { - "en-us": "Kpi DisplayName" - }, - "description": { - "en-us": "Kpi Description" - }, - "calculationWindow": "Day", - "function": "Sum", - "expression": "SavingAccountBalance", - "unit": "unit", - "groupBy": ["SavingAccountBalance"], - "thresHolds": { - "lowerLimit": 5.0, - "upperLimit": 50.0, - "increasingKpi": true - }, - "aliases": [{ - "aliasName": "alias", - "expression": "Id+4" - }] - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", - "name": "sdkTestHub/kpiTest45453647", - "properties": { - "aliases": [{ - "aliasName": "alias", - "expression": "Id+4" - }], - "calculationWindow": "Day", - "description": { - "en-us": "Kpi Description" - }, - "displayName": { - "en-us": "Kpi DisplayName" - }, - "entityType": "Profile", - "entityTypeName": "testProfile2327128", - "expression": "SavingAccountBalance", - "function": "Sum", - "groupBy": ["SavingAccountBalance"], - "kpiName": "kpiTest45453647", - "provisioningState": "Provisioning", - "tenantId": "sdktesthub", - "thresHolds": { - "increasingKpi": true, - "lowerLimit": 5.0, - "upperLimit": 50.0 - }, - "unit": "unit" - }, - "type": "Microsoft.CustomerInsights/hubs/kpi" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "kpiName": "kpiTest45453647", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "entityType": "Profile", + "entityTypeName": "testProfile2327128", + "displayName": { + "en-us": "Kpi DisplayName" + }, + "description": { + "en-us": "Kpi Description" + }, + "calculationWindow": "Day", + "function": "Sum", + "expression": "SavingAccountBalance", + "unit": "unit", + "groupBy": [ + "SavingAccountBalance" + ], + "thresHolds": { + "lowerLimit": 5.0, + "upperLimit": 50.0, + "increasingKpi": true + }, + "aliases": [ + { + "aliasName": "alias", + "expression": "Id+4" + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", + "name": "sdkTestHub/kpiTest45453647", + "properties": { + "aliases": [ + { + "aliasName": "alias", + "expression": "Id+4" + } + ], + "calculationWindow": "Day", + "description": { + "en-us": "Kpi Description" + }, + "displayName": { + "en-us": "Kpi DisplayName" + }, + "entityType": "Profile", + "entityTypeName": "testProfile2327128", + "expression": "SavingAccountBalance", + "function": "Sum", + "groupBy": [ + "SavingAccountBalance" + ], + "kpiName": "kpiTest45453647", + "provisioningState": "Provisioning", + "tenantId": "sdktesthub", + "thresHolds": { + "increasingKpi": true, + "lowerLimit": 5.0, + "upperLimit": 50.0 + }, + "unit": "unit" + }, + "type": "Microsoft.CustomerInsights/hubs/kpi" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiDelete.json index 493a641b7260..79bcb779b69b 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiDelete.json @@ -1,13 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "kpiName": "kpiTest45453647", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": {}, - "202": {} - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "kpiName": "kpiTest45453647", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiGet.json index 262b6a9ebfa0..150e0c4ecde8 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiGet.json @@ -1,45 +1,49 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "kpiName": "kpiTest45453647", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", - "name": "sdkTestHub/kpiTest45453647", - "properties": { - "aliases": [{ - "aliasName": "alias", - "expression": "Id+4" - }], - "calculationWindow": "Day", - "description": { - "en-us": "Kpi Description" - }, - "displayName": { - "en-us": "Kpi DisplayName" - }, - "entityType": "Profile", - "entityTypeName": "testProfile2327128", - "expression": "SavingAccountBalance", - "function": "Sum", - "groupBy": ["SavingAccountBalance"], - "kpiName": "kpiTest45453647", - "provisioningState": "Provisioning", - "tenantId": "sdktesthub", - "thresHolds": { - "increasingKpi": true, - "lowerLimit": 5.0, - "upperLimit": 50.0 - }, - "unit": "unit" - }, - "type": "Microsoft.CustomerInsights/hubs/kpi" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "kpiName": "kpiTest45453647", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", + "name": "sdkTestHub/kpiTest45453647", + "properties": { + "aliases": [ + { + "aliasName": "alias", + "expression": "Id+4" + } + ], + "calculationWindow": "Day", + "description": { + "en-us": "Kpi Description" + }, + "displayName": { + "en-us": "Kpi DisplayName" + }, + "entityType": "Profile", + "entityTypeName": "testProfile2327128", + "expression": "SavingAccountBalance", + "function": "Sum", + "groupBy": [ + "SavingAccountBalance" + ], + "kpiName": "kpiTest45453647", + "provisioningState": "Provisioning", + "tenantId": "sdktesthub", + "thresHolds": { + "increasingKpi": true, + "lowerLimit": 5.0, + "upperLimit": 50.0 + }, + "unit": "unit" + }, + "type": "Microsoft.CustomerInsights/hubs/kpi" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiListByHub.json index 91c607454f85..d746eea2c4e1 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiListByHub.json @@ -1,46 +1,52 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", - "name": "sdkTestHub/kpiTest45453647", - "properties": { - "aliases": [{ - "aliasName": "alias", - "expression": "Id+4" - }], - "calculationWindow": "Day", - "description": { - "en-us": "Kpi Description" - }, - "displayName": { - "en-us": "Kpi DisplayName" - }, - "entityType": "Profile", - "entityTypeName": "testProfile2327128", - "expression": "SavingAccountBalance", - "function": "Sum", - "groupBy": ["SavingAccountBalance"], - "kpiName": "kpiTest45453647", - "provisioningState": "Provisioning", - "tenantId": "sdktesthub", - "thresHolds": { - "increasingKpi": true, - "lowerLimit": 5.0, - "upperLimit": 50.0 - }, - "unit": "unit" - }, - "type": "Microsoft.CustomerInsights/hubs/kpi" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", + "name": "sdkTestHub/kpiTest45453647", + "properties": { + "aliases": [ + { + "aliasName": "alias", + "expression": "Id+4" + } + ], + "calculationWindow": "Day", + "description": { + "en-us": "Kpi Description" + }, + "displayName": { + "en-us": "Kpi DisplayName" + }, + "entityType": "Profile", + "entityTypeName": "testProfile2327128", + "expression": "SavingAccountBalance", + "function": "Sum", + "groupBy": [ + "SavingAccountBalance" + ], + "kpiName": "kpiTest45453647", + "provisioningState": "Provisioning", + "tenantId": "sdktesthub", + "thresHolds": { + "increasingKpi": true, + "lowerLimit": 5.0, + "upperLimit": 50.0 + }, + "unit": "unit" + }, + "type": "Microsoft.CustomerInsights/hubs/kpi" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiReprocess.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiReprocess.json index 659260336127..83bd69594f4b 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiReprocess.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/KpiReprocess.json @@ -1,14 +1,12 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "kpiName": "kpiTest45453647", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "kpiName": "kpiTest45453647", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksCreateOrUpdate.json index c4d0e4d550f2..5c066853432c 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksCreateOrUpdate.json @@ -1,74 +1,74 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "linkName": "linkTest4806", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "linkName": "linkTest4806", - "sourceInteractionType": "testInteraction1949", - "targetProfileType": "testProfile1446", - "displayName": { - "en-us": "Link DisplayName" - }, - "description": { - "en-us": "Link Description" - }, - "mappings": [ - { - "interactionTypePropertyName": "testInteraction1949", - "profileTypePropertyName": "testProfile1446", - "isProfileTypeId": true, - "linkType": "UpdateAlways" - } - ], - "participantPropertyReferences": [ - { - "interactionPropertyName": "testInteraction1949", - "profilePropertyName": "ProfileId" - } - ] - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", - "name": "azSdkTestHub/linkTest4806", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "linkName": "linkTest4806", - "mappings": [ - { - "interactionTypePropertyName": "testInteraction1949", - "isProfileTypeId": true, - "linkType": "UpdateAlways", - "profileTypePropertyName": "testProfile1446" - } - ], - "participantPropertyReferences": [ - { - "interactionPropertyName": "testInteraction1949", - "profilePropertyName": "ProfileId" - } - ], - "provisioningState": "Provisioning", - "sourceInteractionType": "testInteraction1949", - "targetProfileType": "testProfile1446", - "tenantId": "azsdktesthub", - "referenceOnly": false - }, - "type": "Microsoft.CustomerInsights/hubs/links" - } - }, - "202": {} - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "linkName": "linkTest4806", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "linkName": "linkTest4806", + "sourceInteractionType": "testInteraction1949", + "targetProfileType": "testProfile1446", + "displayName": { + "en-us": "Link DisplayName" + }, + "description": { + "en-us": "Link Description" + }, + "mappings": [ + { + "interactionTypePropertyName": "testInteraction1949", + "profileTypePropertyName": "testProfile1446", + "isProfileTypeId": true, + "linkType": "UpdateAlways" + } + ], + "participantPropertyReferences": [ + { + "interactionPropertyName": "testInteraction1949", + "profilePropertyName": "ProfileId" + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", + "name": "azSdkTestHub/linkTest4806", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "linkName": "linkTest4806", + "mappings": [ + { + "interactionTypePropertyName": "testInteraction1949", + "isProfileTypeId": true, + "linkType": "UpdateAlways", + "profileTypePropertyName": "testProfile1446" + } + ], + "participantPropertyReferences": [ + { + "interactionPropertyName": "testInteraction1949", + "profilePropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "sourceInteractionType": "testInteraction1949", + "targetProfileType": "testProfile1446", + "tenantId": "azsdktesthub", + "referenceOnly": false + }, + "type": "Microsoft.CustomerInsights/hubs/links" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksDelete.json index 2b41c5cb20f7..ad139857a18a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksDelete.json @@ -1,13 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "linkName": "linkTest4806", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": {}, - "202": {} - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "linkName": "linkTest4806", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksGet.json index 6b84b5b5dff4..7129fda53189 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksGet.json @@ -1,42 +1,46 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "linkName": "linkTest4806", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", - "name": "azSdkTestHub/linkTest4806", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "linkName": "linkTest4806", - "mappings": [{ - "interactionTypePropertyName": "testInteraction1949", - "isProfileTypeId": true, - "linkType": "UpdateAlways", - "profileTypePropertyName": "testProfile1446" - }], - "participantPropertyReferences": [{ - "interactionPropertyName": "testInteraction1949", - "profilePropertyName": "ProfileId" - }], - "provisioningState": "Provisioning", - "sourceInteractionType": "testInteraction1949", - "targetProfileType": "testProfile1446", - "tenantId": "azsdktesthub", - "referenceOnly": false - }, - "type": "Microsoft.CustomerInsights/hubs/links" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "linkName": "linkTest4806", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", + "name": "azSdkTestHub/linkTest4806", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "linkName": "linkTest4806", + "mappings": [ + { + "interactionTypePropertyName": "testInteraction1949", + "isProfileTypeId": true, + "linkType": "UpdateAlways", + "profileTypePropertyName": "testProfile1446" + } + ], + "participantPropertyReferences": [ + { + "interactionPropertyName": "testInteraction1949", + "profilePropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "sourceInteractionType": "testInteraction1949", + "targetProfileType": "testProfile1446", + "tenantId": "azsdktesthub", + "referenceOnly": false + }, + "type": "Microsoft.CustomerInsights/hubs/links" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksListByHub.json index 18017f91ed58..5db0d75f8a65 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/LinksListByHub.json @@ -1,43 +1,49 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", - "name": "azSdkTestHub/linkTest4806", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "linkName": "linkTest4806", - "mappings": [{ - "interactionTypePropertyName": "testInteraction1949", - "isProfileTypeId": true, - "linkType": "UpdateAlways", - "profileTypePropertyName": "testProfile1446" - }], - "participantPropertyReferences": [{ - "interactionPropertyName": "testInteraction1949", - "profilePropertyName": "ProfileId" - }], - "provisioningState": "Provisioning", - "sourceInteractionType": "testInteraction1949", - "targetProfileType": "testProfile1446", - "tenantId": "azsdktesthub", - "referenceOnly": false - }, - "type": "Microsoft.CustomerInsights/hubs/links" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", + "name": "azSdkTestHub/linkTest4806", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "linkName": "linkTest4806", + "mappings": [ + { + "interactionTypePropertyName": "testInteraction1949", + "isProfileTypeId": true, + "linkType": "UpdateAlways", + "profileTypePropertyName": "testProfile1446" + } + ], + "participantPropertyReferences": [ + { + "interactionPropertyName": "testInteraction1949", + "profilePropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "sourceInteractionType": "testInteraction1949", + "targetProfileType": "testProfile1446", + "tenantId": "azsdktesthub", + "referenceOnly": false + }, + "type": "Microsoft.CustomerInsights/hubs/links" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfileGetEnrichingKpis.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfileGetEnrichingKpis.json index 511cb1608d8d..3f137fc75b31 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfileGetEnrichingKpis.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfileGetEnrichingKpis.json @@ -1,75 +1,81 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "profileName": "TestProfileType396", - "api-version": "2017-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": [{ - "calculationWindow": "Month", - "calculationWindowFieldName": "", - "description": { - "en-us": "MonthlyDeposits" - }, - "entityType": "Interaction", - "entityTypeName": "Deposit", - "expression": "Amount", - "filter": "", - "function": "Sum", - "groupBy": ["AccountType", - "BranchId", - "ContactId", - "Location", - "Type"], - "groupByMetadata": [{ - "displayName": { - "en-us": "AccountType" - }, - "fieldName": "AccountType", - "fieldType": "Edm.String" - }, - { - "displayName": { - "en-us": "BranchId" - }, - "fieldName": "BranchId", - "fieldType": "Edm.Int32" - }, - { - "displayName": { - "en-us": "ContactId" - }, - "fieldName": "ContactId", - "fieldType": "Edm.Int32" - }, - { - "displayName": { - "en-us": "Location" - }, - "fieldName": "Location", - "fieldType": "Edm.String" - }, - { - "displayName": { - "en-us": "Type" - }, - "fieldName": "Type", - "fieldType": "Edm.String" - }], - "kpiName": "MonthlyDeposits", - "participantProfilesMetadata": [], - "provisioningState": "Succeeded", - "tenantId": "sdkTestHub", - "thresHolds": { - "increasingKpi": true, - "lowerLimit": 0, - "upperLimit": 0 - }, - "unit": "" - }] - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "profileName": "TestProfileType396", + "api-version": "2017-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": [ + { + "calculationWindow": "Month", + "calculationWindowFieldName": "", + "description": { + "en-us": "MonthlyDeposits" + }, + "entityType": "Interaction", + "entityTypeName": "Deposit", + "expression": "Amount", + "filter": "", + "function": "Sum", + "groupBy": [ + "AccountType", + "BranchId", + "ContactId", + "Location", + "Type" + ], + "groupByMetadata": [ + { + "displayName": { + "en-us": "AccountType" + }, + "fieldName": "AccountType", + "fieldType": "Edm.String" + }, + { + "displayName": { + "en-us": "BranchId" + }, + "fieldName": "BranchId", + "fieldType": "Edm.Int32" + }, + { + "displayName": { + "en-us": "ContactId" + }, + "fieldName": "ContactId", + "fieldType": "Edm.Int32" + }, + { + "displayName": { + "en-us": "Location" + }, + "fieldName": "Location", + "fieldType": "Edm.String" + }, + { + "displayName": { + "en-us": "Type" + }, + "fieldName": "Type", + "fieldType": "Edm.String" + } + ], + "kpiName": "MonthlyDeposits", + "participantProfilesMetadata": [], + "provisioningState": "Succeeded", + "tenantId": "sdkTestHub", + "thresHolds": { + "increasingKpi": true, + "lowerLimit": 0, + "upperLimit": 0 + }, + "unit": "" + } + ] + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesCreateOrUpdate.json index 601cc85f3181..3fad518ca871 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesCreateOrUpdate.json @@ -1,156 +1,172 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "profileName": "TestProfileType396", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "strongIds": [{ - "keyPropertyNames": ["Id", - "SavingAccountBalance"], - "strongIdName": "Id" - }, - { - "keyPropertyNames": ["ProfileId", - "LastName"], - "strongIdName": "ProfileId" - }], - "apiEntitySetName": "TestProfileType396", - "fields": [{ - "fieldName": "Id", - "fieldType": "Edm.String", - "isArray": false, - "isRequired": true - }, - { - "fieldName": "ProfileId", - "fieldType": "Edm.String", - "isArray": false, - "isRequired": true - }, - { - "fieldName": "LastName", - "fieldType": "Edm.String", - "isArray": false, - "isRequired": true - }, - { - "fieldName": "TestProfileType396", - "fieldType": "Edm.String", - "isArray": false, - "isRequired": true - }, - { - "fieldName": "SavingAccountBalance", - "fieldType": "Edm.Int32", - "isArray": false, - "isRequired": true - }], - "schemaItemTypeLink": "SchemaItemTypeLink", - "smallImage": "\\\\Images\\\\smallImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "largeImage": "\\\\Images\\\\LargeImage" - } - } - }, - "responses": { - "202": { - - }, - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", - "name": "azSdkTestHub/TestProfileType396", - "properties": { - "strongIds": [{ - "keyPropertyNames": ["Id", - "savingAccountBalance"], - "strongIdName": "Id" - }, - { - "keyPropertyNames": ["ProfileId", - "LastName"], - "strongIdName": "ProfileId" - }, - { - "keyPropertyNames": ["ProfileId"], - "strongIdName": "ProfileId" - }], - "apiEntitySetName": "TestProfileType396", - "entityType": "Profile", - "fields": [{ - "fieldName": "Id", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "ProfileId", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "LastName", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "TestProfileType396", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "SavingAccountBalance", - "fieldType": "Edm.Int32", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "schemaItemTypeLink": "SchemaItemTypeLink", - "tenantId": "azsdktesthub", - "typeName": "TestProfileType396", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage" - }, - "type": "Microsoft.CustomerInsights/hubs/profiles" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "profileName": "TestProfileType396", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "strongIds": [ + { + "keyPropertyNames": [ + "Id", + "SavingAccountBalance" + ], + "strongIdName": "Id" + }, + { + "keyPropertyNames": [ + "ProfileId", + "LastName" + ], + "strongIdName": "ProfileId" + } + ], + "apiEntitySetName": "TestProfileType396", + "fields": [ + { + "fieldName": "Id", + "fieldType": "Edm.String", + "isArray": false, + "isRequired": true + }, + { + "fieldName": "ProfileId", + "fieldType": "Edm.String", + "isArray": false, + "isRequired": true + }, + { + "fieldName": "LastName", + "fieldType": "Edm.String", + "isArray": false, + "isRequired": true + }, + { + "fieldName": "TestProfileType396", + "fieldType": "Edm.String", + "isArray": false, + "isRequired": true + }, + { + "fieldName": "SavingAccountBalance", + "fieldType": "Edm.Int32", + "isArray": false, + "isRequired": true + } + ], + "schemaItemTypeLink": "SchemaItemTypeLink", + "smallImage": "\\\\Images\\\\smallImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "largeImage": "\\\\Images\\\\LargeImage" + } + } + }, + "responses": { + "202": {}, + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", + "name": "azSdkTestHub/TestProfileType396", + "properties": { + "strongIds": [ + { + "keyPropertyNames": [ + "Id", + "savingAccountBalance" + ], + "strongIdName": "Id" + }, + { + "keyPropertyNames": [ + "ProfileId", + "LastName" + ], + "strongIdName": "ProfileId" + }, + { + "keyPropertyNames": [ + "ProfileId" + ], + "strongIdName": "ProfileId" + } + ], + "apiEntitySetName": "TestProfileType396", + "entityType": "Profile", + "fields": [ + { + "fieldName": "Id", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "ProfileId", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "LastName", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "TestProfileType396", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "SavingAccountBalance", + "fieldType": "Edm.Int32", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "schemaItemTypeLink": "SchemaItemTypeLink", + "tenantId": "azsdktesthub", + "typeName": "TestProfileType396", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage" + }, + "type": "Microsoft.CustomerInsights/hubs/profiles" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesDelete.json index ff9486f362a3..17435c69ab85 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesDelete.json @@ -1,20 +1,14 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "profileName": "TestProfileType396", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - }, - "202": { - - }, - "204": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "profileName": "TestProfileType396", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesGet.json index ffeeb1edc348..0fca793d9440 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesGet.json @@ -1,104 +1,114 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "profileName": "TestProfileType396", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", - "name": "azSdkTestHub/TestProfileType396", - "properties": { - "strongIds": [{ - "keyPropertyNames": ["Id", - "savingAccountBalance"], - "strongIdName": "Id" - }, - { - "keyPropertyNames": ["ProfileId", - "LastName"], - "strongIdName": "ProfileId" - }, - { - "keyPropertyNames": ["ProfileId"], - "strongIdName": "ProfileId" - }], - "apiEntitySetName": "TestProfileType396", - "entityType": "Profile", - "fields": [{ - "fieldName": "Id", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "ProfileId", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "LastName", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "TestProfileType396", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "SavingAccountBalance", - "fieldType": "Edm.Int32", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "schemaItemTypeLink": "SchemaItemTypeLink", - "tenantId": "azsdktesthub", - "typeName": "TestProfileType396", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage" - }, - "type": "Microsoft.CustomerInsights/hubs/profiles" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "profileName": "TestProfileType396", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", + "name": "azSdkTestHub/TestProfileType396", + "properties": { + "strongIds": [ + { + "keyPropertyNames": [ + "Id", + "savingAccountBalance" + ], + "strongIdName": "Id" + }, + { + "keyPropertyNames": [ + "ProfileId", + "LastName" + ], + "strongIdName": "ProfileId" + }, + { + "keyPropertyNames": [ + "ProfileId" + ], + "strongIdName": "ProfileId" + } + ], + "apiEntitySetName": "TestProfileType396", + "entityType": "Profile", + "fields": [ + { + "fieldName": "Id", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "ProfileId", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "LastName", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "TestProfileType396", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "SavingAccountBalance", + "fieldType": "Edm.Int32", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "schemaItemTypeLink": "SchemaItemTypeLink", + "tenantId": "azsdktesthub", + "typeName": "TestProfileType396", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage" + }, + "type": "Microsoft.CustomerInsights/hubs/profiles" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesListByHub.json index 4442c3826d5d..5afff68434b9 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ProfilesListByHub.json @@ -1,106 +1,118 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", - "name": "azSdkTestHub/TestProfileType396", - "properties": { - "strongIds": [{ - "keyPropertyNames": ["Id", - "savingAccountBalance"], - "strongIdName": "Id" - }, - { - "keyPropertyNames": ["ProfileId", - "LastName"], - "strongIdName": "ProfileId" - }, - { - "keyPropertyNames": ["ProfileId"], - "strongIdName": "ProfileId" - }], - "apiEntitySetName": "TestProfileType396", - "entityType": "Profile", - "fields": [{ - "fieldName": "Id", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "ProfileId", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "LastName", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "TestProfileType396", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "SavingAccountBalance", - "fieldType": "Edm.Int32", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "schemaItemTypeLink": "SchemaItemTypeLink", - "tenantId": "azsdktesthub", - "typeName": "TestProfileType396", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage" - }, - "type": "Microsoft.CustomerInsights/hubs/profiles" - }], - "nextLink": "" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", + "name": "azSdkTestHub/TestProfileType396", + "properties": { + "strongIds": [ + { + "keyPropertyNames": [ + "Id", + "savingAccountBalance" + ], + "strongIdName": "Id" + }, + { + "keyPropertyNames": [ + "ProfileId", + "LastName" + ], + "strongIdName": "ProfileId" + }, + { + "keyPropertyNames": [ + "ProfileId" + ], + "strongIdName": "ProfileId" + } + ], + "apiEntitySetName": "TestProfileType396", + "entityType": "Profile", + "fields": [ + { + "fieldName": "Id", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "ProfileId", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "LastName", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "TestProfileType396", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "SavingAccountBalance", + "fieldType": "Edm.Int32", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "schemaItemTypeLink": "SchemaItemTypeLink", + "tenantId": "azsdktesthub", + "typeName": "TestProfileType396", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage" + }, + "type": "Microsoft.CustomerInsights/hubs/profiles" + } + ], + "nextLink": "" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksCreateOrUpdate.json index 49c778ee9665..75acab7d4914 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksCreateOrUpdate.json @@ -1,63 +1,69 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipLinkName": "Somelink", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "displayName": { - "en-us": "Link DisplayName" - }, - "description": { - "en-us": "Link Description" - }, - "interactionType": "testInteraction4332", - "linkName": "Somelink", - "profilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "relationshipName": "testProfile2326994" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", - "name": "sdkTestHub/Somelink", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "interactionType": "testInteraction4332", - "linkName": "Somelink", - "profilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "provisioningState": "Provisioning", - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "relationshipName": "testProfile2326994", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipLinkName": "Somelink", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "displayName": { + "en-us": "Link DisplayName" + }, + "description": { + "en-us": "Link Description" + }, + "interactionType": "testInteraction4332", + "linkName": "Somelink", + "profilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "relationshipName": "testProfile2326994" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", + "name": "sdkTestHub/Somelink", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "interactionType": "testInteraction4332", + "linkName": "Somelink", + "profilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "relationshipName": "testProfile2326994", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksDelete.json index 373fd21aa152..0760121175c2 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksDelete.json @@ -1,17 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipLinkName": "Somelink", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipLinkName": "Somelink", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksGet.json index b19354bee869..193231fc3666 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksGet.json @@ -1,39 +1,43 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipLinkName": "Somelink", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", - "name": "sdkTestHub/Somelink", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "interactionType": "testInteraction4332", - "linkName": "Somelink", - "profilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "provisioningState": "Provisioning", - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "relationshipName": "testProfile2326994", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipLinkName": "Somelink", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", + "name": "sdkTestHub/Somelink", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "interactionType": "testInteraction4332", + "linkName": "Somelink", + "profilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "relationshipName": "testProfile2326994", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksListByHub.json index 220b1adccf7f..d9d63564955c 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipLinksListByHub.json @@ -1,40 +1,46 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", - "name": "sdkTestHub/Somelink", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "interactionType": "testInteraction4332", - "linkName": "Somelink", - "profilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "provisioningState": "Provisioning", - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "relationshipName": "testProfile2326994", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", + "name": "sdkTestHub/Somelink", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "interactionType": "testInteraction4332", + "linkName": "Somelink", + "profilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "relationshipName": "testProfile2326994", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsCreateOrUpdate.json index d6db25d0de72..7dda783d91f0 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsCreateOrUpdate.json @@ -1,51 +1,49 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipName": "SomeRelationship", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "cardinality": "OneToOne", - "displayName": { - "en-us": "Relationship DisplayName" - }, - "description": { - "en-us": "Relationship Description" - }, - "fields": [], - "profileType": "testProfile2326994", - "relatedProfileType": "testProfile2326994" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", - "name": "sdkTestHub/testProfile2326994", - "properties": { - "cardinality": "OneToOne", - "description": { - "en-us": "Relationship Description" - }, - "displayName": { - "en-us": "Relationship DisplayName" - }, - "fields": [], - "lookupMappings": [], - "profileType": "testProfile2326994", - "provisioningState": "Provisioning", - "relatedProfileType": "testProfile2326994", - "relationshipName": "SomeRelationship", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationships" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipName": "SomeRelationship", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "cardinality": "OneToOne", + "displayName": { + "en-us": "Relationship DisplayName" + }, + "description": { + "en-us": "Relationship Description" + }, + "fields": [], + "profileType": "testProfile2326994", + "relatedProfileType": "testProfile2326994" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", + "name": "sdkTestHub/testProfile2326994", + "properties": { + "cardinality": "OneToOne", + "description": { + "en-us": "Relationship Description" + }, + "displayName": { + "en-us": "Relationship DisplayName" + }, + "fields": [], + "lookupMappings": [], + "profileType": "testProfile2326994", + "provisioningState": "Provisioning", + "relatedProfileType": "testProfile2326994", + "relationshipName": "SomeRelationship", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationships" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsDelete.json index a28259d3e262..b988c9aebeb2 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsDelete.json @@ -1,17 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipName": "SomeRelationship", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipName": "SomeRelationship", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsGet.json index 7135827b9b34..33b86ccb1608 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsGet.json @@ -1,34 +1,34 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipName": "SomeRelationship", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", - "name": "sdkTestHub/testProfile2326994", - "properties": { - "cardinality": "OneToOne", - "description": { - "en-us": "Relationship Description" - }, - "displayName": { - "en-us": "Relationship DisplayName" - }, - "fields": [], - "lookupMappings": [], - "profileType": "testProfile2326994", - "provisioningState": "Provisioning", - "relatedProfileType": "testProfile2326994", - "relationshipName": "SomeRelationship", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationships" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipName": "SomeRelationship", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", + "name": "sdkTestHub/testProfile2326994", + "properties": { + "cardinality": "OneToOne", + "description": { + "en-us": "Relationship Description" + }, + "displayName": { + "en-us": "Relationship DisplayName" + }, + "fields": [], + "lookupMappings": [], + "profileType": "testProfile2326994", + "provisioningState": "Provisioning", + "relatedProfileType": "testProfile2326994", + "relationshipName": "SomeRelationship", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationships" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsListByHub.json index 67ab7fdf6074..9ed418bd4c8a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RelationshipsListByHub.json @@ -1,35 +1,37 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", - "name": "sdkTestHub/testProfile2326994", - "properties": { - "cardinality": "OneToOne", - "description": { - "en-us": "Relationship Description" - }, - "displayName": { - "en-us": "Relationship DisplayName" - }, - "fields": [], - "lookupMappings": [], - "profileType": "testProfile2326994", - "provisioningState": "Provisioning", - "relatedProfileType": "testProfile2326994", - "relationshipName": "SomeRelationship", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationships" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", + "name": "sdkTestHub/testProfile2326994", + "properties": { + "cardinality": "OneToOne", + "description": { + "en-us": "Relationship Description" + }, + "displayName": { + "en-us": "Relationship DisplayName" + }, + "fields": [], + "lookupMappings": [], + "profileType": "testProfile2326994", + "provisioningState": "Provisioning", + "relatedProfileType": "testProfile2326994", + "relationshipName": "SomeRelationship", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationships" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsCreateOrUpdate.json index eaab4cf33e00..a01f09cae88d 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsCreateOrUpdate.json @@ -1,48 +1,50 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "assignmentName": "assignmentName8976", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "role": "Admin", - "principals": [{ - "principalId": "4c54c38ffa9b416ba5a6d6c8a20cbe7e", - "principalType": "User" - }, - { - "principalId": "93061d15a5054f2b9948ae25724cf9d5", - "principalType": "User" - }] - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", - "name": "azSdkTestHub/assignmentName8976", - "properties": { - "assignmentName": "assignmentName8976", - "principals": [{ - "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", - "principalType": "User" - }, - { - "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", - "principalType": "User" - }], - "provisioningState": "Provisioning", - "role": "Admin", - "tenantId": "azsdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "assignmentName": "assignmentName8976", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "role": "Admin", + "principals": [ + { + "principalId": "4c54c38ffa9b416ba5a6d6c8a20cbe7e", + "principalType": "User" + }, + { + "principalId": "93061d15a5054f2b9948ae25724cf9d5", + "principalType": "User" + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", + "name": "azSdkTestHub/assignmentName8976", + "properties": { + "assignmentName": "assignmentName8976", + "principals": [ + { + "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", + "principalType": "User" + }, + { + "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", + "principalType": "User" + } + ], + "provisioningState": "Provisioning", + "role": "Admin", + "tenantId": "azsdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsDelete.json index 3d09176089b2..b1c07bb61fa7 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsDelete.json @@ -1,20 +1,14 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "assignmentName": "assignmentName8976", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - }, - "202": { - - }, - "204": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "assignmentName": "assignmentName8976", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsGet.json index a31f046442b8..fe43bff10e94 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsGet.json @@ -1,32 +1,34 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "assignmentName": "assignmentName8976", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", - "name": "azSdkTestHub/assignmentName8976", - "properties": { - "assignmentName": "assignmentName8976", - "principals": [{ - "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", - "principalType": "User" - }, - { - "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", - "principalType": "User" - }], - "provisioningState": "Provisioning", - "role": "Admin", - "tenantId": "azsdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "assignmentName": "assignmentName8976", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", + "name": "azSdkTestHub/assignmentName8976", + "properties": { + "assignmentName": "assignmentName8976", + "principals": [ + { + "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", + "principalType": "User" + }, + { + "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", + "principalType": "User" + } + ], + "provisioningState": "Provisioning", + "role": "Admin", + "tenantId": "azsdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsListByHub.json index c126a24df81b..692b169a1337 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RoleAssignmentsListByHub.json @@ -1,33 +1,37 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", - "name": "azSdkTestHub/assignmentName8976", - "properties": { - "assignmentName": "assignmentName8976", - "principals": [{ - "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", - "principalType": "User" - }, - { - "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", - "principalType": "User" - }], - "provisioningState": "Provisioning", - "role": "Admin", - "tenantId": "azsdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", + "name": "azSdkTestHub/assignmentName8976", + "properties": { + "assignmentName": "assignmentName8976", + "principals": [ + { + "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", + "principalType": "User" + }, + { + "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", + "principalType": "User" + } + ], + "provisioningState": "Provisioning", + "role": "Admin", + "tenantId": "azsdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RolesListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RolesListByHub.json index 183fc0add0b4..d2a7e225ad6f 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RolesListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/RolesListByHub.json @@ -1,23 +1,25 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/Roles/Admin", - "name": "azSdkTestHub/Admin", - "properties": { - "description": "When a role assignment is created for the Admin Role on certain scopes (selected profiles, interactions, Kpis etc.), it authorizes the users/groups selected in the assignment for ALL operations at the tenant endpoint on the selected scopes.", - "roleName": "Admin" - }, - "type": "Microsoft.CustomerInsights/hubs/Roles" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/Roles/Admin", + "name": "azSdkTestHub/Admin", + "properties": { + "description": "When a role assignment is created for the Admin Role on certain scopes (selected profiles, interactions, Kpis etc.), it authorizes the users/groups selected in the assignment for ALL operations at the tenant endpoint on the selected scopes.", + "roleName": "Admin" + }, + "type": "Microsoft.CustomerInsights/hubs/Roles" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsCreateOrUpdate.json index 983262206e7e..e0f701096211 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsCreateOrUpdate.json @@ -1,36 +1,36 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "viewName": "testView", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "userId": "testUser", - "displayName": { - "en": "some name" - }, - "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", - "name": "sdkTestHub/testView", - "properties": { - "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", - "displayName": { - "en": "some name" - }, - "tenantId": "sdktesthub", - "userId": "*", - "viewName": "testView" - }, - "type": "Microsoft.CustomerInsights/hubs/views" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "viewName": "testView", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "userId": "testUser", + "displayName": { + "en": "some name" + }, + "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", + "name": "sdkTestHub/testView", + "properties": { + "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", + "displayName": { + "en": "some name" + }, + "tenantId": "sdktesthub", + "userId": "*", + "viewName": "testView" + }, + "type": "Microsoft.CustomerInsights/hubs/views" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsDelete.json index 6cbd4c997f21..1466e13530a0 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsDelete.json @@ -1,15 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "viewName": "testView", - "userId": "*", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "viewName": "testView", + "userId": "*", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsGet.json index 63a648684119..c824b00d4dd9 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsGet.json @@ -1,28 +1,28 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "viewName": "testView", - "userId": "*", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", - "name": "sdkTestHub/testView", - "properties": { - "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", - "displayName": { - "en": "some name" - }, - "tenantId": "sdktesthub", - "userId": "*", - "viewName": "testView" - }, - "type": "Microsoft.CustomerInsights/hubs/views" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "viewName": "testView", + "userId": "*", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", + "name": "sdkTestHub/testView", + "properties": { + "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", + "displayName": { + "en": "some name" + }, + "tenantId": "sdktesthub", + "userId": "*", + "viewName": "testView" + }, + "type": "Microsoft.CustomerInsights/hubs/views" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsListByHub.json index 949fd4c32c86..34613c9b814f 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/ViewsListByHub.json @@ -1,29 +1,31 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "userId": "*", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", - "name": "sdkTestHub/testView", - "properties": { - "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", - "displayName": { - "en": "some name" - }, - "tenantId": "sdktesthub", - "userId": "*", - "viewName": "testView" - }, - "type": "Microsoft.CustomerInsights/hubs/views" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "userId": "*", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", + "name": "sdkTestHub/testView", + "properties": { + "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", + "displayName": { + "en": "some name" + }, + "tenantId": "sdktesthub", + "userId": "*", + "viewName": "testView" + }, + "type": "Microsoft.CustomerInsights/hubs/views" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/WidgetTypesGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/WidgetTypesGet.json index 35507b6bd9ee..31edc695e598 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/WidgetTypesGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/WidgetTypesGet.json @@ -1,26 +1,26 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "widgetTypeName": "ActivityGauge", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/ActivityGauge", - "name": "sdkTestHub/ActivityGauge", - "properties": { - "widgetTypeName": "ActivityGauge", - "tenantId": "*", - "description": "", - "definition": "", - "imageUrl": "", - "widgetVersion": "2016-01-01" - }, - "type": "Microsoft.CustomerInsights/hubs/widgetTypes" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "widgetTypeName": "ActivityGauge", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/ActivityGauge", + "name": "sdkTestHub/ActivityGauge", + "properties": { + "widgetTypeName": "ActivityGauge", + "tenantId": "*", + "description": "", + "definition": "", + "imageUrl": "", + "widgetVersion": "2016-01-01" + }, + "type": "Microsoft.CustomerInsights/hubs/widgetTypes" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/WidgetTypesListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/WidgetTypesListByHub.json index 9796c694033c..0a778bb5d1f3 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/WidgetTypesListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/WidgetTypesListByHub.json @@ -1,40 +1,42 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/ActivityGauge", - "name": "sdkTestHub/ActivityGauge", - "properties": { - "widgetTypeName": "ActivityGauge", - "tenantId": "*", - "description": "", - "definition": "", - "imageUrl": "", - "widgetVersion": "2016-01-01" - }, - "type": "Microsoft.CustomerInsights/hubs/widgetTypes" - }, - { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/AsterChart", - "name": "sdkTestHub/AsterChart", - "properties": { - "widgetTypeName": "AsterChart", - "tenantId": "*", - "description": "", - "definition": "", - "imageUrl": "", - "widgetVersion": "2016-01-01" - }, - "type": "Microsoft.CustomerInsights/hubs/widgetTypes" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/ActivityGauge", + "name": "sdkTestHub/ActivityGauge", + "properties": { + "widgetTypeName": "ActivityGauge", + "tenantId": "*", + "description": "", + "definition": "", + "imageUrl": "", + "widgetVersion": "2016-01-01" + }, + "type": "Microsoft.CustomerInsights/hubs/widgetTypes" + }, + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/AsterChart", + "name": "sdkTestHub/AsterChart", + "properties": { + "widgetTypeName": "AsterChart", + "tenantId": "*", + "description": "", + "definition": "", + "imageUrl": "", + "widgetVersion": "2016-01-01" + }, + "type": "Microsoft.CustomerInsights/hubs/widgetTypes" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/customer-insights.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/customer-insights.json index 3c0353f8a491..3fd7162a8e9e 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/customer-insights.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/customer-insights.json @@ -44,7 +44,9 @@ ], "operationId": "Operations_List", "x-ms-examples": { - "DCIOperations_List": { "$ref": "./examples/DCIOperations_List.json" } + "DCIOperations_List": { + "$ref": "./examples/DCIOperations_List.json" + } }, "description": "Lists all of the available Customer Insights REST API operations.", "parameters": [ @@ -6517,4 +6519,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesCreateOrUpdate.json index 14d860ac082b..e30b0f50550a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesCreateOrUpdate.json @@ -2,14 +2,16 @@ "parameters": { "hubName": "azSdkTestHub", "resourceGroupName": "TestHubRG", - "authorizationPolicyName": "testPolicy4222", + "authorizationPolicyName": "testPolicy4222", "api-version": "2016-01-01", "subscriptionId": "subid", "parameters": { "properties": { - "permissions": ["Read", - "Write", - "Manage"] + "permissions": [ + "Read", + "Write", + "Manage" + ] } } }, @@ -20,12 +22,14 @@ "name": "testPolicy4222", "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies", "properties": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy4222", - "primaryKey": "cHJpbWFyeVRlc3RSZWFk", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy4222", + "primaryKey": "cHJpbWFyeVRlc3RSZWFk", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" } } }, @@ -35,14 +39,16 @@ "name": "testPolicy4222", "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies", "properties": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy4222", - "primaryKey": "cHJpbWFyeVRlc3RSZWFk", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy4222", + "primaryKey": "cHJpbWFyeVRlc3RSZWFk", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" } } } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesGet.json index 2cfbc82731a6..4e59c0c29c69 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesGet.json @@ -1,26 +1,28 @@ { - "parameters": { - "hubName": "azSdkTestHub", - "resourceGroupName": "TestHubRG", - "authorizationPolicyName": "testPolicy4222", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/testPolicy4222", - "name": "azSdkTestHub/testPolicy4222", - "properties": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy4222", - "primaryKey": "cHJpbWFyeVRlc3RSZWFk", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" - }, - "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "azSdkTestHub", + "resourceGroupName": "TestHubRG", + "authorizationPolicyName": "testPolicy4222", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/testPolicy4222", + "name": "azSdkTestHub/testPolicy4222", + "properties": { + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy4222", + "primaryKey": "cHJpbWFyeVRlc3RSZWFk", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + }, + "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesListByHub.json index c0af0c058ab2..7bb7493fa7e2 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesListByHub.json @@ -1,40 +1,46 @@ { - "parameters": { - "hubName": "azSdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/RootManageSharedAccessKey", - "name": "azSdkTestHub/RootManageSharedAccessKey", - "properties": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "RootManageSharedAccessKey", - "primaryKey": "KEvPnaBbDbEdSch27GhFx/D5Smu1bZC8bCmG33fHyi4=", - "secondaryKey": "wvOahlAtWZh9127MVr1yYX2pPgioqFWGEUtp1ADbfcQ=" - }, - "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" - }, - { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/testPolicy1125", - "name": "azSdkTestHub/testPolicy1125", - "properties": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy1125", - "primaryKey": "3Nk5Yce0eQXHY3S+KDuUPKFS5NkOWLqtzNYEadh1WeI=", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" - }, - "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "azSdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/RootManageSharedAccessKey", + "name": "azSdkTestHub/RootManageSharedAccessKey", + "properties": { + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "RootManageSharedAccessKey", + "primaryKey": "KEvPnaBbDbEdSch27GhFx/D5Smu1bZC8bCmG33fHyi4=", + "secondaryKey": "wvOahlAtWZh9127MVr1yYX2pPgioqFWGEUtp1ADbfcQ=" + }, + "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" + }, + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/AuthorizationPolicies/testPolicy1125", + "name": "azSdkTestHub/testPolicy1125", + "properties": { + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy1125", + "primaryKey": "3Nk5Yce0eQXHY3S+KDuUPKFS5NkOWLqtzNYEadh1WeI=", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + }, + "type": "Microsoft.CustomerInsights/hubs/AuthorizationPolicies" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesRegeneratePrimaryKey.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesRegeneratePrimaryKey.json index 4fd4b5c2c94e..547425739bef 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesRegeneratePrimaryKey.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesRegeneratePrimaryKey.json @@ -1,21 +1,23 @@ { - "parameters": { - "hubName": "azSdkTestHub", - "resourceGroupName": "TestHubRG", - "authorizationPolicyName": "testPolicy4222", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy4009", - "primaryKey": "UXZMQlt3kbcUc7Mx6WMVsNWj5rTmG6/cg9UrTY9YuoY=", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "azSdkTestHub", + "resourceGroupName": "TestHubRG", + "authorizationPolicyName": "testPolicy4222", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy4009", + "primaryKey": "UXZMQlt3kbcUc7Mx6WMVsNWj5rTmG6/cg9UrTY9YuoY=", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesRegenerateSecondaryKey.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesRegenerateSecondaryKey.json index 4fd4b5c2c94e..547425739bef 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesRegenerateSecondaryKey.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/AuthorizationPoliciesRegenerateSecondaryKey.json @@ -1,21 +1,23 @@ { - "parameters": { - "hubName": "azSdkTestHub", - "resourceGroupName": "TestHubRG", - "authorizationPolicyName": "testPolicy4222", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "permissions": ["Read", - "Write", - "Manage"], - "policyName": "testPolicy4009", - "primaryKey": "UXZMQlt3kbcUc7Mx6WMVsNWj5rTmG6/cg9UrTY9YuoY=", - "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "azSdkTestHub", + "resourceGroupName": "TestHubRG", + "authorizationPolicyName": "testPolicy4222", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "permissions": [ + "Read", + "Write", + "Manage" + ], + "policyName": "testPolicy4009", + "primaryKey": "UXZMQlt3kbcUc7Mx6WMVsNWj5rTmG6/cg9UrTY9YuoY=", + "secondaryKey": "c2Vjb25kYXJ5VGVzdFJlYWQ=" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsCreateOrUpdate.json index a618ef8e989b..ded66bd2a2a2 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsCreateOrUpdate.json @@ -1,159 +1,165 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector8858", - "mappingName": "testMapping12491", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "entityType": "Interaction", - "entityTypeName": "TestInteractionType2967", - "displayName": "testMapping12491", - "description": "Test mapping", - "mappingProperties": { - "folderPath": "http://sample.dne/file", - "fileFilter": "unknown", - "hasHeader": false, - "errorManagement": { - "errorManagementType": "StopImport", - "errorLimit": 10 - }, - "format": { - "formatType": "TextFormat", - "columnDelimiter": "|" - }, - "availability": { - "frequency": "Hour", - "interval": 5 - }, - "structure": [{ - "propertyName": "unknwon1", - "columnName": "unknown1", - "isEncrypted": false - }, - { - "propertyName": "unknwon2", - "columnName": "unknown2", - "isEncrypted": true - }], - "completeOperation": { - "completionOperationType": "DeleteFile", - "destinationFolder": "fakePath" - } - } - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", - "name": "sdkTestHub/testConnector8858/testMapping12491", - "properties": { - "connectorMappingName": "testMapping12491", - "connectorName": "testConnector8858", - "connectorType": "AzureBlob", - "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", - "description": "Test mapping", - "displayName": "testMapping12491", - "entityType": "Interaction", - "entityTypeName": "TestInteractionType2967", - "mappingProperties": { - "availability": { - "frequency": "Hour", - "interval": 5 - }, - "completeOperation": { - "completionOperationType": "DeleteFile", - "destinationFolder": "fakePath" - }, - "errorManagement": { - "errorLimit": 10, - "errorManagementType": "StopImport" - }, - "fileFilter": "unknown", - "folderPath": "http://sample.dne/file", - "format": { - "columnDelimiter": "|", - "acceptLanguage": "", - "quoteCharacter": "\\\"", - "quoteEscapeCharacter": "\\\"", - "formatType": "TextFormat", - "arraySeparator": ";" - }, - "hasHeader": false, - "structure": [{ - "columnName": "unknown1", - "isEncrypted": false, - "propertyName": "unknwon1" - }, - { - "columnName": "unknown2", - "isEncrypted": true, - "propertyName": "unknwon2" - }] - }, - "state": "Created", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" - } - }, - "201": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", - "name": "sdkTestHub/testConnector8858/testMapping12491", - "properties": { - "connectorMappingName": "testMapping12491", - "connectorName": "testConnector8858", - "connectorType": "AzureBlob", - "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", - "description": "Test mapping", - "displayName": "testMapping12491", - "entityType": "Interaction", - "entityTypeName": "TestInteractionType2967", - "mappingProperties": { - "availability": { - "frequency": "Hour", - "interval": 5 - }, - "completeOperation": { - "completionOperationType": "DeleteFile", - "destinationFolder": "fakePath" - }, - "errorManagement": { - "errorLimit": 10, - "errorManagementType": "StopImport" - }, - "fileFilter": "unknown", - "folderPath": "http://sample.dne/file", - "format": { - "columnDelimiter": "|", - "acceptLanguage": "", - "quoteCharacter": "\\\"", - "quoteEscapeCharacter": "\\\"", - "formatType": "TextFormat", - "arraySeparator": ";" - }, - "hasHeader": false, - "structure": [{ - "columnName": "unknown1", - "isEncrypted": false, - "propertyName": "unknwon1" - }, - { - "columnName": "unknown2", - "isEncrypted": true, - "propertyName": "unknwon2" - }] - }, - "state": "Created", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector8858", + "mappingName": "testMapping12491", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "entityType": "Interaction", + "entityTypeName": "TestInteractionType2967", + "displayName": "testMapping12491", + "description": "Test mapping", + "mappingProperties": { + "folderPath": "http://sample.dne/file", + "fileFilter": "unknown", + "hasHeader": false, + "errorManagement": { + "errorManagementType": "StopImport", + "errorLimit": 10 + }, + "format": { + "formatType": "TextFormat", + "columnDelimiter": "|" + }, + "availability": { + "frequency": "Hour", + "interval": 5 + }, + "structure": [ + { + "propertyName": "unknwon1", + "columnName": "unknown1", + "isEncrypted": false + }, + { + "propertyName": "unknwon2", + "columnName": "unknown2", + "isEncrypted": true + } + ], + "completeOperation": { + "completionOperationType": "DeleteFile", + "destinationFolder": "fakePath" + } + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", + "name": "sdkTestHub/testConnector8858/testMapping12491", + "properties": { + "connectorMappingName": "testMapping12491", + "connectorName": "testConnector8858", + "connectorType": "AzureBlob", + "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", + "description": "Test mapping", + "displayName": "testMapping12491", + "entityType": "Interaction", + "entityTypeName": "TestInteractionType2967", + "mappingProperties": { + "availability": { + "frequency": "Hour", + "interval": 5 + }, + "completeOperation": { + "completionOperationType": "DeleteFile", + "destinationFolder": "fakePath" + }, + "errorManagement": { + "errorLimit": 10, + "errorManagementType": "StopImport" + }, + "fileFilter": "unknown", + "folderPath": "http://sample.dne/file", + "format": { + "columnDelimiter": "|", + "acceptLanguage": "", + "quoteCharacter": "\\\"", + "quoteEscapeCharacter": "\\\"", + "formatType": "TextFormat", + "arraySeparator": ";" + }, + "hasHeader": false, + "structure": [ + { + "columnName": "unknown1", + "isEncrypted": false, + "propertyName": "unknwon1" + }, + { + "columnName": "unknown2", + "isEncrypted": true, + "propertyName": "unknwon2" + } + ] + }, + "state": "Created", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" + } + }, + "201": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", + "name": "sdkTestHub/testConnector8858/testMapping12491", + "properties": { + "connectorMappingName": "testMapping12491", + "connectorName": "testConnector8858", + "connectorType": "AzureBlob", + "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", + "description": "Test mapping", + "displayName": "testMapping12491", + "entityType": "Interaction", + "entityTypeName": "TestInteractionType2967", + "mappingProperties": { + "availability": { + "frequency": "Hour", + "interval": 5 + }, + "completeOperation": { + "completionOperationType": "DeleteFile", + "destinationFolder": "fakePath" + }, + "errorManagement": { + "errorLimit": 10, + "errorManagementType": "StopImport" + }, + "fileFilter": "unknown", + "folderPath": "http://sample.dne/file", + "format": { + "columnDelimiter": "|", + "acceptLanguage": "", + "quoteCharacter": "\\\"", + "quoteEscapeCharacter": "\\\"", + "formatType": "TextFormat", + "arraySeparator": ";" + }, + "hasHeader": false, + "structure": [ + { + "columnName": "unknown1", + "isEncrypted": false, + "propertyName": "unknwon1" + }, + { + "columnName": "unknown2", + "isEncrypted": true, + "propertyName": "unknwon2" + } + ] + }, + "state": "Created", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsDelete.json index 0d7f1846761c..924976644b8e 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsDelete.json @@ -1,14 +1,14 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector8858", - "mappingName": "testMapping12491", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector8858", + "mappingName": "testMapping12491", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsGet.json index 3bda377203e7..cf626302e2b8 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsGet.json @@ -1,66 +1,68 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector8858", - "mappingName": "testMapping12491", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", - "name": "sdkTestHub/testConnector8858/testMapping12491", - "properties": { - "connectorMappingName": "testMapping12491", - "connectorName": "testConnector8858", - "connectorType": "AzureBlob", - "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", - "description": "Test mapping", - "displayName": "testMapping12491", - "entityType": "Interaction", - "entityTypeName": "TestInteractionType2967", - "mappingProperties": { - "availability": { - "frequency": "Hour", - "interval": 5 - }, - "completeOperation": { - "completionOperationType": "DeleteFile", - "destinationFolder": "fakePath" - }, - "errorManagement": { - "errorLimit": 10, - "errorManagementType": "StopImport" - }, - "fileFilter": "unknown", - "folderPath": "http://sample.dne/file", - "format": { - "columnDelimiter": "|", - "acceptLanguage": "", - "quoteCharacter": "\\\"", - "quoteEscapeCharacter": "\\\"", - "formatType": "TextFormat", - "arraySeparator": ";" - }, - "hasHeader": false, - "structure": [{ - "columnName": "unknown1", - "isEncrypted": false, - "propertyName": "unknwon1" - }, - { - "columnName": "unknown2", - "isEncrypted": true, - "propertyName": "unknwon2" - }] - }, - "state": "Created", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector8858", + "mappingName": "testMapping12491", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", + "name": "sdkTestHub/testConnector8858/testMapping12491", + "properties": { + "connectorMappingName": "testMapping12491", + "connectorName": "testConnector8858", + "connectorType": "AzureBlob", + "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", + "description": "Test mapping", + "displayName": "testMapping12491", + "entityType": "Interaction", + "entityTypeName": "TestInteractionType2967", + "mappingProperties": { + "availability": { + "frequency": "Hour", + "interval": 5 + }, + "completeOperation": { + "completionOperationType": "DeleteFile", + "destinationFolder": "fakePath" + }, + "errorManagement": { + "errorLimit": 10, + "errorManagementType": "StopImport" + }, + "fileFilter": "unknown", + "folderPath": "http://sample.dne/file", + "format": { + "columnDelimiter": "|", + "acceptLanguage": "", + "quoteCharacter": "\\\"", + "quoteEscapeCharacter": "\\\"", + "formatType": "TextFormat", + "arraySeparator": ";" + }, + "hasHeader": false, + "structure": [ + { + "columnName": "unknown1", + "isEncrypted": false, + "propertyName": "unknwon1" + }, + { + "columnName": "unknown2", + "isEncrypted": true, + "propertyName": "unknwon2" + } + ] + }, + "state": "Created", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsListByConnector.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsListByConnector.json index 5259745619e4..e3c7c8a6f67f 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsListByConnector.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorMappingsListByConnector.json @@ -1,67 +1,71 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector8858", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", - "name": "sdkTestHub/testConnector8858/testMapping12491", - "properties": { - "connectorMappingName": "testMapping12491", - "connectorName": "testConnector8858", - "connectorType": "AzureBlob", - "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", - "description": "Test mapping", - "displayName": "testMapping12491", - "entityType": "Interaction", - "entityTypeName": "TestInteractionType2967", - "mappingProperties": { - "availability": { - "frequency": "Hour", - "interval": 5 - }, - "completeOperation": { - "completionOperationType": "DeleteFile", - "destinationFolder": "fakePath" - }, - "errorManagement": { - "errorLimit": 10, - "errorManagementType": "StopImport" - }, - "fileFilter": "unknown", - "folderPath": "http://sample.dne/file", - "format": { - "columnDelimiter": "|", - "acceptLanguage": "", - "quoteCharacter": "\\\"", - "quoteEscapeCharacter": "\\\"", - "formatType": "TextFormat", - "arraySeparator": ";" - }, - "hasHeader": false, - "structure": [{ - "columnName": "unknown1", - "isEncrypted": false, - "propertyName": "unknwon1" - }, - { - "columnName": "unknown2", - "isEncrypted": true, - "propertyName": "unknwon2" - }] - }, - "state": "Created", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector8858", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector8858/mappings/testMapping12491", + "name": "sdkTestHub/testConnector8858/testMapping12491", + "properties": { + "connectorMappingName": "testMapping12491", + "connectorName": "testConnector8858", + "connectorType": "AzureBlob", + "dataFormatId": "4619d4e7e8a64c1e9bc34907f9f46505", + "description": "Test mapping", + "displayName": "testMapping12491", + "entityType": "Interaction", + "entityTypeName": "TestInteractionType2967", + "mappingProperties": { + "availability": { + "frequency": "Hour", + "interval": 5 + }, + "completeOperation": { + "completionOperationType": "DeleteFile", + "destinationFolder": "fakePath" + }, + "errorManagement": { + "errorLimit": 10, + "errorManagementType": "StopImport" + }, + "fileFilter": "unknown", + "folderPath": "http://sample.dne/file", + "format": { + "columnDelimiter": "|", + "acceptLanguage": "", + "quoteCharacter": "\\\"", + "quoteEscapeCharacter": "\\\"", + "formatType": "TextFormat", + "arraySeparator": ";" + }, + "hasHeader": false, + "structure": [ + { + "columnName": "unknown1", + "isEncrypted": false, + "propertyName": "unknwon1" + }, + { + "columnName": "unknown2", + "isEncrypted": true, + "propertyName": "unknwon2" + } + ] + }, + "state": "Created", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/connectors/mappings" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsCreateOrUpdate.json index 20c3288aa55f..93af22e94dac 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsCreateOrUpdate.json @@ -1,49 +1,47 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "connectorType": "AzureBlob", - "displayName": "testConnector", - "description": "Test connector", - "connectorProperties": { - "connectionKeyVaultUrl": { - "organizationId": "XXX", - "organizationUrl": "https://XXX.crmlivetie.com/" - } - } - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", - "name": "sdkTestHub/testConnector", - "properties": { - "connectorId": 0, - "connectorName": "testConnector", - "connectorType": "AzureBlob", - "description": "Test connector", - "displayName": "testConnector", - "state": "Creating", - "tenantId": "sdktesthub", - "connectorProperties": { - "connectionKeyVaultUrl": { - "organizationId": "XXX", - "organizationUrl": "https://XXX.crmlivetie.com/" - } - } - }, - "type": "Microsoft.CustomerInsights/hubs/connectors" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "connectorType": "AzureBlob", + "displayName": "testConnector", + "description": "Test connector", + "connectorProperties": { + "connectionKeyVaultUrl": { + "organizationId": "XXX", + "organizationUrl": "https://XXX.crmlivetie.com/" + } + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", + "name": "sdkTestHub/testConnector", + "properties": { + "connectorId": 0, + "connectorName": "testConnector", + "connectorType": "AzureBlob", + "description": "Test connector", + "displayName": "testConnector", + "state": "Creating", + "tenantId": "sdktesthub", + "connectorProperties": { + "connectionKeyVaultUrl": { + "organizationId": "XXX", + "organizationUrl": "https://XXX.crmlivetie.com/" + } + } + }, + "type": "Microsoft.CustomerInsights/hubs/connectors" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsDelete.json index 223bbe751413..c9d4054fe03a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsDelete.json @@ -1,20 +1,14 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - }, - "202": { - - }, - "204": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsGet.json index 8eb04134ad71..cd50e4833616 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsGet.json @@ -1,33 +1,33 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "connectorName": "testConnector", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", - "name": "sdkTestHub/testConnector", - "properties": { - "connectorId": 0, - "connectorName": "testConnector", - "connectorType": "AzureBlob", - "description": "Test connector", - "displayName": "testConnector", - "state": "Creating", - "tenantId": "sdktesthub", - "connectorProperties": { - "connectionKeyVaultUrl": { - "organizationId": "XXX", - "organizationUrl": "https://XXX.crmlivetie.com/" - } - } - }, - "type": "Microsoft.CustomerInsights/hubs/connectors" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "connectorName": "testConnector", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", + "name": "sdkTestHub/testConnector", + "properties": { + "connectorId": 0, + "connectorName": "testConnector", + "connectorType": "AzureBlob", + "description": "Test connector", + "displayName": "testConnector", + "state": "Creating", + "tenantId": "sdktesthub", + "connectorProperties": { + "connectionKeyVaultUrl": { + "organizationId": "XXX", + "organizationUrl": "https://XXX.crmlivetie.com/" + } + } + }, + "type": "Microsoft.CustomerInsights/hubs/connectors" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsListByHub.json index 13f587390507..5dbcbb24dabc 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ConnectorsListByHub.json @@ -1,34 +1,36 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", - "name": "sdkTestHub/testConnector", - "properties": { - "connectorId": 0, - "connectorName": "testConnector", - "connectorType": "AzureBlob", - "description": "Test connector", - "displayName": "testConnector", - "state": "Creating", - "tenantId": "sdktesthub", - "connectorProperties": { - "connectionKeyVaultUrl": { - "organizationId": "XXX", - "organizationUrl": "https://XXX.crmlivetie.com/" - } - } - }, - "type": "Microsoft.CustomerInsights/hubs/connectors" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/connectors/testConnector", + "name": "sdkTestHub/testConnector", + "properties": { + "connectorId": 0, + "connectorName": "testConnector", + "connectorType": "AzureBlob", + "description": "Test connector", + "displayName": "testConnector", + "state": "Creating", + "tenantId": "sdktesthub", + "connectorProperties": { + "connectionKeyVaultUrl": { + "organizationId": "XXX", + "organizationUrl": "https://XXX.crmlivetie.com/" + } + } + }, + "type": "Microsoft.CustomerInsights/hubs/connectors" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/DCIOperations_List.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/DCIOperations_List.json index db43dc6f6242..5b6b170d8388 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/DCIOperations_List.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/DCIOperations_List.json @@ -289,4 +289,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsCreateOrUpdate.json index af90ced06152..d26a46e6c2dc 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsCreateOrUpdate.json @@ -1,64 +1,60 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "location": "West US", - "properties": { - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - } - } - } - }, - "responses": { - "201": { - "body": { - "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", - "location": "West US", - "name": "testHub2839", - "properties": { - "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", - "provisioningState": "Creating", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - } - }, - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", - "location": "East US", - "name": "testHub2839", - "properties": { - "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", - "provisioningState": "Creating", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "location": "West US", + "properties": { + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + } + } + } + }, + "responses": { + "201": { + "body": { + "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", + "location": "West US", + "name": "testHub2839", + "properties": { + "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", + "provisioningState": "Creating", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + }, + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", + "location": "East US", + "name": "testHub2839", + "properties": { + "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", + "provisioningState": "Creating", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsDelete.json index 6afd4d1b4ddc..447e31547e47 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsDelete.json @@ -1,13 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsGet.json index ae0885c10cfa..75f252eaef7a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsGet.json @@ -1,32 +1,30 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", - "location": "East US", - "name": "testHub2839", - "properties": { - "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", - "provisioningState": "Creating", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", + "location": "East US", + "name": "testHub2839", + "properties": { + "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", + "provisioningState": "Creating", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsList.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsList.json index d86c96e024f6..4b5b14c95d5a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsList.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsList.json @@ -1,52 +1,50 @@ { - "parameters": { - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub", - "location": "East US", - "name": "azSdkTestHub", - "properties": { - "apiEndpoint": "https://azSdkTestHub.dfd.projectuic-int.net", - "provisioningState": "Succeeded", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 1 - }, - "tenantFeatures": 0, - "webEndpoint": "https://azSdkTestHub.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - }, - { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub1058", - "location": "East US", - "name": "testHub1058", - "properties": { - "apiEndpoint": "https://testHub1058.dfd.projectuic-int.net", - "provisioningState": "Succeeded", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub1058.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub", + "location": "East US", + "name": "azSdkTestHub", + "properties": { + "apiEndpoint": "https://azSdkTestHub.dfd.projectuic-int.net", + "provisioningState": "Succeeded", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 1 + }, + "tenantFeatures": 0, + "webEndpoint": "https://azSdkTestHub.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + }, + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub1058", + "location": "East US", + "name": "testHub1058", + "properties": { + "apiEndpoint": "https://testHub1058.dfd.projectuic-int.net", + "provisioningState": "Succeeded", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub1058.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsListByResourceGroup.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsListByResourceGroup.json index ea16b5f3e3c9..4d7946a2a372 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsListByResourceGroup.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsListByResourceGroup.json @@ -1,53 +1,51 @@ { - "parameters": { - "api-version": "2016-01-01", - "subscriptionId": "subid", - "resourceGroupName": "TestHubRG" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub", - "location": "East US", - "name": "azSdkTestHub", - "properties": { - "apiEndpoint": "https://azSdkTestHub.dfd.projectuic-int.net", - "provisioningState": "Succeeded", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 1 - }, - "tenantFeatures": 0, - "webEndpoint": "https://azSdkTestHub.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - }, - { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub1058", - "location": "East US", - "name": "testHub1058", - "properties": { - "apiEndpoint": "https://testHub1058.dfd.projectuic-int.net", - "provisioningState": "Succeeded", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub1058.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2016-01-01", + "subscriptionId": "subid", + "resourceGroupName": "TestHubRG" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub", + "location": "East US", + "name": "azSdkTestHub", + "properties": { + "apiEndpoint": "https://azSdkTestHub.dfd.projectuic-int.net", + "provisioningState": "Succeeded", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 1 + }, + "tenantFeatures": 0, + "webEndpoint": "https://azSdkTestHub.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + }, + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub1058", + "location": "East US", + "name": "testHub1058", + "properties": { + "apiEndpoint": "https://testHub1058.dfd.projectuic-int.net", + "provisioningState": "Succeeded", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub1058.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsUpdate.json index 3adb220f2dc6..068afee45e73 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/HubsUpdate.json @@ -1,42 +1,40 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "location": "West US", - "properties": { - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - } - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", - "location": "East US", - "name": "testHub2839", - "properties": { - "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", - "provisioningState": "Created", - "hubBillingInfo": { - "skuName": "B0", - "minUnits": 1, - "maxUnits": 5 - }, - "tenantFeatures": 0, - "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" - }, - "tags": { - - }, - "type": "Microsoft.CustomerInsights/hubs" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "location": "West US", + "properties": { + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839", + "location": "East US", + "name": "testHub2839", + "properties": { + "apiEndpoint": "https://testHub2839.dfd.projectuic-int.net", + "provisioningState": "Created", + "hubBillingInfo": { + "skuName": "B0", + "minUnits": 1, + "maxUnits": 5 + }, + "tenantFeatures": 0, + "webEndpoint": "https://testHub2839.dfdapps.projectuic-int.net" + }, + "tags": {}, + "type": "Microsoft.CustomerInsights/hubs" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ImagesGetUploadUrlForData.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ImagesGetUploadUrlForData.json index 454860d5e639..3a252dda2637 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ImagesGetUploadUrlForData.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ImagesGetUploadUrlForData.json @@ -1,22 +1,22 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "entityType": "Profile", - "entityTypeName": "Contact", - "relativePath": "images/profile1.png" - } - }, - "responses": { - "200": { - "body": { - "contentUrl": "https://ucidfdbl2001img.blob.core.windows.net/images/3ac3a97a5e3246ffb41812f60fd9f83c/EntityTypeImage/Profile/Contact/images/profile1.png?sv=2015-04-05&sr=b&sig=yIt7DGVRTyNl15%2BPc0kO%2FDITJ2cExnBPVvvh6p86qdc%3D&se=2017-01-06T01%3A56%3A43Z&sp=cw", - "relativePath": "images/profile1.png", - "imageExists": false - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "entityType": "Profile", + "entityTypeName": "Contact", + "relativePath": "images/profile1.png" + } + }, + "responses": { + "200": { + "body": { + "contentUrl": "https://ucidfdbl2001img.blob.core.windows.net/images/3ac3a97a5e3246ffb41812f60fd9f83c/EntityTypeImage/Profile/Contact/images/profile1.png?sv=2015-04-05&sr=b&sig=yIt7DGVRTyNl15%2BPc0kO%2FDITJ2cExnBPVvvh6p86qdc%3D&se=2017-01-06T01%3A56%3A43Z&sp=cw", + "relativePath": "images/profile1.png", + "imageExists": false + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ImagesGetUploadUrlForEntityType.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ImagesGetUploadUrlForEntityType.json index 454860d5e639..3a252dda2637 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ImagesGetUploadUrlForEntityType.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ImagesGetUploadUrlForEntityType.json @@ -1,22 +1,22 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "entityType": "Profile", - "entityTypeName": "Contact", - "relativePath": "images/profile1.png" - } - }, - "responses": { - "200": { - "body": { - "contentUrl": "https://ucidfdbl2001img.blob.core.windows.net/images/3ac3a97a5e3246ffb41812f60fd9f83c/EntityTypeImage/Profile/Contact/images/profile1.png?sv=2015-04-05&sr=b&sig=yIt7DGVRTyNl15%2BPc0kO%2FDITJ2cExnBPVvvh6p86qdc%3D&se=2017-01-06T01%3A56%3A43Z&sp=cw", - "relativePath": "images/profile1.png", - "imageExists": false - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "entityType": "Profile", + "entityTypeName": "Contact", + "relativePath": "images/profile1.png" + } + }, + "responses": { + "200": { + "body": { + "contentUrl": "https://ucidfdbl2001img.blob.core.windows.net/images/3ac3a97a5e3246ffb41812f60fd9f83c/EntityTypeImage/Profile/Contact/images/profile1.png?sv=2015-04-05&sr=b&sig=yIt7DGVRTyNl15%2BPc0kO%2FDITJ2cExnBPVvvh6p86qdc%3D&se=2017-01-06T01%3A56%3A43Z&sp=cw", + "relativePath": "images/profile1.png", + "imageExists": false + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsCreateOrUpdate.json index aa4b51c848bb..62b75de081ee 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsCreateOrUpdate.json @@ -1,78 +1,84 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "interactionName": "TestProfileType396", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "idPropertyNames": ["TestInteractionType6358"], - "primaryParticipantProfilePropertyName": "profile1", - "apiEntitySetName": "TestInteractionType6358", - "fields": [{ - "fieldName": "TestInteractionType6358", - "fieldType": "Edm.String", - "isArray": false, - "isRequired": true - }, - { - "fieldName": "profile1", - "fieldType": "Edm.String" - }], - "smallImage": "\\\\Images\\\\smallImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "largeImage": "\\\\Images\\\\LargeImage" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", - "name": "azSdkTestHub/TestInteractionType6358", - "properties": { - "idPropertyNames": ["TestInteractionType6358"], - "primaryParticipantProfilePropertyName": "profile1", - "apiEntitySetName": "TestInteractionType6358", - "entityType": "Interaction", - "fields": [{ - "fieldName": "TestInteractionType6358", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "profile1", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "tenantId": "azsdktesthub", - "typeName": "TestInteractionType6358", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage" - }, - "type": "Microsoft.CustomerInsights/hubs/interactions" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "interactionName": "TestProfileType396", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "idPropertyNames": [ + "TestInteractionType6358" + ], + "primaryParticipantProfilePropertyName": "profile1", + "apiEntitySetName": "TestInteractionType6358", + "fields": [ + { + "fieldName": "TestInteractionType6358", + "fieldType": "Edm.String", + "isArray": false, + "isRequired": true + }, + { + "fieldName": "profile1", + "fieldType": "Edm.String" + } + ], + "smallImage": "\\\\Images\\\\smallImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "largeImage": "\\\\Images\\\\LargeImage" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", + "name": "azSdkTestHub/TestInteractionType6358", + "properties": { + "idPropertyNames": [ + "TestInteractionType6358" + ], + "primaryParticipantProfilePropertyName": "profile1", + "apiEntitySetName": "TestInteractionType6358", + "entityType": "Interaction", + "fields": [ + { + "fieldName": "TestInteractionType6358", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "profile1", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "tenantId": "azsdktesthub", + "typeName": "TestInteractionType6358", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage" + }, + "type": "Microsoft.CustomerInsights/hubs/interactions" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsGet.json index 0aac643643d4..b77a19b39052 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsGet.json @@ -1,88 +1,92 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "interactionName": "TestInteractionType6358", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", - "name": "azSdkTestHub/TestInteractionType6358", - "properties": { - "idPropertyNames": ["TestInteractionType6358"], - "primaryParticipantProfilePropertyName": "profile1", - "apiEntitySetName": "TestInteractionType6358", - "entityType": "Interaction", - "fields": [{ - "fieldName": "TestInteractionType6358", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1", - "dataSourcePrecedenceRules": [] - }, - { - "fieldName": "profile1", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1", - "dataSourcePrecedenceRules": [ - { - "dataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "precedence": 50 - } - ] - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "tenantId": "azsdktesthub", - "typeName": "TestInteractionType6358", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage", - "defaultDataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "dataSourcePrecedenceRules": [ - { - "dataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "precedence": 50 - } - ], - "isActivity": true - }, - "type": "Microsoft.CustomerInsights/hubs/interactions" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "interactionName": "TestInteractionType6358", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", + "name": "azSdkTestHub/TestInteractionType6358", + "properties": { + "idPropertyNames": [ + "TestInteractionType6358" + ], + "primaryParticipantProfilePropertyName": "profile1", + "apiEntitySetName": "TestInteractionType6358", + "entityType": "Interaction", + "fields": [ + { + "fieldName": "TestInteractionType6358", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1", + "dataSourcePrecedenceRules": [] + }, + { + "fieldName": "profile1", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1", + "dataSourcePrecedenceRules": [ + { + "dataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "precedence": 50 + } + ] + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "tenantId": "azsdktesthub", + "typeName": "TestInteractionType6358", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage", + "defaultDataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "dataSourcePrecedenceRules": [ + { + "dataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "precedence": 50 + } + ], + "isActivity": true + }, + "type": "Microsoft.CustomerInsights/hubs/interactions" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsListByHub.json index 2d16aa54cef4..f532a73c7d85 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsListByHub.json @@ -1,89 +1,95 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", - "name": "azSdkTestHub/TestInteractionType6358", - "properties": { - "idPropertyNames": ["TestInteractionType6358"], - "primaryParticipantProfilePropertyName": "profile1", - "apiEntitySetName": "TestInteractionType6358", - "entityType": "Interaction", - "fields": [{ - "fieldName": "TestInteractionType6358", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1", - "dataSourcePrecedenceRules": [] - }, - { - "fieldName": "profile1", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1", - "dataSourcePrecedenceRules": [ - { - "dataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "precedence": 50 - } - ] - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "tenantId": "azsdktesthub", - "typeName": "TestInteractionType6358", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage", - "defaultDataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "dataSourcePrecedenceRules": [ - { - "dataSource": { - "dataSourceReferenceId": "70", - "dataSourceType": "Connector", - "name": "crm2", - "status": "Active", - "id": 1 - }, - "precedence": 50 - } - ], - "isActivity": true - }, - "type": "Microsoft.CustomerInsights/hubs/interactions" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/interactions/TestInteractionType6358", + "name": "azSdkTestHub/TestInteractionType6358", + "properties": { + "idPropertyNames": [ + "TestInteractionType6358" + ], + "primaryParticipantProfilePropertyName": "profile1", + "apiEntitySetName": "TestInteractionType6358", + "entityType": "Interaction", + "fields": [ + { + "fieldName": "TestInteractionType6358", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1", + "dataSourcePrecedenceRules": [] + }, + { + "fieldName": "profile1", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1", + "dataSourcePrecedenceRules": [ + { + "dataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "precedence": 50 + } + ] + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "tenantId": "azsdktesthub", + "typeName": "TestInteractionType6358", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage", + "defaultDataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "dataSourcePrecedenceRules": [ + { + "dataSource": { + "dataSourceReferenceId": "70", + "dataSourceType": "Connector", + "name": "crm2", + "status": "Active", + "id": 1 + }, + "precedence": 50 + } + ], + "isActivity": true + }, + "type": "Microsoft.CustomerInsights/hubs/interactions" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsSuggestRelationshipLinks.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsSuggestRelationshipLinks.json index 504cb8b9d223..8fa2f3ab4138 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsSuggestRelationshipLinks.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/InteractionsSuggestRelationshipLinks.json @@ -1,40 +1,50 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "interactionName": "Deposit", - "api-version": "2017-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "interactionName": "Deposit", - "suggestedRelationships": [{ - "profileName": "Branch", - "profilePropertyReferences": [{ - "interactionPropertyName": "BranchId", - "profilePropertyName": "BranchId" - }], - "relatedProfileName": "Contact", - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "ContactId", - "profilePropertyName": "ContactId" - }] - }, - { - "profileName": "Contact", - "profilePropertyReferences": [{ - "interactionPropertyName": "ContactId", - "profilePropertyName": "ContactId" - }], - "relatedProfileName": "Branch", - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "BranchId", - "profilePropertyName": "BranchId" - }] - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "interactionName": "Deposit", + "api-version": "2017-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "interactionName": "Deposit", + "suggestedRelationships": [ + { + "profileName": "Branch", + "profilePropertyReferences": [ + { + "interactionPropertyName": "BranchId", + "profilePropertyName": "BranchId" + } + ], + "relatedProfileName": "Contact", + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "ContactId", + "profilePropertyName": "ContactId" + } + ] + }, + { + "profileName": "Contact", + "profilePropertyReferences": [ + { + "interactionPropertyName": "ContactId", + "profilePropertyName": "ContactId" + } + ], + "relatedProfileName": "Branch", + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "BranchId", + "profilePropertyName": "BranchId" + } + ] + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiCreateOrUpdate.json index bc06a79c3e8a..25f7bf4e8e5d 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiCreateOrUpdate.json @@ -1,74 +1,80 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "kpiName": "kpiTest45453647", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "entityType": "Profile", - "entityTypeName": "testProfile2327128", - "displayName": { - "en-us": "Kpi DisplayName" - }, - "description": { - "en-us": "Kpi Description" - }, - "calculationWindow": "Day", - "function": "Sum", - "expression": "SavingAccountBalance", - "unit": "unit", - "groupBy": ["SavingAccountBalance"], - "thresHolds": { - "lowerLimit": 5.0, - "upperLimit": 50.0, - "increasingKpi": true - }, - "aliases": [{ - "aliasName": "alias", - "expression": "Id+4" - }] - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", - "name": "sdkTestHub/kpiTest45453647", - "properties": { - "aliases": [{ - "aliasName": "alias", - "expression": "Id+4" - }], - "calculationWindow": "Day", - "description": { - "en-us": "Kpi Description" - }, - "displayName": { - "en-us": "Kpi DisplayName" - }, - "entityType": "Profile", - "entityTypeName": "testProfile2327128", - "expression": "SavingAccountBalance", - "function": "Sum", - "groupBy": ["SavingAccountBalance"], - "kpiName": "kpiTest45453647", - "provisioningState": "Provisioning", - "tenantId": "sdktesthub", - "thresHolds": { - "increasingKpi": true, - "lowerLimit": 5.0, - "upperLimit": 50.0 - }, - "unit": "unit" - }, - "type": "Microsoft.CustomerInsights/hubs/kpi" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "kpiName": "kpiTest45453647", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "entityType": "Profile", + "entityTypeName": "testProfile2327128", + "displayName": { + "en-us": "Kpi DisplayName" + }, + "description": { + "en-us": "Kpi Description" + }, + "calculationWindow": "Day", + "function": "Sum", + "expression": "SavingAccountBalance", + "unit": "unit", + "groupBy": [ + "SavingAccountBalance" + ], + "thresHolds": { + "lowerLimit": 5.0, + "upperLimit": 50.0, + "increasingKpi": true + }, + "aliases": [ + { + "aliasName": "alias", + "expression": "Id+4" + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", + "name": "sdkTestHub/kpiTest45453647", + "properties": { + "aliases": [ + { + "aliasName": "alias", + "expression": "Id+4" + } + ], + "calculationWindow": "Day", + "description": { + "en-us": "Kpi Description" + }, + "displayName": { + "en-us": "Kpi DisplayName" + }, + "entityType": "Profile", + "entityTypeName": "testProfile2327128", + "expression": "SavingAccountBalance", + "function": "Sum", + "groupBy": [ + "SavingAccountBalance" + ], + "kpiName": "kpiTest45453647", + "provisioningState": "Provisioning", + "tenantId": "sdktesthub", + "thresHolds": { + "increasingKpi": true, + "lowerLimit": 5.0, + "upperLimit": 50.0 + }, + "unit": "unit" + }, + "type": "Microsoft.CustomerInsights/hubs/kpi" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiDelete.json index 493a641b7260..79bcb779b69b 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiDelete.json @@ -1,13 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "kpiName": "kpiTest45453647", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": {}, - "202": {} - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "kpiName": "kpiTest45453647", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiGet.json index 262b6a9ebfa0..150e0c4ecde8 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiGet.json @@ -1,45 +1,49 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "kpiName": "kpiTest45453647", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", - "name": "sdkTestHub/kpiTest45453647", - "properties": { - "aliases": [{ - "aliasName": "alias", - "expression": "Id+4" - }], - "calculationWindow": "Day", - "description": { - "en-us": "Kpi Description" - }, - "displayName": { - "en-us": "Kpi DisplayName" - }, - "entityType": "Profile", - "entityTypeName": "testProfile2327128", - "expression": "SavingAccountBalance", - "function": "Sum", - "groupBy": ["SavingAccountBalance"], - "kpiName": "kpiTest45453647", - "provisioningState": "Provisioning", - "tenantId": "sdktesthub", - "thresHolds": { - "increasingKpi": true, - "lowerLimit": 5.0, - "upperLimit": 50.0 - }, - "unit": "unit" - }, - "type": "Microsoft.CustomerInsights/hubs/kpi" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "kpiName": "kpiTest45453647", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", + "name": "sdkTestHub/kpiTest45453647", + "properties": { + "aliases": [ + { + "aliasName": "alias", + "expression": "Id+4" + } + ], + "calculationWindow": "Day", + "description": { + "en-us": "Kpi Description" + }, + "displayName": { + "en-us": "Kpi DisplayName" + }, + "entityType": "Profile", + "entityTypeName": "testProfile2327128", + "expression": "SavingAccountBalance", + "function": "Sum", + "groupBy": [ + "SavingAccountBalance" + ], + "kpiName": "kpiTest45453647", + "provisioningState": "Provisioning", + "tenantId": "sdktesthub", + "thresHolds": { + "increasingKpi": true, + "lowerLimit": 5.0, + "upperLimit": 50.0 + }, + "unit": "unit" + }, + "type": "Microsoft.CustomerInsights/hubs/kpi" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiListByHub.json index 91c607454f85..d746eea2c4e1 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiListByHub.json @@ -1,46 +1,52 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", - "name": "sdkTestHub/kpiTest45453647", - "properties": { - "aliases": [{ - "aliasName": "alias", - "expression": "Id+4" - }], - "calculationWindow": "Day", - "description": { - "en-us": "Kpi Description" - }, - "displayName": { - "en-us": "Kpi DisplayName" - }, - "entityType": "Profile", - "entityTypeName": "testProfile2327128", - "expression": "SavingAccountBalance", - "function": "Sum", - "groupBy": ["SavingAccountBalance"], - "kpiName": "kpiTest45453647", - "provisioningState": "Provisioning", - "tenantId": "sdktesthub", - "thresHolds": { - "increasingKpi": true, - "lowerLimit": 5.0, - "upperLimit": 50.0 - }, - "unit": "unit" - }, - "type": "Microsoft.CustomerInsights/hubs/kpi" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/kpi/kpiTest45453647", + "name": "sdkTestHub/kpiTest45453647", + "properties": { + "aliases": [ + { + "aliasName": "alias", + "expression": "Id+4" + } + ], + "calculationWindow": "Day", + "description": { + "en-us": "Kpi Description" + }, + "displayName": { + "en-us": "Kpi DisplayName" + }, + "entityType": "Profile", + "entityTypeName": "testProfile2327128", + "expression": "SavingAccountBalance", + "function": "Sum", + "groupBy": [ + "SavingAccountBalance" + ], + "kpiName": "kpiTest45453647", + "provisioningState": "Provisioning", + "tenantId": "sdktesthub", + "thresHolds": { + "increasingKpi": true, + "lowerLimit": 5.0, + "upperLimit": 50.0 + }, + "unit": "unit" + }, + "type": "Microsoft.CustomerInsights/hubs/kpi" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiReprocess.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiReprocess.json index 659260336127..83bd69594f4b 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiReprocess.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/KpiReprocess.json @@ -1,14 +1,12 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "kpiName": "kpiTest45453647", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "kpiName": "kpiTest45453647", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksCreateOrUpdate.json index 8f3c75f69ebe..e9b99509b62d 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksCreateOrUpdate.json @@ -1,76 +1,76 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "linkName": "linkTest4806", - "api-version": "2017-04-26", - "subscriptionId": "subid", - "parameters": { - "properties": { - "linkName": "linkTest4806", - "sourceEntityTypeName": "testInteraction1949", - "targetEntityTypeName": "testProfile1446", - "sourceEntityType": "Interaction", - "targetEntityType": "Profile", - "displayName": { - "en-us": "Link DisplayName" - }, - "description": { - "en-us": "Link Description" - }, - "mappings": [ - { - "sourcePropertyName": "testInteraction1949", - "targetPropertyName": "testProfile1446", - "linkType": "UpdateAlways" - } - ], - "participantPropertyReferences": [ - { - "sourcePropertyName": "testInteraction1949", - "targetPropertyName": "ProfileId" - } - ] - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", - "name": "azSdkTestHub/linkTest4806", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "linkName": "linkTest4806", - "mappings": [ - { - "sourcePropertyName": "testInteraction1949", - "targetPropertyName": "testProfile1446", - "linkType": "UpdateAlways" - } - ], - "participantPropertyReferences": [ - { - "sourcePropertyName": "testInteraction1949", - "targetPropertyName": "ProfileId" - } - ], - "provisioningState": "Provisioning", - "sourceEntityTypeName": "testInteraction1949", - "targetEntityTypeName": "testProfile1446", - "sourceEntityType": "Interaction", - "targetEntityType": "Profile", - "tenantId": "azsdktesthub", - "referenceOnly": false - }, - "type": "Microsoft.CustomerInsights/hubs/links" - } - }, - "202": {} - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "linkName": "linkTest4806", + "api-version": "2017-04-26", + "subscriptionId": "subid", + "parameters": { + "properties": { + "linkName": "linkTest4806", + "sourceEntityTypeName": "testInteraction1949", + "targetEntityTypeName": "testProfile1446", + "sourceEntityType": "Interaction", + "targetEntityType": "Profile", + "displayName": { + "en-us": "Link DisplayName" + }, + "description": { + "en-us": "Link Description" + }, + "mappings": [ + { + "sourcePropertyName": "testInteraction1949", + "targetPropertyName": "testProfile1446", + "linkType": "UpdateAlways" + } + ], + "participantPropertyReferences": [ + { + "sourcePropertyName": "testInteraction1949", + "targetPropertyName": "ProfileId" + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", + "name": "azSdkTestHub/linkTest4806", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "linkName": "linkTest4806", + "mappings": [ + { + "sourcePropertyName": "testInteraction1949", + "targetPropertyName": "testProfile1446", + "linkType": "UpdateAlways" + } + ], + "participantPropertyReferences": [ + { + "sourcePropertyName": "testInteraction1949", + "targetPropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "sourceEntityTypeName": "testInteraction1949", + "targetEntityTypeName": "testProfile1446", + "sourceEntityType": "Interaction", + "targetEntityType": "Profile", + "tenantId": "azsdktesthub", + "referenceOnly": false + }, + "type": "Microsoft.CustomerInsights/hubs/links" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksDelete.json index 2b41c5cb20f7..ad139857a18a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksDelete.json @@ -1,13 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "linkName": "linkTest4806", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": {}, - "202": {} - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "linkName": "linkTest4806", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksGet.json index 3721c651a7c8..985e1060bdbb 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksGet.json @@ -1,43 +1,47 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "linkName": "linkTest4806", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", - "name": "azSdkTestHub/linkTest4806", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "linkName": "linkTest4806", - "mappings": [{ - "sourcePropertyName": "testInteraction1949", - "targetPropertyName": "testProfile1446", - "linkType": "UpdateAlways" - }], - "participantPropertyReferences": [{ - "sourcePropertyName": "testInteraction1949", - "targetPropertyName": "ProfileId" - }], - "provisioningState": "Provisioning", - "sourceEntityTypeName": "testInteraction1949", - "targetEntityTypeName": "testProfile1446", - "sourceEntityType": "Interaction", - "targetEntityType": "Profile", - "tenantId": "azsdktesthub", - "referenceOnly": false - }, - "type": "Microsoft.CustomerInsights/hubs/links" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "linkName": "linkTest4806", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", + "name": "azSdkTestHub/linkTest4806", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "linkName": "linkTest4806", + "mappings": [ + { + "sourcePropertyName": "testInteraction1949", + "targetPropertyName": "testProfile1446", + "linkType": "UpdateAlways" + } + ], + "participantPropertyReferences": [ + { + "sourcePropertyName": "testInteraction1949", + "targetPropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "sourceEntityTypeName": "testInteraction1949", + "targetEntityTypeName": "testProfile1446", + "sourceEntityType": "Interaction", + "targetEntityType": "Profile", + "tenantId": "azsdktesthub", + "referenceOnly": false + }, + "type": "Microsoft.CustomerInsights/hubs/links" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksListByHub.json index 335f4831167c..1454f17de1c4 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/LinksListByHub.json @@ -1,44 +1,50 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", - "name": "azSdkTestHub/linkTest4806", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "linkName": "linkTest4806", - "mappings": [{ - "sourcePropertyName": "testInteraction1949", - "targetPropertyName": "testProfile1446", - "linkType": "UpdateAlways" - }], - "participantPropertyReferences": [{ - "sourcePropertyName": "testInteraction1949", - "targetPropertyName": "ProfileId" - }], - "provisioningState": "Provisioning", - "sourceEntityTypeName": "testInteraction1949", - "targetEntityTypeName": "testProfile1446", - "sourceEntityType": "Interaction", - "targetEntityType": "Profile", - "tenantId": "azsdktesthub", - "referenceOnly": false - }, - "type": "Microsoft.CustomerInsights/hubs/links" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/links/linkTest4806", + "name": "azSdkTestHub/linkTest4806", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "linkName": "linkTest4806", + "mappings": [ + { + "sourcePropertyName": "testInteraction1949", + "targetPropertyName": "testProfile1446", + "linkType": "UpdateAlways" + } + ], + "participantPropertyReferences": [ + { + "sourcePropertyName": "testInteraction1949", + "targetPropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "sourceEntityTypeName": "testInteraction1949", + "targetEntityTypeName": "testProfile1446", + "sourceEntityType": "Interaction", + "targetEntityType": "Profile", + "tenantId": "azsdktesthub", + "referenceOnly": false + }, + "type": "Microsoft.CustomerInsights/hubs/links" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsCreateOrUpdate.json index b8b9807b3fd7..931d3030920f 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsCreateOrUpdate.json @@ -82,4 +82,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsDelete.json index 2e1ef40f66da..a2b44064352b 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsDelete.json @@ -10,4 +10,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGet.json index c63804a35307..9771bffad8a0 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGet.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGetModelStatus.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGetModelStatus.json index 19c41c9321ba..00ea06999ac8 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGetModelStatus.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGetModelStatus.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGetTrainingResults.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGetTrainingResults.json index f0e0ee24bf8c..52bda73adf40 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGetTrainingResults.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsGetTrainingResults.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsListByHub.json index a8cc5f567df6..52038c2fc053 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsListByHub.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsModelStatus.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsModelStatus.json index 134f5f5b6ddb..13bb2388dc7b 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsModelStatus.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/PredictionsModelStatus.json @@ -12,4 +12,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfileGetEnrichingKpis.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfileGetEnrichingKpis.json index 511cb1608d8d..3f137fc75b31 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfileGetEnrichingKpis.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfileGetEnrichingKpis.json @@ -1,75 +1,81 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "profileName": "TestProfileType396", - "api-version": "2017-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": [{ - "calculationWindow": "Month", - "calculationWindowFieldName": "", - "description": { - "en-us": "MonthlyDeposits" - }, - "entityType": "Interaction", - "entityTypeName": "Deposit", - "expression": "Amount", - "filter": "", - "function": "Sum", - "groupBy": ["AccountType", - "BranchId", - "ContactId", - "Location", - "Type"], - "groupByMetadata": [{ - "displayName": { - "en-us": "AccountType" - }, - "fieldName": "AccountType", - "fieldType": "Edm.String" - }, - { - "displayName": { - "en-us": "BranchId" - }, - "fieldName": "BranchId", - "fieldType": "Edm.Int32" - }, - { - "displayName": { - "en-us": "ContactId" - }, - "fieldName": "ContactId", - "fieldType": "Edm.Int32" - }, - { - "displayName": { - "en-us": "Location" - }, - "fieldName": "Location", - "fieldType": "Edm.String" - }, - { - "displayName": { - "en-us": "Type" - }, - "fieldName": "Type", - "fieldType": "Edm.String" - }], - "kpiName": "MonthlyDeposits", - "participantProfilesMetadata": [], - "provisioningState": "Succeeded", - "tenantId": "sdkTestHub", - "thresHolds": { - "increasingKpi": true, - "lowerLimit": 0, - "upperLimit": 0 - }, - "unit": "" - }] - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "profileName": "TestProfileType396", + "api-version": "2017-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": [ + { + "calculationWindow": "Month", + "calculationWindowFieldName": "", + "description": { + "en-us": "MonthlyDeposits" + }, + "entityType": "Interaction", + "entityTypeName": "Deposit", + "expression": "Amount", + "filter": "", + "function": "Sum", + "groupBy": [ + "AccountType", + "BranchId", + "ContactId", + "Location", + "Type" + ], + "groupByMetadata": [ + { + "displayName": { + "en-us": "AccountType" + }, + "fieldName": "AccountType", + "fieldType": "Edm.String" + }, + { + "displayName": { + "en-us": "BranchId" + }, + "fieldName": "BranchId", + "fieldType": "Edm.Int32" + }, + { + "displayName": { + "en-us": "ContactId" + }, + "fieldName": "ContactId", + "fieldType": "Edm.Int32" + }, + { + "displayName": { + "en-us": "Location" + }, + "fieldName": "Location", + "fieldType": "Edm.String" + }, + { + "displayName": { + "en-us": "Type" + }, + "fieldName": "Type", + "fieldType": "Edm.String" + } + ], + "kpiName": "MonthlyDeposits", + "participantProfilesMetadata": [], + "provisioningState": "Succeeded", + "tenantId": "sdkTestHub", + "thresHolds": { + "increasingKpi": true, + "lowerLimit": 0, + "upperLimit": 0 + }, + "unit": "" + } + ] + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesCreateOrUpdate.json index 601cc85f3181..3fad518ca871 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesCreateOrUpdate.json @@ -1,156 +1,172 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "profileName": "TestProfileType396", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "strongIds": [{ - "keyPropertyNames": ["Id", - "SavingAccountBalance"], - "strongIdName": "Id" - }, - { - "keyPropertyNames": ["ProfileId", - "LastName"], - "strongIdName": "ProfileId" - }], - "apiEntitySetName": "TestProfileType396", - "fields": [{ - "fieldName": "Id", - "fieldType": "Edm.String", - "isArray": false, - "isRequired": true - }, - { - "fieldName": "ProfileId", - "fieldType": "Edm.String", - "isArray": false, - "isRequired": true - }, - { - "fieldName": "LastName", - "fieldType": "Edm.String", - "isArray": false, - "isRequired": true - }, - { - "fieldName": "TestProfileType396", - "fieldType": "Edm.String", - "isArray": false, - "isRequired": true - }, - { - "fieldName": "SavingAccountBalance", - "fieldType": "Edm.Int32", - "isArray": false, - "isRequired": true - }], - "schemaItemTypeLink": "SchemaItemTypeLink", - "smallImage": "\\\\Images\\\\smallImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "largeImage": "\\\\Images\\\\LargeImage" - } - } - }, - "responses": { - "202": { - - }, - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", - "name": "azSdkTestHub/TestProfileType396", - "properties": { - "strongIds": [{ - "keyPropertyNames": ["Id", - "savingAccountBalance"], - "strongIdName": "Id" - }, - { - "keyPropertyNames": ["ProfileId", - "LastName"], - "strongIdName": "ProfileId" - }, - { - "keyPropertyNames": ["ProfileId"], - "strongIdName": "ProfileId" - }], - "apiEntitySetName": "TestProfileType396", - "entityType": "Profile", - "fields": [{ - "fieldName": "Id", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "ProfileId", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "LastName", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "TestProfileType396", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "SavingAccountBalance", - "fieldType": "Edm.Int32", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "schemaItemTypeLink": "SchemaItemTypeLink", - "tenantId": "azsdktesthub", - "typeName": "TestProfileType396", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage" - }, - "type": "Microsoft.CustomerInsights/hubs/profiles" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "profileName": "TestProfileType396", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "strongIds": [ + { + "keyPropertyNames": [ + "Id", + "SavingAccountBalance" + ], + "strongIdName": "Id" + }, + { + "keyPropertyNames": [ + "ProfileId", + "LastName" + ], + "strongIdName": "ProfileId" + } + ], + "apiEntitySetName": "TestProfileType396", + "fields": [ + { + "fieldName": "Id", + "fieldType": "Edm.String", + "isArray": false, + "isRequired": true + }, + { + "fieldName": "ProfileId", + "fieldType": "Edm.String", + "isArray": false, + "isRequired": true + }, + { + "fieldName": "LastName", + "fieldType": "Edm.String", + "isArray": false, + "isRequired": true + }, + { + "fieldName": "TestProfileType396", + "fieldType": "Edm.String", + "isArray": false, + "isRequired": true + }, + { + "fieldName": "SavingAccountBalance", + "fieldType": "Edm.Int32", + "isArray": false, + "isRequired": true + } + ], + "schemaItemTypeLink": "SchemaItemTypeLink", + "smallImage": "\\\\Images\\\\smallImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "largeImage": "\\\\Images\\\\LargeImage" + } + } + }, + "responses": { + "202": {}, + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", + "name": "azSdkTestHub/TestProfileType396", + "properties": { + "strongIds": [ + { + "keyPropertyNames": [ + "Id", + "savingAccountBalance" + ], + "strongIdName": "Id" + }, + { + "keyPropertyNames": [ + "ProfileId", + "LastName" + ], + "strongIdName": "ProfileId" + }, + { + "keyPropertyNames": [ + "ProfileId" + ], + "strongIdName": "ProfileId" + } + ], + "apiEntitySetName": "TestProfileType396", + "entityType": "Profile", + "fields": [ + { + "fieldName": "Id", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "ProfileId", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "LastName", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "TestProfileType396", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "SavingAccountBalance", + "fieldType": "Edm.Int32", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "schemaItemTypeLink": "SchemaItemTypeLink", + "tenantId": "azsdktesthub", + "typeName": "TestProfileType396", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage" + }, + "type": "Microsoft.CustomerInsights/hubs/profiles" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesDelete.json index ff9486f362a3..17435c69ab85 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesDelete.json @@ -1,20 +1,14 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "profileName": "TestProfileType396", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - }, - "202": { - - }, - "204": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "profileName": "TestProfileType396", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesGet.json index ffeeb1edc348..0fca793d9440 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesGet.json @@ -1,104 +1,114 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "profileName": "TestProfileType396", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", - "name": "azSdkTestHub/TestProfileType396", - "properties": { - "strongIds": [{ - "keyPropertyNames": ["Id", - "savingAccountBalance"], - "strongIdName": "Id" - }, - { - "keyPropertyNames": ["ProfileId", - "LastName"], - "strongIdName": "ProfileId" - }, - { - "keyPropertyNames": ["ProfileId"], - "strongIdName": "ProfileId" - }], - "apiEntitySetName": "TestProfileType396", - "entityType": "Profile", - "fields": [{ - "fieldName": "Id", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "ProfileId", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "LastName", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "TestProfileType396", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "SavingAccountBalance", - "fieldType": "Edm.Int32", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "schemaItemTypeLink": "SchemaItemTypeLink", - "tenantId": "azsdktesthub", - "typeName": "TestProfileType396", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage" - }, - "type": "Microsoft.CustomerInsights/hubs/profiles" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "profileName": "TestProfileType396", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", + "name": "azSdkTestHub/TestProfileType396", + "properties": { + "strongIds": [ + { + "keyPropertyNames": [ + "Id", + "savingAccountBalance" + ], + "strongIdName": "Id" + }, + { + "keyPropertyNames": [ + "ProfileId", + "LastName" + ], + "strongIdName": "ProfileId" + }, + { + "keyPropertyNames": [ + "ProfileId" + ], + "strongIdName": "ProfileId" + } + ], + "apiEntitySetName": "TestProfileType396", + "entityType": "Profile", + "fields": [ + { + "fieldName": "Id", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "ProfileId", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "LastName", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "TestProfileType396", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "SavingAccountBalance", + "fieldType": "Edm.Int32", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "schemaItemTypeLink": "SchemaItemTypeLink", + "tenantId": "azsdktesthub", + "typeName": "TestProfileType396", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage" + }, + "type": "Microsoft.CustomerInsights/hubs/profiles" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesListByHub.json index 4442c3826d5d..5afff68434b9 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ProfilesListByHub.json @@ -1,106 +1,118 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", - "name": "azSdkTestHub/TestProfileType396", - "properties": { - "strongIds": [{ - "keyPropertyNames": ["Id", - "savingAccountBalance"], - "strongIdName": "Id" - }, - { - "keyPropertyNames": ["ProfileId", - "LastName"], - "strongIdName": "ProfileId" - }, - { - "keyPropertyNames": ["ProfileId"], - "strongIdName": "ProfileId" - }], - "apiEntitySetName": "TestProfileType396", - "entityType": "Profile", - "fields": [{ - "fieldName": "Id", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "ProfileId", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "LastName", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "TestProfileType396", - "fieldType": "Edm.String", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }, - { - "fieldName": "SavingAccountBalance", - "fieldType": "Edm.Int32", - "isArray": false, - "isEnum": false, - "isFlagEnum": false, - "isImage": false, - "isLocalizedString": false, - "isName": false, - "isRequired": true, - "propertyId": "id1" - }], - "instancesCount": 0, - "provisioningState": "Provisioning", - "schemaItemTypeLink": "SchemaItemTypeLink", - "tenantId": "azsdktesthub", - "typeName": "TestProfileType396", - "largeImage": "\\\\Images\\\\LargeImage", - "mediumImage": "\\\\Images\\\\MediumImage", - "smallImage": "\\\\Images\\\\smallImage" - }, - "type": "Microsoft.CustomerInsights/hubs/profiles" - }], - "nextLink": "" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/profiles/TestProfileType396", + "name": "azSdkTestHub/TestProfileType396", + "properties": { + "strongIds": [ + { + "keyPropertyNames": [ + "Id", + "savingAccountBalance" + ], + "strongIdName": "Id" + }, + { + "keyPropertyNames": [ + "ProfileId", + "LastName" + ], + "strongIdName": "ProfileId" + }, + { + "keyPropertyNames": [ + "ProfileId" + ], + "strongIdName": "ProfileId" + } + ], + "apiEntitySetName": "TestProfileType396", + "entityType": "Profile", + "fields": [ + { + "fieldName": "Id", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "ProfileId", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "LastName", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "TestProfileType396", + "fieldType": "Edm.String", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + }, + { + "fieldName": "SavingAccountBalance", + "fieldType": "Edm.Int32", + "isArray": false, + "isEnum": false, + "isFlagEnum": false, + "isImage": false, + "isLocalizedString": false, + "isName": false, + "isRequired": true, + "propertyId": "id1" + } + ], + "instancesCount": 0, + "provisioningState": "Provisioning", + "schemaItemTypeLink": "SchemaItemTypeLink", + "tenantId": "azsdktesthub", + "typeName": "TestProfileType396", + "largeImage": "\\\\Images\\\\LargeImage", + "mediumImage": "\\\\Images\\\\MediumImage", + "smallImage": "\\\\Images\\\\smallImage" + }, + "type": "Microsoft.CustomerInsights/hubs/profiles" + } + ], + "nextLink": "" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksCreateOrUpdate.json index 49c778ee9665..75acab7d4914 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksCreateOrUpdate.json @@ -1,63 +1,69 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipLinkName": "Somelink", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "displayName": { - "en-us": "Link DisplayName" - }, - "description": { - "en-us": "Link Description" - }, - "interactionType": "testInteraction4332", - "linkName": "Somelink", - "profilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "relationshipName": "testProfile2326994" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", - "name": "sdkTestHub/Somelink", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "interactionType": "testInteraction4332", - "linkName": "Somelink", - "profilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "provisioningState": "Provisioning", - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "relationshipName": "testProfile2326994", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipLinkName": "Somelink", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "displayName": { + "en-us": "Link DisplayName" + }, + "description": { + "en-us": "Link Description" + }, + "interactionType": "testInteraction4332", + "linkName": "Somelink", + "profilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "relationshipName": "testProfile2326994" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", + "name": "sdkTestHub/Somelink", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "interactionType": "testInteraction4332", + "linkName": "Somelink", + "profilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "relationshipName": "testProfile2326994", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksDelete.json index 373fd21aa152..0760121175c2 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksDelete.json @@ -1,17 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipLinkName": "Somelink", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipLinkName": "Somelink", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksGet.json index b19354bee869..193231fc3666 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksGet.json @@ -1,39 +1,43 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipLinkName": "Somelink", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", - "name": "sdkTestHub/Somelink", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "interactionType": "testInteraction4332", - "linkName": "Somelink", - "profilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "provisioningState": "Provisioning", - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "relationshipName": "testProfile2326994", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipLinkName": "Somelink", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", + "name": "sdkTestHub/Somelink", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "interactionType": "testInteraction4332", + "linkName": "Somelink", + "profilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "relationshipName": "testProfile2326994", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksListByHub.json index 220b1adccf7f..d9d63564955c 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipLinksListByHub.json @@ -1,40 +1,46 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", - "name": "sdkTestHub/Somelink", - "properties": { - "description": { - "en-us": "Link Description" - }, - "displayName": { - "en-us": "Link DisplayName" - }, - "interactionType": "testInteraction4332", - "linkName": "Somelink", - "profilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "provisioningState": "Provisioning", - "relatedProfilePropertyReferences": [{ - "interactionPropertyName": "profile1", - "profilePropertyName": "ProfileId" - }], - "relationshipName": "testProfile2326994", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink", + "name": "sdkTestHub/Somelink", + "properties": { + "description": { + "en-us": "Link Description" + }, + "displayName": { + "en-us": "Link DisplayName" + }, + "interactionType": "testInteraction4332", + "linkName": "Somelink", + "profilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "provisioningState": "Provisioning", + "relatedProfilePropertyReferences": [ + { + "interactionPropertyName": "profile1", + "profilePropertyName": "ProfileId" + } + ], + "relationshipName": "testProfile2326994", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationshipLinks" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsCreateOrUpdate.json index d6db25d0de72..7dda783d91f0 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsCreateOrUpdate.json @@ -1,51 +1,49 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipName": "SomeRelationship", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "cardinality": "OneToOne", - "displayName": { - "en-us": "Relationship DisplayName" - }, - "description": { - "en-us": "Relationship Description" - }, - "fields": [], - "profileType": "testProfile2326994", - "relatedProfileType": "testProfile2326994" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", - "name": "sdkTestHub/testProfile2326994", - "properties": { - "cardinality": "OneToOne", - "description": { - "en-us": "Relationship Description" - }, - "displayName": { - "en-us": "Relationship DisplayName" - }, - "fields": [], - "lookupMappings": [], - "profileType": "testProfile2326994", - "provisioningState": "Provisioning", - "relatedProfileType": "testProfile2326994", - "relationshipName": "SomeRelationship", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationships" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipName": "SomeRelationship", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "cardinality": "OneToOne", + "displayName": { + "en-us": "Relationship DisplayName" + }, + "description": { + "en-us": "Relationship Description" + }, + "fields": [], + "profileType": "testProfile2326994", + "relatedProfileType": "testProfile2326994" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", + "name": "sdkTestHub/testProfile2326994", + "properties": { + "cardinality": "OneToOne", + "description": { + "en-us": "Relationship Description" + }, + "displayName": { + "en-us": "Relationship DisplayName" + }, + "fields": [], + "lookupMappings": [], + "profileType": "testProfile2326994", + "provisioningState": "Provisioning", + "relatedProfileType": "testProfile2326994", + "relationshipName": "SomeRelationship", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationships" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsDelete.json index a28259d3e262..b988c9aebeb2 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsDelete.json @@ -1,17 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipName": "SomeRelationship", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipName": "SomeRelationship", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsGet.json index 7135827b9b34..33b86ccb1608 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsGet.json @@ -1,34 +1,34 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "relationshipName": "SomeRelationship", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", - "name": "sdkTestHub/testProfile2326994", - "properties": { - "cardinality": "OneToOne", - "description": { - "en-us": "Relationship Description" - }, - "displayName": { - "en-us": "Relationship DisplayName" - }, - "fields": [], - "lookupMappings": [], - "profileType": "testProfile2326994", - "provisioningState": "Provisioning", - "relatedProfileType": "testProfile2326994", - "relationshipName": "SomeRelationship", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationships" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "relationshipName": "SomeRelationship", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", + "name": "sdkTestHub/testProfile2326994", + "properties": { + "cardinality": "OneToOne", + "description": { + "en-us": "Relationship Description" + }, + "displayName": { + "en-us": "Relationship DisplayName" + }, + "fields": [], + "lookupMappings": [], + "profileType": "testProfile2326994", + "provisioningState": "Provisioning", + "relatedProfileType": "testProfile2326994", + "relationshipName": "SomeRelationship", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationships" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsListByHub.json index 67ab7fdf6074..9ed418bd4c8a 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RelationshipsListByHub.json @@ -1,35 +1,37 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", - "name": "sdkTestHub/testProfile2326994", - "properties": { - "cardinality": "OneToOne", - "description": { - "en-us": "Relationship Description" - }, - "displayName": { - "en-us": "Relationship DisplayName" - }, - "fields": [], - "lookupMappings": [], - "profileType": "testProfile2326994", - "provisioningState": "Provisioning", - "relatedProfileType": "testProfile2326994", - "relationshipName": "SomeRelationship", - "tenantId": "sdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/relationships" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship", + "name": "sdkTestHub/testProfile2326994", + "properties": { + "cardinality": "OneToOne", + "description": { + "en-us": "Relationship Description" + }, + "displayName": { + "en-us": "Relationship DisplayName" + }, + "fields": [], + "lookupMappings": [], + "profileType": "testProfile2326994", + "provisioningState": "Provisioning", + "relatedProfileType": "testProfile2326994", + "relationshipName": "SomeRelationship", + "tenantId": "sdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/relationships" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsCreateOrUpdate.json index eaab4cf33e00..a01f09cae88d 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsCreateOrUpdate.json @@ -1,48 +1,50 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "assignmentName": "assignmentName8976", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "role": "Admin", - "principals": [{ - "principalId": "4c54c38ffa9b416ba5a6d6c8a20cbe7e", - "principalType": "User" - }, - { - "principalId": "93061d15a5054f2b9948ae25724cf9d5", - "principalType": "User" - }] - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", - "name": "azSdkTestHub/assignmentName8976", - "properties": { - "assignmentName": "assignmentName8976", - "principals": [{ - "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", - "principalType": "User" - }, - { - "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", - "principalType": "User" - }], - "provisioningState": "Provisioning", - "role": "Admin", - "tenantId": "azsdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" - } - }, - "202": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "assignmentName": "assignmentName8976", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "role": "Admin", + "principals": [ + { + "principalId": "4c54c38ffa9b416ba5a6d6c8a20cbe7e", + "principalType": "User" + }, + { + "principalId": "93061d15a5054f2b9948ae25724cf9d5", + "principalType": "User" + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", + "name": "azSdkTestHub/assignmentName8976", + "properties": { + "assignmentName": "assignmentName8976", + "principals": [ + { + "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", + "principalType": "User" + }, + { + "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", + "principalType": "User" + } + ], + "provisioningState": "Provisioning", + "role": "Admin", + "tenantId": "azsdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" + } + }, + "202": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsDelete.json index 3d09176089b2..b1c07bb61fa7 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsDelete.json @@ -1,20 +1,14 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "assignmentName": "assignmentName8976", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - }, - "202": { - - }, - "204": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "assignmentName": "assignmentName8976", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsGet.json index a31f046442b8..fe43bff10e94 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsGet.json @@ -1,32 +1,34 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "assignmentName": "assignmentName8976", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", - "name": "azSdkTestHub/assignmentName8976", - "properties": { - "assignmentName": "assignmentName8976", - "principals": [{ - "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", - "principalType": "User" - }, - { - "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", - "principalType": "User" - }], - "provisioningState": "Provisioning", - "role": "Admin", - "tenantId": "azsdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "assignmentName": "assignmentName8976", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", + "name": "azSdkTestHub/assignmentName8976", + "properties": { + "assignmentName": "assignmentName8976", + "principals": [ + { + "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", + "principalType": "User" + }, + { + "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", + "principalType": "User" + } + ], + "provisioningState": "Provisioning", + "role": "Admin", + "tenantId": "azsdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsListByHub.json index c126a24df81b..692b169a1337 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RoleAssignmentsListByHub.json @@ -1,33 +1,37 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", - "name": "azSdkTestHub/assignmentName8976", - "properties": { - "assignmentName": "assignmentName8976", - "principals": [{ - "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", - "principalType": "User" - }, - { - "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", - "principalType": "User" - }], - "provisioningState": "Provisioning", - "role": "Admin", - "tenantId": "azsdktesthub" - }, - "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/RoleAssignments/assignmentName8976", + "name": "azSdkTestHub/assignmentName8976", + "properties": { + "assignmentName": "assignmentName8976", + "principals": [ + { + "principalId": "4c54c38f-fa9b-416b-a5a6-d6c8a20cbe7e", + "principalType": "User" + }, + { + "principalId": "93061d15-a505-4f2b-9948-ae25724cf9d5", + "principalType": "User" + } + ], + "provisioningState": "Provisioning", + "role": "Admin", + "tenantId": "azsdktesthub" + }, + "type": "Microsoft.CustomerInsights/hubs/RoleAssignments" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RolesListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RolesListByHub.json index 183fc0add0b4..d2a7e225ad6f 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RolesListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/RolesListByHub.json @@ -1,23 +1,25 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/Roles/Admin", - "name": "azSdkTestHub/Admin", - "properties": { - "description": "When a role assignment is created for the Admin Role on certain scopes (selected profiles, interactions, Kpis etc.), it authorizes the users/groups selected in the assignment for ALL operations at the tenant endpoint on the selected scopes.", - "roleName": "Admin" - }, - "type": "Microsoft.CustomerInsights/hubs/Roles" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/azSdkTestHub/Roles/Admin", + "name": "azSdkTestHub/Admin", + "properties": { + "description": "When a role assignment is created for the Admin Role on certain scopes (selected profiles, interactions, Kpis etc.), it authorizes the users/groups selected in the assignment for ALL operations at the tenant endpoint on the selected scopes.", + "roleName": "Admin" + }, + "type": "Microsoft.CustomerInsights/hubs/Roles" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsCreateOrUpdate.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsCreateOrUpdate.json index 983262206e7e..e0f701096211 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsCreateOrUpdate.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsCreateOrUpdate.json @@ -1,36 +1,36 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "viewName": "testView", - "api-version": "2016-01-01", - "subscriptionId": "subid", - "parameters": { - "properties": { - "userId": "testUser", - "displayName": { - "en": "some name" - }, - "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", - "name": "sdkTestHub/testView", - "properties": { - "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", - "displayName": { - "en": "some name" - }, - "tenantId": "sdktesthub", - "userId": "*", - "viewName": "testView" - }, - "type": "Microsoft.CustomerInsights/hubs/views" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "viewName": "testView", + "api-version": "2016-01-01", + "subscriptionId": "subid", + "parameters": { + "properties": { + "userId": "testUser", + "displayName": { + "en": "some name" + }, + "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", + "name": "sdkTestHub/testView", + "properties": { + "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", + "displayName": { + "en": "some name" + }, + "tenantId": "sdktesthub", + "userId": "*", + "viewName": "testView" + }, + "type": "Microsoft.CustomerInsights/hubs/views" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsDelete.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsDelete.json index 6cbd4c997f21..1466e13530a0 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsDelete.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsDelete.json @@ -1,15 +1,13 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "viewName": "testView", - "userId": "*", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "viewName": "testView", + "userId": "*", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": {} + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsGet.json index 63a648684119..c824b00d4dd9 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsGet.json @@ -1,28 +1,28 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "viewName": "testView", - "userId": "*", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", - "name": "sdkTestHub/testView", - "properties": { - "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", - "displayName": { - "en": "some name" - }, - "tenantId": "sdktesthub", - "userId": "*", - "viewName": "testView" - }, - "type": "Microsoft.CustomerInsights/hubs/views" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "viewName": "testView", + "userId": "*", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", + "name": "sdkTestHub/testView", + "properties": { + "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", + "displayName": { + "en": "some name" + }, + "tenantId": "sdktesthub", + "userId": "*", + "viewName": "testView" + }, + "type": "Microsoft.CustomerInsights/hubs/views" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsListByHub.json index 949fd4c32c86..34613c9b814f 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/ViewsListByHub.json @@ -1,29 +1,31 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "userId": "*", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", - "name": "sdkTestHub/testView", - "properties": { - "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", - "displayName": { - "en": "some name" - }, - "tenantId": "sdktesthub", - "userId": "*", - "viewName": "testView" - }, - "type": "Microsoft.CustomerInsights/hubs/views" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "userId": "*", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/views/testView", + "name": "sdkTestHub/testView", + "properties": { + "definition": "{\\\"isProfileType\\\":false,\\\"profileTypes\\\":[],\\\"widgets\\\":[],\\\"style\\\":[]}", + "displayName": { + "en": "some name" + }, + "tenantId": "sdktesthub", + "userId": "*", + "viewName": "testView" + }, + "type": "Microsoft.CustomerInsights/hubs/views" + } + ] + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/WidgetTypesGet.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/WidgetTypesGet.json index 35507b6bd9ee..31edc695e598 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/WidgetTypesGet.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/WidgetTypesGet.json @@ -1,26 +1,26 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "widgetTypeName": "ActivityGauge", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/ActivityGauge", - "name": "sdkTestHub/ActivityGauge", - "properties": { - "widgetTypeName": "ActivityGauge", - "tenantId": "*", - "description": "", - "definition": "", - "imageUrl": "", - "widgetVersion": "2016-01-01" - }, - "type": "Microsoft.CustomerInsights/hubs/widgetTypes" - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "widgetTypeName": "ActivityGauge", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/ActivityGauge", + "name": "sdkTestHub/ActivityGauge", + "properties": { + "widgetTypeName": "ActivityGauge", + "tenantId": "*", + "description": "", + "definition": "", + "imageUrl": "", + "widgetVersion": "2016-01-01" + }, + "type": "Microsoft.CustomerInsights/hubs/widgetTypes" + } + } + } +} diff --git a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/WidgetTypesListByHub.json b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/WidgetTypesListByHub.json index 9796c694033c..0a778bb5d1f3 100644 --- a/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/WidgetTypesListByHub.json +++ b/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-04-26/examples/WidgetTypesListByHub.json @@ -1,40 +1,42 @@ { - "parameters": { - "hubName": "sdkTestHub", - "resourceGroupName": "TestHubRG", - "api-version": "2016-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/ActivityGauge", - "name": "sdkTestHub/ActivityGauge", - "properties": { - "widgetTypeName": "ActivityGauge", - "tenantId": "*", - "description": "", - "definition": "", - "imageUrl": "", - "widgetVersion": "2016-01-01" - }, - "type": "Microsoft.CustomerInsights/hubs/widgetTypes" - }, - { - "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/AsterChart", - "name": "sdkTestHub/AsterChart", - "properties": { - "widgetTypeName": "AsterChart", - "tenantId": "*", - "description": "", - "definition": "", - "imageUrl": "", - "widgetVersion": "2016-01-01" - }, - "type": "Microsoft.CustomerInsights/hubs/widgetTypes" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "hubName": "sdkTestHub", + "resourceGroupName": "TestHubRG", + "api-version": "2016-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/ActivityGauge", + "name": "sdkTestHub/ActivityGauge", + "properties": { + "widgetTypeName": "ActivityGauge", + "tenantId": "*", + "description": "", + "definition": "", + "imageUrl": "", + "widgetVersion": "2016-01-01" + }, + "type": "Microsoft.CustomerInsights/hubs/widgetTypes" + }, + { + "id": "/subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/widgetTypes/AsterChart", + "name": "sdkTestHub/AsterChart", + "properties": { + "widgetTypeName": "AsterChart", + "tenantId": "*", + "description": "", + "definition": "", + "imageUrl": "", + "widgetVersion": "2016-01-01" + }, + "type": "Microsoft.CustomerInsights/hubs/widgetTypes" + } + ] + } + } + } +} diff --git a/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/customproviders.json b/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/customproviders.json index c68e3403dd21..24b22825f4ca 100644 --- a/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/customproviders.json +++ b/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/customproviders.json @@ -500,7 +500,7 @@ } }, "produces": [ - "application/json" + "application/json" ] }, "get": { @@ -552,9 +552,9 @@ "application/json" ] } - }, - "/{scope}/providers/Microsoft.CustomProviders/associations": { - "get": { + }, + "/{scope}/providers/Microsoft.CustomProviders/associations": { + "get": { "tags": [ "Associations" ], diff --git a/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/createOrUpdateAssociation.json b/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/createOrUpdateAssociation.json index 2560751e4e0c..1d88fb32e139 100644 --- a/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/createOrUpdateAssociation.json +++ b/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/createOrUpdateAssociation.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/deleteAssociation.json b/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/deleteAssociation.json index 200e6d59922b..1a56b7fbd74b 100644 --- a/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/deleteAssociation.json +++ b/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/deleteAssociation.json @@ -9,4 +9,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/getAllAssociations.json b/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/getAllAssociations.json index 907b0171dd50..5de1d45ef8ee 100644 --- a/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/getAllAssociations.json +++ b/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/getAllAssociations.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/getAssociation.json b/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/getAssociation.json index 6791d0eb6c17..46662be81ac8 100644 --- a/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/getAssociation.json +++ b/specification/customproviders/resource-manager/Microsoft.CustomProviders/preview/2018-09-01-preview/examples/getAssociation.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/databox.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/databox.json index 9545d1d9b568..4a5c289f87f6 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/databox.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/databox.json @@ -2716,4 +2716,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/AvailableSkusPost.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/AvailableSkusPost.json index edb90016b3de..52a44f69a196 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/AvailableSkusPost.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/AvailableSkusPost.json @@ -224,4 +224,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/BookShipmentPickupPost.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/BookShipmentPickupPost.json index 09ce8ab47d5a..86cffaf3b40b 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/BookShipmentPickupPost.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/BookShipmentPickupPost.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsCancelPost.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsCancelPost.json index c71352be1d9e..27d6c0b10ee1 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsCancelPost.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsCancelPost.json @@ -30,4 +30,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsCreate.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsCreate.json index 65eb998c1695..a8d3fce74ad3 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsCreate.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsCreate.json @@ -65,22 +65,22 @@ }, "200": { "body": { - "properties": { - "isCancellable": true, - "isDeletable": false, - "isShippingAddressEditable": true, - "status": "DeviceOrdered", - "startTime": "2018-09-11T17:58:36.6886059+05:30" - }, - "location": "westus", - "tags": {}, - "sku": { - "name": "DataBox" - }, - "name": "SdkJob8367", - "id": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9836/providers/Microsoft.DataBox/jobs/SdkJob8367", - "type": "Microsoft.DataBox/jobs" - } + "properties": { + "isCancellable": true, + "isDeletable": false, + "isShippingAddressEditable": true, + "status": "DeviceOrdered", + "startTime": "2018-09-11T17:58:36.6886059+05:30" + }, + "location": "westus", + "tags": {}, + "sku": { + "name": "DataBox" + }, + "name": "SdkJob8367", + "id": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9836/providers/Microsoft.DataBox/jobs/SdkJob8367", + "type": "Microsoft.DataBox/jobs" + } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsDelete.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsDelete.json index 8b481e5adb1b..c6e0b8f29e28 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsDelete.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsDelete.json @@ -24,4 +24,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet.json index bef4a96185f2..a1d11d207fed 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet1.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet1.json index c784056a566b..4748e6807443 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet1.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet1.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet2.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet2.json index d970464ffdbf..93e257f4622a 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet2.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet2.json @@ -156,4 +156,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet3.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet3.json index e2c23b5e3497..18711c0a4618 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet3.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet3.json @@ -156,4 +156,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet4.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet4.json index bf3086f81943..331fe0fea23d 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet4.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet4.json @@ -128,4 +128,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet5.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet5.json index 4f8570c50369..659ae9d83f67 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet5.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsGet5.json @@ -101,4 +101,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsList.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsList.json index b4e79f598e19..dfc3286b7a71 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsList.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsList.json @@ -24,7 +24,7 @@ "isDeletable": false, "isShippingAddressEditable": true, "status": "DeviceOrdered", - "startTime": "2018-08-30T14:44:39.77401+05:30" + "startTime": "2018-08-30T14:44:39.77401+05:30" }, "location": "australiaeast", "tags": {}, @@ -499,4 +499,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsListByResourceGroup.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsListByResourceGroup.json index c72f92c28222..6caf68e9601a 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsListByResourceGroup.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsListByResourceGroup.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsListCredentials.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsListCredentials.json index 3871bbbc49cf..da9551e1912e 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsListCredentials.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsListCredentials.json @@ -83,6 +83,6 @@ } ] } - } + } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsPatch.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsPatch.json index c4bd40281503..75d9a8fa2cd4 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsPatch.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/JobsPatch.json @@ -52,22 +52,22 @@ }, "200": { "body": { - "properties": { - "isCancellable": true, - "isDeletable": false, - "isShippingAddressEditable": true, - "status": "DeviceOrdered", - "startTime": "2018-09-11T17:58:36.6886059+05:30" - }, - "location": "westus", - "tags": {}, - "sku": { - "name": "DataBox" - }, - "name": "SdkJob8367", - "id": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9836/providers/Microsoft.DataBox/jobs/SdkJob8367", - "type": "Microsoft.DataBox/jobs" - } + "properties": { + "isCancellable": true, + "isDeletable": false, + "isShippingAddressEditable": true, + "status": "DeviceOrdered", + "startTime": "2018-09-11T17:58:36.6886059+05:30" + }, + "location": "westus", + "tags": {}, + "sku": { + "name": "DataBox" + }, + "name": "SdkJob8367", + "id": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9836/providers/Microsoft.DataBox/jobs/SdkJob8367", + "type": "Microsoft.DataBox/jobs" + } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/OperationsGet.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/OperationsGet.json index 9d38e7506c0b..bd86f8e89e59 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/OperationsGet.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/OperationsGet.json @@ -108,4 +108,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/ValidateAddressPost.json b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/ValidateAddressPost.json index 864fd09dd723..a45ddf504dfd 100644 --- a/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/ValidateAddressPost.json +++ b/specification/databox/resource-manager/Microsoft.DataBox/stable/2018-01-01/examples/ValidateAddressPost.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/datafactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/datafactory.json index 4450974be30d..4c51aad52d49 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/datafactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/datafactory.json @@ -2448,1454 +2448,1454 @@ } } }, - "definitions": { - "Resource": { - "x-ms-azure-resource": true, - "description": "Azure Data Factory top-level resource.", - "properties": { - "id": { - "type": "string", - "description": "The resource identifier.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The resource name.", - "readOnly": true - }, - "type": { - "type": "string", - "description": "The resource type.", - "readOnly": true + "definitions": { + "Resource": { + "x-ms-azure-resource": true, + "description": "Azure Data Factory top-level resource.", + "properties": { + "id": { + "type": "string", + "description": "The resource identifier.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "The resource name.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "The resource type.", + "readOnly": true + }, + "location": { + "type": "string", + "description": "The resource location.", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" }, - "location": { - "type": "string", - "description": "The resource location.", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "The resource tags." - } + "description": "The resource tags." } - }, - "SubResource": { - "description": "Azure Data Factory nested resource, which belongs to a factory.", - "properties": { - "id": { - "type": "string", - "description": "The resource identifier.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The resource name.", - "readOnly": true - }, - "type": { - "type": "string", - "description": "The resource type.", - "readOnly": true - }, - "etag": { - "type": "string", - "description": "Etag identifies change in the resource.", - "readOnly": true - } - }, - "x-ms-azure-resource": true - }, - "Expression": { - "description": "Azure Data Factory expression definition.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "Expression type.", - "enum": [ - "Expression" - ] - }, - "value": { - "type": "string", - "description": "Expression value." - } - }, - "required": [ - "type", - "value" - ] - }, - "SecureString": { - "x-ms-discriminator-value": "SecureString", - "description": "Azure Data Factory secure string definition. The string value will be masked with asterisks '*' during Get or List API calls.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/SecretBase" - } - ], + } + }, + "SubResource": { + "description": "Azure Data Factory nested resource, which belongs to a factory.", + "properties": { + "id": { + "type": "string", + "description": "The resource identifier.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "The resource name.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "The resource type.", + "readOnly": true + }, + "etag": { + "type": "string", + "description": "Etag identifies change in the resource.", + "readOnly": true + } + }, + "x-ms-azure-resource": true + }, + "Expression": { + "description": "Azure Data Factory expression definition.", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "Expression type.", + "enum": [ + "Expression" + ] + }, + "value": { + "type": "string", + "description": "Expression value." + } + }, + "required": [ + "type", + "value" + ] + }, + "SecureString": { + "x-ms-discriminator-value": "SecureString", + "description": "Azure Data Factory secure string definition. The string value will be masked with asterisks '*' during Get or List API calls.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/SecretBase" + } + ], + "properties": { + "value": { + "type": "string", + "description": "Value of secure string." + } + }, + "required": [ + "value" + ] + }, + "AzureKeyVaultSecretReference": { + "x-ms-discriminator-value": "AzureKeyVaultSecret", + "description": "Azure Key Vault secret reference.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/SecretBase" + } + ], + "properties": { + "store": { + "description": "The Azure Key Vault linked service reference.", + "$ref": "#/definitions/LinkedServiceReference" + }, + "secretName": { + "type": "object", + "description": "The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string)." + }, + "secretVersion": { + "type": "object", + "description": "The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string)." + } + }, + "required": [ + "store", + "secretName" + ] + }, + "SecretBase": { + "description": "The base definition of a secret type.", + "discriminator": "type", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "Type of the secret." + } + }, + "required": [ + "type" + ] + }, + "FactoryListResponse": { + "description": "A list of factory resources.", + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of factories.", + "items": { + "$ref": "#/definitions/Factory" + } + }, + "nextLink": { + "description": "The link to the next page of results, if any remaining results exist.", + "type": "string" + } + } + }, + "IntegrationRuntimeListResponse": { + "description": "A list of integration runtime resources.", + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of integration runtimes.", + "items": { + "$ref": "#/definitions/IntegrationRuntimeResource" + } + }, + "nextLink": { + "description": "The link to the next page of results, if any remaining results exist.", + "type": "string" + } + } + }, + "IntegrationRuntimeReference": { + "description": "Integration runtime reference type.", + "properties": { + "type": { + "type": "string", + "description": "Type of integration runtime.", + "enum": [ + "IntegrationRuntimeReference" + ] + }, + "referenceName": { + "type": "string", + "description": "Reference integration runtime name." + }, + "parameters": { + "$ref": "#/definitions/ParameterValueSpecification", + "description": "Arguments for integration runtime." + } + }, + "required": [ + "type", + "referenceName" + ] + }, + "IntegrationRuntimeResource": { + "description": "Integration runtime resource type.", + "allOf": [ + { + "$ref": "#/definitions/SubResource" + } + ], + "properties": { "properties": { - "value": { - "type": "string", - "description": "Value of secure string." - } - }, - "required": [ - "value" - ] + "$ref": "./entityTypes/IntegrationRuntime.json#/definitions/IntegrationRuntime", + "description": "Integration runtime properties." + } }, - "AzureKeyVaultSecretReference": { - "x-ms-discriminator-value": "AzureKeyVaultSecret", - "description": "Azure Key Vault secret reference.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/SecretBase" - } - ], - "properties": { - "store": { - "description": "The Azure Key Vault linked service reference.", - "$ref": "#/definitions/LinkedServiceReference" - }, - "secretName": { - "type": "object", - "description": "The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string)." - }, - "secretVersion": { - "type": "object", - "description": "The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string)." - } + "required": [ + "properties" + ] + }, + "IntegrationRuntimeStatusResponse": { + "description": "Integration runtime status response.", + "properties": { + "name": { + "type": "string", + "description": "The integration runtime name.", + "readOnly": true }, - "required": [ - "store", - "secretName" - ] - }, - "SecretBase": { - "description": "The base definition of a secret type.", - "discriminator": "type", - "type": "object", "properties": { - "type": { - "type": "string", - "description": "Type of the secret." - } - }, - "required": [ - "type" - ] + "$ref": "./entityTypes/IntegrationRuntime.json#/definitions/IntegrationRuntimeStatus", + "description": "Integration runtime properties." + } }, - "FactoryListResponse": { - "description": "A list of factory resources.", - "type": "object", - "required": [ - "value" - ], - "properties": { - "value": { - "type": "array", - "description": "List of factories.", - "items": { - "$ref": "#/definitions/Factory" - } - }, - "nextLink": { - "description": "The link to the next page of results, if any remaining results exist.", - "type": "string" - } + "required": [ + "properties" + ] + }, + "IntegrationRuntimeStatusListResponse": { + "description": "A list of integration runtime status.", + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of integration runtime status.", + "items": { + "$ref": "#/definitions/IntegrationRuntimeStatusResponse" + } + }, + "nextLink": { + "description": "The link to the next page of results, if any remaining results exist.", + "type": "string" + } + } + }, + "UpdateIntegrationRuntimeRequest": { + "description": "Update integration runtime request.", + "type": "object", + "properties": { + "autoUpdate": { + "description": "Enables or disables the auto-update feature of the self-hosted integration runtime. See https://go.microsoft.com/fwlink/?linkid=854189.", + "$ref": "./entityTypes/IntegrationRuntime.json#/definitions/IntegrationRuntimeAutoUpdate" + }, + "updateDelayOffset": { + "description": "The time offset (in hours) in the day, e.g., PT03H is 3 hours. The integration runtime auto update will happen on that time.", + "type": "string" + } + } + }, + "UpdateIntegrationRuntimeNodeRequest": { + "description": "Update integration runtime node request.", + "type": "object", + "properties": { + "concurrentJobsLimit": { + "description": "The number of concurrent jobs permitted to run on the integration runtime node. Values between 1 and maxConcurrentJobs(inclusive) are allowed.", + "type": "integer", + "minimum": 1 + } + } + }, + "LinkedServiceListResponse": { + "description": "A list of linked service resources.", + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of linked services.", + "items": { + "$ref": "#/definitions/LinkedServiceResource" + } + }, + "nextLink": { + "description": "The link to the next page of results, if any remaining results exist.", + "type": "string" + } + } + }, + "DatasetListResponse": { + "description": "A list of dataset resources.", + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of datasets.", + "items": { + "$ref": "#/definitions/DatasetResource" + } + }, + "nextLink": { + "description": "The link to the next page of results, if any remaining results exist.", + "type": "string" + } + } + }, + "PipelineListResponse": { + "description": "A list of pipeline resources.", + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of pipelines.", + "items": { + "$ref": "#/definitions/PipelineResource" + } + }, + "nextLink": { + "description": "The link to the next page of results, if any remaining results exist.", + "type": "string" + } + } + }, + "TriggerListResponse": { + "description": "A list of trigger resources.", + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of triggers.", + "items": { + "$ref": "#/definitions/TriggerResource" + } + }, + "nextLink": { + "description": "The link to the next page of results, if any remaining results exist.", + "type": "string" + } + } + }, + "CreateRunResponse": { + "description": "Response body with a run identifier.", + "type": "object", + "properties": { + "runId": { + "description": "Identifier of a run.", + "type": "string" } }, - "IntegrationRuntimeListResponse": { - "description": "A list of integration runtime resources.", - "type": "object", - "required": [ - "value" - ], - "properties": { - "value": { - "type": "array", - "description": "List of integration runtimes.", - "items": { - "$ref": "#/definitions/IntegrationRuntimeResource" - } - }, - "nextLink": { - "description": "The link to the next page of results, if any remaining results exist.", - "type": "string" + "required": [ + "runId" + ] + }, + "ErrorResponse": { + "description": "The object that defines the structure of an Azure Data Factory response.", + "type": "object", + "properties": { + "code": { + "description": "Error code.", + "type": "string" + }, + "message": { + "description": "Error message.", + "type": "string" + }, + "target": { + "description": "Property name/path in request associated with error.", + "type": "string" + }, + "details": { + "description": "Array with additional error details.", + "type": "array", + "items": { + "$ref": "#/definitions/ErrorResponse" } } }, - "IntegrationRuntimeReference": { - "description": "Integration runtime reference type.", - "properties": { - "type": { - "type": "string", - "description": "Type of integration runtime.", - "enum": [ - "IntegrationRuntimeReference" - ] - }, - "referenceName": { - "type": "string", - "description": "Reference integration runtime name." - }, - "parameters": { - "$ref": "#/definitions/ParameterValueSpecification", - "description": "Arguments for integration runtime." - } + "required": [ + "code", + "message" + ] + }, + "ParameterDefinitionSpecification": { + "description": "Definition of all parameters for an entity.", + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/ParameterSpecification" + } + }, + "ParameterSpecification": { + "description": "Definition of a single parameter for an entity.", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "Parameter type.", + "enum": [ + "Object", + "String", + "Int", + "Float", + "Bool", + "Array", + "SecureString" + ], + "x-ms-enum": { + "name": "ParameterType", + "modelAsString": true + } + }, + "defaultValue": { + "type": "object", + "description": "Default value of parameter." + } + }, + "required": [ + "type" + ] + }, + "ParameterValueSpecification": { + "description": "An object mapping parameter names to argument values.", + "type": "object", + "additionalProperties": { + "type": "object" + } + }, + "FactoryVSTSConfiguration": { + "description": "Factory's VSTS repo information.", + "properties": { + "accountName": { + "description": "VSTS account name.", + "type": "string" }, - "required": [ - "type", - "referenceName" - ] - }, - "IntegrationRuntimeResource": { - "description": "Integration runtime resource type.", - "allOf": [ - { - "$ref": "#/definitions/SubResource" - } - ], - "properties": { - "properties": { - "$ref": "./entityTypes/IntegrationRuntime.json#/definitions/IntegrationRuntime", - "description": "Integration runtime properties." - } + "projectName": { + "description": "VSTS project name.", + "type": "string" }, - "required": [ - "properties" - ] - }, - "IntegrationRuntimeStatusResponse": { - "description": "Integration runtime status response.", - "properties": { - "name": { - "type": "string", - "description": "The integration runtime name.", - "readOnly": true - }, - "properties": { - "$ref": "./entityTypes/IntegrationRuntime.json#/definitions/IntegrationRuntimeStatus", - "description": "Integration runtime properties." - } + "repositoryName": { + "description": "VSTS repository name.", + "type": "string" }, - "required": [ - "properties" - ] - }, - "IntegrationRuntimeStatusListResponse": { - "description": "A list of integration runtime status.", - "type": "object", - "required": [ - "value" - ], + "collaborationBranch": { + "description": "VSTS collaboration branch.", + "type": "string" + }, + "rootFolder": { + "description": "VSTS root folder.", + "type": "string" + }, + "lastCommitId": { + "description": "VSTS last commit id.", + "type": "string" + }, + "tenantId": { + "description": "VSTS tenant id.", + "type": "string" + } + } + }, + "FactoryRepoUpdate": { + "description": "Factory's VSTS repo information.", + "properties": { + "factoryResourceId": { + "description": "The factory resource id.", + "type": "string" + }, + "resourceGroupName": { + "description": "The resource group name.", + "type": "string" + }, + "vstsConfiguration": { + "$ref": "#/definitions/FactoryVSTSConfiguration", + "description": "VSTS repo information of the factory." + } + } + }, + "FactoryProperties": { + "description": "Factory resource properties.", + "properties": { + "provisioningState": { + "description": "Factory provisioning state, example Succeeded.", + "type": "string", + "readOnly": true + }, + "createTime": { + "description": "Time the factory was created in ISO8601 format.", + "type": "string", + "readOnly": true, + "format": "date-time" + }, + "version": { + "description": "Version of the factory.", + "type": "string", + "readOnly": true + }, + "vstsConfiguration": { + "$ref": "#/definitions/FactoryVSTSConfiguration", + "description": "VSTS repo information of the factory." + } + } + }, + "PipelineResource": { + "description": "Pipeline resource type.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/SubResource" + } + ], + "properties": { "properties": { - "value": { - "type": "array", - "description": "List of integration runtime status.", - "items": { - "$ref": "#/definitions/IntegrationRuntimeStatusResponse" - } - }, - "nextLink": { - "description": "The link to the next page of results, if any remaining results exist.", - "type": "string" - } + "x-ms-client-flatten": true, + "$ref": "./entityTypes/Pipeline.json#/definitions/Pipeline", + "description": "Properties of the pipeline." } }, - "UpdateIntegrationRuntimeRequest": { - "description": "Update integration runtime request.", - "type": "object", + "additionalProperties": { + "type": "object" + }, + "required": [ + "properties" + ] + }, + "PipelineReference": { + "description": "Pipeline reference type.", + "properties": { + "type": { + "type": "string", + "description": "Pipeline reference type.", + "enum": [ + "PipelineReference" + ] + }, + "referenceName": { + "type": "string", + "description": "Reference pipeline name." + }, + "name": { + "type": "string", + "description": "Reference name." + } + }, + "required": [ + "type", + "referenceName" + ] + }, + "TriggerPipelineReference": { + "description": "Pipeline that needs to be triggered with the given parameters.", + "properties": { + "pipelineReference": { + "description": "Pipeline reference.", + "$ref": "#/definitions/PipelineReference" + }, + "parameters": { + "description": "Pipeline parameters.", + "$ref": "#/definitions/ParameterValueSpecification" + } + } + }, + "TriggerResource": { + "description": "Trigger resource type.", + "allOf": [ + { + "$ref": "#/definitions/SubResource" + } + ], + "properties": { "properties": { - "autoUpdate": { - "description": "Enables or disables the auto-update feature of the self-hosted integration runtime. See https://go.microsoft.com/fwlink/?linkid=854189.", - "$ref": "./entityTypes/IntegrationRuntime.json#/definitions/IntegrationRuntimeAutoUpdate" - }, - "updateDelayOffset": { - "description": "The time offset (in hours) in the day, e.g., PT03H is 3 hours. The integration runtime auto update will happen on that time.", - "type": "string" - } + "$ref": "./entityTypes/Trigger.json#/definitions/Trigger", + "description": "Properties of the trigger." } }, - "UpdateIntegrationRuntimeNodeRequest": { - "description": "Update integration runtime node request.", - "type": "object", + "required": [ + "properties" + ] + }, + "Factory": { + "description": "Factory resource type.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "identity": { + "$ref": "#/definitions/FactoryIdentity", + "description": "Managed service identity of the factory." + }, "properties": { - "concurrentJobsLimit": { - "description": "The number of concurrent jobs permitted to run on the integration runtime node. Values between 1 and maxConcurrentJobs(inclusive) are allowed.", - "type": "integer", - "minimum": 1 - } + "x-ms-client-flatten": true, + "$ref": "#/definitions/FactoryProperties", + "description": "Properties of the factory." } }, - "LinkedServiceListResponse": { - "description": "A list of linked service resources.", - "type": "object", - "required": [ - "value" - ], - "properties": { - "value": { - "type": "array", - "description": "List of linked services.", - "items": { - "$ref": "#/definitions/LinkedServiceResource" - } - }, - "nextLink": { - "description": "The link to the next page of results, if any remaining results exist.", + "additionalProperties": { + "type": "object" + } + }, + "FactoryUpdateParameters": { + "description": "Parameters for updating a factory resource.", + "properties": { + "tags": { + "type": "object", + "additionalProperties": { "type": "string" - } + }, + "description": "The resource tags." + }, + "identity": { + "$ref": "#/definitions/FactoryIdentity", + "description": "Managed service identity of the factory." } - }, - "DatasetListResponse": { - "description": "A list of dataset resources.", - "type": "object", - "required": [ - "value" - ], + } + }, + "FactoryIdentity": { + "description": "Identity properties of the factory resource.", + "properties": { + "type": { + "type": "string", + "description": "The identity type. Currently the only supported type is 'SystemAssigned'.", + "enum": [ + "SystemAssigned" + ], + "x-ms-enum": { + "name": "FactoryIdentityType", + "modelAsString": false + } + }, + "principalId": { + "type": "string", + "format": "uuid", + "readOnly": true, + "description": "The principal id of the identity." + }, + "tenantId": { + "type": "string", + "format": "uuid", + "readOnly": true, + "description": "The client tenant id of the identity." + } + }, + "required": [ + "type" + ] + }, + "DatasetReference": { + "description": "Dataset reference type.", + "properties": { + "type": { + "type": "string", + "description": "Dataset reference type.", + "enum": [ + "DatasetReference" + ] + }, + "referenceName": { + "type": "string", + "description": "Reference dataset name." + }, + "parameters": { + "$ref": "#/definitions/ParameterValueSpecification", + "description": "Arguments for dataset." + } + }, + "required": [ + "type", + "referenceName" + ] + }, + "DatasetResource": { + "description": "Dataset resource type.", + "allOf": [ + { + "$ref": "#/definitions/SubResource" + } + ], + "properties": { "properties": { - "value": { - "type": "array", - "description": "List of datasets.", - "items": { - "$ref": "#/definitions/DatasetResource" - } - }, - "nextLink": { - "description": "The link to the next page of results, if any remaining results exist.", - "type": "string" - } + "$ref": "./entityTypes/Dataset.json#/definitions/Dataset", + "description": "Dataset properties." } }, - "PipelineListResponse": { - "description": "A list of pipeline resources.", - "type": "object", - "required": [ - "value" - ], + "required": [ + "properties" + ] + }, + "LinkedServiceReference": { + "description": "Linked service reference type.", + "properties": { + "type": { + "type": "string", + "description": "Linked service reference type.", + "enum": [ + "LinkedServiceReference" + ] + }, + "referenceName": { + "type": "string", + "description": "Reference LinkedService name." + }, + "parameters": { + "$ref": "#/definitions/ParameterValueSpecification", + "description": "Arguments for LinkedService." + } + }, + "required": [ + "type", + "referenceName" + ] + }, + "LinkedServiceResource": { + "description": "Linked service resource type.", + "allOf": [ + { + "$ref": "#/definitions/SubResource" + } + ], + "properties": { "properties": { - "value": { - "type": "array", - "description": "List of pipelines.", - "items": { - "$ref": "#/definitions/PipelineResource" - } - }, - "nextLink": { - "description": "The link to the next page of results, if any remaining results exist.", - "type": "string" - } + "$ref": "./entityTypes/LinkedService.json#/definitions/LinkedService", + "description": "Properties of linked service." } }, - "TriggerListResponse": { - "description": "A list of trigger resources.", - "type": "object", - "required": [ - "value" - ], - "properties": { - "value": { - "type": "array", - "description": "List of triggers.", - "items": { - "$ref": "#/definitions/TriggerResource" - } - }, - "nextLink": { - "description": "The link to the next page of results, if any remaining results exist.", + "required": [ + "properties" + ] + }, + "PipelineRunFilterParameters": { + "description": "Query parameters for listing pipeline runs.", + "type": "object", + "properties": { + "continuationToken": { + "description": "The continuation token for getting the next page of results. Null for first page.", + "type": "string" + }, + "lastUpdatedAfter": { + "description": "The time at or after which the pipeline run event was updated in 'ISO 8601' format.", + "type": "string", + "format": "date-time" + }, + "lastUpdatedBefore": { + "description": "The time at or before which the pipeline run event was updated in 'ISO 8601' format.", + "type": "string", + "format": "date-time" + }, + "filters": { + "type": "array", + "description": "List of filters.", + "items": { + "$ref": "#/definitions/PipelineRunQueryFilter" + } + }, + "orderBy": { + "type": "array", + "description": "List of OrderBy option.", + "items": { + "$ref": "#/definitions/PipelineRunQueryOrderBy" + } + } + }, + "required": [ + "lastUpdatedAfter", + "lastUpdatedBefore" + ] + }, + "PipelineRunQueryFilter": { + "description": "Query filter option for listing pipeline runs.", + "type": "object", + "properties": { + "operand": { + "description": "Parameter name to be used for filter.", + "type": "string", + "enum": [ + "PipelineName", + "Status", + "RunStart", + "RunEnd" + ], + "x-ms-enum": { + "name": "PipelineRunQueryFilterOperand", + "modelAsString": true + } + }, + "operator": { + "description": "Operator to be used for filter.", + "type": "string", + "enum": [ + "Equals", + "NotEquals", + "In", + "NotIn" + ], + "x-ms-enum": { + "name": "PipelineRunQueryFilterOperator", + "modelAsString": true + } + }, + "values": { + "type": "array", + "description": "List of filter values.", + "items": { "type": "string" } } }, - "CreateRunResponse": { - "description": "Response body with a run identifier.", - "type": "object", - "properties": { - "runId": { - "description": "Identifier of a run.", + "required": [ + "operand", + "operator", + "values" + ] + }, + "PipelineRunQueryOrderBy": { + "description": "An object to provide order by options for listing pipeline runs.", + "type": "object", + "properties": { + "orderBy": { + "description": "Parameter name to be used for order by.", + "type": "string", + "enum": [ + "RunStart", + "RunEnd" + ], + "x-ms-enum": { + "name": "PipelineRunQueryOrderByField", + "modelAsString": true + } + }, + "order": { + "description": "Sorting order of the parameter.", + "type": "string", + "enum": [ + "ASC", + "DESC" + ], + "x-ms-enum": { + "name": "PipelineRunQueryOrder", + "modelAsString": true + } + } + }, + "required": [ + "orderBy", + "order" + ] + }, + "PipelineRunQueryResponse": { + "description": "A list pipeline runs.", + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of pipeline runs.", + "items": { + "$ref": "#/definitions/PipelineRun" + } + }, + "continuationToken": { + "description": "The continuation token for getting the next page of results, if any remaining results exist, null otherwise.", + "type": "string" + } + } + }, + "PipelineRun": { + "description": "Information about a pipeline run.", + "type": "object", + "properties": { + "runId": { + "description": "Identifier of a run.", + "type": "string", + "readOnly": true + }, + "pipelineName": { + "description": "The pipeline name.", + "type": "string", + "readOnly": true + }, + "parameters": { + "description": "The full or partial list of parameter name, value pair used in the pipeline run.", + "type": "object", + "additionalProperties": { "type": "string" - } + }, + "readOnly": true + }, + "invokedBy": { + "description": "Entity that started the pipeline run.", + "$ref": "#/definitions/PipelineRunInvokedBy", + "readOnly": true + }, + "lastUpdated": { + "description": "The last updated timestamp for the pipeline run event in ISO8601 format.", + "type": "string", + "format": "date-time", + "readOnly": true + }, + "runStart": { + "description": "The start time of a pipeline run in ISO8601 format.", + "type": "string", + "format": "date-time", + "readOnly": true + }, + "runEnd": { + "description": "The end time of a pipeline run in ISO8601 format.", + "type": "string", + "format": "date-time", + "readOnly": true + }, + "durationInMs": { + "description": "The duration of a pipeline run.", + "type": "integer", + "readOnly": true + }, + "status": { + "description": "The status of a pipeline run.", + "type": "string", + "readOnly": true + }, + "message": { + "description": "The message from a pipeline run.", + "type": "string", + "readOnly": true + } + }, + "additionalProperties": { + "type": "object" + } + }, + "PipelineRunInvokedBy": { + "description": "Provides entity name and id that started the pipeline run.", + "type": "object", + "properties": { + "name": { + "description": "Name of the entity that started the pipeline run.", + "type": "string", + "readOnly": true + }, + "id": { + "description": "The ID of the entity that started the run.", + "type": "string", + "readOnly": true + } + } + }, + "ActivityRunsListResponse": { + "description": "A list activity runs.", + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of activity runs.", + "items": { + "$ref": "#/definitions/ActivityRun" + } + }, + "nextLink": { + "description": "The link to the next page of results, if any remaining results exist.", + "type": "string" + } + } + }, + "ActivityRun": { + "description": "Information about an activity run in a pipeline.", + "type": "object", + "properties": { + "pipelineName": { + "description": "The name of the pipeline.", + "type": "string", + "readOnly": true + }, + "pipelineRunId": { + "description": "The id of the pipeline run.", + "type": "string", + "readOnly": true + }, + "activityName": { + "description": "The name of the activity.", + "type": "string", + "readOnly": true + }, + "activityType": { + "description": "The type of the activity.", + "type": "string", + "readOnly": true + }, + "activityRunId": { + "description": "The id of the activity run.", + "type": "string", + "readOnly": true + }, + "linkedServiceName": { + "description": "The name of the compute linked service.", + "type": "string", + "readOnly": true + }, + "status": { + "description": "The status of the activity run.", + "type": "string", + "readOnly": true + }, + "activityRunStart": { + "description": "The start time of the activity run in 'ISO 8601' format.", + "type": "string", + "format": "date-time", + "readOnly": true + }, + "activityRunEnd": { + "description": "The end time of the activity run in 'ISO 8601' format.", + "type": "string", + "format": "date-time", + "readOnly": true + }, + "durationInMs": { + "description": "The duration of the activity run.", + "type": "integer", + "readOnly": true + }, + "input": { + "description": "The input for the activity.", + "type": "object", + "readOnly": true + }, + "output": { + "description": "The output for the activity.", + "type": "object", + "readOnly": true + }, + "error": { + "description": "The error if any from the activity run.", + "type": "object", + "readOnly": true + } + }, + "additionalProperties": { + "type": "object" + } + }, + "TriggerRunListResponse": { + "description": "A list of trigger runs.", + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of trigger runs.", + "items": { + "$ref": "#/definitions/TriggerRun" + } + }, + "nextLink": { + "description": "The link to the next page of results, if any remaining results exist.", + "type": "string" + } + } + }, + "TriggerRun": { + "description": "Trigger runs.", + "type": "object", + "properties": { + "triggerRunId": { + "type": "string", + "description": "Trigger run id.", + "readOnly": true + }, + "triggerName": { + "type": "string", + "description": "Trigger name.", + "readOnly": true + }, + "triggerType": { + "type": "string", + "description": "Trigger type.", + "readOnly": true + }, + "triggerRunTimestamp": { + "type": "string", + "format": "date-time", + "description": "Trigger run start time.", + "readOnly": true + }, + "status": { + "type": "string", + "enum": [ + "Succeeded", + "Failed", + "Inprogress" + ], + "x-ms-enum": { + "name": "TriggerRunStatus", + "modelAsString": true + }, + "description": "Trigger run status.", + "readOnly": true + }, + "message": { + "type": "string", + "description": "Trigger error message.", + "readOnly": true }, - "required": [ - "runId" - ] - }, - "ErrorResponse": { - "description": "The object that defines the structure of an Azure Data Factory response.", - "type": "object", "properties": { - "code": { - "description": "Error code.", - "type": "string" - }, - "message": { - "description": "Error message.", + "description": "List of property name and value related to trigger run. Name, value pair depends on type of trigger.", + "type": "object", + "additionalProperties": { "type": "string" }, - "target": { - "description": "Property name/path in request associated with error.", + "readOnly": true + }, + "triggeredPipelines": { + "description": "List of pipeline name and run Id triggered by the trigger run.", + "type": "object", + "additionalProperties": { "type": "string" }, - "details": { - "description": "Array with additional error details.", - "type": "array", - "items": { - "$ref": "#/definitions/ErrorResponse" - } - } - }, - "required": [ - "code", - "message" - ] - }, - "ParameterDefinitionSpecification": { - "description": "Definition of all parameters for an entity.", - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/ParameterSpecification" + "readOnly": true } }, - "ParameterSpecification": { - "description": "Definition of a single parameter for an entity.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "Parameter type.", - "enum": [ - "Object", - "String", - "Int", - "Float", - "Bool", - "Array", - "SecureString" - ], - "x-ms-enum": { - "name": "ParameterType", - "modelAsString": true - } - }, - "defaultValue": { - "type": "object", - "description": "Default value of parameter." - } - }, - "required": [ - "type" - ] - }, - "ParameterValueSpecification": { - "description": "An object mapping parameter names to argument values.", - "type": "object", - "additionalProperties": { - "type": "object" + "additionalProperties": { + "type": "object" + } + }, + "OperationListResponse": { + "description": "A list of operations that can be performed by the Data Factory service.", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/Operation" + }, + "description": "List of Data Factory operations supported by the Data Factory resource provider." + }, + "nextLink": { + "type": "string", + "description": "The link to the next page of results, if any remaining results exist." } - }, - "FactoryVSTSConfiguration": { - "description": "Factory's VSTS repo information.", - "properties": { - "accountName": { - "description": "VSTS account name.", - "type": "string" - }, - "projectName": { - "description": "VSTS project name.", - "type": "string" - }, - "repositoryName": { - "description": "VSTS repository name.", - "type": "string" - }, - "collaborationBranch": { - "description": "VSTS collaboration branch.", - "type": "string" - }, - "rootFolder": { - "description": "VSTS root folder.", - "type": "string" - }, - "lastCommitId": { - "description": "VSTS last commit id.", - "type": "string" - }, - "tenantId": { - "description": "VSTS tenant id.", - "type": "string" - } - } - }, - "FactoryRepoUpdate": { - "description": "Factory's VSTS repo information.", - "properties": { - "factoryResourceId": { - "description": "The factory resource id.", - "type": "string" - }, - "resourceGroupName": { - "description": "The resource group name.", - "type": "string" - }, - "vstsConfiguration": { - "$ref": "#/definitions/FactoryVSTSConfiguration", - "description": "VSTS repo information of the factory." - } - } - }, - "FactoryProperties": { - "description": "Factory resource properties.", - "properties": { - "provisioningState": { - "description": "Factory provisioning state, example Succeeded.", - "type": "string", - "readOnly": true - }, - "createTime": { - "description": "Time the factory was created in ISO8601 format.", - "type": "string", - "readOnly": true, - "format": "date-time" - }, - "version": { - "description": "Version of the factory.", - "type": "string", - "readOnly": true - }, - "vstsConfiguration": { - "$ref": "#/definitions/FactoryVSTSConfiguration", - "description": "VSTS repo information of the factory." - } - } - }, - "PipelineResource": { - "description": "Pipeline resource type.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/SubResource" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "./entityTypes/Pipeline.json#/definitions/Pipeline", - "description": "Properties of the pipeline." - } - }, - "additionalProperties": { - "type": "object" - }, - "required": [ - "properties" - ] - }, - "PipelineReference": { - "description": "Pipeline reference type.", - "properties": { - "type": { - "type": "string", - "description": "Pipeline reference type.", - "enum": [ - "PipelineReference" - ] - }, - "referenceName": { - "type": "string", - "description": "Reference pipeline name." - }, - "name": { - "type": "string", - "description": "Reference name." - } - }, - "required": [ - "type", - "referenceName" - ] - }, - "TriggerPipelineReference": { - "description": "Pipeline that needs to be triggered with the given parameters.", - "properties": { - "pipelineReference": { - "description": "Pipeline reference.", - "$ref": "#/definitions/PipelineReference" - }, - "parameters": { - "description": "Pipeline parameters.", - "$ref": "#/definitions/ParameterValueSpecification" - } - } - }, - "TriggerResource": { - "description": "Trigger resource type.", - "allOf": [ - { - "$ref": "#/definitions/SubResource" - } - ], - "properties": { - "properties": { - "$ref": "./entityTypes/Trigger.json#/definitions/Trigger", - "description": "Properties of the trigger." - } - }, - "required": [ - "properties" - ] - }, - "Factory": { - "description": "Factory resource type.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "identity": { - "$ref": "#/definitions/FactoryIdentity", - "description": "Managed service identity of the factory." - }, + } + }, + "Operation": { + "description": "Azure Data Factory API operation definition.", + "type": "object", + "properties": { + "name": { + "description": "Operation name: {provider}/{resource}/{operation}", + "type": "string" + }, + "origin": { + "description": "The intended executor of the operation.", + "type": "string" + }, + "display": { + "description": "Metadata associated with the operation.", "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/FactoryProperties", - "description": "Properties of the factory." - } - }, - "additionalProperties": { - "type": "object" - } - }, - "FactoryUpdateParameters": { - "description": "Parameters for updating a factory resource.", - "properties": { - "tags": { - "type": "object", - "additionalProperties": { + "description": { + "description": "The description of the operation.", "type": "string" }, - "description": "The resource tags." - }, - "identity": { - "$ref": "#/definitions/FactoryIdentity", - "description": "Managed service identity of the factory." - } - } - }, - "FactoryIdentity": { - "description": "Identity properties of the factory resource.", - "properties": { - "type": { - "type": "string", - "description": "The identity type. Currently the only supported type is 'SystemAssigned'.", - "enum": [ - "SystemAssigned" - ], - "x-ms-enum": { - "name": "FactoryIdentityType", - "modelAsString": false + "provider": { + "description": "The name of the provider.", + "type": "string" + }, + "resource": { + "description": "The name of the resource type on which the operation is performed.", + "type": "string" + }, + "operation": { + "description": "The type of operation: get, read, delete, etc.", + "type": "string" } - }, - "principalId": { - "type": "string", - "format": "uuid", - "readOnly": true, - "description": "The principal id of the identity." - }, - "tenantId": { - "type": "string", - "format": "uuid", - "readOnly": true, - "description": "The client tenant id of the identity." } }, - "required": [ - "type" - ] - }, - "DatasetReference": { - "description": "Dataset reference type.", "properties": { - "type": { - "type": "string", - "description": "Dataset reference type.", - "enum": [ - "DatasetReference" - ] - }, - "referenceName": { - "type": "string", - "description": "Reference dataset name." - }, - "parameters": { - "$ref": "#/definitions/ParameterValueSpecification", - "description": "Arguments for dataset." + "description": "Additional details about the operation.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/OperationProperties" + } + } + }, + "OperationProperties": { + "description": "Additional details about an operation.", + "type": "object", + "x-ms-client-flatten": true, + "properties": { + "serviceSpecification": { + "description": "Details about a service operation.", + "$ref": "#/definitions/OperationServiceSpecification" + } + } + }, + "OperationServiceSpecification": { + "description": "Details about a service operation.", + "type": "object", + "properties": { + "logSpecifications": { + "description": "Details about operations related to logs.", + "type": "array", + "items": { + "$ref": "#/definitions/OperationLogSpecification" } }, - "required": [ - "type", - "referenceName" - ] - }, - "DatasetResource": { - "description": "Dataset resource type.", - "allOf": [ - { - "$ref": "#/definitions/SubResource" - } - ], - "properties": { - "properties": { - "$ref": "./entityTypes/Dataset.json#/definitions/Dataset", - "description": "Dataset properties." - } - }, - "required": [ - "properties" - ] - }, - "LinkedServiceReference": { - "description": "Linked service reference type.", - "properties": { - "type": { - "type": "string", - "description": "Linked service reference type.", - "enum": [ - "LinkedServiceReference" - ] - }, - "referenceName": { - "type": "string", - "description": "Reference LinkedService name." - }, - "parameters": { - "$ref": "#/definitions/ParameterValueSpecification", - "description": "Arguments for LinkedService." + "metricSpecifications": { + "description": "Details about operations related to metrics.", + "type": "array", + "items": { + "$ref": "#/definitions/OperationMetricSpecification" } + } + } + }, + "OperationLogSpecification": { + "description": "Details about an operation related to logs.", + "type": "object", + "properties": { + "name": { + "description": "The name of the log category.", + "type": "string" + }, + "displayName": { + "description": "Localized display name.", + "type": "string" + }, + "blobDuration": { + "description": "Blobs created in the customer storage account, per hour.", + "type": "string" + } + } + }, + "OperationMetricSpecification": { + "description": "Details about an operation related to metrics.", + "type": "object", + "properties": { + "name": { + "description": "The name of the metric.", + "type": "string" }, - "required": [ - "type", - "referenceName" - ] - }, - "LinkedServiceResource": { - "description": "Linked service resource type.", - "allOf": [ - { - "$ref": "#/definitions/SubResource" - } - ], - "properties": { - "properties": { - "$ref": "./entityTypes/LinkedService.json#/definitions/LinkedService", - "description": "Properties of linked service." - } + "displayName": { + "description": "Localized display name of the metric.", + "type": "string" }, - "required": [ - "properties" - ] - }, - "PipelineRunFilterParameters": { - "description": "Query parameters for listing pipeline runs.", - "type": "object", - "properties": { - "continuationToken": { - "description": "The continuation token for getting the next page of results. Null for first page.", - "type": "string" - }, - "lastUpdatedAfter": { - "description": "The time at or after which the pipeline run event was updated in 'ISO 8601' format.", - "type": "string", - "format": "date-time" - }, - "lastUpdatedBefore": { - "description": "The time at or before which the pipeline run event was updated in 'ISO 8601' format.", - "type": "string", - "format": "date-time" - }, - "filters": { - "type": "array", - "description": "List of filters.", - "items": { - "$ref": "#/definitions/PipelineRunQueryFilter" - } - }, - "orderBy": { - "type": "array", - "description": "List of OrderBy option.", - "items": { - "$ref": "#/definitions/PipelineRunQueryOrderBy" - } - } + "displayDescription": { + "description": "The description of the metric.", + "type": "string" }, - "required": [ - "lastUpdatedAfter", - "lastUpdatedBefore" - ] - }, - "PipelineRunQueryFilter": { - "description": "Query filter option for listing pipeline runs.", - "type": "object", - "properties": { - "operand": { - "description": "Parameter name to be used for filter.", - "type": "string", - "enum": [ - "PipelineName", - "Status", - "RunStart", - "RunEnd" - ], - "x-ms-enum": { - "name": "PipelineRunQueryFilterOperand", - "modelAsString": true - } - }, - "operator": { - "description": "Operator to be used for filter.", - "type": "string", - "enum": [ - "Equals", - "NotEquals", - "In", - "NotIn" - ], - "x-ms-enum": { - "name": "PipelineRunQueryFilterOperator", - "modelAsString": true - } - }, - "values": { - "type": "array", - "description": "List of filter values.", - "items": { - "type": "string" - } - } + "unit": { + "description": "The unit that the metric is measured in.", + "type": "string" }, - "required": [ - "operand", - "operator", - "values" - ] - }, - "PipelineRunQueryOrderBy": { - "description": "An object to provide order by options for listing pipeline runs.", - "type": "object", - "properties": { - "orderBy": { - "description": "Parameter name to be used for order by.", - "type": "string", - "enum": [ - "RunStart", - "RunEnd" - ], - "x-ms-enum": { - "name": "PipelineRunQueryOrderByField", - "modelAsString": true - } - }, - "order": { - "description": "Sorting order of the parameter.", - "type": "string", - "enum": [ - "ASC", - "DESC" - ], - "x-ms-enum": { - "name": "PipelineRunQueryOrder", - "modelAsString": true - } - } + "aggregationType": { + "description": "The type of metric aggregation.", + "type": "string" }, - "required": [ - "orderBy", - "order" - ] - }, - "PipelineRunQueryResponse": { - "description": "A list pipeline runs.", - "type": "object", - "required": [ - "value" - ], - "properties": { - "value": { - "type": "array", - "description": "List of pipeline runs.", - "items": { - "$ref": "#/definitions/PipelineRun" - } - }, - "continuationToken": { - "description": "The continuation token for getting the next page of results, if any remaining results exist, null otherwise.", - "type": "string" - } - } - }, - "PipelineRun": { - "description": "Information about a pipeline run.", - "type": "object", - "properties": { - "runId": { - "description": "Identifier of a run.", - "type": "string", - "readOnly": true - }, - "pipelineName": { - "description": "The pipeline name.", - "type": "string", - "readOnly": true - }, - "parameters": { - "description": "The full or partial list of parameter name, value pair used in the pipeline run.", - "type": "object", - "additionalProperties": { - "type": "string" - }, - "readOnly": true - }, - "invokedBy": { - "description": "Entity that started the pipeline run.", - "$ref": "#/definitions/PipelineRunInvokedBy", - "readOnly": true - }, - "lastUpdated": { - "description": "The last updated timestamp for the pipeline run event in ISO8601 format.", - "type": "string", - "format": "date-time", - "readOnly": true - }, - "runStart": { - "description": "The start time of a pipeline run in ISO8601 format.", - "type": "string", - "format": "date-time", - "readOnly": true - }, - "runEnd": { - "description": "The end time of a pipeline run in ISO8601 format.", - "type": "string", - "format": "date-time", - "readOnly": true - }, - "durationInMs": { - "description": "The duration of a pipeline run.", - "type": "integer", - "readOnly": true - }, - "status": { - "description": "The status of a pipeline run.", - "type": "string", - "readOnly": true - }, - "message": { - "description": "The message from a pipeline run.", - "type": "string", - "readOnly": true - } + "enableRegionalMdmAccount": { + "description": "Whether or not the service is using regional MDM accounts.", + "type": "string" }, - "additionalProperties": { - "type": "object" - } - }, - "PipelineRunInvokedBy": { - "description": "Provides entity name and id that started the pipeline run.", - "type": "object", - "properties": { - "name": { - "description": "Name of the entity that started the pipeline run.", - "type": "string", - "readOnly": true - }, - "id": { - "description": "The ID of the entity that started the run.", - "type": "string", - "readOnly": true - } - } - }, - "ActivityRunsListResponse": { - "description": "A list activity runs.", - "type": "object", - "required": [ - "value" - ], - "properties": { - "value": { - "type": "array", - "description": "List of activity runs.", - "items": { - "$ref": "#/definitions/ActivityRun" - } - }, - "nextLink": { - "description": "The link to the next page of results, if any remaining results exist.", - "type": "string" - } - } - }, - "ActivityRun": { - "description": "Information about an activity run in a pipeline.", - "type": "object", - "properties": { - "pipelineName": { - "description": "The name of the pipeline.", - "type": "string", - "readOnly": true - }, - "pipelineRunId": { - "description": "The id of the pipeline run.", - "type": "string", - "readOnly": true - }, - "activityName": { - "description": "The name of the activity.", - "type": "string", - "readOnly": true - }, - "activityType": { - "description": "The type of the activity.", - "type": "string", - "readOnly": true - }, - "activityRunId": { - "description": "The id of the activity run.", - "type": "string", - "readOnly": true - }, - "linkedServiceName": { - "description": "The name of the compute linked service.", - "type": "string", - "readOnly": true - }, - "status": { - "description": "The status of the activity run.", - "type": "string", - "readOnly": true - }, - "activityRunStart": { - "description": "The start time of the activity run in 'ISO 8601' format.", - "type": "string", - "format": "date-time", - "readOnly": true - }, - "activityRunEnd": { - "description": "The end time of the activity run in 'ISO 8601' format.", - "type": "string", - "format": "date-time", - "readOnly": true - }, - "durationInMs": { - "description": "The duration of the activity run.", - "type": "integer", - "readOnly": true - }, - "input": { - "description": "The input for the activity.", - "type": "object", - "readOnly": true - }, - "output": { - "description": "The output for the activity.", - "type": "object", - "readOnly": true - }, - "error": { - "description": "The error if any from the activity run.", - "type": "object", - "readOnly": true - } + "sourceMdmAccount": { + "description": "The name of the MDM account.", + "type": "string" }, - "additionalProperties": { - "type": "object" - } - }, - "TriggerRunListResponse": { - "description": "A list of trigger runs.", - "type": "object", - "required": [ - "value" - ], - "properties": { - "value": { - "type": "array", - "description": "List of trigger runs.", - "items": { - "$ref": "#/definitions/TriggerRun" - } - }, - "nextLink": { - "description": "The link to the next page of results, if any remaining results exist.", - "type": "string" - } - } - }, - "TriggerRun": { - "description": "Trigger runs.", - "type": "object", - "properties": { - "triggerRunId": { - "type": "string", - "description": "Trigger run id.", - "readOnly": true - }, - "triggerName": { - "type": "string", - "description": "Trigger name.", - "readOnly": true - }, - "triggerType": { - "type": "string", - "description": "Trigger type.", - "readOnly": true - }, - "triggerRunTimestamp": { - "type": "string", - "format": "date-time", - "description": "Trigger run start time.", - "readOnly": true - }, - "status": { - "type": "string", - "enum": [ - "Succeeded", - "Failed", - "Inprogress" - ], - "x-ms-enum": { - "name": "TriggerRunStatus", - "modelAsString": true - }, - "description": "Trigger run status.", - "readOnly": true - }, - "message": { - "type": "string", - "description": "Trigger error message.", - "readOnly": true - }, - "properties": { - "description": "List of property name and value related to trigger run. Name, value pair depends on type of trigger.", - "type": "object", - "additionalProperties": { - "type": "string" - }, - "readOnly": true - }, - "triggeredPipelines": { - "description": "List of pipeline name and run Id triggered by the trigger run.", - "type": "object", - "additionalProperties": { - "type": "string" - }, - "readOnly": true - } + "sourceMdmNamespace": { + "description": "The name of the MDM namespace.", + "type": "string" }, - "additionalProperties": { - "type": "object" - } - }, - "OperationListResponse": { - "description": "A list of operations that can be performed by the Data Factory service.", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/Operation" - }, - "description": "List of Data Factory operations supported by the Data Factory resource provider." - }, - "nextLink": { - "type": "string", - "description": "The link to the next page of results, if any remaining results exist." - } - } - }, - "Operation": { - "description": "Azure Data Factory API operation definition.", - "type": "object", - "properties": { - "name": { - "description": "Operation name: {provider}/{resource}/{operation}", - "type": "string" - }, - "origin": { - "description": "The intended executor of the operation.", - "type": "string" - }, - "display": { - "description": "Metadata associated with the operation.", - "properties": { - "description": { - "description": "The description of the operation.", - "type": "string" - }, - "provider": { - "description": "The name of the provider.", - "type": "string" - }, - "resource": { - "description": "The name of the resource type on which the operation is performed.", - "type": "string" - }, - "operation": { - "description": "The type of operation: get, read, delete, etc.", - "type": "string" - } - } - }, - "properties": { - "description": "Additional details about the operation.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/OperationProperties" - } - } - }, - "OperationProperties": { - "description": "Additional details about an operation.", - "type": "object", - "x-ms-client-flatten": true, - "properties": { - "serviceSpecification": { - "description": "Details about a service operation.", - "$ref": "#/definitions/OperationServiceSpecification" - } - } - }, - "OperationServiceSpecification": { - "description": "Details about a service operation.", - "type": "object", - "properties": { - "logSpecifications": { - "description": "Details about operations related to logs.", - "type": "array", - "items": { - "$ref": "#/definitions/OperationLogSpecification" - } - }, - "metricSpecifications": { - "description": "Details about operations related to metrics.", - "type": "array", - "items": { - "$ref": "#/definitions/OperationMetricSpecification" - } - } - } - }, - "OperationLogSpecification": { - "description": "Details about an operation related to logs.", - "type": "object", - "properties": { - "name": { - "description": "The name of the log category.", - "type": "string" - }, - "displayName": { - "description": "Localized display name.", - "type": "string" - }, - "blobDuration": { - "description": "Blobs created in the customer storage account, per hour.", - "type": "string" - } - } - }, - "OperationMetricSpecification": { - "description": "Details about an operation related to metrics.", - "type": "object", - "properties": { - "name": { - "description": "The name of the metric.", - "type": "string" - }, - "displayName": { - "description": "Localized display name of the metric.", - "type": "string" - }, - "displayDescription": { - "description": "The description of the metric.", - "type": "string" - }, - "unit": { - "description": "The unit that the metric is measured in.", - "type": "string" - }, - "aggregationType": { - "description": "The type of metric aggregation.", - "type": "string" - }, - "enableRegionalMdmAccount": { - "description": "Whether or not the service is using regional MDM accounts.", - "type": "string" - }, - "sourceMdmAccount": { - "description": "The name of the MDM account.", - "type": "string" - }, - "sourceMdmNamespace": { - "description": "The name of the MDM namespace.", - "type": "string" - }, - "availabilities": { - "description": "Defines how often data for metrics becomes available.", - "type": "array", - "items": { - "$ref": "#/definitions/OperationMetricAvailability" - } - } - } - }, - "OperationMetricAvailability": { - "description": "Defines how often data for a metric becomes available.", - "type": "object", - "properties": { - "timeGrain": { - "description": "The granularity for the metric.", - "type": "string" - }, - "blobDuration": { - "description": "Blob created in the customer storage account, per hour.", - "type": "string" + "availabilities": { + "description": "Defines how often data for metrics becomes available.", + "type": "array", + "items": { + "$ref": "#/definitions/OperationMetricAvailability" } } } }, - "parameters": { - "subscriptionId": { - "name": "subscriptionId", - "description": "The subscription identifier.", - "in": "path", - "required": true, - "type": "string" - }, - "resourceGroupName": { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string", - "pattern": "^[-\\w\\._\\(\\)]+$", - "minLength": 1, - "maxLength": 90, - "x-ms-parameter-location": "method" - }, - "factoryName": { - "name": "factoryName", - "description": "The factory name.", - "in": "path", - "required": true, - "type": "string", - "pattern": "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$", - "minLength": 3, - "maxLength": 63, - "x-ms-parameter-location": "method" - }, - "locationId": { - "name": "locationId", - "description": "The location identifier.", - "in": "path", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "linkedServiceName": { - "name": "linkedServiceName", - "description": "The linked service name.", - "in": "path", - "required": true, - "type": "string", - "pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$", - "minLength": 1, - "maxLength": 260, - "x-ms-parameter-location": "method" - }, - "datasetName": { - "name": "datasetName", - "description": "The dataset name.", - "in": "path", - "required": true, - "type": "string", - "pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$", - "minLength": 1, - "maxLength": 260, - "x-ms-parameter-location": "method" - }, - "pipelineName": { - "name": "pipelineName", - "description": "The pipeline name.", - "in": "path", - "required": true, - "type": "string", - "pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$", - "minLength": 1, - "maxLength": 260, - "x-ms-parameter-location": "method" - }, - "triggerName": { - "name": "triggerName", - "description": "The trigger name.", - "in": "path", - "required": true, - "type": "string", - "pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$", - "minLength": 1, - "maxLength": 260, - "x-ms-parameter-location": "method" - }, - "runId": { - "name": "runId", - "description": "The pipeline run identifier.", - "in": "path", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "referencePipelineRunId": { - "name": "referencePipelineRunId", - "description": "The pipeline run identifier.", - "in": "path", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "integrationRuntimeName": { - "name": "integrationRuntimeName", - "description": "The integration runtime name.", - "in": "path", - "required": true, - "type": "string", - "pattern": "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$", - "minLength": 3, - "maxLength": 63, - "x-ms-parameter-location": "method" - }, - "nodeName": { - "name": "nodeName", - "description": "The integration runtime node name.", - "in": "path", - "required": true, - "type": "string", - "pattern": "^[a-z0-9A-Z][a-z0-9A-Z_-]{0,149}$", - "minLength": 1, - "maxLength": 150, - "x-ms-parameter-location": "method" - }, - "api-version": { - "name": "api-version", - "description": "The API version.", - "in": "query", - "required": true, - "type": "string" + "OperationMetricAvailability": { + "description": "Defines how often data for a metric becomes available.", + "type": "object", + "properties": { + "timeGrain": { + "description": "The granularity for the metric.", + "type": "string" + }, + "blobDuration": { + "description": "Blob created in the customer storage account, per hour.", + "type": "string" + } } } + }, + "parameters": { + "subscriptionId": { + "name": "subscriptionId", + "description": "The subscription identifier.", + "in": "path", + "required": true, + "type": "string" + }, + "resourceGroupName": { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string", + "pattern": "^[-\\w\\._\\(\\)]+$", + "minLength": 1, + "maxLength": 90, + "x-ms-parameter-location": "method" + }, + "factoryName": { + "name": "factoryName", + "description": "The factory name.", + "in": "path", + "required": true, + "type": "string", + "pattern": "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$", + "minLength": 3, + "maxLength": 63, + "x-ms-parameter-location": "method" + }, + "locationId": { + "name": "locationId", + "description": "The location identifier.", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "linkedServiceName": { + "name": "linkedServiceName", + "description": "The linked service name.", + "in": "path", + "required": true, + "type": "string", + "pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$", + "minLength": 1, + "maxLength": 260, + "x-ms-parameter-location": "method" + }, + "datasetName": { + "name": "datasetName", + "description": "The dataset name.", + "in": "path", + "required": true, + "type": "string", + "pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$", + "minLength": 1, + "maxLength": 260, + "x-ms-parameter-location": "method" + }, + "pipelineName": { + "name": "pipelineName", + "description": "The pipeline name.", + "in": "path", + "required": true, + "type": "string", + "pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$", + "minLength": 1, + "maxLength": 260, + "x-ms-parameter-location": "method" + }, + "triggerName": { + "name": "triggerName", + "description": "The trigger name.", + "in": "path", + "required": true, + "type": "string", + "pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$", + "minLength": 1, + "maxLength": 260, + "x-ms-parameter-location": "method" + }, + "runId": { + "name": "runId", + "description": "The pipeline run identifier.", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "referencePipelineRunId": { + "name": "referencePipelineRunId", + "description": "The pipeline run identifier.", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "integrationRuntimeName": { + "name": "integrationRuntimeName", + "description": "The integration runtime name.", + "in": "path", + "required": true, + "type": "string", + "pattern": "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$", + "minLength": 3, + "maxLength": 63, + "x-ms-parameter-location": "method" + }, + "nodeName": { + "name": "nodeName", + "description": "The integration runtime node name.", + "in": "path", + "required": true, + "type": "string", + "pattern": "^[a-z0-9A-Z][a-z0-9A-Z_-]{0,149}$", + "minLength": 1, + "maxLength": 150, + "x-ms-parameter-location": "method" + }, + "api-version": { + "name": "api-version", + "description": "The API version.", + "in": "query", + "required": true, + "type": "string" + } } +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Dataset.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Dataset.json index 2c8eb0db1629..4c1d667fbf9e 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Dataset.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Dataset.json @@ -931,7 +931,7 @@ "path" ] }, - "SqlServerTableDataset": { + "SqlServerTableDataset": { "x-ms-discriminator-value": "SqlServerTable", "description": "The on-premises SQL Server dataset.", "type": "object", @@ -1080,341 +1080,313 @@ } } }, - "AmazonMWSObjectDataset" : { - "x-ms-discriminator-value": "AmazonMWSObject", - "description": "Amazon Marketplace Web Service dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "AmazonMWSObjectDataset": { + "x-ms-discriminator-value": "AmazonMWSObject", + "description": "Amazon Marketplace Web Service dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "AzurePostgreSqlTableDataset" : { + "AzurePostgreSqlTableDataset": { "x-ms-discriminator-value": "AzurePostgreSqlTable", - "description": "Azure PostgreSQL dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "description": "Azure PostgreSQL dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "ConcurObjectDataset" : { - "x-ms-discriminator-value": "ConcurObject", - "description": "Concur Service dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "ConcurObjectDataset": { + "x-ms-discriminator-value": "ConcurObject", + "description": "Concur Service dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "CouchbaseTableDataset" : { + "CouchbaseTableDataset": { "x-ms-discriminator-value": "CouchbaseTable", - "description": "Couchbase server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "description": "Couchbase server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "DrillTableDataset" : { + "DrillTableDataset": { "x-ms-discriminator-value": "DrillTable", - "description": "Drill server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "description": "Drill server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "EloquaObjectDataset" : { - "x-ms-discriminator-value": "EloquaObject", - "description": "Eloqua server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "EloquaObjectDataset": { + "x-ms-discriminator-value": "EloquaObject", + "description": "Eloqua server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "GoogleBigQueryObjectDataset" : { - "x-ms-discriminator-value": "GoogleBigQueryObject", - "description": "Google BigQuery service dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "GoogleBigQueryObjectDataset": { + "x-ms-discriminator-value": "GoogleBigQueryObject", + "description": "Google BigQuery service dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "GreenplumTableDataset" : { + "GreenplumTableDataset": { "x-ms-discriminator-value": "GreenplumTable", - "description": "Greenplum Database dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "description": "Greenplum Database dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "HBaseObjectDataset" : { - "x-ms-discriminator-value": "HBaseObject", - "description": "HBase server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "HBaseObjectDataset": { + "x-ms-discriminator-value": "HBaseObject", + "description": "HBase server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "HiveObjectDataset" : { - "x-ms-discriminator-value": "HiveObject", - "description": "Hive Server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "HiveObjectDataset": { + "x-ms-discriminator-value": "HiveObject", + "description": "Hive Server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "HubspotObjectDataset" : { - "x-ms-discriminator-value": "HubspotObject", - "description": "Hubspot Service dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "HubspotObjectDataset": { + "x-ms-discriminator-value": "HubspotObject", + "description": "Hubspot Service dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "ImpalaObjectDataset" : { - "x-ms-discriminator-value": "ImpalaObject", - "description": "Impala server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "ImpalaObjectDataset": { + "x-ms-discriminator-value": "ImpalaObject", + "description": "Impala server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "JiraObjectDataset" : { - "x-ms-discriminator-value": "JiraObject", - "description": "Jira Service dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "JiraObjectDataset": { + "x-ms-discriminator-value": "JiraObject", + "description": "Jira Service dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "MagentoObjectDataset" : { - "x-ms-discriminator-value": "MagentoObject", - "description": "Magento server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "MagentoObjectDataset": { + "x-ms-discriminator-value": "MagentoObject", + "description": "Magento server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "MariaDBTableDataset" : { + "MariaDBTableDataset": { "x-ms-discriminator-value": "MariaDBTable", - "description": "MariaDB server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "description": "MariaDB server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "MarketoObjectDataset" : { - "x-ms-discriminator-value": "MarketoObject", - "description": "Marketo server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "MarketoObjectDataset": { + "x-ms-discriminator-value": "MarketoObject", + "description": "Marketo server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "PaypalObjectDataset" : { - "x-ms-discriminator-value": "PaypalObject", - "description": "Paypal Service dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "PaypalObjectDataset": { + "x-ms-discriminator-value": "PaypalObject", + "description": "Paypal Service dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "PhoenixObjectDataset" : { - "x-ms-discriminator-value": "PhoenixObject", - "description": "Phoenix server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "PhoenixObjectDataset": { + "x-ms-discriminator-value": "PhoenixObject", + "description": "Phoenix server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "PrestoObjectDataset" : { - "x-ms-discriminator-value": "PrestoObject", - "description": "Presto server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "PrestoObjectDataset": { + "x-ms-discriminator-value": "PrestoObject", + "description": "Presto server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "QuickBooksObjectDataset" : { - "x-ms-discriminator-value": "QuickBooksObject", - "description": "QuickBooks server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "QuickBooksObjectDataset": { + "x-ms-discriminator-value": "QuickBooksObject", + "description": "QuickBooks server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "ServiceNowObjectDataset" : { - "x-ms-discriminator-value": "ServiceNowObject", - "description": "ServiceNow server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "ServiceNowObjectDataset": { + "x-ms-discriminator-value": "ServiceNowObject", + "description": "ServiceNow server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "ShopifyObjectDataset" : { - "x-ms-discriminator-value": "ShopifyObject", - "description": "Shopify Service dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "ShopifyObjectDataset": { + "x-ms-discriminator-value": "ShopifyObject", + "description": "Shopify Service dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "SparkObjectDataset" : { - "x-ms-discriminator-value": "SparkObject", - "description": "Spark Server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "SparkObjectDataset": { + "x-ms-discriminator-value": "SparkObject", + "description": "Spark Server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "SquareObjectDataset" : { - "x-ms-discriminator-value": "SquareObject", - "description": "Square Service dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "SquareObjectDataset": { + "x-ms-discriminator-value": "SquareObject", + "description": "Square Service dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "XeroObjectDataset" : { - "x-ms-discriminator-value": "XeroObject", - "description": "Xero Service dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "XeroObjectDataset": { + "x-ms-discriminator-value": "XeroObject", + "description": "Xero Service dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "ZohoObjectDataset" : { - "x-ms-discriminator-value": "ZohoObject", - "description": "Zoho server dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "ZohoObjectDataset": { + "x-ms-discriminator-value": "ZohoObject", + "description": "Zoho server dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "NetezzaTableDataset" : { + "NetezzaTableDataset": { "x-ms-discriminator-value": "NetezzaTable", - "description": "Netezza dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "description": "Netezza dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, - "VerticaTableDataset" : { + "VerticaTableDataset": { "x-ms-discriminator-value": "VerticaTable", - "description": "Vertica dataset.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Dataset" - } - ], - "properties": { - } + "description": "Vertica dataset.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Dataset" + } + ], + "properties": {} }, "SalesforceMarketingCloudObjectDataset": { "x-ms-discriminator-value": "SalesforceMarketingCloudObject", @@ -1422,11 +1394,10 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], - "properties": { - } + "properties": {} }, "ResponsysObjectDataset": { "x-ms-discriminator-value": "ResponsysObject", @@ -1434,11 +1405,10 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], - "properties": { - } + "properties": {} } } } diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/IntegrationRuntime.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/IntegrationRuntime.json index dbb3f8502999..94a14328a25c 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/IntegrationRuntime.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/IntegrationRuntime.json @@ -301,7 +301,7 @@ "dataFactoryName": { "description": "The data factory name which the integration runtime belong to.", "type": "string", - "readOnly": true + "readOnly": true }, "state": { "description": "The state of integration runtime.", diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/LinkedService.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/LinkedService.json index 6d251d9049a6..fdd52c0e61b7 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/LinkedService.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/LinkedService.json @@ -386,8 +386,8 @@ "description": "The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0." }, "serviceUri": { - "type": "object", - "description": "The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string)." + "type": "object", + "description": "The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string)." }, "organizationName": { "type": "object", @@ -1482,7 +1482,7 @@ "url" ] }, - "AmazonS3LinkedService": { + "AmazonS3LinkedService": { "x-ms-discriminator-value": "AmazonS3", "description": "Linked service for Amazon S3.", "type": "object", @@ -1961,28 +1961,28 @@ "server" ] }, - "AmazonMWSLinkedService": { - "x-ms-discriminator-value": "AmazonMWS", - "description": "Amazon Marketplace Web Service linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Amazon Marketplace Web Service linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/AmazonMWSLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "AmazonMWSLinkedServiceTypeProperties": { - "description": "Amazon Marketplace Web Service linked service properties.", + "AmazonMWSLinkedService": { + "x-ms-discriminator-value": "AmazonMWS", + "description": "Amazon Marketplace Web Service linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Amazon Marketplace Web Service linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/AmazonMWSLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "AmazonMWSLinkedServiceTypeProperties": { + "description": "Amazon Marketplace Web Service linked service properties.", "properties": { "endpoint": { "description": "The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)", @@ -2020,8 +2020,8 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, @@ -2030,29 +2030,29 @@ "marketplaceID", "sellerID", "accessKeyId" - ] - }, - "AzurePostgreSqlLinkedService": { - "x-ms-discriminator-value": "AzurePostgreSql", - "description": "Azure PostgreSQL linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Azure PostgreSQL linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/AzurePostgreSqlLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "AzurePostgreSqlLinkedServiceTypeProperties": { + ] + }, + "AzurePostgreSqlLinkedService": { + "x-ms-discriminator-value": "AzurePostgreSql", + "description": "Azure PostgreSQL linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Azure PostgreSQL linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/AzurePostgreSqlLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "AzurePostgreSqlLinkedServiceTypeProperties": { "description": "Azure PostgreSQL linked service properties.", "properties": { "connectionString": { @@ -2063,30 +2063,30 @@ "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } - } - }, - "ConcurLinkedService": { - "x-ms-discriminator-value": "Concur", - "description": "Concur Service linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Concur Service linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/ConcurLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "ConcurLinkedServiceTypeProperties": { - "description": "Concur Service linked service properties.", + } + }, + "ConcurLinkedService": { + "x-ms-discriminator-value": "Concur", + "description": "Concur Service linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Concur Service linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/ConcurLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "ConcurLinkedServiceTypeProperties": { + "description": "Concur Service linked service properties.", "properties": { "clientId": { "description": "Application client_id supplied by Concur App Management.", @@ -2112,37 +2112,37 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "clientId", "username" - ] - }, - "CouchbaseLinkedService": { - "x-ms-discriminator-value": "Couchbase", - "description": "Couchbase server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Couchbase server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/CouchbaseLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "CouchbaseLinkedServiceTypeProperties": { + ] + }, + "CouchbaseLinkedService": { + "x-ms-discriminator-value": "Couchbase", + "description": "Couchbase server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Couchbase server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/CouchbaseLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "CouchbaseLinkedServiceTypeProperties": { "description": "Couchbase server linked service properties.", "properties": { "connectionString": { @@ -2153,29 +2153,29 @@ "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } - } - }, - "DrillLinkedService": { - "x-ms-discriminator-value": "Drill", - "description": "Drill server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Drill server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/DrillLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "DrillLinkedServiceTypeProperties": { + } + }, + "DrillLinkedService": { + "x-ms-discriminator-value": "Drill", + "description": "Drill server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Drill server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/DrillLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "DrillLinkedServiceTypeProperties": { "description": "Drill server linked service properties.", "properties": { "connectionString": { @@ -2186,30 +2186,30 @@ "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } - } - }, - "EloquaLinkedService": { - "x-ms-discriminator-value": "Eloqua", - "description": "Eloqua server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Eloqua server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/EloquaLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "EloquaLinkedServiceTypeProperties": { - "description": "Eloqua server linked service properties.", + } + }, + "EloquaLinkedService": { + "x-ms-discriminator-value": "Eloqua", + "description": "Eloqua server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Eloqua server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/EloquaLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "EloquaLinkedServiceTypeProperties": { + "description": "Eloqua server linked service properties.", "properties": { "endpoint": { "description": "The endpoint of the Eloqua server. (i.e. eloqua.example.com)", @@ -2235,38 +2235,38 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "endpoint", "username" - ] - }, - "GoogleBigQueryLinkedService": { - "x-ms-discriminator-value": "GoogleBigQuery", - "description": "Google BigQuery service linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Google BigQuery service linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/GoogleBigQueryLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "GoogleBigQueryLinkedServiceTypeProperties": { - "description": "Google BigQuery service linked service properties.", + ] + }, + "GoogleBigQueryLinkedService": { + "x-ms-discriminator-value": "GoogleBigQuery", + "description": "Google BigQuery service linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Google BigQuery service linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/GoogleBigQueryLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "GoogleBigQueryLinkedServiceTypeProperties": { + "description": "Google BigQuery service linked service properties.", "properties": { "project": { "description": "The default BigQuery project to query against.", @@ -2320,37 +2320,37 @@ "description": "Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "project", "authenticationType" - ] - }, - "GreenplumLinkedService": { - "x-ms-discriminator-value": "Greenplum", - "description": "Greenplum Database linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Greenplum Database linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/GreenplumLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "GreenplumLinkedServiceTypeProperties": { + ] + }, + "GreenplumLinkedService": { + "x-ms-discriminator-value": "Greenplum", + "description": "Greenplum Database linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Greenplum Database linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/GreenplumLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "GreenplumLinkedServiceTypeProperties": { "description": "Greenplum Database linked service properties.", "properties": { "connectionString": { @@ -2361,30 +2361,30 @@ "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } - } - }, - "HBaseLinkedService": { - "x-ms-discriminator-value": "HBase", - "description": "HBase server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "HBase server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/HBaseLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "HBaseLinkedServiceTypeProperties": { - "description": "HBase server linked service properties.", + } + }, + "HBaseLinkedService": { + "x-ms-discriminator-value": "HBase", + "description": "HBase server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "HBase server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/HBaseLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "HBaseLinkedServiceTypeProperties": { + "description": "HBase server linked service properties.", "properties": { "host": { "description": "The IP address or host name of the HBase server. (i.e. 192.168.222.160)", @@ -2434,38 +2434,38 @@ "description": "Specifies whether to allow self-signed certificates from the server. The default value is false.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "host", "authenticationType" - ] - }, - "HiveLinkedService": { - "x-ms-discriminator-value": "Hive", - "description": "Hive Server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Hive Server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/HiveLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "HiveLinkedServiceTypeProperties": { - "description": "Hive Server linked service properties.", + ] + }, + "HiveLinkedService": { + "x-ms-discriminator-value": "Hive", + "description": "Hive Server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Hive Server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/HiveLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "HiveLinkedServiceTypeProperties": { + "description": "Hive Server linked service properties.", "properties": { "host": { "description": "IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).", @@ -2559,38 +2559,38 @@ "description": "Specifies whether to allow self-signed certificates from the server. The default value is false.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "host", "authenticationType" - ] - }, - "HubspotLinkedService": { - "x-ms-discriminator-value": "Hubspot", - "description": "Hubspot Service linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Hubspot Service linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/HubspotLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "HubspotLinkedServiceTypeProperties": { - "description": "Hubspot Service linked service properties.", + ] + }, + "HubspotLinkedService": { + "x-ms-discriminator-value": "Hubspot", + "description": "Hubspot Service linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Hubspot Service linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/HubspotLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "HubspotLinkedServiceTypeProperties": { + "description": "Hubspot Service linked service properties.", "properties": { "clientId": { "description": "The client ID associated with your Hubspot application.", @@ -2620,37 +2620,37 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "clientId" - ] - }, - "ImpalaLinkedService": { - "x-ms-discriminator-value": "Impala", - "description": "Impala server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Impala server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/ImpalaLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "ImpalaLinkedServiceTypeProperties": { - "description": "Impala server linked service properties.", + ] + }, + "ImpalaLinkedService": { + "x-ms-discriminator-value": "Impala", + "description": "Impala server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Impala server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/ImpalaLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "ImpalaLinkedServiceTypeProperties": { + "description": "Impala server linked service properties.", "properties": { "host": { "description": "The IP address or host name of the Impala server. (i.e. 192.168.222.160)", @@ -2701,38 +2701,38 @@ "description": "Specifies whether to allow self-signed certificates from the server. The default value is false.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "host", "authenticationType" - ] - }, - "JiraLinkedService": { - "x-ms-discriminator-value": "Jira", - "description": "Jira Service linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Jira Service linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/JiraLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "JiraLinkedServiceTypeProperties": { - "description": "Jira Service linked service properties.", + ] + }, + "JiraLinkedService": { + "x-ms-discriminator-value": "Jira", + "description": "Jira Service linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Jira Service linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/JiraLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "JiraLinkedServiceTypeProperties": { + "description": "Jira Service linked service properties.", "properties": { "host": { "description": "The IP address or host name of the Jira service. (e.g. jira.example.com)", @@ -2762,38 +2762,38 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "host", "username" - ] - }, - "MagentoLinkedService": { - "x-ms-discriminator-value": "Magento", - "description": "Magento server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Magento server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/MagentoLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "MagentoLinkedServiceTypeProperties": { - "description": "Magento server linked service properties.", + ] + }, + "MagentoLinkedService": { + "x-ms-discriminator-value": "Magento", + "description": "Magento server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Magento server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/MagentoLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "MagentoLinkedServiceTypeProperties": { + "description": "Magento server linked service properties.", "properties": { "host": { "description": "The URL of the Magento instance. (i.e. 192.168.222.110/magento3)", @@ -2815,36 +2815,36 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", - "type": "object" + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "type": "object" } }, "required": [ "host" - ] - }, - "MariaDBLinkedService": { - "x-ms-discriminator-value": "MariaDB", - "description": "MariaDB server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "MariaDB server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/MariaDBLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "MariaDBLinkedServiceTypeProperties": { + ] + }, + "MariaDBLinkedService": { + "x-ms-discriminator-value": "MariaDB", + "description": "MariaDB server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "MariaDB server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/MariaDBLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "MariaDBLinkedServiceTypeProperties": { "description": "MariaDB server linked service properties.", "properties": { "connectionString": { @@ -2855,30 +2855,30 @@ "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } - } - }, - "MarketoLinkedService": { - "x-ms-discriminator-value": "Marketo", - "description": "Marketo server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Marketo server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/MarketoLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "MarketoLinkedServiceTypeProperties": { - "description": "Marketo server linked service properties.", + } + }, + "MarketoLinkedService": { + "x-ms-discriminator-value": "Marketo", + "description": "Marketo server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Marketo server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/MarketoLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "MarketoLinkedServiceTypeProperties": { + "description": "Marketo server linked service properties.", "properties": { "endpoint": { "description": "The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)", @@ -2904,38 +2904,38 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "endpoint", "clientId" - ] - }, - "PaypalLinkedService": { - "x-ms-discriminator-value": "Paypal", - "description": "Paypal Service linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Paypal Service linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/PaypalLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "PaypalLinkedServiceTypeProperties": { - "description": "Paypal Service linked service properties.", + ] + }, + "PaypalLinkedService": { + "x-ms-discriminator-value": "Paypal", + "description": "Paypal Service linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Paypal Service linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/PaypalLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "PaypalLinkedServiceTypeProperties": { + "description": "Paypal Service linked service properties.", "properties": { "host": { "description": "The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)", @@ -2961,38 +2961,38 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "host", "clientId" - ] - }, - "PhoenixLinkedService": { - "x-ms-discriminator-value": "Phoenix", - "description": "Phoenix server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Phoenix server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/PhoenixLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "PhoenixLinkedServiceTypeProperties": { - "description": "Phoenix server linked service properties.", + ] + }, + "PhoenixLinkedService": { + "x-ms-discriminator-value": "Phoenix", + "description": "Phoenix server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Phoenix server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/PhoenixLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "PhoenixLinkedServiceTypeProperties": { + "description": "Phoenix server linked service properties.", "properties": { "host": { "description": "The IP address or host name of the Phoenix server. (i.e. 192.168.222.160)", @@ -3047,38 +3047,38 @@ "description": "Specifies whether to allow self-signed certificates from the server. The default value is false.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "host", "authenticationType" - ] - }, - "PrestoLinkedService": { - "x-ms-discriminator-value": "Presto", - "description": "Presto server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Presto server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/PrestoLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "PrestoLinkedServiceTypeProperties": { - "description": "Presto server linked service properties.", + ] + }, + "PrestoLinkedService": { + "x-ms-discriminator-value": "Presto", + "description": "Presto server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Presto server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/PrestoLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "PrestoLinkedServiceTypeProperties": { + "description": "Presto server linked service properties.", "properties": { "host": { "description": "The IP address or host name of the Presto server. (i.e. 192.168.222.160)", @@ -3140,8 +3140,8 @@ "description": "The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, @@ -3150,29 +3150,29 @@ "serverVersion", "catalog", "authenticationType" - ] - }, - "QuickBooksLinkedService": { - "x-ms-discriminator-value": "QuickBooks", - "description": "QuickBooks server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "QuickBooks server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/QuickBooksLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "QuickBooksLinkedServiceTypeProperties": { + ] + }, + "QuickBooksLinkedService": { + "x-ms-discriminator-value": "QuickBooks", + "description": "QuickBooks server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "QuickBooks server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/QuickBooksLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "QuickBooksLinkedServiceTypeProperties": { "description": "QuickBooks server linked service properties.", "properties": { "endpoint": { @@ -3215,30 +3215,30 @@ "consumerSecret", "accessToken", "accessTokenSecret" - ] - }, - "ServiceNowLinkedService": { - "x-ms-discriminator-value": "ServiceNow", - "description": "ServiceNow server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "ServiceNow server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServiceNowLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "ServiceNowLinkedServiceTypeProperties": { - "description": "ServiceNow server linked service properties.", + ] + }, + "ServiceNowLinkedService": { + "x-ms-discriminator-value": "ServiceNow", + "description": "ServiceNow server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "ServiceNow server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServiceNowLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "ServiceNowLinkedServiceTypeProperties": { + "description": "ServiceNow server linked service properties.", "properties": { "endpoint": { "description": "The endpoint of the ServiceNow server. (i.e. .service-now.com)", @@ -3284,38 +3284,38 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "endpoint", "authenticationType" - ] - }, - "ShopifyLinkedService": { - "x-ms-discriminator-value": "Shopify", - "description": "Shopify Service linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Shopify Service linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/ShopifyLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "ShopifyLinkedServiceTypeProperties": { - "description": "Shopify Service linked service properties.", + ] + }, + "ShopifyLinkedService": { + "x-ms-discriminator-value": "Shopify", + "description": "Shopify Service linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Shopify Service linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/ShopifyLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "ShopifyLinkedServiceTypeProperties": { + "description": "Shopify Service linked service properties.", "properties": { "host": { "description": "The endpoint of the Shopify server. (i.e. mystore.myshopify.com)", @@ -3337,37 +3337,37 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "host" - ] - }, - "SparkLinkedService": { - "x-ms-discriminator-value": "Spark", - "description": "Spark Server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Spark Server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/SparkLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "SparkLinkedServiceTypeProperties": { - "description": "Spark Server linked service properties.", + ] + }, + "SparkLinkedService": { + "x-ms-discriminator-value": "Spark", + "description": "Spark Server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Spark Server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/SparkLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "SparkLinkedServiceTypeProperties": { + "description": "Spark Server linked service properties.", "properties": { "host": { "description": "IP address or host name of the Spark server", @@ -3449,8 +3449,8 @@ "description": "Specifies whether to allow self-signed certificates from the server. The default value is false.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, @@ -3458,30 +3458,30 @@ "host", "port", "authenticationType" - ] - }, - "SquareLinkedService": { - "x-ms-discriminator-value": "Square", - "description": "Square Service linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Square Service linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/SquareLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "SquareLinkedServiceTypeProperties": { - "description": "Square Service linked service properties.", + ] + }, + "SquareLinkedService": { + "x-ms-discriminator-value": "Square", + "description": "Square Service linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Square Service linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/SquareLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "SquareLinkedServiceTypeProperties": { + "description": "Square Service linked service properties.", "properties": { "host": { "description": "The URL of the Square instance. (i.e. mystore.mysquare.com)", @@ -3511,8 +3511,8 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, @@ -3520,30 +3520,30 @@ "host", "clientId", "redirectUri" - ] - }, - "XeroLinkedService": { - "x-ms-discriminator-value": "Xero", - "description": "Xero Service linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Xero Service linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/XeroLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "XeroLinkedServiceTypeProperties": { - "description": "Xero Service linked service properties.", + ] + }, + "XeroLinkedService": { + "x-ms-discriminator-value": "Xero", + "description": "Xero Service linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Xero Service linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/XeroLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "XeroLinkedServiceTypeProperties": { + "description": "Xero Service linked service properties.", "properties": { "host": { "description": "The endpoint of the Xero server. (i.e. api.xero.com)", @@ -3569,37 +3569,37 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "host" - ] - }, - "ZohoLinkedService": { - "x-ms-discriminator-value": "Zoho", - "description": "Zoho server linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Zoho server linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/ZohoLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "ZohoLinkedServiceTypeProperties": { - "description": "Zoho server linked service properties.", + ] + }, + "ZohoLinkedService": { + "x-ms-discriminator-value": "Zoho", + "description": "Zoho server linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Zoho server linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/ZohoLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "ZohoLinkedServiceTypeProperties": { + "description": "Zoho server linked service properties.", "properties": { "endpoint": { "description": "The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)", @@ -3621,36 +3621,36 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "endpoint" - ] - }, - "VerticaLinkedService": { - "x-ms-discriminator-value": "Vertica", - "description": "Vertica linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Vertica linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/VerticaLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "VerticaLinkedServiceTypeProperties": { + ] + }, + "VerticaLinkedService": { + "x-ms-discriminator-value": "Vertica", + "description": "Vertica linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Vertica linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/VerticaLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "VerticaLinkedServiceTypeProperties": { "description": "Vertica linked service properties.", "properties": { "connectionString": { @@ -3661,29 +3661,29 @@ "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } - } - }, - "NetezzaLinkedService": { - "x-ms-discriminator-value": "Netezza", - "description": "Netezza linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Netezza linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/NetezzaLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "NetezzaLinkedServiceTypeProperties": { + } + }, + "NetezzaLinkedService": { + "x-ms-discriminator-value": "Netezza", + "description": "Netezza linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Netezza linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/NetezzaLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "NetezzaLinkedServiceTypeProperties": { "description": "Netezza linked service properties.", "properties": { "connectionString": { @@ -3694,30 +3694,30 @@ "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } - } - }, - "SalesforceMarketingCloudLinkedService": { - "x-ms-discriminator-value": "SalesforceMarketingCloud", - "description": "Salesforce Marketing Cloud linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Salesforce Marketing Cloud linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/SalesforceMarketingCloudLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "SalesforceMarketingCloudLinkedServiceTypeProperties": { - "description": "Salesforce Marketing Cloud linked service properties.", + } + }, + "SalesforceMarketingCloudLinkedService": { + "x-ms-discriminator-value": "SalesforceMarketingCloud", + "description": "Salesforce Marketing Cloud linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Salesforce Marketing Cloud linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/SalesforceMarketingCloudLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "SalesforceMarketingCloudLinkedServiceTypeProperties": { + "description": "Salesforce Marketing Cloud linked service properties.", "properties": { "clientId": { "description": "The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).", @@ -3739,14 +3739,14 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "clientId" - ] + ] }, "HDInsightOnDemandLinkedService": { "x-ms-discriminator-value": "HDInsightOnDemand", @@ -4005,7 +4005,7 @@ "type": "object", "description": "The Spark version of new cluster. Type: string (or Expression with resultType string)." }, - "newClusterNumOfWorker": { + "newClusterNumOfWorker": { "type": "object", "description": "Number of worker nodes that new cluster should have. A string formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 as min and 10 as max. Type: string (or Expression with resultType string)." }, @@ -4031,28 +4031,28 @@ "accessToken" ] }, - "ResponsysLinkedService": { - "x-ms-discriminator-value": "Responsys", - "description": "Responsys linked service.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/LinkedService" - } - ], - "properties": { - "typeProperties": { - "description": "Responsys linked service properties.", - "x-ms-client-flatten": true, - "$ref": "#/definitions/ResponsysLinkedServiceTypeProperties" - } - }, - "required": [ - "typeProperties" - ] - }, - "ResponsysLinkedServiceTypeProperties": { - "description": "Responsys linked service properties.", + "ResponsysLinkedService": { + "x-ms-discriminator-value": "Responsys", + "description": "Responsys linked service.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/LinkedService" + } + ], + "properties": { + "typeProperties": { + "description": "Responsys linked service properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/ResponsysLinkedServiceTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "ResponsysLinkedServiceTypeProperties": { + "description": "Responsys linked service properties.", "properties": { "endpoint": { "description": "The endpoint of the Responsys server.", @@ -4078,15 +4078,15 @@ "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).", "type": "object" }, - "encryptedCredential": { - "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", + "encryptedCredential": { + "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", "type": "object" } }, "required": [ "endpoint", "clientId" - ] + ] } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Pipeline.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Pipeline.json index 952721439015..a74abb20d301 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Pipeline.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Pipeline.json @@ -36,7 +36,7 @@ "items": { "type": "object" } - } + } } }, "Activity": { @@ -413,7 +413,7 @@ } } }, - "SqlSource": { + "SqlSource": { "description": "A copy activity SQL source.", "type": "object", "allOf": [ @@ -642,456 +642,456 @@ } } }, - "AmazonMWSSource": { - "description": "A copy activity Amazon Marketplace Web Service source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "AzurePostgreSqlSource": { - "description": "A copy activity Azure PostgreSQL source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "ConcurSource": { - "description": "A copy activity Concur Service source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "CouchbaseSource": { - "description": "A copy activity Couchbase server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "DrillSource": { - "description": "A copy activity Drill server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "EloquaSource": { - "description": "A copy activity Eloqua server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "GoogleBigQuerySource": { - "description": "A copy activity Google BigQuery service source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "GreenplumSource": { - "description": "A copy activity Greenplum Database source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "HBaseSource": { - "description": "A copy activity HBase server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "HiveSource": { - "description": "A copy activity Hive Server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "HubspotSource": { - "description": "A copy activity Hubspot Service source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "ImpalaSource": { - "description": "A copy activity Impala server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "JiraSource": { - "description": "A copy activity Jira Service source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "MagentoSource": { - "description": "A copy activity Magento server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "MariaDBSource": { - "description": "A copy activity MariaDB server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "MarketoSource": { - "description": "A copy activity Marketo server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "PaypalSource": { - "description": "A copy activity Paypal Service source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "PhoenixSource": { - "description": "A copy activity Phoenix server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "PrestoSource": { - "description": "A copy activity Presto server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "QuickBooksSource": { - "description": "A copy activity QuickBooks server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "ServiceNowSource": { - "description": "A copy activity ServiceNow server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "ShopifySource": { - "description": "A copy activity Shopify Service source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "SparkSource": { - "description": "A copy activity Spark Server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "SquareSource": { - "description": "A copy activity Square Service source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "XeroSource": { - "description": "A copy activity Xero Service source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "ZohoSource": { - "description": "A copy activity Zoho server source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "NetezzaSource": { - "description": "A copy activity Netezza source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "VerticaSource": { - "description": "A copy activity Vertica source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "SalesforceMarketingCloudSource": { - "description": "A copy activity Salesforce Marketing Cloud source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - }, - "ResponsysSource": { - "description": "A copy activity Responsys source.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/CopySource" - } - ], - "properties": { - "query": { - "type": "object", - "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." - } - } - } , + "AmazonMWSSource": { + "description": "A copy activity Amazon Marketplace Web Service source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "AzurePostgreSqlSource": { + "description": "A copy activity Azure PostgreSQL source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "ConcurSource": { + "description": "A copy activity Concur Service source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "CouchbaseSource": { + "description": "A copy activity Couchbase server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "DrillSource": { + "description": "A copy activity Drill server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "EloquaSource": { + "description": "A copy activity Eloqua server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "GoogleBigQuerySource": { + "description": "A copy activity Google BigQuery service source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "GreenplumSource": { + "description": "A copy activity Greenplum Database source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "HBaseSource": { + "description": "A copy activity HBase server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "HiveSource": { + "description": "A copy activity Hive Server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "HubspotSource": { + "description": "A copy activity Hubspot Service source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "ImpalaSource": { + "description": "A copy activity Impala server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "JiraSource": { + "description": "A copy activity Jira Service source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "MagentoSource": { + "description": "A copy activity Magento server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "MariaDBSource": { + "description": "A copy activity MariaDB server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "MarketoSource": { + "description": "A copy activity Marketo server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "PaypalSource": { + "description": "A copy activity Paypal Service source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "PhoenixSource": { + "description": "A copy activity Phoenix server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "PrestoSource": { + "description": "A copy activity Presto server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "QuickBooksSource": { + "description": "A copy activity QuickBooks server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "ServiceNowSource": { + "description": "A copy activity ServiceNow server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "ShopifySource": { + "description": "A copy activity Shopify Service source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "SparkSource": { + "description": "A copy activity Spark Server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "SquareSource": { + "description": "A copy activity Square Service source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "XeroSource": { + "description": "A copy activity Xero Service source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "ZohoSource": { + "description": "A copy activity Zoho server source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "NetezzaSource": { + "description": "A copy activity Netezza source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "VerticaSource": { + "description": "A copy activity Vertica source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "SalesforceMarketingCloudSource": { + "description": "A copy activity Salesforce Marketing Cloud source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, + "ResponsysSource": { + "description": "A copy activity Responsys source.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CopySource" + } + ], + "properties": { + "query": { + "type": "object", + "description": "A query to retrieve data from source. Type: string (or Expression with resultType string)." + } + } + }, "AmazonRedshiftSource": { "description": "A copy activity source for Amazon Redshift Source.", "type": "object", @@ -2084,7 +2084,7 @@ }, "SSISPackageLocation": { "description": "SSIS package location.", - "type" : "object", + "type": "object", "properties": { "packagePath": { "description": "The SSIS package path. Type: string (or Expression with resultType string).", diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Trigger.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Trigger.json index a7876492820e..5d7cd04c9ad5 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Trigger.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/Trigger.json @@ -275,8 +275,7 @@ "typeProperties" ] }, - "BlobEventsTrigger": - { + "BlobEventsTrigger": { "description": "Trigger that runs every time a Blob event occurs.", "type": "object", "allOf": [ @@ -285,8 +284,7 @@ } ], "properties": { - "typeProperties": - { + "typeProperties": { "description": "Blob Events Trigger properties.", "x-ms-client-flatten": true, "properties": { @@ -350,7 +348,7 @@ "x-ms-client-flatten": true, "properties": { "frequency": { - "$ref": "#/definitions/TumblingWindowFrequency", + "$ref": "#/definitions/TumblingWindowFrequency", "description": "The frequency of the time windows." }, "interval": { diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Create.json index 5c2375cd5ea4..ec7bcdb0d03a 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Create.json @@ -81,4 +81,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Delete.json index 01acf52d92e9..04e92c709fc0 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Delete.json @@ -28,4 +28,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Get.json index 01cdd9af81fe..67abb5f166c8 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Get.json @@ -51,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_ListByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_ListByFactory.json index 70d4c0c3a340..d179c33f2af5 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_ListByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_ListByFactory.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Update.json index be928edcaddc..557ee34a6843 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Datasets_Update.json @@ -83,4 +83,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Factories_CancelPipelineRun.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Factories_CancelPipelineRun.json index 5b03267619e1..4a1f6a1a490e 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Factories_CancelPipelineRun.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Factories_CancelPipelineRun.json @@ -18,4 +18,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Factories_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Factories_Delete.json index f0324c920cca..8fdcc97b90e3 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Factories_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Factories_Delete.json @@ -26,4 +26,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_Delete.json index 05e379f1c294..fbb4a3da2a86 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_Delete.json @@ -25,4 +25,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_GetIpAddress.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_GetIpAddress.json index 6645f84ae13d..91536f5c453d 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_GetIpAddress.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_GetIpAddress.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_Update.json index c2151fc57821..a34ee82367e3 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimeNodes_Update.json @@ -218,4 +218,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Create.json index 1c930b55fe87..ca2196e6213f 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Create.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Delete.json index 07f628fdfeeb..ca78dd6b94da 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Delete.json @@ -28,4 +28,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Get.json index 2dd5cf34ea0e..ad2d585d90a9 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Get.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetConnectionInfo.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetConnectionInfo.json index fcab30ad2e6b..b2ebe39b90ea 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetConnectionInfo.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetConnectionInfo.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetMonitoringData.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetMonitoringData.json index 79f7c18e592e..a7cb39187d54 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetMonitoringData.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetMonitoringData.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetStatus.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetStatus.json index 8e47cfff5228..d0ec0eb297d6 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetStatus.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_GetStatus.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_ListAuthKeys.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_ListAuthKeys.json index 7be259a66881..a9c1a6b8b46d 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_ListAuthKeys.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_ListAuthKeys.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_ListByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_ListByFactory.json index 80b3e6debccf..f56a661d568a 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_ListByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_ListByFactory.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_RegenerateAuthKey.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_RegenerateAuthKey.json index 8c75991a54c0..4daf304c9202 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_RegenerateAuthKey.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_RegenerateAuthKey.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_RemoveNode.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_RemoveNode.json index 3c9369f63d9b..dcf0d9e9440c 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_RemoveNode.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_RemoveNode.json @@ -27,4 +27,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Start.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Start.json index 1df79c851773..34cac9c4bc49 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Start.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Start.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Stop.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Stop.json index ba04fbbfbb27..351b499eb7d7 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Stop.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Stop.json @@ -26,4 +26,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_SyncCredentials.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_SyncCredentials.json index 70afe5f0f5b0..0778b1f16a8e 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_SyncCredentials.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_SyncCredentials.json @@ -16,4 +16,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Update.json index fe703ec1a534..e90f9e404c58 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Update.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Upgrade.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Upgrade.json index e602bb934009..365c903ca287 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Upgrade.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/IntegrationRuntimes_Upgrade.json @@ -16,4 +16,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Create.json index 019304dd2f4e..66d97b9297d4 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Create.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Delete.json index a20847c3074a..ac1d5ba9bc8d 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Delete.json @@ -28,4 +28,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Get.json index 341797f698ef..e61d9aff0108 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Get.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_ListByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_ListByFactory.json index 83a2ed4669b2..b2ce464a0631 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_ListByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_ListByFactory.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Update.json index 393716d41bbc..7e1f5d788fa9 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/LinkedServices_Update.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Operations_List.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Operations_List.json index 94475c0b23b8..1dacecea845d 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Operations_List.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Operations_List.json @@ -201,4 +201,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/PipelineRuns_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/PipelineRuns_Get.json index faa6919980cf..c77b1cecb0de 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/PipelineRuns_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/PipelineRuns_Get.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/PipelineRuns_QueryByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/PipelineRuns_QueryByFactory.json index ca5a6749cab5..0090b058a166 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/PipelineRuns_QueryByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/PipelineRuns_QueryByFactory.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Create.json index 73bbfb9138cf..fec2c7686602 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Create.json @@ -139,4 +139,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_CreateRun.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_CreateRun.json index 8e14aee60322..695f05c422af 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_CreateRun.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_CreateRun.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Delete.json index dbd3f94155c5..39feb99341db 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Delete.json @@ -28,4 +28,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Get.json index 810f61a0427a..125ef7d8ac60 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Get.json @@ -80,4 +80,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_ListByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_ListByFactory.json index 1b7a1bd1c4c5..7a71c1b51ee5 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_ListByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_ListByFactory.json @@ -83,4 +83,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Update.json index c23607b35d71..d15e9b4c9522 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Pipelines_Update.json @@ -141,4 +141,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Create.json index 7ff873ae308f..d6b419ae75d3 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Create.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Delete.json index cb60f5853305..12ce3c425a33 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Delete.json @@ -28,4 +28,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Get.json index 36a1f0885074..9f0ae4ed69f5 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Get.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_ListByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_ListByFactory.json index dfa5940accc0..3592ff0e8f37 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_ListByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_ListByFactory.json @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_ListRuns.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_ListRuns.json index 34a790263c70..ac853fcd3750 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_ListRuns.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_ListRuns.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Start.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Start.json index 7f0bbf8c93f3..56838942d01e 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Start.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Start.json @@ -18,4 +18,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Stop.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Stop.json index 66d1db8a9c1f..c89c07541ab5 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Stop.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Stop.json @@ -18,4 +18,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Update.json index f4b5a5d0aa50..161994e430d7 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/examples/Triggers_Update.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json index 67ea061ffc4d..987f1e3df0be 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json @@ -3813,15 +3813,15 @@ "UserAccessPolicy": { "description": "Get Data Plane read only token request definition.", "properties": { - "permissions" : { + "permissions": { "description": "The string with permissions for Data Plane access. Currently only 'r' is supported which grants read only access.", "type": "string" }, - "accessResourcePath" : { + "accessResourcePath": { "description": "The resource path to get access relative to factory. Currently only empty string is supported which corresponds to the factory resource.", "type": "string" }, - "profileName" : { + "profileName": { "description": "The name of the profile. Currently only the default is supported. The default value is DefaultProfile.", "type": "string" }, @@ -3838,7 +3838,7 @@ "AccessPolicyResponse": { "description": "Get Data Plane read only token response definition.", "properties": { - "policy" : { + "policy": { "description": "The user access policy.", "$ref": "#/definitions/UserAccessPolicy" }, @@ -4793,10 +4793,10 @@ "type": "object", "description": "The request payload of get SSIS object metadata.", "properties": { - "metadataPath": { - "type": "string", - "description": "Metadata path." - } + "metadataPath": { + "type": "string", + "description": "Metadata path." + } } }, "SsisObjectMetadataStatusResponse": { @@ -4983,4 +4983,4 @@ "type": "string" } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Dataset.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Dataset.json index fbd70667a33f..c852ba53b890 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Dataset.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Dataset.json @@ -1316,13 +1316,13 @@ } } }, - "AmazonMWSObjectDataset" : { + "AmazonMWSObjectDataset": { "x-ms-discriminator-value": "AmazonMWSObject", "description": "Amazon Marketplace Web Service dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1333,13 +1333,13 @@ } } }, - "AzurePostgreSqlTableDataset" : { + "AzurePostgreSqlTableDataset": { "x-ms-discriminator-value": "AzurePostgreSqlTable", "description": "Azure PostgreSQL dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1350,13 +1350,13 @@ } } }, - "ConcurObjectDataset" : { + "ConcurObjectDataset": { "x-ms-discriminator-value": "ConcurObject", "description": "Concur Service dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1367,13 +1367,13 @@ } } }, - "CouchbaseTableDataset" : { + "CouchbaseTableDataset": { "x-ms-discriminator-value": "CouchbaseTable", "description": "Couchbase server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1384,13 +1384,13 @@ } } }, - "DrillTableDataset" : { + "DrillTableDataset": { "x-ms-discriminator-value": "DrillTable", "description": "Drill server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1401,13 +1401,13 @@ } } }, - "EloquaObjectDataset" : { + "EloquaObjectDataset": { "x-ms-discriminator-value": "EloquaObject", "description": "Eloqua server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1418,13 +1418,13 @@ } } }, - "GoogleBigQueryObjectDataset" : { + "GoogleBigQueryObjectDataset": { "x-ms-discriminator-value": "GoogleBigQueryObject", "description": "Google BigQuery service dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1435,13 +1435,13 @@ } } }, - "GreenplumTableDataset" : { + "GreenplumTableDataset": { "x-ms-discriminator-value": "GreenplumTable", "description": "Greenplum Database dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1452,13 +1452,13 @@ } } }, - "HBaseObjectDataset" : { + "HBaseObjectDataset": { "x-ms-discriminator-value": "HBaseObject", "description": "HBase server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1469,13 +1469,13 @@ } } }, - "HiveObjectDataset" : { + "HiveObjectDataset": { "x-ms-discriminator-value": "HiveObject", "description": "Hive Server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1486,13 +1486,13 @@ } } }, - "HubspotObjectDataset" : { + "HubspotObjectDataset": { "x-ms-discriminator-value": "HubspotObject", "description": "Hubspot Service dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1503,13 +1503,13 @@ } } }, - "ImpalaObjectDataset" : { + "ImpalaObjectDataset": { "x-ms-discriminator-value": "ImpalaObject", "description": "Impala server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1520,13 +1520,13 @@ } } }, - "JiraObjectDataset" : { + "JiraObjectDataset": { "x-ms-discriminator-value": "JiraObject", "description": "Jira Service dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1537,13 +1537,13 @@ } } }, - "MagentoObjectDataset" : { + "MagentoObjectDataset": { "x-ms-discriminator-value": "MagentoObject", "description": "Magento server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1554,13 +1554,13 @@ } } }, - "MariaDBTableDataset" : { + "MariaDBTableDataset": { "x-ms-discriminator-value": "MariaDBTable", "description": "MariaDB server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1571,13 +1571,13 @@ } } }, - "MarketoObjectDataset" : { + "MarketoObjectDataset": { "x-ms-discriminator-value": "MarketoObject", "description": "Marketo server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1588,13 +1588,13 @@ } } }, - "PaypalObjectDataset" : { + "PaypalObjectDataset": { "x-ms-discriminator-value": "PaypalObject", "description": "Paypal Service dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1605,13 +1605,13 @@ } } }, - "PhoenixObjectDataset" : { + "PhoenixObjectDataset": { "x-ms-discriminator-value": "PhoenixObject", "description": "Phoenix server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1622,13 +1622,13 @@ } } }, - "PrestoObjectDataset" : { + "PrestoObjectDataset": { "x-ms-discriminator-value": "PrestoObject", "description": "Presto server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1639,13 +1639,13 @@ } } }, - "QuickBooksObjectDataset" : { + "QuickBooksObjectDataset": { "x-ms-discriminator-value": "QuickBooksObject", "description": "QuickBooks server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1656,13 +1656,13 @@ } } }, - "ServiceNowObjectDataset" : { + "ServiceNowObjectDataset": { "x-ms-discriminator-value": "ServiceNowObject", "description": "ServiceNow server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1673,13 +1673,13 @@ } } }, - "ShopifyObjectDataset" : { + "ShopifyObjectDataset": { "x-ms-discriminator-value": "ShopifyObject", "description": "Shopify Service dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1690,13 +1690,13 @@ } } }, - "SparkObjectDataset" : { + "SparkObjectDataset": { "x-ms-discriminator-value": "SparkObject", "description": "Spark Server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1707,13 +1707,13 @@ } } }, - "SquareObjectDataset" : { + "SquareObjectDataset": { "x-ms-discriminator-value": "SquareObject", "description": "Square Service dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1724,13 +1724,13 @@ } } }, - "XeroObjectDataset" : { + "XeroObjectDataset": { "x-ms-discriminator-value": "XeroObject", "description": "Xero Service dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1741,13 +1741,13 @@ } } }, - "ZohoObjectDataset" : { + "ZohoObjectDataset": { "x-ms-discriminator-value": "ZohoObject", "description": "Zoho server dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1758,13 +1758,13 @@ } } }, - "NetezzaTableDataset" : { + "NetezzaTableDataset": { "x-ms-discriminator-value": "NetezzaTable", "description": "Netezza dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1775,13 +1775,13 @@ } } }, - "VerticaTableDataset" : { + "VerticaTableDataset": { "x-ms-discriminator-value": "VerticaTable", "description": "Vertica dataset.", "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1798,7 +1798,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1815,7 +1815,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1864,7 +1864,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1910,7 +1910,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/Dataset" + "$ref": "#/definitions/Dataset" } ], "properties": { @@ -1923,4 +1923,3 @@ } } } - diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/LinkedService.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/LinkedService.json index 52ba169775af..cfd2f60f420e 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/LinkedService.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/LinkedService.json @@ -1877,7 +1877,7 @@ "clientId" ] }, - "RestServiceLinkedService": { + "RestServiceLinkedService": { "x-ms-discriminator-value": "RestService", "description": "Rest Service linked service.", "type": "object", @@ -4954,4 +4954,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json index a28f3d82c131..207b33342f7a 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json @@ -3641,4 +3641,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ActivityRuns_QueryByPipelineRun.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ActivityRuns_QueryByPipelineRun.json index fe9db3793a6a..5233d07d4c96 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ActivityRuns_QueryByPipelineRun.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ActivityRuns_QueryByPipelineRun.json @@ -107,4 +107,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Create.json index 83402fbecceb..93b679ecd61f 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Create.json @@ -94,4 +94,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Delete.json index c6053fe39891..47e68c5727f4 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Delete.json @@ -28,4 +28,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Get.json index d99a0b7faa24..2f9bfca0e407 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Get.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_ListByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_ListByFactory.json index 62f89924db05..354f4fbefd87 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_ListByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_ListByFactory.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Update.json index ca71bc4482ba..633f3c0603be 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Update.json @@ -84,4 +84,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValue.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValue.json index 53b0f29b7463..03fc1dfeb53e 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValue.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValue.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValueByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValueByFactory.json index fd5b666467bd..19786c58eddb 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValueByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValueByFactory.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ConfigureFactoryRepo.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ConfigureFactoryRepo.json index b6f8fd06a9a7..ec3aed4cf249 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ConfigureFactoryRepo.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ConfigureFactoryRepo.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_CreateOrUpdate.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_CreateOrUpdate.json index 83401598c21a..94efe701a8f8 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_CreateOrUpdate.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_CreateOrUpdate.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Delete.json index 1e8e7b08ecb6..9e08c0d44edb 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Delete.json @@ -27,4 +27,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Get.json index 5cfc600c634c..fb52e24bd0ed 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Get.json @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetDataPlaneAccess.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetDataPlaneAccess.json index 4f1da8e9e906..744dae50f325 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetDataPlaneAccess.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetDataPlaneAccess.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetGitHubAccessToken.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetGitHubAccessToken.json index 519664661711..24b8ba0be05b 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetGitHubAccessToken.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetGitHubAccessToken.json @@ -20,8 +20,8 @@ "x-ms-correlation-request-id": "da630ed9-35e4-41cd-9f93-be14dbcbd099" }, "body": { - "gitHubAccessToken":"myAccessTokenExample" + "gitHubAccessToken": "myAccessTokenExample" } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_List.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_List.json index f6bbd4f3b09f..3ef2a545c7e8 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_List.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_List.json @@ -202,4 +202,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ListByResourceGroup.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ListByResourceGroup.json index 2aadecb3999c..faf67ff17797 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ListByResourceGroup.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ListByResourceGroup.json @@ -75,4 +75,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Update.json index 0ca66d871fbb..e84c444e6647 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Update.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Delete.json index 8ad31a2f4f0e..0f1b126c114d 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Delete.json @@ -29,4 +29,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Get.json index f4a230fc01d7..f7690ebfb45e 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Get.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_GetIpAddress.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_GetIpAddress.json index 9d7b7cecfc8d..bb2abe1d98cc 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_GetIpAddress.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_GetIpAddress.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Update.json index bda4589fa6e5..e1613c40e56f 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Update.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Get.json index 0d10c3b4f37e..149f79cf2b13 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Get.json @@ -231,4 +231,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Refresh.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Refresh.json index 5a8cdeb4c8c7..12223de81dad 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Refresh.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Refresh.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Create.json index d29fa9183fe8..97e23db02513 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Create.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_CreateLinkedIntegrationRuntime.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_CreateLinkedIntegrationRuntime.json index c0156b47ab3b..bfafc36f7558 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_CreateLinkedIntegrationRuntime.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_CreateLinkedIntegrationRuntime.json @@ -87,4 +87,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Delete.json index b080ffbcd5c7..fef7de2ae1b8 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Delete.json @@ -28,4 +28,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Get.json index 072fb4d1e260..bf176d4c530c 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Get.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetConnectionInfo.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetConnectionInfo.json index 916a85249c56..85dcb8cce89d 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetConnectionInfo.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetConnectionInfo.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetMonitoringData.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetMonitoringData.json index ee22ca1956db..a31a69d5f0da 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetMonitoringData.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetMonitoringData.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetStatus.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetStatus.json index eb30d6ce41c8..e7263d9c62b9 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetStatus.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetStatus.json @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListAuthKeys.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListAuthKeys.json index d4469bbe608b..9d143cf73965 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListAuthKeys.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListAuthKeys.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListByFactory.json index 7961ec82f45b..716811d7fded 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListByFactory.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RegenerateAuthKey.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RegenerateAuthKey.json index 5587566f8150..81c80e555136 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RegenerateAuthKey.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RegenerateAuthKey.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RemoveLinks.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RemoveLinks.json index 3baecff413c6..0b1ee0992f65 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RemoveLinks.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RemoveLinks.json @@ -21,4 +21,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Start.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Start.json index c4b7ae4cff12..5204f13a4efb 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Start.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Start.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Stop.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Stop.json index 50c00081777e..6dbb6c741832 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Stop.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Stop.json @@ -30,4 +30,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_SyncCredentials.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_SyncCredentials.json index b614b05b52e6..dca3b2c54e68 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_SyncCredentials.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_SyncCredentials.json @@ -18,4 +18,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Update.json index cbe1a8c4235b..ebac058654f5 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Update.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Upgrade.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Upgrade.json index 30998ace71e3..2130bac563ad 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Upgrade.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Upgrade.json @@ -18,4 +18,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Create.json index 5f7c0bc17471..bd917f8bd565 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Create.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Delete.json index ee8b10b68aec..77b54d160ffb 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Delete.json @@ -28,4 +28,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Get.json index 2c3a1f7902f5..bcfc70fc842c 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Get.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_ListByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_ListByFactory.json index d90b155020ce..319bbb24827d 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_ListByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_ListByFactory.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Update.json index 2fea4585de27..cef06ef4b2f3 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Update.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Operations_List.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Operations_List.json index 2a2ed78c8df8..b8e728dab337 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Operations_List.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Operations_List.json @@ -1031,4 +1031,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Cancel.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Cancel.json index ff5617cb7614..24fb26ea9bd7 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Cancel.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Cancel.json @@ -18,4 +18,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Get.json index 657ed25eed2f..69557e9a95d3 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Get.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_QueryByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_QueryByFactory.json index cbb12946813b..b110f2399a3f 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_QueryByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_QueryByFactory.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json index a35819f0b35c..9d0a1ba448e3 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json @@ -152,4 +152,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_CreateRun.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_CreateRun.json index 721114951093..6db90f12d9bd 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_CreateRun.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_CreateRun.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Delete.json index 6cbb5ed82357..7bbfe9b6ccda 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Delete.json @@ -28,4 +28,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json index 2ff9004c5fe5..68f3ff289730 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json @@ -98,4 +98,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_ListByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_ListByFactory.json index 76bfe07287e2..ef2d35a49e96 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_ListByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_ListByFactory.json @@ -85,4 +85,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json index 239e9d8251e9..d8f17d97dca1 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json @@ -144,4 +144,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Cancel.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Cancel.json index 9506549b1bb8..3b2d7aab6b24 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Cancel.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Cancel.json @@ -19,4 +19,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Create.json index 70c7c155f276..7463511ef117 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Create.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_ListByTrigger.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_ListByTrigger.json index a08ff0b93fac..e6ea096fb88f 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_ListByTrigger.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_ListByTrigger.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Start.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Start.json index 662bcb719b5f..d3ec620445f6 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Start.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Start.json @@ -19,4 +19,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Stop.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Stop.json index 9506549b1bb8..3b2d7aab6b24 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Stop.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/RerunTriggers_Stop.json @@ -19,4 +19,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/TriggerRuns_QueryByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/TriggerRuns_QueryByFactory.json index 3e7e1935aeaa..0459859ced96 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/TriggerRuns_QueryByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/TriggerRuns_QueryByFactory.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Create.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Create.json index 8d0d568e11d3..d5dd062211e4 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Create.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Create.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Delete.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Delete.json index a421eae21ad0..1708b189ac2a 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Delete.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Delete.json @@ -28,4 +28,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Get.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Get.json index 849cc9d0cb4d..ff4f437452f4 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Get.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Get.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_ListByFactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_ListByFactory.json index d624262a0bc7..783f84c0112c 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_ListByFactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_ListByFactory.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Start.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Start.json index e519779f355a..e037a3de47e6 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Start.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Start.json @@ -18,4 +18,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Stop.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Stop.json index d26575b13848..b311f31a3f50 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Stop.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Stop.json @@ -18,4 +18,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Update.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Update.json index 279774e97f2a..be49edc3dced 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Update.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Update.json @@ -79,4 +79,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2015-10-01-preview/catalog.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2015-10-01-preview/catalog.json index 95331d8e363d..4d377d679b65 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2015-10-01-preview/catalog.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2015-10-01-preview/catalog.json @@ -2901,4 +2901,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2015-11-01-preview/job.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2015-11-01-preview/job.json index 0d3a24a48e0a..7bf8ab43655e 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2015-11-01-preview/job.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2015-11-01-preview/job.json @@ -1023,4 +1023,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2016-03-20-preview/job.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2016-03-20-preview/job.json index 0db2aa94ac9d..416404d9d156 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2016-03-20-preview/job.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2016-03-20-preview/job.json @@ -536,7 +536,6 @@ "VertexResourceInUserFolder", "JobManagerResourceInUserFolder", "StatisticsResourceInUserFolder" - ], "x-ms-enum": { "name": "JobResourceType", @@ -690,32 +689,32 @@ }, "description": "The common Data Lake Analytics job properties." }, - "Diagnostics" : { + "Diagnostics": { "properties": { - "columnNumber" : { + "columnNumber": { "description": "the column where the error occurred.", "type": "integer", "format": "int32", "readOnly": true }, - "end" : { + "end": { "description": "the ending index of the error.", "type": "integer", "format": "int32", "readOnly": true }, - "lineNumber" : { + "lineNumber": { "description": "the line number the error occurred on.", "type": "integer", "format": "int32", "readOnly": true }, - "message" : { + "message": { "description": "the error message.", "type": "string", "readOnly": true }, - "severity" : { + "severity": { "description": "the severity of the error.", "readOnly": true, "type": "string", @@ -729,7 +728,7 @@ "modelAsString": false } }, - "start" : { + "start": { "description": "the starting index of the error.", "type": "integer", "format": "int32", @@ -1007,7 +1006,7 @@ "type": "array", "items": { "type": "string" - }, + }, "description": "the list of log file name patterns to find in the logFolder. '*' is the only matching character allowed. Example format: jobExecution*.log or *mylog*.txt" }, "stateAuditRecords": { diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Build.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Build.json index 6ceeb3ab4b79..baa5e5b204e3 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Build.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Build.json @@ -1,88 +1,92 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "parameters": { - "type": "USql", - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "USql" + "type": "USql", + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "USql" + }, + "name": "test_name" + } + }, + "responses": { + "200": { + "body": { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "name": "test_name", + "type": "USql", + "submitter": "test_submitter", + "degreeOfParallelism": 1, + "priority": 1, + "submitTime": "2017-04-18T11:16:49.0748958-07:00", + "startTime": "2017-04-18T11:16:49.0748958-07:00", + "endTime": "2017-04-18T11:16:49.0748958-07:00", + "state": "Accepted", + "result": "Succeeded", + "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" + }, + "tags": { + "test_key": "test_value" + }, + "errorMessage": [ + { + "description": "test_description", + "details": "test_details", + "endOffset": 1, + "errorId": "test_error_id", + "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "lineNumber": 1, + "message": "test_message", + "resolution": "test_resolution", + "innerError": { + "diagnosticCode": 1, + "severity": "Warning", + "details": "test_details", + "component": "test_component", + "errorId": "test_error_id", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "message": "test_message", + "resolution": "test_resolution", + "source": "SYSTEM", + "description": "test_description" }, - "name": "test_name" - } - }, - "responses": { - "200": { - "body": { - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "name": "test_name", - "type": "USql", - "submitter": "test_submitter", - "degreeOfParallelism": 1, - "priority": 1, - "submitTime": "2017-04-18T11:16:49.0748958-07:00", - "startTime": "2017-04-18T11:16:49.0748958-07:00", - "endTime": "2017-04-18T11:16:49.0748958-07:00", - "state": "Accepted", - "result": "Succeeded", - "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - }, - "tags": { - "test_key": "test_value" - }, - "errorMessage": [{ - "description": "test_description", - "details": "test_details", - "endOffset": 1, - "errorId": "test_error_id", - "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "lineNumber": 1, - "message": "test_message", - "resolution": "test_resolution", - "innerError": { - "diagnosticCode": 1, - "severity": "Warning", - "details": "test_details", - "component": "test_component", - "errorId": "test_error_id", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "message": "test_message", - "resolution": "test_resolution", - "source": "SYSTEM", - "description": "test_description" - }, - "severity": "Warning", - "source": "SYSTEM", - "startOffset": 1 - }], - "stateAuditRecords": [{ - "newState": "test_new_state", - "timeStamp": "2017-04-18T11:16:49.0748958-07:00", - "requestedByUser": "test_requested_by_user", - "details": "test_details" - }], - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "USql" - } - } + "severity": "Warning", + "source": "SYSTEM", + "startOffset": 1 + } + ], + "stateAuditRecords": [ + { + "newState": "test_new_state", + "timeStamp": "2017-04-18T11:16:49.0748958-07:00", + "requestedByUser": "test_requested_by_user", + "details": "test_details" + } + ], + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "USql" } + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Cancel.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Cancel.json index 09f18758b1bc..0f6b9bfbcaea 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Cancel.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Cancel.json @@ -1,16 +1,13 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" - }, - "responses": { - "200": { - }, - "202": { - }, - "204": { - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Create.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Create.json index e18aa9f2425a..74d84f3f66c3 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Create.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Create.json @@ -1,103 +1,107 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", - "parameters": { - "type": "USql", - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "USql" + "type": "USql", + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "USql" + }, + "name": "test_name", + "degreeOfParallelism": 1, + "priority": 1, + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" + } + } + }, + "responses": { + "200": { + "body": { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "name": "test_name", + "type": "USql", + "submitter": "test_submitter", + "degreeOfParallelism": 1, + "priority": 1, + "submitTime": "2017-04-18T11:16:49.0748958-07:00", + "startTime": "2017-04-18T11:16:49.0748958-07:00", + "endTime": "2017-04-18T11:16:49.0748958-07:00", + "state": "Accepted", + "result": "Succeeded", + "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" + }, + "tags": { + "test_key": "test_value" + }, + "errorMessage": [ + { + "description": "test_description", + "details": "test_details", + "endOffset": 1, + "errorId": "test_error_id", + "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "lineNumber": 1, + "message": "test_message", + "resolution": "test_resolution", + "innerError": { + "diagnosticCode": 1, + "severity": "Warning", + "details": "test_details", + "component": "test_component", + "errorId": "test_error_id", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "message": "test_message", + "resolution": "test_resolution", + "source": "SYSTEM", + "description": "test_description" }, - "name": "test_name", - "degreeOfParallelism": 1, - "priority": 1, - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - } - } - }, - "responses": { - "200": { - "body": { - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "name": "test_name", - "type": "USql", - "submitter": "test_submitter", - "degreeOfParallelism": 1, - "priority": 1, - "submitTime": "2017-04-18T11:16:49.0748958-07:00", - "startTime": "2017-04-18T11:16:49.0748958-07:00", - "endTime": "2017-04-18T11:16:49.0748958-07:00", - "state": "Accepted", - "result": "Succeeded", - "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - }, - "tags": { - "test_key": "test_value" - }, - "errorMessage": [{ - "description": "test_description", - "details": "test_details", - "endOffset": 1, - "errorId": "test_error_id", - "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "lineNumber": 1, - "message": "test_message", - "resolution": "test_resolution", - "innerError": { - "diagnosticCode": 1, - "severity": "Warning", - "details": "test_details", - "component": "test_component", - "errorId": "test_error_id", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "message": "test_message", - "resolution": "test_resolution", - "source": "SYSTEM", - "description": "test_description" - }, - "severity": "Warning", - "source": "SYSTEM", - "startOffset": 1 - }], - "stateAuditRecords": [{ - "newState": "test_new_state", - "timeStamp": "2017-04-18T11:16:49.0748958-07:00", - "requestedByUser": "test_requested_by_user", - "details": "test_details" - }], - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "USql" - } - } + "severity": "Warning", + "source": "SYSTEM", + "startOffset": 1 + } + ], + "stateAuditRecords": [ + { + "newState": "test_new_state", + "timeStamp": "2017-04-18T11:16:49.0748958-07:00", + "requestedByUser": "test_requested_by_user", + "details": "test_details" + } + ], + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "USql" } + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Get.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Get.json index 9c71939c68ab..bcf9262e5433 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Get.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Get.json @@ -1,80 +1,84 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" - }, - "responses": { - "200": { - "body": { - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "name": "test_name", - "type": "USql", - "submitter": "test_submitter", - "degreeOfParallelism": 1, - "priority": 1, - "submitTime": "2017-04-18T11:16:49.0748958-07:00", - "startTime": "2017-04-18T11:16:49.0748958-07:00", - "endTime": "2017-04-18T11:16:49.0748958-07:00", - "state": "Accepted", - "result": "Succeeded", - "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - }, - "tags": { - "test_key": "test_value" - }, - "errorMessage": [{ - "description": "test_description", - "details": "test_details", - "endOffset": 1, - "errorId": "test_error_id", - "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "lineNumber": 1, - "message": "test_message", - "resolution": "test_resolution", - "innerError": { - "diagnosticCode": 1, - "severity": "Warning", - "details": "test_details", - "component": "test_component", - "errorId": "test_error_id", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "message": "test_message", - "resolution": "test_resolution", - "source": "SYSTEM", - "description": "test_description" - }, - "severity": "Warning", - "source": "SYSTEM", - "startOffset": 1 - }], - "stateAuditRecords": [{ - "newState": "test_new_state", - "timeStamp": "2017-04-18T11:16:49.0748958-07:00", - "requestedByUser": "test_requested_by_user", - "details": "test_details" - }], - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "USql" - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" + }, + "responses": { + "200": { + "body": { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "name": "test_name", + "type": "USql", + "submitter": "test_submitter", + "degreeOfParallelism": 1, + "priority": 1, + "submitTime": "2017-04-18T11:16:49.0748958-07:00", + "startTime": "2017-04-18T11:16:49.0748958-07:00", + "endTime": "2017-04-18T11:16:49.0748958-07:00", + "state": "Accepted", + "result": "Succeeded", + "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" + }, + "tags": { + "test_key": "test_value" + }, + "errorMessage": [ + { + "description": "test_description", + "details": "test_details", + "endOffset": 1, + "errorId": "test_error_id", + "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "lineNumber": 1, + "message": "test_message", + "resolution": "test_resolution", + "innerError": { + "diagnosticCode": 1, + "severity": "Warning", + "details": "test_details", + "component": "test_component", + "errorId": "test_error_id", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "message": "test_message", + "resolution": "test_resolution", + "source": "SYSTEM", + "description": "test_description" + }, + "severity": "Warning", + "source": "SYSTEM", + "startOffset": 1 + } + ], + "stateAuditRecords": [ + { + "newState": "test_new_state", + "timeStamp": "2017-04-18T11:16:49.0748958-07:00", + "requestedByUser": "test_requested_by_user", + "details": "test_details" + } + ], + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "USql" } + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_GetDebugDataPath.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_GetDebugDataPath.json index 1dd27580aa29..7d1e0fe91660 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_GetDebugDataPath.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_GetDebugDataPath.json @@ -1,20 +1,20 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" - }, - "responses": { - "200": { - "body": { - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "command": "test_command", - "paths": [ - "test_path_1", - "test_path_2" - ] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" + }, + "responses": { + "200": { + "body": { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "command": "test_command", + "paths": [ + "test_path_1", + "test_path_2" + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_GetStatistics.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_GetStatistics.json index 182690613ad8..7c254cf468fa 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_GetStatistics.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_GetStatistics.json @@ -1,38 +1,40 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" - }, - "responses": { - "200": { - "body": { - "lastUpdateTimeUtc": "2017-04-18T11:16:49.0748958-07:00", - "finalizingTimeUtc": "2017-04-18T11:16:49.0748958-07:00", - "stages": [{ - "dataRead": 1, - "dataReadCrossPod": 1, - "dataReadIntraPod": 1, - "dataToRead": 1, - "dataWritten": 1, - "duplicateDiscardCount": 1, - "failedCount": 1, - "maxVertexDataRead": 1, - "minVertexDataRead": 1, - "readFailureCount": 1, - "revocationCount": 1, - "runningCount": 1, - "scheduledCount": 1, - "stageName": "test_stage_name", - "succeededCount": 1, - "tempDataWritten": 1, - "totalCount": 1, - "totalFailedTime": "PT0S", - "totalProgress": 1, - "totalSucceededTime": "PT0S" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" + }, + "responses": { + "200": { + "body": { + "lastUpdateTimeUtc": "2017-04-18T11:16:49.0748958-07:00", + "finalizingTimeUtc": "2017-04-18T11:16:49.0748958-07:00", + "stages": [ + { + "dataRead": 1, + "dataReadCrossPod": 1, + "dataReadIntraPod": 1, + "dataToRead": 1, + "dataWritten": 1, + "duplicateDiscardCount": 1, + "failedCount": 1, + "maxVertexDataRead": 1, + "minVertexDataRead": 1, + "readFailureCount": 1, + "revocationCount": 1, + "runningCount": 1, + "scheduledCount": 1, + "stageName": "test_stage_name", + "succeededCount": 1, + "tempDataWritten": 1, + "totalCount": 1, + "totalFailedTime": "PT0S", + "totalProgress": 1, + "totalSucceededTime": "PT0S" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_List.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_List.json index 3d8689c9bb33..8ccd670d6930 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_List.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_List.json @@ -1,49 +1,51 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "value": [{ - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "name": "test_name", - "type": "USql", - "submitter": "test_submitter", - "degreeOfParallelism": 1, - "priority": 1, - "submitTime": "2017-04-18T11:16:49.0748958-07:00", - "startTime": "2017-04-18T11:16:49.0748958-07:00", - "endTime": "2017-04-18T11:16:49.0748958-07:00", - "state": "Accepted", - "result": "Succeeded", - "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - }, - "tags": { - "test_key": "test_value" - } - }], - "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "value": [ + { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "name": "test_name", + "type": "USql", + "submitter": "test_submitter", + "degreeOfParallelism": 1, + "priority": 1, + "submitTime": "2017-04-18T11:16:49.0748958-07:00", + "startTime": "2017-04-18T11:16:49.0748958-07:00", + "endTime": "2017-04-18T11:16:49.0748958-07:00", + "state": "Accepted", + "result": "Succeeded", + "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" + }, + "tags": { + "test_key": "test_value" } - } + } + ], + "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Update.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Update.json index 54cd118c364e..41cad2d3a8de 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Update.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Update.json @@ -1,91 +1,93 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", - "parameters": { - "degreeOfParallelism": 1, - "priority": 1, - "tags": { - "test_key": "test_value" - } - } - }, - "responses": { - "200": { - "body": { - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "name": "test_name", - "type": "USql", - "submitter": "test_submitter", - "degreeOfParallelism": 1, - "priority": 1, - "submitTime": "2017-04-18T11:16:49.0748958-07:00", - "startTime": "2017-04-18T11:16:49.0748958-07:00", - "endTime": "2017-04-18T11:16:49.0748958-07:00", - "state": "Accepted", - "result": "Succeeded", - "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - }, - "tags": { - "test_key": "test_value" - }, - "errorMessage": [{ - "description": "test_description", - "details": "test_details", - "endOffset": 1, - "errorId": "test_error_id", - "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "lineNumber": 1, - "message": "test_message", - "resolution": "test_resolution", - "innerError": { - "diagnosticCode": 1, - "severity": "Warning", - "details": "test_details", - "component": "test_component", - "errorId": "test_error_id", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "message": "test_message", - "resolution": "test_resolution", - "source": "SYSTEM", - "description": "test_description" - }, - "severity": "Warning", - "source": "SYSTEM", - "startOffset": 1 - }], - "stateAuditRecords": [{ - "newState": "test_new_state", - "timeStamp": "2017-04-18T11:16:49.0748958-07:00", - "requestedByUser": "test_requested_by_user", - "details": "test_details" - }], - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "Hive" - } - } + "degreeOfParallelism": 1, + "priority": 1, + "tags": { + "test_key": "test_value" + } + } + }, + "responses": { + "200": { + "body": { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "name": "test_name", + "type": "USql", + "submitter": "test_submitter", + "degreeOfParallelism": 1, + "priority": 1, + "submitTime": "2017-04-18T11:16:49.0748958-07:00", + "startTime": "2017-04-18T11:16:49.0748958-07:00", + "endTime": "2017-04-18T11:16:49.0748958-07:00", + "state": "Accepted", + "result": "Succeeded", + "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" }, - "201": { + "tags": { + "test_key": "test_value" }, - "202": { + "errorMessage": [ + { + "description": "test_description", + "details": "test_details", + "endOffset": 1, + "errorId": "test_error_id", + "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "lineNumber": 1, + "message": "test_message", + "resolution": "test_resolution", + "innerError": { + "diagnosticCode": 1, + "severity": "Warning", + "details": "test_details", + "component": "test_component", + "errorId": "test_error_id", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "message": "test_message", + "resolution": "test_resolution", + "source": "SYSTEM", + "description": "test_description" + }, + "severity": "Warning", + "source": "SYSTEM", + "startOffset": 1 + } + ], + "stateAuditRecords": [ + { + "newState": "test_new_state", + "timeStamp": "2017-04-18T11:16:49.0748958-07:00", + "requestedByUser": "test_requested_by_user", + "details": "test_details" + } + ], + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "Hive" } - } + } + }, + "201": {}, + "202": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Yield.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Yield.json index 09f18758b1bc..0f6b9bfbcaea 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Yield.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Job_Yield.json @@ -1,16 +1,13 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" - }, - "responses": { - "200": { - }, - "202": { - }, - "204": { - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Pipeline_Get.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Pipeline_Get.json index 76fddedb5fd2..83b65ea13fb5 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Pipeline_Get.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Pipeline_Get.json @@ -1,34 +1,36 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "pipelineIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", - "startDateTime": "2017-04-18T11:16:49.0748958-07:00", - "endDateTime": "2017-04-18T11:16:49.0748958-07:00" - }, - "responses": { - "200": { - "body": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "numJobsFailed": 1, - "numJobsCanceled": 1, - "numJobsSucceeded": 1, - "auHoursFailed": 1.0, - "auHoursCanceled": 1.0, - "auHoursSucceeded": 1.0, - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00", - "runs": [{ - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" - }], - "recurrences": [ - "2ba01f6c-562d-4246-90ff-0b8c2d10e346", - "da8dc3de-2fd8-4641-8968-40dbbf11e95f" - ] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "pipelineIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", + "startDateTime": "2017-04-18T11:16:49.0748958-07:00", + "endDateTime": "2017-04-18T11:16:49.0748958-07:00" + }, + "responses": { + "200": { + "body": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "numJobsFailed": 1, + "numJobsCanceled": 1, + "numJobsSucceeded": 1, + "auHoursFailed": 1.0, + "auHoursCanceled": 1.0, + "auHoursSucceeded": 1.0, + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00", + "runs": [ + { + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" + } + ], + "recurrences": [ + "2ba01f6c-562d-4246-90ff-0b8c2d10e346", + "da8dc3de-2fd8-4641-8968-40dbbf11e95f" + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Pipeline_List.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Pipeline_List.json index 7803c038f2f0..a686098793b5 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Pipeline_List.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Pipeline_List.json @@ -1,36 +1,40 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "startDateTime": "2017-04-18T11:16:49.0748958-07:00", - "endDateTime": "2017-04-18T11:16:49.0748958-07:00" - }, - "responses": { - "200": { - "body": { - "value": [{ - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "numJobsFailed": 1, - "numJobsCanceled": 1, - "numJobsSucceeded": 1, - "auHoursFailed": 1.0, - "auHoursCanceled": 1.0, - "auHoursSucceeded": 1.0, - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00", - "runs": [{ - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" - }], - "recurrences": [ - "2ba01f6c-562d-4246-90ff-0b8c2d10e346", - "da8dc3de-2fd8-4641-8968-40dbbf11e95f" - ] - }], - "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "startDateTime": "2017-04-18T11:16:49.0748958-07:00", + "endDateTime": "2017-04-18T11:16:49.0748958-07:00" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "numJobsFailed": 1, + "numJobsCanceled": 1, + "numJobsSucceeded": 1, + "auHoursFailed": 1.0, + "auHoursCanceled": 1.0, + "auHoursSucceeded": 1.0, + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00", + "runs": [ + { + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" + } + ], + "recurrences": [ + "2ba01f6c-562d-4246-90ff-0b8c2d10e346", + "da8dc3de-2fd8-4641-8968-40dbbf11e95f" + ] + } + ], + "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Recurrence_Get.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Recurrence_Get.json index 9f8e326cba38..83174744e93c 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Recurrence_Get.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Recurrence_Get.json @@ -1,25 +1,25 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "recurrenceIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", - "startDateTime": "2017-04-18T11:16:49.0748958-07:00", - "endDateTime": "2017-04-18T11:16:49.0748958-07:00" - }, - "responses": { - "200": { - "body": { - "recurrenceId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "recurrenceName": "test_recurrence_name", - "numJobsFailed": 1, - "numJobsCanceled": 1, - "numJobsSucceeded": 1, - "auHoursFailed": 1.0, - "auHoursCanceled": 1.0, - "auHoursSucceeded": 1.0, - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "recurrenceIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", + "startDateTime": "2017-04-18T11:16:49.0748958-07:00", + "endDateTime": "2017-04-18T11:16:49.0748958-07:00" + }, + "responses": { + "200": { + "body": { + "recurrenceId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "recurrenceName": "test_recurrence_name", + "numJobsFailed": 1, + "numJobsCanceled": 1, + "numJobsSucceeded": 1, + "auHoursFailed": 1.0, + "auHoursCanceled": 1.0, + "auHoursSucceeded": 1.0, + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Recurrence_List.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Recurrence_List.json index f12dad78264f..6c85120742ea 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Recurrence_List.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/examples/Recurrence_List.json @@ -1,27 +1,29 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaJobDnsSuffix": "azuredatalakeanalytics.net", - "startDateTime": "2017-04-18T11:16:49.0748958-07:00", - "endDateTime": "2017-04-18T11:16:49.0748958-07:00" - }, - "responses": { - "200": { - "body": { - "value": [{ - "recurrenceId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "recurrenceName": "test_recurrence_name", - "numJobsFailed": 1, - "numJobsCanceled": 1, - "numJobsSucceeded": 1, - "auHoursFailed": 1.0, - "auHoursCanceled": 1.0, - "auHoursSucceeded": 1.0, - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" - }], - "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaJobDnsSuffix": "azuredatalakeanalytics.net", + "startDateTime": "2017-04-18T11:16:49.0748958-07:00", + "endDateTime": "2017-04-18T11:16:49.0748958-07:00" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "recurrenceId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "recurrenceName": "test_recurrence_name", + "numJobsFailed": 1, + "numJobsCanceled": 1, + "numJobsSucceeded": 1, + "auHoursFailed": 1.0, + "auHoursCanceled": 1.0, + "auHoursSucceeded": 1.0, + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" + } + ], + "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/job.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/job.json index 911c3e76cd92..65f78c6aeb25 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/job.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/preview/2017-09-01-preview/job.json @@ -1890,7 +1890,6 @@ "description": "The recurring job relationship information properties." } }, - "description": "The parameters used to submit a new Data Lake Analytics job." }, "CreateScopeJobParameters": { diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Build.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Build.json index 520955a36cb6..f3d02df1083d 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Build.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Build.json @@ -1,85 +1,89 @@ { + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "parameters": { - "type": "USql", - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "USql" + "type": "USql", + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "USql" + }, + "name": "test_name" + } + }, + "responses": { + "200": { + "body": { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "name": "test_name", + "type": "USql", + "submitter": "test_submitter", + "degreeOfParallelism": 1, + "priority": 1, + "submitTime": "2017-04-18T11:16:49.0748958-07:00", + "startTime": "2017-04-18T11:16:49.0748958-07:00", + "endTime": "2017-04-18T11:16:49.0748958-07:00", + "state": "Accepted", + "result": "Succeeded", + "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" + }, + "errorMessage": [ + { + "description": "test_description", + "details": "test_details", + "endOffset": 1, + "errorId": "test_error_id", + "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "lineNumber": 1, + "message": "test_message", + "resolution": "test_resolution", + "innerError": { + "diagnosticCode": 1, + "severity": "Warning", + "details": "test_details", + "component": "test_component", + "errorId": "test_error_id", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "message": "test_message", + "resolution": "test_resolution", + "source": "SYSTEM", + "description": "test_description" }, - "name": "test_name" - } - }, - "responses": { - "200": { - "body": { - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "name": "test_name", - "type": "USql", - "submitter": "test_submitter", - "degreeOfParallelism": 1, - "priority": 1, - "submitTime": "2017-04-18T11:16:49.0748958-07:00", - "startTime": "2017-04-18T11:16:49.0748958-07:00", - "endTime": "2017-04-18T11:16:49.0748958-07:00", - "state": "Accepted", - "result": "Succeeded", - "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - }, - "errorMessage": [{ - "description": "test_description", - "details": "test_details", - "endOffset": 1, - "errorId": "test_error_id", - "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "lineNumber": 1, - "message": "test_message", - "resolution": "test_resolution", - "innerError": { - "diagnosticCode": 1, - "severity": "Warning", - "details": "test_details", - "component": "test_component", - "errorId": "test_error_id", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "message": "test_message", - "resolution": "test_resolution", - "source": "SYSTEM", - "description": "test_description" - }, - "severity": "Warning", - "source": "SYSTEM", - "startOffset": 1 - }], - "stateAuditRecords": [{ - "newState": "test_new_state", - "timeStamp": "2017-04-18T11:16:49.0748958-07:00", - "requestedByUser": "test_requested_by_user", - "details": "test_details" - }], - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "USql" - } - } + "severity": "Warning", + "source": "SYSTEM", + "startOffset": 1 + } + ], + "stateAuditRecords": [ + { + "newState": "test_new_state", + "timeStamp": "2017-04-18T11:16:49.0748958-07:00", + "requestedByUser": "test_requested_by_user", + "details": "test_details" + } + ], + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "USql" } + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Cancel.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Cancel.json index b7ae114a3b7d..c39750162dab 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Cancel.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Cancel.json @@ -1,12 +1,11 @@ { - "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" - }, - "responses": { - "200": { - } - } + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Create.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Create.json index e2330dc879e9..f1c5fa864086 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Create.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Create.json @@ -1,100 +1,104 @@ { + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", - "parameters": { - "type": "USql", - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "USql" + "type": "USql", + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "USql" + }, + "name": "test_name", + "degreeOfParallelism": 1, + "priority": 1, + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" + } + } + }, + "responses": { + "200": { + "body": { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "name": "test_name", + "type": "USql", + "submitter": "test_submitter", + "degreeOfParallelism": 1, + "priority": 1, + "submitTime": "2017-04-18T11:16:49.0748958-07:00", + "startTime": "2017-04-18T11:16:49.0748958-07:00", + "endTime": "2017-04-18T11:16:49.0748958-07:00", + "state": "Accepted", + "result": "Succeeded", + "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" + }, + "errorMessage": [ + { + "description": "test_description", + "details": "test_details", + "endOffset": 1, + "errorId": "test_error_id", + "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "lineNumber": 1, + "message": "test_message", + "resolution": "test_resolution", + "innerError": { + "diagnosticCode": 1, + "severity": "Warning", + "details": "test_details", + "component": "test_component", + "errorId": "test_error_id", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "message": "test_message", + "resolution": "test_resolution", + "source": "SYSTEM", + "description": "test_description" }, - "name": "test_name", - "degreeOfParallelism": 1, - "priority": 1, - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - } - } - }, - "responses": { - "200": { - "body": { - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "name": "test_name", - "type": "USql", - "submitter": "test_submitter", - "degreeOfParallelism": 1, - "priority": 1, - "submitTime": "2017-04-18T11:16:49.0748958-07:00", - "startTime": "2017-04-18T11:16:49.0748958-07:00", - "endTime": "2017-04-18T11:16:49.0748958-07:00", - "state": "Accepted", - "result": "Succeeded", - "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - }, - "errorMessage": [{ - "description": "test_description", - "details": "test_details", - "endOffset": 1, - "errorId": "test_error_id", - "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "lineNumber": 1, - "message": "test_message", - "resolution": "test_resolution", - "innerError": { - "diagnosticCode": 1, - "severity": "Warning", - "details": "test_details", - "component": "test_component", - "errorId": "test_error_id", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "message": "test_message", - "resolution": "test_resolution", - "source": "SYSTEM", - "description": "test_description" - }, - "severity": "Warning", - "source": "SYSTEM", - "startOffset": 1 - }], - "stateAuditRecords": [{ - "newState": "test_new_state", - "timeStamp": "2017-04-18T11:16:49.0748958-07:00", - "requestedByUser": "test_requested_by_user", - "details": "test_details" - }], - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "USql" - } - } + "severity": "Warning", + "source": "SYSTEM", + "startOffset": 1 + } + ], + "stateAuditRecords": [ + { + "newState": "test_new_state", + "timeStamp": "2017-04-18T11:16:49.0748958-07:00", + "requestedByUser": "test_requested_by_user", + "details": "test_details" + } + ], + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "USql" } + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Get.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Get.json index f73037f5ce56..f2d0d0c690d1 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Get.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_Get.json @@ -1,77 +1,81 @@ { - "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" - }, - "responses": { - "200": { - "body": { - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "name": "test_name", - "type": "USql", - "submitter": "test_submitter", - "degreeOfParallelism": 1, - "priority": 1, - "submitTime": "2017-04-18T11:16:49.0748958-07:00", - "startTime": "2017-04-18T11:16:49.0748958-07:00", - "endTime": "2017-04-18T11:16:49.0748958-07:00", - "state": "Accepted", - "result": "Succeeded", - "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - }, - "errorMessage": [{ - "description": "test_description", - "details": "test_details", - "endOffset": 1, - "errorId": "test_error_id", - "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "lineNumber": 1, - "message": "test_message", - "resolution": "test_resolution", - "innerError": { - "diagnosticCode": 1, - "severity": "Warning", - "details": "test_details", - "component": "test_component", - "errorId": "test_error_id", - "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", - "internalDiagnostics": "test_internal_diagnostics", - "message": "test_message", - "resolution": "test_resolution", - "source": "SYSTEM", - "description": "test_description" - }, - "severity": "Warning", - "source": "SYSTEM", - "startOffset": 1 - }], - "stateAuditRecords": [{ - "newState": "test_new_state", - "timeStamp": "2017-04-18T11:16:49.0748958-07:00", - "requestedByUser": "test_requested_by_user", - "details": "test_details" - }], - "properties": { - "runtimeVersion": "test_runtime_version", - "script": "test_script", - "type": "USql" - } - } + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" + }, + "responses": { + "200": { + "body": { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "name": "test_name", + "type": "USql", + "submitter": "test_submitter", + "degreeOfParallelism": 1, + "priority": 1, + "submitTime": "2017-04-18T11:16:49.0748958-07:00", + "startTime": "2017-04-18T11:16:49.0748958-07:00", + "endTime": "2017-04-18T11:16:49.0748958-07:00", + "state": "Accepted", + "result": "Succeeded", + "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" + }, + "errorMessage": [ + { + "description": "test_description", + "details": "test_details", + "endOffset": 1, + "errorId": "test_error_id", + "filePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/test_file.txt", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "lineNumber": 1, + "message": "test_message", + "resolution": "test_resolution", + "innerError": { + "diagnosticCode": 1, + "severity": "Warning", + "details": "test_details", + "component": "test_component", + "errorId": "test_error_id", + "helpLink": "https://azure.microsoft.com/en-us/blog/introducing-azure-data-lake/", + "internalDiagnostics": "test_internal_diagnostics", + "message": "test_message", + "resolution": "test_resolution", + "source": "SYSTEM", + "description": "test_description" + }, + "severity": "Warning", + "source": "SYSTEM", + "startOffset": 1 + } + ], + "stateAuditRecords": [ + { + "newState": "test_new_state", + "timeStamp": "2017-04-18T11:16:49.0748958-07:00", + "requestedByUser": "test_requested_by_user", + "details": "test_details" + } + ], + "properties": { + "runtimeVersion": "test_runtime_version", + "script": "test_script", + "type": "USql" } + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_GetDebugDataPath.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_GetDebugDataPath.json index 7726d97fdc90..d7839a080d13 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_GetDebugDataPath.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_GetDebugDataPath.json @@ -1,20 +1,20 @@ { - "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" - }, - "responses": { - "200": { - "body": { - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "command": "test_command", - "paths": [ - "test_path_1", - "test_path_2" - ] - } - } + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" + }, + "responses": { + "200": { + "body": { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "command": "test_command", + "paths": [ + "test_path_1", + "test_path_2" + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_GetStatistics.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_GetStatistics.json index 3b240a387852..3015262ac05f 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_GetStatistics.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_GetStatistics.json @@ -1,38 +1,40 @@ { - "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" - }, - "responses": { - "200": { - "body": { - "lastUpdateTimeUtc": "2017-04-18T11:16:49.0748958-07:00", - "finalizingTimeUtc": "2017-04-18T11:16:49.0748958-07:00", - "stages": [{ - "dataRead": 1, - "dataReadCrossPod": 1, - "dataReadIntraPod": 1, - "dataToRead": 1, - "dataWritten": 1, - "duplicateDiscardCount": 1, - "failedCount": 1, - "maxVertexDataRead": 1, - "minVertexDataRead": 1, - "readFailureCount": 1, - "revocationCount": 1, - "runningCount": 1, - "scheduledCount": 1, - "stageName": "test_stage_name", - "succeededCount": 1, - "tempDataWritten": 1, - "totalCount": 1, - "totalFailedTime": "PT0S", - "totalProgress": 1, - "totalSucceededTime": "PT0S" - }] - } - } + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", + "jobIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09" + }, + "responses": { + "200": { + "body": { + "lastUpdateTimeUtc": "2017-04-18T11:16:49.0748958-07:00", + "finalizingTimeUtc": "2017-04-18T11:16:49.0748958-07:00", + "stages": [ + { + "dataRead": 1, + "dataReadCrossPod": 1, + "dataReadIntraPod": 1, + "dataToRead": 1, + "dataWritten": 1, + "duplicateDiscardCount": 1, + "failedCount": 1, + "maxVertexDataRead": 1, + "minVertexDataRead": 1, + "readFailureCount": 1, + "revocationCount": 1, + "runningCount": 1, + "scheduledCount": 1, + "stageName": "test_stage_name", + "succeededCount": 1, + "tempDataWritten": 1, + "totalCount": 1, + "totalFailedTime": "PT0S", + "totalProgress": 1, + "totalSucceededTime": "PT0S" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_List.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_List.json index c15f4d3a332c..8fd9f03ecba5 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_List.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Job_List.json @@ -1,46 +1,48 @@ { - "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "value": [{ - "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "name": "test_name", - "type": "USql", - "submitter": "test_submitter", - "degreeOfParallelism": 1, - "priority": 1, - "submitTime": "2017-04-18T11:16:49.0748958-07:00", - "startTime": "2017-04-18T11:16:49.0748958-07:00", - "endTime": "2017-04-18T11:16:49.0748958-07:00", - "state": "Accepted", - "result": "Succeeded", - "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", - "logFilePatterns": [ - "test_log_file_pattern_1", - "test_log_file_pattern_2" - ], - "related": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", - "recurrenceName": "test_recurrence_name" - } - }], - "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "value": [ + { + "jobId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "name": "test_name", + "type": "USql", + "submitter": "test_submitter", + "degreeOfParallelism": 1, + "priority": 1, + "submitTime": "2017-04-18T11:16:49.0748958-07:00", + "startTime": "2017-04-18T11:16:49.0748958-07:00", + "endTime": "2017-04-18T11:16:49.0748958-07:00", + "state": "Accepted", + "result": "Succeeded", + "logFolder": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/", + "logFilePatterns": [ + "test_log_file_pattern_1", + "test_log_file_pattern_2" + ], + "related": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "recurrenceId": "67034c12-b250-468e-992d-39fb978bde2d", + "recurrenceName": "test_recurrence_name" } - } + } + ], + "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Pipeline_Get.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Pipeline_Get.json index d0969ab1dead..902807b48173 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Pipeline_Get.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Pipeline_Get.json @@ -1,34 +1,36 @@ { - "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "pipelineIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", - "startDateTime": "2017-04-18T11:16:49.0748958-07:00", - "endDateTime": "2017-04-18T11:16:49.0748958-07:00" - }, - "responses": { - "200": { - "body": { - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "numJobsFailed": 1, - "numJobsCanceled": 1, - "numJobsSucceeded": 1, - "auHoursFailed": 1.0, - "auHoursCanceled": 1.0, - "auHoursSucceeded": 1.0, - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00", - "runs": [{ - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" - }], - "recurrences": [ - "2ba01f6c-562d-4246-90ff-0b8c2d10e346", - "da8dc3de-2fd8-4641-8968-40dbbf11e95f" - ] - } - } + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", + "pipelineIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", + "startDateTime": "2017-04-18T11:16:49.0748958-07:00", + "endDateTime": "2017-04-18T11:16:49.0748958-07:00" + }, + "responses": { + "200": { + "body": { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "numJobsFailed": 1, + "numJobsCanceled": 1, + "numJobsSucceeded": 1, + "auHoursFailed": 1.0, + "auHoursCanceled": 1.0, + "auHoursSucceeded": 1.0, + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00", + "runs": [ + { + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" + } + ], + "recurrences": [ + "2ba01f6c-562d-4246-90ff-0b8c2d10e346", + "da8dc3de-2fd8-4641-8968-40dbbf11e95f" + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Pipeline_List.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Pipeline_List.json index bbaffcc35e5d..5a797c4b8f52 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Pipeline_List.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Pipeline_List.json @@ -1,36 +1,40 @@ { - "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "startDateTime": "2017-04-18T11:16:49.0748958-07:00", - "endDateTime": "2017-04-18T11:16:49.0748958-07:00" - }, - "responses": { - "200": { - "body": { - "value": [{ - "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "pipelineName": "test_pipeline_name", - "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", - "numJobsFailed": 1, - "numJobsCanceled": 1, - "numJobsSucceeded": 1, - "auHoursFailed": 1.0, - "auHoursCanceled": 1.0, - "auHoursSucceeded": 1.0, - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00", - "runs": [{ - "runId": "67034c12-b250-468e-992d-39fb978bde2c", - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" - }], - "recurrences": [ - "2ba01f6c-562d-4246-90ff-0b8c2d10e346", - "da8dc3de-2fd8-4641-8968-40dbbf11e95f" - ] - }], - "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" - } - } + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", + "startDateTime": "2017-04-18T11:16:49.0748958-07:00", + "endDateTime": "2017-04-18T11:16:49.0748958-07:00" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "pipelineId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "pipelineName": "test_pipeline_name", + "pipelineUri": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09", + "numJobsFailed": 1, + "numJobsCanceled": 1, + "numJobsSucceeded": 1, + "auHoursFailed": 1.0, + "auHoursCanceled": 1.0, + "auHoursSucceeded": 1.0, + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00", + "runs": [ + { + "runId": "67034c12-b250-468e-992d-39fb978bde2c", + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" + } + ], + "recurrences": [ + "2ba01f6c-562d-4246-90ff-0b8c2d10e346", + "da8dc3de-2fd8-4641-8968-40dbbf11e95f" + ] + } + ], + "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Recurrence_Get.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Recurrence_Get.json index 806b549a7c39..fcae5974bf10 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Recurrence_Get.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Recurrence_Get.json @@ -1,25 +1,25 @@ { - "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "recurrenceIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", - "startDateTime": "2017-04-18T11:16:49.0748958-07:00", - "endDateTime": "2017-04-18T11:16:49.0748958-07:00" - }, - "responses": { - "200": { - "body": { - "recurrenceId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "recurrenceName": "test_recurrence_name", - "numJobsFailed": 1, - "numJobsCanceled": 1, - "numJobsSucceeded": 1, - "auHoursFailed": 1.0, - "auHoursCanceled": 1.0, - "auHoursSucceeded": 1.0, - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" - } - } + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", + "recurrenceIdentity": "076713da-9018-41ae-a3bd-9eab14e54d09", + "startDateTime": "2017-04-18T11:16:49.0748958-07:00", + "endDateTime": "2017-04-18T11:16:49.0748958-07:00" + }, + "responses": { + "200": { + "body": { + "recurrenceId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "recurrenceName": "test_recurrence_name", + "numJobsFailed": 1, + "numJobsCanceled": 1, + "numJobsSucceeded": 1, + "auHoursFailed": 1.0, + "auHoursCanceled": 1.0, + "auHoursSucceeded": 1.0, + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Recurrence_List.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Recurrence_List.json index 8ee7ee002381..427e1a6b1725 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Recurrence_List.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Adla_Recurrence_List.json @@ -1,27 +1,29 @@ { - "parameters": { - "accountName": "account123", - "adlaJobDnsSuffix": "contosopipelineservice.com", - "api-version": "2016-11-01", - "startDateTime": "2017-04-18T11:16:49.0748958-07:00", - "endDateTime": "2017-04-18T11:16:49.0748958-07:00" - }, - "responses": { - "200": { - "body": { - "value": [{ - "recurrenceId": "076713da-9018-41ae-a3bd-9eab14e54d09", - "recurrenceName": "test_recurrence_name", - "numJobsFailed": 1, - "numJobsCanceled": 1, - "numJobsSucceeded": 1, - "auHoursFailed": 1.0, - "auHoursCanceled": 1.0, - "auHoursSucceeded": 1.0, - "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" - }], - "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" - } - } + "parameters": { + "accountName": "account123", + "adlaJobDnsSuffix": "contosopipelineservice.com", + "api-version": "2016-11-01", + "startDateTime": "2017-04-18T11:16:49.0748958-07:00", + "endDateTime": "2017-04-18T11:16:49.0748958-07:00" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "recurrenceId": "076713da-9018-41ae-a3bd-9eab14e54d09", + "recurrenceName": "test_recurrence_name", + "numJobsFailed": 1, + "numJobsCanceled": 1, + "numJobsSucceeded": 1, + "auHoursFailed": 1.0, + "auHoursCanceled": 1.0, + "auHoursSucceeded": 1.0, + "lastSubmitTime": "2017-04-18T11:16:49.0748958-07:00" + } + ], + "nextLink": "https://account123.contosopipelineservice.com/076713da-9018-41ae-a3bd-9eab14e54d09" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_CreateCredential.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_CreateCredential.json index 3ecec8d20ed9..f8367c30e275 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_CreateCredential.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_CreateCredential.json @@ -1,18 +1,17 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "credentialName": "test_credential_name", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "credentialName": "test_credential_name", - "parameters": { - "password": "test_password", - "uri": "test_host:8000", - "userId": "test_user_id" - } - }, - "responses": { - "200": { - } + "password": "test_password", + "uri": "test_host:8000", + "userId": "test_user_id" } + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_CreateSecret.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_CreateSecret.json index 610d09b19144..fc541925934e 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_CreateSecret.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_CreateSecret.json @@ -1,17 +1,16 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "secretName": "test_secret_name", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "secretName": "test_secret_name", - "parameters": { - "password": "test_password", - "uri": "test_host:8000" - } - }, - "responses": { - "200": { - } + "password": "test_password", + "uri": "test_host:8000" } + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteAllSecrets.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteAllSecrets.json index 9e8b91296054..67403b1fb40e 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteAllSecrets.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteAllSecrets.json @@ -1,12 +1,11 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master" - }, - "responses": { - "200": { - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master" + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteCredential.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteCredential.json index 735406634a0c..ff464fb20a93 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteCredential.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteCredential.json @@ -1,17 +1,16 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "credentialName": "test_credential_name", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "credentialName": "test_credential_name", - "parameters": { - "password": "test_password" - }, - "cascade": false + "password": "test_password" }, - "responses": { - "200": { - } - } + "cascade": false + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteSecret.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteSecret.json index 62d68222eee3..6f27e947a052 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteSecret.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_DeleteSecret.json @@ -1,13 +1,12 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "secretName": "test_secret_name" - }, - "responses": { - "200": { - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "secretName": "test_secret_name" + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetAssembly.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetAssembly.json index 821a7d192e6e..e583c97819ba 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetAssembly.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetAssembly.json @@ -1,38 +1,42 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "assemblyName": "test_assembly_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", - "assemblyName": "test_assembly_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "assemblyName": "test_assembly_name", - "clrName": "test_clr_name", - "isVisible": false, - "isUserDefined": false, - "files": [{ - "type": "Assembly", - "originalPath": "test_original_path", - "contentPath": "test_content_path" - }], - "dependencies": [{ - "entityId": { - "name": { - "firstPart": "test_first_part", - "secondPart": "test_second_part", - "thirdPart": "test_third_part", - "server": "test_server" - }, - "version":"34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" - } - }] + "assemblyName": "test_assembly_name", + "clrName": "test_clr_name", + "isVisible": false, + "isUserDefined": false, + "files": [ + { + "type": "Assembly", + "originalPath": "test_original_path", + "contentPath": "test_content_path" + } + ], + "dependencies": [ + { + "entityId": { + "name": { + "firstPart": "test_first_part", + "secondPart": "test_second_part", + "thirdPart": "test_third_part", + "server": "test_server" + }, + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" } - } + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetCredential.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetCredential.json index ed310d3c0249..481038e559da 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetCredential.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetCredential.json @@ -1,18 +1,18 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "credentialName": "test_credential_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "credentialName": "test_credential_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "credentialName": "test_credential_name" - } - } + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetDatabase.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetDatabase.json index ae7ce0caba76..af15531c676d 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetDatabase.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetDatabase.json @@ -1,17 +1,17 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master" - } - } + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetExternalDataSource.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetExternalDataSource.json index 0109800c719a..4353518b82c1 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetExternalDataSource.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetExternalDataSource.json @@ -1,24 +1,24 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "externalDataSourceName": "test_external_data_source_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", - "externalDataSourceName": "test_external_data_source_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "externalDataSourceName": "test_external_data_source_name", - "provider": "test_provider", - "providerString": "test_provider_string", - "pushdownTypes": [ - "test_pushdown_type" - ] - } - } + "externalDataSourceName": "test_external_data_source_name", + "provider": "test_provider", + "providerString": "test_provider_string", + "pushdownTypes": [ + "test_pushdown_type" + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetPackage.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetPackage.json index fb123d4c667d..c91926a60b87 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetPackage.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetPackage.json @@ -1,22 +1,22 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "packageName": "test_package_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", "schemaName": "dbo", - "packageName": "test_package_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "packageName": "test_package_name", - "definition": "test_definition" - } - } + "packageName": "test_package_name", + "definition": "test_definition" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetProcedure.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetProcedure.json index 1c4339bbc95d..c931fc1dbba6 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetProcedure.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetProcedure.json @@ -1,22 +1,22 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "procedureName": "test_procedure_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", "schemaName": "dbo", - "procedureName": "test_procedure_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "procName": "test_proc_name", - "definition": "test_definition" - } - } + "procName": "test_proc_name", + "definition": "test_definition" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetSchema.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetSchema.json index 66c62125e3e9..36c9a9693031 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetSchema.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetSchema.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", "schemaName": "dbo" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo" - } - } + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetSecret.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetSecret.json index 454a4557f4aa..a40c57830525 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetSecret.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetSecret.json @@ -1,22 +1,22 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "secretName": "test_secret_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", - "secretName": "test_secret_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "secretName": "test_secret_name", - "creationTime": "2017-04-14T13:21:56.6819037-07:00", - "uri": "test_host:8000", - "password": "test_password" - } - } + "secretName": "test_secret_name", + "creationTime": "2017-04-14T13:21:56.6819037-07:00", + "uri": "test_host:8000", + "password": "test_password" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTable.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTable.json index 3914fa94a342..86e10aa2ed4e 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTable.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTable.json @@ -1,78 +1,88 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_table_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", "schemaName": "dbo", - "tableName": "test_table_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "tableName": "test_table_name", - "columnList": [{ - "name": "test_column_name", - "type": "test_type" - }], - "indexList": [{ - "name": "test_index_name", - "indexKeys": [{ - "name": "test_index_key", - "descending": false - }], - "columns": [ - "test_column" - ], - "distributionInfo": { - "type": 1, - "keys": [{ - "name": "test_key", - "descending": false - }], - "count": 1, - "dynamicCount": 1 - }, - "partitionFunction": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", - "partitionKeyList": [ - "test_partition_key" - ], - "streamNames": [ - "test_stream_name" - ], - "isColumnstore": false, - "indexId": 1, - "isUnique": false - }], - "partitionKeyList":[ - "test_partition_key" - ], - "externalTable": { - "tableName":"test_table_name", - "dataSource": { - "name": { - "firstPart": "test_first_part", - "secondPart": "test_second_part", - "thirdPart": "test_third_part", - "server": "test_server" - }, - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" - } - }, - "distributionInfo": { - "type": 1, - "keys": [{ - "name": "test_key", - "descending": false - }], - "count": 1, - "dynamicCount": 1 + "tableName": "test_table_name", + "columnList": [ + { + "name": "test_column_name", + "type": "test_type" + } + ], + "indexList": [ + { + "name": "test_index_name", + "indexKeys": [ + { + "name": "test_index_key", + "descending": false + } + ], + "columns": [ + "test_column" + ], + "distributionInfo": { + "type": 1, + "keys": [ + { + "name": "test_key", + "descending": false } + ], + "count": 1, + "dynamicCount": 1 + }, + "partitionFunction": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", + "partitionKeyList": [ + "test_partition_key" + ], + "streamNames": [ + "test_stream_name" + ], + "isColumnstore": false, + "indexId": 1, + "isUnique": false + } + ], + "partitionKeyList": [ + "test_partition_key" + ], + "externalTable": { + "tableName": "test_table_name", + "dataSource": { + "name": { + "firstPart": "test_first_part", + "secondPart": "test_second_part", + "thirdPart": "test_third_part", + "server": "test_server" + }, + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + } + }, + "distributionInfo": { + "type": 1, + "keys": [ + { + "name": "test_key", + "descending": false } + ], + "count": 1, + "dynamicCount": 1 } + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTablePartition.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTablePartition.json index e367e0e3d105..a288c553e3e3 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTablePartition.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTablePartition.json @@ -1,29 +1,29 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_table_name", + "partitionName": "test_partition_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", "schemaName": "dbo", - "tableName": "test_table_name", - "partitionName": "test_partition_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "partitionName": "test_partition_name", - "parentName": "test_parent_name", - "indexId": 1, - "label": [ - "test_label_1", - "test_label_2" - ], - "createDate": "2017-04-14T13:21:56.6819037-07:00" - } - } + "partitionName": "test_partition_name", + "parentName": "test_parent_name", + "indexId": 1, + "label": [ + "test_label_1", + "test_label_2" + ], + "createDate": "2017-04-14T13:21:56.6819037-07:00" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableStatistic.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableStatistic.json index 0b41a3b773e2..0a5f83294d82 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableStatistic.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableStatistic.json @@ -1,35 +1,35 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_table_name", + "statisticsName": "test_statistics_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", "schemaName": "dbo", "tableName": "test_table_name", - "statisticsName": "test_statistics_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "tableName": "test_table_name", - "statisticsName": "test_statistics_name", - "userStatName": "test_user_stat_name", - "statDataPath": "test_stat_data_path", - "createTime": "2017-04-14T13:21:56.6819037-07:00", - "updateTime": "2017-04-14T13:21:56.6819037-07:00", - "isUserCreated": false, - "isAutoCreated": false, - "hasFilter": false, - "filterDefinition": "test_filter_definition", - "colNames": [ - "test_column_name_1", - "test_column_name_2" - ] - } - } + "statisticsName": "test_statistics_name", + "userStatName": "test_user_stat_name", + "statDataPath": "test_stat_data_path", + "createTime": "2017-04-14T13:21:56.6819037-07:00", + "updateTime": "2017-04-14T13:21:56.6819037-07:00", + "isUserCreated": false, + "isAutoCreated": false, + "hasFilter": false, + "filterDefinition": "test_filter_definition", + "colNames": [ + "test_column_name_1", + "test_column_name_2" + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableType.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableType.json index 22b244d4c67c..1eff65de8aee 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableType.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableType.json @@ -1,37 +1,39 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "tableTypeName": "test_table_type_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", "schemaName": "dbo", - "tableTypeName": "test_table_type_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "typeName": "test_type_name", - "typeFamily": "test_type_family", - "cSharpName": "test_csharp_name", - "fullCSharpName": "test_full_csharp_name", - "systemTypeId": 1, - "userTypeId": 2, - "schemaId": 3, - "principalId": 4, - "isNullable": false, - "isUserDefined": false, - "isAssemblyType": false, - "isTableType": false, - "isComplexType": false, - "columns":[{ - "name": "test_column_name", - "type": "test_column_type" - }] - } - } + "typeName": "test_type_name", + "typeFamily": "test_type_family", + "cSharpName": "test_csharp_name", + "fullCSharpName": "test_full_csharp_name", + "systemTypeId": 1, + "userTypeId": 2, + "schemaId": 3, + "principalId": 4, + "isNullable": false, + "isUserDefined": false, + "isAssemblyType": false, + "isTableType": false, + "isComplexType": false, + "columns": [ + { + "name": "test_column_name", + "type": "test_column_type" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableValuedFunction.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableValuedFunction.json index e50c8a3eeb7f..153f7dd218ad 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableValuedFunction.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetTableValuedFunction.json @@ -1,22 +1,22 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "tableValuedFunctionName": "test_table_valued_function_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", "schemaName": "dbo", - "tableValuedFunctionName": "test_table_valued_function_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "tvfName": "test_tvf_name", - "definition": "test_definition" - } - } + "tvfName": "test_tvf_name", + "definition": "test_definition" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetView.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetView.json index d8e521763c0d..8cbb54a2b8a9 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetView.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GetView.json @@ -1,22 +1,22 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "viewName": "test_view_name" + }, + "responses": { + "200": { + "body": { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "databaseName": "master", "schemaName": "dbo", - "viewName": "test_view_name" - }, - "responses": { - "200": { - "body": { - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "viewName": "test_view_name", - "definition": "test_definition" - } - } + "viewName": "test_view_name", + "definition": "test_definition" + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GrantAcl.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GrantAcl.json index 527eab876111..b3a323473d5e 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GrantAcl.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GrantAcl.json @@ -1,17 +1,16 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "parameters": { - "aceType": "User", - "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "permission": "Use" - }, - "op": "GRANTACE" + "aceType": "User", + "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "permission": "Use" }, - "responses": { - "200": { - } - } + "op": "GRANTACE" + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GrantAclToDatabase.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GrantAclToDatabase.json index e1161b4d68b3..d4a3090912f1 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GrantAclToDatabase.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_GrantAclToDatabase.json @@ -1,18 +1,17 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "parameters": { - "aceType": "User", - "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "permission": "Use" - }, - "op": "GRANTACE" + "aceType": "User", + "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "permission": "Use" }, - "responses": { - "200": { - } - } + "op": "GRANTACE" + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAcls.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAcls.json index 3520a5c8814c..bd6e131eae46 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAcls.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAcls.json @@ -1,25 +1,27 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "aceType": "User", - "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "permission": "Use" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "aceType": "User", + "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "permission": "Use" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAclsByDatabase.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAclsByDatabase.json index ad3a6f9e928b..e6b3957b23e9 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAclsByDatabase.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAclsByDatabase.json @@ -1,26 +1,28 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "aceType": "User", - "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "permission": "Use" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "aceType": "User", + "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "permission": "Use" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAssemblies.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAssemblies.json index f29786e3e431..032cf60bbd11 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAssemblies.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListAssemblies.json @@ -1,28 +1,30 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "assemblyClrName": "test_assembly_clr_name", - "clrName": "test_clr_name" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "assemblyClrName": "test_assembly_clr_name", + "clrName": "test_clr_name" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListCredentials.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListCredentials.json index 3666ea447370..0a8ffdf18fae 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListCredentials.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListCredentials.json @@ -1,26 +1,28 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "credentialName": "test_credential_name" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "credentialName": "test_credential_name" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListDatabases.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListDatabases.json index 8afb3c82c79e..28f7387f8967 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListDatabases.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListDatabases.json @@ -1,25 +1,27 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListExternalDataSources.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListExternalDataSources.json index cfff2b00bd17..8cbdc9aa261c 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListExternalDataSources.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListExternalDataSources.json @@ -1,32 +1,34 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "externalDataSourceName": "test_external_data_source_name", - "provider": "test_provider", - "providerString": "test_provider_string", - "pushdownTypes": [ - "test_pushdown_type" - ] - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "externalDataSourceName": "test_external_data_source_name", + "provider": "test_provider", + "providerString": "test_provider_string", + "pushdownTypes": [ + "test_pushdown_type" + ] + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListPackages.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListPackages.json index db0b0831a2d3..6ae2c538ca6a 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListPackages.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListPackages.json @@ -1,30 +1,32 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value":[{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "packageName": "test_package_name", - "definition": "test_definition" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "packageName": "test_package_name", + "definition": "test_definition" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListProcedures.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListProcedures.json index 63711b33ff73..ebf232895732 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListProcedures.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListProcedures.json @@ -1,30 +1,32 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "procName": "test_proc_name", - "definition": "test_definition" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "procName": "test_proc_name", + "definition": "test_definition" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListSchemas.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListSchemas.json index 4e7662b58658..c36946981f01 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListSchemas.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListSchemas.json @@ -1,27 +1,29 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableFragments.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableFragments.json index f9404d635a04..77ddc357b11f 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableFragments.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableFragments.json @@ -1,32 +1,34 @@ { "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "tableName": "test_table_name", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_table_name", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false }, "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/tables/test_table_name/tablefragments?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "parentId": "9d2d7abd-c641-4ddb-88ab-90cafdfe1c1b", - "fragmentId": "797d2643-eed9-4900-8090-0f8ddd9e8ba7", - "indexId": 1, - "size": 33786, - "rowCount": 1, - "createDate": "2017-10-11T06:38:31.567-07:00", - "streamPath":"catalog/database/86bf2a20-b511-48c8-91c5-1f73c4c0ec74/schema/b83d3be1-9e11-40b7-85f9-ad823efe2414/table/1e666ab1-d6f0-4990-8180-1a6160caf405/91193f18-06dd-47a2-96fa-2cca3b4777e1.ss" - }] + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/tables/test_table_name/tablefragments?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "parentId": "9d2d7abd-c641-4ddb-88ab-90cafdfe1c1b", + "fragmentId": "797d2643-eed9-4900-8090-0f8ddd9e8ba7", + "indexId": 1, + "size": 33786, + "rowCount": 1, + "createDate": "2017-10-11T06:38:31.567-07:00", + "streamPath": "catalog/database/86bf2a20-b511-48c8-91c5-1f73c4c0ec74/schema/b83d3be1-9e11-40b7-85f9-ad823efe2414/table/1e666ab1-d6f0-4990-8180-1a6160caf405/91193f18-06dd-47a2-96fa-2cca3b4777e1.ss" } + ] } + } } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTablePartitions.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTablePartitions.json index bd2d66de562a..249a45c53d58 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTablePartitions.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTablePartitions.json @@ -1,37 +1,39 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "tableName": "test_table_name", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "partitionName": "test_partition_name", - "parentName": "test_parent_name", - "indexId": 1, - "label": [ - "test_label_1", - "test_label_2" - ], - "createDate": "2017-04-14T13:21:56.6819037-07:00" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_table_name", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "partitionName": "test_partition_name", + "parentName": "test_parent_name", + "indexId": 1, + "label": [ + "test_label_1", + "test_label_2" + ], + "createDate": "2017-04-14T13:21:56.6819037-07:00" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatistics.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatistics.json index acd9670cb21e..391f98fa93d4 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatistics.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatistics.json @@ -1,43 +1,45 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "tableName": "test_view_name", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value":[{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "tableName": "test_table_name", - "statisticsName": "test_statistics_name", - "userStatName": "test_user_stat_name", - "statDataPath": "test_stat_data_path", - "createTime": "2017-04-14T13:21:56.6819037-07:00", - "updateTime": "2017-04-14T13:21:56.6819037-07:00", - "isUserCreated": false, - "isAutoCreated": false, - "hasFilter": false, - "filterDefinition": "test_filter_definition", - "colNames": [ - "test_column_name_1", - "test_column_name_2" - ] - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_view_name", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_table_name", + "statisticsName": "test_statistics_name", + "userStatName": "test_user_stat_name", + "statDataPath": "test_stat_data_path", + "createTime": "2017-04-14T13:21:56.6819037-07:00", + "updateTime": "2017-04-14T13:21:56.6819037-07:00", + "isUserCreated": false, + "isAutoCreated": false, + "hasFilter": false, + "filterDefinition": "test_filter_definition", + "colNames": [ + "test_column_name_1", + "test_column_name_2" + ] + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatisticsByDatabase.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatisticsByDatabase.json index 4b61e4daafba..dcaf31d18e34 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatisticsByDatabase.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatisticsByDatabase.json @@ -1,41 +1,43 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value":[{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "tableName": "test_table_name", - "statisticsName": "test_statistics_name", - "userStatName": "test_user_stat_name", - "statDataPath": "test_stat_data_path", - "createTime": "2017-04-14T13:21:56.6819037-07:00", - "updateTime": "2017-04-14T13:21:56.6819037-07:00", - "isUserCreated": false, - "isAutoCreated": false, - "hasFilter": false, - "filterDefinition": "test_filter_definition", - "colNames": [ - "test_column_name_1", - "test_column_name_2" - ] - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_table_name", + "statisticsName": "test_statistics_name", + "userStatName": "test_user_stat_name", + "statDataPath": "test_stat_data_path", + "createTime": "2017-04-14T13:21:56.6819037-07:00", + "updateTime": "2017-04-14T13:21:56.6819037-07:00", + "isUserCreated": false, + "isAutoCreated": false, + "hasFilter": false, + "filterDefinition": "test_filter_definition", + "colNames": [ + "test_column_name_1", + "test_column_name_2" + ] + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatisticsByDatabaseAndSchema.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatisticsByDatabaseAndSchema.json index 5bc1acc5e772..e290189fce55 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatisticsByDatabaseAndSchema.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableStatisticsByDatabaseAndSchema.json @@ -1,42 +1,44 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value":[{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "tableName": "test_table_name", - "statisticsName": "test_statistics_name", - "userStatName": "test_user_stat_name", - "statDataPath": "test_stat_data_path", - "createTime": "2017-04-14T13:21:56.6819037-07:00", - "updateTime": "2017-04-14T13:21:56.6819037-07:00", - "isUserCreated": false, - "isAutoCreated": false, - "hasFilter": false, - "filterDefinition": "test_filter_definition", - "colNames": [ - "test_column_name_1", - "test_column_name_2" - ] - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_table_name", + "statisticsName": "test_statistics_name", + "userStatName": "test_user_stat_name", + "statDataPath": "test_stat_data_path", + "createTime": "2017-04-14T13:21:56.6819037-07:00", + "updateTime": "2017-04-14T13:21:56.6819037-07:00", + "isUserCreated": false, + "isAutoCreated": false, + "hasFilter": false, + "filterDefinition": "test_filter_definition", + "colNames": [ + "test_column_name_1", + "test_column_name_2" + ] + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableTypes.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableTypes.json index d6320995ae46..5b669d598e31 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableTypes.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableTypes.json @@ -1,45 +1,49 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value":[{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "typeName": "test_type_name", - "typeFamily": "test_type_family", - "cSharpName": "test_csharp_name", - "fullCSharpName": "test_full_csharp_name", - "systemTypeId": 1, - "userTypeId": 2, - "schemaId": 3, - "principalId": 4, - "isNullable": false, - "isUserDefined": false, - "isAssemblyType": false, - "isTableType": false, - "isComplexType": false, - "columns":[{ - "name": "test_column_name", - "type": "test_column_type" - }] - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "typeName": "test_type_name", + "typeFamily": "test_type_family", + "cSharpName": "test_csharp_name", + "fullCSharpName": "test_full_csharp_name", + "systemTypeId": 1, + "userTypeId": 2, + "schemaId": 3, + "principalId": 4, + "isNullable": false, + "isUserDefined": false, + "isAssemblyType": false, + "isTableType": false, + "isComplexType": false, + "columns": [ + { + "name": "test_column_name", + "type": "test_column_type" + } + ] + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableValuedFunctions.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableValuedFunctions.json index 9a2cbc27567c..f41ad0d80d3e 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableValuedFunctions.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableValuedFunctions.json @@ -1,30 +1,32 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "tvfName": "test_tvf_name", - "definition": "test_definition" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "tvfName": "test_tvf_name", + "definition": "test_definition" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableValuedFunctionsByDatabase.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableValuedFunctionsByDatabase.json index cc92fbd51b46..9deeee909f0a 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableValuedFunctionsByDatabase.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTableValuedFunctionsByDatabase.json @@ -1,29 +1,31 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "tvfName": "test_tvf_name", - "definition": "test_definition" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "tvfName": "test_tvf_name", + "definition": "test_definition" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTables.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTables.json index 8b09461b6b9e..6cc1ae432ff4 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTables.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTables.json @@ -1,87 +1,99 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false, - "basic": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "tableName": "test_table_name", - "columnList": [{ - "name": "test_column_name", - "type": "test_type" - }], - "indexList": [{ - "name": "test_index_name", - "indexKeys": [{ - "name": "test_index_key", - "descending": false - }], - "columns": [ - "test_column" - ], - "distributionInfo": { - "type": 1, - "keys": [{ - "name": "test_key", - "descending": false - }], - "count": 1, - "dynamicCount": 1 - }, - "partitionFunction": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", - "partitionKeyList": [ - "test_partition_key" - ], - "streamNames": [ - "test_stream_name" - ], - "isColumnstore": false, - "indexId": 1, - "isUnique": false - }], - "partitionKeyList":[ - "test_partition_key" - ], - "externalTable": { - "tableName":"test_table_name", - "dataSource": { - "name": { - "firstPart": "test_first_part", - "secondPart": "test_second_part", - "thirdPart": "test_third_part", - "server": "test_server" - }, - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" - } - }, - "distributionInfo": { - "type": 1, - "keys": [{ - "name": "test_key", - "descending": false - }], - "count": 1, - "dynamicCount": 1 + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false, + "basic": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_table_name", + "columnList": [ + { + "name": "test_column_name", + "type": "test_type" + } + ], + "indexList": [ + { + "name": "test_index_name", + "indexKeys": [ + { + "name": "test_index_key", + "descending": false + } + ], + "columns": [ + "test_column" + ], + "distributionInfo": { + "type": 1, + "keys": [ + { + "name": "test_key", + "descending": false } - }] + ], + "count": 1, + "dynamicCount": 1 + }, + "partitionFunction": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", + "partitionKeyList": [ + "test_partition_key" + ], + "streamNames": [ + "test_stream_name" + ], + "isColumnstore": false, + "indexId": 1, + "isUnique": false + } + ], + "partitionKeyList": [ + "test_partition_key" + ], + "externalTable": { + "tableName": "test_table_name", + "dataSource": { + "name": { + "firstPart": "test_first_part", + "secondPart": "test_second_part", + "thirdPart": "test_third_part", + "server": "test_server" + }, + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + } + }, + "distributionInfo": { + "type": 1, + "keys": [ + { + "name": "test_key", + "descending": false + } + ], + "count": 1, + "dynamicCount": 1 } - } + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTablesByDatabase.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTablesByDatabase.json index 422319648d42..11be556867eb 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTablesByDatabase.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTablesByDatabase.json @@ -1,86 +1,98 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false, - "basic": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value":[{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "tableName": "test_table_name", - "columnList": [{ - "name": "test_column_name", - "type": "test_type" - }], - "indexList": [{ - "name": "test_index_name", - "indexKeys": [{ - "name": "test_index_key", - "descending": false - }], - "columns": [ - "test_column" - ], - "distributionInfo": { - "type": 1, - "keys": [{ - "name": "test_key", - "descending": false - }], - "count": 1, - "dynamicCount": 1 - }, - "partitionFunction": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", - "partitionKeyList": [ - "test_partition_key" - ], - "streamNames": [ - "test_stream_name" - ], - "isColumnstore": false, - "indexId": 1, - "isUnique": false - }], - "partitionKeyList":[ - "test_partition_key" - ], - "externalTable": { - "tableName":"test_table_name", - "dataSource": { - "name": { - "firstPart": "test_first_part", - "secondPart": "test_second_part", - "thirdPart": "test_third_part", - "server": "test_server" - }, - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" - } - }, - "distributionInfo": { - "type": 1, - "keys": [{ - "name": "test_key", - "descending": false - }], - "count": 1, - "dynamicCount": 1 + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false, + "basic": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "tableName": "test_table_name", + "columnList": [ + { + "name": "test_column_name", + "type": "test_type" + } + ], + "indexList": [ + { + "name": "test_index_name", + "indexKeys": [ + { + "name": "test_index_key", + "descending": false + } + ], + "columns": [ + "test_column" + ], + "distributionInfo": { + "type": 1, + "keys": [ + { + "name": "test_key", + "descending": false } - }] + ], + "count": 1, + "dynamicCount": 1 + }, + "partitionFunction": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", + "partitionKeyList": [ + "test_partition_key" + ], + "streamNames": [ + "test_stream_name" + ], + "isColumnstore": false, + "indexId": 1, + "isUnique": false + } + ], + "partitionKeyList": [ + "test_partition_key" + ], + "externalTable": { + "tableName": "test_table_name", + "dataSource": { + "name": { + "firstPart": "test_first_part", + "secondPart": "test_second_part", + "thirdPart": "test_third_part", + "server": "test_server" + }, + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + } + }, + "distributionInfo": { + "type": 1, + "keys": [ + { + "name": "test_key", + "descending": false + } + ], + "count": 1, + "dynamicCount": 1 } - } + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTypes.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTypes.json index a12fd57d00fa..b991a45f0222 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTypes.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListTypes.json @@ -1,41 +1,43 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value": [{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "typeName": "test_type_name", - "typeFamily": "test_type_family", - "cSharpName": "test_csharp_name", - "fullCSharpName": "test_full_csharp_name", - "systemTypeId": 1, - "userTypeId": 2, - "schemaId": 3, - "principalId": 4, - "isNullable": false, - "isUserDefined": false, - "isAssemblyType": false, - "isTableType": false, - "isComplexType": false - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "typeName": "test_type_name", + "typeFamily": "test_type_family", + "cSharpName": "test_csharp_name", + "fullCSharpName": "test_full_csharp_name", + "systemTypeId": 1, + "userTypeId": 2, + "schemaId": 3, + "principalId": 4, + "isNullable": false, + "isUserDefined": false, + "isAssemblyType": false, + "isTableType": false, + "isComplexType": false + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListViews.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListViews.json index 045583455676..19bff1292cd3 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListViews.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListViews.json @@ -1,30 +1,32 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "schemaName": "dbo", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value":[{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "viewName": "test_view_name", - "definition": "test_definition" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "schemaName": "dbo", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "viewName": "test_view_name", + "definition": "test_definition" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListViewsByDatabase.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListViewsByDatabase.json index f9558d85d6eb..9dd93b72804a 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListViewsByDatabase.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_ListViewsByDatabase.json @@ -1,29 +1,31 @@ { - "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "nextLink":"https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", - "value":[{ - "computeAccountName": "contosoadla", - "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "databaseName": "master", - "schemaName": "dbo", - "viewName": "test_view_name", - "definition": "test_definition" - }] - } - } + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "nextLink": "https://contosoadla.datalakeanalytics.net/catalog/usql/databases/master/schema/dbo/statistics?api-version=2016-11-01&%24skiptoken=", + "value": [ + { + "computeAccountName": "contosoadla", + "version": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "databaseName": "master", + "schemaName": "dbo", + "viewName": "test_view_name", + "definition": "test_definition" + } + ] + } } + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_RevokeAcl.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_RevokeAcl.json index c37b49068e35..7c22cb6fd567 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_RevokeAcl.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_RevokeAcl.json @@ -1,16 +1,15 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "parameters": { - "aceType": "User", - "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" - }, - "op": "REVOKEACE" + "aceType": "User", + "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, - "responses": { - "200": { - } - } + "op": "REVOKEACE" + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_RevokeAclFromDatabase.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_RevokeAclFromDatabase.json index 28ecb0f98ab9..c0efcc099e1c 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_RevokeAclFromDatabase.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_RevokeAclFromDatabase.json @@ -1,17 +1,16 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "parameters": { - "aceType": "User", - "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" - }, - "op": "REVOKEACE" + "aceType": "User", + "principalId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, - "responses": { - "200": { - } - } + "op": "REVOKEACE" + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_UpdateCredential.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_UpdateCredential.json index 2771e90ee959..94d512da1ecf 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_UpdateCredential.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_UpdateCredential.json @@ -1,19 +1,18 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "credentialName": "test_credential_name", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "credentialName": "test_credential_name", - "parameters": { - "password": "test_password", - "newPassword": "test_new_password", - "uri": "test_host:8000", - "userId": "test_user_id" - } - }, - "responses": { - "200": { - } + "password": "test_password", + "newPassword": "test_new_password", + "uri": "test_host:8000", + "userId": "test_user_id" } + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_UpdateSecret.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_UpdateSecret.json index 610d09b19144..fc541925934e 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_UpdateSecret.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Catalog_UpdateSecret.json @@ -1,17 +1,16 @@ { + "parameters": { + "api-version": "2016-11-01", + "accountName": "contosoadla", + "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", + "databaseName": "master", + "secretName": "test_secret_name", "parameters": { - "api-version": "2016-11-01", - "accountName": "contosoadla", - "adlaCatalogDnsSuffix": "azuredatalakeanalytics.net", - "databaseName": "master", - "secretName": "test_secret_name", - "parameters": { - "password": "test_password", - "uri": "test_host:8000" - } - }, - "responses": { - "200": { - } + "password": "test_password", + "uri": "test_host:8000" } + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/job.json b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/job.json index 128dc2377633..ab484fbbba3a 100644 --- a/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/job.json +++ b/specification/datalake-analytics/data-plane/Microsoft.DataLakeAnalytics/stable/2016-11-01/job.json @@ -43,7 +43,9 @@ "operationId": "Pipeline_List", "description": "Lists all pipelines.", "x-ms-examples": { - "Lists all pipelines": { "$ref": "./examples/Adla_Pipeline_List.json" } + "Lists all pipelines": { + "$ref": "./examples/Adla_Pipeline_List.json" + } }, "parameters": [ { @@ -87,7 +89,9 @@ "operationId": "Pipeline_Get", "description": "Gets the Pipeline information for the specified pipeline ID.", "x-ms-examples": { - "Gets the Pipeline information for the specified pipeline ID": { "$ref": "./examples/Adla_Pipeline_Get.json" } + "Gets the Pipeline information for the specified pipeline ID": { + "$ref": "./examples/Adla_Pipeline_Get.json" + } }, "parameters": [ { @@ -136,7 +140,9 @@ "operationId": "Recurrence_List", "description": "Lists all recurrences.", "x-ms-examples": { - "Lists all recurrences": { "$ref": "./examples/Adla_Recurrence_List.json" } + "Lists all recurrences": { + "$ref": "./examples/Adla_Recurrence_List.json" + } }, "parameters": [ { @@ -180,7 +186,9 @@ "operationId": "Recurrence_Get", "description": "Gets the recurrence information for the specified recurrence ID.", "x-ms-examples": { - "Gets the recurrence information for the specified recurrence ID": { "$ref": "./examples/Adla_Recurrence_Get.json" } + "Gets the recurrence information for the specified recurrence ID": { + "$ref": "./examples/Adla_Recurrence_Get.json" + } }, "parameters": [ { @@ -229,7 +237,9 @@ "operationId": "Job_GetStatistics", "description": "Gets statistics of the specified job.", "x-ms-examples": { - "Gets statistics of the specified job": { "$ref": "./examples/Adla_Job_GetStatistics.json" } + "Gets statistics of the specified job": { + "$ref": "./examples/Adla_Job_GetStatistics.json" + } }, "parameters": [ { @@ -262,7 +272,9 @@ "operationId": "Job_GetDebugDataPath", "description": "Gets the job debug data information specified by the job ID.", "x-ms-examples": { - "Gets the job debug data information specified by the job ID": { "$ref": "./examples/Adla_Job_GetDebugDataPath.json" } + "Gets the job debug data information specified by the job ID": { + "$ref": "./examples/Adla_Job_GetDebugDataPath.json" + } }, "parameters": [ { @@ -295,7 +307,9 @@ "operationId": "Job_Build", "description": "Builds (compiles) the specified job in the specified Data Lake Analytics account for job correctness and validation.", "x-ms-examples": { - "Builds (compiles) the specified job in the specified Data Lake Analytics account for job correctness and validation": { "$ref": "./examples/Adla_Job_Build.json" } + "Builds (compiles) the specified job in the specified Data Lake Analytics account for job correctness and validation": { + "$ref": "./examples/Adla_Job_Build.json" + } }, "parameters": [ { @@ -329,7 +343,9 @@ "operationId": "Job_Cancel", "description": "Cancels the running job specified by the job ID.", "x-ms-examples": { - "Cancels the running job specified by the job ID": { "$ref": "./examples/Adla_Job_Cancel.json" } + "Cancels the running job specified by the job ID": { + "$ref": "./examples/Adla_Job_Cancel.json" + } }, "parameters": [ { @@ -359,7 +375,9 @@ "operationId": "Job_Create", "description": "Submits a job to the specified Data Lake Analytics account.", "x-ms-examples": { - "Submits a job to the specified Data Lake Analytics account": { "$ref": "./examples/Adla_Job_Create.json" } + "Submits a job to the specified Data Lake Analytics account": { + "$ref": "./examples/Adla_Job_Create.json" + } }, "parameters": [ { @@ -399,7 +417,9 @@ "operationId": "Job_Get", "description": "Gets the job information for the specified job ID.", "x-ms-examples": { - "Gets the job information for the specified job ID": { "$ref": "./examples/Adla_Job_Get.json" } + "Gets the job information for the specified job ID": { + "$ref": "./examples/Adla_Job_Get.json" + } }, "parameters": [ { @@ -432,7 +452,9 @@ "operationId": "Job_List", "description": "Lists the jobs, if any, associated with the specified Data Lake Analytics account. The response includes a link to the next page of results, if any.", "x-ms-examples": { - "Lists the jobs, if any, associated with the specified Data Lake Analytics account": { "$ref": "./examples/Adla_Job_List.json" } + "Lists the jobs, if any, associated with the specified Data Lake Analytics account": { + "$ref": "./examples/Adla_Job_List.json" + } }, "parameters": [ { @@ -1655,7 +1677,7 @@ "default": "azuredatalakeanalytics.net", "x-ms-skip-url-encoding": true, "description": "Gets the DNS suffix used as the base for all Azure Data Lake Analytics Job service requests.", - "x-ms-parameter-location":"client" + "x-ms-parameter-location": "client" } } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_CheckNameAvailability.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_CheckNameAvailability.json index 5f6b962a58d2..540b83710b8c 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_CheckNameAvailability.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_CheckNameAvailability.json @@ -1,20 +1,20 @@ { + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "location": "EastUS2", "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "location": "EastUS2", - "parameters": { - "name": "contosoadla", - "type": "Microsoft.DataLakeAnalytics/accounts" - } - }, - "responses": { - "200": { - "body": { - "nameAvailable": false, - "reason": "AlreadyExists", - "message": "An account named 'abc' already exists." - } - } + "name": "contosoadla", + "type": "Microsoft.DataLakeAnalytics/accounts" } + }, + "responses": { + "200": { + "body": { + "nameAvailable": false, + "reason": "AlreadyExists", + "message": "An account named 'abc' already exists." + } + } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Create.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Create.json index c37a85108dbc..ed48cf8913f3 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Create.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Create.json @@ -1,190 +1,214 @@ { + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "parameters": { - "location": "eastus2", - "tags": { - "test_key": "test_value" - }, + "location": "eastus2", + "tags": { + "test_key": "test_value" + }, + "properties": { + "defaultDataLakeStoreAccount": "test_adls", + "dataLakeStoreAccounts": [ + { + "name": "test_adls", "properties": { - "defaultDataLakeStoreAccount": "test_adls", - "dataLakeStoreAccounts": [{ - "name": "test_adls", - "properties": { - "suffix": "test_suffix" - } - }], - "storageAccounts": [{ - "name": "test_storage", - "properties": { - "accessKey": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", - "suffix": "test_suffix" - } - }], - "computePolicies": [{ - "name": "test_policy", - "properties": { - "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1 - } - }], - "firewallRules": [{ - "name": "test_rule", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - }], - "firewallState": "Enabled", - "firewallAllowAzureIps": "Enabled", - "newTier": "Consumption", - "maxJobCount": 3, - "maxDegreeOfParallelism": 30, + "suffix": "test_suffix" + } + } + ], + "storageAccounts": [ + { + "name": "test_storage", + "properties": { + "accessKey": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", + "suffix": "test_suffix" + } + } + ], + "computePolicies": [ + { + "name": "test_policy", + "properties": { + "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1 + } + } + ], + "firewallRules": [ + { + "name": "test_rule", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" + } + } + ], + "firewallState": "Enabled", + "firewallAllowAzureIps": "Enabled", + "newTier": "Consumption", + "maxJobCount": 3, + "maxDegreeOfParallelism": 30, + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1, + "queryStoreRetention": 30 + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", + "name": "test_account", + "type": "Microsoft.DataLakeAnalytics/accounts", + "location": "eastus2", + "tags": { + "test_key": "test_value" + }, + "properties": { + "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "provisioningState": "Succeeded", + "state": "Active", + "creationTime": "2017-04-14T13:21:56.6819037-07:00", + "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", + "endpoint": "test_endpoint", + "defaultDataLakeStoreAccount": "test_adls", + "dataLakeStoreAccounts": [ + { + "id": "test_adls_id", + "name": "test_adls", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } + } + ], + "storageAccounts": [ + { + "id": "test_storage_id", + "name": "test_storage", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } + } + ], + "computePolicies": [ + { + "id": "test_policy_id", + "name": "test_policy", + "type": "test_type", + "properties": { + "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "objectType": "User", "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1, - "queryStoreRetention": 30 + "minPriorityPerJob": 1 + } } + ], + "firewallRules": [ + { + "id": "test_firewall_id", + "name": "test_rule", + "type": "test_type", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" + } + } + ], + "firewallState": "Enabled", + "firewallAllowAzureIps": "Enabled", + "newTier": "Consumption", + "currentTier": "Consumption", + "maxJobCount": 3, + "systemMaxJobCount": 1, + "maxDegreeOfParallelism": 30, + "systemMaxDegreeOfParallelism": 1, + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1, + "queryStoreRetention": 30 } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", - "name": "test_account", - "type": "Microsoft.DataLakeAnalytics/accounts", - "location": "eastus2", - "tags": { - "test_key": "test_value" - }, - "properties": { - "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "provisioningState": "Succeeded", - "state": "Active", - "creationTime": "2017-04-14T13:21:56.6819037-07:00", - "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", - "endpoint": "test_endpoint", - "defaultDataLakeStoreAccount": "test_adls", - "dataLakeStoreAccounts": [{ - "id": "test_adls_id", - "name": "test_adls", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "storageAccounts": [{ - "id": "test_storage_id", - "name": "test_storage", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "computePolicies": [{ - "id": "test_policy_id", - "name": "test_policy", - "type": "test_type", - "properties": { - "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1 - } - }], - "firewallRules": [{ - "id": "test_firewall_id", - "name": "test_rule", - "type": "test_type", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - }], - "firewallState": "Enabled", - "firewallAllowAzureIps": "Enabled", - "newTier": "Consumption", - "currentTier": "Consumption", - "maxJobCount": 3, - "systemMaxJobCount": 1, - "maxDegreeOfParallelism": 30, - "systemMaxDegreeOfParallelism": 1, - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1, - "queryStoreRetention": 30 - } - } + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", + "name": "test_account", + "type": "Microsoft.DataLakeAnalytics/accounts", + "location": "eastus2", + "tags": { + "test_key": "test_value" }, - "201": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", - "name": "test_account", - "type": "Microsoft.DataLakeAnalytics/accounts", - "location": "eastus2", - "tags": { - "test_key": "test_value" - }, - "properties": { - "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "provisioningState": "Succeeded", - "state": "Active", - "creationTime": "2017-04-14T13:21:56.6819037-07:00", - "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", - "endpoint": "test_endpoint", - "defaultDataLakeStoreAccount": "test_adls", - "dataLakeStoreAccounts": [{ - "id": "test_adls_id", - "name": "test_adls", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "storageAccounts": [{ - "id": "test_storage_id", - "name": "test_storage", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "computePolicies": [{ - "id": "test_policy_id", - "name": "test_policy", - "type": "test_type", - "properties": { - "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1 - } - }], - "firewallRules": [{ - "id": "test_firewall_id", - "name": "test_rule", - "type": "test_type", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - }], - "firewallState": "Enabled", - "firewallAllowAzureIps": "Enabled", - "newTier": "Consumption", - "currentTier": "Consumption", - "maxJobCount": 3, - "systemMaxJobCount": 1, - "maxDegreeOfParallelism": 30, - "systemMaxDegreeOfParallelism": 1, - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1, - "queryStoreRetention": 30 - } + "properties": { + "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "provisioningState": "Succeeded", + "state": "Active", + "creationTime": "2017-04-14T13:21:56.6819037-07:00", + "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", + "endpoint": "test_endpoint", + "defaultDataLakeStoreAccount": "test_adls", + "dataLakeStoreAccounts": [ + { + "id": "test_adls_id", + "name": "test_adls", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } + } + ], + "storageAccounts": [ + { + "id": "test_storage_id", + "name": "test_storage", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } + } + ], + "computePolicies": [ + { + "id": "test_policy_id", + "name": "test_policy", + "type": "test_type", + "properties": { + "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1 + } + } + ], + "firewallRules": [ + { + "id": "test_firewall_id", + "name": "test_rule", + "type": "test_type", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" + } } + ], + "firewallState": "Enabled", + "firewallAllowAzureIps": "Enabled", + "newTier": "Consumption", + "currentTier": "Consumption", + "maxJobCount": 3, + "systemMaxJobCount": 1, + "maxDegreeOfParallelism": 30, + "systemMaxDegreeOfParallelism": 1, + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1, + "queryStoreRetention": 30 } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Delete.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Delete.json index 324b2630a98a..1a07094bb30b 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Delete.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Delete.json @@ -1,16 +1,13 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla" - }, - "responses": { - "200": { - }, - "202": { - }, - "204": { - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Get.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Get.json index a23b56e134bb..18c39e8c95bb 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Get.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Get.json @@ -1,77 +1,85 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", - "name": "test_account", - "type": "Microsoft.DataLakeAnalytics/accounts", - "location": "eastus2", - "tags": { - "test_key": "test_value" - }, - "properties": { - "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "provisioningState": "Succeeded", - "state": "Active", - "creationTime": "2017-04-14T13:21:56.6819037-07:00", - "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", - "endpoint": "test_endpoint", - "defaultDataLakeStoreAccount": "test_adls", - "dataLakeStoreAccounts": [{ - "id": "test_adls_id", - "name": "test_adls", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "storageAccounts": [{ - "id": "test_storage_id", - "name": "test_storage", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "computePolicies": [{ - "id": "test_policy_id", - "name": "test_policy", - "type": "test_type", - "properties": { - "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1 - } - }], - "firewallRules": [{ - "id": "test_firewall_id", - "name": "test_rule", - "type": "test_type", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - }], - "firewallState": "Enabled", - "firewallAllowAzureIps": "Enabled", - "newTier": "Consumption", - "currentTier": "Consumption", - "maxJobCount": 3, - "systemMaxJobCount": 1, - "maxDegreeOfParallelism": 30, - "systemMaxDegreeOfParallelism": 1, - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1, - "queryStoreRetention": 30 - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", + "name": "test_account", + "type": "Microsoft.DataLakeAnalytics/accounts", + "location": "eastus2", + "tags": { + "test_key": "test_value" + }, + "properties": { + "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "provisioningState": "Succeeded", + "state": "Active", + "creationTime": "2017-04-14T13:21:56.6819037-07:00", + "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", + "endpoint": "test_endpoint", + "defaultDataLakeStoreAccount": "test_adls", + "dataLakeStoreAccounts": [ + { + "id": "test_adls_id", + "name": "test_adls", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } } + ], + "storageAccounts": [ + { + "id": "test_storage_id", + "name": "test_storage", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } + } + ], + "computePolicies": [ + { + "id": "test_policy_id", + "name": "test_policy", + "type": "test_type", + "properties": { + "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1 + } + } + ], + "firewallRules": [ + { + "id": "test_firewall_id", + "name": "test_rule", + "type": "test_type", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" + } + } + ], + "firewallState": "Enabled", + "firewallAllowAzureIps": "Enabled", + "newTier": "Consumption", + "currentTier": "Consumption", + "maxJobCount": 3, + "systemMaxJobCount": 1, + "maxDegreeOfParallelism": 30, + "systemMaxDegreeOfParallelism": 1, + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1, + "queryStoreRetention": 30 } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_List.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_List.json index 35783421c127..f53524c11613 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_List.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_List.json @@ -1,36 +1,38 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_account", - "type": "test_type", - "location": "eastus2", - "tags": { - "test_key": "test_value" - }, - "properties": { - "provisioningState": "Succeeded", - "state": "Active", - "creationTime": "2017-04-14T13:21:56.6819037-07:00", - "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", - "endpoint": "test_endpoint", - "accountId": "94f4bf5d-78a9-4c31-8aa7-b34d07bad898" - } - }], - "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_account", + "type": "test_type", + "location": "eastus2", + "tags": { + "test_key": "test_value" + }, + "properties": { + "provisioningState": "Succeeded", + "state": "Active", + "creationTime": "2017-04-14T13:21:56.6819037-07:00", + "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", + "endpoint": "test_endpoint", + "accountId": "94f4bf5d-78a9-4c31-8aa7-b34d07bad898" } - } + } + ], + "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_ListByResourceGroup.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_ListByResourceGroup.json index ed943f7e8615..a016492f43b2 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_ListByResourceGroup.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_ListByResourceGroup.json @@ -1,37 +1,39 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_account", - "type": "test_type", - "location": "eastus2", - "tags": { - "test_key": "test_value" - }, - "properties": { - "provisioningState": "Succeeded", - "state": "Active", - "creationTime": "2017-04-14T13:21:56.6819037-07:00", - "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", - "endpoint": "test_endpoint", - "accountId": "94f4bf5d-78a9-4c31-8aa7-b34d07bad898" - } - }], - "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_account", + "type": "test_type", + "location": "eastus2", + "tags": { + "test_key": "test_value" + }, + "properties": { + "provisioningState": "Succeeded", + "state": "Active", + "creationTime": "2017-04-14T13:21:56.6819037-07:00", + "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", + "endpoint": "test_endpoint", + "accountId": "94f4bf5d-78a9-4c31-8aa7-b34d07bad898" } - } + } + ], + "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Update.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Update.json index 8c4cb32d43a6..5bb75f25eb15 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Update.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Accounts_Update.json @@ -1,242 +1,270 @@ { + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "parameters": { - "tags": { - "test_key": "test_value" - }, + "tags": { + "test_key": "test_value" + }, + "properties": { + "computePolicies": [ + { + "name": "test_policy", "properties": { - "computePolicies": [{ - "name": "test_policy", - "properties": { - "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1 - } - }], - "firewallRules": [{ - "name": "test_rule", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - }], - "firewallState": "Enabled", - "firewallAllowAzureIps": "Enabled", - "newTier": "Consumption", - "maxJobCount": 1, - "maxDegreeOfParallelism": 1, + "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1 + } + } + ], + "firewallRules": [ + { + "name": "test_rule", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" + } + } + ], + "firewallState": "Enabled", + "firewallAllowAzureIps": "Enabled", + "newTier": "Consumption", + "maxJobCount": 1, + "maxDegreeOfParallelism": 1, + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1, + "queryStoreRetention": 1 + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", + "name": "test_account", + "type": "Microsoft.DataLakeAnalytics/accounts", + "location": "eastus2", + "tags": { + "test_key": "test_value" + }, + "properties": { + "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "provisioningState": "Succeeded", + "state": "Active", + "creationTime": "2017-04-14T13:21:56.6819037-07:00", + "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", + "endpoint": "test_endpoint", + "defaultDataLakeStoreAccount": "test_adls", + "dataLakeStoreAccounts": [ + { + "id": "test_adls_id", + "name": "test_adls", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } + } + ], + "storageAccounts": [ + { + "id": "test_storage_id", + "name": "test_storage", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } + } + ], + "computePolicies": [ + { + "id": "test_policy_id", + "name": "test_policy", + "type": "test_type", + "properties": { + "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "objectType": "User", "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1, - "queryStoreRetention": 1 + "minPriorityPerJob": 1 + } + } + ], + "firewallRules": [ + { + "id": "test_firewall_id", + "name": "test_rule", + "type": "test_type", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" + } } + ], + "firewallState": "Enabled", + "firewallAllowAzureIps": "Enabled", + "newTier": "Consumption", + "currentTier": "Consumption", + "maxJobCount": 3, + "systemMaxJobCount": 1, + "maxDegreeOfParallelism": 30, + "systemMaxDegreeOfParallelism": 1, + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1, + "queryStoreRetention": 30 } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", - "name": "test_account", - "type": "Microsoft.DataLakeAnalytics/accounts", - "location": "eastus2", - "tags": { - "test_key": "test_value" - }, - "properties": { - "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "provisioningState": "Succeeded", - "state": "Active", - "creationTime": "2017-04-14T13:21:56.6819037-07:00", - "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", - "endpoint": "test_endpoint", - "defaultDataLakeStoreAccount": "test_adls", - "dataLakeStoreAccounts": [{ - "id": "test_adls_id", - "name": "test_adls", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "storageAccounts": [{ - "id": "test_storage_id", - "name": "test_storage", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "computePolicies": [{ - "id": "test_policy_id", - "name": "test_policy", - "type": "test_type", - "properties": { - "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1 - } - }], - "firewallRules": [{ - "id": "test_firewall_id", - "name": "test_rule", - "type": "test_type", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - }], - "firewallState": "Enabled", - "firewallAllowAzureIps": "Enabled", - "newTier": "Consumption", - "currentTier": "Consumption", - "maxJobCount": 3, - "systemMaxJobCount": 1, - "maxDegreeOfParallelism": 30, - "systemMaxDegreeOfParallelism": 1, - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1, - "queryStoreRetention": 30 - } - } + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", + "name": "test_account", + "type": "Microsoft.DataLakeAnalytics/accounts", + "location": "eastus2", + "tags": { + "test_key": "test_value" }, - "201": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", - "name": "test_account", - "type": "Microsoft.DataLakeAnalytics/accounts", - "location": "eastus2", - "tags": { - "test_key": "test_value" - }, - "properties": { - "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "provisioningState": "Succeeded", - "state": "Active", - "creationTime": "2017-04-14T13:21:56.6819037-07:00", - "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", - "endpoint": "test_endpoint", - "defaultDataLakeStoreAccount": "test_adls", - "dataLakeStoreAccounts": [{ - "id": "test_adls_id", - "name": "test_adls", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "storageAccounts": [{ - "id": "test_storage_id", - "name": "test_storage", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "computePolicies": [{ - "id": "test_policy_id", - "name": "test_policy", - "type": "test_type", - "properties": { - "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1 - } - }], - "firewallRules": [{ - "id": "test_firewall_id", - "name": "test_rule", - "type": "test_type", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - }], - "firewallState": "Enabled", - "firewallAllowAzureIps": "Enabled", - "newTier": "Consumption", - "currentTier": "Consumption", - "maxJobCount": 3, - "systemMaxJobCount": 1, - "maxDegreeOfParallelism": 30, - "systemMaxDegreeOfParallelism": 1, - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1, - "queryStoreRetention": 30 - } + "properties": { + "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "provisioningState": "Succeeded", + "state": "Active", + "creationTime": "2017-04-14T13:21:56.6819037-07:00", + "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", + "endpoint": "test_endpoint", + "defaultDataLakeStoreAccount": "test_adls", + "dataLakeStoreAccounts": [ + { + "id": "test_adls_id", + "name": "test_adls", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } + } + ], + "storageAccounts": [ + { + "id": "test_storage_id", + "name": "test_storage", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } } + ], + "computePolicies": [ + { + "id": "test_policy_id", + "name": "test_policy", + "type": "test_type", + "properties": { + "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1 + } + } + ], + "firewallRules": [ + { + "id": "test_firewall_id", + "name": "test_rule", + "type": "test_type", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" + } + } + ], + "firewallState": "Enabled", + "firewallAllowAzureIps": "Enabled", + "newTier": "Consumption", + "currentTier": "Consumption", + "maxJobCount": 3, + "systemMaxJobCount": 1, + "maxDegreeOfParallelism": 30, + "systemMaxDegreeOfParallelism": 1, + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1, + "queryStoreRetention": 30 + } + } + }, + "202": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", + "name": "test_account", + "type": "Microsoft.DataLakeAnalytics/accounts", + "location": "eastus2", + "tags": { + "test_key": "test_value" }, - "202": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rgaba12041/providers/Microsoft.DataLakeAnalytics/accounts/testaba15818", - "name": "test_account", - "type": "Microsoft.DataLakeAnalytics/accounts", - "location": "eastus2", - "tags": { - "test_key": "test_value" - }, - "properties": { - "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "provisioningState": "Succeeded", - "state": "Active", - "creationTime": "2017-04-14T13:21:56.6819037-07:00", - "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", - "endpoint": "test_endpoint", - "defaultDataLakeStoreAccount": "test_adls", - "dataLakeStoreAccounts": [{ - "id": "test_adls_id", - "name": "test_adls", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "storageAccounts": [{ - "id": "test_storage_id", - "name": "test_storage", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "computePolicies": [{ - "id": "test_policy_id", - "name": "test_policy", - "type": "test_type", - "properties": { - "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1 - } - }], - "firewallRules": [{ - "id": "test_firewall_id", - "name": "test_rule", - "type": "test_type", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - }], - "firewallState": "Enabled", - "firewallAllowAzureIps": "Enabled", - "newTier": "Consumption", - "currentTier": "Consumption", - "maxJobCount": 3, - "systemMaxJobCount": 1, - "maxDegreeOfParallelism": 30, - "systemMaxDegreeOfParallelism": 1, - "maxDegreeOfParallelismPerJob": 1, - "minPriorityPerJob": 1, - "queryStoreRetention": 30 - } + "properties": { + "accountId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "provisioningState": "Succeeded", + "state": "Active", + "creationTime": "2017-04-14T13:21:56.6819037-07:00", + "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00", + "endpoint": "test_endpoint", + "defaultDataLakeStoreAccount": "test_adls", + "dataLakeStoreAccounts": [ + { + "id": "test_adls_id", + "name": "test_adls", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } + } + ], + "storageAccounts": [ + { + "id": "test_storage_id", + "name": "test_storage", + "type": "test_type", + "properties": { + "suffix": "test_suffix" + } + } + ], + "computePolicies": [ + { + "id": "test_policy_id", + "name": "test_policy", + "type": "test_type", + "properties": { + "objectId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1 + } + } + ], + "firewallRules": [ + { + "id": "test_firewall_id", + "name": "test_rule", + "type": "test_type", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" + } } + ], + "firewallState": "Enabled", + "firewallAllowAzureIps": "Enabled", + "newTier": "Consumption", + "currentTier": "Consumption", + "maxJobCount": 3, + "systemMaxJobCount": 1, + "maxDegreeOfParallelism": 30, + "systemMaxDegreeOfParallelism": 1, + "maxDegreeOfParallelismPerJob": 1, + "minPriorityPerJob": 1, + "queryStoreRetention": 30 } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_CreateOrUpdate.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_CreateOrUpdate.json index 0c2a7f5e1964..a802a4462e77 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_CreateOrUpdate.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_CreateOrUpdate.json @@ -1,30 +1,30 @@ { + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "computePolicyName": "test_policy", "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "computePolicyName": "test_policy", - "parameters": { - "properties": { - "objectId": "776b9091-8916-4638-87f7-9c989a38da98", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 10, - "minPriorityPerJob": 30 - } - } - }, - "responses": { - "200": { - "body": { - "name": "test_policy", - "properties": { - "objectId": "776b9091-8916-4638-87f7-9c989a38da98", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 10, - "minPriorityPerJob": 30 - } - } + "properties": { + "objectId": "776b9091-8916-4638-87f7-9c989a38da98", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 10, + "minPriorityPerJob": 30 + } + } + }, + "responses": { + "200": { + "body": { + "name": "test_policy", + "properties": { + "objectId": "776b9091-8916-4638-87f7-9c989a38da98", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 10, + "minPriorityPerJob": 30 } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Delete.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Delete.json index ef4331040ff4..e293c9e12322 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Delete.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Delete.json @@ -1,15 +1,13 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "computePolicyName": "test_policy" - }, - "responses": { - "200": { - }, - "204": { - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "computePolicyName": "test_policy" + }, + "responses": { + "200": {}, + "204": {} + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Get.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Get.json index c5eba4e3f678..f7c98bb948c7 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Get.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Get.json @@ -1,22 +1,22 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "computePolicyName": "test_policy" - }, - "responses": { - "200": { - "body": { - "name": "test_policy", - "properties": { - "objectId": "776b9091-8916-4638-87f7-9c989a38da98", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 10, - "minPriorityPerJob": 30 - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "computePolicyName": "test_policy" + }, + "responses": { + "200": { + "body": { + "name": "test_policy", + "properties": { + "objectId": "776b9091-8916-4638-87f7-9c989a38da98", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 10, + "minPriorityPerJob": 30 } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_ListByAccount.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_ListByAccount.json index 84e157f00fff..f43cbe04636c 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_ListByAccount.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_ListByAccount.json @@ -1,42 +1,44 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla" - }, - "responses": { - "200": { - "body": { - "value": [{ - "name": "test_policy", - "properties": { - "objectId": "776b9091-8916-4638-87f7-9c989a38da98", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 10, - "minPriorityPerJob": 30 - } - }, - { - "name": "test_policy1", - "properties": { - "objectId": "776b9091-8916-4638-87f7-9c989a38da99", - "objectType": "Group", - "maxDegreeOfParallelismPerJob": 5, - "minPriorityPerJob": 15 - } - }, - { - "name": "test_policy2", - "properties": { - "objectId": "776b9091-8916-4638-87f7-9c989a38da97", - "objectType": "ServicePrincipal", - "maxDegreeOfParallelismPerJob": 20, - "minPriorityPerJob": 60 - } - }], - "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "test_policy", + "properties": { + "objectId": "776b9091-8916-4638-87f7-9c989a38da98", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 10, + "minPriorityPerJob": 30 } - } + }, + { + "name": "test_policy1", + "properties": { + "objectId": "776b9091-8916-4638-87f7-9c989a38da99", + "objectType": "Group", + "maxDegreeOfParallelismPerJob": 5, + "minPriorityPerJob": 15 + } + }, + { + "name": "test_policy2", + "properties": { + "objectId": "776b9091-8916-4638-87f7-9c989a38da97", + "objectType": "ServicePrincipal", + "maxDegreeOfParallelismPerJob": 20, + "minPriorityPerJob": 60 + } + } + ], + "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Update.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Update.json index 96829136040b..24876110d2f5 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Update.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/ComputePolicies_Update.json @@ -1,28 +1,28 @@ { + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "computePolicyName": "test_policy", "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "computePolicyName": "test_policy", - "parameters": { - "properties": { - "maxDegreeOfParallelismPerJob": 11, - "minPriorityPerJob": 31 - } - } - }, - "responses": { - "200": { - "body": { - "name": "test_policy", - "properties": { - "objectId": "776b9091-8916-4638-87f7-9c989a38da98", - "objectType": "User", - "maxDegreeOfParallelismPerJob": 11, - "minPriorityPerJob": 31 - } - } + "properties": { + "maxDegreeOfParallelismPerJob": 11, + "minPriorityPerJob": 31 + } + } + }, + "responses": { + "200": { + "body": { + "name": "test_policy", + "properties": { + "objectId": "776b9091-8916-4638-87f7-9c989a38da98", + "objectType": "User", + "maxDegreeOfParallelismPerJob": 11, + "minPriorityPerJob": 31 } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Add.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Add.json index a8bac50059fe..0dd76d13c698 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Add.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Add.json @@ -1,18 +1,17 @@ { + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "dataLakeStoreAccountName": "test_adls_account", "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "dataLakeStoreAccountName": "test_adls_account", - "parameters": { - "properties": { - "suffix": "test_suffix" - } - } - }, - "responses": { - "200": { - } + "properties": { + "suffix": "test_suffix" + } } + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Delete.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Delete.json index d8df893ea83b..81ea00b35fcf 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Delete.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Delete.json @@ -1,13 +1,12 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "dataLakeStoreAccountName": "test_adls_account" - }, - "responses": { - "200": { - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "dataLakeStoreAccountName": "test_adls_account" + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Get.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Get.json index 2e6a341cd68b..47994990a1c4 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Get.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_Get.json @@ -1,21 +1,21 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1669ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "dataLakeStoreAccountName": "test_adls_account" - }, - "responses": { - "200": { - "body": { - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_adls", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1669ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "dataLakeStoreAccountName": "test_adls_account" + }, + "responses": { + "200": { + "body": { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_adls", + "type": "test_type", + "properties": { + "suffix": "test_suffix" } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_ListByAccount.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_ListByAccount.json index 75fc6588bd81..b5022bc391b8 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_ListByAccount.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/DataLakeStoreAccounts_ListByAccount.json @@ -1,29 +1,31 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_adls", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_adls", + "type": "test_type", + "properties": { + "suffix": "test_suffix" } - } + } + ], + "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_CreateOrUpdate.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_CreateOrUpdate.json index 80e20e0cff4a..7c239fc53e9f 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_CreateOrUpdate.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_CreateOrUpdate.json @@ -1,28 +1,28 @@ { + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "firewallRuleName": "test_rule", "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "firewallRuleName": "test_rule", - "parameters": { - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - } - }, - "responses": { - "200": { - "body": { - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_rule", - "type": "test_type", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - } + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" + } + } + }, + "responses": { + "200": { + "body": { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_rule", + "type": "test_type", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Delete.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Delete.json index 53cac4aaabaf..5cec7e998778 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Delete.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Delete.json @@ -1,15 +1,13 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "firewallRuleName": "test_rule" - }, - "responses": { - "200": { - }, - "204": { - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "firewallRuleName": "test_rule" + }, + "responses": { + "200": {}, + "204": {} + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Get.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Get.json index 137b32e4246d..03ba39bf887e 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Get.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Get.json @@ -1,22 +1,22 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "firewallRuleName": "test_rule" - }, - "responses": { - "200": { - "body": { - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_rule", - "type": "test_type", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "firewallRuleName": "test_rule" + }, + "responses": { + "200": { + "body": { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_rule", + "type": "test_type", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_ListByAccount.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_ListByAccount.json index 20bbfa6262fb..0fdb92c73190 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_ListByAccount.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_ListByAccount.json @@ -1,24 +1,26 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_rule", - "type": "test_type", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - }], - "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_rule", + "type": "test_type", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" } - } + } + ], + "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Update.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Update.json index 78b55e76537e..7c239fc53e9f 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Update.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/FirewallRules_Update.json @@ -1,28 +1,28 @@ { + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "firewallRuleName": "test_rule", "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "firewallRuleName": "test_rule", - "parameters": { - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - } - }, - "responses": { - "200": { - "body": { - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_rule", - "type": "test_type", - "properties": { - "startIpAddress": "1.1.1.1", - "endIpAddress": "2.2.2.2" - } - } + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" + } + } + }, + "responses": { + "200": { + "body": { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_rule", + "type": "test_type", + "properties": { + "startIpAddress": "1.1.1.1", + "endIpAddress": "2.2.2.2" } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Locations_GetCapability.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Locations_GetCapability.json index c44d18cbfdcb..627c2d8e525f 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Locations_GetCapability.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Locations_GetCapability.json @@ -1,20 +1,19 @@ { - "parameters": { - "api-version": "2016-11-01", + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "location": "EastUS2" + }, + "responses": { + "200": { + "body": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "location": "EastUS2" + "state": "Registered", + "maxAccountCount": 150, + "accountCount": 100, + "migrationState": false + } }, - "responses": { - "200": { - "body": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "state": "Registered", - "maxAccountCount": 150, - "accountCount": 100, - "migrationState": false - } - }, - "404": { - } - } + "404": {} + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Operations_List.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Operations_List.json index c16b26ab7e22..5b1bc50fd2ea 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Operations_List.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/Operations_List.json @@ -1,21 +1,23 @@ { - "parameters": { - "api-version": "2016-11-01" - }, - "responses": { - "200": { - "body": { - "value": [{ - "name": "Microsoft.DataLakeAnalytics/operations/read", - "display": { - "provider": "Microsoft DataLakeAnalytics", - "resource": "Available Operations", - "operation": "Get Available Operations", - "description": "Get available operations of DataLakeAnalytics." - } - }], - "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + "parameters": { + "api-version": "2016-11-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.DataLakeAnalytics/operations/read", + "display": { + "provider": "Microsoft DataLakeAnalytics", + "resource": "Available Operations", + "operation": "Get Available Operations", + "description": "Get available operations of DataLakeAnalytics." } - } + } + ], + "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Add.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Add.json index 631c6f8fb1f3..536e2eebafee 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Add.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Add.json @@ -1,19 +1,18 @@ { + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "storageAccountName": "test_storage", "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "storageAccountName": "test_storage", - "parameters": { - "properties": { - "accessKey": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", - "suffix": "test_suffix" - } - } - }, - "responses": { - "200": { - } + "properties": { + "accessKey": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", + "suffix": "test_suffix" + } } + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Delete.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Delete.json index 4bbfc5535080..9dcbca8c42dd 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Delete.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Delete.json @@ -1,13 +1,12 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "storageAccountName": "test_storage" - }, - "responses": { - "200": { - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "storageAccountName": "test_storage" + }, + "responses": { + "200": {} + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Get.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Get.json index 7108df56459a..910efe0766bb 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Get.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Get.json @@ -1,21 +1,21 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "storageAccountName": "test_storage" - }, - "responses": { - "200": { - "body": { - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_storage", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "storageAccountName": "test_storage" + }, + "responses": { + "200": { + "body": { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_storage", + "type": "test_type", + "properties": { + "suffix": "test_suffix" } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_GetStorageContainer.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_GetStorageContainer.json index 74715e0a2159..732b7d348498 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_GetStorageContainer.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_GetStorageContainer.json @@ -1,22 +1,22 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "storageAccountName": "test_storage", - "containerName": "test_container" - }, - "responses": { - "200": { - "body": { - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_storage", - "type": "test_type", - "properties": { - "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00" - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "storageAccountName": "test_storage", + "containerName": "test_container" + }, + "responses": { + "200": { + "body": { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_storage", + "type": "test_type", + "properties": { + "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00" } + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListByAccount.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListByAccount.json index e86f81925843..7ec163bfb791 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListByAccount.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListByAccount.json @@ -1,29 +1,31 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "$filter": "test_filter", - "$top": 1, - "$skip": 1, - "$select": "test_select", - "$orderby": "test_orderby", - "$count": false - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_storage", - "type": "test_type", - "properties": { - "suffix": "test_suffix" - } - }], - "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "$filter": "test_filter", + "$top": 1, + "$skip": 1, + "$select": "test_select", + "$orderby": "test_orderby", + "$count": false + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_storage", + "type": "test_type", + "properties": { + "suffix": "test_suffix" } - } + } + ], + "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListSasTokens.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListSasTokens.json index 7be802bcac66..6fe68e619157 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListSasTokens.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListSasTokens.json @@ -1,20 +1,22 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "storageAccountName": "test_storage", - "containerName": "test_container" - }, - "responses": { - "200": { - "body": { - "value": [{ - "accessToken": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346" - }], - "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" - } - } + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "storageAccountName": "test_storage", + "containerName": "test_container" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "accessToken": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346" + } + ], + "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListStorageContainers.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListStorageContainers.json index 573524d96bc4..2b24017f689b 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListStorageContainers.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_ListStorageContainers.json @@ -1,24 +1,26 @@ { - "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "storageAccountName": "test_storage" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "test_storage", - "type": "test_type", - "properties": { - "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00" - } - }], - "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "storageAccountName": "test_storage" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "test_storage", + "type": "test_type", + "properties": { + "lastModifiedTime": "2017-04-14T13:21:56.6819037-07:00" } - } + } + ], + "nextLink": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/contosorg/providers/Microsoft.DataLakeAnalytics/accounts/contosoadla/jobPolicies?api-version=2016-11-01&%24skiptoken=" + } } + } } diff --git a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Update.json b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Update.json index 631c6f8fb1f3..536e2eebafee 100644 --- a/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Update.json +++ b/specification/datalake-analytics/resource-manager/Microsoft.DataLakeAnalytics/stable/2016-11-01/examples/StorageAccounts_Update.json @@ -1,19 +1,18 @@ { + "parameters": { + "api-version": "2016-11-01", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "contosorg", + "accountName": "contosoadla", + "storageAccountName": "test_storage", "parameters": { - "api-version": "2016-11-01", - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "contosorg", - "accountName": "contosoadla", - "storageAccountName": "test_storage", - "parameters": { - "properties": { - "accessKey": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", - "suffix": "test_suffix" - } - } - }, - "responses": { - "200": { - } + "properties": { + "accessKey": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab346", + "suffix": "test_suffix" + } } + }, + "responses": { + "200": {} + } } diff --git a/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/datamigration.json b/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/datamigration.json index cfd3ddd118c0..8a9fbc8f3730 100644 --- a/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/datamigration.json +++ b/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/datamigration.json @@ -494,7 +494,9 @@ ], "operationId": "ServiceTasks_List", "x-ms-examples": { - "ServiceTasks_List": { "$ref": "./examples/ServiceTasks_List.json" } + "ServiceTasks_List": { + "$ref": "./examples/ServiceTasks_List.json" + } }, "parameters": [ { @@ -862,7 +864,9 @@ ], "operationId": "ServiceTasks_CreateOrUpdate", "x-ms-examples": { - "Tasks_CreateOrUpdate": { "$ref": "./examples/ServiceTasks_CreateOrUpdate.json" } + "Tasks_CreateOrUpdate": { + "$ref": "./examples/ServiceTasks_CreateOrUpdate.json" + } }, "parameters": [ { @@ -900,7 +904,9 @@ ], "operationId": "ServiceTasks_Get", "x-ms-examples": { - "Tasks_Get": { "$ref": "./examples/ServiceTasks_Get.json" } + "Tasks_Get": { + "$ref": "./examples/ServiceTasks_Get.json" + } }, "parameters": [ { @@ -941,7 +947,9 @@ ], "operationId": "ServiceTasks_Delete", "x-ms-examples": { - "Tasks_Delete": { "$ref": "./examples/ServiceTasks_Delete.json" } + "Tasks_Delete": { + "$ref": "./examples/ServiceTasks_Delete.json" + } }, "responses": { "200": { @@ -968,7 +976,9 @@ ], "operationId": "ServiceTasks_Update", "x-ms-examples": { - "Tasks_Update": { "$ref": "./examples/ServiceTasks_Update.json" } + "Tasks_Update": { + "$ref": "./examples/ServiceTasks_Update.json" + } }, "parameters": [ { @@ -1053,7 +1063,9 @@ ], "operationId": "ServiceTasks_Cancel", "x-ms-examples": { - "Tasks_Cancel": { "$ref": "./examples/ServiceTasks_Cancel.json" } + "Tasks_Cancel": { + "$ref": "./examples/ServiceTasks_Cancel.json" + } }, "parameters": [ { diff --git a/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_CreateOrUpdate.json b/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_CreateOrUpdate.json index 461998e7c40a..33319569713c 100644 --- a/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_CreateOrUpdate.json +++ b/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_CreateOrUpdate.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Delete.json b/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Delete.json index 2b59a6d1bb67..7c5fd00999e2 100644 --- a/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Delete.json +++ b/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Delete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Get.json b/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Get.json index 5be1987f46da..87b48c5ea309 100644 --- a/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Get.json +++ b/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Get.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Update.json b/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Update.json index 70e07b99a66b..5253cc8aacdd 100644 --- a/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Update.json +++ b/specification/datamigration/resource-manager/Microsoft.DataMigration/preview/2018-07-15-preview/examples/ServiceTasks_Update.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/deploymentmanager.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/deploymentmanager.json index 24e4f928fb11..353ce6d2b860 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/deploymentmanager.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/deploymentmanager.json @@ -1463,17 +1463,16 @@ "type": "object", "description": "The artifacts for the service unit.", "$ref": "#/definitions/ServiceUnitArtifacts" - } + } }, "required": [ "targetResourceGroup", "deploymentMode" ] }, - "ServiceUnitArtifacts": - { + "ServiceUnitArtifacts": { "description": "Defines the artifacts of a service unit.", - "properties":{ + "properties": { "templateUri": { "type": "string", "description": "The full URI of the ARM template file with the SAS token.", @@ -1869,4 +1868,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_createorupdate.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_createorupdate.json index fa537c8e23fd..788dbbe69641 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_createorupdate.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_createorupdate.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "artifactSourceName": "myArtifactSource", - "api-version": "2018-09-01-preview", - "artifactSourceInfo": { - "type": "Microsoft.DeploymentManager/artifactSources", - "location": "centralus", - "tags": {}, - "properties": { - "sourceType": "AzureStorage", - "authentication": { - "type": "Sas", - "properties": { - "sasUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" - } - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "artifactSourceName": "myArtifactSource", + "api-version": "2018-09-01-preview", + "artifactSourceInfo": { + "type": "Microsoft.DeploymentManager/artifactSources", + "location": "centralus", + "tags": {}, + "properties": { + "sourceType": "AzureStorage", + "authentication": { + "type": "Sas", + "properties": { + "sasUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" + } } - }, - "responses": { - "201": { - "body": { - "name": "myArtifactSource", - "type": "Microsoft.DeploymentManager/artifactSources", - "location": "centralus", - "tags": {}, - "properties": { - "sourceType": "AzureStorage", - "authentication": { - "type": "Sas", - "properties": { - "sasUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" - } - } - } + } + } + }, + "responses": { + "201": { + "body": { + "name": "myArtifactSource", + "type": "Microsoft.DeploymentManager/artifactSources", + "location": "centralus", + "tags": {}, + "properties": { + "sourceType": "AzureStorage", + "authentication": { + "type": "Sas", + "properties": { + "sasUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_createorupdate_artifactroot.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_createorupdate_artifactroot.json index 1e9c567fcfdf..ee73497e34b2 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_createorupdate_artifactroot.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_createorupdate_artifactroot.json @@ -1,42 +1,42 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "artifactSourceName": "myArtifactSource", - "api-version": "2018-09-01-preview", - "artifactSourceInfo": { - "type": "Microsoft.DeploymentManager/artifactSources", - "location": "centralus", - "tags": {}, - "properties": { - "sourceType": "AzureStorage", - "artifactRoot": "1.0.0.0", - "authentication": { - "type": "Sas", - "properties": { - "sasUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" - } - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "artifactSourceName": "myArtifactSource", + "api-version": "2018-09-01-preview", + "artifactSourceInfo": { + "type": "Microsoft.DeploymentManager/artifactSources", + "location": "centralus", + "tags": {}, + "properties": { + "sourceType": "AzureStorage", + "artifactRoot": "1.0.0.0", + "authentication": { + "type": "Sas", + "properties": { + "sasUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" + } } - }, - "responses": { - "201": { - "body": { - "name": "myArtifactSource", - "type": "Microsoft.DeploymentManager/artifactSources", - "location": "centralus", - "tags": {}, - "properties": { - "sourceType": "AzureStorage", - "authentication": { - "type": "Sas", - "properties": { - "sasUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" - } - } - } + } + } + }, + "responses": { + "201": { + "body": { + "name": "myArtifactSource", + "type": "Microsoft.DeploymentManager/artifactSources", + "location": "centralus", + "tags": {}, + "properties": { + "sourceType": "AzureStorage", + "authentication": { + "type": "Sas", + "properties": { + "sasUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_delete.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_delete.json index 02a8883c88b8..f54fbd95c977 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_delete.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_delete.json @@ -1,12 +1,12 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "artifactSourceName": "myArtifactSource", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "artifactSourceName": "myArtifactSource", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_get.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_get.json index 400d373fdda2..d617ffb2e601 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_get.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/artifactsource_get.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "artifactSourceName": "myArtifactSource", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": { - "body": { - "name": "myArtifactSource", - "type": "Microsoft.DeploymentManager/artifactSources", - "location": "centralus", - "tags": {}, - "properties": { - "sourceType": "AzureStorage", - "authentication": { - "type": "Sas", - "properties": { - "sasUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" - } - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "artifactSourceName": "myArtifactSource", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": { + "body": { + "name": "myArtifactSource", + "type": "Microsoft.DeploymentManager/artifactSources", + "location": "centralus", + "tags": {}, + "properties": { + "sourceType": "AzureStorage", + "authentication": { + "type": "Sas", + "properties": { + "sasUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/operations_get.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/operations_get.json index 9ee5c60ce0d7..9f0fdd2fad40 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/operations_get.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/operations_get.json @@ -1,165 +1,165 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": { - "body": [ - { - "name": "Microsoft.DeploymentManager/serviceTopologies/read", - "display": { - "provider": "Azure Deployment Manager", - "resource": "ServiceTopology", - "operation": "View service topology", - "description": "View the properties of a service topology" - } - }, - { - "name": "Microsoft.DeploymentManager/serviceTopologies/write", - "display": { - "provider": "Azure Deployment Manager", - "resource": "ServiceTopology", - "operation": "Update the service topology", - "description": "Create a new topology or update the properties of an existing topology" - } - }, - { - "name": "Microsoft.DeploymentManager/serviceTopologies/delete", - "display": { - "provider": "Azure Deployment Manager", - "resource": "ServiceTopology", - "operation": "Delete service topology", - "description": "Deletes an existing topology." - } - }, - { - "name": "Microsoft.DeploymentManager/serviceTopologies/services/read", - "display": { - "provider": "Azure Deployment Manager", - "resource": "Service", - "operation": "View service in a topology", - "description": "View the properties of a service in a service topology" - } - }, - { - "name": "Microsoft.DeploymentManager/serviceTopologies/services/write", - "display": { - "provider": "Azure Deployment Manager", - "resource": "Service", - "operation": "Update the service in a topology", - "description": "Create a new service or update the properties of an existing service" - } - }, - { - "name": "Microsoft.DeploymentManager/serviceTopologies/services/delete", - "display": { - "provider": "Azure Deployment Manager", - "resource": "Service", - "operation": "Delete service", - "description": "Deletes an existing service in a service topology." - } - }, - { - "name": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits/read", - "display": { - "provider": "Azure Deployment Manager", - "resource": "ServiceUnit", - "operation": "View service unit", - "description": "View the properties of a service unit" - } - }, - { - "name": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits/write", - "display": { - "provider": "Azure Deployment Manager", - "resource": "ServiceUnit", - "operation": "Update the service unit", - "description": "Create a new service unit or update the properties of an existing service unit" - } - }, - { - "name": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits/delete", - "display": { - "provider": "Azure Deployment Manager", - "resource": "ServiceUnit", - "operation": "Delete service unit", - "description": "Deletes an existing service unit." - } - }, - { - "name": "Microsoft.DeploymentManager/artifactSources/read", - "display": { - "provider": "Azure Deployment Manager", - "resource": "ArtifactSource", - "operation": "View artifact source", - "description": "View the properties of an artifact source." - } - }, - { - "name": "Microsoft.DeploymentManager/artifactSources/write", - "display": { - "provider": "Azure Deployment Manager", - "resource": "ArtifactSource", - "operation": "Update the artifact source", - "description": "Create a new artifact source or updates the properties of an existing artifact source." - } - }, - { - "name": "Microsoft.DeploymentManager/artifactSources/delete", - "display": { - "provider": "Azure Deployment Manager", - "resource": "ArtifactSource", - "operation": "Delete artifact source", - "description": "Deletes an existing artifact source." - } - }, - { - "name": "Microsoft.DeploymentManager/rollouts/read", - "display": { - "provider": "Azure Deployment Manager", - "resource": "Rollout", - "operation": "View rollout", - "description": "View the properties of rollout." - } - }, - { - "name": "Microsoft.DeploymentManager/rollouts/write", - "display": { - "provider": "Azure Deployment Manager", - "resource": "Rollout", - "operation": "Create or update a rollout.", - "description": "Create a new rollout or update an existing rollout." - } - }, - { - "name": "Microsoft.DeploymentManager/rollouts/restart", - "display": { - "provider": "Azure Deployment Manager", - "resource": "Rollout", - "operation": "Restart a rollout", - "description": "Restarts a failed rollout." - } - }, - { - "name": "Microsoft.DeploymentManager/rollouts/cancel", - "display": { - "provider": "Azure Deployment Manager", - "resource": "Rollout", - "operation": "Cancel a rollout", - "description": "Cancel a rollout in progress." - } - }, - { - "name": "Microsoft.DeploymentManager/rollouts/delete", - "display": { - "provider": "Azure Deployment Manager", - "resource": "Rollout", - "operation": "Delete rollout", - "description": "Deletes an existing rollout." - } - } - ] + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": { + "body": [ + { + "name": "Microsoft.DeploymentManager/serviceTopologies/read", + "display": { + "provider": "Azure Deployment Manager", + "resource": "ServiceTopology", + "operation": "View service topology", + "description": "View the properties of a service topology" + } + }, + { + "name": "Microsoft.DeploymentManager/serviceTopologies/write", + "display": { + "provider": "Azure Deployment Manager", + "resource": "ServiceTopology", + "operation": "Update the service topology", + "description": "Create a new topology or update the properties of an existing topology" + } + }, + { + "name": "Microsoft.DeploymentManager/serviceTopologies/delete", + "display": { + "provider": "Azure Deployment Manager", + "resource": "ServiceTopology", + "operation": "Delete service topology", + "description": "Deletes an existing topology." + } + }, + { + "name": "Microsoft.DeploymentManager/serviceTopologies/services/read", + "display": { + "provider": "Azure Deployment Manager", + "resource": "Service", + "operation": "View service in a topology", + "description": "View the properties of a service in a service topology" + } + }, + { + "name": "Microsoft.DeploymentManager/serviceTopologies/services/write", + "display": { + "provider": "Azure Deployment Manager", + "resource": "Service", + "operation": "Update the service in a topology", + "description": "Create a new service or update the properties of an existing service" + } + }, + { + "name": "Microsoft.DeploymentManager/serviceTopologies/services/delete", + "display": { + "provider": "Azure Deployment Manager", + "resource": "Service", + "operation": "Delete service", + "description": "Deletes an existing service in a service topology." + } + }, + { + "name": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits/read", + "display": { + "provider": "Azure Deployment Manager", + "resource": "ServiceUnit", + "operation": "View service unit", + "description": "View the properties of a service unit" + } + }, + { + "name": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits/write", + "display": { + "provider": "Azure Deployment Manager", + "resource": "ServiceUnit", + "operation": "Update the service unit", + "description": "Create a new service unit or update the properties of an existing service unit" + } + }, + { + "name": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits/delete", + "display": { + "provider": "Azure Deployment Manager", + "resource": "ServiceUnit", + "operation": "Delete service unit", + "description": "Deletes an existing service unit." + } + }, + { + "name": "Microsoft.DeploymentManager/artifactSources/read", + "display": { + "provider": "Azure Deployment Manager", + "resource": "ArtifactSource", + "operation": "View artifact source", + "description": "View the properties of an artifact source." + } + }, + { + "name": "Microsoft.DeploymentManager/artifactSources/write", + "display": { + "provider": "Azure Deployment Manager", + "resource": "ArtifactSource", + "operation": "Update the artifact source", + "description": "Create a new artifact source or updates the properties of an existing artifact source." + } + }, + { + "name": "Microsoft.DeploymentManager/artifactSources/delete", + "display": { + "provider": "Azure Deployment Manager", + "resource": "ArtifactSource", + "operation": "Delete artifact source", + "description": "Deletes an existing artifact source." + } + }, + { + "name": "Microsoft.DeploymentManager/rollouts/read", + "display": { + "provider": "Azure Deployment Manager", + "resource": "Rollout", + "operation": "View rollout", + "description": "View the properties of rollout." + } + }, + { + "name": "Microsoft.DeploymentManager/rollouts/write", + "display": { + "provider": "Azure Deployment Manager", + "resource": "Rollout", + "operation": "Create or update a rollout.", + "description": "Create a new rollout or update an existing rollout." + } + }, + { + "name": "Microsoft.DeploymentManager/rollouts/restart", + "display": { + "provider": "Azure Deployment Manager", + "resource": "Rollout", + "operation": "Restart a rollout", + "description": "Restarts a failed rollout." + } + }, + { + "name": "Microsoft.DeploymentManager/rollouts/cancel", + "display": { + "provider": "Azure Deployment Manager", + "resource": "Rollout", + "operation": "Cancel a rollout", + "description": "Cancel a rollout in progress." + } + }, + { + "name": "Microsoft.DeploymentManager/rollouts/delete", + "display": { + "provider": "Azure Deployment Manager", + "resource": "Rollout", + "operation": "Delete rollout", + "description": "Deletes an existing rollout." + } } + ] } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_createorupdate.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_createorupdate.json index 834710a4229b..ae49f2a3832d 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_createorupdate.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_createorupdate.json @@ -1,123 +1,123 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "rolloutName": "myRollout", - "api-version": "2018-09-01-preview", - "rolloutRequest": { - "type": "Microsoft.DeploymentManager/rollouts", - "location": "centralus", - "tags": {}, - "identity": { - "type": "userAssigned", - "identityIds": [ - "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity" - ] + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "rolloutName": "myRollout", + "api-version": "2018-09-01-preview", + "rolloutRequest": { + "type": "Microsoft.DeploymentManager/rollouts", + "location": "centralus", + "tags": {}, + "identity": { + "type": "userAssigned", + "identityIds": [ + "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity" + ] + }, + "properties": { + "buildVersion": "1.0.0.1", + "artifactSourceId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource", + "targetServiceTopologyId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology", + "stepGroups": [ + { + "name": "FirstRegion", + "preDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep1" + }, + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep2" + } + ], + "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'", + "postDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/postDeployStep1" + } + ] + }, + { + "name": "SecondRegion", + "preDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep3" + }, + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep4" + } + ], + "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'", + "postDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/postDeployStep5" + } + ], + "dependsOnStepGroups": [ + "FirstRegion" + ] + } + ] + } + } + }, + "responses": { + "201": { + "body": { + "name": "myRollout", + "type": "Microsoft.DeploymentManager/rollouts", + "location": "centralus", + "tags": {}, + "identity": { + "type": "userAssigned", + "identityIds": [ + "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity" + ] + }, + "properties": { + "buildVersion": "1.0.0.1", + "artifactSourceId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource", + "targetServiceTopologyId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology", + "stepGroups": [ + { + "name": "FirstRegion", + "preDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep1" + }, + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep2" + } + ], + "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'", + "postDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/postDeployStep1" + } + ] }, - "properties": { - "buildVersion": "1.0.0.1", - "artifactSourceId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource", - "targetServiceTopologyId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology", - "stepGroups": [ - { - "name": "FirstRegion", - "preDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep1" - }, - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep2" - } - ], - "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'", - "postDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/postDeployStep1" - } - ] - }, - { - "name": "SecondRegion", - "preDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep3" - }, - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep4" - } - ], - "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'", - "postDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/postDeployStep5" - } - ], - "dependsOnStepGroups": [ - "FirstRegion" - ] - } - ] - } - } - }, - "responses": { - "201": { - "body": { - "name": "myRollout", - "type": "Microsoft.DeploymentManager/rollouts", - "location": "centralus", - "tags": {}, - "identity": { - "type": "userAssigned", - "identityIds": [ - "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity" - ] + { + "name": "SecondRegion", + "preDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep3" }, - "properties": { - "buildVersion": "1.0.0.1", - "artifactSourceId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource", - "targetServiceTopologyId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology", - "stepGroups": [ - { - "name": "FirstRegion", - "preDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep1" - }, - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep2" - } - ], - "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'", - "postDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/postDeployStep1" - } - ] - }, - { - "name": "SecondRegion", - "preDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep3" - }, - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep4" - } - ], - "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'", - "postDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/postDeployStep5" - } - ], - "dependsOnStepGroups": [ - "FirstRegion" - ] - } - ] + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep4" + } + ], + "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'", + "postDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/postDeployStep5" } + ], + "dependsOnStepGroups": [ + "FirstRegion" + ] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_delete.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_delete.json index a95ff167b6ac..c98dc8b929c9 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_delete.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_delete.json @@ -1,12 +1,12 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "rolloutName": "myRollout", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "rolloutName": "myRollout", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_get.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_get.json index 60058f749e9c..0ff4939e9727 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_get.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_get.json @@ -1,124 +1,124 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "rolloutName": "myRollout", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": { - "body": { - "name": "myRollout", - "type": "Microsoft.DeploymentManager/rollouts", - "location": "centralus", - "tags": {}, - "identity": { - "type": "userAssigned", - "identityIds": [ - "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity" - ] + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "rolloutName": "myRollout", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": { + "body": { + "name": "myRollout", + "type": "Microsoft.DeploymentManager/rollouts", + "location": "centralus", + "tags": {}, + "identity": { + "type": "userAssigned", + "identityIds": [ + "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity" + ] + }, + "properties": { + "status": "Running", + "operationInfo": { + "startTime": "2018-08-28T03:33:56.386Z", + "retryAttempt": 0 + }, + "totalRetryAttempts": 0, + "buildVersion": "1.0.0.1", + "artifactSourceId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource", + "targetServiceTopologyId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology", + "stepGroups": [ + { + "name": "FirstRegion", + "preDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep1" }, - "properties": { - "status": "Running", - "operationInfo": { + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep2" + } + ], + "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'", + "postDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/postDeployStep1" + } + ] + }, + { + "name": "SecondRegion", + "preDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep3" + }, + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep4" + } + ], + "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'", + "postDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/postDeployStep5" + } + ], + "dependsOnStepGroups": [ + "FirstRegion" + ] + } + ], + "services": [ + { + "name": "myService1", + "targetSubscriptionId": "600c95c5-3ee5-44fe-b190-ca38a19adcd7", + "targetLocation": "centralus", + "serviceUnits": [ + { + "name": "myTopologyUni1", + "targetResourceGroup": "myDeploymentResourceGroup", + "deploymentMode": "Incremental", + "steps": [ + { + "name": "preDeploymentStep1", + "status": "succeeded", + "operationInfo": { "startTime": "2018-08-28T03:33:56.386Z", - "retryAttempt": 0 + "endTime": "2018-08-28T03:35:28.556Z" + } }, - "totalRetryAttempts": 0, - "buildVersion": "1.0.0.1", - "artifactSourceId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource", - "targetServiceTopologyId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology", - "stepGroups": [ - { - "name": "FirstRegion", - "preDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep1" - }, - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep2" - } - ], - "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'", - "postDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/postDeployStep1" - } - ] - }, - { - "name": "SecondRegion", - "preDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep3" - }, - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep4" - } - ], - "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'", - "postDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/postDeployStep5" - } - ], - "dependsOnStepGroups": [ - "FirstRegion" - ] - } - ], - "services": [ + { + "name": "preDeploymentStep2", + "status": "succeeded", + "operationInfo": { + "startTime": "2018-08-28T03:36:56.386Z", + "endTime": "2018-08-28T03:37:28.556Z" + } + }, + { + "name": "deploy", + "status": "running", + "operationInfo": { + "startTime": "2018-08-28T03:38:56.386Z", + "lastUpdatedTime": "2018-08-28T03:39:28.556Z" + }, + "resourceOperations": [ { - "name": "myService1", - "targetSubscriptionId": "600c95c5-3ee5-44fe-b190-ca38a19adcd7", - "targetLocation": "centralus", - "serviceUnits": [ - { - "name": "myTopologyUni1", - "targetResourceGroup": "myDeploymentResourceGroup", - "deploymentMode": "Incremental", - "steps": [ - { - "name": "preDeploymentStep1", - "status": "succeeded", - "operationInfo": { - "startTime": "2018-08-28T03:33:56.386Z", - "endTime": "2018-08-28T03:35:28.556Z" - } - }, - { - "name": "preDeploymentStep2", - "status": "succeeded", - "operationInfo": { - "startTime": "2018-08-28T03:36:56.386Z", - "endTime": "2018-08-28T03:37:28.556Z" - } - }, - { - "name": "deploy", - "status": "running", - "operationInfo": { - "startTime": "2018-08-28T03:38:56.386Z", - "lastUpdatedTime": "2018-08-28T03:39:28.556Z" - }, - "resourceOperations": [ - { - "resourceName": "keyVaultcentralus", - "operationId": "20FC5A21382DA306", - "resourceType": "Microsoft.KeyVault/vaults", - "provisioningState": "Succeeded", - "statusMessage": "", - "statusCode": "OK" - } - ] - } - ] - } - ] + "resourceName": "keyVaultcentralus", + "operationId": "20FC5A21382DA306", + "resourceType": "Microsoft.KeyVault/vaults", + "provisioningState": "Succeeded", + "statusMessage": "", + "statusCode": "OK" } - ] + ] + } + ] } + ] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_post_cancel.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_post_cancel.json index 604ee0c3a97b..5c5ad1cc9d98 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_post_cancel.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_post_cancel.json @@ -1,124 +1,124 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "rolloutName": "myRollout", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": { - "body": { - "name": "myRollout", - "type": "Microsoft.DeploymentManager/rollouts", - "location": "centralus", - "tags": {}, - "identity": { - "type": "userAssigned", - "identityIds": [ - "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity" - ] + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "rolloutName": "myRollout", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": { + "body": { + "name": "myRollout", + "type": "Microsoft.DeploymentManager/rollouts", + "location": "centralus", + "tags": {}, + "identity": { + "type": "userAssigned", + "identityIds": [ + "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity" + ] + }, + "properties": { + "status": "Canceling", + "operationInfo": { + "startTime": "2018-08-28T03:33:56.386Z", + "retryAttempt": 0 + }, + "totalRetryAttempts": 0, + "buildVersion": "1.0.0.1", + "artifactSourceId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource", + "targetServiceTopologyId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology", + "stepGroups": [ + { + "name": "FirstRegion", + "preDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep1" }, - "properties": { - "status": "Canceling", - "operationInfo": { + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep2" + } + ], + "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'", + "postDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/postDeployStep1" + } + ] + }, + { + "name": "SecondRegion", + "preDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep3" + }, + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep4" + } + ], + "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'", + "postDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/postDeployStep5" + } + ], + "dependsOnStepGroups": [ + "FirstRegion" + ] + } + ], + "services": [ + { + "name": "myService1", + "targetSubscriptionId": "600c95c5-3ee5-44fe-b190-ca38a19adcd7", + "targetLocation": "centralus", + "serviceUnits": [ + { + "name": "myTopologyUni1", + "targetResourceGroup": "myDeploymentResourceGroup", + "deploymentMode": "Incremental", + "steps": [ + { + "name": "preDeploymentStep1", + "status": "succeeded", + "operationInfo": { "startTime": "2018-08-28T03:33:56.386Z", - "retryAttempt": 0 + "endTime": "2018-08-28T03:35:28.556Z" + } }, - "totalRetryAttempts": 0, - "buildVersion": "1.0.0.1", - "artifactSourceId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource", - "targetServiceTopologyId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology", - "stepGroups": [ - { - "name": "FirstRegion", - "preDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep1" - }, - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep2" - } - ], - "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'", - "postDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/postDeployStep1" - } - ] - }, - { - "name": "SecondRegion", - "preDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep3" - }, - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep4" - } - ], - "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'", - "postDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/postDeployStep5" - } - ], - "dependsOnStepGroups": [ - "FirstRegion" - ] - } - ], - "services": [ + { + "name": "preDeploymentStep2", + "status": "succeeded", + "operationInfo": { + "startTime": "2018-08-28T03:36:56.386Z", + "endTime": "2018-08-28T03:37:28.556Z" + } + }, + { + "name": "deploy", + "status": "running", + "operationInfo": { + "startTime": "2018-08-28T03:38:56.386Z", + "lastUpdatedTime": "2018-08-28T03:39:28.556Z" + }, + "resourceOperations": [ { - "name": "myService1", - "targetSubscriptionId": "600c95c5-3ee5-44fe-b190-ca38a19adcd7", - "targetLocation": "centralus", - "serviceUnits": [ - { - "name": "myTopologyUni1", - "targetResourceGroup": "myDeploymentResourceGroup", - "deploymentMode": "Incremental", - "steps": [ - { - "name": "preDeploymentStep1", - "status": "succeeded", - "operationInfo": { - "startTime": "2018-08-28T03:33:56.386Z", - "endTime": "2018-08-28T03:35:28.556Z" - } - }, - { - "name": "preDeploymentStep2", - "status": "succeeded", - "operationInfo": { - "startTime": "2018-08-28T03:36:56.386Z", - "endTime": "2018-08-28T03:37:28.556Z" - } - }, - { - "name": "deploy", - "status": "running", - "operationInfo": { - "startTime": "2018-08-28T03:38:56.386Z", - "lastUpdatedTime": "2018-08-28T03:39:28.556Z" - }, - "resourceOperations": [ - { - "resourceName": "keyVaultcentralus", - "operationId": "20FC5A21382DA306", - "resourceType": "Microsoft.KeyVault/vaults", - "provisioningState": "Succeeded", - "statusMessage": "", - "statusCode": "OK" - } - ] - } - ] - } - ] + "resourceName": "keyVaultcentralus", + "operationId": "20FC5A21382DA306", + "resourceType": "Microsoft.KeyVault/vaults", + "provisioningState": "Succeeded", + "statusMessage": "", + "statusCode": "OK" } - ] + ] + } + ] } + ] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_post_restart.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_post_restart.json index 2e55939395c6..c30b9f3e5e2d 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_post_restart.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/rollout_post_restart.json @@ -1,75 +1,75 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "rolloutName": "myRollout", - "skipSucceeded": true, - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": { - "body": { - "name": "myRollout", - "type": "Microsoft.DeploymentManager/rollouts", - "location": "centralus", - "tags": {}, - "identity": { - "type": "userAssigned", - "identityIds": [ - "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity" - ] + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "rolloutName": "myRollout", + "skipSucceeded": true, + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": { + "body": { + "name": "myRollout", + "type": "Microsoft.DeploymentManager/rollouts", + "location": "centralus", + "tags": {}, + "identity": { + "type": "userAssigned", + "identityIds": [ + "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity" + ] + }, + "properties": { + "status": "Running", + "operationInfo": { + "startTime": "2018-08-28T03:33:56.386Z", + "retryAttempt": 1 + }, + "totalRetryAttempts": 1, + "buildVersion": "1.0.0.1", + "artifactSourceId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource", + "targetServiceTopologyId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology", + "stepGroups": [ + { + "name": "FirstRegion", + "preDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep1" }, - "properties": { - "status": "Running", - "operationInfo": { - "startTime": "2018-08-28T03:33:56.386Z", - "retryAttempt": 1 - }, - "totalRetryAttempts": 1, - "buildVersion": "1.0.0.1", - "artifactSourceId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource", - "targetServiceTopologyId": "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology", - "stepGroups": [ - { - "name": "FirstRegion", - "preDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep1" - }, - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep2" - } - ], - "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'", - "postDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/postDeployStep1" - } - ] - }, - { - "name": "SecondRegion", - "preDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep3" - }, - { - "stepId": "Microsoft.DeploymentManager/steps/preDeployStep4" - } - ], - "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'", - "postDeploymentSteps": [ - { - "stepId": "Microsoft.DeploymentManager/steps/postDeployStep5" - } - ], - "dependsOnStepGroups": [ - "FirstRegion" - ] - } - ] + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep2" } + ], + "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'", + "postDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/postDeployStep1" + } + ] + }, + { + "name": "SecondRegion", + "preDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep3" + }, + { + "stepId": "Microsoft.DeploymentManager/steps/preDeployStep4" + } + ], + "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'", + "postDeploymentSteps": [ + { + "stepId": "Microsoft.DeploymentManager/steps/postDeployStep5" + } + ], + "dependsOnStepGroups": [ + "FirstRegion" + ] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_createorupdate.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_createorupdate.json index 7e29c8e474dc..731c76610fa8 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_createorupdate.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_createorupdate.json @@ -1,32 +1,32 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "serviceName": "myService", - "api-version": "2018-09-01-preview", - "serviceInfo": { - "type": "Microsoft.DeploymentManager/serviceTopologies/services", - "location": "centralus", - "tags": {}, - "properties": { - "targetLocation": "centralus", - "targetSubscriptionId": "600c95c5-3ee5-44fe-b190-ca38a19adcd7" - } - } - }, - "responses": { - "201": { - "body": { - "name": "myService", - "type": "Microsoft.DeploymentManager/serviceTopologies/services", - "location": "centralus", - "tags": {}, - "properties": { - "targetLocation": "centralus", - "targetSubscriptionId": "600c95c5-3ee5-44fe-b190-ca38a19adcd7" - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "serviceName": "myService", + "api-version": "2018-09-01-preview", + "serviceInfo": { + "type": "Microsoft.DeploymentManager/serviceTopologies/services", + "location": "centralus", + "tags": {}, + "properties": { + "targetLocation": "centralus", + "targetSubscriptionId": "600c95c5-3ee5-44fe-b190-ca38a19adcd7" + } + } + }, + "responses": { + "201": { + "body": { + "name": "myService", + "type": "Microsoft.DeploymentManager/serviceTopologies/services", + "location": "centralus", + "tags": {}, + "properties": { + "targetLocation": "centralus", + "targetSubscriptionId": "600c95c5-3ee5-44fe-b190-ca38a19adcd7" } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_delete.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_delete.json index cc5f0520ecce..b038a2f1ca6b 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_delete.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_delete.json @@ -1,13 +1,13 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "serviceName": "myService", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "serviceName": "myService", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_get.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_get.json index bcfc0afc2790..7e24a6809f61 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_get.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/service_get.json @@ -1,23 +1,23 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "serviceName": "myService", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": { - "body": { - "name": "myService", - "type": "Microsoft.DeploymentManager/serviceTopologies/services", - "location": "centralus", - "tags": {}, - "properties": { - "targetLocation": "centralus", - "targetSubscriptionId": "600c95c5-3ee5-44fe-b190-ca38a19adcd7" - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "serviceName": "myService", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": { + "body": { + "name": "myService", + "type": "Microsoft.DeploymentManager/serviceTopologies/services", + "location": "centralus", + "tags": {}, + "properties": { + "targetLocation": "centralus", + "targetSubscriptionId": "600c95c5-3ee5-44fe-b190-ca38a19adcd7" } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_createorupdate.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_createorupdate.json index 04601e9dcd6c..f5987d3445e8 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_createorupdate.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_createorupdate.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "api-version": "2018-09-01-preview", - "serviceTopologyInfo": { - "type": "Microsoft.DeploymentManager/serviceTopologies", - "location": "centralus", - "tags": {}, - "properties": { - "artifactSourceId": "Microsoft.DeploymentManager/artifactSources/myArtifactSource" - } - } - }, - "responses": { - "201": { - "body": { - "name": "myTopology", - "type": "Microsoft.DeploymentManager/serviceTopologies", - "location": "centralus", - "tags": {}, - "properties": { - "artifactSourceId": "Microsoft.DeploymentManager/artifactSources/myArtifactSource" - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "api-version": "2018-09-01-preview", + "serviceTopologyInfo": { + "type": "Microsoft.DeploymentManager/serviceTopologies", + "location": "centralus", + "tags": {}, + "properties": { + "artifactSourceId": "Microsoft.DeploymentManager/artifactSources/myArtifactSource" + } + } + }, + "responses": { + "201": { + "body": { + "name": "myTopology", + "type": "Microsoft.DeploymentManager/serviceTopologies", + "location": "centralus", + "tags": {}, + "properties": { + "artifactSourceId": "Microsoft.DeploymentManager/artifactSources/myArtifactSource" } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_createorupdate_noartifactsource.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_createorupdate_noartifactsource.json index 1668c2fa1be6..f0084c906414 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_createorupdate_noartifactsource.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_createorupdate_noartifactsource.json @@ -1,27 +1,25 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "api-version": "2018-09-01-preview", - "serviceTopologyInfo": { - "type": "Microsoft.DeploymentManager/serviceTopologies", - "location": "centralus", - "tags": {}, - "properties": { - } - } - }, - "responses": { - "201": { - "body": { - "name": "myTopology", - "type": "Microsoft.DeploymentManager/serviceTopologies", - "location": "centralus", - "tags": {}, - "properties": { - } - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "api-version": "2018-09-01-preview", + "serviceTopologyInfo": { + "type": "Microsoft.DeploymentManager/serviceTopologies", + "location": "centralus", + "tags": {}, + "properties": {} } -} \ No newline at end of file + }, + "responses": { + "201": { + "body": { + "name": "myTopology", + "type": "Microsoft.DeploymentManager/serviceTopologies", + "location": "centralus", + "tags": {}, + "properties": {} + } + } + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_delete.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_delete.json index 8a2b35ec1a4f..33fd145d5ee2 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_delete.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_delete.json @@ -1,12 +1,12 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_get.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_get.json index 1d941924bceb..3a277209a73e 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_get.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/servicetopology_get.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": { - "body": { - "name": "myTopology", - "type": "Microsoft.DeploymentManager/serviceTopologies", - "location": "centralus", - "tags": {}, - "properties": { - "artifactSourceId": "Microsoft.DeploymentManager/artifactSources/myArtifactSource" - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": { + "body": { + "name": "myTopology", + "type": "Microsoft.DeploymentManager/serviceTopologies", + "location": "centralus", + "tags": {}, + "properties": { + "artifactSourceId": "Microsoft.DeploymentManager/artifactSources/myArtifactSource" } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_createorupdate.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_createorupdate.json index 24d43be1a856..d783e76b208f 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_createorupdate.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_createorupdate.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "serviceName": "myService", - "serviceUnitName": "myServiceUnit", - "api-version": "2018-09-01-preview", - "serviceUnitInfo": { - "type": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", - "location": "centralus", - "tags": {}, - "properties": { - "targetResourceGroup": "myDeploymentResourceGroup", - "deploymentMode": "Incremental", - "artifacts": { - "templateArtifactSourceRelativePath": "templates/myTopologyUnit.template.json", - "parametersArtifactSourceRelativePath": "parameter/myTopologyUnit.parameters.json" - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "serviceName": "myService", + "serviceUnitName": "myServiceUnit", + "api-version": "2018-09-01-preview", + "serviceUnitInfo": { + "type": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", + "location": "centralus", + "tags": {}, + "properties": { + "targetResourceGroup": "myDeploymentResourceGroup", + "deploymentMode": "Incremental", + "artifacts": { + "templateArtifactSourceRelativePath": "templates/myTopologyUnit.template.json", + "parametersArtifactSourceRelativePath": "parameter/myTopologyUnit.parameters.json" } - }, - "responses": { - "201": { - "body": { - "name": "myServiceUnit", - "type": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", - "location": "centralus", - "tags": {}, - "properties": { - "targetResourceGroup": "myDeploymentResourceGroup", - "deploymentMode": "Incremental", - "artifacts": { - "templateArtifactSourceRelativePath": "templates/myTopologyUnit.template.json", - "parametersArtifactSourceRelativePath": "parameter/myTopologyUnit.parameters.json" - } - } - } + } + } + }, + "responses": { + "201": { + "body": { + "name": "myServiceUnit", + "type": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", + "location": "centralus", + "tags": {}, + "properties": { + "targetResourceGroup": "myDeploymentResourceGroup", + "deploymentMode": "Incremental", + "artifacts": { + "templateArtifactSourceRelativePath": "templates/myTopologyUnit.template.json", + "parametersArtifactSourceRelativePath": "parameter/myTopologyUnit.parameters.json" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_createorupdate_noartifactsource.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_createorupdate_noartifactsource.json index fb5991eabd27..5bd26dac5071 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_createorupdate_noartifactsource.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_createorupdate_noartifactsource.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "serviceName": "myService", - "serviceUnitName": "myServiceUnit", - "api-version": "2018-09-01-preview", - "serviceUnitInfo": { - "type": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", - "location": "centralus", - "tags": {}, - "properties": { - "targetResourceGroup": "myDeploymentResourceGroup", - "deploymentMode": "Incremental", - "artifacts": { - "templateUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource/templates/myTopologyUnit.template.json?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D", - "parametersUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource/parameter/myTopologyUnit.parameters.json?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "serviceName": "myService", + "serviceUnitName": "myServiceUnit", + "api-version": "2018-09-01-preview", + "serviceUnitInfo": { + "type": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", + "location": "centralus", + "tags": {}, + "properties": { + "targetResourceGroup": "myDeploymentResourceGroup", + "deploymentMode": "Incremental", + "artifacts": { + "templateUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource/templates/myTopologyUnit.template.json?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D", + "parametersUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource/parameter/myTopologyUnit.parameters.json?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" } - }, - "responses": { - "201": { - "body": { - "name": "myServiceUnit", - "type": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", - "location": "centralus", - "tags": {}, - "properties": { - "targetResourceGroup": "myDeploymentResourceGroup", - "deploymentMode": "Incremental", - "artifacts": { - "templateUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource/templates/myTopologyUnit.template.json?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D", - "parametersUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource/parameter/myTopologyUnit.parameters.json?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" - } - } - } + } + } + }, + "responses": { + "201": { + "body": { + "name": "myServiceUnit", + "type": "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", + "location": "centralus", + "tags": {}, + "properties": { + "targetResourceGroup": "myDeploymentResourceGroup", + "deploymentMode": "Incremental", + "artifacts": { + "templateUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource/templates/myTopologyUnit.template.json?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D", + "parametersUri": "https://mystorageaccount.blob.core.windows.net/myartifactsource/parameter/myTopologyUnit.parameters.json?st=2018-07-07T14%3A10%3A00Z&se=2019-12-31T15%3A10%3A00Z&sp=rl&sv=2017-04-17&sr=c&sig=Yh2SoJ1NhhLRwCLln7de%2Fkabcdefghijklmno5sWEIk%3D" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_delete.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_delete.json index 0a3aa3e33d04..eabb7ab834fa 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_delete.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_delete.json @@ -1,14 +1,14 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "serviceName": "myService", - "serviceUnitName": "myServiceUnit", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "serviceName": "myService", + "serviceUnitName": "myServiceUnit", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_get.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_get.json index 62e125403fbc..3af095cbfb23 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_get.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/serviceunit_get.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "serviceTopologyName": "myTopology", - "serviceName": "myService", - "serviceUnitName": "myServiceUnit", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": { - "body": { - "name": "myServiceUnit", - "type": "Microsoft.DeploymentManager/servicetopologies/services/serviceunits", - "location": "centralus", - "tags": {}, - "properties": { - "targetResourceGroup": "myDeploymentResourceGroup", - "deploymentMode": "Incremental", - "artifacts": { - "templateArtifactSourceRelativePath": "templates/myTopologyUnit.template.json", - "parametersArtifactSourceRelativePath": "parameter/myTopologyUnit.parameters.json" - } - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "serviceTopologyName": "myTopology", + "serviceName": "myService", + "serviceUnitName": "myServiceUnit", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": { + "body": { + "name": "myServiceUnit", + "type": "Microsoft.DeploymentManager/servicetopologies/services/serviceunits", + "location": "centralus", + "tags": {}, + "properties": { + "targetResourceGroup": "myDeploymentResourceGroup", + "deploymentMode": "Incremental", + "artifacts": { + "templateArtifactSourceRelativePath": "templates/myTopologyUnit.template.json", + "parametersArtifactSourceRelativePath": "parameter/myTopologyUnit.parameters.json" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_createorupdate.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_createorupdate.json index 786d85c933d2..040a478071a3 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_createorupdate.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_createorupdate.json @@ -1,35 +1,35 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "stepName": "deploymentStep1", - "api-version": "2018-09-01-preview", - "stepInfo": { - "type": "Microsoft.DeploymentManager/steps", - "location": "centralus", - "tags": {}, - "properties": { - "stepType": "Wait", - "attributes": { - "duration": "PT20M" - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "stepName": "deploymentStep1", + "api-version": "2018-09-01-preview", + "stepInfo": { + "type": "Microsoft.DeploymentManager/steps", + "location": "centralus", + "tags": {}, + "properties": { + "stepType": "Wait", + "attributes": { + "duration": "PT20M" } - }, - "responses": { - "201": { - "body": { - "name": "deploymentStep1", - "type": "Microsoft.DeploymentManager/steps", - "location": "centralus", - "tags": {}, - "properties": { - "stepType": "Wait", - "attributes": { - "duration": "PT20M" - } - } - } + } + } + }, + "responses": { + "201": { + "body": { + "name": "deploymentStep1", + "type": "Microsoft.DeploymentManager/steps", + "location": "centralus", + "tags": {}, + "properties": { + "stepType": "Wait", + "attributes": { + "duration": "PT20M" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_delete.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_delete.json index eec34d8b74de..9ea55bc13fe5 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_delete.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_delete.json @@ -1,12 +1,12 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "stepName": "deploymentStep1", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "stepName": "deploymentStep1", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_get.json b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_get.json index 5781eaf246a0..166bdff57786 100644 --- a/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_get.json +++ b/specification/deploymentmanager/resource-manager/Microsoft.DeploymentManager/preview/2018-09-01-preview/examples/step_get.json @@ -1,24 +1,24 @@ { - "parameters": { - "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", - "resourceGroupName": "myResourceGroup", - "stepName": "deploymentStep1", - "api-version": "2018-09-01-preview" - }, - "responses": { - "200": { - "body": { - "name": "deploymentStep1", - "type": "Microsoft.DeploymentManager/steps", - "location": "centralus", - "tags": {}, - "properties": { - "stepType": "Wait", - "attributes": { - "duration": "PT20M" - } - } - } + "parameters": { + "subscriptionId": "caac1590-e859-444f-a9e0-62091c0f5929", + "resourceGroupName": "myResourceGroup", + "stepName": "deploymentStep1", + "api-version": "2018-09-01-preview" + }, + "responses": { + "200": { + "body": { + "name": "deploymentStep1", + "type": "Microsoft.DeploymentManager/steps", + "location": "centralus", + "tags": {}, + "properties": { + "stepType": "Wait", + "attributes": { + "duration": "PT20M" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/devspaces.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/devspaces.json index 1bb84e692935..a39810c4acb0 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/devspaces.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/devspaces.json @@ -786,4 +786,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ContainerHostMappingsGetContainerHostMapping_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ContainerHostMappingsGetContainerHostMapping_example.json index 3e2362fca9e3..23e38a3aabb8 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ContainerHostMappingsGetContainerHostMapping_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ContainerHostMappingsGetContainerHostMapping_example.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersCreate_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersCreate_example.json index 2a21085465af..5798550f09bf 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersCreate_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersCreate_example.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersDelete_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersDelete_example.json index 187f17b7a0b1..ea383f5e5396 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersDelete_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersDelete_example.json @@ -14,4 +14,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersGet_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersGet_example.json index f6deb02784f9..654fe322419b 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersGet_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersGet_example.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersListByResourceGroup_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersListByResourceGroup_example.json index 06ec0347ede0..4a352ae92104 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersListByResourceGroup_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersListByResourceGroup_example.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersListConnectionDetails_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersListConnectionDetails_example.json index 5ef702bf8155..ca66caf7b7cf 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersListConnectionDetails_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersListConnectionDetails_example.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersList_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersList_example.json index 7c34aed6946e..be06d920d7a1 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersList_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersList_example.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersUpdate_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersUpdate_example.json index fe993c75c0c1..3aad3140b22e 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersUpdate_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2018-06-01-preview/examples/ControllersUpdate_example.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/devspaces.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/devspaces.json index 62bf3c12dfcd..193c945e342e 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/devspaces.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/devspaces.json @@ -1,781 +1,781 @@ { - "swagger": "2.0", - "info": { - "version": "2019-01-01-preview", - "title": "DevSpacesManagement", - "description": "Dev Spaces REST API" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/locations/{location}/checkContainerHostMapping": { - "post": { - "tags": [ - "ContainerHostMappings" - ], - "summary": "Returns container host mapping object for a container host resource ID if an associated controller exists.", - "operationId": "ContainerHostMappings_GetContainerHostMapping", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "containerHostMapping", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ContainerHostMapping" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "name": "location", - "in": "path", - "description": "Location of the container host.", - "required": true, - "type": "string" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": {} - } + "swagger": "2.0", + "info": { + "version": "2019-01-01-preview", + "title": "DevSpacesManagement", + "description": "Dev Spaces REST API" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/locations/{location}/checkContainerHostMapping": { + "post": { + "tags": [ + "ContainerHostMappings" + ], + "summary": "Returns container host mapping object for a container host resource ID if an associated controller exists.", + "operationId": "ContainerHostMappings_GetContainerHostMapping", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" }, - "x-ms-examples": { - "ContainerHostMappingsGetContainerHostMapping": { - "$ref": "./examples/ContainerHostMappingsGetContainerHostMapping_example.json" + { + "name": "containerHostMapping", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ContainerHostMapping" } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "name": "location", + "in": "path", + "description": "Location of the container host.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": {} + } + }, + "x-ms-examples": { + "ContainerHostMappingsGetContainerHostMapping": { + "$ref": "./examples/ContainerHostMappingsGetContainerHostMapping_example.json" } } - }, - "/providers/Microsoft.DevSpaces/operations": { - "get": { - "tags": [ - "Operations" - ], - "summary": "Lists operations for the resource provider.", - "description": "Lists all the supported operations by the Microsoft.DevSpaces resource provider along with their description.", - "operationId": "Operations_List", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request was successful; response contains the list of operations under Microsoft.DevSpaces resource provider.", - "schema": { - "$ref": "#/definitions/ResourceProviderOperationList" - } + } + }, + "/providers/Microsoft.DevSpaces/operations": { + "get": { + "tags": [ + "Operations" + ], + "summary": "Lists operations for the resource provider.", + "description": "Lists all the supported operations by the Microsoft.DevSpaces resource provider along with their description.", + "operationId": "Operations_List", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request was successful; response contains the list of operations under Microsoft.DevSpaces resource provider.", + "schema": { + "$ref": "#/definitions/ResourceProviderOperationList" } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}": { - "get": { - "tags": [ - "Controllers" - ], - "summary": "Gets an Azure Dev Spaces Controller.", - "description": "Gets the properties for an Azure Dev Spaces Controller.", - "operationId": "Controllers_Get", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/NameParameter" - } - ], - "responses": { - "200": { - "description": "The request was successful; response contains the Azure Dev Spaces Controller.", - "schema": { - "$ref": "#/definitions/Controller" - } - }, - "default": { - "description": "Error response describing the reason for operation failure. 404 - NotFound(Azure Dev Spaces Controller doesn't exist.)", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}": { + "get": { + "tags": [ + "Controllers" + ], + "summary": "Gets an Azure Dev Spaces Controller.", + "description": "Gets the properties for an Azure Dev Spaces Controller.", + "operationId": "Controllers_Get", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/NameParameter" + } + ], + "responses": { + "200": { + "description": "The request was successful; response contains the Azure Dev Spaces Controller.", + "schema": { + "$ref": "#/definitions/Controller" } }, - "x-ms-examples": { - "ControllersGet": { - "$ref": "./examples/ControllersGet_example.json" + "default": { + "description": "Error response describing the reason for operation failure. 404 - NotFound(Azure Dev Spaces Controller doesn't exist.)", + "schema": { + "$ref": "#/definitions/ErrorResponse" } } }, - "put": { - "tags": [ - "Controllers" - ], - "summary": "Creates an Azure Dev Spaces Controller.", - "description": "Creates an Azure Dev Spaces Controller with the specified create parameters.", - "operationId": "Controllers_Create", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/NameParameter" - }, - { - "name": "controller", - "in": "body", - "description": "Controller create parameters.", - "required": true, - "schema": { - "$ref": "#/definitions/Controller" - } - } - ], - "responses": { - "200": { - "description": "The request was successful; response contains the created Azure Dev Spaces Controller .", - "schema": { - "$ref": "#/definitions/Controller" - } - }, - "201": { - "description": "The request was successful; Azure Dev Spaces Controller is being created.", - "schema": { - "$ref": "#/definitions/Controller" - } - }, - "default": { - "description": "Error response describing the reason for operation failure. 404 - NotFound(Azure Dev Spaces Controller doesn't exist.), 400 - BadRequest(One or more creation parameters are invalid.)", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } + "x-ms-examples": { + "ControllersGet": { + "$ref": "./examples/ControllersGet_example.json" + } + } + }, + "put": { + "tags": [ + "Controllers" + ], + "summary": "Creates an Azure Dev Spaces Controller.", + "description": "Creates an Azure Dev Spaces Controller with the specified create parameters.", + "operationId": "Controllers_Create", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" }, - "x-ms-examples": { - "ControllersCreate": { - "$ref": "./examples/ControllersCreate_example.json" - } + { + "$ref": "#/parameters/SubscriptionIdParameter" }, - "x-ms-long-running-operation": true - }, - "delete": { - "tags": [ - "Controllers" - ], - "summary": "Deletes an Azure Dev Spaces Controller.", - "description": "Deletes an existing Azure Dev Spaces Controller.", - "operationId": "Controllers_Delete", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/NameParameter" - } - ], - "responses": { - "200": { - "description": "The request was successful; the Azure Dev Spaces Controller is deleted." - }, - "202": { - "description": "The request was successful; Azure Dev Spaces Controller is being deleted." - }, - "204": { - "description": "The request was successful; Azure Dev Spaces Controller does not exist." - }, - "default": { - "description": "Error response describing the reason for operation failure. 409 - Conflict(Azure Dev Spaces Controller is already getting deleted.)", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } + { + "$ref": "#/parameters/ResourceGroupParameter" }, - "x-ms-examples": { - "ControllersDelete": { - "$ref": "./examples/ControllersDelete_example.json" - } + { + "$ref": "#/parameters/NameParameter" }, - "x-ms-long-running-operation": true - }, - "patch": { - "tags": [ - "Controllers" - ], - "summary": "Updates an Azure Dev Spaces Controller.", - "description": "Updates the properties of an existing Azure Dev Spaces Controller with the specified update parameters.", - "operationId": "Controllers_Update", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/NameParameter" - }, - { - "name": "controllerUpdateParameters", - "in": "body", - "description": "Parameters for updating the Azure Dev Spaces Controller.", - "required": true, - "schema": { - "$ref": "#/definitions/ControllerUpdateParameters" - } + { + "name": "controller", + "in": "body", + "description": "Controller create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/Controller" } - ], - "responses": { - "200": { - "description": "The request was successful; response contains the updated Azure Dev Spaces Controller .", - "schema": { - "$ref": "#/definitions/Controller" - } - }, - "default": { - "description": "Error response describing the reason for operation failure. 404 - NotFound(Azure Dev Spaces Controller doesn't exist.), 400 - BadRequest(One or more update parameters are invalid.)", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } + } + ], + "responses": { + "200": { + "description": "The request was successful; response contains the created Azure Dev Spaces Controller .", + "schema": { + "$ref": "#/definitions/Controller" } }, - "x-ms-examples": { - "ControllersUpdate": { - "$ref": "./examples/ControllersUpdate_example.json" + "201": { + "description": "The request was successful; Azure Dev Spaces Controller is being created.", + "schema": { + "$ref": "#/definitions/Controller" + } + }, + "default": { + "description": "Error response describing the reason for operation failure. 404 - NotFound(Azure Dev Spaces Controller doesn't exist.), 400 - BadRequest(One or more creation parameters are invalid.)", + "schema": { + "$ref": "#/definitions/ErrorResponse" } } - } + }, + "x-ms-examples": { + "ControllersCreate": { + "$ref": "./examples/ControllersCreate_example.json" + } + }, + "x-ms-long-running-operation": true }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers": { - "get": { - "tags": [ - "Controllers" - ], - "summary": "Lists the Azure Dev Spaces Controllers in a resource group.", - "description": "Lists all the Azure Dev Spaces Controllers with their properties in the specified resource group and subscription.", - "operationId": "Controllers_ListByResourceGroup", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - } - ], - "responses": { - "200": { - "description": "The request was successful; response contains the list of Azure Dev Spaces Controllers in the resource group.", - "schema": { - "$ref": "#/definitions/ControllerList" - } - }, - "default": { - "description": "Error response describing the reason for operation failure.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } + "delete": { + "tags": [ + "Controllers" + ], + "summary": "Deletes an Azure Dev Spaces Controller.", + "description": "Deletes an existing Azure Dev Spaces Controller.", + "operationId": "Controllers_Delete", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" }, - "x-ms-examples": { - "ControllersListByResourceGroup": { - "$ref": "./examples/ControllersListByResourceGroup_example.json" - } + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupParameter" }, - "x-ms-pageable": { - "nextLinkName": "nextLink" + { + "$ref": "#/parameters/NameParameter" } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.DevSpaces/controllers": { - "get": { - "tags": [ - "Controllers" - ], - "summary": "Lists the Azure Dev Spaces Controllers in a subscription.", - "description": "Lists all the Azure Dev Spaces Controllers with their properties in the subscription.", - "operationId": "Controllers_List", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "The request was successful; response contains the list of Azure Dev Spaces Controllers in the subscription.", - "schema": { - "$ref": "#/definitions/ControllerList" - } - }, - "default": { - "description": "Error response describing the reason for operation failure.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } + ], + "responses": { + "200": { + "description": "The request was successful; the Azure Dev Spaces Controller is deleted." }, - "x-ms-examples": { - "ControllersList": { - "$ref": "./examples/ControllersList_example.json" - } + "202": { + "description": "The request was successful; Azure Dev Spaces Controller is being deleted." }, - "x-ms-pageable": { - "nextLinkName": "nextLink" + "204": { + "description": "The request was successful; Azure Dev Spaces Controller does not exist." + }, + "default": { + "description": "Error response describing the reason for operation failure. 409 - Conflict(Azure Dev Spaces Controller is already getting deleted.)", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } } - } + }, + "x-ms-examples": { + "ControllersDelete": { + "$ref": "./examples/ControllersDelete_example.json" + } + }, + "x-ms-long-running-operation": true }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}/listConnectionDetails": { - "post": { - "tags": [ - "Controllers" - ], - "summary": "Lists connection details for an Azure Dev Spaces Controller.", - "description": "Lists connection details for the underlying container resources of an Azure Dev Spaces Controller.", - "operationId": "Controllers_ListConnectionDetails", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/NameParameter" + "patch": { + "tags": [ + "Controllers" + ], + "summary": "Updates an Azure Dev Spaces Controller.", + "description": "Updates the properties of an existing Azure Dev Spaces Controller with the specified update parameters.", + "operationId": "Controllers_Update", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/NameParameter" + }, + { + "name": "controllerUpdateParameters", + "in": "body", + "description": "Parameters for updating the Azure Dev Spaces Controller.", + "required": true, + "schema": { + "$ref": "#/definitions/ControllerUpdateParameters" } - ], - "responses": { - "200": { - "description": "The request was successful; response contains the list of connection details for the Azure Dev Spaces Controller .", - "schema": { - "$ref": "#/definitions/ControllerConnectionDetailsList" - } - }, - "default": { - "description": "Error response describing the reason for operation failure. 404 - NotFound(Azure Dev Spaces Controller doesn't exist.)", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } + } + ], + "responses": { + "200": { + "description": "The request was successful; response contains the updated Azure Dev Spaces Controller .", + "schema": { + "$ref": "#/definitions/Controller" } }, - "x-ms-examples": { - "ControllersListConnectionDetails": { - "$ref": "./examples/ControllersListConnectionDetails_example.json" + "default": { + "description": "Error response describing the reason for operation failure. 404 - NotFound(Azure Dev Spaces Controller doesn't exist.), 400 - BadRequest(One or more update parameters are invalid.)", + "schema": { + "$ref": "#/definitions/ErrorResponse" } } + }, + "x-ms-examples": { + "ControllersUpdate": { + "$ref": "./examples/ControllersUpdate_example.json" + } } } }, - "definitions": { - "ContainerHostMapping": { - "description": "Container host mapping object specifying the Container host resource ID and its associated Controller resource.", - "properties": { - "containerHostResourceId": { - "description": "ARM ID of the Container Host resource", - "type": "string" + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers": { + "get": { + "tags": [ + "Controllers" + ], + "summary": "Lists the Azure Dev Spaces Controllers in a resource group.", + "description": "Lists all the Azure Dev Spaces Controllers with their properties in the specified resource group and subscription.", + "operationId": "Controllers_ListByResourceGroup", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" }, - "mappedControllerResourceId": { - "description": "ARM ID of the mapped Controller resource", - "type": "string", - "readOnly": true - } - } - }, - "TrackedResource": { - "description": "The resource model definition for a ARM tracked top level resource.", - "allOf": [ { - "$ref": "#/definitions/Resource" + "$ref": "#/parameters/ResourceGroupParameter" } ], - "properties": { - "tags": { - "description": "Tags for the Azure resource.", - "type": "object", - "additionalProperties": { - "type": "string" - }, - "x-ms-mutability": [ - "read", - "create", - "update" - ] - }, - "location": { - "description": "Region where the Azure resource is located.", - "type": "string", - "x-ms-mutability": [ - "read", - "create" - ] - } - } - }, - "ResourceProviderOperationList": { - "properties": { - "value": { - "description": "Resource provider operations list.", - "type": "array", - "items": { - "$ref": "#/definitions/ResourceProviderOperationDefinition" + "responses": { + "200": { + "description": "The request was successful; response contains the list of Azure Dev Spaces Controllers in the resource group.", + "schema": { + "$ref": "#/definitions/ControllerList" } }, - "nextLink": { - "description": "The URI that can be used to request the next page for list of Azure operations.", - "type": "string", - "readOnly": true - } - } - }, - "ResourceProviderOperationDefinition": { - "properties": { - "name": { - "description": "Resource provider operation name.", - "type": "string" - }, - "display": { - "$ref": "#/definitions/ResourceProviderOperationDisplay" + "default": { + "description": "Error response describing the reason for operation failure.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } } - } - }, - "ResourceProviderOperationDisplay": { - "properties": { - "provider": { - "description": "Name of the resource provider.", - "type": "string" - }, - "resource": { - "description": "Name of the resource type.", - "type": "string" - }, - "operation": { - "description": "Name of the resource provider operation.", - "type": "string" - }, - "description": { - "description": "Description of the resource provider operation.", - "type": "string" + }, + "x-ms-examples": { + "ControllersListByResourceGroup": { + "$ref": "./examples/ControllersListByResourceGroup_example.json" } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } - }, - "Controller": { - "required": [ - "properties", - "sku", - "location" + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DevSpaces/controllers": { + "get": { + "tags": [ + "Controllers" ], - "allOf": [ + "summary": "Lists the Azure Dev Spaces Controllers in a subscription.", + "description": "Lists all the Azure Dev Spaces Controllers with their properties in the subscription.", + "operationId": "Controllers_List", + "parameters": [ { - "$ref": "#/definitions/TrackedResource" + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" } ], - "properties": { - "properties": { - "$ref": "#/definitions/ControllerProperties", - "x-ms-client-flatten": true + "responses": { + "200": { + "description": "The request was successful; response contains the list of Azure Dev Spaces Controllers in the subscription.", + "schema": { + "$ref": "#/definitions/ControllerList" + } }, - "sku": { - "$ref": "#/definitions/Sku" + "default": { + "description": "Error response describing the reason for operation failure.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } } + }, + "x-ms-examples": { + "ControllersList": { + "$ref": "./examples/ControllersList_example.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } - }, - "ControllerProperties": { - "required": [ - "targetContainerHostResourceId", - "targetContainerHostCredentialsBase64" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}/listConnectionDetails": { + "post": { + "tags": [ + "Controllers" ], - "properties": { - "provisioningState": { - "description": "Provisioning state of the Azure Dev Spaces Controller.", - "enum": [ - "Succeeded", - "Failed", - "Canceled", - "Updating", - "Creating", - "Deleting", - "Deleted" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "ProvisioningState", - "modelAsString": true - } + "summary": "Lists connection details for an Azure Dev Spaces Controller.", + "description": "Lists connection details for the underlying container resources of an Azure Dev Spaces Controller.", + "operationId": "Controllers_ListConnectionDetails", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupParameter" }, - "hostSuffix": { - "description": "DNS suffix for public endpoints running in the Azure Dev Spaces Controller.", - "type": "string", - "readOnly": true - }, - "dataPlaneFqdn": { - "description": "DNS name for accessing DataPlane services", - "type": "string", - "readOnly": true - }, - "targetContainerHostResourceId": { - "description": "Resource ID of the target container host", - "type": "string", - "x-ms-mutability": [ - "read", - "create" - ] - }, - "targetContainerHostCredentialsBase64": { - "description": "Credentials of the target container host (base64).", - "type": "string", - "x-ms-mutability": [ - "create" - ] + { + "$ref": "#/parameters/NameParameter" } - } - }, - "Sku": { - "description": "Model representing SKU for Azure Dev Spaces Controller.", - "required": [ - "name" ], - "properties": { - "name": { - "description": "The name of the SKU for Azure Dev Spaces Controller.", - "enum": [ - "S1" - ], - "type": "string", - "x-ms-enum": { - "name": "SkuName", - "modelAsString": true + "responses": { + "200": { + "description": "The request was successful; response contains the list of connection details for the Azure Dev Spaces Controller .", + "schema": { + "$ref": "#/definitions/ControllerConnectionDetailsList" } }, - "tier": { - "description": "The tier of the SKU for Azure Dev Spaces Controller.", - "enum": [ - "Standard" - ], - "type": "string", - "x-ms-enum": { - "name": "SkuTier", - "modelAsString": true + "default": { + "description": "Error response describing the reason for operation failure. 404 - NotFound(Azure Dev Spaces Controller doesn't exist.)", + "schema": { + "$ref": "#/definitions/ErrorResponse" } } - } - }, - "ControllerUpdateParameters": { - "description": "Parameters for updating an Azure Dev Spaces Controller.", - "properties": { - "tags": { - "description": "Tags for the Azure Dev Spaces Controller.", - "additionalProperties": { - "type": "string" - } + }, + "x-ms-examples": { + "ControllersListConnectionDetails": { + "$ref": "./examples/ControllersListConnectionDetails_example.json" } } - }, - "ControllerList": { - "properties": { - "value": { - "description": "List of Azure Dev Spaces Controllers.", - "type": "array", - "items": { - "$ref": "#/definitions/Controller" - } - }, - "nextLink": { - "description": "The URI that can be used to request the next page for list of Azure Dev Spaces Controllers.", - "type": "string", - "readOnly": true - } + } + } + }, + "definitions": { + "ContainerHostMapping": { + "description": "Container host mapping object specifying the Container host resource ID and its associated Controller resource.", + "properties": { + "containerHostResourceId": { + "description": "ARM ID of the Container Host resource", + "type": "string" + }, + "mappedControllerResourceId": { + "description": "ARM ID of the mapped Controller resource", + "type": "string", + "readOnly": true } - }, - "ControllerConnectionDetailsList": { - "properties": { - "connectionDetailsList": { - "description": "List of Azure Dev Spaces Controller connection details.", - "type": "array", - "items": { - "$ref": "#/definitions/ControllerConnectionDetails" - } - } + } + }, + "TrackedResource": { + "description": "The resource model definition for a ARM tracked top level resource.", + "allOf": [ + { + "$ref": "#/definitions/Resource" } - }, - "ControllerConnectionDetails": { - "properties": { - "authKey": { - "description": "Authentication key for communicating with services.", - "type": "string", - "readOnly": true + ], + "properties": { + "tags": { + "description": "Tags for the Azure resource.", + "type": "object", + "additionalProperties": { + "type": "string" }, - "orchestratorSpecificConnectionDetails": { - "$ref": "#/definitions/OrchestratorSpecificConnectionDetails" + "x-ms-mutability": [ + "read", + "create", + "update" + ] + }, + "location": { + "description": "Region where the Azure resource is located.", + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + } + } + }, + "ResourceProviderOperationList": { + "properties": { + "value": { + "description": "Resource provider operations list.", + "type": "array", + "items": { + "$ref": "#/definitions/ResourceProviderOperationDefinition" } + }, + "nextLink": { + "description": "The URI that can be used to request the next page for list of Azure operations.", + "type": "string", + "readOnly": true } - }, - "OrchestratorSpecificConnectionDetails": { - "description": "Base class for types that supply values used to connect to container orchestrators", + } + }, + "ResourceProviderOperationDefinition": { + "properties": { + "name": { + "description": "Resource provider operation name.", + "type": "string" + }, + "display": { + "$ref": "#/definitions/ResourceProviderOperationDisplay" + } + } + }, + "ResourceProviderOperationDisplay": { + "properties": { + "provider": { + "description": "Name of the resource provider.", + "type": "string" + }, + "resource": { + "description": "Name of the resource type.", + "type": "string" + }, + "operation": { + "description": "Name of the resource provider operation.", + "type": "string" + }, + "description": { + "description": "Description of the resource provider operation.", + "type": "string" + } + } + }, + "Controller": { + "required": [ + "properties", + "sku", + "location" + ], + "allOf": [ + { + "$ref": "#/definitions/TrackedResource" + } + ], + "properties": { "properties": { - "instanceType": { - "description": "Gets the Instance type.", - "type": "string", - "readOnly": true + "$ref": "#/definitions/ControllerProperties", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/Sku" + } + } + }, + "ControllerProperties": { + "required": [ + "targetContainerHostResourceId", + "targetContainerHostCredentialsBase64" + ], + "properties": { + "provisioningState": { + "description": "Provisioning state of the Azure Dev Spaces Controller.", + "enum": [ + "Succeeded", + "Failed", + "Canceled", + "Updating", + "Creating", + "Deleting", + "Deleted" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": true } }, - "discriminator": "instanceType" - }, - "Resource": { - "description": "An Azure resource.", - "properties": { - "id": { - "description": "Fully qualified resource Id for the resource.", - "type": "string", - "readOnly": true - }, - "name": { - "description": "The name of the resource.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "The type of the resource.", - "type": "string", - "readOnly": true + "hostSuffix": { + "description": "DNS suffix for public endpoints running in the Azure Dev Spaces Controller.", + "type": "string", + "readOnly": true + }, + "dataPlaneFqdn": { + "description": "DNS name for accessing DataPlane services", + "type": "string", + "readOnly": true + }, + "targetContainerHostResourceId": { + "description": "Resource ID of the target container host", + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "targetContainerHostCredentialsBase64": { + "description": "Credentials of the target container host (base64).", + "type": "string", + "x-ms-mutability": [ + "create" + ] + } + } + }, + "Sku": { + "description": "Model representing SKU for Azure Dev Spaces Controller.", + "required": [ + "name" + ], + "properties": { + "name": { + "description": "The name of the SKU for Azure Dev Spaces Controller.", + "enum": [ + "S1" + ], + "type": "string", + "x-ms-enum": { + "name": "SkuName", + "modelAsString": true } }, - "x-ms-azure-resource": true - }, - "KubernetesConnectionDetails": { - "description": "Contains information used to connect to a Kubernetes cluster", - "allOf": [ - { - "$ref": "#/definitions/OrchestratorSpecificConnectionDetails" + "tier": { + "description": "The tier of the SKU for Azure Dev Spaces Controller.", + "enum": [ + "Standard" + ], + "type": "string", + "x-ms-enum": { + "name": "SkuTier", + "modelAsString": true } - ], - "properties": { - "kubeConfig": { - "description": "Gets the kubeconfig for the cluster.", + } + } + }, + "ControllerUpdateParameters": { + "description": "Parameters for updating an Azure Dev Spaces Controller.", + "properties": { + "tags": { + "description": "Tags for the Azure Dev Spaces Controller.", + "additionalProperties": { "type": "string" } - }, - "x-ms-discriminator-value": "Kubernetes" - }, - "ErrorResponse": { - "description": "Error response indicates that the service is not able to process the incoming request. The reason is provided in the error message.", - "properties": { - "error": { - "$ref": "#/definitions/ErrorDetails", - "description": "The details of the error." + } + } + }, + "ControllerList": { + "properties": { + "value": { + "description": "List of Azure Dev Spaces Controllers.", + "type": "array", + "items": { + "$ref": "#/definitions/Controller" } + }, + "nextLink": { + "description": "The URI that can be used to request the next page for list of Azure Dev Spaces Controllers.", + "type": "string", + "readOnly": true } - }, - "ErrorDetails": { - "properties": { - "code": { - "description": "Status code for the error.", - "type": "string", - "readOnly": true - }, - "message": { - "description": "Error message describing the error in detail.", - "type": "string", - "readOnly": true - }, - "target": { - "description": "The target of the particular error.", - "type": "string", - "readOnly": true + } + }, + "ControllerConnectionDetailsList": { + "properties": { + "connectionDetailsList": { + "description": "List of Azure Dev Spaces Controller connection details.", + "type": "array", + "items": { + "$ref": "#/definitions/ControllerConnectionDetails" } } } }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "description": "Azure subscription ID.", - "required": true, - "type": "string" + "ControllerConnectionDetails": { + "properties": { + "authKey": { + "description": "Authentication key for communicating with services.", + "type": "string", + "readOnly": true + }, + "orchestratorSpecificConnectionDetails": { + "$ref": "#/definitions/OrchestratorSpecificConnectionDetails" + } + } + }, + "OrchestratorSpecificConnectionDetails": { + "description": "Base class for types that supply values used to connect to container orchestrators", + "properties": { + "instanceType": { + "description": "Gets the Instance type.", + "type": "string", + "readOnly": true + } }, - "ResourceGroupParameter": { - "name": "resourceGroupName", - "in": "path", - "description": "Resource group to which the resource belongs.", - "required": true, - "type": "string", - "maxLength": 90, - "minLength": 1, - "x-ms-parameter-location": "method" + "discriminator": "instanceType" + }, + "Resource": { + "description": "An Azure resource.", + "properties": { + "id": { + "description": "Fully qualified resource Id for the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "The name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "The type of the resource.", + "type": "string", + "readOnly": true + } }, - "NameParameter": { - "name": "name", - "in": "path", - "description": "Name of the resource.", - "required": true, - "type": "string", - "maxLength": 31, - "minLength": 3, - "pattern": "^[a-zA-Z0-9](-?[a-zA-Z0-9])*$", - "x-ms-parameter-location": "method" + "x-ms-azure-resource": true + }, + "KubernetesConnectionDetails": { + "description": "Contains information used to connect to a Kubernetes cluster", + "allOf": [ + { + "$ref": "#/definitions/OrchestratorSpecificConnectionDetails" + } + ], + "properties": { + "kubeConfig": { + "description": "Gets the kubeconfig for the cluster.", + "type": "string" + } }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "Client API version.", - "required": true, - "type": "string" + "x-ms-discriminator-value": "Kubernetes" + }, + "ErrorResponse": { + "description": "Error response indicates that the service is not able to process the incoming request. The reason is provided in the error message.", + "properties": { + "error": { + "$ref": "#/definitions/ErrorDetails", + "description": "The details of the error." + } } }, - "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" + "ErrorDetails": { + "properties": { + "code": { + "description": "Status code for the error.", + "type": "string", + "readOnly": true + }, + "message": { + "description": "Error message describing the error in detail.", + "type": "string", + "readOnly": true + }, + "target": { + "description": "The target of the particular error.", + "type": "string", + "readOnly": true } } } - } \ No newline at end of file + }, + "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "description": "Azure subscription ID.", + "required": true, + "type": "string" + }, + "ResourceGroupParameter": { + "name": "resourceGroupName", + "in": "path", + "description": "Resource group to which the resource belongs.", + "required": true, + "type": "string", + "maxLength": 90, + "minLength": 1, + "x-ms-parameter-location": "method" + }, + "NameParameter": { + "name": "name", + "in": "path", + "description": "Name of the resource.", + "required": true, + "type": "string", + "maxLength": 31, + "minLength": 3, + "pattern": "^[a-zA-Z0-9](-?[a-zA-Z0-9])*$", + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "description": "Client API version.", + "required": true, + "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" + } + } + } +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ContainerHostMappingsGetContainerHostMapping_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ContainerHostMappingsGetContainerHostMapping_example.json index bb20aa6343b2..adc9b2ef040f 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ContainerHostMappingsGetContainerHostMapping_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ContainerHostMappingsGetContainerHostMapping_example.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersCreate_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersCreate_example.json index b9643c53efe2..b15b8c8ce608 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersCreate_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersCreate_example.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersDelete_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersDelete_example.json index a06c752386a4..64b07e0568cb 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersDelete_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersDelete_example.json @@ -14,4 +14,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersGet_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersGet_example.json index adad206304c5..23ec5e93df6f 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersGet_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersGet_example.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersListByResourceGroup_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersListByResourceGroup_example.json index 5d4bae4c29ec..f77b862515bc 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersListByResourceGroup_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersListByResourceGroup_example.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersListConnectionDetails_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersListConnectionDetails_example.json index 101851f45cf7..a0b7175dcbaf 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersListConnectionDetails_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersListConnectionDetails_example.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersList_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersList_example.json index 799d2f698fa7..7db9ae039ab0 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersList_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersList_example.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersUpdate_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersUpdate_example.json index 8f561a62b5b0..4f9bd133c3c5 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersUpdate_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/preview/2019-01-01-preview/examples/ControllersUpdate_example.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/devspaces.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/devspaces.json index 863695c58195..df71ae6c0d71 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/devspaces.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/devspaces.json @@ -823,4 +823,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ContainerHostMappingsGetContainerHostMapping_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ContainerHostMappingsGetContainerHostMapping_example.json index d1ad350387fc..22f5e4d83555 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ContainerHostMappingsGetContainerHostMapping_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ContainerHostMappingsGetContainerHostMapping_example.json @@ -17,4 +17,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersCreate_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersCreate_example.json index 7af23923f0cc..34e94e7497a7 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersCreate_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersCreate_example.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersDelete_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersDelete_example.json index 3bb5b1c6084d..9ecbab472aa2 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersDelete_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersDelete_example.json @@ -14,4 +14,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersGet_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersGet_example.json index 205faf622813..f4a48472b31a 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersGet_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersGet_example.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersListByResourceGroup_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersListByResourceGroup_example.json index 57b926301168..fdbddaaa8eb7 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersListByResourceGroup_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersListByResourceGroup_example.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersListConnectionDetails_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersListConnectionDetails_example.json index a4e8b88ac491..a131e3368bb6 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersListConnectionDetails_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersListConnectionDetails_example.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersList_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersList_example.json index f7160d7490ee..b9cf7143c638 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersList_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersList_example.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersUpdate_example.json b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersUpdate_example.json index 8f4b0dc31b65..1f192b025a37 100644 --- a/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersUpdate_example.json +++ b/specification/devspaces/resource-manager/Microsoft.DevSpaces/stable/2019-04-01/examples/ControllersUpdate_example.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterDelete.json index 7ba2aa0baf20..455a9036a4d5 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterDelete.json @@ -1,13 +1,13 @@ { - "parameters": { - "clusterName": "testCluster", - "resourceGroupName": "myResourceGroup", - "api-version": "2018-01-01-preview", - "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } + "parameters": { + "clusterName": "testCluster", + "resourceGroupName": "myResourceGroup", + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterGet.json index 2a257820d9cb..decf1dc12a9f 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterGet.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterPatch.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterPatch.json index 4539946ee5aa..49d40843e81d 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterPatch.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterPatch.json @@ -4,57 +4,57 @@ "resourceGroupName": "myResourceGroup", "api-version": "2018-01-01-preview", "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", - "parameters":{ - "location": "South Central US", - "tags": { - "tag3": "value3", - "tag4": "value4" - } - } + "parameters": { + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + } + } }, "responses": { "200": { "body": { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", - "name": "testCluster", - "type": "Microsoft.EventHub/Clusters", - "location": "South Central US", - "tags": { - "tag3": "value3", - "tag4": "value4" - }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + }, "sku": { "name": "Dedicated", "capacity": 4 }, - "properties": { - "created": "2017-06-01T21:37:04.46Z", - "updated": "2017-06-01T21:37:53.413Z", - "metricId": "SN6-008" - } - } + "properties": { + "created": "2017-06-01T21:37:04.46Z", + "updated": "2017-06-01T21:37:53.413Z", + "metricId": "SN6-008" + } + } }, "201": { "body": { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", - "name": "testCluster", - "type": "Microsoft.EventHub/Clusters", - "location": "South Central US", - "tags": { - "tag3": "value3", - "tag4": "value4" - }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + }, "sku": { "name": "Dedicated", "capacity": 4 }, - "properties": { - "created": "2017-06-01T21:37:04.46Z", - "updated": "2017-06-01T21:37:53.413Z", - "metricId": "SN6-008" - } - } + "properties": { + "created": "2017-06-01T21:37:04.46Z", + "updated": "2017-06-01T21:37:53.413Z", + "metricId": "SN6-008" + } + } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterPut.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterPut.json index d71150f6dfbc..47d7194db72e 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterPut.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterPut.json @@ -1,64 +1,64 @@ { + "parameters": { + "clusterName": "testCluster", + "resourceGroupName": "myResourceGroup", + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", "parameters": { - "clusterName": "testCluster", - "resourceGroupName": "myResourceGroup", - "api-version": "2018-01-01-preview", - "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", - "parameters": { - "sku": { - "tier": "Dedicated", - "capacity": 1 - }, - "location": "South Central US", - "tags": { - "tag1": "value1", - "tag2": "value2" - } + "sku": { + "tier": "Dedicated", + "capacity": 1 + }, + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "sku": { + "name": "Dedicated", + "capacity": 1 + }, + "properties": { + "created": "2017-05-24T23:23:27.877Z", + "updated": "2017-05-24T23:23:27.877Z", + "metricId": "SN6-008" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", - "name": "testCluster", - "type": "Microsoft.EventHub/Clusters", - "location": "South Central US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "sku": { - "name": "Dedicated", - "capacity": 1 - }, - "properties": { - "created": "2017-05-24T23:23:27.877Z", - "updated": "2017-05-24T23:23:27.877Z", - "metricId": "SN6-008" - } - } + "201": { + "body": { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" }, - "201": { - "body": { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", - "name": "testCluster", - "type": "Microsoft.EventHub/Clusters", - "location": "South Central US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "sku": { - "name": "Dedicated", - "capacity": 1 - }, - "properties": { - "created": "2017-05-24T23:23:27.877Z", - "updated": "2017-05-24T23:23:27.877Z", - "metricId": "SN6-008" - } - } + "sku": { + "name": "Dedicated", + "capacity": 1 }, - "202" : {} - } + "properties": { + "created": "2017-05-24T23:23:27.877Z", + "updated": "2017-05-24T23:23:27.877Z", + "metricId": "SN6-008" + } + } + }, + "202": {} + } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationGet.json index c5ea73433060..8139d5613de8 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationGet.json @@ -1,18 +1,18 @@ { - "parameters": { - "clusterName": "testCluster", - "resourceGroupName": "myResourceGroup", - "api-version": "2018-01-01-preview", - "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" - }, - "responses": { - "200": { - "body": { - "settings": { - "namespaces-per-cluster-quota": "200", - "eventhub-per-namespace-quota": "20" - } - } + "parameters": { + "clusterName": "testCluster", + "resourceGroupName": "myResourceGroup", + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" + }, + "responses": { + "200": { + "body": { + "settings": { + "namespaces-per-cluster-quota": "200", + "eventhub-per-namespace-quota": "20" } + } } -} \ No newline at end of file + } +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationPatch.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationPatch.json index d214e8c44414..3f4b9d4ba1f9 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationPatch.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationPatch.json @@ -30,4 +30,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListByResourceGroup.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListByResourceGroup.json index c4a2b3c1c9a9..8f80c72ed5c0 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListByResourceGroup.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListByResourceGroup.json @@ -1,31 +1,31 @@ { - "parameters": { - "api-version": "2017-04-01", - "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", - "resourceGroupName": "myResourceGroup" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/clusters/testCluster", - "name": "testCluster", - "type": "Microsoft.EventHub/Clusters", - "location": "South Central US", - "tags": {}, - "sku": { - "name": "Dedicated", - "capacity": 4 - }, - "properties": { - "created": "2016-09-13T23:17:25.24Z", - "updated": "2016-09-13T23:17:28.223Z", - "metricId": "SN6-008" - } - } - ] + "parameters": { + "api-version": "2017-04-01", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", + "resourceGroupName": "myResourceGroup" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": {}, + "sku": { + "name": "Dedicated", + "capacity": 4 + }, + "properties": { + "created": "2016-09-13T23:17:25.24Z", + "updated": "2016-09-13T23:17:28.223Z", + "metricId": "SN6-008" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListBySubscription.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListBySubscription.json index b88ab50c0324..4d4e78b47ed5 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListBySubscription.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListBySubscription.json @@ -1,30 +1,30 @@ { - "parameters": { - "api-version": "2018-01-01-preview", - "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/clusters/testCluster", - "name": "testCluster", - "type": "Microsoft.EventHub/Clusters", - "location": "South Central US", - "tags": {}, - "sku": { - "name": "Dedicated", - "capacity": 4 - }, - "properties": { - "created": "2016-09-13T23:17:25.24Z", - "updated": "2016-09-13T23:17:28.223Z", - "metricId": "SN6-008" - } - } - ] + "parameters": { + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": {}, + "sku": { + "name": "Dedicated", + "capacity": 4 + }, + "properties": { + "created": "2016-09-13T23:17:25.24Z", + "updated": "2016-09-13T23:17:28.223Z", + "metricId": "SN6-008" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ListAvailableClustersGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ListAvailableClustersGet.json index 891fca989139..479ccfee5b6e 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ListAvailableClustersGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ListAvailableClustersGet.json @@ -1,20 +1,20 @@ { - "parameters": { - "api-version": "2018-01-01-preview", - "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "location": "westus" - }, - { - "location": "eastus" - } - ] - } - } + "parameters": { + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "location": "westus" + }, + { + "location": "eastus" + } + ] + } } + } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ListNamespacesInClusterGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ListNamespacesInClusterGet.json index 8d78ebd0cf63..309fe95a493a 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ListNamespacesInClusterGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ListNamespacesInClusterGet.json @@ -1,25 +1,25 @@ { - "parameters": { - "clusterName": "testCluster", - "resourceGroupName": "myResourceGroup", - "api-version": "2018-01-01-preview", - "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-int7-ns1" - }, - { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-ehns2-int7" - }, - { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/db3-rrama-foo1" - } - ] - } - } + "parameters": { + "clusterName": "testCluster", + "resourceGroupName": "myResourceGroup", + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-int7-ns1" + }, + { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-ehns2-int7" + }, + { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/db3-rrama-foo1" + } + ] + } } + } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceCreate.json index 3c2e7ebd7e50..9b5d1193e4b5 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceCreate.json @@ -42,33 +42,33 @@ "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" } } - }, - "201": { - "body": { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", - "name": "sdk-Namespace-5849", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Created", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", - "createdAt": "2017-05-24T23:23:27.877Z", - "updatedAt": "2017-05-24T23:23:27.877Z", - "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" - } + }, + "201": { + "body": { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", + "name": "sdk-Namespace-5849", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Created", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", + "createdAt": "2017-05-24T23:23:27.877Z", + "updatedAt": "2017-05-24T23:23:27.877Z", + "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" } - }, - "202": {} + } + }, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceDelete.json index b8b3ad3635e0..b697874b2418 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceGet.json index fc61c3002d2f..7a662298808e 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceGet.json @@ -8,55 +8,55 @@ "responses": { "200": { "body": { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", - "name": "sdk-Namespace-5849", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Created", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", - "createdAt": "2017-05-24T23:23:27.877Z", - "updatedAt": "2017-05-24T23:23:27.877Z", - "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" - } - } + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", + "name": "sdk-Namespace-5849", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Created", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", + "createdAt": "2017-05-24T23:23:27.877Z", + "updatedAt": "2017-05-24T23:23:27.877Z", + "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" + } + } }, - "201": { + "201": { "body": { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", - "name": "sdk-Namespace-5849", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Created", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", - "createdAt": "2017-05-24T23:23:27.877Z", - "updatedAt": "2017-05-24T23:23:27.877Z", - "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" - } - } + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", + "name": "sdk-Namespace-5849", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Created", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", + "createdAt": "2017-05-24T23:23:27.877Z", + "updatedAt": "2017-05-24T23:23:27.877Z", + "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" + } + } } } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceList.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceList.json index 5c8d199e1ac0..a05c321ff63a 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceList.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceList.json @@ -1358,4 +1358,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceListByResourceGroup.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceListByResourceGroup.json index be277d878c9d..fc43b939227d 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceListByResourceGroup.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceListByResourceGroup.json @@ -309,4 +309,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceUpdate.json index 6bee975d1190..29a9c6f32529 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/EHNameSpaceUpdate.json @@ -4,66 +4,66 @@ "resourceGroupName": "ArunMonocle", "api-version": "2017-04-01", "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", - "parameters":{ - "location": "South Central US", - "tags": { - "tag3": "value3", - "tag4": "value4" - } - } + "parameters": { + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + } + } }, "responses": { "200": { "body": { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3668", - "name": "sdk-Namespace-3668", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag3": "value3", - "tag4": "value4" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Updating", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3668", - "createdAt": "2017-06-01T21:37:04.46Z", - "updatedAt": "2017-06-01T21:37:53.413Z", - "serviceBusEndpoint": "https://sdk-Namespace-3668.servicebus.windows-int.net:443/" - } - } + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3668", + "name": "sdk-Namespace-3668", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Updating", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3668", + "createdAt": "2017-06-01T21:37:04.46Z", + "updatedAt": "2017-06-01T21:37:53.413Z", + "serviceBusEndpoint": "https://sdk-Namespace-3668.servicebus.windows-int.net:443/" + } + } }, "201": { "body": { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3668", - "name": "sdk-Namespace-3668", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag3": "value3", - "tag4": "value4" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Updating", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3668", - "createdAt": "2017-06-01T21:37:04.46Z", - "updatedAt": "2017-06-01T21:37:53.413Z", - "serviceBusEndpoint": "https://sdk-Namespace-3668.servicebus.windows-int.net:443/" - } - } + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3668", + "name": "sdk-Namespace-3668", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Updating", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3668", + "createdAt": "2017-06-01T21:37:04.46Z", + "updatedAt": "2017-06-01T21:37:53.413Z", + "serviceBusEndpoint": "https://sdk-Namespace-3668.servicebus.windows-int.net:443/" + } + } }, "202": {} } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIPFilterRuleListAll.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIPFilterRuleListAll.json index bcefa956851e..52485839683e 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIPFilterRuleListAll.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIPFilterRuleListAll.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleCreateorUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleCreateorUpdate.json index b114af890566..84ef236a04fa 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleCreateorUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleCreateorUpdate.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleDelete.json index 91b4cda17551..3cf7783a59c7 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleDelete.json @@ -7,7 +7,7 @@ "ipFilterRuleName": "sdk-IPFilterRules-7337" }, "responses": { - "200": { }, - "204": { } + "200": {}, + "204": {} } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleGet.json index 5ae908f796aa..23808d27ec79 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleGet.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleUpdate.json index 0bfaea95486f..42b29c8427a2 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/EHNameSpaceIpFilterRuleUpdate.json @@ -4,7 +4,7 @@ "resourceGroupName": "ResourceGroup", "api-version": "2018-01-01-preview", "subscriptionId": "Subscription", - "ipFilterRuleName": "sdk-IPFilterRules-7337", + "ipFilterRuleName": "sdk-IPFilterRules-7337", "parameters": { "properties": { "ipMask": "13.78.143.246/32", @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleDelete.json index 05cecc4b578a..e2f63871f214 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleDelete.json @@ -7,7 +7,7 @@ "virtualNetworkRuleName": "sdk-VirtualNetworkRules-9191" }, "responses": { - "200": { }, - "204": { } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleListAll.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleListAll.json index c0067a14d070..ae96ec6fefd1 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleListAll.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleListAll.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleupdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleupdate.json index 666b79b83407..a704f210cbad 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleupdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNameSpaceVirtualNetworkRuleupdate.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetCreate.json index e90b46f684d9..e7969c387337 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetCreate.json @@ -62,15 +62,21 @@ "defaultAction": "Deny", "virtualNetworkRules": [ { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" + }, "ignoreMissingVnetServiceEndpoint": true }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" + }, "ignoreMissingVnetServiceEndpoint": false }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" + }, "ignoreMissingVnetServiceEndpoint": false } ], diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetGet.json index ddd005ee3956..d63c8fbad4bd 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetGet.json @@ -15,15 +15,21 @@ "defaultAction": "Deny", "virtualNetworkRules": [ { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" + }, "ignoreMissingVnetServiceEndpoint": true }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" + }, "ignoreMissingVnetServiceEndpoint": false }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" + }, "ignoreMissingVnetServiceEndpoint": false } ], diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Operations_List.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Operations_List.json index 9736d035b582..2b7934171ac1 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Operations_List.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Operations_List.json @@ -226,4 +226,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2014-09-01/EventHub.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2014-09-01/EventHub.json index dcc80378a9db..8ccd63c6dfdb 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2014-09-01/EventHub.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2014-09-01/EventHub.json @@ -93,7 +93,7 @@ } } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.EventHub/CheckNamespaceAvailability": { + "/subscriptions/{subscriptionId}/providers/Microsoft.EventHub/CheckNamespaceAvailability": { "post": { "tags": [ "Namespaces" @@ -384,7 +384,7 @@ "nextLinkName": "nextLink" } }, - "post": { + "post": { "tags": [ "Namespaces" ], @@ -555,7 +555,7 @@ } } } - }, + }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs": { "get": { "tags": [ @@ -908,7 +908,7 @@ } } } - }, + }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/consumergroups/{consumerGroupName}": { "put": { "tags": [ @@ -1433,7 +1433,7 @@ ], "description": "AuthorizationRule properties." }, - "SharedAccessAuthorizationRuleResource": { + "SharedAccessAuthorizationRuleResource": { "properties": { "properties": { "x-ms-client-flatten": true, @@ -1788,4 +1788,4 @@ "description": "The consumer group name" } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/EventHub.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/EventHub.json index c89708b4a04d..cf1f9218496d 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/EventHub.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/EventHub.json @@ -41,7 +41,9 @@ ], "operationId": "Operations_List", "x-ms-examples": { - "EHOperations_List": { "$ref": "./examples/EHOperations_List.json" } + "EHOperations_List": { + "$ref": "./examples/EHOperations_List.json" + } }, "description": "Lists all of the available Event Hub REST API operations.", "parameters": [ @@ -69,7 +71,9 @@ ], "operationId": "Namespaces_CheckNameAvailability", "x-ms-examples": { - "NamespacesCheckNameAvailability": { "$ref": "./examples/EHNameSpaceCheckNameAvailability.json" } + "NamespacesCheckNameAvailability": { + "$ref": "./examples/EHNameSpaceCheckNameAvailability.json" + } }, "description": "Check the give Namespace name availability.", "parameters": [ @@ -106,7 +110,9 @@ ], "operationId": "Namespaces_ListBySubscription", "x-ms-examples": { - "NamespacesListBySubscription": { "$ref": "./examples/EHNameSpaceList.json" } + "NamespacesListBySubscription": { + "$ref": "./examples/EHNameSpaceList.json" + } }, "description": "Lists all the available Namespaces within a subscription, irrespective of the resource groups.", "parameters": [ @@ -137,7 +143,9 @@ ], "operationId": "Namespaces_ListByResourceGroup", "x-ms-examples": { - "NamespaceListByResourceGroup": { "$ref": "./examples/EHNameSpaceListByResourceGroup.json" } + "NamespaceListByResourceGroup": { + "$ref": "./examples/EHNameSpaceListByResourceGroup.json" + } }, "description": "Lists the available Namespaces within a resource group.", "parameters": [ @@ -171,7 +179,9 @@ ], "operationId": "Namespaces_CreateOrUpdate", "x-ms-examples": { - "NamespaceCreate": { "$ref": "./examples/EHNameSpaceCreate.json" } + "NamespaceCreate": { + "$ref": "./examples/EHNameSpaceCreate.json" + } }, "description": "Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "parameters": [ @@ -222,7 +232,9 @@ ], "operationId": "Namespaces_Delete", "x-ms-examples": { - "NameSpaceDelete": { "$ref": "./examples/EHNameSpaceDelete.json" } + "NameSpaceDelete": { + "$ref": "./examples/EHNameSpaceDelete.json" + } }, "description": "Deletes an existing namespace. This operation also removes all associated resources under the namespace.", "parameters": [ @@ -258,7 +270,9 @@ ], "operationId": "Namespaces_Get", "x-ms-examples": { - "NameSpaceGet": { "$ref": "./examples/EHNameSpaceGet.json" } + "NameSpaceGet": { + "$ref": "./examples/EHNameSpaceGet.json" + } }, "description": "Gets the description of the specified namespace.", "parameters": [ @@ -296,7 +310,9 @@ ], "operationId": "Namespaces_Update", "x-ms-examples": { - "NamespacesUpdate": { "$ref": "./examples/EHNameSpaceUpdate.json" } + "NamespacesUpdate": { + "$ref": "./examples/EHNameSpaceUpdate.json" + } }, "description": "Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "parameters": [ @@ -348,7 +364,9 @@ ], "operationId": "Namespaces_ListAuthorizationRules", "x-ms-examples": { - "ListAuthorizationRules": { "$ref": "./examples/EHNameSpaceAuthorizationRuleListAll.json" } + "ListAuthorizationRules": { + "$ref": "./examples/EHNameSpaceAuthorizationRuleListAll.json" + } }, "description": "Gets a list of authorization rules for a Namespace.", "parameters": [ @@ -385,7 +403,9 @@ ], "operationId": "Namespaces_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleCreate": { "$ref": "./examples/EHNameSpaceAuthorizationRuleCreate.json" } + "NameSpaceAuthorizationRuleCreate": { + "$ref": "./examples/EHNameSpaceAuthorizationRuleCreate.json" + } }, "description": "Creates or updates an AuthorizationRule for a Namespace.", "parameters": [ @@ -429,7 +449,9 @@ ], "operationId": "Namespaces_DeleteAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleDelete": { "$ref": "./examples/EHNameSpaceAuthorizationRuleDelete.json" } + "NameSpaceAuthorizationRuleDelete": { + "$ref": "./examples/EHNameSpaceAuthorizationRuleDelete.json" + } }, "description": "Deletes an AuthorizationRule for a Namespace.", "parameters": [ @@ -464,7 +486,9 @@ ], "operationId": "Namespaces_GetAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleGet": { "$ref": "./examples/EHNameSpaceAuthorizationRuleGet.json" } + "NameSpaceAuthorizationRuleGet": { + "$ref": "./examples/EHNameSpaceAuthorizationRuleGet.json" + } }, "description": "Gets an AuthorizationRule for a Namespace by rule name.", "parameters": [ @@ -501,7 +525,9 @@ ], "operationId": "Namespaces_ListKeys", "x-ms-examples": { - "NameSpaceAuthorizationRuleListKey": { "$ref": "./examples/EHNameSpaceAuthorizationRuleListKey.json" } + "NameSpaceAuthorizationRuleListKey": { + "$ref": "./examples/EHNameSpaceAuthorizationRuleListKey.json" + } }, "description": "Gets the primary and secondary connection strings for the Namespace.", "parameters": [ @@ -538,7 +564,9 @@ ], "operationId": "Namespaces_RegenerateKeys", "x-ms-examples": { - "NameSpaceAuthorizationRuleRegenerateKey": { "$ref": "./examples/EHNameSpaceAuthorizationRuleRegenerateKey.json" } + "NameSpaceAuthorizationRuleRegenerateKey": { + "$ref": "./examples/EHNameSpaceAuthorizationRuleRegenerateKey.json" + } }, "description": "Regenerates the primary or secondary connection strings for the specified Namespace.", "parameters": [ @@ -584,7 +612,9 @@ ], "operationId": "EventHubs_ListAll", "x-ms-examples": { - "EventHubsListAll": { "$ref": "./examples/EHEventHubListByNameSpace.json" } + "EventHubsListAll": { + "$ref": "./examples/EHEventHubListByNameSpace.json" + } }, "description": "Gets all the Event Hubs in a Namespace.", "externalDocs": { @@ -624,7 +654,9 @@ ], "operationId": "EventHubs_CreateOrUpdate", "x-ms-examples": { - "EventHubCreate": { "$ref": "./examples/EHEventHubCreate.json" } + "EventHubCreate": { + "$ref": "./examples/EHEventHubCreate.json" + } }, "description": "Creates or updates a new Event Hub as a nested resource within a Namespace.", "externalDocs": { @@ -671,7 +703,9 @@ ], "operationId": "EventHubs_Delete", "x-ms-examples": { - "EventHubDelete": { "$ref": "./examples/EHEventHubDelete.json" } + "EventHubDelete": { + "$ref": "./examples/EHEventHubDelete.json" + } }, "description": "Deletes an Event Hub from the specified Namespace and resource group.", "externalDocs": { @@ -709,7 +743,9 @@ ], "operationId": "EventHubs_Get", "x-ms-examples": { - "EventHubGet": { "$ref": "./examples/EHEventHubGet.json" } + "EventHubGet": { + "$ref": "./examples/EHEventHubGet.json" + } }, "description": "Gets an Event Hubs description for the specified Event Hub.", "externalDocs": { @@ -749,7 +785,9 @@ ], "operationId": "EventHubs_ListAuthorizationRules", "x-ms-examples": { - "EventHubAuthorizationRuleListAll": { "$ref": "./examples/EHEventHubAuthorizationRuleListAll.json" } + "EventHubAuthorizationRuleListAll": { + "$ref": "./examples/EHEventHubAuthorizationRuleListAll.json" + } }, "description": "Gets the authorization rules for an Event Hub.", "parameters": [ @@ -789,7 +827,9 @@ ], "operationId": "EventHubs_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "EventHubAuthorizationRuleCreate": { "$ref": "./examples/EHEventHubAuthorizationRuleCreate.json" } + "EventHubAuthorizationRuleCreate": { + "$ref": "./examples/EHEventHubAuthorizationRuleCreate.json" + } }, "description": "Creates or updates an AuthorizationRule for the specified Event Hub.", "externalDocs": { @@ -839,7 +879,9 @@ ], "operationId": "EventHubs_GetAuthorizationRule", "x-ms-examples": { - "EventHubAuthorizationRuleGet": { "$ref": "./examples/EHEventHubAuthorizationRuleGet.json" } + "EventHubAuthorizationRuleGet": { + "$ref": "./examples/EHEventHubAuthorizationRuleGet.json" + } }, "description": "Gets an AuthorizationRule for an Event Hub by rule name.", "externalDocs": { @@ -880,7 +922,9 @@ ], "operationId": "EventHubs_PosttAuthorizationRule", "x-ms-examples": { - "EventHubAuthorizationRuleGet": { "$ref": "./examples/EHEventHubAuthorizationRuleGet.json" } + "EventHubAuthorizationRuleGet": { + "$ref": "./examples/EHEventHubAuthorizationRuleGet.json" + } }, "description": "Gets an AuthorizationRule for an Event Hub by rule name.", "externalDocs": { @@ -921,7 +965,9 @@ ], "operationId": "EventHubs_DeleteAuthorizationRule", "x-ms-examples": { - "EventHubAuthorizationRuleDelete": { "$ref": "./examples/EHEventHubAuthorizationRuleDelete.json" } + "EventHubAuthorizationRuleDelete": { + "$ref": "./examples/EHEventHubAuthorizationRuleDelete.json" + } }, "description": "Deletes an Event Hub AuthorizationRule.", "externalDocs": { @@ -964,7 +1010,9 @@ ], "operationId": "EventHubs_ListKeys", "x-ms-examples": { - "EventHubAuthorizationRuleListKey": { "$ref": "./examples/EHEventHubAuthorizationRuleListKey.json" } + "EventHubAuthorizationRuleListKey": { + "$ref": "./examples/EHEventHubAuthorizationRuleListKey.json" + } }, "description": "Gets the ACS and SAS connection strings for the Event Hub.", "externalDocs": { @@ -1007,7 +1055,9 @@ ], "operationId": "EventHubs_RegenerateKeys", "x-ms-examples": { - "EventHubAuthorizationRuleRegenerateKey": { "$ref": "./examples/EHEventHubAuthorizationRuleRegenerateKey.json" } + "EventHubAuthorizationRuleRegenerateKey": { + "$ref": "./examples/EHEventHubAuthorizationRuleRegenerateKey.json" + } }, "description": "Regenerates the ACS and SAS connection strings for the Event Hub.", "externalDocs": { @@ -1059,7 +1109,9 @@ ], "operationId": "ConsumerGroups_CreateOrUpdate", "x-ms-examples": { - "ConsumerGroupCreate": { "$ref": "./examples/EHConsumerGroupCreate.json" } + "ConsumerGroupCreate": { + "$ref": "./examples/EHConsumerGroupCreate.json" + } }, "description": "Creates or updates an Event Hubs consumer group as a nested resource within a Namespace.", "externalDocs": { @@ -1109,7 +1161,9 @@ ], "operationId": "ConsumerGroups_Delete", "x-ms-examples": { - "ConsumerGroupDelete": { "$ref": "./examples/EHConsumerGroupDelete.json" } + "ConsumerGroupDelete": { + "$ref": "./examples/EHConsumerGroupDelete.json" + } }, "description": "Deletes a consumer group from the specified Event Hub and resource group.", "externalDocs": { @@ -1150,7 +1204,9 @@ ], "operationId": "ConsumerGroups_Get", "x-ms-examples": { - "ConsumerGroupGet": { "$ref": "./examples/EHConsumerGroupGet.json" } + "ConsumerGroupGet": { + "$ref": "./examples/EHConsumerGroupGet.json" + } }, "description": "Gets a description for the specified consumer group.", "externalDocs": { @@ -1193,7 +1249,9 @@ ], "operationId": "ConsumerGroups_ListAll", "x-ms-examples": { - "ConsumerGroupsListAll": { "$ref": "./examples/EHConsumerGroupListByEventHub.json" } + "ConsumerGroupsListAll": { + "$ref": "./examples/EHConsumerGroupListByEventHub.json" + } }, "description": "Gets all the consumer groups in a Namespace. An empty feed is returned if no consumer group exists in the Namespace.", "externalDocs": { @@ -1921,4 +1979,3 @@ } } } - diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupCreate.json index b15bd21d10d3..66101b77f73a 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupCreate.json @@ -6,9 +6,9 @@ "consumerGroupName": "sdk-ConsumerGroup115", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", - "parameters": { - "location": "West US" - } + "parameters": { + "location": "West US" + } }, "responses": { "200": { @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupDelete.json index e280d554927d..5e3895ea510c 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupListByEventHub.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupListByEventHub.json index 00d19dc56965..aaca34366d7e 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupListByEventHub.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHConsumerGroupListByEventHub.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleCreate.json index b26ed4f9cf28..657115665c70 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleCreate.json @@ -21,8 +21,13 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace2290/eventhubs/sdk-EventHub8887/authorizationRules/sdk-Authrules9261", "name": "sdk-Authrules9261", "type": "Microsoft.EventHub/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleDelete.json index d3e3df638d72..f3d3ad894671 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleGet.json index f4c484208b04..7acaf1c13efa 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleGet.json @@ -13,8 +13,13 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace2290/eventhubs/sdk-EventHub8887/authorizationRules/sdk-Authrules9261", "name": "sdk-Authrules9261", "type": "Microsoft.EventHub/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleListAll.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleListAll.json index a60653c10140..90ed61c3ac9d 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleListAll.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleListAll.json @@ -12,10 +12,15 @@ "value": [ { "name": "sdk-Authrules9261", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } ] } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleListKey.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleListKey.json index 3c2383c472cc..4a3dc086419c 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleListKey.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleListKey.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleRegenerateKey.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleRegenerateKey.json index 888bf145addb..4463d644e34e 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleRegenerateKey.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleRegenerateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleUpdate.json index 936298a0f788..db1337d96df2 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubAuthorizationRuleUpdate.json @@ -21,8 +21,12 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace2290/eventhubs/sdk-EventHub8887/authorizationRules/sdk-Authrules9261", "name": "sdk-Authrules9261", "type": "Microsoft.EventHub/AuthorizationRules", - "properties": { "rights": [ "Listen" ] } + "properties": { + "rights": [ + "Listen" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubCreate.json index b476ad3fcdb7..ce1ddd83fca2 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubCreate.json @@ -4,10 +4,10 @@ "resourceGroupName": "Default-ServiceBus-WestUS", "eventHubName": "sdk-EventHub6448", "api-version": "2015-08-01", - "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", + "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", "parameters": { - "location": "West US", - "properties": { + "location": "West US", + "properties": { "messageRetentionInDays": 7, "status": "Active", "partitionCount": 4 @@ -26,9 +26,14 @@ "createdAt": "2017-03-12T20:37:09.28Z", "updatedAt": "2017-03-12T20:37:18.64Z", "partitionCount": 4, - "partitionIds": [ "0", "1", "2", "3" ] + "partitionIds": [ + "0", + "1", + "2", + "3" + ] } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubDelete.json index 5632abfafd9d..9f188179bdb4 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubGet.json index 1c1f8709314d..a67190d01771 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubGet.json @@ -18,7 +18,12 @@ "createdAt": "2017-03-12T09:19:03.577Z", "updatedAt": "2017-03-12T09:19:05.577Z", "partitionCount": 4, - "partitionIds": [ "0", "1", "2", "3" ] + "partitionIds": [ + "0", + "1", + "2", + "3" + ] } } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubListByNameSpace.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubListByNameSpace.json index 439e7650faef..8b8fc44e883f 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubListByNameSpace.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubListByNameSpace.json @@ -2,7 +2,7 @@ "parameters": { "namespaceName": "sdk-Namespace4919", "resourceGroupName": "Default-ServiceBus-WestUS", - "api-version": "2015-08-01", + "api-version": "2015-08-01", "eventHubName": "sdk-eventhub4839", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" }, @@ -20,11 +20,16 @@ "createdAt": "2017-03-12T07:39:13.31Z", "updatedAt": "2017-03-12T07:39:15.41Z", "partitionCount": 4, - "partitionIds": [ "0", "1", "2", "3" ] + "partitionIds": [ + "0", + "1", + "2", + "3" + ] } } ] } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubUpdate.json index 95715fbf99ac..e54f2116b5fb 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHEventHubUpdate.json @@ -15,8 +15,10 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace4919/eventhubs/sdk-EventHub4839", "name": "sdk-EventHub4839", "type": "Microsoft.EventHub/EventHubs", - "properties": { "messageRetentionInDays": 5 } + "properties": { + "messageRetentionInDays": 5 + } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleCreate.json index 0bffa38b6e27..010dcbda76d0 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleCreate.json @@ -20,9 +20,14 @@ "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace743/AuthorizationRules/sdk-Authrules4867", "name": "sdk-Authrules4867", - "type": "Microsoft.EventHub/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "type": "Microsoft.EventHub/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleDelete.json index 22f41a6d1ec5..6913c213587a 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleGet.json index e38c7c5c37cb..23f8e0c38cb3 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleGet.json @@ -12,8 +12,14 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace743/AuthorizationRules/RootManageSharedAccessKey", "name": "RootManageSharedAccessKey", "type": "Microsoft.EventHub/AuthorizationRules", - "properties": { "rights": [ "Listen", "Manage", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Manage", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleListAll.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleListAll.json index e3989e5d7d69..10a203d9b933 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleListAll.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleListAll.json @@ -11,14 +11,25 @@ "value": [ { "name": "RootManageSharedAccessKey", - "properties": { "rights": [ "Listen", "Manage", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Manage", + "Send" + ] + } }, { "name": "sdk-Authrules4867", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } ] } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleListKey.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleListKey.json index 127b18d1dc2e..a92ea655622c 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleListKey.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleListKey.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleRegenerateKey.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleRegenerateKey.json index 493eebf3dffc..c92fd9cc2f9d 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleRegenerateKey.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleRegenerateKey.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleUpdate.json index 38229971a699..d0875ba95314 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceAuthorizationRuleUpdate.json @@ -20,8 +20,12 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace743/AuthorizationRules/sdk-Authrules4867", "name": "sdk-Authrules4867", "type": "Microsoft.EventHub/AuthorizationRules", - "properties": { "rights": [ "Listen" ] } + "properties": { + "rights": [ + "Listen" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceCheckNameAvailability.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceCheckNameAvailability.json index 909c83db5bcc..698020253a02 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceCheckNameAvailability.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceCheckNameAvailability.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceCreate.json index 139c3d2f600d..c9b5314c17c6 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceCreate.json @@ -61,4 +61,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceDelete.json index 9df958402fac..f1a62961e93a 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceGet.json index 8b26aeb55f6a..34cc27a07ac6 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceGet.json @@ -32,7 +32,7 @@ } } }, - "201": { + "201": { "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace8107", "name": "sdk-Namespace8107", diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceList.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceList.json index 97c19a4ec68d..83778b6e0d61 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceList.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceList.json @@ -95,4 +95,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceListByResourceGroup.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceListByResourceGroup.json index 1dfe55f928c5..7000ad62ec1c 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceListByResourceGroup.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceListByResourceGroup.json @@ -96,4 +96,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceUpdate.json index d24cd80547b1..f616ef03239b 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHNameSpaceUpdate.json @@ -5,12 +5,12 @@ "api-version": "2015-08-01", "subscriptionId": "8c246e6a-cbc6-4a87-aff1-d6a886f376ef", "location": "West US", - "parameters":{ - "tags": { - "tag3": "value3", - "tag4": "value4" - } - } + "parameters": { + "tags": { + "tag3": "value3", + "tag4": "value4" + } + } }, "responses": { "200": { diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHOperations_List.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHOperations_List.json index 7da7c1956580..3d67ead8c3ab 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHOperations_List.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHOperations_List.json @@ -202,7 +202,7 @@ "resource": "Namespace metrics", "operation": "Get Namespace metrics", "description": "Get list of Namespace metrics Resource Descriptions" - } + } }, { "name": "Microsoft.EventHub/namespaces/diagnosticSettings/read", @@ -235,4 +235,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/EventHub.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/EventHub.json index cadcaa5fe705..304bc8c7d25b 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/EventHub.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/EventHub.json @@ -41,7 +41,9 @@ ], "operationId": "Operations_List", "x-ms-examples": { - "EHOperations_List": { "$ref": "./examples/EHOperations_List.json" } + "EHOperations_List": { + "$ref": "./examples/EHOperations_List.json" + } }, "description": "Lists all of the available Event Hub REST API operations.", "parameters": [ @@ -75,7 +77,9 @@ ], "operationId": "Namespaces_CheckNameAvailability", "x-ms-examples": { - "NamespacesCheckNameAvailability": { "$ref": "./examples/NameSpaces/EHNameSpaceCheckNameAvailability.json" } + "NamespacesCheckNameAvailability": { + "$ref": "./examples/NameSpaces/EHNameSpaceCheckNameAvailability.json" + } }, "description": "Check the give Namespace name availability.", "parameters": [ @@ -118,7 +122,9 @@ ], "operationId": "Namespaces_List", "x-ms-examples": { - "NamespacesListBySubscription": { "$ref": "./examples/NameSpaces/EHNameSpaceList.json" } + "NamespacesListBySubscription": { + "$ref": "./examples/NameSpaces/EHNameSpaceList.json" + } }, "description": "Lists all the available Namespaces within a subscription, irrespective of the resource groups.", "parameters": [ @@ -155,7 +161,9 @@ ], "operationId": "Namespaces_ListByResourceGroup", "x-ms-examples": { - "NamespaceListByResourceGroup": { "$ref": "./examples/NameSpaces/EHNameSpaceListByResourceGroup.json" } + "NamespaceListByResourceGroup": { + "$ref": "./examples/NameSpaces/EHNameSpaceListByResourceGroup.json" + } }, "description": "Lists the available Namespaces within a resource group.", "parameters": [ @@ -195,7 +203,9 @@ ], "operationId": "Namespaces_CreateOrUpdate", "x-ms-examples": { - "NamespaceCreate": { "$ref": "./examples/NameSpaces/EHNameSpaceCreate.json" } + "NamespaceCreate": { + "$ref": "./examples/NameSpaces/EHNameSpaceCreate.json" + } }, "description": "Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "parameters": [ @@ -255,7 +265,9 @@ ], "operationId": "Namespaces_Delete", "x-ms-examples": { - "NameSpaceDelete": { "$ref": "./examples/NameSpaces/EHNameSpaceDelete.json" } + "NameSpaceDelete": { + "$ref": "./examples/NameSpaces/EHNameSpaceDelete.json" + } }, "description": "Deletes an existing namespace. This operation also removes all associated resources under the namespace.", "parameters": [ @@ -297,7 +309,9 @@ ], "operationId": "Namespaces_Get", "x-ms-examples": { - "NameSpaceGet": { "$ref": "./examples/NameSpaces/EHNameSpaceGet.json" } + "NameSpaceGet": { + "$ref": "./examples/NameSpaces/EHNameSpaceGet.json" + } }, "description": "Gets the description of the specified namespace.", "parameters": [ @@ -341,7 +355,9 @@ ], "operationId": "Namespaces_Update", "x-ms-examples": { - "NamespacesUpdate": { "$ref": "./examples/NameSpaces/EHNameSpaceUpdate.json" } + "NamespacesUpdate": { + "$ref": "./examples/NameSpaces/EHNameSpaceUpdate.json" + } }, "description": "Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "parameters": [ @@ -399,7 +415,9 @@ ], "operationId": "Namespaces_GetMessagingPlan", "x-ms-examples": { - "GetNamespaceMessagingPlan": { "$ref": "./examples/NameSpaces/EHNameSpaceGetMessagingPlan.json" } + "GetNamespaceMessagingPlan": { + "$ref": "./examples/NameSpaces/EHNameSpaceGetMessagingPlan.json" + } }, "description": "Gets messaging plan for specified namespace.", "parameters": [ @@ -439,7 +457,9 @@ ], "operationId": "Namespaces_ListAuthorizationRules", "x-ms-examples": { - "ListAuthorizationRules": { "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleListAll.json" } + "ListAuthorizationRules": { + "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleListAll.json" + } }, "description": "Gets a list of authorization rules for a Namespace.", "parameters": [ @@ -482,7 +502,9 @@ ], "operationId": "Namespaces_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleCreate": { "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleCreate.json" } + "NameSpaceAuthorizationRuleCreate": { + "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleCreate.json" + } }, "description": "Creates or updates an AuthorizationRule for a Namespace.", "parameters": [ @@ -532,7 +554,9 @@ ], "operationId": "Namespaces_DeleteAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleDelete": { "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleDelete.json" } + "NameSpaceAuthorizationRuleDelete": { + "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleDelete.json" + } }, "description": "Deletes an AuthorizationRule for a Namespace.", "parameters": [ @@ -573,7 +597,9 @@ ], "operationId": "Namespaces_GetAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleGet": { "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleGet.json" } + "NameSpaceAuthorizationRuleGet": { + "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleGet.json" + } }, "description": "Gets an AuthorizationRule for a Namespace by rule name.", "parameters": [ @@ -616,7 +642,9 @@ ], "operationId": "Namespaces_ListKeys", "x-ms-examples": { - "NameSpaceAuthorizationRuleListKey": { "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleListKey.json" } + "NameSpaceAuthorizationRuleListKey": { + "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleListKey.json" + } }, "description": "Gets the primary and secondary connection strings for the Namespace.", "parameters": [ @@ -659,7 +687,9 @@ ], "operationId": "Namespaces_RegenerateKeys", "x-ms-examples": { - "NameSpaceAuthorizationRuleRegenerateKey": { "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleRegenerateKey.json" } + "NameSpaceAuthorizationRuleRegenerateKey": { + "$ref": "./examples/NameSpaces/EHNameSpaceAuthorizationRuleRegenerateKey.json" + } }, "description": "Regenerates the primary or secondary connection strings for the specified Namespace.", "parameters": [ @@ -711,7 +741,9 @@ ], "operationId": "DisasterRecoveryConfigs_CheckNameAvailability", "x-ms-examples": { - "NamespacesCheckNameAvailability": { "$ref": "./examples/disasterRecoveryConfigs/EHAliasCheckNameAvailability.json" } + "NamespacesCheckNameAvailability": { + "$ref": "./examples/disasterRecoveryConfigs/EHAliasCheckNameAvailability.json" + } }, "description": "Check the give Namespace name availability.", "parameters": [ @@ -760,7 +792,9 @@ ], "operationId": "DisasterRecoveryConfigs_List", "x-ms-examples": { - "EHAliasList": { "$ref": "./examples/disasterRecoveryConfigs/EHAliasList.json" } + "EHAliasList": { + "$ref": "./examples/disasterRecoveryConfigs/EHAliasList.json" + } }, "description": "Gets all Alias(Disaster Recovery configurations)", "parameters": [ @@ -803,7 +837,9 @@ ], "operationId": "DisasterRecoveryConfigs_CreateOrUpdate", "x-ms-examples": { - "EHAliasCreate": { "$ref": "./examples/disasterRecoveryConfigs/EHAliasCreate.json" } + "EHAliasCreate": { + "$ref": "./examples/disasterRecoveryConfigs/EHAliasCreate.json" + } }, "description": "Creates or updates a new Alias(Disaster Recovery configuration)", "parameters": [ @@ -856,7 +892,9 @@ ], "operationId": "DisasterRecoveryConfigs_Delete", "x-ms-examples": { - "EHAliasDelete": { "$ref": "./examples/disasterRecoveryConfigs/EHAliasDelete.json" } + "EHAliasDelete": { + "$ref": "./examples/disasterRecoveryConfigs/EHAliasDelete.json" + } }, "description": "Deletes an Alias(Disaster Recovery configuration)", "parameters": [ @@ -894,7 +932,9 @@ ], "operationId": "DisasterRecoveryConfigs_Get", "x-ms-examples": { - "EHAliasGet": { "$ref": "./examples/disasterRecoveryConfigs/EHAliasGet.json" } + "EHAliasGet": { + "$ref": "./examples/disasterRecoveryConfigs/EHAliasGet.json" + } }, "description": "Retrieves Alias(Disaster Recovery configuration) for primary or secondary namespace", "parameters": [ @@ -937,7 +977,9 @@ ], "operationId": "DisasterRecoveryConfigs_BreakPairing", "x-ms-examples": { - "EHAliasBreakPairing": { "$ref": "./examples/disasterRecoveryConfigs/EHAliasBreakPairing.json" } + "EHAliasBreakPairing": { + "$ref": "./examples/disasterRecoveryConfigs/EHAliasBreakPairing.json" + } }, "description": "This operation disables the Disaster Recovery and stops replicating changes from primary to secondary namespaces", "parameters": [ @@ -977,7 +1019,9 @@ ], "operationId": "DisasterRecoveryConfigs_FailOver", "x-ms-examples": { - "EHAliasFailOver": { "$ref": "./examples/disasterRecoveryConfigs/EHAliasFailOver.json" } + "EHAliasFailOver": { + "$ref": "./examples/disasterRecoveryConfigs/EHAliasFailOver.json" + } }, "description": "Invokes GEO DR failover and reconfigure the alias to point to the secondary namespace", "parameters": [ @@ -1017,7 +1061,9 @@ ], "operationId": "DisasterRecoveryConfigs_ListAuthorizationRules", "x-ms-examples": { - "ListAuthorizationRules": { "$ref": "./examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListAll.json" } + "ListAuthorizationRules": { + "$ref": "./examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListAll.json" + } }, "description": "Gets a list of authorization rules for a Namespace.", "parameters": [ @@ -1063,7 +1109,9 @@ ], "operationId": "DisasterRecoveryConfigs_GetAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleGet": { "$ref": "./examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleGet.json" } + "NameSpaceAuthorizationRuleGet": { + "$ref": "./examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleGet.json" + } }, "description": "Gets an AuthorizationRule for a Namespace by rule name.", "parameters": [ @@ -1109,7 +1157,9 @@ ], "operationId": "DisasterRecoveryConfigs_ListKeys", "x-ms-examples": { - "NameSpaceAuthorizationRuleListKey": { "$ref": "./examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListKey.json" } + "NameSpaceAuthorizationRuleListKey": { + "$ref": "./examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListKey.json" + } }, "description": "Gets the primary and secondary connection strings for the Namespace.", "parameters": [ @@ -1155,7 +1205,9 @@ ], "operationId": "EventHubs_ListByNamespace", "x-ms-examples": { - "EventHubsListAll": { "$ref": "./examples/EventHubs/EHEventHubListByNameSpace.json" } + "EventHubsListAll": { + "$ref": "./examples/EventHubs/EHEventHubListByNameSpace.json" + } }, "description": "Gets all the Event Hubs in a Namespace.", "parameters": [ @@ -1204,7 +1256,9 @@ ], "operationId": "EventHubs_CreateOrUpdate", "x-ms-examples": { - "EventHubCreate": { "$ref": "./examples/EventHubs/EHEventHubCreate.json" } + "EventHubCreate": { + "$ref": "./examples/EventHubs/EHEventHubCreate.json" + } }, "description": "Creates or updates a new Event Hub as a nested resource within a Namespace.", "parameters": [ @@ -1254,7 +1308,9 @@ ], "operationId": "EventHubs_Delete", "x-ms-examples": { - "EventHubDelete": { "$ref": "./examples/EventHubs/EHEventHubDelete.json" } + "EventHubDelete": { + "$ref": "./examples/EventHubs/EHEventHubDelete.json" + } }, "description": "Deletes an Event Hub from the specified Namespace and resource group.", "parameters": [ @@ -1295,7 +1351,9 @@ ], "operationId": "EventHubs_Get", "x-ms-examples": { - "EventHubGet": { "$ref": "./examples/EventHubs/EHEventHubGet.json" } + "EventHubGet": { + "$ref": "./examples/EventHubs/EHEventHubGet.json" + } }, "description": "Gets an Event Hubs description for the specified Event Hub.", "parameters": [ @@ -1338,7 +1396,9 @@ ], "operationId": "EventHubs_ListAuthorizationRules", "x-ms-examples": { - "EventHubAuthorizationRuleListAll": { "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleListAll.json" } + "EventHubAuthorizationRuleListAll": { + "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleListAll.json" + } }, "description": "Gets the authorization rules for an Event Hub.", "parameters": [ @@ -1384,7 +1444,9 @@ ], "operationId": "EventHubs_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "EventHubAuthorizationRuleCreate": { "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleCreate.json" } + "EventHubAuthorizationRuleCreate": { + "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleCreate.json" + } }, "description": "Creates or updates an AuthorizationRule for the specified Event Hub.", "parameters": [ @@ -1437,7 +1499,9 @@ ], "operationId": "EventHubs_GetAuthorizationRule", "x-ms-examples": { - "EventHubAuthorizationRuleGet": { "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleGet.json" } + "EventHubAuthorizationRuleGet": { + "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleGet.json" + } }, "description": "Gets an AuthorizationRule for an Event Hub by rule name.", "parameters": [ @@ -1481,7 +1545,9 @@ ], "operationId": "EventHubs_DeleteAuthorizationRule", "x-ms-examples": { - "EventHubAuthorizationRuleDelete": { "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleDelete.json" } + "EventHubAuthorizationRuleDelete": { + "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleDelete.json" + } }, "description": "Deletes an Event Hub AuthorizationRule.", "parameters": [ @@ -1527,7 +1593,9 @@ ], "operationId": "EventHubs_ListKeys", "x-ms-examples": { - "EventHubAuthorizationRuleListKey": { "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleListKey.json" } + "EventHubAuthorizationRuleListKey": { + "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleListKey.json" + } }, "description": "Gets the ACS and SAS connection strings for the Event Hub.", "parameters": [ @@ -1573,7 +1641,9 @@ ], "operationId": "EventHubs_RegenerateKeys", "x-ms-examples": { - "EventHubAuthorizationRuleRegenerateKey": { "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleRegenerateKey.json" } + "EventHubAuthorizationRuleRegenerateKey": { + "$ref": "./examples/EventHubs/EHEventHubAuthorizationRuleRegenerateKey.json" + } }, "description": "Regenerates the ACS and SAS connection strings for the Event Hub.", "parameters": [ @@ -1628,7 +1698,9 @@ ], "operationId": "ConsumerGroups_CreateOrUpdate", "x-ms-examples": { - "ConsumerGroupCreate": { "$ref": "./examples/ConsumerGroup/EHConsumerGroupCreate.json" } + "ConsumerGroupCreate": { + "$ref": "./examples/ConsumerGroup/EHConsumerGroupCreate.json" + } }, "description": "Creates or updates an Event Hubs consumer group as a nested resource within a Namespace.", "parameters": [ @@ -1681,7 +1753,9 @@ ], "operationId": "ConsumerGroups_Delete", "x-ms-examples": { - "ConsumerGroupDelete": { "$ref": "./examples/ConsumerGroup/EHConsumerGroupDelete.json" } + "ConsumerGroupDelete": { + "$ref": "./examples/ConsumerGroup/EHConsumerGroupDelete.json" + } }, "description": "Deletes a consumer group from the specified Event Hub and resource group.", "parameters": [ @@ -1725,7 +1799,9 @@ ], "operationId": "ConsumerGroups_Get", "x-ms-examples": { - "ConsumerGroupGet": { "$ref": "./examples/ConsumerGroup/EHConsumerGroupGet.json" } + "ConsumerGroupGet": { + "$ref": "./examples/ConsumerGroup/EHConsumerGroupGet.json" + } }, "description": "Gets a description for the specified consumer group.", "parameters": [ @@ -1771,7 +1847,9 @@ ], "operationId": "ConsumerGroups_ListByEventHub", "x-ms-examples": { - "ConsumerGroupsListAll": { "$ref": "./examples/ConsumerGroup/EHConsumerGroupListByEventHub.json" } + "ConsumerGroupsListAll": { + "$ref": "./examples/ConsumerGroup/EHConsumerGroupListByEventHub.json" + } }, "description": "Gets all the consumer groups in a Namespace. An empty feed is returned if no consumer group exists in the Namespace.", "parameters": [ @@ -1823,8 +1901,12 @@ ], "operationId": "Regions_ListBySku", "x-ms-examples": { - "RegionsListBySkuBasic": { "$ref": "./examples/EHRegionsListBySkuBasic.json" }, - "RegionsListBySkuStandard": { "$ref": "./examples/EHRegionsListBySkuStandard.json" } + "RegionsListBySkuBasic": { + "$ref": "./examples/EHRegionsListBySkuBasic.json" + }, + "RegionsListBySkuStandard": { + "$ref": "./examples/EHRegionsListBySkuStandard.json" + } }, "description": "Gets the available Regions for a given sku", "parameters": [ @@ -1857,7 +1939,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/networkRuleSets/default": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/networkRuleSets/default": { "put": { "tags": [ "Namespaces" @@ -2293,7 +2375,6 @@ "captureDescription": { "$ref": "#/definitions/CaptureDescription", "description": "Properties of capture description" - } }, "description": "Properties supplied to the Create Or Update Event Hub operation." @@ -2704,7 +2785,7 @@ ], "description": "Messaging Plan for the namespace" }, - "Subnet": { + "Subnet": { "properties": { "id": { "type": "string", @@ -2899,4 +2980,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupCreate.json index 6daf3ebe8b17..3e5ef9079db4 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupCreate.json @@ -6,23 +6,23 @@ "consumerGroupName": "sdk-ConsumerGroup-5563", "api-version": "2017-04-01", "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", - "parameters": { - "properties": { - "userMetadata": "New consumergroup" - } - } + "parameters": { + "properties": { + "userMetadata": "New consumergroup" + } + } }, "responses": { "200": { "body": { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2661/eventhubs/sdk-EventHub-6681/consumergroups/sdk-ConsumerGroup-5563", - "name": "sdk-ConsumerGroup-5563", - "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups", - "properties": { - "createdAt": "2017-05-25T03:43:09.4536234Z", - "updatedAt": "2017-05-25T03:43:09.4536234Z" - } - } + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2661/eventhubs/sdk-EventHub-6681/consumergroups/sdk-ConsumerGroup-5563", + "name": "sdk-ConsumerGroup-5563", + "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups", + "properties": { + "createdAt": "2017-05-25T03:43:09.4536234Z", + "updatedAt": "2017-05-25T03:43:09.4536234Z" + } + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupDelete.json index 957bba87aa1d..53dd502e6311 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupGet.json index a8c5701bf0b2..fa44e7bcbc85 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupGet.json @@ -10,14 +10,14 @@ "responses": { "200": { "body": { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2661/eventhubs/sdk-EventHub-6681/consumergroups/sdk-ConsumerGroup-5563", - "name": "sdk-ConsumerGroup-5563", - "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups", - "properties": { - "createdAt": "2017-05-25T03:43:08.7152556Z", - "updatedAt": "2017-05-25T03:43:08.7152556Z" - } - } + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2661/eventhubs/sdk-EventHub-6681/consumergroups/sdk-ConsumerGroup-5563", + "name": "sdk-ConsumerGroup-5563", + "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups", + "properties": { + "createdAt": "2017-05-25T03:43:08.7152556Z", + "updatedAt": "2017-05-25T03:43:08.7152556Z" + } + } } } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupListByEventHub.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupListByEventHub.json index 9f2d0be42f56..42aa18e2cd60 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupListByEventHub.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupListByEventHub.json @@ -9,27 +9,27 @@ "responses": { "200": { "body": { - "value": [ - { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2661/eventhubs/sdk-EventHub-6681/consumergroups/$Default", - "name": "$Default", - "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups", - "properties": { - "createdAt": "2017-05-25T03:42:52.287Z", - "updatedAt": "2017-05-25T03:42:52.287Z" - } - }, - { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2661/eventhubs/sdk-EventHub-6681/consumergroups/sdk-consumergroup-5563", - "name": "sdk-consumergroup-5563", - "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups", - "properties": { - "createdAt": "2017-05-25T03:43:09.314Z", - "updatedAt": "2017-05-25T03:43:09.314Z" - } - } - ] - } + "value": [ + { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2661/eventhubs/sdk-EventHub-6681/consumergroups/$Default", + "name": "$Default", + "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups", + "properties": { + "createdAt": "2017-05-25T03:42:52.287Z", + "updatedAt": "2017-05-25T03:42:52.287Z" + } + }, + { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2661/eventhubs/sdk-EventHub-6681/consumergroups/sdk-consumergroup-5563", + "name": "sdk-consumergroup-5563", + "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups", + "properties": { + "createdAt": "2017-05-25T03:43:09.314Z", + "updatedAt": "2017-05-25T03:43:09.314Z" + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupUpdate.json index c5da3e459f6f..697b4fc61af6 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/ConsumerGroup/EHConsumerGroupUpdate.json @@ -6,27 +6,27 @@ "consumerGroupName": "sdk-ConsumerGroup-1535", "api-version": "2017-04-01", "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", - "parameters": { - "properties": { - "userMetadata": "Updated the user meta data" - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-882/eventhubs/sdk-EventHub-8990/consumergroups/sdk-ConsumerGroup-1535", - "name": "sdk-ConsumerGroup-1535", - "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups" - } + "parameters": { + "properties": { + "userMetadata": "Updated the user meta data" + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-882/eventhubs/sdk-EventHub-8990/consumergroups/sdk-ConsumerGroup-1535", + "name": "sdk-ConsumerGroup-1535", + "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups" + } }, "responses": { "200": { "body": { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-882/eventhubs/sdk-EventHub-8990/consumergroups/sdk-ConsumerGroup-1535", - "name": "sdk-ConsumerGroup-1535", - "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups", - "properties": { - "createdAt": "2017-05-31T18:26:47.4845811Z", - "updatedAt": "2017-05-31T18:26:47.4845811Z", - "userMetadata": "Updated the user meta data" - } - } + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-882/eventhubs/sdk-EventHub-8990/consumergroups/sdk-ConsumerGroup-1535", + "name": "sdk-ConsumerGroup-1535", + "type": "Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups", + "properties": { + "createdAt": "2017-05-31T18:26:47.4845811Z", + "updatedAt": "2017-05-31T18:26:47.4845811Z", + "userMetadata": "Updated the user meta data" + } + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EHOperations_List.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EHOperations_List.json index 8d29635d7fa7..2722fb1257b6 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EHOperations_List.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EHOperations_List.json @@ -5,209 +5,209 @@ "responses": { "200": { "body": { - "value": [ - { - "name": "Microsoft.EventHub/checkNameAvailability/action", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "Non Resource Operation", - "operation": "Get namespace availability." - } - }, - { - "name": "Microsoft.EventHub/register/action", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "EventHub Resource Provider", - "operation": "Registers the EventHub Resource Provider" - } - }, - { - "name": "Microsoft.EventHub/namespaces/write", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "Namespace", - "operation": "Create Or Update Namespace " - } - }, - { - "name": "Microsoft.EventHub/namespaces/read", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "Namespace", - "operation": "Get Namespace Resource" - } - }, - { - "name": "Microsoft.EventHub/namespaces/Delete", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "Namespace", - "operation": "Delete Namespace" - } - }, - { - "name": "Microsoft.EventHub/namespaces/authorizationRules/read", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "AuthorizationRules", - "operation": "Get Namespace Authorization Rules" - } - }, - { - "name": "Microsoft.EventHub/namespaces/authorizationRules/write", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "AuthorizationRules", - "operation": "Create or Update Namespace Authorization Rules" - } - }, - { - "name": "Microsoft.EventHub/namespaces/authorizationRules/delete", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "AuthorizationRules", - "operation": "Delete Namespace Authorization Rule" - } - }, - { - "name": "Microsoft.EventHub/namespaces/authorizationRules/listkeys/action", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "AuthorizationRules", - "operation": "Get Namespace Listkeys" - } - }, - { - "name": "Microsoft.EventHub/namespaces/authorizationRules/regenerateKeys/action", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "AuthorizationRules", - "operation": "Resource Regeneratekeys" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventhubs/write", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "EventHub", - "operation": "Create or Update EventHub" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventhubs/read", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "EventHub", - "operation": "Get EventHub" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventhubs/Delete", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "EventHub", - "operation": "Delete EventHub" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/read", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "EventHub AuthorizationRules", - "operation": " Get EventHub Authorization Rules" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "EventHub AuthorizationRules", - "operation": "Create or Update EventHub Authorization Rule" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "EventHub AuthorizationRules", - "operation": "Delete EventHub Authorization Rules" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "EventHub AuthorizationRules", - "operation": "List EventHub keys" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/regenerateKeys/action", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "EventHub AuthorizationRules", - "operation": "Resource Regeneratekeys" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventHubs/consumergroups/write", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "ConsumerGroup", - "operation": "Create or Update ConsumerGroup" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventHubs/consumergroups/read", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "ConsumerGroup", - "operation": "Get ConsumerGroup" - } - }, - { - "name": "Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "ConsumerGroup", - "operation": "Delete ConsumerGroup" - } - }, - { - "name": "Microsoft.EventHub/namespaces/metricDefinitions/read", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "Namespace metrics", - "operation": "Get Namespace metrics" - } - }, - { - "name": "Microsoft.EventHub/namespaces/diagnosticSettings/read", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "Namespace diagnostic settings", - "operation": "Get Namespace diagnostic settings" - } - }, - { - "name": "Microsoft.EventHub/namespaces/diagnosticSettings/write", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "Namespace diagnostic settings", - "operation": "Create or Update Namespace diagnostic settings" - } - }, - { - "name": "Microsoft.EventHub/namespaces/logDefinitions/read", - "display": { - "provider": "Microsoft Azure EventHub", - "resource": "Namespace logs", - "operation": "Get Namespace logs" - } - } - ] - } + "value": [ + { + "name": "Microsoft.EventHub/checkNameAvailability/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Non Resource Operation", + "operation": "Get namespace availability." + } + }, + { + "name": "Microsoft.EventHub/register/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub Resource Provider", + "operation": "Registers the EventHub Resource Provider" + } + }, + { + "name": "Microsoft.EventHub/namespaces/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace", + "operation": "Create Or Update Namespace " + } + }, + { + "name": "Microsoft.EventHub/namespaces/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace", + "operation": "Get Namespace Resource" + } + }, + { + "name": "Microsoft.EventHub/namespaces/Delete", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace", + "operation": "Delete Namespace" + } + }, + { + "name": "Microsoft.EventHub/namespaces/authorizationRules/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "AuthorizationRules", + "operation": "Get Namespace Authorization Rules" + } + }, + { + "name": "Microsoft.EventHub/namespaces/authorizationRules/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "AuthorizationRules", + "operation": "Create or Update Namespace Authorization Rules" + } + }, + { + "name": "Microsoft.EventHub/namespaces/authorizationRules/delete", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "AuthorizationRules", + "operation": "Delete Namespace Authorization Rule" + } + }, + { + "name": "Microsoft.EventHub/namespaces/authorizationRules/listkeys/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "AuthorizationRules", + "operation": "Get Namespace Listkeys" + } + }, + { + "name": "Microsoft.EventHub/namespaces/authorizationRules/regenerateKeys/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "AuthorizationRules", + "operation": "Resource Regeneratekeys" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub", + "operation": "Create or Update EventHub" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub", + "operation": "Get EventHub" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/Delete", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub", + "operation": "Delete EventHub" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub AuthorizationRules", + "operation": " Get EventHub Authorization Rules" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub AuthorizationRules", + "operation": "Create or Update EventHub Authorization Rule" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub AuthorizationRules", + "operation": "Delete EventHub Authorization Rules" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub AuthorizationRules", + "operation": "List EventHub keys" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/regenerateKeys/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub AuthorizationRules", + "operation": "Resource Regeneratekeys" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventHubs/consumergroups/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "ConsumerGroup", + "operation": "Create or Update ConsumerGroup" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventHubs/consumergroups/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "ConsumerGroup", + "operation": "Get ConsumerGroup" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "ConsumerGroup", + "operation": "Delete ConsumerGroup" + } + }, + { + "name": "Microsoft.EventHub/namespaces/metricDefinitions/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace metrics", + "operation": "Get Namespace metrics" + } + }, + { + "name": "Microsoft.EventHub/namespaces/diagnosticSettings/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace diagnostic settings", + "operation": "Get Namespace diagnostic settings" + } + }, + { + "name": "Microsoft.EventHub/namespaces/diagnosticSettings/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace diagnostic settings", + "operation": "Create or Update Namespace diagnostic settings" + } + }, + { + "name": "Microsoft.EventHub/namespaces/logDefinitions/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace logs", + "operation": "Get Namespace logs" + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleCreate.json index 90d090dfc857..619ca52dee7f 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleCreate.json @@ -7,22 +7,27 @@ "api-version": "2017-04-01", "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", "parameters": { - "properties": { - "rights": [ - "Listen", - "Send" - ] - } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } }, "responses": { "200": { "body": { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-960/eventhubs/sdk-EventHub-532/authorizationRules/sdk-Authrules-2513", - "name": "sdk-Authrules-2513", - "type": "Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - } + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-960/eventhubs/sdk-EventHub-532/authorizationRules/sdk-Authrules-2513", + "name": "sdk-Authrules-2513", + "type": "Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleDelete.json index da56b40775ac..1676d142b370 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleGet.json index 9325ce48f000..db8f036a7888 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleGet.json @@ -10,11 +10,16 @@ "responses": { "200": { "body": { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-960/eventhubs/sdk-EventHub-532/authorizationRules/sdk-Authrules-2513", - "name": "sdk-Authrules-2513", - "type": "Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - } + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-960/eventhubs/sdk-EventHub-532/authorizationRules/sdk-Authrules-2513", + "name": "sdk-Authrules-2513", + "type": "Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleListAll.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleListAll.json index fd40f732bc7e..a95a3a8ac576 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleListAll.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleListAll.json @@ -9,15 +9,20 @@ "responses": { "200": { "body": { - "value": [ - { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-960/eventhubs/sdk-EventHub-532/authorizationRules/sdk-Authrules-2513", - "name": "sdk-Authrules-2513", - "type": "Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - } - ] - } + "value": [ + { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-960/eventhubs/sdk-EventHub-532/authorizationRules/sdk-Authrules-2513", + "name": "sdk-Authrules-2513", + "type": "Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleListKey.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleListKey.json index 5c10a7e20d3e..7a1f458b3238 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleListKey.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleListKey.json @@ -10,12 +10,12 @@ "responses": { "200": { "body": { - "primaryConnectionString": "Endpoint=sb://sdk-namespace-960.servicebus.windows-int.net/;SharedAccessKeyName=sdk-Authrules-2513;SharedAccessKey=############################################;EntityPath=sdk-EventHub-532", - "secondaryConnectionString": "Endpoint=sb://sdk-namespace-960.servicebus.windows-int.net/;SharedAccessKeyName=sdk-Authrules-2513;SharedAccessKey=############################################;EntityPath=sdk-EventHub-532", - "primaryKey": "############################################", - "secondaryKey": "############################################", - "keyName": "sdk-Authrules-2513" - } + "primaryConnectionString": "Endpoint=sb://sdk-namespace-960.servicebus.windows-int.net/;SharedAccessKeyName=sdk-Authrules-2513;SharedAccessKey=############################################;EntityPath=sdk-EventHub-532", + "secondaryConnectionString": "Endpoint=sb://sdk-namespace-960.servicebus.windows-int.net/;SharedAccessKeyName=sdk-Authrules-2513;SharedAccessKey=############################################;EntityPath=sdk-EventHub-532", + "primaryKey": "############################################", + "secondaryKey": "############################################", + "keyName": "sdk-Authrules-2513" + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleRegenerateKey.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleRegenerateKey.json index 9879ae50a617..f5d6cdcb9d23 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleRegenerateKey.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleRegenerateKey.json @@ -7,18 +7,18 @@ "api-version": "2017-04-01", "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", "parameters": { - "keyType": "PrimaryKey" - } + "keyType": "PrimaryKey" + } }, "responses": { "200": { "body": { - "primaryConnectionString": "Endpoint=sb://sdk-namespace-9027.servicebus.windows-int.net/;SharedAccessKeyName=sdk-Authrules-1534;SharedAccessKey=#############################################;EntityPath=sdk-EventHub-1647", - "secondaryConnectionString": "Endpoint=sb://sdk-namespace-9027.servicebus.windows-int.net/;SharedAccessKeyName=sdk-Authrules-1534;SharedAccessKey=#############################################;EntityPath=sdk-EventHub-1647", - "primaryKey": "#############################################", - "secondaryKey": "#############################################", - "keyName": "sdk-Authrules-1534" - } + "primaryConnectionString": "Endpoint=sb://sdk-namespace-9027.servicebus.windows-int.net/;SharedAccessKeyName=sdk-Authrules-1534;SharedAccessKey=#############################################;EntityPath=sdk-EventHub-1647", + "secondaryConnectionString": "Endpoint=sb://sdk-namespace-9027.servicebus.windows-int.net/;SharedAccessKeyName=sdk-Authrules-1534;SharedAccessKey=#############################################;EntityPath=sdk-EventHub-1647", + "primaryKey": "#############################################", + "secondaryKey": "#############################################", + "keyName": "sdk-Authrules-1534" + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleUpdate.json index 5dc4abfccf02..3f18b7010177 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubAuthorizationRuleUpdate.json @@ -7,21 +7,25 @@ "api-version": "2017-04-01", "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", "parameters": { - "properties": { - "rights": [ - "Listen" - ] - } - } + "properties": { + "rights": [ + "Listen" + ] + } + } }, "responses": { "200": { "body": { - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-960/eventhubs/sdk-EventHub-532/authorizationRules/sdk-Authrules-2513", - "name": "sdk-Authrules-2513", - "type": "Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules", - "properties": { "rights": [ "Listen" ] } - } + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-960/eventhubs/sdk-EventHub-532/authorizationRules/sdk-Authrules-2513", + "name": "sdk-Authrules-2513", + "type": "Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules", + "properties": { + "rights": [ + "Listen" + ] + } + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubCreate.json index 8c7c6262ae08..b5fdb2067157 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubCreate.json @@ -39,7 +39,12 @@ "status": "Active", "createdAt": "2017-06-28T02:45:55.877Z", "updatedAt": "2017-06-28T02:46:05.877Z", - "partitionIds": [ "0", "1", "2", "3" ], + "partitionIds": [ + "0", + "1", + "2", + "3" + ], "captureDescription": { "enabled": true, "encoding": "Avro", @@ -58,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubDelete.json index 0674a189c411..dc0f0cdea8eb 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubGet.json index ddfd8b56e4b9..aee868c1f814 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubGet.json @@ -18,7 +18,12 @@ "status": "Active", "createdAt": "2017-06-28T02:45:55.877Z", "updatedAt": "2017-06-28T02:46:05.877Z", - "partitionIds": [ "0", "1", "2", "3" ], + "partitionIds": [ + "0", + "1", + "2", + "3" + ], "captureDescription": { "enabled": true, "encoding": "Avro", diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubListByNameSpace.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubListByNameSpace.json index b0cd513887b5..90f1998c3ae7 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubListByNameSpace.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubListByNameSpace.json @@ -20,7 +20,12 @@ "status": "Active", "createdAt": "2017-06-28T02:45:55.877Z", "updatedAt": "2017-06-28T02:46:05.877Z", - "partitionIds": [ "0", "1", "2", "3" ], + "partitionIds": [ + "0", + "1", + "2", + "3" + ], "captureDescription": { "enabled": true, "encoding": "Avro", @@ -41,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubUpdate.json index 535fdfe1eb2b..61159e75563b 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/EventHubs/EHEventHubUpdate.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleCreate.json index f8143d91853a..e172fb235027 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleCreate.json @@ -20,8 +20,13 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2702/AuthorizationRules/sdk-Authrules-1746", "name": "sdk-Authrules-1746", "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleDelete.json index ee6c5d1f334f..3959bf946e15 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleGet.json index 9542dfb59ac4..58933ddd6f8a 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleGet.json @@ -12,8 +12,13 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2702/AuthorizationRules/sdk-Authrules-1746", "name": "sdk-Authrules-1746", "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleListAll.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleListAll.json index bb5d1f32f4fd..1d62c51ef999 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleListAll.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleListAll.json @@ -13,16 +13,27 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2702/AuthorizationRules?api-version=2017-04-01/RootManageSharedAccessKey", "name": "RootManageSharedAccessKey", "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Manage", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Manage", + "Send" + ] + } }, { "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2702/AuthorizationRules?api-version=2017-04-01/sdk-Authrules-1746", "name": "sdk-Authrules-1746", "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } ] } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleListKey.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleListKey.json index b3efe1477c39..e999173bfb53 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleListKey.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleListKey.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleRegenerateKey.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleRegenerateKey.json index 47784b064d9f..31f25dcd6721 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleRegenerateKey.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleRegenerateKey.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleUpdate.json index a2bfa9df1839..30765d61499d 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceAuthorizationRuleUpdate.json @@ -19,8 +19,12 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2702/AuthorizationRules/sdk-Authrules-1746", "name": "sdk-Authrules-1746", "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen" ] } + "properties": { + "rights": [ + "Listen" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceCheckNameAvailability.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceCheckNameAvailability.json index 304f1bb28812..b1f2ccf66711 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceCheckNameAvailability.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceCheckNameAvailability.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceCreate.json index 3c2e7ebd7e50..9b5d1193e4b5 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceCreate.json @@ -42,33 +42,33 @@ "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" } } - }, - "201": { - "body": { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", - "name": "sdk-Namespace-5849", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Created", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", - "createdAt": "2017-05-24T23:23:27.877Z", - "updatedAt": "2017-05-24T23:23:27.877Z", - "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" - } + }, + "201": { + "body": { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", + "name": "sdk-Namespace-5849", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Created", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", + "createdAt": "2017-05-24T23:23:27.877Z", + "updatedAt": "2017-05-24T23:23:27.877Z", + "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" } - }, - "202": {} + } + }, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceDelete.json index b8b3ad3635e0..b697874b2418 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceGet.json index fc61c3002d2f..7a662298808e 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceGet.json @@ -8,55 +8,55 @@ "responses": { "200": { "body": { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", - "name": "sdk-Namespace-5849", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Created", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", - "createdAt": "2017-05-24T23:23:27.877Z", - "updatedAt": "2017-05-24T23:23:27.877Z", - "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" - } - } + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", + "name": "sdk-Namespace-5849", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Created", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", + "createdAt": "2017-05-24T23:23:27.877Z", + "updatedAt": "2017-05-24T23:23:27.877Z", + "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" + } + } }, - "201": { + "201": { "body": { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", - "name": "sdk-Namespace-5849", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Created", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", - "createdAt": "2017-05-24T23:23:27.877Z", - "updatedAt": "2017-05-24T23:23:27.877Z", - "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" - } - } + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", + "name": "sdk-Namespace-5849", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Created", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", + "createdAt": "2017-05-24T23:23:27.877Z", + "updatedAt": "2017-05-24T23:23:27.877Z", + "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" + } + } } } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceList.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceList.json index 5c8d199e1ac0..a05c321ff63a 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceList.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceList.json @@ -1358,4 +1358,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceListByResourceGroup.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceListByResourceGroup.json index be277d878c9d..fc43b939227d 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceListByResourceGroup.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceListByResourceGroup.json @@ -309,4 +309,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceUpdate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceUpdate.json index 6bee975d1190..29a9c6f32529 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceUpdate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/EHNameSpaceUpdate.json @@ -4,66 +4,66 @@ "resourceGroupName": "ArunMonocle", "api-version": "2017-04-01", "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", - "parameters":{ - "location": "South Central US", - "tags": { - "tag3": "value3", - "tag4": "value4" - } - } + "parameters": { + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + } + } }, "responses": { "200": { "body": { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3668", - "name": "sdk-Namespace-3668", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag3": "value3", - "tag4": "value4" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Updating", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3668", - "createdAt": "2017-06-01T21:37:04.46Z", - "updatedAt": "2017-06-01T21:37:53.413Z", - "serviceBusEndpoint": "https://sdk-Namespace-3668.servicebus.windows-int.net:443/" - } - } + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3668", + "name": "sdk-Namespace-3668", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Updating", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3668", + "createdAt": "2017-06-01T21:37:04.46Z", + "updatedAt": "2017-06-01T21:37:53.413Z", + "serviceBusEndpoint": "https://sdk-Namespace-3668.servicebus.windows-int.net:443/" + } + } }, "201": { "body": { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3668", - "name": "sdk-Namespace-3668", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag3": "value3", - "tag4": "value4" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Updating", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3668", - "createdAt": "2017-06-01T21:37:04.46Z", - "updatedAt": "2017-06-01T21:37:53.413Z", - "serviceBusEndpoint": "https://sdk-Namespace-3668.servicebus.windows-int.net:443/" - } - } + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3668", + "name": "sdk-Namespace-3668", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Updating", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3668", + "createdAt": "2017-06-01T21:37:04.46Z", + "updatedAt": "2017-06-01T21:37:53.413Z", + "serviceBusEndpoint": "https://sdk-Namespace-3668.servicebus.windows-int.net:443/" + } + } }, "202": {} } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetCreate.json index 509bc7792ac5..322df5bf0143 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetCreate.json @@ -62,15 +62,21 @@ "defaultAction": "Deny", "virtualNetworkRules": [ { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" + }, "ignoreMissingVnetServiceEndpoint": true }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" + }, "ignoreMissingVnetServiceEndpoint": false }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" + }, "ignoreMissingVnetServiceEndpoint": false } ], @@ -100,4 +106,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetGet.json index 17afbaf88b5f..2deef86c8131 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/EHNetworkRuleSetGet.json @@ -15,15 +15,21 @@ "defaultAction": "Deny", "virtualNetworkRules": [ { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" + }, "ignoreMissingVnetServiceEndpoint": true }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" + }, "ignoreMissingVnetServiceEndpoint": false }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" + }, "ignoreMissingVnetServiceEndpoint": false } ], @@ -53,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleGet.json index 5b68f17551f9..816d91a8eb51 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleGet.json @@ -10,11 +10,16 @@ "responses": { "200": { "body": { - "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-4879", - "name": "sdk-Authrules-4879", - "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - } + "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-4879", + "name": "sdk-Authrules-4879", + "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListAll.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListAll.json index 4cf93f185ee6..5d7edf18a121 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListAll.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListAll.json @@ -9,33 +9,54 @@ "responses": { "200": { "body": { - "value": [ - { - "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/RootManageSharedAccessKey", - "name": "RootManageSharedAccessKey", - "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Manage", "Send" ] } - }, - { - "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-1067", - "name": "sdk-Authrules-1067", - "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - }, - { - "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-1684", - "name": "sdk-Authrules-1684", - "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - }, - { - "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-4879", - "name": "sdk-Authrules-4879", - "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - } - ] - } + "value": [ + { + "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/RootManageSharedAccessKey", + "name": "RootManageSharedAccessKey", + "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Manage", + "Send" + ] + } + }, + { + "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-1067", + "name": "sdk-Authrules-1067", + "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + }, + { + "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-1684", + "name": "sdk-Authrules-1684", + "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + }, + { + "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-4879", + "name": "sdk-Authrules-4879", + "type": "Microsoft.EventHub/Namespaces/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListKey.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListKey.json index 7a0f84b9447a..0a737fe403ff 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListKey.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasAuthorizationRuleListKey.json @@ -10,12 +10,12 @@ "responses": { "200": { "body": { - "aliasPrimaryConnectionString": "Endpoint=sb://sdk-disasterrecovery-4047.servicebus.windows-int.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=############################################", - "aliasSecondaryConnectionString": "Endpoint=sb://sdk-disasterrecovery-4047.servicebus.windows-int.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=############################################", + "aliasPrimaryConnectionString": "Endpoint=sb://sdk-disasterrecovery-4047.servicebus.windows-int.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=############################################", + "aliasSecondaryConnectionString": "Endpoint=sb://sdk-disasterrecovery-4047.servicebus.windows-int.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=############################################", "primaryKey": "############################################", "secondaryKey": "############################################", "keyName": "sdk-Authrules-1746" } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasCheckNameAvailability.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasCheckNameAvailability.json index f856b118c127..002c618a643b 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasCheckNameAvailability.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasCheckNameAvailability.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasCreate.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasCreate.json index 8ecd7319b358..c343a78b5da0 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasCreate.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasCreate.json @@ -27,4 +27,4 @@ }, "201": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasDelete.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasDelete.json index b01a5def8c25..432bcbfe75ae 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasDelete.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasDelete.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasFailOver.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasFailOver.json index 871ce3d48bfc..eba0ce34bcda 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasFailOver.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasFailOver.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasList.json b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasList.json index 37dbbc1a4634..f6e0cc445948 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasList.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasList.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hanaonazure/resource-manager/Microsoft.HanaOnAzure/preview/2017-11-03-preview/examples/HanaInstances_Create.json b/specification/hanaonazure/resource-manager/Microsoft.HanaOnAzure/preview/2017-11-03-preview/examples/HanaInstances_Create.json index 4a6cc5282df7..586006f99966 100644 --- a/specification/hanaonazure/resource-manager/Microsoft.HanaOnAzure/preview/2017-11-03-preview/examples/HanaInstances_Create.json +++ b/specification/hanaonazure/resource-manager/Microsoft.HanaOnAzure/preview/2017-11-03-preview/examples/HanaInstances_Create.json @@ -125,4 +125,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hanaonazure/resource-manager/Microsoft.HanaOnAzure/preview/2017-11-03-preview/examples/HanaInstances_Delete.json b/specification/hanaonazure/resource-manager/Microsoft.HanaOnAzure/preview/2017-11-03-preview/examples/HanaInstances_Delete.json index 24082ed3edda..25dae966084d 100644 --- a/specification/hanaonazure/resource-manager/Microsoft.HanaOnAzure/preview/2017-11-03-preview/examples/HanaInstances_Delete.json +++ b/specification/hanaonazure/resource-manager/Microsoft.HanaOnAzure/preview/2017-11-03-preview/examples/HanaInstances_Delete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/dedicatedhsm.json b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/dedicatedhsm.json index 36c26a2c3cff..fe26f51c7c4b 100644 --- a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/dedicatedhsm.json +++ b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/dedicatedhsm.json @@ -9,7 +9,8 @@ "schemes": [ "https" ], - "security": [{ + "security": [ + { "azure_auth": [ "user_impersonation" ] @@ -35,20 +36,23 @@ "operationId": "DedicatedHsm_CreateOrUpdate", "x-ms-long-running-operation": true, "description": "Create or Update a dedicated HSM in the specified subscription.", - "parameters": [{ + "parameters": [ + { "name": "resourceGroupName", "in": "path", "required": true, "type": "string", "description": "The name of the Resource Group to which the resource belongs." - }, { + }, + { "name": "name", "in": "path", "required": true, "type": "string", "pattern": "^[a-zA-Z0-9-]{3,24}$", "description": "Name of the dedicated Hsm" - }, { + }, + { "name": "parameters", "in": "body", "required": true, @@ -56,9 +60,11 @@ "$ref": "#/definitions/DedicatedHsm" }, "description": "Parameters to create or update the dedicated hsm" - }, { + }, + { "$ref": "#/parameters/ApiVersionParameter" - }, { + }, + { "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -101,20 +107,23 @@ "operationId": "DedicatedHsm_Update", "x-ms-long-running-operation": true, "description": "Update a dedicated HSM in the specified subscription.", - "parameters": [{ + "parameters": [ + { "name": "resourceGroupName", "in": "path", "required": true, "type": "string", "description": "The name of the Resource Group to which the server belongs." - }, { + }, + { "name": "name", "in": "path", "required": true, "type": "string", "pattern": "^[a-zA-Z0-9-]{3,24}$", "description": "Name of the dedicated HSM" - }, { + }, + { "name": "parameters", "in": "body", "required": true, @@ -123,9 +132,11 @@ "$ref": "#/definitions/DedicatedHsmPatchParameters" }, "description": "Parameters to patch the dedicated HSM" - }, { + }, + { "$ref": "#/parameters/ApiVersionParameter" - }, { + }, + { "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -162,21 +173,25 @@ "operationId": "DedicatedHsm_Delete", "x-ms-long-running-operation": true, "description": "Deletes the specified Azure Dedicated HSM.", - "parameters": [{ + "parameters": [ + { "name": "resourceGroupName", "in": "path", "required": true, "type": "string", "description": "The name of the Resource Group to which the dedicated HSM belongs." - }, { + }, + { "name": "name", "in": "path", "required": true, "type": "string", "description": "The name of the dedicated HSM to delete" - }, { + }, + { "$ref": "#/parameters/ApiVersionParameter" - }, { + }, + { "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -215,21 +230,25 @@ ], "operationId": "DedicatedHsm_Get", "description": "Gets the specified Azure dedicated HSM.", - "parameters": [{ + "parameters": [ + { "name": "resourceGroupName", "in": "path", "required": true, "type": "string", "description": "The name of the Resource Group to which the dedicated hsm belongs." - }, { + }, + { "name": "name", "in": "path", "required": true, "type": "string", "description": "The name of the dedicated HSM." - }, { + }, + { "$ref": "#/parameters/ApiVersionParameter" - }, { + }, + { "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -267,21 +286,25 @@ ], "operationId": "DedicatedHsm_ListByResourceGroup", "description": "The List operation gets information about the dedicated hsms associated with the subscription and within the specified resource group.", - "parameters": [{ + "parameters": [ + { "name": "resourceGroupName", "in": "path", "required": true, "type": "string", "description": "The name of the Resource Group to which the dedicated HSM belongs." - }, { + }, + { "name": "$top", "in": "query", "type": "integer", "format": "int32", "description": "Maximum number of results to return." - }, { + }, + { "$ref": "#/parameters/ApiVersionParameter" - }, { + }, + { "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -322,15 +345,18 @@ ], "operationId": "DedicatedHsm_ListBySubscription", "description": "The List operation gets information about the dedicated HSMs associated with the subscription.", - "parameters": [{ + "parameters": [ + { "name": "$top", "in": "query", "type": "integer", "format": "int32", "description": "Maximum number of results to return." - }, { + }, + { "$ref": "#/parameters/ApiVersionParameter" - }, { + }, + { "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -375,14 +401,14 @@ }, "description": "The API entity reference." }, - "NetworkInterface": { + "NetworkInterface": { "properties": { "id": { "readOnly": true, "type": "string", "description": "The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/..." }, - "privateIpAddress": { + "privateIpAddress": { "type": "string", "description": "Private Ip address of the interface" } @@ -392,15 +418,15 @@ "NetworkProfile": { "properties": { "subnet": { - "$ref": "#/definitions/ApiEntityReference", - "description": "Specifies the identifier of the subnet." + "$ref": "#/definitions/ApiEntityReference", + "description": "Specifies the identifier of the subnet." }, "networkInterfaces": { - "type": "array", - "items": { - "$ref": "#/definitions/NetworkInterface" - }, - "description": "Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM." + "type": "array", + "items": { + "$ref": "#/definitions/NetworkInterface" + }, + "description": "Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM." } } }, @@ -434,7 +460,15 @@ "readOnly": true, "type": "string", "description": "Provisioning state.", - "enum": [ "Succeeded", "Provisioning", "Allocating", "Connecting", "Failed", "CheckingQuota", "Deleting" ], + "enum": [ + "Succeeded", + "Provisioning", + "Allocating", + "Connecting", + "Failed", + "CheckingQuota", + "Deleting" + ], "x-ms-enum": { "name": "JsonWebKeyType", "modelAsString": true, @@ -481,7 +515,8 @@ "description": "Properties of the dedicated HSM" } }, - "allOf": [{ + "allOf": [ + { "$ref": "#/definitions/Resource" } ], @@ -628,4 +663,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_CreateOrUpdate.json b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_CreateOrUpdate.json index daec9380477f..a2d30ce4c42f 100644 --- a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_CreateOrUpdate.json +++ b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_CreateOrUpdate.json @@ -1,96 +1,96 @@ { + "parameters": { + "resourceGroupName": "hsm-group", + "name": "hsm1", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-10-31-preview", "parameters": { - "resourceGroupName": "hsm-group", - "name": "hsm1", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-10-31-preview", - "parameters": { - "properties": { - "networkProfile": { - "subnet": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", - "privateIpAddress": "1.0.0.1" - } - ] - }, - "stampId": "stamp01" - }, - "location": "westus", - "sku": { - "name": "SafeNet Luna Network HSM A790" - }, - "tags": { - "Dept": "hsm", - "Environment": "dogfood" + "properties": { + "networkProfile": { + "subnet": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" + }, + "networkInterfaces": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", + "privateIpAddress": "1.0.0.1" } + ] + }, + "stampId": "stamp01" + }, + "location": "westus", + "sku": { + "name": "SafeNet Luna Network HSM A790" + }, + "tags": { + "Dept": "hsm", + "Environment": "dogfood" + } + } + }, + "responses": { + "201": { + "body": { + "properties": { + "networkProfile": { + "subnet": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" + }, + "networkInterfaces": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", + "privateIpAddress": "1.0.0.1" + } + ] + }, + "stampId": "stamp01", + "provisioningState": "Provisioning", + "statusMessage": "DedicatedHsm device is being provisioned." + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", + "name": "hsm1", + "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", + "location": "westus", + "sku": { + "name": "SafeNet Luna Network HSM A790" + }, + "tags": { + "Dept": "hsm", + "Environment": "dogfood" } + } }, - "responses": { - "201": { - "body": { - "properties": { - "networkProfile": { - "subnet": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", - "privateIpAddress": "1.0.0.1" - } - ] - }, - "stampId": "stamp01", - "provisioningState": "Provisioning", - "statusMessage": "DedicatedHsm device is being provisioned." - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", - "name": "hsm1", - "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", - "location": "westus", - "sku": { - "name": "SafeNet Luna Network HSM A790" - }, - "tags": { - "Dept": "hsm", - "Environment": "dogfood" - } - } + "200": { + "body": { + "properties": { + "networkProfile": { + "subnet": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" + }, + "networkInterfaces": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", + "privateIpAddress": "1.0.0.1" + } + ] + }, + "stampId": "stamp01", + "provisioningState": "Succeeded", + "statusMessage": "DedicatedHsm device is functional." }, - "200": { - "body": { - "properties": { - "networkProfile": { - "subnet": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", - "privateIpAddress": "1.0.0.1" - } - ] - }, - "stampId": "stamp01", - "provisioningState": "Succeeded", - "statusMessage": "DedicatedHsm device is functional." - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", - "name": "hsm1", - "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", - "location": "westus", - "sku": { - "name": "SafeNet Luna Network HSM A790" - }, - "tags": { - "Dept": "hsm", - "Environment": "dogfood" - } - } + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", + "name": "hsm1", + "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", + "location": "westus", + "sku": { + "name": "SafeNet Luna Network HSM A790" + }, + "tags": { + "Dept": "hsm", + "Environment": "dogfood" } + } } -} \ No newline at end of file + } +} diff --git a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Delete.json b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Delete.json index 0d44a07fbd2e..a3b2a5432755 100644 --- a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Delete.json +++ b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Delete.json @@ -1,13 +1,13 @@ { - "parameters": { - "resourceGroupName": "hsm-group", - "name": "hsm1", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-10-31-preview" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "resourceGroupName": "hsm-group", + "name": "hsm1", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-10-31-preview" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Get.json b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Get.json index 93986fb65cc1..661d042e750a 100644 --- a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Get.json +++ b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Get.json @@ -1,42 +1,42 @@ { - "parameters": { - "resourceGroupName": "hsm-group", + "parameters": { + "resourceGroupName": "hsm-group", + "name": "hsm1", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-10-31-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "networkProfile": { + "subnet": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" + }, + "networkInterfaces": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", + "privateIpAddress": "1.0.0.1" + } + ] + }, + "stampId": "stamp01", + "provisioningState": "Succeeded", + "statusMessage": "DedicatedHsm device is functional." + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", "name": "hsm1", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-10-31-preview" - }, - "responses": { - "200": { - "body": { - "properties": { - "networkProfile": { - "subnet": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", - "privateIpAddress": "1.0.0.1" - } - ] - }, - "stampId": "stamp01", - "provisioningState": "Succeeded", - "statusMessage": "DedicatedHsm device is functional." - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", - "name": "hsm1", - "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", - "location": "westus", - "sku": { - "name": "SafeNet Luna Network HSM A790" - }, - "tags": { - "Dept": "hsm", - "Environment": "dogfood", - "Slice": "A" - } - } + "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", + "location": "westus", + "sku": { + "name": "SafeNet Luna Network HSM A790" + }, + "tags": { + "Dept": "hsm", + "Environment": "dogfood", + "Slice": "A" } + } } -} \ No newline at end of file + } +} diff --git a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_ListByResourceGroup.json b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_ListByResourceGroup.json index 9f35454fc969..b343a4345a8a 100644 --- a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_ListByResourceGroup.json +++ b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_ListByResourceGroup.json @@ -1,76 +1,76 @@ { - "parameters": { - "resourceGroupName": "hsm-group", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-10-31-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "networkProfile": { - "subnet": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", - "privateIpAddress": "1.0.0.1" - } - ] - }, - "stampId": "stamp01", - "provisioningState": "Succeeded", - "statusMessage": "DedicatedHsm device is functional." - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", - "name": "hsm1", - "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", - "location": "westus", - "sku": { - "name": "SafeNet Luna Network HSM A790" - }, - "tags": { - "Dept": "hsm", - "Environment": "dogfood", - "Slice": "A" - } - }, - { - "properties": { - "networkProfile": { - "subnet": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", - "privateIpAddress": "1.0.0.2" - } - ] - }, - "stampId": "stamp01", - "provisioningState": "Succeeded", - "statusMessage": "DedicatedHsm device is functional." - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm2", - "name": "hsm1", - "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", - "location": "westus", - "sku": { - "name": "SafeNet Luna Network HSM A790" - }, - "tags": { - "Dept": "hsm", - "Environment": "dogfood", - "Slice": "B" - } - } - ], - "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31-preview&$skiptoken=dmF1bHQtcGVza3ktanVyeS03MzA3Ng==" + "parameters": { + "resourceGroupName": "hsm-group", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-10-31-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "networkProfile": { + "subnet": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" + }, + "networkInterfaces": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", + "privateIpAddress": "1.0.0.1" + } + ] + }, + "stampId": "stamp01", + "provisioningState": "Succeeded", + "statusMessage": "DedicatedHsm device is functional." + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", + "name": "hsm1", + "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", + "location": "westus", + "sku": { + "name": "SafeNet Luna Network HSM A790" + }, + "tags": { + "Dept": "hsm", + "Environment": "dogfood", + "Slice": "A" } - } + }, + { + "properties": { + "networkProfile": { + "subnet": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" + }, + "networkInterfaces": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", + "privateIpAddress": "1.0.0.2" + } + ] + }, + "stampId": "stamp01", + "provisioningState": "Succeeded", + "statusMessage": "DedicatedHsm device is functional." + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm2", + "name": "hsm1", + "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", + "location": "westus", + "sku": { + "name": "SafeNet Luna Network HSM A790" + }, + "tags": { + "Dept": "hsm", + "Environment": "dogfood", + "Slice": "B" + } + } + ], + "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31-preview&$skiptoken=dmF1bHQtcGVza3ktanVyeS03MzA3Ng==" + } } -} \ No newline at end of file + } +} diff --git a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_ListBySubscription.json b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_ListBySubscription.json index 90866755637d..d5268cb396e4 100644 --- a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_ListBySubscription.json +++ b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_ListBySubscription.json @@ -1,75 +1,75 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-10-31-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "networkProfile": { - "subnet": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", - "privateIpAddress": "1.0.0.1" - } - ] - }, - "stampId": "stamp01", - "provisioningState": "Succeeded", - "statusMessage": "DedicatedHsm device is functional." - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", - "name": "hsm1", - "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", - "location": "westus", - "sku": { - "name": "SafeNet Luna Network HSM A790" - }, - "tags": { - "Dept": "hsm", - "Environment": "dogfood", - "Slice": "A" - } - }, - { - "properties": { - "networkProfile": { - "subnet": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", - "privateIpAddress": "1.0.0.2" - } - ] - }, - "stampId": "stamp01", - "provisioningState": "Succeeded", - "statusMessage": "DedicatedHsm device is functional." - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm2", - "name": "hsm1", - "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", - "location": "westus", - "sku": { - "name": "SafeNet Luna Network HSM A790" - }, - "tags": { - "Dept": "hsm", - "Environment": "dogfood", - "Slice": "B" - } - } - ], - "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31-preview&$skiptoken=dmF1bHQtcGVza3ktanVyeS03MzA3Ng==" + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-10-31-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "networkProfile": { + "subnet": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" + }, + "networkInterfaces": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", + "privateIpAddress": "1.0.0.1" + } + ] + }, + "stampId": "stamp01", + "provisioningState": "Succeeded", + "statusMessage": "DedicatedHsm device is functional." + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", + "name": "hsm1", + "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", + "location": "westus", + "sku": { + "name": "SafeNet Luna Network HSM A790" + }, + "tags": { + "Dept": "hsm", + "Environment": "dogfood", + "Slice": "A" } - } + }, + { + "properties": { + "networkProfile": { + "subnet": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" + }, + "networkInterfaces": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", + "privateIpAddress": "1.0.0.2" + } + ] + }, + "stampId": "stamp01", + "provisioningState": "Succeeded", + "statusMessage": "DedicatedHsm device is functional." + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm2", + "name": "hsm1", + "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", + "location": "westus", + "sku": { + "name": "SafeNet Luna Network HSM A790" + }, + "tags": { + "Dept": "hsm", + "Environment": "dogfood", + "Slice": "B" + } + } + ], + "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31-preview&$skiptoken=dmF1bHQtcGVza3ktanVyeS03MzA3Ng==" + } } -} \ No newline at end of file + } +} diff --git a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Update.json b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Update.json index 36758632cb28..18a78b7a583c 100644 --- a/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Update.json +++ b/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/examples/DedicatedHsm_Update.json @@ -1,49 +1,49 @@ { + "parameters": { + "resourceGroupName": "hsm-group", + "name": "hsm1", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-10-31-preview", "parameters": { - "resourceGroupName": "hsm-group", + "tags": { + "Dept": "hsm", + "Environment": "dogfood", + "Slice": "A" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "networkProfile": { + "subnet": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" + }, + "networkInterfaces": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", + "privateIpAddress": "1.0.0.1" + } + ] + }, + "stampId": "stamp01", + "provisioningState": "Succeeded", + "statusMessage": "DedicatedHsm device is functional." + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", "name": "hsm1", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-10-31-preview", - "parameters": { - "tags": { - "Dept": "hsm", - "Environment": "dogfood", - "Slice": "A" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "networkProfile": { - "subnet": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/stamp01/subnets/stamp01" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", - "privateIpAddress": "1.0.0.1" - } - ] - }, - "stampId": "stamp01", - "provisioningState": "Succeeded", - "statusMessage": "DedicatedHsm device is functional." - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm1", - "name": "hsm1", - "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", - "location": "westus", - "sku": { - "name": "SafeNet Luna Network HSM A790" - }, - "tags": { - "Dept": "hsm", - "Environment": "dogfood", - "Slice": "A" - } - } + "type": "Microsoft.HardwareSecurityModules/dedicatedHSMs", + "location": "westus", + "sku": { + "name": "SafeNet Luna Network HSM A790" + }, + "tags": { + "Dept": "hsm", + "Environment": "dogfood", + "Slice": "A" } + } } -} \ No newline at end of file + } +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Create-PUT-example-41.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Create-PUT-example-41.json index e3fed46035e4..8dc05f4563c7 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Create-PUT-example-41.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Create-PUT-example-41.json @@ -30,7 +30,7 @@ "202": { "body": "" }, - "200": { + "200": { "body": { "etag": "W/\"datetime'2019-04-10T09%3A08%3A57.4101089Z'\"_W/\"datetime'2019-04-10T09%3A08%3A57.5552101Z'\"", "id": "/subscriptions/6e0219f5-327a-4365-904f-05eed4227ad7/resourceGroups/ResourceGroupForSDKTest/providers/Microsoft.HybridData/dataManagers/TestAzureSDKOperations", @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Delete-DELETE-example-41.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Delete-DELETE-example-41.json index f64e1711d53a..d22a70af04b5 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Delete-DELETE-example-41.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Delete-DELETE-example-41.json @@ -24,6 +24,5 @@ "204": { "body": "" } - } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Get-GET-example-41.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Get-GET-example-41.json index 34a1288da8a2..2add2fdb8a23 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Get-GET-example-41.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Get-GET-example-41.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_List-GET-example-21.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_List-GET-example-21.json index e97eb8fdcca7..be24f36dbfdc 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_List-GET-example-21.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_List-GET-example-21.json @@ -933,4 +933,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_ListByResourceGroup-GET-example-31.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_ListByResourceGroup-GET-example-31.json index 1114f1bb0dc1..72185cff45bf 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_ListByResourceGroup-GET-example-31.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_ListByResourceGroup-GET-example-31.json @@ -101,4 +101,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Update-PATCH-example-43.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Update-PATCH-example-43.json index 742c00dd627f..c6a9b095d51e 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Update-PATCH-example-43.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataManagers_Update-PATCH-example-43.json @@ -33,7 +33,7 @@ "202": { "body": "" }, - "200": { + "200": { "body": { "etag": "W/\"datetime'2019-04-10T09%3A23%3A57.1833483Z'\"_W/\"datetime'2019-04-10T09%3A23%3A57.1993588Z'\"", "id": "/subscriptions/6e0219f5-327a-4365-904f-05eed4227ad7/resourceGroups/ResourceGroupForSDKTest/providers/Microsoft.HybridData/dataManagers/TestAzureSDKOperations", @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataServices_Get-GET-example-62.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataServices_Get-GET-example-62.json index 04bd451f6d33..eae732e615e5 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataServices_Get-GET-example-62.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataServices_Get-GET-example-62.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataServices_ListByDataManager-GET-example-51.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataServices_ListByDataManager-GET-example-51.json index a52514c42a2d..aa8402028e45 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataServices_ListByDataManager-GET-example-51.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataServices_ListByDataManager-GET-example-51.json @@ -106,4 +106,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_Get-GET-example-182.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_Get-GET-example-182.json index d232a98a91bc..3cfcfabcb172 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_Get-GET-example-182.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_Get-GET-example-182.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_Get-GET-example-183.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_Get-GET-example-183.json index a66fc1488aba..f12d824d19c0 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_Get-GET-example-183.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_Get-GET-example-183.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_ListByDataManager-GET-example-171.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_ListByDataManager-GET-example-171.json index c294eea0ece7..7be5d5715925 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_ListByDataManager-GET-example-171.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStoreTypes_ListByDataManager-GET-example-171.json @@ -101,4 +101,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_CreateOrUpdate_DataSink-PUT-example-162.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_CreateOrUpdate_DataSink-PUT-example-162.json index 8333673c1905..3129b2cde488 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_CreateOrUpdate_DataSink-PUT-example-162.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_CreateOrUpdate_DataSink-PUT-example-162.json @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_CreateOrUpdate_DataSource-PUT-example-162.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_CreateOrUpdate_DataSource-PUT-example-162.json index 608f2a266e44..37b6b4603ddd 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_CreateOrUpdate_DataSource-PUT-example-162.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_CreateOrUpdate_DataSource-PUT-example-162.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Delete_DataSink-DELETE-example-161.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Delete_DataSink-DELETE-example-161.json index 2966db115576..158bfb2d7ba3 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Delete_DataSink-DELETE-example-161.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Delete_DataSink-DELETE-example-161.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Delete_DataSource-DELETE-example-161.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Delete_DataSource-DELETE-example-161.json index a38893d9068f..38c61fe70aec 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Delete_DataSource-DELETE-example-161.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Delete_DataSource-DELETE-example-161.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Get-GET-example-161.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Get-GET-example-161.json index 1a75793efdc2..e6a204696448 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Get-GET-example-161.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Get-GET-example-161.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Get-GET-example-162.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Get-GET-example-162.json index c06ca2aca7e6..0ebe6aaa5ba3 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Get-GET-example-162.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_Get-GET-example-162.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_ListByDataManager-GET-example-151.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_ListByDataManager-GET-example-151.json index 57ad593a91da..bb5a0dee4d53 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_ListByDataManager-GET-example-151.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/DataStores_ListByDataManager-GET-example-151.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_CreateOrUpdate-PUT-example-83.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_CreateOrUpdate-PUT-example-83.json index dc87ef4471bb..06c7a2ff2820 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_CreateOrUpdate-PUT-example-83.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_CreateOrUpdate-PUT-example-83.json @@ -83,4 +83,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Delete-DELETE-example-81.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Delete-DELETE-example-81.json index 6178b86f4439..43c643ba4d77 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Delete-DELETE-example-81.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Delete-DELETE-example-81.json @@ -27,4 +27,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Get-GET-example-81.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Get-GET-example-81.json index 5cf6856f67ee..cefc4772b8f6 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Get-GET-example-81.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Get-GET-example-81.json @@ -51,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_ListByDataManager-GET-example-191.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_ListByDataManager-GET-example-191.json index 822b6c44d150..fcab9f535bcf 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_ListByDataManager-GET-example-191.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_ListByDataManager-GET-example-191.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_ListByDataService-GET-example-71.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_ListByDataService-GET-example-71.json index bbc698a4d0fe..83b201fbd5b4 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_ListByDataService-GET-example-71.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_ListByDataService-GET-example-71.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Run-POST-example-132.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Run-POST-example-132.json index 636e407b8748..e68991154c56 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Run-POST-example-132.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/JobDefinitions_Run-POST-example-132.json @@ -51,4 +51,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Cancel-POST-example-111.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Cancel-POST-example-111.json index 2982b04e4118..2471607bb155 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Cancel-POST-example-111.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Cancel-POST-example-111.json @@ -28,4 +28,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Get-GET-example-101.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Get-GET-example-101.json index a42ba22e3320..d38c703fcce8 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Get-GET-example-101.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Get-GET-example-101.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByDataManager-GET-example-201.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByDataManager-GET-example-201.json index abc530b4d1f9..c0721acb1faf 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByDataManager-GET-example-201.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByDataManager-GET-example-201.json @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByDataService-GET-example-141.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByDataService-GET-example-141.json index ba5caf27d7d3..7fc10af4a35c 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByDataService-GET-example-141.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByDataService-GET-example-141.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByJobDefinition-GET-example-91.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByJobDefinition-GET-example-91.json index 7c1c0cb821c5..da706483e2a2 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByJobDefinition-GET-example-91.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_ListByJobDefinition-GET-example-91.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Resume-POST-example-121.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Resume-POST-example-121.json index aed00ad7d2c1..ccc8532807da 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Resume-POST-example-121.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Jobs_Resume-POST-example-121.json @@ -28,4 +28,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Operations_List-GET-example-11.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Operations_List-GET-example-11.json index ae8c7d456252..8f688f5ec025 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Operations_List-GET-example-11.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/Operations_List-GET-example-11.json @@ -297,4 +297,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/PublicKeys_Get-GET-example-222.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/PublicKeys_Get-GET-example-222.json index 0d98a0de6fe7..0d971801affe 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/PublicKeys_Get-GET-example-222.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/PublicKeys_Get-GET-example-222.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/PublicKeys_ListByDataManager-GET-example-211.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/PublicKeys_ListByDataManager-GET-example-211.json index 879a880eb7ce..47488c24120e 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/PublicKeys_ListByDataManager-GET-example-211.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/examples/PublicKeys_ListByDataManager-GET-example-211.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/hybriddata.json b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/hybriddata.json index 8ff2b53bcee4..9e35551cdd6a 100644 --- a/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/hybriddata.json +++ b/specification/hybriddatamanager/resource-manager/Microsoft.HybridData/stable/2016-06-01/hybriddata.json @@ -369,7 +369,7 @@ "DataServices_ListByDataManagerGET51": { "$ref": "./examples/DataServices_ListByDataManager-GET-example-51.json" } - } + } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridData/dataManagers/{dataManagerName}/dataServices/{dataServiceName}": { @@ -418,7 +418,7 @@ "DataServices_GetGET62": { "$ref": "./examples/DataServices_Get-GET-example-62.json" } - } + } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridData/dataManagers/{dataManagerName}/dataServices/{dataServiceName}/jobDefinitions": { @@ -534,7 +534,7 @@ "JobDefinitions_GetGET81": { "$ref": "./examples/JobDefinitions_Get-GET-example-81.json" } - } + } }, "put": { "tags": [ @@ -2648,4 +2648,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/DeleteImageTemplate.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/DeleteImageTemplate.json index 80fe8d5c44d6..ae1ec99b2696 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/DeleteImageTemplate.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/DeleteImageTemplate.json @@ -2,10 +2,10 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2018-02-01-preview" }, - "responses":{ + "responses": { "202": { "headers": { "Azure-AsyncOperation": "https://management.azure.com/subscriptions/{subscription-id}/providers/Microsoft.VirtualMachineImages/locations/westus/operations/85506efc-36f7-11e9-a0c2-000d3afd16e3?api-version=2018-02-01-preview" diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/GetRunOutput.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/GetRunOutput.json index d7ef1d1c3a52..ebc7e90bb29a 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/GetRunOutput.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/GetRunOutput.json @@ -2,13 +2,13 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "runOutputName": "myManagedImageOutput", "api-version": "2018-02-01-preview" }, - "responses":{ + "responses": { "200": { - "body":{ + "body": { "id": "/subscriptions/{subscription-id}/resourcegroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate/runOutputs/myManagedImageOutput", "name": "myManagedImageOutput", "properties": { diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/ListImageTemplatesByRg.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/ListImageTemplatesByRg.json index d74c8cf3ef8b..b0c4f9b40180 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/ListImageTemplatesByRg.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/ListImageTemplatesByRg.json @@ -69,7 +69,10 @@ { "type": "sharedImage", "galleryImageId": "/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Compute/gallery/baseimages/images/baseimage", - "replicationRegions":[ "eastus", "westus"], + "replicationRegions": [ + "eastus", + "westus" + ], "runOutputName": "gallery", "imageId": "/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Compute/images/baseimage-eus" } diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/ListRunOutputs.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/ListRunOutputs.json index 40491e85e862..ed8b88518cc2 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/ListRunOutputs.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/ListRunOutputs.json @@ -2,12 +2,12 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2018-02-01-preview" }, - "responses":{ + "responses": { "200": { - "body":{ + "body": { "value": [ { "id": "/subscriptions/{subscription-id}/resourcegroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate/runOutputs/myManagedImageOutput", diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/RunImageTemplate.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/RunImageTemplate.json index 30261f6efacf..b41ff971f0cb 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/RunImageTemplate.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/RunImageTemplate.json @@ -2,11 +2,11 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2018-02-01-preview" }, - "responses":{ - "202":{ + "responses": { + "202": { "headers": { "Azure-AsyncOperation": "https://management.azure.com/subscriptions/{subscription-id}/providers/Microsoft.VirtualMachineImages/locations/westus/operations/777b2050-36f8-11e9-b8fa-000d3afd16e3?api-version=2018-02-01-preview" } diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/UpdateImageTemplateTags.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/UpdateImageTemplateTags.json index 937bea1ea289..aa2080127f53 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/UpdateImageTemplateTags.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/examples/UpdateImageTemplateTags.json @@ -2,15 +2,15 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2018-02-01-preview", - "parameters":{ + "parameters": { "tags": { "new-tag": "new-value" } } }, - "responses":{ + "responses": { "200": { "body": { "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate", @@ -46,6 +46,6 @@ ] } } - } + } } } diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/imagebuilder.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/imagebuilder.json index d347af32d4bc..417a64506ddb 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/imagebuilder.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2018-02-01-preview/imagebuilder.json @@ -172,7 +172,7 @@ }, "x-ms-long-running-operation": true, "x-ms-long-running-operation-options": { - "final-state-via":"azure-async-operation" + "final-state-via": "azure-async-operation" } }, "patch": { @@ -303,7 +303,7 @@ }, "x-ms-long-running-operation": true, "x-ms-long-running-operation-options": { - "final-state-via":"azure-async-operation" + "final-state-via": "azure-async-operation" }, "x-ms-examples": { "Delete an Image Template.": { @@ -349,7 +349,7 @@ }, "x-ms-long-running-operation": true, "x-ms-long-running-operation-options": { - "final-state-via":"azure-async-operation" + "final-state-via": "azure-async-operation" }, "x-ms-examples": { "Create image(s) from existing imageTemplate.": { @@ -481,7 +481,7 @@ } }, "definitions": { - "ImageTemplateListResult" : { + "ImageTemplateListResult": { "properties": { "value": { "type": "array", @@ -691,7 +691,7 @@ "description": "Error code of the provisioning failure" }, "message": { - "type":"string", + "type": "string", "description": "Verbose error message about the provisioning failure" } } @@ -863,7 +863,10 @@ "location": { "type": "string", "description": "Resource location", - "x-ms-mutability": [ "create", "read" ] + "x-ms-mutability": [ + "create", + "read" + ] }, "tags": { "type": "object", diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/DeleteImageTemplate.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/DeleteImageTemplate.json index 737024b70b17..e5ddb02cf671 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/DeleteImageTemplate.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/DeleteImageTemplate.json @@ -2,10 +2,10 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2019-02-01-preview" }, - "responses":{ + "responses": { "202": { "headers": { "Azure-AsyncOperation": "https://management.azure.com/subscriptions/{subscription-id}/providers/Microsoft.VirtualMachineImages/locations/westus/operations/85506efc-36f7-11e9-a0c2-000d3afd16e3?api-version=2018-02-01-preview" diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/GetRunOutput.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/GetRunOutput.json index 1e16b8ea9f2f..67accf70efbf 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/GetRunOutput.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/GetRunOutput.json @@ -2,13 +2,13 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "runOutputName": "myManagedImageOutput", "api-version": "2019-02-01-preview" }, - "responses":{ + "responses": { "200": { - "body":{ + "body": { "id": "/subscriptions/{subscription-id}/resourcegroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate/runOutputs/myManagedImageOutput", "name": "myManagedImageOutput", "properties": { diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/ListImageTemplatesByRg.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/ListImageTemplatesByRg.json index b90ebc7ca10b..3b33219f44aa 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/ListImageTemplatesByRg.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/ListImageTemplatesByRg.json @@ -69,7 +69,10 @@ { "type": "SharedImage", "galleryImageId": "/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Compute/gallery/baseimages/images/baseimage", - "replicationRegions":[ "eastus", "westus"], + "replicationRegions": [ + "eastus", + "westus" + ], "runOutputName": "gallery", "imageId": "/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Compute/images/baseimage-eus" } diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/ListRunOutputs.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/ListRunOutputs.json index aeaad646ca66..14d11a88229e 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/ListRunOutputs.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/ListRunOutputs.json @@ -2,12 +2,12 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2019-02-01-preview" }, - "responses":{ + "responses": { "200": { - "body":{ + "body": { "value": [ { "id": "/subscriptions/{subscription-id}/resourcegroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate/runOutputs/myManagedImageOutput", diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/RunImageTemplate.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/RunImageTemplate.json index a00363b0d347..9a2dc3cb10c4 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/RunImageTemplate.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/RunImageTemplate.json @@ -2,11 +2,11 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2019-02-01-preview" }, - "responses":{ - "202":{ + "responses": { + "202": { "headers": { "Azure-AsyncOperation": "https://management.azure.com/subscriptions/{subscription-id}/providers/Microsoft.VirtualMachineImages/locations/westus/operations/777b2050-36f8-11e9-b8fa-000d3afd16e3?api-version=2018-02-01-preview" } diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/UpdateImageTemplateTags.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/UpdateImageTemplateTags.json index de7627d76fef..b7e177eedf2c 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/UpdateImageTemplateTags.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/examples/UpdateImageTemplateTags.json @@ -2,15 +2,15 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2019-02-01-preview", - "parameters":{ + "parameters": { "tags": { "new-tag": "new-value" } } }, - "responses":{ + "responses": { "200": { "body": { "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate", @@ -46,6 +46,6 @@ ] } } - } + } } } diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/imagebuilder.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/imagebuilder.json index c0cc8c4fc6e2..53c27ee0b519 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/imagebuilder.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-02-01-preview/imagebuilder.json @@ -172,7 +172,7 @@ }, "x-ms-long-running-operation": true, "x-ms-long-running-operation-options": { - "final-state-via":"azure-async-operation" + "final-state-via": "azure-async-operation" } }, "patch": { @@ -303,7 +303,7 @@ }, "x-ms-long-running-operation": true, "x-ms-long-running-operation-options": { - "final-state-via":"azure-async-operation" + "final-state-via": "azure-async-operation" }, "x-ms-examples": { "Delete an Image Template.": { @@ -349,7 +349,7 @@ }, "x-ms-long-running-operation": true, "x-ms-long-running-operation-options": { - "final-state-via":"azure-async-operation" + "final-state-via": "azure-async-operation" }, "x-ms-examples": { "Create image(s) from existing imageTemplate.": { @@ -481,7 +481,7 @@ } }, "definitions": { - "ImageTemplateListResult" : { + "ImageTemplateListResult": { "properties": { "value": { "type": "array", @@ -563,13 +563,13 @@ "allOf": [ { "$ref": "#/definitions/ImageTemplateSource" - } + } ], "properties": { "imageId": { "type": "string", "description": "ARM resource id of the managed image in customer subscription" - } + } }, "required": [ "imageId" @@ -656,7 +656,7 @@ "type": "string" } }, - "validExitCodes" : { + "validExitCodes": { "type": "array", "description": "Valid exit codes for the PowerShell script. [Default: 0]", "items": { @@ -782,7 +782,7 @@ "description": "Error code of the provisioning failure" }, "message": { - "type":"string", + "type": "string", "description": "Verbose error message about the provisioning failure" } } @@ -957,7 +957,10 @@ "location": { "type": "string", "description": "Resource location", - "x-ms-mutability": [ "create", "read" ] + "x-ms-mutability": [ + "create", + "read" + ] }, "tags": { "type": "object", diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/DeleteImageTemplate.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/DeleteImageTemplate.json index dc4f7d07c7ef..fbe9c0eb26ae 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/DeleteImageTemplate.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/DeleteImageTemplate.json @@ -2,10 +2,10 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2019-05-01-preview" }, - "responses":{ + "responses": { "202": { "headers": { "Azure-AsyncOperation": "https://management.azure.com/subscriptions/{subscription-id}/providers/Microsoft.VirtualMachineImages/locations/{location}/operations/{operation-id}?api-version=2019-05-01-preview" diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/GetRunOutput.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/GetRunOutput.json index 83ae58d56c63..e2bd93470237 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/GetRunOutput.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/GetRunOutput.json @@ -2,13 +2,13 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "runOutputName": "myManagedImageOutput", "api-version": "2019-05-01-preview" }, - "responses":{ + "responses": { "200": { - "body":{ + "body": { "id": "/subscriptions/{subscription-id}/resourcegroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate/runOutputs/myManagedImageOutput", "name": "myManagedImageOutput", "properties": { diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/ListImageTemplatesByRg.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/ListImageTemplatesByRg.json index 24262e24f3f8..b68152ea6325 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/ListImageTemplatesByRg.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/ListImageTemplatesByRg.json @@ -69,7 +69,10 @@ { "type": "SharedImage", "galleryImageId": "/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Compute/gallery/baseimages/images/baseimage", - "replicationRegions":[ "eastus", "westus"], + "replicationRegions": [ + "eastus", + "westus" + ], "runOutputName": "gallery" } ] diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/ListRunOutputs.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/ListRunOutputs.json index 898b0b682282..5c4c1a148356 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/ListRunOutputs.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/ListRunOutputs.json @@ -2,12 +2,12 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2019-05-01-preview" }, - "responses":{ + "responses": { "200": { - "body":{ + "body": { "value": [ { "id": "/subscriptions/{subscription-id}/resourcegroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate/runOutputs/myManagedImageOutput", diff --git a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/RunImageTemplate.json b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/RunImageTemplate.json index 5c6f65b35b59..718c1457cae0 100644 --- a/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/RunImageTemplate.json +++ b/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/preview/2019-05-01-preview/examples/RunImageTemplate.json @@ -2,15 +2,15 @@ "parameters": { "subscriptionId": "{subscription-id}", "resourceGroupName": "myResourceGroup", - "imageTemplateName":"myImageTemplate", + "imageTemplateName": "myImageTemplate", "api-version": "2019-05-01-preview" }, - "responses":{ - "202":{ + "responses": { + "202": { "headers": { "Azure-AsyncOperation": "https://management.azure.com/subscriptions/{subscription-id}/providers/Microsoft.VirtualMachineImages/locations/{location}/operations/{operation-id}?api-version=2019-05-01-preview" } }, - "204":{} + "204": {} } } diff --git a/specification/intune/resource-manager/Microsoft.Intune/preview/2015-01-14-preview/intune.json b/specification/intune/resource-manager/Microsoft.Intune/preview/2015-01-14-preview/intune.json index a57d5d1377a9..d68efe39d150 100644 --- a/specification/intune/resource-manager/Microsoft.Intune/preview/2015-01-14-preview/intune.json +++ b/specification/intune/resource-manager/Microsoft.Intune/preview/2015-01-14-preview/intune.json @@ -2495,4 +2495,4 @@ "description": "Service Api Version." } } -} \ No newline at end of file +} diff --git a/specification/intune/resource-manager/Microsoft.Intune/preview/2015-01-14-privatepreview/intune.json b/specification/intune/resource-manager/Microsoft.Intune/preview/2015-01-14-privatepreview/intune.json index 620d04da427d..f47b20d070e0 100644 --- a/specification/intune/resource-manager/Microsoft.Intune/preview/2015-01-14-privatepreview/intune.json +++ b/specification/intune/resource-manager/Microsoft.Intune/preview/2015-01-14-privatepreview/intune.json @@ -2490,4 +2490,4 @@ "description": "Service Api Version." } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_CheckNameAvailability.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_CheckNameAvailability.json index 0b6098bd619f..c631a16720e6 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_CheckNameAvailability.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_CheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_CreateOrUpdate.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_CreateOrUpdate.json index d894da696294..a0c5c2f7753a 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_CreateOrUpdate.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_CreateOrUpdate.json @@ -53,4 +53,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Delete.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Delete.json index 85a89bf34018..c5e0e72bf9d8 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Delete.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Delete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Get.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Get.json index 07dd1f85209c..75c2f159cdab 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Get.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Get.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_ListByResourceGroup.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_ListByResourceGroup.json index 846e92484a2f..24016a92867c 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_ListByResourceGroup.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_ListByResourceGroup.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_ListBySubscription.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_ListBySubscription.json index 01929b226fe0..0dc864659d14 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_ListBySubscription.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_ListBySubscription.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Update.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Update.json index ed53dc94cd68..d84a44a5e92c 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Update.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Apps_Update.json @@ -29,4 +29,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Operations_List.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Operations_List.json index 498ce5dfd996..a59174b0144d 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Operations_List.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/preview/2017-07-01-privatepreview/examples/Operations_List.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CheckNameAvailability.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CheckNameAvailability.json index daa814b1499f..0996f65a1ee7 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CheckNameAvailability.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CheckNameAvailability.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CheckSubdomainAvailability.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CheckSubdomainAvailability.json index 1d7bac270480..ab65e95d2f3d 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CheckSubdomainAvailability.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CheckSubdomainAvailability.json @@ -11,7 +11,7 @@ "200": { "description": "Returns information about resource subdomain availability", "headers": { - "code": "200" + "code": "200" }, "body": { "nameAvailable": true @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CreateOrUpdate.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CreateOrUpdate.json index 8416e881acd2..9d626fc30b83 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CreateOrUpdate.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_CreateOrUpdate.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Delete.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Delete.json index 6cadd187fed0..335c6cb51d5b 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Delete.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Delete.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Get.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Get.json index fe6000962120..82b75ed101be 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Get.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Get.json @@ -29,7 +29,7 @@ "name": "F1" } } - }, + }, "default": { "description": "Error message returned for an unexpected response", "headers": {}, @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_ListByResourceGroup.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_ListByResourceGroup.json index d3321d10ea59..c44ed4df8d63 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_ListByResourceGroup.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_ListByResourceGroup.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_ListBySubscription.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_ListBySubscription.json index 6392fc8ad6bb..9952cbcd8470 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_ListBySubscription.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_ListBySubscription.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Templates.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Templates.json index 2b244dee3848..9a80de984780 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Templates.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Templates.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Update.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Update.json index 431b094216d8..ba7205ca84ad 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Update.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Apps_Update.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Operations_List.json b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Operations_List.json index 121472301642..2c26d0ba9936 100644 --- a/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Operations_List.json +++ b/specification/iotcentral/resource-manager/Microsoft.IoTCentral/stable/2018-09-01/examples/Operations_List.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/labservices/resource-manager/Microsoft.LabServices/stable/2018-10-15/ML.json b/specification/labservices/resource-manager/Microsoft.LabServices/stable/2018-10-15/ML.json index 4bfe1139693b..7c6a769f539c 100644 --- a/specification/labservices/resource-manager/Microsoft.LabServices/stable/2018-10-15/ML.json +++ b/specification/labservices/resource-manager/Microsoft.LabServices/stable/2018-10-15/ML.json @@ -6,29 +6,53 @@ "description": "The Managed Labs Client." }, "host": "management.azure.com", - "schemes": [ "https" ], - "consumes": [ "application/json" ], - "produces": [ "application/json" ], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "paths": { "/providers/Microsoft.LabServices/operations": { "get": { - "tags": [ "ProviderOperations" ], + "tags": [ + "ProviderOperations" + ], "description": "Result of the request to list REST API operations", "operationId": "ProviderOperations_List", - "parameters": [ { "$ref": "#/parameters/api-version" } ], + "parameters": [ + { + "$ref": "#/parameters/api-version" + } + ], "responses": { "200": { "description": "Success", - "schema": { "$ref": "#/definitions/ProviderOperationResult" } + "schema": { + "$ref": "#/definitions/ProviderOperationResult" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], - "x-ms-pageable": { "nextLinkName": "nextLink" } + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "x-ms-pageable": { + "nextLinkName": "nextLink" + } } }, "/providers/Microsoft.LabServices/users/{userName}/getEnvironment": { "post": { - "tags": [ "GlobalUsers" ], + "tags": [ + "GlobalUsers" + ], "description": "Gets the virtual machine details", "operationId": "GlobalUsers_GetEnvironment", "parameters": [ @@ -44,7 +68,9 @@ "in": "body", "description": "Represents payload for any Environment operations like get, start, stop, connect", "required": true, - "schema": { "$ref": "#/definitions/EnvironmentOperationsPayload" } + "schema": { + "$ref": "#/definitions/EnvironmentOperationsPayload" + } }, { "name": "$expand", @@ -53,24 +79,38 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/GetEnvironmentResponse" } + "schema": { + "$ref": "#/definitions/GetEnvironmentResponse" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/providers/Microsoft.LabServices/users/{userName}/getOperationBatchStatus": { "post": { - "tags": [ "GlobalUsers" ], + "tags": [ + "GlobalUsers" + ], "description": "Get batch operation status", "operationId": "GlobalUsers_GetOperationBatchStatus", "parameters": [ @@ -86,26 +126,42 @@ "in": "body", "description": "Payload to get the status of an operation", "required": true, - "schema": { "$ref": "#/definitions/OperationBatchStatusPayload" } + "schema": { + "$ref": "#/definitions/OperationBatchStatusPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/OperationBatchStatusResponse" } + "schema": { + "$ref": "#/definitions/OperationBatchStatusResponse" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/providers/Microsoft.LabServices/users/{userName}/getOperationStatus": { "post": { - "tags": [ "GlobalUsers" ], + "tags": [ + "GlobalUsers" + ], "description": "Gets the status of long running operation", "operationId": "GlobalUsers_GetOperationStatus", "parameters": [ @@ -121,26 +177,42 @@ "in": "body", "description": "Payload to get the status of an operation", "required": true, - "schema": { "$ref": "#/definitions/OperationStatusPayload" } + "schema": { + "$ref": "#/definitions/OperationStatusPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/OperationStatusResponse" } + "schema": { + "$ref": "#/definitions/OperationStatusResponse" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/providers/Microsoft.LabServices/users/{userName}/getPersonalPreferences": { "post": { - "tags": [ "GlobalUsers" ], + "tags": [ + "GlobalUsers" + ], "description": "Get personal preferences for a user", "operationId": "GlobalUsers_GetPersonalPreferences", "parameters": [ @@ -156,26 +228,42 @@ "in": "body", "description": "Represents payload for any Environment operations like get, start, stop, connect", "required": true, - "schema": { "$ref": "#/definitions/PersonalPreferencesOperationsPayload" } + "schema": { + "$ref": "#/definitions/PersonalPreferencesOperationsPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/GetPersonalPreferencesResponse" } + "schema": { + "$ref": "#/definitions/GetPersonalPreferencesResponse" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/providers/Microsoft.LabServices/users/{userName}/listEnvironments": { "post": { - "tags": [ "GlobalUsers" ], + "tags": [ + "GlobalUsers" + ], "description": "List Environments for the user", "operationId": "GlobalUsers_ListEnvironments", "parameters": [ @@ -191,26 +279,42 @@ "in": "body", "description": "Represents the payload to list environments owned by a user", "required": true, - "schema": { "$ref": "#/definitions/ListEnvironmentsPayload" } + "schema": { + "$ref": "#/definitions/ListEnvironmentsPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/ListEnvironmentsResponse" } + "schema": { + "$ref": "#/definitions/ListEnvironmentsResponse" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/providers/Microsoft.LabServices/users/{userName}/listLabs": { "post": { - "tags": [ "GlobalUsers" ], + "tags": [ + "GlobalUsers" + ], "description": "List labs for the user.", "operationId": "GlobalUsers_ListLabs", "parameters": [ @@ -221,24 +325,38 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/ListLabsResponse" } + "schema": { + "$ref": "#/definitions/ListLabsResponse" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/providers/Microsoft.LabServices/users/{userName}/register": { "post": { - "tags": [ "GlobalUsers" ], + "tags": [ + "GlobalUsers" + ], "description": "Register a user to a managed lab", "operationId": "GlobalUsers_Register", "parameters": [ @@ -254,23 +372,39 @@ "in": "body", "description": "Represents payload for Register action.", "required": true, - "schema": { "$ref": "#/definitions/RegisterPayload" } + "schema": { + "$ref": "#/definitions/RegisterPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, + "200": { + "description": "OK" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/providers/Microsoft.LabServices/users/{userName}/resetPassword": { "post": { - "tags": [ "GlobalUsers" ], + "tags": [ + "GlobalUsers" + ], "description": "Resets the user password on an environment This operation can take a while to complete", "operationId": "GlobalUsers_ResetPassword", "parameters": [ @@ -286,25 +420,43 @@ "in": "body", "description": "Represents the payload for resetting passwords.", "required": true, - "schema": { "$ref": "#/definitions/ResetPasswordPayload" } + "schema": { + "$ref": "#/definitions/ResetPasswordPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, - "202": { "description": "Accepted" }, + "200": { + "description": "OK" + }, + "202": { + "description": "Accepted" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true } }, "/providers/Microsoft.LabServices/users/{userName}/startEnvironment": { "post": { - "tags": [ "GlobalUsers" ], + "tags": [ + "GlobalUsers" + ], "description": "Starts an environment by starting all resources inside the environment. This operation can take a while to complete", "operationId": "GlobalUsers_StartEnvironment", "parameters": [ @@ -320,25 +472,43 @@ "in": "body", "description": "Represents payload for any Environment operations like get, start, stop, connect", "required": true, - "schema": { "$ref": "#/definitions/EnvironmentOperationsPayload" } + "schema": { + "$ref": "#/definitions/EnvironmentOperationsPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, - "202": { "description": "Accepted" }, + "200": { + "description": "OK" + }, + "202": { + "description": "Accepted" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true } }, "/providers/Microsoft.LabServices/users/{userName}/stopEnvironment": { "post": { - "tags": [ "GlobalUsers" ], + "tags": [ + "GlobalUsers" + ], "description": "Stops an environment by stopping all resources inside the environment This operation can take a while to complete", "operationId": "GlobalUsers_StopEnvironment", "parameters": [ @@ -354,29 +524,49 @@ "in": "body", "description": "Represents payload for any Environment operations like get, start, stop, connect", "required": true, - "schema": { "$ref": "#/definitions/EnvironmentOperationsPayload" } + "schema": { + "$ref": "#/definitions/EnvironmentOperationsPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, - "202": { "description": "Accepted" }, + "200": { + "description": "OK" + }, + "202": { + "description": "Accepted" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true } }, "/subscriptions/{subscriptionId}/providers/Microsoft.LabServices/labaccounts": { "get": { - "tags": [ "LabAccounts" ], + "tags": [ + "LabAccounts" + ], "description": "List lab accounts in a subscription.", "operationId": "LabAccounts_ListBySubscription", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, + { + "$ref": "#/parameters/subscriptionId" + }, { "name": "$expand", "in": "query", @@ -406,31 +596,51 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/ResponseWithContinuation[LabAccount]" } + "schema": { + "$ref": "#/definitions/ResponseWithContinuation[LabAccount]" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] } + ], + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], - "x-ms-pageable": { "nextLinkName": "nextLink" }, "x-ms-odata": "#/definitions/LabAccount" } }, "/subscriptions/{subscriptionId}/providers/Microsoft.LabServices/locations/{locationName}/operations/{operationName}": { "get": { - "tags": [ "Operations" ], + "tags": [ + "Operations" + ], "description": "Get operation", "operationId": "Operations_Get", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/locationName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/locationName" + }, { "name": "operationName", "in": "path", @@ -438,29 +648,47 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/OperationResult" } + "schema": { + "$ref": "#/definitions/OperationResult" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts": { "get": { - "tags": [ "LabAccounts" ], + "tags": [ + "LabAccounts" + ], "description": "List lab accounts in a resource group.", "operationId": "LabAccounts_ListByResourceGroup", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "$expand", "in": "query", @@ -490,31 +718,51 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/ResponseWithContinuation[LabAccount]" } + "schema": { + "$ref": "#/definitions/ResponseWithContinuation[LabAccount]" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] } + ], + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], - "x-ms-pageable": { "nextLinkName": "nextLink" }, "x-ms-odata": "#/definitions/LabAccount" } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}": { "get": { - "tags": [ "LabAccounts" ], + "tags": [ + "LabAccounts" + ], "description": "Get lab account", "operationId": "LabAccounts_Get", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -529,27 +777,45 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/LabAccount" } + "schema": { + "$ref": "#/definitions/LabAccount" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "put": { - "tags": [ "LabAccounts" ], + "tags": [ + "LabAccounts" + ], "description": "Create or replace an existing Lab Account.", "operationId": "LabAccounts_CreateOrUpdate", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -562,33 +828,55 @@ "in": "body", "description": "Represents a lab account.", "required": true, - "schema": { "$ref": "#/definitions/LabAccount" } + "schema": { + "$ref": "#/definitions/LabAccount" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/LabAccount" } + "schema": { + "$ref": "#/definitions/LabAccount" + } }, "201": { "description": "Created", - "schema": { "$ref": "#/definitions/LabAccount" } + "schema": { + "$ref": "#/definitions/LabAccount" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "delete": { - "tags": [ "LabAccounts" ], + "tags": [ + "LabAccounts" + ], "description": "Delete lab account. This operation can take a while to complete", "operationId": "LabAccounts_Delete", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -596,26 +884,46 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "202": { "description": "Accepted" }, - "204": { "description": "No Content" }, + "202": { + "description": "Accepted" + }, + "204": { + "description": "No Content" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true }, "patch": { - "tags": [ "LabAccounts" ], + "tags": [ + "LabAccounts" + ], "description": "Modify properties of lab accounts.", "operationId": "LabAccounts_Update", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -628,31 +936,51 @@ "in": "body", "description": "Represents a lab account.", "required": true, - "schema": { "$ref": "#/definitions/LabAccountFragment" } + "schema": { + "$ref": "#/definitions/LabAccountFragment" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/LabAccount" } + "schema": { + "$ref": "#/definitions/LabAccount" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/createLab": { "post": { - "tags": [ "LabAccounts" ], + "tags": [ + "LabAccounts" + ], "description": "Create a lab in a lab account.", "operationId": "LabAccounts_CreateLab", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -665,28 +993,48 @@ "in": "body", "description": "Properties for creating a managed lab and a default environment setting", "required": true, - "schema": { "$ref": "#/definitions/CreateLabProperties" } + "schema": { + "$ref": "#/definitions/CreateLabProperties" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, + "200": { + "description": "OK" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/galleryimages": { "get": { - "tags": [ "GalleryImages" ], + "tags": [ + "GalleryImages" + ], "description": "List gallery images in a given lab account.", "operationId": "GalleryImages_List", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -723,31 +1071,51 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/ResponseWithContinuation[GalleryImage]" } + "schema": { + "$ref": "#/definitions/ResponseWithContinuation[GalleryImage]" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] } + ], + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], - "x-ms-pageable": { "nextLinkName": "nextLink" }, "x-ms-odata": "#/definitions/GalleryImage" } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/galleryimages/{galleryImageName}": { "get": { - "tags": [ "GalleryImages" ], + "tags": [ + "GalleryImages" + ], "description": "Get gallery image", "operationId": "GalleryImages_Get", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -769,27 +1137,45 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/GalleryImage" } + "schema": { + "$ref": "#/definitions/GalleryImage" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "put": { - "tags": [ "GalleryImages" ], + "tags": [ + "GalleryImages" + ], "description": "Create or replace an existing Gallery Image.", "operationId": "GalleryImages_CreateOrUpdate", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -809,33 +1195,55 @@ "in": "body", "description": "Represents an image from the Azure Marketplace", "required": true, - "schema": { "$ref": "#/definitions/GalleryImage" } + "schema": { + "$ref": "#/definitions/GalleryImage" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/GalleryImage" } + "schema": { + "$ref": "#/definitions/GalleryImage" + } }, "201": { "description": "Created", - "schema": { "$ref": "#/definitions/GalleryImage" } + "schema": { + "$ref": "#/definitions/GalleryImage" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "delete": { - "tags": [ "GalleryImages" ], + "tags": [ + "GalleryImages" + ], "description": "Delete gallery image.", "operationId": "GalleryImages_Delete", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -850,25 +1258,45 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, - "204": { "description": "No Content" }, + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "patch": { - "tags": [ "GalleryImages" ], + "tags": [ + "GalleryImages" + ], "description": "Modify properties of gallery images.", "operationId": "GalleryImages_Update", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -888,31 +1316,51 @@ "in": "body", "description": "Represents an image from the Azure Marketplace", "required": true, - "schema": { "$ref": "#/definitions/GalleryImageFragment" } + "schema": { + "$ref": "#/definitions/GalleryImageFragment" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/GalleryImage" } + "schema": { + "$ref": "#/definitions/GalleryImage" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/getRegionalAvailability": { "post": { - "tags": [ "LabAccounts" ], + "tags": [ + "LabAccounts" + ], "description": "Get regional availability information for each size category configured under a lab account", "operationId": "LabAccounts_GetRegionalAvailability", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -920,29 +1368,47 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/GetRegionalAvailabilityResponse" } + "schema": { + "$ref": "#/definitions/GetRegionalAvailabilityResponse" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs": { "get": { - "tags": [ "Labs" ], + "tags": [ + "Labs" + ], "description": "List labs in a given lab account.", "operationId": "Labs_List", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -979,32 +1445,56 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/ResponseWithContinuation[Lab]" } + "schema": { + "$ref": "#/definitions/ResponseWithContinuation[Lab]" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] } + ], + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], - "x-ms-pageable": { "nextLinkName": "nextLink" }, "x-ms-odata": "#/definitions/Lab", - "x-ms-examples": { "Labs_List": { "$ref": "./examples/Labs_List.json" } } + "x-ms-examples": { + "Labs_List": { + "$ref": "./examples/Labs_List.json" + } + } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}": { "get": { - "tags": [ "Labs" ], + "tags": [ + "Labs" + ], "description": "Get lab", "operationId": "Labs_Get", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1026,27 +1516,45 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/Lab" } + "schema": { + "$ref": "#/definitions/Lab" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "put": { - "tags": [ "Labs" ], + "tags": [ + "Labs" + ], "description": "Create or replace an existing Lab.", "operationId": "Labs_CreateOrUpdate", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1066,33 +1574,55 @@ "in": "body", "description": "Represents a lab.", "required": true, - "schema": { "$ref": "#/definitions/Lab" } + "schema": { + "$ref": "#/definitions/Lab" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/Lab" } + "schema": { + "$ref": "#/definitions/Lab" + } }, "201": { "description": "Created", - "schema": { "$ref": "#/definitions/Lab" } + "schema": { + "$ref": "#/definitions/Lab" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "delete": { - "tags": [ "Labs" ], + "tags": [ + "Labs" + ], "description": "Delete lab. This operation can take a while to complete", "operationId": "Labs_Delete", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1107,26 +1637,46 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "202": { "description": "Accepted" }, - "204": { "description": "No Content" }, + "202": { + "description": "Accepted" + }, + "204": { + "description": "No Content" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true }, "patch": { - "tags": [ "Labs" ], + "tags": [ + "Labs" + ], "description": "Modify properties of labs.", "operationId": "Labs_Update", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1146,31 +1696,51 @@ "in": "body", "description": "Represents a lab.", "required": true, - "schema": { "$ref": "#/definitions/LabFragment" } + "schema": { + "$ref": "#/definitions/LabFragment" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/Lab" } + "schema": { + "$ref": "#/definitions/Lab" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/addUsers": { "post": { - "tags": [ "Labs" ], + "tags": [ + "Labs" + ], "description": "Add users to a lab", "operationId": "Labs_AddUsers", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1190,28 +1760,48 @@ "in": "body", "description": "Payload for Add Users operation on a Lab.", "required": true, - "schema": { "$ref": "#/definitions/AddUsersPayload" } + "schema": { + "$ref": "#/definitions/AddUsersPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, + "200": { + "description": "OK" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings": { "get": { - "tags": [ "EnvironmentSettings" ], + "tags": [ + "EnvironmentSettings" + ], "description": "List environment setting in a given lab.", "operationId": "EnvironmentSettings_List", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1255,31 +1845,51 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/ResponseWithContinuation[EnvironmentSetting]" } + "schema": { + "$ref": "#/definitions/ResponseWithContinuation[EnvironmentSetting]" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] } + ], + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], - "x-ms-pageable": { "nextLinkName": "nextLink" }, "x-ms-odata": "#/definitions/EnvironmentSetting" } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}": { "get": { - "tags": [ "EnvironmentSettings" ], + "tags": [ + "EnvironmentSettings" + ], "description": "Get environment setting", "operationId": "EnvironmentSettings_Get", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1308,27 +1918,45 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/EnvironmentSetting" } + "schema": { + "$ref": "#/definitions/EnvironmentSetting" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "put": { - "tags": [ "EnvironmentSettings" ], + "tags": [ + "EnvironmentSettings" + ], "description": "Create or replace an existing Environment Setting. This operation can take a while to complete", "operationId": "EnvironmentSettings_CreateOrUpdate", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1355,34 +1983,56 @@ "in": "body", "description": "Represents settings of an environment, from which environment instances would be created", "required": true, - "schema": { "$ref": "#/definitions/EnvironmentSetting" } + "schema": { + "$ref": "#/definitions/EnvironmentSetting" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/EnvironmentSetting" } + "schema": { + "$ref": "#/definitions/EnvironmentSetting" + } }, "201": { "description": "Created", - "schema": { "$ref": "#/definitions/EnvironmentSetting" } + "schema": { + "$ref": "#/definitions/EnvironmentSetting" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true }, "delete": { - "tags": [ "EnvironmentSettings" ], + "tags": [ + "EnvironmentSettings" + ], "description": "Delete environment setting. This operation can take a while to complete", "operationId": "EnvironmentSettings_Delete", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1404,26 +2054,46 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "202": { "description": "Accepted" }, - "204": { "description": "No Content" }, + "202": { + "description": "Accepted" + }, + "204": { + "description": "No Content" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true }, "patch": { - "tags": [ "EnvironmentSettings" ], + "tags": [ + "EnvironmentSettings" + ], "description": "Modify properties of environment setting.", "operationId": "EnvironmentSettings_Update", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1450,31 +2120,51 @@ "in": "body", "description": "Represents settings of an environment, from which environment instances would be created", "required": true, - "schema": { "$ref": "#/definitions/EnvironmentSettingFragment" } + "schema": { + "$ref": "#/definitions/EnvironmentSettingFragment" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/EnvironmentSetting" } + "schema": { + "$ref": "#/definitions/EnvironmentSetting" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}/claimAny": { "post": { - "tags": [ "EnvironmentSettings" ], + "tags": [ + "EnvironmentSettings" + ], "description": "Claims a random environment for a user in an environment settings", "operationId": "EnvironmentSettings_ClaimAny", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1496,26 +2186,44 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, + "200": { + "description": "OK" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}/environments": { "get": { - "tags": [ "Environments" ], + "tags": [ + "Environments" + ], "description": "List environments in a given environment setting.", "operationId": "Environments_List", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1566,31 +2274,51 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/ResponseWithContinuation[Environment]" } + "schema": { + "$ref": "#/definitions/ResponseWithContinuation[Environment]" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], - "x-ms-pageable": { "nextLinkName": "nextLink" }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, "x-ms-odata": "#/definitions/Environment" } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}/environments/{environmentName}": { "get": { - "tags": [ "Environments" ], + "tags": [ + "Environments" + ], "description": "Get environment", "operationId": "Environments_Get", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1626,27 +2354,45 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/Environment" } + "schema": { + "$ref": "#/definitions/Environment" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "put": { - "tags": [ "Environments" ], + "tags": [ + "Environments" + ], "description": "Create or replace an existing Environment.", "operationId": "Environments_CreateOrUpdate", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1680,33 +2426,55 @@ "in": "body", "description": "Represents an environment instance", "required": true, - "schema": { "$ref": "#/definitions/Environment" } + "schema": { + "$ref": "#/definitions/Environment" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/Environment" } + "schema": { + "$ref": "#/definitions/Environment" + } }, "201": { "description": "Created", - "schema": { "$ref": "#/definitions/Environment" } + "schema": { + "$ref": "#/definitions/Environment" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "delete": { - "tags": [ "Environments" ], + "tags": [ + "Environments" + ], "description": "Delete environment. This operation can take a while to complete", "operationId": "Environments_Delete", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1735,26 +2503,46 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "202": { "description": "Accepted" }, - "204": { "description": "No Content" }, + "202": { + "description": "Accepted" + }, + "204": { + "description": "No Content" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true }, "patch": { - "tags": [ "Environments" ], + "tags": [ + "Environments" + ], "description": "Modify properties of environments.", "operationId": "Environments_Update", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1788,31 +2576,51 @@ "in": "body", "description": "Represents an environment instance", "required": true, - "schema": { "$ref": "#/definitions/EnvironmentFragment" } + "schema": { + "$ref": "#/definitions/EnvironmentFragment" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/Environment" } + "schema": { + "$ref": "#/definitions/Environment" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}/environments/{environmentName}/claim": { "post": { - "tags": [ "Environments" ], + "tags": [ + "Environments" + ], "description": "Claims the environment and assigns it to the user", "operationId": "Environments_Claim", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1841,26 +2649,44 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, + "200": { + "description": "OK" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}/environments/{environmentName}/resetPassword": { "post": { - "tags": [ "Environments" ], + "tags": [ + "Environments" + ], "description": "Resets the user password on an environment This operation can take a while to complete", "operationId": "Environments_ResetPassword", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1894,30 +2720,52 @@ "in": "body", "description": "Represents the payload for resetting passwords.", "required": true, - "schema": { "$ref": "#/definitions/ResetPasswordPayload" } + "schema": { + "$ref": "#/definitions/ResetPasswordPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, - "202": { "description": "Accepted" }, + "200": { + "description": "OK" + }, + "202": { + "description": "Accepted" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}/environments/{environmentName}/start": { "post": { - "tags": [ "Environments" ], + "tags": [ + "Environments" + ], "description": "Starts an environment by starting all resources inside the environment. This operation can take a while to complete", "operationId": "Environments_Start", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1946,28 +2794,48 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, - "202": { "description": "Accepted" }, + "200": { + "description": "OK" + }, + "202": { + "description": "Accepted" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}/environments/{environmentName}/stop": { "post": { - "tags": [ "Environments" ], + "tags": [ + "Environments" + ], "description": "Stops an environment by stopping all resources inside the environment This operation can take a while to complete", "operationId": "Environments_Stop", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -1996,28 +2864,48 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, - "202": { "description": "Accepted" }, + "200": { + "description": "OK" + }, + "202": { + "description": "Accepted" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}/publish": { "post": { - "tags": [ "EnvironmentSettings" ], + "tags": [ + "EnvironmentSettings" + ], "description": "Provisions/deprovisions required resources for an environment setting based on current state of the lab/environment setting.", "operationId": "EnvironmentSettings_Publish", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -2044,28 +2932,48 @@ "in": "body", "description": "Payload for Publish operation on EnvironmentSetting.", "required": true, - "schema": { "$ref": "#/definitions/PublishPayload" } + "schema": { + "$ref": "#/definitions/PublishPayload" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, + "200": { + "description": "OK" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}/start": { "post": { - "tags": [ "EnvironmentSettings" ], + "tags": [ + "EnvironmentSettings" + ], "description": "Starts a template by starting all resources inside the template. This operation can take a while to complete", "operationId": "EnvironmentSettings_Start", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -2087,28 +2995,48 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, - "202": { "description": "Accepted" }, + "200": { + "description": "OK" + }, + "202": { + "description": "Accepted" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/environmentsettings/{environmentSettingName}/stop": { "post": { - "tags": [ "EnvironmentSettings" ], + "tags": [ + "EnvironmentSettings" + ], "description": "Starts a template by starting all resources inside the template. This operation can take a while to complete", "operationId": "EnvironmentSettings_Stop", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -2130,28 +3058,48 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, - "202": { "description": "Accepted" }, + "200": { + "description": "OK" + }, + "202": { + "description": "Accepted" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/register": { "post": { - "tags": [ "Labs" ], + "tags": [ + "Labs" + ], "description": "Register to managed lab.", "operationId": "Labs_Register", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -2166,26 +3114,44 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "200": { "description": "OK" }, + "200": { + "description": "OK" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/users": { "get": { - "tags": [ "Users" ], + "tags": [ + "Users" + ], "description": "List users in a given lab.", "operationId": "Users_List", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -2229,31 +3195,51 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/ResponseWithContinuation[User]" } + "schema": { + "$ref": "#/definitions/ResponseWithContinuation[User]" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] } + ], + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], - "x-ms-pageable": { "nextLinkName": "nextLink" }, "x-ms-odata": "#/definitions/User" } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labaccounts/{labAccountName}/labs/{labName}/users/{userName}": { "get": { - "tags": [ "Users" ], + "tags": [ + "Users" + ], "description": "Get user", "operationId": "Users_Get", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -2282,27 +3268,45 @@ "required": false, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/User" } + "schema": { + "$ref": "#/definitions/User" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "put": { - "tags": [ "Users" ], + "tags": [ + "Users" + ], "description": "Create or replace an existing User.", "operationId": "Users_CreateOrUpdate", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -2329,33 +3333,55 @@ "in": "body", "description": "The User registered to a lab", "required": true, - "schema": { "$ref": "#/definitions/User" } + "schema": { + "$ref": "#/definitions/User" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/User" } + "schema": { + "$ref": "#/definitions/User" + } }, "201": { "description": "Created", - "schema": { "$ref": "#/definitions/User" } + "schema": { + "$ref": "#/definitions/User" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] }, "delete": { - "tags": [ "Users" ], + "tags": [ + "Users" + ], "description": "Delete user. This operation can take a while to complete", "operationId": "Users_Delete", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -2377,26 +3403,46 @@ "required": true, "type": "string" }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { - "202": { "description": "Accepted" }, - "204": { "description": "No Content" }, + "202": { + "description": "Accepted" + }, + "204": { + "description": "No Content" + }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "x-ms-long-running-operation": true }, "patch": { - "tags": [ "Users" ], + "tags": [ + "Users" + ], "description": "Modify properties of users.", "operationId": "Users_Update", "parameters": [ - { "$ref": "#/parameters/subscriptionId" }, - { "$ref": "#/parameters/resourceGroupName" }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, { "name": "labAccountName", "in": "path", @@ -2423,61 +3469,94 @@ "in": "body", "description": "The User registered to a lab", "required": true, - "schema": { "$ref": "#/definitions/UserFragment" } + "schema": { + "$ref": "#/definitions/UserFragment" + } }, - { "$ref": "#/parameters/api-version" } + { + "$ref": "#/parameters/api-version" + } ], "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/User" } + "schema": { + "$ref": "#/definitions/User" + } }, "default": { "description": "BadRequest", - "schema": { "$ref": "#/definitions/CloudError" } + "schema": { + "$ref": "#/definitions/CloudError" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } } }, "definitions": { "AddUsersPayload": { "description": "Payload for Add Users operation on a Lab.", - "required": [ "emailAddresses" ], + "required": [ + "emailAddresses" + ], "type": "object", "properties": { "emailAddresses": { "description": "List of user emails addresses to add to the lab.", "type": "array", - "items": { "type": "string" } + "items": { + "type": "string" + } } } }, "CloudError": { "description": "Error from a REST request.", "type": "object", - "properties": { "error": { "$ref": "#/definitions/CloudErrorBody" } }, + "properties": { + "error": { + "$ref": "#/definitions/CloudErrorBody" + } + }, "x-ms-external": true }, "CloudErrorBody": { "description": "Body of an error from a REST request.", "type": "object", "properties": { - "code": { "type": "string" }, - "message": { "type": "string" }, - "target": { "type": "string" }, + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "target": { + "type": "string" + }, "details": { "description": "Inner errors.", "type": "array", - "items": { "$ref": "#/definitions/CloudErrorBody" } + "items": { + "$ref": "#/definitions/CloudErrorBody" + } } }, "x-ms-external": true }, "CreateLabProperties": { "description": "Properties for creating a managed lab and a default environment setting", - "required": [ "labCreationParameters", "name" ], + "required": [ + "labCreationParameters", + "name" + ], "type": "object", "properties": { "environmentSettingCreationParameters": { @@ -2499,14 +3578,20 @@ "tags": { "description": "The tags of the resource.", "type": "object", - "additionalProperties": { "type": "string" } + "additionalProperties": { + "type": "string" + } } } }, "Environment": { "description": "Represents an environment instance", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/EnvironmentProperties", @@ -2571,7 +3656,11 @@ "EnvironmentFragment": { "description": "Represents an environment instance", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/EnvironmentPropertiesFragment", @@ -2582,7 +3671,9 @@ }, "EnvironmentOperationsPayload": { "description": "Represents payload for any Environment operations like get, start, stop, connect", - "required": [ "environmentId" ], + "required": [ + "environmentId" + ], "type": "object", "properties": { "environmentId": { @@ -2677,7 +3768,11 @@ "EnvironmentSetting": { "description": "Represents settings of an environment, from which environment instances would be created", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/EnvironmentSettingProperties", @@ -2688,7 +3783,9 @@ }, "EnvironmentSettingCreationParameters": { "description": "Settings related to creating an environment setting", - "required": [ "resourceSettingCreationParameters" ], + "required": [ + "resourceSettingCreationParameters" + ], "type": "object", "properties": { "resourceSettingCreationParameters": { @@ -2700,7 +3797,11 @@ "EnvironmentSettingFragment": { "description": "Represents settings of an environment, from which environment instances would be created", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/EnvironmentSettingPropertiesFragment", @@ -2711,12 +3812,20 @@ }, "EnvironmentSettingProperties": { "description": "Properties of an environment setting", - "required": [ "resourceSettings" ], + "required": [ + "resourceSettings" + ], "type": "object", "properties": { "publishingState": { "description": "Describes the readiness of this environment setting", - "enum": [ "Draft", "Publishing", "Published", "PublishFailed", "Scaling" ], + "enum": [ + "Draft", + "Publishing", + "Published", + "PublishFailed", + "Scaling" + ], "type": "string", "readOnly": true, "x-ms-enum": { @@ -2748,7 +3857,10 @@ }, "configurationState": { "description": "Describes the user's progress in configuring their environment setting", - "enum": [ "NotApplicable", "Completed" ], + "enum": [ + "NotApplicable", + "Completed" + ], "type": "string", "x-ms-enum": { "name": "ConfigurationState", @@ -2810,7 +3922,10 @@ "properties": { "configurationState": { "description": "Describes the user's progress in configuring their environment setting", - "enum": [ "NotApplicable", "Completed" ], + "enum": [ + "NotApplicable", + "Completed" + ], "type": "string", "x-ms-enum": { "name": "ConfigurationState", @@ -2855,7 +3970,11 @@ "properties": { "name": { "description": "The size category", - "enum": [ "Basic", "Standard", "Performance" ], + "enum": [ + "Basic", + "Standard", + "Performance" + ], "type": "string", "x-ms-enum": { "name": "ManagedLabVmSize", @@ -2879,7 +3998,9 @@ "vmSizes": { "description": "Represents a set of compute sizes that can serve this given size type", "type": "array", - "items": { "$ref": "#/definitions/SizeInfo" } + "items": { + "$ref": "#/definitions/SizeInfo" + } }, "maxPrice": { "format": "decimal", @@ -2907,7 +4028,11 @@ "properties": { "name": { "description": "The size category", - "enum": [ "Basic", "Standard", "Performance" ], + "enum": [ + "Basic", + "Standard", + "Performance" + ], "type": "string", "x-ms-enum": { "name": "ManagedLabVmSize", @@ -2931,14 +4056,20 @@ "vmSizes": { "description": "Represents a set of compute sizes that can serve this given size type", "type": "array", - "items": { "$ref": "#/definitions/SizeInfoFragment" } + "items": { + "$ref": "#/definitions/SizeInfoFragment" + } } } }, "GalleryImage": { "description": "Represents an image from the Azure Marketplace", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/GalleryImageProperties", @@ -2950,7 +4081,11 @@ "GalleryImageFragment": { "description": "Represents an image from the Azure Marketplace", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/GalleryImagePropertiesFragment", @@ -3121,7 +4256,9 @@ "favoriteLabResourceIds": { "description": "Array of favorite lab resource ids", "type": "array", - "items": { "type": "string" } + "items": { + "type": "string" + } } } }, @@ -3132,14 +4269,20 @@ "regionalAvailability": { "description": "Availability information for different size categories per region", "type": "array", - "items": { "$ref": "#/definitions/RegionalAvailability" } + "items": { + "$ref": "#/definitions/RegionalAvailability" + } } } }, "Lab": { "description": "Represents a lab.", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/LabProperties", @@ -3151,7 +4294,11 @@ "LabAccount": { "description": "Represents a lab account.", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/LabAccountProperties", @@ -3163,7 +4310,11 @@ "LabAccountFragment": { "description": "Represents a lab account.", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/LabAccountPropertiesFragment", @@ -3256,7 +4407,11 @@ "LabFragment": { "description": "Represents a lab.", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/LabPropertiesFragment", @@ -3297,7 +4452,10 @@ }, "userAccessMode": { "description": "Lab user access mode (open to all vs. restricted to those listed on the lab).", - "enum": [ "Restricted", "Open" ], + "enum": [ + "Restricted", + "Open" + ], "type": "string", "x-ms-enum": { "name": "LabUserAccessMode", @@ -3356,7 +4514,10 @@ }, "userAccessMode": { "description": "Lab user access mode (open to all vs. restricted to those listed on the lab).", - "enum": [ "Restricted", "Open" ], + "enum": [ + "Restricted", + "Open" + ], "type": "string", "x-ms-enum": { "name": "LabUserAccessMode", @@ -3441,7 +4602,9 @@ "environments": { "description": "List of all the environments", "type": "array", - "items": { "$ref": "#/definitions/EnvironmentDetails" } + "items": { + "$ref": "#/definitions/EnvironmentDetails" + } } } }, @@ -3452,7 +4615,9 @@ "labs": { "description": "List of all the labs", "type": "array", - "items": { "$ref": "#/definitions/LabDetails" } + "items": { + "$ref": "#/definitions/LabDetails" + } } } }, @@ -3489,13 +4654,17 @@ }, "OperationBatchStatusPayload": { "description": "Payload to get the status of an operation", - "required": [ "urls" ], + "required": [ + "urls" + ], "type": "object", "properties": { "urls": { "description": "The operation url of long running operation", "type": "array", - "items": { "type": "string" } + "items": { + "type": "string" + } } } }, @@ -3506,7 +4675,9 @@ "items": { "description": "Gets a collection of items that contain the operation url and status.", "type": "array", - "items": { "$ref": "#/definitions/OperationBatchStatusResponseItem" }, + "items": { + "$ref": "#/definitions/OperationBatchStatusResponseItem" + }, "readOnly": true } } @@ -3593,7 +4764,9 @@ }, "OperationStatusPayload": { "description": "Payload to get the status of an operation", - "required": [ "operationUrl" ], + "required": [ + "operationUrl" + ], "type": "object", "properties": { "operationUrl": { @@ -3623,7 +4796,10 @@ }, "addRemove": { "description": "Enum indicating if user is adding or removing a favorite lab", - "enum": [ "Add", "Remove" ], + "enum": [ + "Add", + "Remove" + ], "type": "string", "x-ms-enum": { "name": "AddRemove", @@ -3653,7 +4829,9 @@ "value": { "description": "List of operations supported by the resource provider.", "type": "array", - "items": { "$ref": "#/definitions/OperationMetadata" } + "items": { + "$ref": "#/definitions/OperationMetadata" + } }, "nextLink": { "description": "URL to get the next set of operation list results if there are any.", @@ -3674,7 +4852,9 @@ }, "ReferenceVm": { "description": "Details of a Reference Vm", - "required": [ "userName" ], + "required": [ + "userName" + ], "type": "object", "properties": { "userName": { @@ -3699,7 +4879,10 @@ }, "ReferenceVmCreationParameters": { "description": "Creation parameters for Reference Vm", - "required": [ "userName", "password" ], + "required": [ + "userName", + "password" + ], "type": "object", "properties": { "userName": { @@ -3737,7 +4920,9 @@ "sizeAvailabilities": { "description": "List of all the size information for the region", "type": "array", - "items": { "$ref": "#/definitions/SizeAvailability" } + "items": { + "$ref": "#/definitions/SizeAvailability" + } } } }, @@ -3753,7 +4938,9 @@ }, "ResetPasswordPayload": { "description": "Represents the payload for resetting passwords.", - "required": [ "environmentId" ], + "required": [ + "environmentId" + ], "type": "object", "properties": { "environmentId": { @@ -3796,7 +4983,9 @@ "tags": { "description": "The tags of the resource.", "type": "object", - "additionalProperties": { "type": "string" } + "additionalProperties": { + "type": "string" + } } }, "x-ms-azure-resource": true @@ -3831,7 +5020,10 @@ }, "ResourceSettingCreationParameters": { "description": "Represents resource specific settings", - "required": [ "galleryImageResourceId", "referenceVmCreationParameters" ], + "required": [ + "galleryImageResourceId", + "referenceVmCreationParameters" + ], "type": "object", "properties": { "location": { @@ -3848,7 +5040,11 @@ }, "size": { "description": "The size of the virtual machine", - "enum": [ "Basic", "Standard", "Performance" ], + "enum": [ + "Basic", + "Standard", + "Performance" + ], "type": "string", "x-ms-enum": { "name": "ManagedLabVmSize", @@ -3877,7 +5073,9 @@ }, "ResourceSettings": { "description": "Represents resource specific settings", - "required": [ "referenceVm" ], + "required": [ + "referenceVm" + ], "type": "object", "properties": { "id": { @@ -3896,7 +5094,11 @@ }, "size": { "description": "The size of the virtual machine", - "enum": [ "Basic", "Standard", "Performance" ], + "enum": [ + "Basic", + "Standard", + "Performance" + ], "type": "string", "x-ms-enum": { "name": "ManagedLabVmSize", @@ -3939,7 +5141,11 @@ }, "size": { "description": "The size of the virtual machine", - "enum": [ "Basic", "Standard", "Performance" ], + "enum": [ + "Basic", + "Standard", + "Performance" + ], "type": "string", "x-ms-enum": { "name": "ManagedLabVmSize", @@ -3973,7 +5179,9 @@ "value": { "description": "Results of the list operation.", "type": "array", - "items": { "$ref": "#/definitions/Environment" } + "items": { + "$ref": "#/definitions/Environment" + } }, "nextLink": { "description": "Link for next set of results.", @@ -3988,7 +5196,9 @@ "value": { "description": "Results of the list operation.", "type": "array", - "items": { "$ref": "#/definitions/EnvironmentSetting" } + "items": { + "$ref": "#/definitions/EnvironmentSetting" + } }, "nextLink": { "description": "Link for next set of results.", @@ -4003,7 +5213,9 @@ "value": { "description": "Results of the list operation.", "type": "array", - "items": { "$ref": "#/definitions/GalleryImage" } + "items": { + "$ref": "#/definitions/GalleryImage" + } }, "nextLink": { "description": "Link for next set of results.", @@ -4018,7 +5230,9 @@ "value": { "description": "Results of the list operation.", "type": "array", - "items": { "$ref": "#/definitions/Lab" } + "items": { + "$ref": "#/definitions/Lab" + } }, "nextLink": { "description": "Link for next set of results.", @@ -4033,7 +5247,9 @@ "value": { "description": "Results of the list operation.", "type": "array", - "items": { "$ref": "#/definitions/LabAccount" } + "items": { + "$ref": "#/definitions/LabAccount" + } }, "nextLink": { "description": "Link for next set of results.", @@ -4048,7 +5264,9 @@ "value": { "description": "Results of the list operation.", "type": "array", - "items": { "$ref": "#/definitions/User" } + "items": { + "$ref": "#/definitions/User" + } }, "nextLink": { "description": "Link for next set of results.", @@ -4062,7 +5280,11 @@ "properties": { "sizeCategory": { "description": "The category of the size (Basic, Standard, Performance).", - "enum": [ "Basic", "Standard", "Performance" ], + "enum": [ + "Basic", + "Standard", + "Performance" + ], "type": "string", "x-ms-enum": { "name": "ManagedLabVmSize", @@ -4096,7 +5318,9 @@ "environmentSizes": { "description": "Represents a list of size categories supported by this Lab Account (Small, Medium, Large)", "type": "array", - "items": { "$ref": "#/definitions/EnvironmentSize" } + "items": { + "$ref": "#/definitions/EnvironmentSize" + } } } }, @@ -4107,7 +5331,9 @@ "environmentSizes": { "description": "Represents a list of size categories supported by this Lab Account (Small, Medium, Large)", "type": "array", - "items": { "$ref": "#/definitions/EnvironmentSizeFragment" } + "items": { + "$ref": "#/definitions/EnvironmentSizeFragment" + } } } }, @@ -4164,7 +5390,11 @@ "User": { "description": "The User registered to a lab", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/UserProperties", @@ -4176,7 +5406,11 @@ "UserFragment": { "description": "The User registered to a lab", "type": "object", - "allOf": [ { "$ref": "#/definitions/Resource" } ], + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], "properties": { "properties": { "$ref": "#/definitions/UserPropertiesFragment", @@ -4351,8 +5585,16 @@ "description": "OAuth2 Implicit Grant", "flow": "implicit", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "scopes": { "user_impersonation": "Access Microsoft Azure" } + "scopes": { + "user_impersonation": "Access Microsoft Azure" + } } }, - "security": [ { "azure_auth": [ "user_impersonation" ] } ] -} \ No newline at end of file + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/labservices/resource-manager/Microsoft.LabServices/stable/2018-10-15/examples/Labs_List.json b/specification/labservices/resource-manager/Microsoft.LabServices/stable/2018-10-15/examples/Labs_List.json index 2d857eb5db18..27a61db9530c 100644 --- a/specification/labservices/resource-manager/Microsoft.LabServices/stable/2018-10-15/examples/Labs_List.json +++ b/specification/labservices/resource-manager/Microsoft.LabServices/stable/2018-10-15/examples/Labs_List.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2015-02-01-preview/logic.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2015-02-01-preview/logic.json index c96c55860d0a..6c275897383e 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2015-02-01-preview/logic.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2015-02-01-preview/logic.json @@ -2,7 +2,7 @@ "swagger": "2.0", "info": { "title": "LogicManagementClient", - "description":"REST API for Azure Logic Apps.", + "description": "REST API for Azure Logic Apps.", "version": "2015-02-01-preview" }, "host": "management.azure.com", @@ -1388,7 +1388,7 @@ }, "Object": { "type": "object", - "properties": { } + "properties": {} }, "ResourceReference": { "type": "object", diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2015-08-01-preview/logic.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2015-08-01-preview/logic.json index 5e7722b0701c..5d02033be523 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2015-08-01-preview/logic.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2015-08-01-preview/logic.json @@ -1,3684 +1,3674 @@ { - "swagger": "2.0", - "info": { - "title": "LogicManagementClient", - "description":"REST API for Azure Logic Apps.", - "version": "2015-08-01-preview" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Logic/integrationAccounts": { - "get": { - "tags": [ - "IntegrationAccounts" - ], - "operationId": "IntegrationAccounts_ListBySubscription", - "description": "Gets a list of integration accounts by subscription.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "$top", - "description": "The number of items to be included in the result.", - "in": "query", - "required": false, - "type": "integer", - "format": "int32" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts": { - "get": { - "tags": [ - "IntegrationAccounts" - ], - "operationId": "IntegrationAccounts_ListByResourceGroup", - "description": "Gets a list of integration accounts by resource group.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "$top", - "description": "The number of items to be included in the result.", - "in": "query", - "required": false, - "type": "integer", - "format": "int32" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}": { - "get": { - "tags": [ - "IntegrationAccounts" - ], - "operationId": "IntegrationAccounts_Get", - "description": "Gets an integration account.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccount" - } - } - } - }, - "put": { - "tags": [ - "IntegrationAccounts" - ], - "operationId": "IntegrationAccounts_CreateOrUpdate", - "description": "Creates or updates an integration account.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "integrationAccount", - "description": "The integration account.", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/IntegrationAccount" - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccount" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/IntegrationAccount" - } - } - } - }, - "patch": { - "tags": [ - "IntegrationAccounts" - ], - "operationId": "IntegrationAccounts_Update", - "description": "Updates an integration account.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "integrationAccount", - "description": "The integration account.", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/IntegrationAccount" - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccount" - } - } - } - }, - "delete": { - "tags": [ - "IntegrationAccounts" - ], - "operationId": "IntegrationAccounts_Delete", - "description": "Deletes an integration account.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/listCallbackUrl": { - "post": { - "tags": [ - "IntegrationAccounts" - ], - "operationId": "IntegrationAccounts_ListCallbackUrl", - "description": "Lists the integration account callback URL.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "parameters", - "description": "The callback URL parameters.", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ListCallbackUrlParameters" - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/CallbackUrl" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas": { - "get": { - "tags": [ - "IntegrationAccountSchemas" - ], - "operationId": "IntegrationAccountSchemas_List", - "description": "Gets a list of integration account schemas.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "$top", - "description": "The number of items to be included in the result.", - "in": "query", - "required": false, - "type": "integer", - "format": "int32" - }, - { - "name": "$filter", - "description": "The filter to apply on the operation.", - "in": "query", - "required": false, - "type": "string" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountSchemaListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/IntegrationAccountSchemaFilter" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas/{schemaName}": { - "get": { - "tags": [ - "IntegrationAccountSchemas" - ], - "operationId": "IntegrationAccountSchemas_Get", - "description": "Gets an integration account schema.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "schemaName", - "description": "The integration account schema name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountSchema" - } - } - } - }, - "put": { - "tags": [ - "IntegrationAccountSchemas" - ], - "operationId": "IntegrationAccountSchemas_CreateOrUpdate", - "description": "Creates or updates an integration account schema.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "schemaName", - "description": "The integration account schema name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "schema", - "description": "The integration account schema.", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/IntegrationAccountSchema" - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountSchema" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/IntegrationAccountSchema" - } - } - } - }, - "delete": { - "tags": [ - "IntegrationAccountSchemas" - ], - "operationId": "IntegrationAccountSchemas_Delete", - "description": "Deletes an integration account schema.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "schemaName", - "description": "The integration account schema name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps": { - "get": { - "tags": [ - "IntegrationAccountMaps" - ], - "operationId": "IntegrationAccountMaps_List", - "description": "Gets a list of integration account maps.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "$top", - "description": "The number of items to be included in the result.", - "in": "query", - "required": false, - "type": "integer", - "format": "int32" - }, - { - "name": "$filter", - "description": "The filter to apply on the operation.", - "in": "query", - "required": false, - "type": "string" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountMapListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/IntegrationAccountMapFilter" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName}": { - "get": { - "tags": [ - "IntegrationAccountMaps" - ], - "operationId": "IntegrationAccountMaps_Get", - "description": "Gets an integration account map.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "mapName", - "description": "The integration account map name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountMap" - } - } - } - }, - "put": { - "tags": [ - "IntegrationAccountMaps" - ], - "operationId": "IntegrationAccountMaps_CreateOrUpdate", - "description": "Creates or updates an integration account map.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "mapName", - "description": "The integration account map name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "map", - "description": "The integration account map.", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/IntegrationAccountMap" - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountMap" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/IntegrationAccountMap" - } - } - } - }, - "delete": { - "tags": [ - "IntegrationAccountMaps" - ], - "operationId": "IntegrationAccountMaps_Delete", - "description": "Deletes an integration account map.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "mapName", - "description": "The integration account map name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners": { - "get": { - "tags": [ - "IntegrationAccountPartners" - ], - "operationId": "IntegrationAccountPartners_List", - "description": "Gets a list of integration account partners.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "$top", - "description": "The number of items to be included in the result.", - "in": "query", - "required": false, - "type": "integer", - "format": "int32" - }, - { - "name": "$filter", - "description": "The filter to apply on the operation.", - "in": "query", - "required": false, - "type": "string" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountPartnerListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/IntegrationAccountPartnerFilter" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners/{partnerName}": { - "get": { - "tags": [ - "IntegrationAccountPartners" - ], - "operationId": "IntegrationAccountPartners_Get", - "description": "Gets an integration account partner.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "partnerName", - "description": "The integration account partner name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountPartner" - } - } - } - }, - "put": { - "tags": [ - "IntegrationAccountPartners" - ], - "operationId": "IntegrationAccountPartners_CreateOrUpdate", - "description": "Creates or updates an integration account partner.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "partnerName", - "description": "The integration account partner name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "partner", - "description": "The integration account partner.", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/IntegrationAccountPartner" - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountPartner" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/IntegrationAccountPartner" - } - } - } - }, - "delete": { - "tags": [ - "IntegrationAccountPartners" - ], - "operationId": "IntegrationAccountPartners_Delete", - "description": "Deletes an integration account partner.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "partnerName", - "description": "The integration account partner name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements": { - "get": { - "tags": [ - "IntegrationAccountAgreements" - ], - "operationId": "IntegrationAccountAgreements_List", - "description": "Gets a list of integration account agreements.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "$top", - "description": "The number of items to be included in the result.", - "in": "query", - "required": false, - "type": "integer", - "format": "int32" - }, - { - "name": "$filter", - "description": "The filter to apply on the operation.", - "in": "query", - "required": false, - "type": "string" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountAgreementListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-odata": "#/definitions/IntegrationAccountAgreementFilter" - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements/{agreementName}": { - "get": { - "tags": [ - "IntegrationAccountAgreements" - ], - "operationId": "IntegrationAccountAgreements_Get", - "description": "Gets an integration account agreement.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "agreementName", - "description": "The integration account agreement name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountAgreement" - } - } - } - }, - "put": { - "tags": [ - "IntegrationAccountAgreements" - ], - "operationId": "IntegrationAccountAgreements_CreateOrUpdate", - "description": "Creates or updates an integration account agreement.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "agreementName", - "description": "The integration account agreement name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "agreement", - "description": "The integration account agreement.", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/IntegrationAccountAgreement" - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountAgreement" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/IntegrationAccountAgreement" - } - } - } - }, - "delete": { - "tags": [ - "IntegrationAccountAgreements" - ], - "operationId": "IntegrationAccountAgreements_Delete", - "description": "Deletes an integration account agreement.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "agreementName", - "description": "The integration account agreement name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates": { - "get": { - "tags": [ - "IntegrationAccountCertificates" - ], - "operationId": "IntegrationAccountCertificates_List", - "description": "Gets a list of integration account certificates.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "$top", - "description": "The number of items to be included in the result.", - "in": "query", - "required": false, - "type": "integer", - "format": "int32" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountCertificateListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates/{certificateName}": { - "get": { - "tags": [ - "IntegrationAccountCertificates" - ], - "operationId": "IntegrationAccountCertificates_Get", - "description": "Gets an integration account certificate.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "certificateName", - "description": "The integration account certificate name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountCertificate" - } - } - } - }, - "put": { - "tags": [ - "IntegrationAccountCertificates" - ], - "operationId": "IntegrationAccountCertificates_CreateOrUpdate", - "description": "Creates or updates an integration account certificate.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "certificateName", - "description": "The integration account certificate name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - }, - { - "name": "certificate", - "description": "The integration account certificate.", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/IntegrationAccountCertificate" - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IntegrationAccountCertificate" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/IntegrationAccountCertificate" - } - } - } - }, - "delete": { - "tags": [ - "IntegrationAccountCertificates" - ], - "operationId": "IntegrationAccountCertificates_Delete", - "description": "Deletes an integration account certificate.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "description": "The resource group name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "integrationAccountName", - "description": "The integration account name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "name": "certificateName", - "description": "The integration account certificate name.", - "in": "path", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/api-version" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - } - } - } + "swagger": "2.0", + "info": { + "title": "LogicManagementClient", + "description": "REST API for Azure Logic Apps.", + "version": "2015-08-01-preview" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json", + "text/json" + ], + "produces": [ + "application/json", + "text/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Logic/integrationAccounts": { + "get": { + "tags": [ + "IntegrationAccounts" + ], + "operationId": "IntegrationAccounts_ListBySubscription", + "description": "Gets a list of integration accounts by subscription.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "$top", + "description": "The number of items to be included in the result.", + "in": "query", + "required": false, + "type": "integer", + "format": "int32" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountListResult" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "definitions": { - "IntegrationAccountResource": { - "properties": { - "id": { - "type": "string", - "description": "The resource id." - }, - "name": { - "type": "string", - "description": "The resource name." - }, - "type": { - "type": "string", - "description": "The resource type." - }, - "location": { - "type": "string", - "description": "The resource location." - }, - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "The resource tags." - } - }, - "x-ms-azure-resource": true - }, - "IntegrationAccountSkuName": { - "type": "string", - "enum": [ - "NotSpecified", - "Free", - "Shared", - "Basic", - "Standard", - "Premium" - ], - "x-ms-enum": { - "name": "SkuName", - "modelAsString": false - } - }, - "IntegrationAccountContentLink": { - "type": "object", - "properties": { - "uri": { - "type": "string", - "description": "The content link URI." - }, - "contentVersion": { - "type": "string", - "description": "The content version." - }, - "contentSize": { - "type": "integer", - "format": "int64", - "description": "The content size." - }, - "contentHash": { - "$ref": "#/definitions/IntegrationAccountContentHash", - "description": "The content hash." - }, - "metadata": { - "type": "object", - "description": "The metadata.", - "properties": { - } - } - } - }, - "IntegrationAccountContentHash": { - "type": "object", - "properties": { - "algorithm": { - "type": "string", - "description": "The content hash algorithm." - }, - "value": { - "type": "string", - "description": "The content hash value." - } - } - }, - "IntegrationAccount": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/IntegrationAccountProperties", - "description": "The integration account properties." - }, - "sku": { - "$ref": "#/definitions/IntegrationAccountSku", - "description": "The sku." - } - }, - "allOf": [ - { - "$ref": "#/definitions/IntegrationAccountResource" - } - ] - }, - "IntegrationAccountProperties": { - "type": "object" - }, - "IntegrationAccountListResult": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/IntegrationAccount" - }, - "description": "The list of integration accounts." - }, - "nextLink": { - "type": "string", - "description": "The URL to get the next set of results." - } - } - }, - "ListCallbackUrlParameters": { - "type": "object", - "properties": { - "NotAfter": { - "type": "string", - "format": "date-time", - "description": "The expiry time." - } - } - }, - "CallbackUrl": { - "type": "object", - "properties": { - "value": { - "type": "string", - "description": "The URL value." - } - } - }, - "IntegrationAccountSchema": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/IntegrationAccountSchemaProperties", - "description": "The integration account schema properties." - } - }, - "allOf": [ - { - "$ref": "#/definitions/IntegrationAccountResource" - } - ] - }, - "IntegrationAccountSchemaProperties": { - "type": "object", - "properties": { - "schemaType": { - "$ref": "#/definitions/SchemaType", - "description": "The schema type." - }, - "targetNamespace": { - "type": "string", - "description": "The target namespace." - }, - "createdTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The created time." - }, - "changedTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The changed time." - }, - "content": { - "type": "object", - "description": "The content.", - "properties": { - } - }, - "contentType": { - "type": "string", - "description": "The content type." - }, - "contentLink": { - "$ref": "#/definitions/IntegrationAccountContentLink", - "readOnly": true, - "description": "The content link." - }, - "metadata": { - "type": "object", - "description": "The metadata.", - "properties": { - } - } - } - }, - "IntegrationAccountSchemaListResult": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/IntegrationAccountSchema" - }, - "description": "The list of integration account schemas." - }, - "nextLink": { - "type": "string", - "description": "The URL to get the next set of results." - } - } - }, - "IntegrationAccountSchemaFilter": { - "type": "object", - "properties": { - "schemaType": { - "$ref": "#/definitions/SchemaType", - "description": "The schema type of integration account schema." - } - } - }, - "SchemaType": { - "type": "string", - "enum": [ - "NotSpecified", - "Xml" - ], - "x-ms-enum": { - "name": "SchemaType", - "modelAsString": false - } - }, - "IntegrationAccountMap": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/IntegrationAccountMapProperties", - "description": "The integration account map properties." - } - }, - "allOf": [ - { - "$ref": "#/definitions/IntegrationAccountResource" - } - ] - }, - "IntegrationAccountMapProperties": { - "type": "object", - "properties": { - "mapType": { - "$ref": "#/definitions/MapType", - "description": "The map type." - }, - "createdTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The created time." - }, - "changedTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The changed time." - }, - "content": { - "type": "object", - "description": "The content.", - "properties": { - } - }, - "contentType": { - "type": "string", - "description": "The content type." - }, - "contentLink": { - "$ref": "#/definitions/IntegrationAccountContentLink", - "readOnly": true, - "description": "The content link." - }, - "metadata": { - "type": "object", - "description": "The metadata.", - "properties": { - } - } - } - }, - "IntegrationAccountMapListResult": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/IntegrationAccountMap" - }, - "description": "The list of integration account maps." - }, - "nextLink": { - "type": "string", - "description": "The URL to get the next set of results." - } - } - }, - "IntegrationAccountMapFilter": { - "type": "object", - "properties": { - "schemaType": { - "$ref": "#/definitions/MapType", - "description": "The map type of integration account map." - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts": { + "get": { + "tags": [ + "IntegrationAccounts" + ], + "operationId": "IntegrationAccounts_ListByResourceGroup", + "description": "Gets a list of integration accounts by resource group.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "$top", + "description": "The number of items to be included in the result.", + "in": "query", + "required": false, + "type": "integer", + "format": "int32" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountListResult" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}": { + "get": { + "tags": [ + "IntegrationAccounts" + ], + "operationId": "IntegrationAccounts_Get", + "description": "Gets an integration account.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccount" + } + } + } + }, + "put": { + "tags": [ + "IntegrationAccounts" + ], + "operationId": "IntegrationAccounts_CreateOrUpdate", + "description": "Creates or updates an integration account.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "integrationAccount", + "description": "The integration account.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/IntegrationAccount" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccount" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/IntegrationAccount" + } + } + } + }, + "patch": { + "tags": [ + "IntegrationAccounts" + ], + "operationId": "IntegrationAccounts_Update", + "description": "Updates an integration account.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "integrationAccount", + "description": "The integration account.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/IntegrationAccount" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccount" + } + } + } + }, + "delete": { + "tags": [ + "IntegrationAccounts" + ], + "operationId": "IntegrationAccounts_Delete", + "description": "Deletes an integration account.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/listCallbackUrl": { + "post": { + "tags": [ + "IntegrationAccounts" + ], + "operationId": "IntegrationAccounts_ListCallbackUrl", + "description": "Lists the integration account callback URL.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "parameters", + "description": "The callback URL parameters.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ListCallbackUrlParameters" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/CallbackUrl" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas": { + "get": { + "tags": [ + "IntegrationAccountSchemas" + ], + "operationId": "IntegrationAccountSchemas_List", + "description": "Gets a list of integration account schemas.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "$top", + "description": "The number of items to be included in the result.", + "in": "query", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$filter", + "description": "The filter to apply on the operation.", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountSchemaListResult" } + } }, - "MapType": { - "type": "string", - "enum": [ - "NotSpecified", - "Xslt" - ], - "x-ms-enum": { - "name": "MapType", - "modelAsString": false - } + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "IntegrationAccountSku": { - "type": "object", - "properties": { - "name": { - "$ref": "#/definitions/IntegrationAccountSkuName", - "description": "The sku name." - } + "x-ms-odata": "#/definitions/IntegrationAccountSchemaFilter" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas/{schemaName}": { + "get": { + "tags": [ + "IntegrationAccountSchemas" + ], + "operationId": "IntegrationAccountSchemas_Get", + "description": "Gets an integration account schema.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "schemaName", + "description": "The integration account schema name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountSchema" + } + } + } + }, + "put": { + "tags": [ + "IntegrationAccountSchemas" + ], + "operationId": "IntegrationAccountSchemas_CreateOrUpdate", + "description": "Creates or updates an integration account schema.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "schemaName", + "description": "The integration account schema name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "schema", + "description": "The integration account schema.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/IntegrationAccountSchema" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountSchema" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/IntegrationAccountSchema" + } + } + } + }, + "delete": { + "tags": [ + "IntegrationAccountSchemas" + ], + "operationId": "IntegrationAccountSchemas_Delete", + "description": "Deletes an integration account schema.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "schemaName", + "description": "The integration account schema name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps": { + "get": { + "tags": [ + "IntegrationAccountMaps" + ], + "operationId": "IntegrationAccountMaps_List", + "description": "Gets a list of integration account maps.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "$top", + "description": "The number of items to be included in the result.", + "in": "query", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$filter", + "description": "The filter to apply on the operation.", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountMapListResult" } + } }, - "IntegrationAccountPartnerListResult": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/IntegrationAccountPartner" - }, - "description": "The list of integration account partners." - }, - "nextLink": { - "type": "string", - "description": "The URL to get the next set of results." - } - } + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "IntegrationAccountPartnerFilter": { - "type": "object", - "properties": { - "partnerType": { - "$ref": "#/definitions/PartnerType", - "description": "The partner type of integration account partner." - } + "x-ms-odata": "#/definitions/IntegrationAccountMapFilter" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName}": { + "get": { + "tags": [ + "IntegrationAccountMaps" + ], + "operationId": "IntegrationAccountMaps_Get", + "description": "Gets an integration account map.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "mapName", + "description": "The integration account map name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountMap" + } + } + } + }, + "put": { + "tags": [ + "IntegrationAccountMaps" + ], + "operationId": "IntegrationAccountMaps_CreateOrUpdate", + "description": "Creates or updates an integration account map.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "mapName", + "description": "The integration account map name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "map", + "description": "The integration account map.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/IntegrationAccountMap" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountMap" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/IntegrationAccountMap" + } + } + } + }, + "delete": { + "tags": [ + "IntegrationAccountMaps" + ], + "operationId": "IntegrationAccountMaps_Delete", + "description": "Deletes an integration account map.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "mapName", + "description": "The integration account map name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners": { + "get": { + "tags": [ + "IntegrationAccountPartners" + ], + "operationId": "IntegrationAccountPartners_List", + "description": "Gets a list of integration account partners.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "$top", + "description": "The number of items to be included in the result.", + "in": "query", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$filter", + "description": "The filter to apply on the operation.", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountPartnerListResult" } + } }, - "IntegrationAccountPartner": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/IntegrationAccountPartnerProperties", - "description": "The integration account partner properties." - } - }, - "allOf": [ - { - "$ref": "#/definitions/IntegrationAccountResource" - } - ] - }, - "IntegrationAccountPartnerProperties": { - "type": "object", - "properties": { - "partnerType": { - "$ref": "#/definitions/PartnerType", - "description": "The partner type." - }, - "createdTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The created time." - }, - "changedTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The changed time." - }, - "metadata": { - "type": "object", - "description": "The metadata.", - "properties": { - } - }, - "content": { - "$ref": "#/definitions/PartnerContent", - "description": "The partner content." - } - } + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "PartnerType": { - "type": "string", - "enum": [ - "NotSpecified", - "B2B" - ], - "x-ms-enum": { - "name": "PartnerType", - "modelAsString": false + "x-ms-odata": "#/definitions/IntegrationAccountPartnerFilter" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners/{partnerName}": { + "get": { + "tags": [ + "IntegrationAccountPartners" + ], + "operationId": "IntegrationAccountPartners_Get", + "description": "Gets an integration account partner.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "partnerName", + "description": "The integration account partner name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountPartner" + } + } + } + }, + "put": { + "tags": [ + "IntegrationAccountPartners" + ], + "operationId": "IntegrationAccountPartners_CreateOrUpdate", + "description": "Creates or updates an integration account partner.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "partnerName", + "description": "The integration account partner name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "partner", + "description": "The integration account partner.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/IntegrationAccountPartner" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountPartner" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/IntegrationAccountPartner" + } + } + } + }, + "delete": { + "tags": [ + "IntegrationAccountPartners" + ], + "operationId": "IntegrationAccountPartners_Delete", + "description": "Deletes an integration account partner.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "partnerName", + "description": "The integration account partner name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements": { + "get": { + "tags": [ + "IntegrationAccountAgreements" + ], + "operationId": "IntegrationAccountAgreements_List", + "description": "Gets a list of integration account agreements.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "$top", + "description": "The number of items to be included in the result.", + "in": "query", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$filter", + "description": "The filter to apply on the operation.", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountAgreementListResult" } + } }, - "PartnerContent": { - "type": "object", - "properties": { - "b2b": { - "$ref": "#/definitions/B2BPartnerContent", - "description": "The B2B partner content." - } - } + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "B2BPartnerContent": { - "type": "object", - "properties": { - "businessIdentities": { - "type": "array", - "items": { - "$ref": "#/definitions/BusinessIdentity" - }, - "description": "The list of partner business identities." - } - } - }, - "BusinessIdentity": { - "type": "object", - "properties": { - "Qualifier": { - "type": "string", - "description": "The business identity qualifier." - }, - "Value": { - "type": "string", - "description": "The business identity value." - } - } - }, - "IntegrationAccountAgreementListResult": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/IntegrationAccountAgreement" - }, - "description": "The list of integration account agreements." - }, - "nextLink": { - "type": "string", - "description": "The URL to get the next set of results." - } - } - }, - "IntegrationAccountAgreementFilter": { - "type": "object", - "properties": { - "agreementType": { - "$ref": "#/definitions/AgreementType", - "description": "The agreement type of integration account agreement." - } - } - }, - "IntegrationAccountAgreement": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/IntegrationAccountAgreementProperties", - "description": "The integration account agreement properties." - } - }, - "allOf": [ - { - "$ref": "#/definitions/IntegrationAccountResource" - } - ] - }, - "IntegrationAccountAgreementProperties": { - "type": "object", - "properties": { - "createdTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The created time." - }, - "changedTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The changed time." - }, - "metadata": { - "type": "object", - "description": "The metadata.", - "properties": { - } - }, - "agreementType": { - "$ref": "#/definitions/AgreementType", - "description": "The agreement type." - }, - "hostPartner": { - "type": "string", - "description": "The host partner." - }, - "guestPartner": { - "type": "string", - "description": "The guest partner." - }, - "hostIdentity": { - "$ref": "#/definitions/BusinessIdentity", - "description": "The host identity." - }, - "guestIdentity": { - "$ref": "#/definitions/BusinessIdentity", - "description": "The guest identity." - }, - "content": { - "$ref": "#/definitions/AgreementContent", - "description": "The agreement content." - } - } - }, - "AgreementType": { - "type": "string", - "enum": [ - "NotSpecified", - "AS2", - "X12", - "Edifact" - ], - "x-ms-enum": { - "name": "AgreementType", - "modelAsString": false - } - }, - "AgreementContent": { - "type": "object", - "properties": { - "AS2": { - "$ref": "#/definitions/AS2AgreementContent", - "description": "The AS2 agreement content." - }, - "X12": { - "$ref": "#/definitions/X12AgreementContent", - "description": "The X12 agreement content." - }, - "Edifact": { - "$ref": "#/definitions/EdifactAgreementContent", - "description": "The EDIFACT agreement content." - } - } - }, - "AS2AgreementContent": { - "type": "object", - "properties": { - "receiveAgreement": { - "$ref": "#/definitions/AS2OneWayAgreement", - "description": "The AS2 one-way receive agreement." - }, - "sendAgreement": { - "$ref": "#/definitions/AS2OneWayAgreement", - "description": "The AS2 one-way send agreement." - } - } - }, - "AS2OneWayAgreement": { - "type": "object", - "properties": { - "senderBusinessIdentity": { - "$ref": "#/definitions/BusinessIdentity", - "description": "The sender business identity" - }, - "receiverBusinessIdentity": { - "$ref": "#/definitions/BusinessIdentity", - "description": "The receiver business identity" - }, - "protocolSettings": { - "$ref": "#/definitions/AS2ProtocolSettings", - "description": "The AS2 protocol settings." - } - } - }, - "AS2ProtocolSettings": { - "type": "object", - "properties": { - "messageConnectionSettings": { - "$ref": "#/definitions/AS2MessageConnectionSettings", - "description": "The message connection settings." - }, - "acknowledgementConnectionSettings": { - "$ref": "#/definitions/AS2AcknowledgementConnectionSettings", - "description": "The acknowledgement connection settings." - }, - "mdnSettings": { - "$ref": "#/definitions/AS2MdnSettings", - "description": "The MDN settings." - }, - "securitySettings": { - "$ref": "#/definitions/AS2SecuritySettings", - "description": "The security settings." - }, - "validationSettings": { - "$ref": "#/definitions/AS2ValidationSettings", - "description": "The validation settings." - }, - "envelopeSettings": { - "$ref": "#/definitions/AS2EnvelopeSettings", - "description": "The envelope settings." - }, - "errorSettings": { - "$ref": "#/definitions/AS2ErrorSettings", - "description": "The error settings." - } - } - }, - "AS2AcknowledgementConnectionSettings": { - "type": "object", - "properties": { - "ignoreCertificateNameMismatch": { - "type": "boolean", - "description": "The value indicating whether to ignore mismatch in certificate name." - }, - "supportHttpStatusCodeContinue": { - "type": "boolean", - "description": "The value indicating whether to support HTTP status code 'CONTINUE'." - }, - "keepHttpConnectionAlive": { - "type": "boolean", - "description": "The value indicating whether to keep the connection alive." - }, - "unfoldHttpHeaders": { - "type": "boolean", - "description": "The value indicating whether to unfold the HTTP headers." - } - } - }, - "AS2MessageConnectionSettings": { - "type": "object", - "properties": { - "ignoreCertificateNameMismatch": { - "type": "boolean", - "description": "The value indicating whether to ignore mismatch in certificate name." - }, - "supportHttpStatusCodeContinue": { - "type": "boolean", - "description": "The value indicating whether to support HTTP status code 'CONTINUE'." - }, - "keepHttpConnectionAlive": { - "type": "boolean", - "description": "The value indicating whether to keep the connection alive." - }, - "unfoldHttpHeaders": { - "type": "boolean", - "description": "The value indicating whether to unfold the HTTP headers." - } - } - }, - "AS2MdnSettings": { - "type": "object", - "properties": { - "needMdn": { - "type": "boolean", - "description": "The value indicating whether to send or request a MDN." - }, - "signMdn": { - "type": "boolean", - "description": "The value indicating whether the MDN needs to be signed or not." - }, - "sendMdnAsynchronously": { - "type": "boolean", - "description": "The value indicating whether to send the asynchronous MDN." - }, - "receiptDeliveryUrl": { - "type": "string", - "description": "The receipt delivery URL." - }, - "dispositionNotificationTo": { - "type": "string", - "description": "The disposition notification to header value." - }, - "signOutboundMdnIfOptional": { - "type": "boolean", - "description": "The value indicating whether to sign the outbound MDN if optional." - }, - "mdnText": { - "type": "string", - "description": "The MDN text." - }, - "sendInboundMdnToMessageBox": { - "type": "boolean", - "description": "The value indicating whether to send inbound MDN to message box." - }, - "micHashingAlgorithm": { - "$ref": "#/definitions/HashingAlgorithm", - "description": "The signing or hashing algorithm." - } - } - }, - "AS2SecuritySettings": { - "type": "object", - "properties": { - "overrideGroupSigningCertificate": { - "type": "boolean", - "description": "The value indicating whether to send or request a MDN." - }, - "signingCertificateName": { - "type": "string", - "description": "The name of the signing certificate." - }, - "encryptionCertificateName": { - "type": "string", - "description": "The name of the encryption certificate." - }, - "enableNrrForInboundEncodedMessages": { - "type": "boolean", - "description": "The value indicating whether to enable NRR for inbound encoded messages." - }, - "enableNrrForInboundDecodedMessages": { - "type": "boolean", - "description": "The value indicating whether to enable NRR for inbound decoded messages." - }, - "enableNrrForOutboundMdn": { - "type": "boolean", - "description": "The value indicating whether to enable NRR for outbound MDN." - }, - "enableNrrForOutboundEncodedMessages": { - "type": "boolean", - "description": "The value indicating whether to enable NRR for outbound encoded messages." - }, - "enableNrrForOutboundDecodedMessages": { - "type": "boolean", - "description": "The value indicating whether to enable NRR for outbound decoded messages." - }, - "enableNrrForInboundMdn": { - "type": "boolean", - "description": "The value indicating whether to enable NRR for inbound MDN." - } - } - }, - "AS2ValidationSettings": { - "type": "object", - "properties": { - "overrideMessageProperties": { - "type": "boolean", - "description": "The value indicating whether to override incoming message properties with those in agreement." - }, - "encryptMessage": { - "type": "boolean", - "description": "The value indicating whether the message has to be encrypted." - }, - "signMessage": { - "type": "boolean", - "description": "The value indicating whether the message has to be signed." - }, - "compressMessage": { - "type": "boolean", - "description": "The value indicating whether the message has to be compressed." - }, - "checkDuplicateMessage": { - "type": "boolean", - "description": "The value indicating whether to check for duplicate message." - }, - "interchangeDuplicatesValidityDays": { - "type": "integer", - "format": "int32", - "description": "The number of days to look back for duplicate interchange." - }, - "checkCertificateRevocationListOnSend": { - "type": "boolean", - "description": "The value indicating whether to check for certificate revocation list on send." - }, - "checkCertificateRevocationListOnReceive": { - "type": "boolean", - "description": "The value indicating whether to check for certificate revocation list on receive." - }, - "encryptionAlgorithm": { - "$ref": "#/definitions/EncryptionAlgorithm", - "description": "The encryption algorithm." - } - } - }, - "AS2EnvelopeSettings": { - "type": "object", - "properties": { - "messageContentType": { - "type": "string", - "description": "The message content type." - }, - "transmitFileNameInMimeHeader": { - "type": "boolean", - "description": "The value indicating whether to transmit file name in mime header." - }, - "fileNameTemplate": { - "type": "string", - "description": "The template for file name." - }, - "SuspendMessageOnFileNameGenerationError": { - "type": "boolean", - "description": "The value indicating whether to suspend message on file name generation error." - }, - "AutogenerateFileName": { - "type": "boolean", - "description": "The value indicating whether to auto generate file name." - } - } - }, - "AS2ErrorSettings": { - "type": "object", - "properties": { - "SuspendDuplicateMessage": { - "type": "boolean", - "description": "The value indicating whether to suspend duplicate message." - }, - "ResendIfMdnNotReceived": { - "type": "boolean", - "description": "The value indicating whether to resend message If MDN is not received." - } - } - }, - "X12AgreementContent": { - "type": "object", - "properties": { - "receiveAgreement": { - "$ref": "#/definitions/X12OneWayAgreement", - "description": "The X12 one-way receive agreement." - }, - "sendAgreement": { - "$ref": "#/definitions/X12OneWayAgreement", - "description": "The X12 one-way send agreement." - } - } - }, - "X12OneWayAgreement": { - "type": "object", - "properties": { - "senderBusinessIdentity": { - "$ref": "#/definitions/BusinessIdentity", - "description": "The sender business identity" - }, - "receiverBusinessIdentity": { - "$ref": "#/definitions/BusinessIdentity", - "description": "The receiver business identity" - }, - "protocolSettings": { - "$ref": "#/definitions/X12ProtocolSettings", - "description": "The X12 protocol settings." - } - } - }, - "X12ProtocolSettings": { - "type": "object", - "properties": { - "validationSettings": { - "$ref": "#/definitions/X12ValidationSettings", - "description": "The X12 validation settings." - }, - "framingSettings": { - "$ref": "#/definitions/X12FramingSettings", - "description": "The X12 framing settings." - }, - "envelopeSettings": { - "$ref": "#/definitions/X12EnvelopeSettings", - "description": "The X12 envelope settings." - }, - "acknowledgementSettings": { - "$ref": "#/definitions/X12AcknowledgementSettings", - "description": "The X12 acknowledgment settings." - }, - "messageFilter": { - "$ref": "#/definitions/X12MessageFilter", - "description": "The X12 message filter." - }, - "securitySettings": { - "$ref": "#/definitions/X12SecuritySettings", - "description": "The X12 security settings." - }, - "processingSettings": { - "$ref": "#/definitions/X12ProcessingSettings", - "description": "The X12 processing settings." - }, - "envelopeOverrides": { - "type": "array", - "items": { - "$ref": "#/definitions/X12EnvelopeOverride" - }, - "description": "The X12 envelope override settings." - }, - "validationOverrides": { - "type": "array", - "items": { - "$ref": "#/definitions/X12ValidationOverride" - }, - "description": "The X12 validation override settings." - }, - "messageFilterList": { - "type": "array", - "items": { - "$ref": "#/definitions/X12MessageIdentifier" - }, - "description": "The X12 message filter list." - }, - "schemaReferences": { - "type": "array", - "items": { - "$ref": "#/definitions/X12SchemaReference" - }, - "description": "The X12 schema references." - }, - "x12DelimiterOverrides": { - "type": "array", - "items": { - "$ref": "#/definitions/X12DelimiterOverrides" - }, - "description": "The X12 delimiter override settings." - } - } - }, - "X12ValidationSettings": { - "type": "object", - "properties": { - "validateCharacterSet": { - "type": "boolean", - "description": "The value indicating whether to validate character set in the message." - }, - "checkDuplicateInterchangeControlNumber": { - "type": "boolean", - "description": "The value indicating whether to check for duplicate interchange control number." - }, - "interchangeControlNumberValidityDays": { - "type": "integer", - "format": "int32", - "description": "The validity period of interchange control number." - }, - "checkDuplicateGroupControlNumber": { - "type": "boolean", - "description": "The value indicating whether to check for duplicate group control number." - }, - "checkDuplicateTransactionSetControlNumber": { - "type": "boolean", - "description": "The value indicating whether to check for duplicate transaction set control number." - }, - "validateEDITypes": { - "type": "boolean", - "description": "The value indicating whether to Whether to validate EDI types." - }, - "validateXSDTypes": { - "type": "boolean", - "description": "The value indicating whether to Whether to validate XSD types." - }, - "allowLeadingAndTrailingSpacesAndZeroes": { - "type": "boolean", - "description": "The value indicating whether to allow leading and trailing spaces and zeroes." - }, - "trimLeadingAndTrailingSpacesAndZeroes": { - "type": "boolean", - "description": "The value indicating whether to trim leading and trailing spaces and zeroes." - }, - "trailingSeparatorPolicy": { - "$ref": "#/definitions/TrailingSeparatorPolicy", - "description": "The trailing separator policy." - } - } - }, - "X12FramingSettings": { - "type": "object", - "properties": { - "dataElementSeparator": { - "type": "integer", - "format": "int32", - "description": "The data element separator." - }, - "componentSeparator": { - "type": "integer", - "format": "int32", - "description": "The component separator." - }, - "replaceSeparatorsInPayload": { - "type": "boolean", - "description": "The value indicating whether to replace separators in payload." - }, - "replaceCharacter": { - "type": "integer", - "format": "int32", - "description": "The replacement character." - }, - "segmentTerminator": { - "type": "integer", - "format": "int32", - "description": "The segment terminator." - }, - "characterSet": { - "$ref": "#/definitions/X12CharacterSet", - "description": "The X12 character set." - }, - "segmentTerminatorSuffix": { - "$ref": "#/definitions/SegmentTerminatorSuffix", - "description": "The segment terminator suffix." - } - - } - }, - "X12EnvelopeSettings": { - "type": "object", - "properties": { - "controlStandardsId": { - "type": "integer", - "format": "int32", - "description": "The controls standards id." - }, - "useControlStandardsIdAsRepetitionCharacter": { - "type": "boolean", - "description": "The value indicating whether to use control standards id as repetition character." - }, - "senderApplicationId": { - "type": "string", - "description": "The sender application id." - }, - "receiverApplicationId": { - "type": "string", - "description": "The receiver application id." - }, - "controlVersionNumber": { - "type": "string", - "description": "The control version number." - }, - "interchangeControlNumberLowerBound": { - "type": "integer", - "format": "int32", - "description": "The interchange control number lower bound." - }, - "interchangeControlNumberUpperBound": { - "type": "integer", - "format": "int32", - "description": "The interchange control number upper bound." - }, - "rolloverInterchangeControlNumber": { - "type": "boolean", - "description": "The value indicating whether to rollover interchange control number." - }, - "enableDefaultGroupHeaders": { - "type": "boolean", - "description": "The value indicating whether to enable default group headers." - }, - "functionalGroupId": { - "type": "string", - "description": "The functional group id." - }, - "groupControlNumberLowerBound": { - "type": "integer", - "format": "int32", - "description": "The group control number lower bound." - }, - "groupControlNumberUpperBound": { - "type": "integer", - "format": "int32", - "description": "The group control number upper bound." - }, - "rolloverGroupControlNumber": { - "type": "boolean", - "description": "The value indicating whether to rollover group control number." - }, - "groupHeaderAgencyCode": { - "type": "string", - "description": "The group header agency code." - }, - "groupHeaderVersion": { - "type": "string", - "description": "The group header version." - }, - "transactionSetControlNumberLowerBound": { - "type": "integer", - "format": "int32", - "description": "The transaction set control number lower bound." - }, - "transactionSetControlNumberUpperBound": { - "type": "integer", - "format": "int32", - "description": "The transaction set control number upper bound." - }, - "rolloverTransactionSetControlNumber": { - "type": "boolean", - "description": "The value indicating whether to rollover transaction set control number." - }, - "transactionSetControlNumberPrefix": { - "type": "string", - "description": "The transaction set control number prefix." - }, - "transactionSetControlNumberSuffix": { - "type": "string", - "description": "The transaction set control number suffix." - }, - "overwriteExistingTransactionSetControlNumber": { - "type": "boolean", - "description": "The value indicating whether to overwrite existing transaction set control number." - }, - "groupHeaderDateFormat": { - "$ref": "#/definitions/X12DateFormat", - "description": "The group header date format." - }, - "groupHeaderTimeFormat": { - "$ref": "#/definitions/X12TimeFormat", - "description": "The group header time format." - }, - "usageIndicator": { - "$ref": "#/definitions/UsageIndicator", - "description": "The usage indicator." - } - } - }, - "X12AcknowledgementSettings": { - "type": "object", - "properties": { - "needTechnicalAcknowledgement": { - "type": "boolean", - "description": "The value indicating whether technical acknowledgement is needed." - }, - "batchTechnicalAcknowledgements": { - "type": "boolean", - "description": "The value indicating whether to batch the technical acknowledgements." - }, - "needFunctionalAcknowledgement": { - "type": "boolean", - "description": "The value indicating whether functional acknowledgement is needed." - }, - "functionalAcknowledgementVersion": { - "type": "string", - "description": "The functional acknowledgement version." - }, - "batchFunctionalAcknowledgements": { - "type": "boolean", - "description": "The value indicating whether to batch functional acknowledgements." - }, - "needImplementationAcknowledgement": { - "type": "boolean", - "description": "The value indicating whether implementation acknowledgement is needed." - }, - "implementationAcknowledgementVersion": { - "type": "string", - "description": "The implementation acknowledgement version." - }, - "batchImplementationAcknowledgements": { - "type": "boolean", - "description": "The value indicating whether to batch implementation acknowledgements." - }, - "needLoopForValidMessages": { - "type": "boolean", - "description": "The value indicating whether a loop is needed for valid messages." - }, - "sendSynchronousAcknowledgement": { - "type": "boolean", - "description": "The value indicating whether to send synchronous acknowledgement." - }, - "acknowledgementControlNumberPrefix": { - "type": "string", - "description": "The acknowledgement control number prefix." - }, - "acknowledgementControlNumberSuffix": { - "type": "string", - "description": "The acknowledgement control number suffix." - }, - "acknowledgementControlNumberLowerBound": { - "type": "integer", - "format": "int32", - "description": "The acknowledgement control number lower bound." - }, - "acknowledgementControlNumberUpperBound": { - "type": "integer", - "format": "int32", - "description": "The acknowledgement control number upper bound." - }, - "rolloverAcknowledgementControlNumber": { - "type": "boolean", - "description": "The value indicating whether to rollover acknowledgement control number." - } - } - }, - "X12MessageFilter": { - "type": "object", - "properties": { - "messageFilterType": { - "$ref": "#/definitions/MessageFilterType", - "description": "The message filter type." - } - } - }, - "X12SecuritySettings": { - "type": "object", - "properties": { - "authorizationQualifier": { - "type": "string", - "description": "The authorization qualifier." - }, - "authorizationValue": { - "type": "string", - "description": "The authorization value." - }, - "securityQualifier": { - "type": "string", - "description": "The security qualifier." - }, - "passwordValue": { - "type": "string", - "description": "The password value." - } - } - }, - "X12ProcessingSettings": { - "type": "object", - "properties": { - "maskSecurityInfo": { - "type": "boolean", - "description": "The value indicating whether to mask security information." - }, - "convertImpliedDecimal": { - "type": "boolean", - "description": "The value indicating whether to convert numerical type to implied decimal." - }, - "preserveInterchange": { - "type": "boolean", - "description": "The value indicating whether to preserve interchange." - }, - "suspendInterchangeOnError": { - "type": "boolean", - "description": "The value indicating whether to suspend interchange on error." - }, - "createEmptyXmlTagsForTrailingSeparators": { - "type": "boolean", - "description": "The value indicating whether to create empty xml tags for trailing separators." - }, - "useDotAsDecimalSeparator": { - "type": "boolean", - "description": "The value indicating whether to use dot as decimal separator." - } - } - }, - "X12EnvelopeOverride": { - "type": "object", - "properties": { - "targetNamespace": { - "type": "string", - "description": "The target namespace on which this envelope settings has to be applied." - }, - "protocolVersion": { - "type": "string", - "description": "The protocol version on which this envelope settings has to be applied." - }, - "messageId": { - "type": "string", - "description": "The message id on which this envelope settings has to be applied." - }, - "responsibleAgencyCode": { - "type": "integer", - "format": "int32", - "description": "The responsible agency code." - }, - "headerVersion": { - "type": "string", - "description": "The header version." - }, - "senderApplicationId": { - "type": "string", - "description": "The sender application id." - }, - "receiverApplicationId": { - "type": "string", - "description": "The receiver application id." - }, - "functionalIdentifierCode": { - "type": "string", - "description": "The functional identifier code." - }, - "dateFormat": { - "$ref": "#/definitions/X12DateFormat", - "description": "The date format." - }, - "timeFormat": { - "$ref": "#/definitions/X12TimeFormat", - "description": "The time format." - } - } - }, - "X12ValidationOverride": { - "type": "object", - "properties": { - "messageId": { - "type": "string", - "description": "The message id on which the validation settings has to be applied." - }, - "validateEDITypes": { - "type": "boolean", - "description": "The value indicating whether to validate EDI types." - }, - "validateXSDTypes": { - "type": "boolean", - "description": "The value indicating whether to validate XSD types." - }, - "allowLeadingAndTrailingSpacesAndZeroes": { - "type": "boolean", - "description": "The value indicating whether to allow leading and trailing spaces and zeroes." - }, - "validateCharacterSet": { - "type": "boolean", - "description": "The value indicating whether to validate character Set." - }, - "trimLeadingAndTrailingSpacesAndZeroes": { - "type": "boolean", - "description": "The value indicating whether to trim leading and trailing spaces and zeroes." - }, - "trailingSeparatorPolicy": { - "$ref": "#/definitions/TrailingSeparatorPolicy", - "description": "The trailing separator policy." - } - } - }, - "X12MessageIdentifier": { - "type": "object", - "properties": { - "messageId": { - "type": "string", - "description": "The message id." - } - } - }, - "X12SchemaReference": { - "type": "object", - "properties": { - "messageId": { - "type": "string", - "description": "The message id." - }, - "senderApplicationId": { - "type": "string", - "description": "The sender application id." - }, - "schemaVersion": { - "type": "string", - "description": "The schema version." - }, - "schemaName": { - "type": "string", - "description": "The schema name." - } - } - }, - "X12DelimiterOverrides": { - "type": "object", - "properties": { - "protocolVersion": { - "type": "string", - "description": "The protocol version." - }, - "messageId": { - "type": "string", - "description": "The message id." - }, - "dataElementSeparator": { - "type": "integer", - "format": "int32", - "description": "The data element separator." - }, - "componentSeparator": { - "type": "integer", - "format": "int32", - "description": "The component separator." - }, - "segmentTerminator": { - "type": "integer", - "format": "int32", - "description": "The segment terminator." - }, - "segmentTerminatorSuffix": { - "$ref": "#/definitions/SegmentTerminatorSuffix", - "description": "The segment terminator suffix." - }, - "replaceCharacter": { - "type": "integer", - "format": "int32", - "description": "The replacement character." - }, - "replaceSeparatorsInPayload": { - "type": "boolean", - "description": "The value indicating whether to replace separators in payload." - }, - "targetNamespace": { - "type": "string", - "description": "The target namespace on which this delimiter settings has to be applied." - } - } - }, - "X12CharacterSet": { - "type": "string", - "enum": [ - "NotSpecified", - "Basic", - "Extended", - "UTF8" - ], - "x-ms-enum": { - "name": "X12CharacterSet", - "modelAsString": false - } - }, - "SegmentTerminatorSuffix": { - "type": "string", - "enum": [ - "NotSpecified", - "None", - "CR", - "LF", - "CRLF" - ], - "x-ms-enum": { - "name": "SegmentTerminatorSuffix", - "modelAsString": false - } - }, - "X12DateFormat": { - "type": "string", - "enum": [ - "NotSpecified", - "CCYYMMDD", - "YYMMDD" - ], - "x-ms-enum": { - "name": "X12DateFormat", - "modelAsString": false - } - }, - "X12TimeFormat": { - "type": "string", - "enum": [ - "NotSpecified", - "HHMM", - "HHMMSS", - "HHMMSSdd", - "HHMMSSd" - ], - "x-ms-enum": { - "name": "X12TimeFormat", - "modelAsString": false - } - }, - "UsageIndicator": { - "type": "string", - "enum": [ - "NotSpecified", - "Test", - "Information", - "Production" - ], - "x-ms-enum": { - "name": "UsageIndicator", - "modelAsString": false - } - }, - "MessageFilterType": { - "type": "string", - "enum": [ - "NotSpecified", - "Include", - "Exclude" - ], - "x-ms-enum": { - "name": "MessageFilterType", - "modelAsString": false - } - }, - "HashingAlgorithm": { - "type": "string", - "enum": [ - "NotSpecified", - "None", - "SHA2256", - "SHA2384", - "SHA2512" - ], - "x-ms-enum": { - "name": "HashingAlgorithm", - "modelAsString": false - } - }, - "EncryptionAlgorithm": { - "type": "string", - "enum": [ - "NotSpecified", - "None", - "DES3", - "RC2", - "AES128", - "AES192", - "AES256" - ], - "x-ms-enum": { - "name": "EncryptionAlgorithm", - "modelAsString": false - } - }, - "TrailingSeparatorPolicy": { - "type": "string", - "enum": [ - "NotSpecified", - "NotAllowed", - "Optional", - "Mandatory" - ], - "x-ms-enum": { - "name": "TrailingSeparatorPolicy", - "modelAsString": false - } - }, - "EdifactAgreementContent": { - "type": "object", - "properties": { - "receiveAgreement": { - "$ref": "#/definitions/EdifactOneWayAgreement", - "description": "The EDIFACT one-way receive agreement." - }, - "sendAgreement": { - "$ref": "#/definitions/EdifactOneWayAgreement", - "description": "The EDIFACT one-way send agreement." - } - } - }, - "EdifactOneWayAgreement": { - "type": "object", - "properties": { - "senderBusinessIdentity": { - "$ref": "#/definitions/BusinessIdentity", - "description": "The sender business identity" - }, - "receiverBusinessIdentity": { - "$ref": "#/definitions/BusinessIdentity", - "description": "The receiver business identity" - }, - "protocolSettings": { - "$ref": "#/definitions/EdifactProtocolSettings", - "description": "The EDIFACT protocol settings." - } - } - }, - "EdifactProtocolSettings": { - "type": "object", - "properties": { - "validationSettings": { - "$ref": "#/definitions/EdifactValidationSettings", - "description": "The EDIFACT validation settings." - }, - "framingSettings": { - "$ref": "#/definitions/EdifactFramingSettings", - "description": "The EDIFACT framing settings." - }, - "envelopeSettings": { - "$ref": "#/definitions/EdifactEnvelopeSettings", - "description": "The EDIFACT envelope settings." - }, - "acknowledgementSettings": { - "$ref": "#/definitions/EdifactAcknowledgementSettings", - "description": "The EDIFACT acknowledgement settings." - }, - "messageFilter": { - "$ref": "#/definitions/EdifactMessageFilter", - "description": "The EDIFACT message filter." - }, - "processingSettings": { - "$ref": "#/definitions/EdifactProcessingSettings", - "description": "The EDIFACT processing Settings." - }, - "envelopeOverrides": { - "type": "array", - "items": { - "$ref": "#/definitions/EdifactEnvelopeOverride" - }, - "description": "The EDIFACT envelope override settings." - }, - "messageFilterList": { - "type": "array", - "items": { - "$ref": "#/definitions/EdifactMessageIdentifier" - }, - "description": "The EDIFACT message filter list." - }, - "schemaReferences": { - "type": "array", - "items": { - "$ref": "#/definitions/EdifactSchemaReference" - }, - "description": "The EDIFACT schema references." - }, - "validationOverrides": { - "type": "array", - "items": { - "$ref": "#/definitions/EdifactValidationOverride" - }, - "description": "The EDIFACT validation override settings." - }, - "edifactDelimiterOverrides": { - "type": "array", - "items": { - "$ref": "#/definitions/EdifactDelimiterOverride" - }, - "description": "The EDIFACT delimiter override settings." - } - } - }, - "EdifactValidationSettings": { - "type": "object", - "properties": { - "validateCharacterSet": { - "type": "boolean", - "description": "The value indicating whether to validate character set in the message." - }, - "checkDuplicateInterchangeControlNumber": { - "type": "boolean", - "description": "The value indicating whether to check for duplicate interchange control number." - }, - "interchangeControlNumberValidityDays": { - "type": "integer", - "format": "int32", - "description": "The validity period of interchange control number." - }, - "checkDuplicateGroupControlNumber": { - "type": "boolean", - "description": "The value indicating whether to check for duplicate group control number." - }, - "checkDuplicateTransactionSetControlNumber": { - "type": "boolean", - "description": "The value indicating whether to check for duplicate transaction set control number." - }, - "validateEDITypes": { - "type": "boolean", - "description": "The value indicating whether to Whether to validate EDI types." - }, - "validateXSDTypes": { - "type": "boolean", - "description": "The value indicating whether to Whether to validate XSD types." - }, - "allowLeadingAndTrailingSpacesAndZeroes": { - "type": "boolean", - "description": "The value indicating whether to allow leading and trailing spaces and zeroes." - }, - "trimLeadingAndTrailingSpacesAndZeroes": { - "type": "boolean", - "description": "The value indicating whether to trim leading and trailing spaces and zeroes." - }, - "trailingSeparatorPolicy": { - "$ref": "#/definitions/TrailingSeparatorPolicy", - "description": "The trailing separator policy." - } - } - }, - "EdifactFramingSettings": { - "type": "object", - "properties": { - "serviceCodeListDirectoryVersion": { - "type": "string", - "description": "The service code list directory version." - }, - "characterEncoding": { - "type": "string", - "description": "The character encoding." - }, - "protocolVersion": { - "type": "integer", - "format": "int32", - "description": "The protocol version." - }, - "dataElementSeparator": { - "type": "integer", - "format": "int32", - "description": "The data element separator." - }, - "componentSeparator": { - "type": "integer", - "format": "int32", - "description": "The component separator." - }, - "segmentTerminator": { - "type": "integer", - "format": "int32", - "description": "The segment terminator." - }, - "releaseIndicator": { - "type": "integer", - "format": "int32", - "description": "The release indicator." - }, - "repetitionSeparator": { - "type": "integer", - "format": "int32", - "description": "The repetition separator." - }, - "characterSet": { - "$ref": "#/definitions/EdifactCharacterSet", - "description": "The EDIFACT frame setting characterSet." - }, - "decimalPointIndicator": { - "$ref": "#/definitions/EdifactDecimalIndicator", - "description": "The EDIFACT frame setting decimal indicator." - }, - "segmentTerminatorSuffix": { - "$ref": "#/definitions/SegmentTerminatorSuffix", - "description": "The EDIFACT frame setting segment terminator suffix." - } - } - }, - "EdifactEnvelopeSettings": { - "type": "object", - "properties": { - "groupAssociationAssignedCode": { - "type": "string", - "description": "The group association assigned code." - }, - "communicationAgreementId": { - "type": "string", - "description": "The communication agreement id." - }, - "applyDelimiterStringAdvice": { - "type": "boolean", - "description": "The value indicating whether to apply delimiter string advice." - }, - "createGroupingSegments": { - "type": "boolean", - "description": "The value indicating whether to create grouping segments." - }, - "enableDefaultGroupHeaders": { - "type": "boolean", - "description": "The value indicating whether to enable default group headers." - }, - "recipientReferencePasswordValue": { - "type": "string", - "description": "The recipient reference password value." - }, - "recipientReferencePasswordQualifier": { - "type": "string", - "description": "The recipient reference password qualifier." - }, - "applicationReferenceId": { - "type": "string", - "description": "The application reference id." - }, - "processingPriorityCode": { - "type": "string", - "description": "The processing priority code." - }, - "interchangeControlNumberLowerBound": { - "type": "integer", - "format": "int64", - "description": "The interchange control number lower bound." - }, - "interchangeControlNumberUpperBound": { - "type": "integer", - "format": "int64", - "description": "The interchange control number upper bound." - }, - "rolloverInterchangeControlNumber": { - "type": "boolean", - "description": "The value indicating whether to rollover interchange control number." - }, - "interchangeControlNumberPrefix": { - "type": "string", - "description": "The interchange control number prefix." - }, - "interchangeControlNumberSuffix": { - "type": "string", - "description": "The interchange control number suffix." - }, - "senderReverseRoutingAddress": { - "type": "string", - "description": "The sender reverse routing address." - }, - "receiverReverseRoutingAddress": { - "type": "string", - "description": "The receiver reverse routing address." - }, - "functionalGroupId": { - "type": "string", - "description": "The functional group id." - }, - "groupControllingAgencyCode": { - "type": "string", - "description": "The group controlling agency code." - }, - "groupMessageVersion": { - "type": "string", - "description": "The group message version." - }, - "groupMessageRelease": { - "type": "string", - "description": "The group message release." - }, - "groupControlNumberLowerBound": { - "type": "integer", - "format": "int64", - "description": "The group control number lower bound." - }, - "groupControlNumberUpperBound": { - "type": "integer", - "format": "int64", - "description": "The group control number upper bound." - }, - "rolloverGroupControlNumber": { - "type": "boolean", - "description": "The value indicating whether to rollover group control number." - }, - "groupControlNumberPrefix": { - "type": "string", - "description": "The group control number prefix." - }, - "groupControlNumberSuffix": { - "type": "string", - "description": "The group control number suffix." - }, - "groupApplicationReceiverQualifier": { - "type": "string", - "description": "The group application receiver qualifier." - }, - "groupApplicationReceiverId": { - "type": "string", - "description": "The group application receiver id." - }, - "groupApplicationSenderQualifier": { - "type": "string", - "description": "The group application sender qualifier." - }, - "groupApplicationSenderId": { - "type": "string", - "description": "The group application sender id." - }, - "groupApplicationPassword": { - "type": "string", - "description": "The group application password." - }, - "overwriteExistingTransactionSetControlNumber": { - "type": "boolean", - "description": "The value indicating whether to overwrite existing transaction set control number." - }, - "transactionSetControlNumberPrefix": { - "type": "string", - "description": "The transaction set control number prefix." - }, - "transactionSetControlNumberSuffix": { - "type": "string", - "description": "The transaction set control number suffix." - }, - "transactionSetControlNumberLowerBound": { - "type": "integer", - "format": "int64", - "description": "The transaction set control number lower bound." - }, - "transactionSetControlNumberUpperBound": { - "type": "integer", - "format": "int64", - "description": "The transaction set control number upper bound." - }, - "rolloverTransactionSetControlNumber": { - "type": "boolean", - "description": "The value indicating whether to rollover transaction set control number." - }, - "isTestInterchange": { - "type": "boolean", - "description": "The value indicating whether the message is a test interchange." - }, - "senderInternalIdentification": { - "type": "string", - "description": "The sender internal identification." - }, - "senderInternalSubIdentification": { - "type": "string", - "description": "The sender internal sub identification." - }, - "receiverInternalIdentification": { - "type": "string", - "description": "The receiver internal identification." - }, - "receiverInternalSubIdentification": { - "type": "string", - "description": "The receiver internal sub identification." - } - } - }, - "EdifactAcknowledgementSettings": { - "type": "object", - "properties": { - "needTechnicalAcknowledgement": { - "type": "boolean", - "description": "The value indicating whether technical acknowledgement is needed." - }, - "batchTechnicalAcknowledgements": { - "type": "boolean", - "description": "The value indicating whether to batch the technical acknowledgements." - }, - "needFunctionalAcknowledgement": { - "type": "boolean", - "description": "The value indicating whether functional acknowledgement is needed." - }, - "batchFunctionalAcknowledgements": { - "type": "boolean", - "description": "The value indicating whether to batch functional acknowledgements." - }, - "needLoopForValidMessages": { - "type": "boolean", - "description": "The value indicating whether a loop is needed for valid messages." - }, - "sendSynchronousAcknowledgement": { - "type": "boolean", - "description": "The value indicating whether to send synchronous acknowledgement." - }, - "acknowledgementControlNumberPrefix": { - "type": "string", - "description": "The acknowledgement control number prefix." - }, - "acknowledgementControlNumberSuffix": { - "type": "string", - "description": "The acknowledgement control number suffix." - }, - "acknowledgementControlNumberLowerBound": { - "type": "integer", - "format": "int32", - "description": "The acknowledgement control number lower bound." - }, - "acknowledgementControlNumberUpperBound": { - "type": "integer", - "format": "int32", - "description": "The acknowledgement control number upper bound." - }, - "rolloverAcknowledgementControlNumber": { - "type": "boolean", - "description": "The value indicating whether to rollover acknowledgement control number." - } - } - }, - "EdifactMessageFilter": { - "type": "object", - "properties": { - "messageFilterType": { - "$ref": "#/definitions/MessageFilterType", - "description": "The message filter type." - } - } - }, - "EdifactProcessingSettings": { - "type": "object", - "properties": { - "maskSecurityInfo": { - "type": "boolean", - "description": "The value indicating whether to mask security information." - }, - "preserveInterchange": { - "type": "boolean", - "description": "The value indicating whether to preserve interchange." - }, - "suspendInterchangeOnError": { - "type": "boolean", - "description": "The value indicating whether to suspend interchange on error." - }, - "createEmptyXmlTagsForTrailingSeparators": { - "type": "boolean", - "description": "The value indicating whether to create empty xml tags for trailing separators." - }, - "useDotAsDecimalSeparator": { - "type": "boolean", - "description": "The value indicating whether to use dot as decimal separator." - } - } - }, - "EdifactEnvelopeOverride": { - "type": "object", - "properties": { - "messageId": { - "type": "string", - "description": "The message id on which this envelope settings has to be applied." - }, - "messageVersion": { - "type": "string", - "description": "The message version on which this envelope settings has to be applied." - }, - "messageRelease": { - "type": "string", - "description": "The message release version on which this envelope settings has to be applied." - }, - "messageAssociationAssignedCode": { - "type": "string", - "description": "The message association assigned code." - }, - "targetNamespace": { - "type": "string", - "description": "The target namespace on which this envelope settings has to be applied." - }, - "functionalGroupId": { - "type": "string", - "description": "The functional group id." - }, - "senderApplicationQualifier": { - "type": "string", - "description": "The sender application qualifier." - }, - "senderApplicationId": { - "type": "string", - "description": "The sender application id." - }, - "receiverApplicationQualifier": { - "type": "string", - "description": "The receiver application qualifier." - - }, - "receiverApplicationId": { - "type": "string", - "description": "The receiver application id." - }, - "controllingAgencyCode": { - "type": "string", - "description": "The controlling agency code." - }, - "groupHeaderMessageVersion": { - "type": "string", - "description": "The group header message version." - }, - "groupHeaderMessageRelease": { - "type": "string", - "description": "The group header message release." - }, - "associationAssignedCode": { - "type": "string", - "description": "The association assigned code." - }, - "applicationPassword": { - "type": "string", - "description": "The application password." - } - } - }, - "EdifactMessageIdentifier": { - "type": "object", - "properties": { - "messageId": { - "type": "string", - "description": "The message id on which this envelope settings has to be applied." - } - } - }, - "EdifactSchemaReference": { - "type": "object", - "properties": { - "messageId": { - "type": "string", - "description": "The message id." - }, - "messageVersion": { - "type": "string", - "description": "The message version." - }, - "messageRelease": { - "type": "string", - "description": "The message release version." - }, - "senderApplicationId": { - "type": "string", - "description": "The sender application id." - }, - "senderApplicationQualifier": { - "type": "string", - "description": "The sender application qualifier." - }, - "associationAssignedCode": { - "type": "string", - "description": "The association assigned code." - }, - "schemaName": { - "type": "string", - "description": "The schema name." - } - } - }, - "EdifactValidationOverride": { - "type": "object", - "properties": { - "messageId": { - "type": "string", - "description": "The message id on which the validation settings has to be applied." - }, - "enforceCharacterSet": { - "type": "boolean", - "description": "The value indicating whether to validate character Set." - }, - "validateEDITypes": { - "type": "boolean", - "description": "The value indicating whether to validate EDI types." - }, - "validateXSDTypes": { - "type": "boolean", - "description": "The value indicating whether to validate XSD types." - }, - "allowLeadingAndTrailingSpacesAndZeroes": { - "type": "boolean", - "description": "The value indicating whether to allow leading and trailing spaces and zeroes." - }, - "trailingSeparatorPolicy": { - "$ref": "#/definitions/TrailingSeparatorPolicy", - "description": "The trailing separator policy." - }, - "trimLeadingAndTrailingSpacesAndZeroes": { - "type": "boolean", - "description": "The value indicating whether to trim leading and trailing spaces and zeroes." - } - } - }, - "EdifactDelimiterOverride": { - "type": "object", - "properties": { - "messageId": { - "type": "string", - "description": "The message id." - }, - "messageVersion": { - "type": "string", - "description": "The message version." - }, - "messageRelease": { - "type": "string", - "description": "The message release version." - }, - "dataElementSeparator": { - "type": "integer", - "format": "int32", - "description": "The data element separator." - }, - "componentSeparator": { - "type": "integer", - "format": "int32", - "description": "The component separator." - }, - "segmentTerminator": { - "type": "integer", - "format": "int32", - "description": "The segment terminator." - }, - "repetitionSeparator": { - "type": "integer", - "format": "int32", - "description": "The repetition separator." - }, - "segmentTerminatorSuffix": { - "$ref": "#/definitions/SegmentTerminatorSuffix", - "description": "The segment terminator suffix." - }, - "decimalPointIndicator": { - "$ref": "#/definitions/EdifactDecimalIndicator", - "description": "The decimal point indicator." - }, - "releaseIndicator": { - "type": "integer", - "format": "int32", - "description": "The release indicator." - }, - "messageAssociationAssignedCode": { - "type": "string", - "description": "The message association assigned code." - }, - "targetNamespace": { - "type": "string", - "description": "The target namespace on which this delimiter settings has to be applied." - } - } - }, - "EdifactCharacterSet": { - "type": "string", - "enum": [ - "NotSpecified", - "UNOB", - "UNOA", - "UNOC", - "UNOD", - "UNOE", - "UNOF", - "UNOG", - "UNOH", - "UNOI", - "UNOJ", - "UNOK", - "UNOX", - "UNOY", - "KECA" - ], - "x-ms-enum": { - "name": "EdifactCharacterSet", - "modelAsString": false - } - }, - "EdifactDecimalIndicator": { - "type": "string", - "enum": [ - "NotSpecified", - "Comma", - "Decimal" - ], - "x-ms-enum": { - "name": "EdifactDecimalIndicator", - "modelAsString": false - } - }, - "IntegrationAccountCertificateListResult": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/IntegrationAccountCertificate" - }, - "description": "The list of integration account certificates." - }, - "nextLink": { - "type": "string", - "description": "The URL to get the next set of results." - } - } - }, - "IntegrationAccountCertificate": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/IntegrationAccountCertificateProperties", - "description": "The integration account certificate properties." - } - }, - "allOf": [ - { - "$ref": "#/definitions/IntegrationAccountResource" - } - ] - }, - "IntegrationAccountCertificateProperties": { - "type": "object", - "properties": { - "createdTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The created time." - }, - "changedTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The changed time." - }, - "metadata": { - "type": "object", - "description": "The metadata.", - "properties": { - } - }, - "key": { - "$ref": "#/definitions/KeyVaultKeyReference", - "description": "The key details in the key vault." - }, - "publicCertificate": { - "type": "string", - "description": "The public certificate." - } - } - }, - "KeyVaultKeyReference": { - "type": "object", - "properties": { - "keyVault": { - "type": "object", - "description": "The key vault reference.", - "properties": { - "id": { - "type": "string", - "description": "The resource id." - }, - "name": { - "type": "string", - "readOnly": true, - "description": "The resource name." - }, - "type": { - "type": "string", - "readOnly": true, - "description": "The resource type." - } - } - }, - "keyName": { - "type": "string", - "description": "The private key name in key vault." - }, - "keyVersion": { - "type": "string", - "description": "The private key version in key vault." - } - } + "x-ms-odata": "#/definitions/IntegrationAccountAgreementFilter" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements/{agreementName}": { + "get": { + "tags": [ + "IntegrationAccountAgreements" + ], + "operationId": "IntegrationAccountAgreements_Get", + "description": "Gets an integration account agreement.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "agreementName", + "description": "The integration account agreement name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountAgreement" + } + } } + }, + "put": { + "tags": [ + "IntegrationAccountAgreements" + ], + "operationId": "IntegrationAccountAgreements_CreateOrUpdate", + "description": "Creates or updates an integration account agreement.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "agreementName", + "description": "The integration account agreement name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "agreement", + "description": "The integration account agreement.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/IntegrationAccountAgreement" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountAgreement" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/IntegrationAccountAgreement" + } + } + } + }, + "delete": { + "tags": [ + "IntegrationAccountAgreements" + ], + "operationId": "IntegrationAccountAgreements_Delete", + "description": "Deletes an integration account agreement.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "agreementName", + "description": "The integration account agreement name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + } + } + } }, - "parameters": { - "subscriptionId": { - "name": "subscriptionId", - "description": "The subscription id.", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates": { + "get": { + "tags": [ + "IntegrationAccountCertificates" + ], + "operationId": "IntegrationAccountCertificates_List", + "description": "Gets a list of integration account certificates.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", "in": "path", "required": true, "type": "string" - }, - "api-version": { - "name": "api-version", - "description": "The API version.", + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "$top", + "description": "The number of items to be included in the result.", "in": "query", + "required": false, + "type": "integer", + "format": "int32" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountCertificateListResult" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates/{certificateName}": { + "get": { + "tags": [ + "IntegrationAccountCertificates" + ], + "operationId": "IntegrationAccountCertificates_Get", + "description": "Gets an integration account certificate.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "certificateName", + "description": "The integration account certificate name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountCertificate" + } + } + } + }, + "put": { + "tags": [ + "IntegrationAccountCertificates" + ], + "operationId": "IntegrationAccountCertificates_CreateOrUpdate", + "description": "Creates or updates an integration account certificate.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "certificateName", + "description": "The integration account certificate name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "name": "certificate", + "description": "The integration account certificate.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/IntegrationAccountCertificate" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IntegrationAccountCertificate" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/IntegrationAccountCertificate" + } + } + } + }, + "delete": { + "tags": [ + "IntegrationAccountCertificates" + ], + "operationId": "IntegrationAccountCertificates_Delete", + "description": "Deletes an integration account certificate.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "description": "The resource group name.", + "in": "path", "required": true, "type": "string" + }, + { + "name": "integrationAccountName", + "description": "The integration account name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "certificateName", + "description": "The integration account certificate name.", + "in": "path", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + } + } + } + } + }, + "definitions": { + "IntegrationAccountResource": { + "properties": { + "id": { + "type": "string", + "description": "The resource id." + }, + "name": { + "type": "string", + "description": "The resource name." + }, + "type": { + "type": "string", + "description": "The resource type." + }, + "location": { + "type": "string", + "description": "The resource location." + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "The resource tags." + } + }, + "x-ms-azure-resource": true + }, + "IntegrationAccountSkuName": { + "type": "string", + "enum": [ + "NotSpecified", + "Free", + "Shared", + "Basic", + "Standard", + "Premium" + ], + "x-ms-enum": { + "name": "SkuName", + "modelAsString": false + } + }, + "IntegrationAccountContentLink": { + "type": "object", + "properties": { + "uri": { + "type": "string", + "description": "The content link URI." + }, + "contentVersion": { + "type": "string", + "description": "The content version." + }, + "contentSize": { + "type": "integer", + "format": "int64", + "description": "The content size." + }, + "contentHash": { + "$ref": "#/definitions/IntegrationAccountContentHash", + "description": "The content hash." + }, + "metadata": { + "type": "object", + "description": "The metadata.", + "properties": {} + } + } + }, + "IntegrationAccountContentHash": { + "type": "object", + "properties": { + "algorithm": { + "type": "string", + "description": "The content hash algorithm." + }, + "value": { + "type": "string", + "description": "The content hash value." + } + } + }, + "IntegrationAccount": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/IntegrationAccountProperties", + "description": "The integration account properties." + }, + "sku": { + "$ref": "#/definitions/IntegrationAccountSku", + "description": "The sku." + } + }, + "allOf": [ + { + "$ref": "#/definitions/IntegrationAccountResource" + } + ] + }, + "IntegrationAccountProperties": { + "type": "object" + }, + "IntegrationAccountListResult": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/IntegrationAccount" + }, + "description": "The list of integration accounts." + }, + "nextLink": { + "type": "string", + "description": "The URL to get the next set of results." + } + } + }, + "ListCallbackUrlParameters": { + "type": "object", + "properties": { + "NotAfter": { + "type": "string", + "format": "date-time", + "description": "The expiry time." + } + } + }, + "CallbackUrl": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "The URL value." + } + } + }, + "IntegrationAccountSchema": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/IntegrationAccountSchemaProperties", + "description": "The integration account schema properties." + } + }, + "allOf": [ + { + "$ref": "#/definitions/IntegrationAccountResource" + } + ] + }, + "IntegrationAccountSchemaProperties": { + "type": "object", + "properties": { + "schemaType": { + "$ref": "#/definitions/SchemaType", + "description": "The schema type." + }, + "targetNamespace": { + "type": "string", + "description": "The target namespace." + }, + "createdTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "The created time." + }, + "changedTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "The changed time." + }, + "content": { + "type": "object", + "description": "The content.", + "properties": {} + }, + "contentType": { + "type": "string", + "description": "The content type." + }, + "contentLink": { + "$ref": "#/definitions/IntegrationAccountContentLink", + "readOnly": true, + "description": "The content link." + }, + "metadata": { + "type": "object", + "description": "The metadata.", + "properties": {} + } + } + }, + "IntegrationAccountSchemaListResult": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/IntegrationAccountSchema" + }, + "description": "The list of integration account schemas." + }, + "nextLink": { + "type": "string", + "description": "The URL to get the next set of results." + } + } + }, + "IntegrationAccountSchemaFilter": { + "type": "object", + "properties": { + "schemaType": { + "$ref": "#/definitions/SchemaType", + "description": "The schema type of integration account schema." + } + } + }, + "SchemaType": { + "type": "string", + "enum": [ + "NotSpecified", + "Xml" + ], + "x-ms-enum": { + "name": "SchemaType", + "modelAsString": false + } + }, + "IntegrationAccountMap": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/IntegrationAccountMapProperties", + "description": "The integration account map properties." + } + }, + "allOf": [ + { + "$ref": "#/definitions/IntegrationAccountResource" + } + ] + }, + "IntegrationAccountMapProperties": { + "type": "object", + "properties": { + "mapType": { + "$ref": "#/definitions/MapType", + "description": "The map type." + }, + "createdTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "The created time." + }, + "changedTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "The changed time." + }, + "content": { + "type": "object", + "description": "The content.", + "properties": {} + }, + "contentType": { + "type": "string", + "description": "The content type." + }, + "contentLink": { + "$ref": "#/definitions/IntegrationAccountContentLink", + "readOnly": true, + "description": "The content link." + }, + "metadata": { + "type": "object", + "description": "The metadata.", + "properties": {} + } + } + }, + "IntegrationAccountMapListResult": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/IntegrationAccountMap" + }, + "description": "The list of integration account maps." + }, + "nextLink": { + "type": "string", + "description": "The URL to get the next set of results." + } + } + }, + "IntegrationAccountMapFilter": { + "type": "object", + "properties": { + "schemaType": { + "$ref": "#/definitions/MapType", + "description": "The map type of integration account map." + } + } + }, + "MapType": { + "type": "string", + "enum": [ + "NotSpecified", + "Xslt" + ], + "x-ms-enum": { + "name": "MapType", + "modelAsString": false + } + }, + "IntegrationAccountSku": { + "type": "object", + "properties": { + "name": { + "$ref": "#/definitions/IntegrationAccountSkuName", + "description": "The sku name." + } + } + }, + "IntegrationAccountPartnerListResult": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/IntegrationAccountPartner" + }, + "description": "The list of integration account partners." + }, + "nextLink": { + "type": "string", + "description": "The URL to get the next set of results." + } + } + }, + "IntegrationAccountPartnerFilter": { + "type": "object", + "properties": { + "partnerType": { + "$ref": "#/definitions/PartnerType", + "description": "The partner type of integration account partner." + } + } + }, + "IntegrationAccountPartner": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/IntegrationAccountPartnerProperties", + "description": "The integration account partner properties." + } + }, + "allOf": [ + { + "$ref": "#/definitions/IntegrationAccountResource" + } + ] + }, + "IntegrationAccountPartnerProperties": { + "type": "object", + "properties": { + "partnerType": { + "$ref": "#/definitions/PartnerType", + "description": "The partner type." + }, + "createdTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "The created time." + }, + "changedTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "The changed time." + }, + "metadata": { + "type": "object", + "description": "The metadata.", + "properties": {} + }, + "content": { + "$ref": "#/definitions/PartnerContent", + "description": "The partner content." + } + } + }, + "PartnerType": { + "type": "string", + "enum": [ + "NotSpecified", + "B2B" + ], + "x-ms-enum": { + "name": "PartnerType", + "modelAsString": false + } + }, + "PartnerContent": { + "type": "object", + "properties": { + "b2b": { + "$ref": "#/definitions/B2BPartnerContent", + "description": "The B2B partner content." + } + } + }, + "B2BPartnerContent": { + "type": "object", + "properties": { + "businessIdentities": { + "type": "array", + "items": { + "$ref": "#/definitions/BusinessIdentity" + }, + "description": "The list of partner business identities." + } + } + }, + "BusinessIdentity": { + "type": "object", + "properties": { + "Qualifier": { + "type": "string", + "description": "The business identity qualifier." + }, + "Value": { + "type": "string", + "description": "The business identity value." + } + } + }, + "IntegrationAccountAgreementListResult": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/IntegrationAccountAgreement" + }, + "description": "The list of integration account agreements." + }, + "nextLink": { + "type": "string", + "description": "The URL to get the next set of results." + } + } + }, + "IntegrationAccountAgreementFilter": { + "type": "object", + "properties": { + "agreementType": { + "$ref": "#/definitions/AgreementType", + "description": "The agreement type of integration account agreement." + } + } + }, + "IntegrationAccountAgreement": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/IntegrationAccountAgreementProperties", + "description": "The integration account agreement properties." + } + }, + "allOf": [ + { + "$ref": "#/definitions/IntegrationAccountResource" + } + ] + }, + "IntegrationAccountAgreementProperties": { + "type": "object", + "properties": { + "createdTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "The created time." + }, + "changedTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "The changed time." + }, + "metadata": { + "type": "object", + "description": "The metadata.", + "properties": {} + }, + "agreementType": { + "$ref": "#/definitions/AgreementType", + "description": "The agreement type." + }, + "hostPartner": { + "type": "string", + "description": "The host partner." + }, + "guestPartner": { + "type": "string", + "description": "The guest partner." + }, + "hostIdentity": { + "$ref": "#/definitions/BusinessIdentity", + "description": "The host identity." + }, + "guestIdentity": { + "$ref": "#/definitions/BusinessIdentity", + "description": "The guest identity." + }, + "content": { + "$ref": "#/definitions/AgreementContent", + "description": "The agreement content." + } + } + }, + "AgreementType": { + "type": "string", + "enum": [ + "NotSpecified", + "AS2", + "X12", + "Edifact" + ], + "x-ms-enum": { + "name": "AgreementType", + "modelAsString": false + } + }, + "AgreementContent": { + "type": "object", + "properties": { + "AS2": { + "$ref": "#/definitions/AS2AgreementContent", + "description": "The AS2 agreement content." + }, + "X12": { + "$ref": "#/definitions/X12AgreementContent", + "description": "The X12 agreement content." + }, + "Edifact": { + "$ref": "#/definitions/EdifactAgreementContent", + "description": "The EDIFACT agreement content." + } + } + }, + "AS2AgreementContent": { + "type": "object", + "properties": { + "receiveAgreement": { + "$ref": "#/definitions/AS2OneWayAgreement", + "description": "The AS2 one-way receive agreement." + }, + "sendAgreement": { + "$ref": "#/definitions/AS2OneWayAgreement", + "description": "The AS2 one-way send agreement." + } + } + }, + "AS2OneWayAgreement": { + "type": "object", + "properties": { + "senderBusinessIdentity": { + "$ref": "#/definitions/BusinessIdentity", + "description": "The sender business identity" + }, + "receiverBusinessIdentity": { + "$ref": "#/definitions/BusinessIdentity", + "description": "The receiver business identity" + }, + "protocolSettings": { + "$ref": "#/definitions/AS2ProtocolSettings", + "description": "The AS2 protocol settings." + } + } + }, + "AS2ProtocolSettings": { + "type": "object", + "properties": { + "messageConnectionSettings": { + "$ref": "#/definitions/AS2MessageConnectionSettings", + "description": "The message connection settings." + }, + "acknowledgementConnectionSettings": { + "$ref": "#/definitions/AS2AcknowledgementConnectionSettings", + "description": "The acknowledgement connection settings." + }, + "mdnSettings": { + "$ref": "#/definitions/AS2MdnSettings", + "description": "The MDN settings." + }, + "securitySettings": { + "$ref": "#/definitions/AS2SecuritySettings", + "description": "The security settings." + }, + "validationSettings": { + "$ref": "#/definitions/AS2ValidationSettings", + "description": "The validation settings." + }, + "envelopeSettings": { + "$ref": "#/definitions/AS2EnvelopeSettings", + "description": "The envelope settings." + }, + "errorSettings": { + "$ref": "#/definitions/AS2ErrorSettings", + "description": "The error settings." + } + } + }, + "AS2AcknowledgementConnectionSettings": { + "type": "object", + "properties": { + "ignoreCertificateNameMismatch": { + "type": "boolean", + "description": "The value indicating whether to ignore mismatch in certificate name." + }, + "supportHttpStatusCodeContinue": { + "type": "boolean", + "description": "The value indicating whether to support HTTP status code 'CONTINUE'." + }, + "keepHttpConnectionAlive": { + "type": "boolean", + "description": "The value indicating whether to keep the connection alive." + }, + "unfoldHttpHeaders": { + "type": "boolean", + "description": "The value indicating whether to unfold the HTTP headers." + } + } + }, + "AS2MessageConnectionSettings": { + "type": "object", + "properties": { + "ignoreCertificateNameMismatch": { + "type": "boolean", + "description": "The value indicating whether to ignore mismatch in certificate name." + }, + "supportHttpStatusCodeContinue": { + "type": "boolean", + "description": "The value indicating whether to support HTTP status code 'CONTINUE'." + }, + "keepHttpConnectionAlive": { + "type": "boolean", + "description": "The value indicating whether to keep the connection alive." + }, + "unfoldHttpHeaders": { + "type": "boolean", + "description": "The value indicating whether to unfold the HTTP headers." + } + } + }, + "AS2MdnSettings": { + "type": "object", + "properties": { + "needMdn": { + "type": "boolean", + "description": "The value indicating whether to send or request a MDN." + }, + "signMdn": { + "type": "boolean", + "description": "The value indicating whether the MDN needs to be signed or not." + }, + "sendMdnAsynchronously": { + "type": "boolean", + "description": "The value indicating whether to send the asynchronous MDN." + }, + "receiptDeliveryUrl": { + "type": "string", + "description": "The receipt delivery URL." + }, + "dispositionNotificationTo": { + "type": "string", + "description": "The disposition notification to header value." + }, + "signOutboundMdnIfOptional": { + "type": "boolean", + "description": "The value indicating whether to sign the outbound MDN if optional." + }, + "mdnText": { + "type": "string", + "description": "The MDN text." + }, + "sendInboundMdnToMessageBox": { + "type": "boolean", + "description": "The value indicating whether to send inbound MDN to message box." + }, + "micHashingAlgorithm": { + "$ref": "#/definitions/HashingAlgorithm", + "description": "The signing or hashing algorithm." + } + } + }, + "AS2SecuritySettings": { + "type": "object", + "properties": { + "overrideGroupSigningCertificate": { + "type": "boolean", + "description": "The value indicating whether to send or request a MDN." + }, + "signingCertificateName": { + "type": "string", + "description": "The name of the signing certificate." + }, + "encryptionCertificateName": { + "type": "string", + "description": "The name of the encryption certificate." + }, + "enableNrrForInboundEncodedMessages": { + "type": "boolean", + "description": "The value indicating whether to enable NRR for inbound encoded messages." + }, + "enableNrrForInboundDecodedMessages": { + "type": "boolean", + "description": "The value indicating whether to enable NRR for inbound decoded messages." + }, + "enableNrrForOutboundMdn": { + "type": "boolean", + "description": "The value indicating whether to enable NRR for outbound MDN." + }, + "enableNrrForOutboundEncodedMessages": { + "type": "boolean", + "description": "The value indicating whether to enable NRR for outbound encoded messages." + }, + "enableNrrForOutboundDecodedMessages": { + "type": "boolean", + "description": "The value indicating whether to enable NRR for outbound decoded messages." + }, + "enableNrrForInboundMdn": { + "type": "boolean", + "description": "The value indicating whether to enable NRR for inbound MDN." + } + } + }, + "AS2ValidationSettings": { + "type": "object", + "properties": { + "overrideMessageProperties": { + "type": "boolean", + "description": "The value indicating whether to override incoming message properties with those in agreement." + }, + "encryptMessage": { + "type": "boolean", + "description": "The value indicating whether the message has to be encrypted." + }, + "signMessage": { + "type": "boolean", + "description": "The value indicating whether the message has to be signed." + }, + "compressMessage": { + "type": "boolean", + "description": "The value indicating whether the message has to be compressed." + }, + "checkDuplicateMessage": { + "type": "boolean", + "description": "The value indicating whether to check for duplicate message." + }, + "interchangeDuplicatesValidityDays": { + "type": "integer", + "format": "int32", + "description": "The number of days to look back for duplicate interchange." + }, + "checkCertificateRevocationListOnSend": { + "type": "boolean", + "description": "The value indicating whether to check for certificate revocation list on send." + }, + "checkCertificateRevocationListOnReceive": { + "type": "boolean", + "description": "The value indicating whether to check for certificate revocation list on receive." + }, + "encryptionAlgorithm": { + "$ref": "#/definitions/EncryptionAlgorithm", + "description": "The encryption algorithm." } + } + }, + "AS2EnvelopeSettings": { + "type": "object", + "properties": { + "messageContentType": { + "type": "string", + "description": "The message content type." + }, + "transmitFileNameInMimeHeader": { + "type": "boolean", + "description": "The value indicating whether to transmit file name in mime header." + }, + "fileNameTemplate": { + "type": "string", + "description": "The template for file name." + }, + "SuspendMessageOnFileNameGenerationError": { + "type": "boolean", + "description": "The value indicating whether to suspend message on file name generation error." + }, + "AutogenerateFileName": { + "type": "boolean", + "description": "The value indicating whether to auto generate file name." + } + } + }, + "AS2ErrorSettings": { + "type": "object", + "properties": { + "SuspendDuplicateMessage": { + "type": "boolean", + "description": "The value indicating whether to suspend duplicate message." + }, + "ResendIfMdnNotReceived": { + "type": "boolean", + "description": "The value indicating whether to resend message If MDN is not received." + } + } + }, + "X12AgreementContent": { + "type": "object", + "properties": { + "receiveAgreement": { + "$ref": "#/definitions/X12OneWayAgreement", + "description": "The X12 one-way receive agreement." + }, + "sendAgreement": { + "$ref": "#/definitions/X12OneWayAgreement", + "description": "The X12 one-way send agreement." + } + } + }, + "X12OneWayAgreement": { + "type": "object", + "properties": { + "senderBusinessIdentity": { + "$ref": "#/definitions/BusinessIdentity", + "description": "The sender business identity" + }, + "receiverBusinessIdentity": { + "$ref": "#/definitions/BusinessIdentity", + "description": "The receiver business identity" + }, + "protocolSettings": { + "$ref": "#/definitions/X12ProtocolSettings", + "description": "The X12 protocol settings." + } + } + }, + "X12ProtocolSettings": { + "type": "object", + "properties": { + "validationSettings": { + "$ref": "#/definitions/X12ValidationSettings", + "description": "The X12 validation settings." + }, + "framingSettings": { + "$ref": "#/definitions/X12FramingSettings", + "description": "The X12 framing settings." + }, + "envelopeSettings": { + "$ref": "#/definitions/X12EnvelopeSettings", + "description": "The X12 envelope settings." + }, + "acknowledgementSettings": { + "$ref": "#/definitions/X12AcknowledgementSettings", + "description": "The X12 acknowledgment settings." + }, + "messageFilter": { + "$ref": "#/definitions/X12MessageFilter", + "description": "The X12 message filter." + }, + "securitySettings": { + "$ref": "#/definitions/X12SecuritySettings", + "description": "The X12 security settings." + }, + "processingSettings": { + "$ref": "#/definitions/X12ProcessingSettings", + "description": "The X12 processing settings." + }, + "envelopeOverrides": { + "type": "array", + "items": { + "$ref": "#/definitions/X12EnvelopeOverride" + }, + "description": "The X12 envelope override settings." + }, + "validationOverrides": { + "type": "array", + "items": { + "$ref": "#/definitions/X12ValidationOverride" + }, + "description": "The X12 validation override settings." + }, + "messageFilterList": { + "type": "array", + "items": { + "$ref": "#/definitions/X12MessageIdentifier" + }, + "description": "The X12 message filter list." + }, + "schemaReferences": { + "type": "array", + "items": { + "$ref": "#/definitions/X12SchemaReference" + }, + "description": "The X12 schema references." + }, + "x12DelimiterOverrides": { + "type": "array", + "items": { + "$ref": "#/definitions/X12DelimiterOverrides" + }, + "description": "The X12 delimiter override settings." + } + } + }, + "X12ValidationSettings": { + "type": "object", + "properties": { + "validateCharacterSet": { + "type": "boolean", + "description": "The value indicating whether to validate character set in the message." + }, + "checkDuplicateInterchangeControlNumber": { + "type": "boolean", + "description": "The value indicating whether to check for duplicate interchange control number." + }, + "interchangeControlNumberValidityDays": { + "type": "integer", + "format": "int32", + "description": "The validity period of interchange control number." + }, + "checkDuplicateGroupControlNumber": { + "type": "boolean", + "description": "The value indicating whether to check for duplicate group control number." + }, + "checkDuplicateTransactionSetControlNumber": { + "type": "boolean", + "description": "The value indicating whether to check for duplicate transaction set control number." + }, + "validateEDITypes": { + "type": "boolean", + "description": "The value indicating whether to Whether to validate EDI types." + }, + "validateXSDTypes": { + "type": "boolean", + "description": "The value indicating whether to Whether to validate XSD types." + }, + "allowLeadingAndTrailingSpacesAndZeroes": { + "type": "boolean", + "description": "The value indicating whether to allow leading and trailing spaces and zeroes." + }, + "trimLeadingAndTrailingSpacesAndZeroes": { + "type": "boolean", + "description": "The value indicating whether to trim leading and trailing spaces and zeroes." + }, + "trailingSeparatorPolicy": { + "$ref": "#/definitions/TrailingSeparatorPolicy", + "description": "The trailing separator policy." + } + } + }, + "X12FramingSettings": { + "type": "object", + "properties": { + "dataElementSeparator": { + "type": "integer", + "format": "int32", + "description": "The data element separator." + }, + "componentSeparator": { + "type": "integer", + "format": "int32", + "description": "The component separator." + }, + "replaceSeparatorsInPayload": { + "type": "boolean", + "description": "The value indicating whether to replace separators in payload." + }, + "replaceCharacter": { + "type": "integer", + "format": "int32", + "description": "The replacement character." + }, + "segmentTerminator": { + "type": "integer", + "format": "int32", + "description": "The segment terminator." + }, + "characterSet": { + "$ref": "#/definitions/X12CharacterSet", + "description": "The X12 character set." + }, + "segmentTerminatorSuffix": { + "$ref": "#/definitions/SegmentTerminatorSuffix", + "description": "The segment terminator suffix." + } + } + }, + "X12EnvelopeSettings": { + "type": "object", + "properties": { + "controlStandardsId": { + "type": "integer", + "format": "int32", + "description": "The controls standards id." + }, + "useControlStandardsIdAsRepetitionCharacter": { + "type": "boolean", + "description": "The value indicating whether to use control standards id as repetition character." + }, + "senderApplicationId": { + "type": "string", + "description": "The sender application id." + }, + "receiverApplicationId": { + "type": "string", + "description": "The receiver application id." + }, + "controlVersionNumber": { + "type": "string", + "description": "The control version number." + }, + "interchangeControlNumberLowerBound": { + "type": "integer", + "format": "int32", + "description": "The interchange control number lower bound." + }, + "interchangeControlNumberUpperBound": { + "type": "integer", + "format": "int32", + "description": "The interchange control number upper bound." + }, + "rolloverInterchangeControlNumber": { + "type": "boolean", + "description": "The value indicating whether to rollover interchange control number." + }, + "enableDefaultGroupHeaders": { + "type": "boolean", + "description": "The value indicating whether to enable default group headers." + }, + "functionalGroupId": { + "type": "string", + "description": "The functional group id." + }, + "groupControlNumberLowerBound": { + "type": "integer", + "format": "int32", + "description": "The group control number lower bound." + }, + "groupControlNumberUpperBound": { + "type": "integer", + "format": "int32", + "description": "The group control number upper bound." + }, + "rolloverGroupControlNumber": { + "type": "boolean", + "description": "The value indicating whether to rollover group control number." + }, + "groupHeaderAgencyCode": { + "type": "string", + "description": "The group header agency code." + }, + "groupHeaderVersion": { + "type": "string", + "description": "The group header version." + }, + "transactionSetControlNumberLowerBound": { + "type": "integer", + "format": "int32", + "description": "The transaction set control number lower bound." + }, + "transactionSetControlNumberUpperBound": { + "type": "integer", + "format": "int32", + "description": "The transaction set control number upper bound." + }, + "rolloverTransactionSetControlNumber": { + "type": "boolean", + "description": "The value indicating whether to rollover transaction set control number." + }, + "transactionSetControlNumberPrefix": { + "type": "string", + "description": "The transaction set control number prefix." + }, + "transactionSetControlNumberSuffix": { + "type": "string", + "description": "The transaction set control number suffix." + }, + "overwriteExistingTransactionSetControlNumber": { + "type": "boolean", + "description": "The value indicating whether to overwrite existing transaction set control number." + }, + "groupHeaderDateFormat": { + "$ref": "#/definitions/X12DateFormat", + "description": "The group header date format." + }, + "groupHeaderTimeFormat": { + "$ref": "#/definitions/X12TimeFormat", + "description": "The group header time format." + }, + "usageIndicator": { + "$ref": "#/definitions/UsageIndicator", + "description": "The usage indicator." + } + } + }, + "X12AcknowledgementSettings": { + "type": "object", + "properties": { + "needTechnicalAcknowledgement": { + "type": "boolean", + "description": "The value indicating whether technical acknowledgement is needed." + }, + "batchTechnicalAcknowledgements": { + "type": "boolean", + "description": "The value indicating whether to batch the technical acknowledgements." + }, + "needFunctionalAcknowledgement": { + "type": "boolean", + "description": "The value indicating whether functional acknowledgement is needed." + }, + "functionalAcknowledgementVersion": { + "type": "string", + "description": "The functional acknowledgement version." + }, + "batchFunctionalAcknowledgements": { + "type": "boolean", + "description": "The value indicating whether to batch functional acknowledgements." + }, + "needImplementationAcknowledgement": { + "type": "boolean", + "description": "The value indicating whether implementation acknowledgement is needed." + }, + "implementationAcknowledgementVersion": { + "type": "string", + "description": "The implementation acknowledgement version." + }, + "batchImplementationAcknowledgements": { + "type": "boolean", + "description": "The value indicating whether to batch implementation acknowledgements." + }, + "needLoopForValidMessages": { + "type": "boolean", + "description": "The value indicating whether a loop is needed for valid messages." + }, + "sendSynchronousAcknowledgement": { + "type": "boolean", + "description": "The value indicating whether to send synchronous acknowledgement." + }, + "acknowledgementControlNumberPrefix": { + "type": "string", + "description": "The acknowledgement control number prefix." + }, + "acknowledgementControlNumberSuffix": { + "type": "string", + "description": "The acknowledgement control number suffix." + }, + "acknowledgementControlNumberLowerBound": { + "type": "integer", + "format": "int32", + "description": "The acknowledgement control number lower bound." + }, + "acknowledgementControlNumberUpperBound": { + "type": "integer", + "format": "int32", + "description": "The acknowledgement control number upper bound." + }, + "rolloverAcknowledgementControlNumber": { + "type": "boolean", + "description": "The value indicating whether to rollover acknowledgement control number." + } + } + }, + "X12MessageFilter": { + "type": "object", + "properties": { + "messageFilterType": { + "$ref": "#/definitions/MessageFilterType", + "description": "The message filter type." + } + } + }, + "X12SecuritySettings": { + "type": "object", + "properties": { + "authorizationQualifier": { + "type": "string", + "description": "The authorization qualifier." + }, + "authorizationValue": { + "type": "string", + "description": "The authorization value." + }, + "securityQualifier": { + "type": "string", + "description": "The security qualifier." + }, + "passwordValue": { + "type": "string", + "description": "The password value." + } + } + }, + "X12ProcessingSettings": { + "type": "object", + "properties": { + "maskSecurityInfo": { + "type": "boolean", + "description": "The value indicating whether to mask security information." + }, + "convertImpliedDecimal": { + "type": "boolean", + "description": "The value indicating whether to convert numerical type to implied decimal." + }, + "preserveInterchange": { + "type": "boolean", + "description": "The value indicating whether to preserve interchange." + }, + "suspendInterchangeOnError": { + "type": "boolean", + "description": "The value indicating whether to suspend interchange on error." + }, + "createEmptyXmlTagsForTrailingSeparators": { + "type": "boolean", + "description": "The value indicating whether to create empty xml tags for trailing separators." + }, + "useDotAsDecimalSeparator": { + "type": "boolean", + "description": "The value indicating whether to use dot as decimal separator." + } + } + }, + "X12EnvelopeOverride": { + "type": "object", + "properties": { + "targetNamespace": { + "type": "string", + "description": "The target namespace on which this envelope settings has to be applied." + }, + "protocolVersion": { + "type": "string", + "description": "The protocol version on which this envelope settings has to be applied." + }, + "messageId": { + "type": "string", + "description": "The message id on which this envelope settings has to be applied." + }, + "responsibleAgencyCode": { + "type": "integer", + "format": "int32", + "description": "The responsible agency code." + }, + "headerVersion": { + "type": "string", + "description": "The header version." + }, + "senderApplicationId": { + "type": "string", + "description": "The sender application id." + }, + "receiverApplicationId": { + "type": "string", + "description": "The receiver application id." + }, + "functionalIdentifierCode": { + "type": "string", + "description": "The functional identifier code." + }, + "dateFormat": { + "$ref": "#/definitions/X12DateFormat", + "description": "The date format." + }, + "timeFormat": { + "$ref": "#/definitions/X12TimeFormat", + "description": "The time format." + } + } + }, + "X12ValidationOverride": { + "type": "object", + "properties": { + "messageId": { + "type": "string", + "description": "The message id on which the validation settings has to be applied." + }, + "validateEDITypes": { + "type": "boolean", + "description": "The value indicating whether to validate EDI types." + }, + "validateXSDTypes": { + "type": "boolean", + "description": "The value indicating whether to validate XSD types." + }, + "allowLeadingAndTrailingSpacesAndZeroes": { + "type": "boolean", + "description": "The value indicating whether to allow leading and trailing spaces and zeroes." + }, + "validateCharacterSet": { + "type": "boolean", + "description": "The value indicating whether to validate character Set." + }, + "trimLeadingAndTrailingSpacesAndZeroes": { + "type": "boolean", + "description": "The value indicating whether to trim leading and trailing spaces and zeroes." + }, + "trailingSeparatorPolicy": { + "$ref": "#/definitions/TrailingSeparatorPolicy", + "description": "The trailing separator policy." + } + } + }, + "X12MessageIdentifier": { + "type": "object", + "properties": { + "messageId": { + "type": "string", + "description": "The message id." + } + } + }, + "X12SchemaReference": { + "type": "object", + "properties": { + "messageId": { + "type": "string", + "description": "The message id." + }, + "senderApplicationId": { + "type": "string", + "description": "The sender application id." + }, + "schemaVersion": { + "type": "string", + "description": "The schema version." + }, + "schemaName": { + "type": "string", + "description": "The schema name." + } + } + }, + "X12DelimiterOverrides": { + "type": "object", + "properties": { + "protocolVersion": { + "type": "string", + "description": "The protocol version." + }, + "messageId": { + "type": "string", + "description": "The message id." + }, + "dataElementSeparator": { + "type": "integer", + "format": "int32", + "description": "The data element separator." + }, + "componentSeparator": { + "type": "integer", + "format": "int32", + "description": "The component separator." + }, + "segmentTerminator": { + "type": "integer", + "format": "int32", + "description": "The segment terminator." + }, + "segmentTerminatorSuffix": { + "$ref": "#/definitions/SegmentTerminatorSuffix", + "description": "The segment terminator suffix." + }, + "replaceCharacter": { + "type": "integer", + "format": "int32", + "description": "The replacement character." + }, + "replaceSeparatorsInPayload": { + "type": "boolean", + "description": "The value indicating whether to replace separators in payload." + }, + "targetNamespace": { + "type": "string", + "description": "The target namespace on which this delimiter settings has to be applied." + } + } + }, + "X12CharacterSet": { + "type": "string", + "enum": [ + "NotSpecified", + "Basic", + "Extended", + "UTF8" + ], + "x-ms-enum": { + "name": "X12CharacterSet", + "modelAsString": false + } + }, + "SegmentTerminatorSuffix": { + "type": "string", + "enum": [ + "NotSpecified", + "None", + "CR", + "LF", + "CRLF" + ], + "x-ms-enum": { + "name": "SegmentTerminatorSuffix", + "modelAsString": false + } + }, + "X12DateFormat": { + "type": "string", + "enum": [ + "NotSpecified", + "CCYYMMDD", + "YYMMDD" + ], + "x-ms-enum": { + "name": "X12DateFormat", + "modelAsString": false + } + }, + "X12TimeFormat": { + "type": "string", + "enum": [ + "NotSpecified", + "HHMM", + "HHMMSS", + "HHMMSSdd", + "HHMMSSd" + ], + "x-ms-enum": { + "name": "X12TimeFormat", + "modelAsString": false + } + }, + "UsageIndicator": { + "type": "string", + "enum": [ + "NotSpecified", + "Test", + "Information", + "Production" + ], + "x-ms-enum": { + "name": "UsageIndicator", + "modelAsString": false + } + }, + "MessageFilterType": { + "type": "string", + "enum": [ + "NotSpecified", + "Include", + "Exclude" + ], + "x-ms-enum": { + "name": "MessageFilterType", + "modelAsString": false + } + }, + "HashingAlgorithm": { + "type": "string", + "enum": [ + "NotSpecified", + "None", + "SHA2256", + "SHA2384", + "SHA2512" + ], + "x-ms-enum": { + "name": "HashingAlgorithm", + "modelAsString": false + } + }, + "EncryptionAlgorithm": { + "type": "string", + "enum": [ + "NotSpecified", + "None", + "DES3", + "RC2", + "AES128", + "AES192", + "AES256" + ], + "x-ms-enum": { + "name": "EncryptionAlgorithm", + "modelAsString": false + } + }, + "TrailingSeparatorPolicy": { + "type": "string", + "enum": [ + "NotSpecified", + "NotAllowed", + "Optional", + "Mandatory" + ], + "x-ms-enum": { + "name": "TrailingSeparatorPolicy", + "modelAsString": false + } + }, + "EdifactAgreementContent": { + "type": "object", + "properties": { + "receiveAgreement": { + "$ref": "#/definitions/EdifactOneWayAgreement", + "description": "The EDIFACT one-way receive agreement." + }, + "sendAgreement": { + "$ref": "#/definitions/EdifactOneWayAgreement", + "description": "The EDIFACT one-way send agreement." + } + } + }, + "EdifactOneWayAgreement": { + "type": "object", + "properties": { + "senderBusinessIdentity": { + "$ref": "#/definitions/BusinessIdentity", + "description": "The sender business identity" + }, + "receiverBusinessIdentity": { + "$ref": "#/definitions/BusinessIdentity", + "description": "The receiver business identity" + }, + "protocolSettings": { + "$ref": "#/definitions/EdifactProtocolSettings", + "description": "The EDIFACT protocol settings." + } + } + }, + "EdifactProtocolSettings": { + "type": "object", + "properties": { + "validationSettings": { + "$ref": "#/definitions/EdifactValidationSettings", + "description": "The EDIFACT validation settings." + }, + "framingSettings": { + "$ref": "#/definitions/EdifactFramingSettings", + "description": "The EDIFACT framing settings." + }, + "envelopeSettings": { + "$ref": "#/definitions/EdifactEnvelopeSettings", + "description": "The EDIFACT envelope settings." + }, + "acknowledgementSettings": { + "$ref": "#/definitions/EdifactAcknowledgementSettings", + "description": "The EDIFACT acknowledgement settings." + }, + "messageFilter": { + "$ref": "#/definitions/EdifactMessageFilter", + "description": "The EDIFACT message filter." + }, + "processingSettings": { + "$ref": "#/definitions/EdifactProcessingSettings", + "description": "The EDIFACT processing Settings." + }, + "envelopeOverrides": { + "type": "array", + "items": { + "$ref": "#/definitions/EdifactEnvelopeOverride" + }, + "description": "The EDIFACT envelope override settings." + }, + "messageFilterList": { + "type": "array", + "items": { + "$ref": "#/definitions/EdifactMessageIdentifier" + }, + "description": "The EDIFACT message filter list." + }, + "schemaReferences": { + "type": "array", + "items": { + "$ref": "#/definitions/EdifactSchemaReference" + }, + "description": "The EDIFACT schema references." + }, + "validationOverrides": { + "type": "array", + "items": { + "$ref": "#/definitions/EdifactValidationOverride" + }, + "description": "The EDIFACT validation override settings." + }, + "edifactDelimiterOverrides": { + "type": "array", + "items": { + "$ref": "#/definitions/EdifactDelimiterOverride" + }, + "description": "The EDIFACT delimiter override settings." + } + } + }, + "EdifactValidationSettings": { + "type": "object", + "properties": { + "validateCharacterSet": { + "type": "boolean", + "description": "The value indicating whether to validate character set in the message." + }, + "checkDuplicateInterchangeControlNumber": { + "type": "boolean", + "description": "The value indicating whether to check for duplicate interchange control number." + }, + "interchangeControlNumberValidityDays": { + "type": "integer", + "format": "int32", + "description": "The validity period of interchange control number." + }, + "checkDuplicateGroupControlNumber": { + "type": "boolean", + "description": "The value indicating whether to check for duplicate group control number." + }, + "checkDuplicateTransactionSetControlNumber": { + "type": "boolean", + "description": "The value indicating whether to check for duplicate transaction set control number." + }, + "validateEDITypes": { + "type": "boolean", + "description": "The value indicating whether to Whether to validate EDI types." + }, + "validateXSDTypes": { + "type": "boolean", + "description": "The value indicating whether to Whether to validate XSD types." + }, + "allowLeadingAndTrailingSpacesAndZeroes": { + "type": "boolean", + "description": "The value indicating whether to allow leading and trailing spaces and zeroes." + }, + "trimLeadingAndTrailingSpacesAndZeroes": { + "type": "boolean", + "description": "The value indicating whether to trim leading and trailing spaces and zeroes." + }, + "trailingSeparatorPolicy": { + "$ref": "#/definitions/TrailingSeparatorPolicy", + "description": "The trailing separator policy." + } + } + }, + "EdifactFramingSettings": { + "type": "object", + "properties": { + "serviceCodeListDirectoryVersion": { + "type": "string", + "description": "The service code list directory version." + }, + "characterEncoding": { + "type": "string", + "description": "The character encoding." + }, + "protocolVersion": { + "type": "integer", + "format": "int32", + "description": "The protocol version." + }, + "dataElementSeparator": { + "type": "integer", + "format": "int32", + "description": "The data element separator." + }, + "componentSeparator": { + "type": "integer", + "format": "int32", + "description": "The component separator." + }, + "segmentTerminator": { + "type": "integer", + "format": "int32", + "description": "The segment terminator." + }, + "releaseIndicator": { + "type": "integer", + "format": "int32", + "description": "The release indicator." + }, + "repetitionSeparator": { + "type": "integer", + "format": "int32", + "description": "The repetition separator." + }, + "characterSet": { + "$ref": "#/definitions/EdifactCharacterSet", + "description": "The EDIFACT frame setting characterSet." + }, + "decimalPointIndicator": { + "$ref": "#/definitions/EdifactDecimalIndicator", + "description": "The EDIFACT frame setting decimal indicator." + }, + "segmentTerminatorSuffix": { + "$ref": "#/definitions/SegmentTerminatorSuffix", + "description": "The EDIFACT frame setting segment terminator suffix." + } + } + }, + "EdifactEnvelopeSettings": { + "type": "object", + "properties": { + "groupAssociationAssignedCode": { + "type": "string", + "description": "The group association assigned code." + }, + "communicationAgreementId": { + "type": "string", + "description": "The communication agreement id." + }, + "applyDelimiterStringAdvice": { + "type": "boolean", + "description": "The value indicating whether to apply delimiter string advice." + }, + "createGroupingSegments": { + "type": "boolean", + "description": "The value indicating whether to create grouping segments." + }, + "enableDefaultGroupHeaders": { + "type": "boolean", + "description": "The value indicating whether to enable default group headers." + }, + "recipientReferencePasswordValue": { + "type": "string", + "description": "The recipient reference password value." + }, + "recipientReferencePasswordQualifier": { + "type": "string", + "description": "The recipient reference password qualifier." + }, + "applicationReferenceId": { + "type": "string", + "description": "The application reference id." + }, + "processingPriorityCode": { + "type": "string", + "description": "The processing priority code." + }, + "interchangeControlNumberLowerBound": { + "type": "integer", + "format": "int64", + "description": "The interchange control number lower bound." + }, + "interchangeControlNumberUpperBound": { + "type": "integer", + "format": "int64", + "description": "The interchange control number upper bound." + }, + "rolloverInterchangeControlNumber": { + "type": "boolean", + "description": "The value indicating whether to rollover interchange control number." + }, + "interchangeControlNumberPrefix": { + "type": "string", + "description": "The interchange control number prefix." + }, + "interchangeControlNumberSuffix": { + "type": "string", + "description": "The interchange control number suffix." + }, + "senderReverseRoutingAddress": { + "type": "string", + "description": "The sender reverse routing address." + }, + "receiverReverseRoutingAddress": { + "type": "string", + "description": "The receiver reverse routing address." + }, + "functionalGroupId": { + "type": "string", + "description": "The functional group id." + }, + "groupControllingAgencyCode": { + "type": "string", + "description": "The group controlling agency code." + }, + "groupMessageVersion": { + "type": "string", + "description": "The group message version." + }, + "groupMessageRelease": { + "type": "string", + "description": "The group message release." + }, + "groupControlNumberLowerBound": { + "type": "integer", + "format": "int64", + "description": "The group control number lower bound." + }, + "groupControlNumberUpperBound": { + "type": "integer", + "format": "int64", + "description": "The group control number upper bound." + }, + "rolloverGroupControlNumber": { + "type": "boolean", + "description": "The value indicating whether to rollover group control number." + }, + "groupControlNumberPrefix": { + "type": "string", + "description": "The group control number prefix." + }, + "groupControlNumberSuffix": { + "type": "string", + "description": "The group control number suffix." + }, + "groupApplicationReceiverQualifier": { + "type": "string", + "description": "The group application receiver qualifier." + }, + "groupApplicationReceiverId": { + "type": "string", + "description": "The group application receiver id." + }, + "groupApplicationSenderQualifier": { + "type": "string", + "description": "The group application sender qualifier." + }, + "groupApplicationSenderId": { + "type": "string", + "description": "The group application sender id." + }, + "groupApplicationPassword": { + "type": "string", + "description": "The group application password." + }, + "overwriteExistingTransactionSetControlNumber": { + "type": "boolean", + "description": "The value indicating whether to overwrite existing transaction set control number." + }, + "transactionSetControlNumberPrefix": { + "type": "string", + "description": "The transaction set control number prefix." + }, + "transactionSetControlNumberSuffix": { + "type": "string", + "description": "The transaction set control number suffix." + }, + "transactionSetControlNumberLowerBound": { + "type": "integer", + "format": "int64", + "description": "The transaction set control number lower bound." + }, + "transactionSetControlNumberUpperBound": { + "type": "integer", + "format": "int64", + "description": "The transaction set control number upper bound." + }, + "rolloverTransactionSetControlNumber": { + "type": "boolean", + "description": "The value indicating whether to rollover transaction set control number." + }, + "isTestInterchange": { + "type": "boolean", + "description": "The value indicating whether the message is a test interchange." + }, + "senderInternalIdentification": { + "type": "string", + "description": "The sender internal identification." + }, + "senderInternalSubIdentification": { + "type": "string", + "description": "The sender internal sub identification." + }, + "receiverInternalIdentification": { + "type": "string", + "description": "The receiver internal identification." + }, + "receiverInternalSubIdentification": { + "type": "string", + "description": "The receiver internal sub identification." + } + } + }, + "EdifactAcknowledgementSettings": { + "type": "object", + "properties": { + "needTechnicalAcknowledgement": { + "type": "boolean", + "description": "The value indicating whether technical acknowledgement is needed." + }, + "batchTechnicalAcknowledgements": { + "type": "boolean", + "description": "The value indicating whether to batch the technical acknowledgements." + }, + "needFunctionalAcknowledgement": { + "type": "boolean", + "description": "The value indicating whether functional acknowledgement is needed." + }, + "batchFunctionalAcknowledgements": { + "type": "boolean", + "description": "The value indicating whether to batch functional acknowledgements." + }, + "needLoopForValidMessages": { + "type": "boolean", + "description": "The value indicating whether a loop is needed for valid messages." + }, + "sendSynchronousAcknowledgement": { + "type": "boolean", + "description": "The value indicating whether to send synchronous acknowledgement." + }, + "acknowledgementControlNumberPrefix": { + "type": "string", + "description": "The acknowledgement control number prefix." + }, + "acknowledgementControlNumberSuffix": { + "type": "string", + "description": "The acknowledgement control number suffix." + }, + "acknowledgementControlNumberLowerBound": { + "type": "integer", + "format": "int32", + "description": "The acknowledgement control number lower bound." + }, + "acknowledgementControlNumberUpperBound": { + "type": "integer", + "format": "int32", + "description": "The acknowledgement control number upper bound." + }, + "rolloverAcknowledgementControlNumber": { + "type": "boolean", + "description": "The value indicating whether to rollover acknowledgement control number." + } + } + }, + "EdifactMessageFilter": { + "type": "object", + "properties": { + "messageFilterType": { + "$ref": "#/definitions/MessageFilterType", + "description": "The message filter type." + } + } + }, + "EdifactProcessingSettings": { + "type": "object", + "properties": { + "maskSecurityInfo": { + "type": "boolean", + "description": "The value indicating whether to mask security information." + }, + "preserveInterchange": { + "type": "boolean", + "description": "The value indicating whether to preserve interchange." + }, + "suspendInterchangeOnError": { + "type": "boolean", + "description": "The value indicating whether to suspend interchange on error." + }, + "createEmptyXmlTagsForTrailingSeparators": { + "type": "boolean", + "description": "The value indicating whether to create empty xml tags for trailing separators." + }, + "useDotAsDecimalSeparator": { + "type": "boolean", + "description": "The value indicating whether to use dot as decimal separator." + } + } + }, + "EdifactEnvelopeOverride": { + "type": "object", + "properties": { + "messageId": { + "type": "string", + "description": "The message id on which this envelope settings has to be applied." + }, + "messageVersion": { + "type": "string", + "description": "The message version on which this envelope settings has to be applied." + }, + "messageRelease": { + "type": "string", + "description": "The message release version on which this envelope settings has to be applied." + }, + "messageAssociationAssignedCode": { + "type": "string", + "description": "The message association assigned code." + }, + "targetNamespace": { + "type": "string", + "description": "The target namespace on which this envelope settings has to be applied." + }, + "functionalGroupId": { + "type": "string", + "description": "The functional group id." + }, + "senderApplicationQualifier": { + "type": "string", + "description": "The sender application qualifier." + }, + "senderApplicationId": { + "type": "string", + "description": "The sender application id." + }, + "receiverApplicationQualifier": { + "type": "string", + "description": "The receiver application qualifier." + }, + "receiverApplicationId": { + "type": "string", + "description": "The receiver application id." + }, + "controllingAgencyCode": { + "type": "string", + "description": "The controlling agency code." + }, + "groupHeaderMessageVersion": { + "type": "string", + "description": "The group header message version." + }, + "groupHeaderMessageRelease": { + "type": "string", + "description": "The group header message release." + }, + "associationAssignedCode": { + "type": "string", + "description": "The association assigned code." + }, + "applicationPassword": { + "type": "string", + "description": "The application password." + } + } + }, + "EdifactMessageIdentifier": { + "type": "object", + "properties": { + "messageId": { + "type": "string", + "description": "The message id on which this envelope settings has to be applied." + } + } + }, + "EdifactSchemaReference": { + "type": "object", + "properties": { + "messageId": { + "type": "string", + "description": "The message id." + }, + "messageVersion": { + "type": "string", + "description": "The message version." + }, + "messageRelease": { + "type": "string", + "description": "The message release version." + }, + "senderApplicationId": { + "type": "string", + "description": "The sender application id." + }, + "senderApplicationQualifier": { + "type": "string", + "description": "The sender application qualifier." + }, + "associationAssignedCode": { + "type": "string", + "description": "The association assigned code." + }, + "schemaName": { + "type": "string", + "description": "The schema name." + } + } + }, + "EdifactValidationOverride": { + "type": "object", + "properties": { + "messageId": { + "type": "string", + "description": "The message id on which the validation settings has to be applied." + }, + "enforceCharacterSet": { + "type": "boolean", + "description": "The value indicating whether to validate character Set." + }, + "validateEDITypes": { + "type": "boolean", + "description": "The value indicating whether to validate EDI types." + }, + "validateXSDTypes": { + "type": "boolean", + "description": "The value indicating whether to validate XSD types." + }, + "allowLeadingAndTrailingSpacesAndZeroes": { + "type": "boolean", + "description": "The value indicating whether to allow leading and trailing spaces and zeroes." + }, + "trailingSeparatorPolicy": { + "$ref": "#/definitions/TrailingSeparatorPolicy", + "description": "The trailing separator policy." + }, + "trimLeadingAndTrailingSpacesAndZeroes": { + "type": "boolean", + "description": "The value indicating whether to trim leading and trailing spaces and zeroes." + } + } + }, + "EdifactDelimiterOverride": { + "type": "object", + "properties": { + "messageId": { + "type": "string", + "description": "The message id." + }, + "messageVersion": { + "type": "string", + "description": "The message version." + }, + "messageRelease": { + "type": "string", + "description": "The message release version." + }, + "dataElementSeparator": { + "type": "integer", + "format": "int32", + "description": "The data element separator." + }, + "componentSeparator": { + "type": "integer", + "format": "int32", + "description": "The component separator." + }, + "segmentTerminator": { + "type": "integer", + "format": "int32", + "description": "The segment terminator." + }, + "repetitionSeparator": { + "type": "integer", + "format": "int32", + "description": "The repetition separator." + }, + "segmentTerminatorSuffix": { + "$ref": "#/definitions/SegmentTerminatorSuffix", + "description": "The segment terminator suffix." + }, + "decimalPointIndicator": { + "$ref": "#/definitions/EdifactDecimalIndicator", + "description": "The decimal point indicator." + }, + "releaseIndicator": { + "type": "integer", + "format": "int32", + "description": "The release indicator." + }, + "messageAssociationAssignedCode": { + "type": "string", + "description": "The message association assigned code." + }, + "targetNamespace": { + "type": "string", + "description": "The target namespace on which this delimiter settings has to be applied." + } + } + }, + "EdifactCharacterSet": { + "type": "string", + "enum": [ + "NotSpecified", + "UNOB", + "UNOA", + "UNOC", + "UNOD", + "UNOE", + "UNOF", + "UNOG", + "UNOH", + "UNOI", + "UNOJ", + "UNOK", + "UNOX", + "UNOY", + "KECA" + ], + "x-ms-enum": { + "name": "EdifactCharacterSet", + "modelAsString": false + } + }, + "EdifactDecimalIndicator": { + "type": "string", + "enum": [ + "NotSpecified", + "Comma", + "Decimal" + ], + "x-ms-enum": { + "name": "EdifactDecimalIndicator", + "modelAsString": false + } + }, + "IntegrationAccountCertificateListResult": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/IntegrationAccountCertificate" + }, + "description": "The list of integration account certificates." + }, + "nextLink": { + "type": "string", + "description": "The URL to get the next set of results." + } + } + }, + "IntegrationAccountCertificate": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/IntegrationAccountCertificateProperties", + "description": "The integration account certificate properties." + } + }, + "allOf": [ + { + "$ref": "#/definitions/IntegrationAccountResource" + } + ] + }, + "IntegrationAccountCertificateProperties": { + "type": "object", + "properties": { + "createdTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "The created time." + }, + "changedTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "The changed time." + }, + "metadata": { + "type": "object", + "description": "The metadata.", + "properties": {} + }, + "key": { + "$ref": "#/definitions/KeyVaultKeyReference", + "description": "The key details in the key vault." + }, + "publicCertificate": { + "type": "string", + "description": "The public certificate." + } + } + }, + "KeyVaultKeyReference": { + "type": "object", + "properties": { + "keyVault": { + "type": "object", + "description": "The key vault reference.", + "properties": { + "id": { + "type": "string", + "description": "The resource id." + }, + "name": { + "type": "string", + "readOnly": true, + "description": "The resource name." + }, + "type": { + "type": "string", + "readOnly": true, + "description": "The resource type." + } + } + }, + "keyName": { + "type": "string", + "description": "The private key name in key vault." + }, + "keyVersion": { + "type": "string", + "description": "The private key version in key vault." + } + } + } + }, + "parameters": { + "subscriptionId": { + "name": "subscriptionId", + "description": "The subscription id.", + "in": "path", + "required": true, + "type": "string" + }, + "api-version": { + "name": "api-version", + "description": "The API version.", + "in": "query", + "required": true, + "type": "string" } -} \ No newline at end of file + } +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_CreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_CreateOrUpdate.json index 4a9cba6b9e51..a9ddf1f535ef 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_CreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_CreateOrUpdate.json @@ -482,4 +482,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_Delete.json index 7370ee946a49..af2fb7da3f5e 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_Delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_Get.json index 8d1048b35fb4..3ab34a12b988 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_Get.json @@ -167,4 +167,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json index b846b64a0dcd..19f62a0b95d4 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json @@ -595,4 +595,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_ListContentCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_ListContentCallbackUrl.json index 8a20a322d403..793219e611f0 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_ListContentCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_ListContentCallbackUrl.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_CreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_CreateOrUpdate.json index 1540af5978e1..f51838538f8f 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_CreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_CreateOrUpdate.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_Delete.json index ff7cef029e43..46b9b5817548 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_Delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_Get.json index 686b9e165072..719be6f5c4da 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_Get.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_List.json index 5ab3d785b34b..96d39b9d374c 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_List.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_ListContentCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_ListContentCallbackUrl.json index 7f45cd32e4d1..318d21320132 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_ListContentCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAssemblies_ListContentCallbackUrl.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_CreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_CreateOrUpdate.json index 1371671cb47d..117b15e0b0d4 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_CreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_CreateOrUpdate.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_Delete.json index 6c3fa83a06e6..af82162d9608 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_Delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_Get.json index cd8558f6cbfb..9851ed918d99 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_Get.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_List.json index 4b7730575f41..0923a89360b5 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountBatchConfigurations_List.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_CreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_CreateOrUpdate.json index c14f44af91cc..c1af8daaba05 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_CreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_CreateOrUpdate.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_Delete.json index 25c61d5bffc3..d304c0decbf6 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_Delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_Get.json index 5aebf464fdd9..20e5bf7cf2f2 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_Get.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_List.json index 9dbc85729115..082eb1e9ccf1 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountCertificates_List.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_CreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_CreateOrUpdate.json index d852355c5d3e..c04a5031957f 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_CreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_CreateOrUpdate.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_Delete.json index 931ac76dc436..60768e86e9d4 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_Delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_Get.json index 4dbd60b4d9db..e685790d2cf0 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_Get.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_List.json index 5cbf34e9385d..b2ecb62b36b9 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_List.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_ListContentCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_ListContentCallbackUrl.json index 17e754a767d7..d209463349ad 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_ListContentCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountMaps_ListContentCallbackUrl.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_CreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_CreateOrUpdate.json index dcdb12f1b17a..d1c4ef7141ba 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_CreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_CreateOrUpdate.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_Delete.json index 27730f0769f0..5bfce3fe4e59 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_Delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_Get.json index a765a94c5a78..53ffd5fff4d0 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_Get.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_List.json index 7332c84bed76..aed4c89bb312 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_List.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_ListContentCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_ListContentCallbackUrl.json index d2f387f76a6f..e35b16724886 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_ListContentCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountPartners_ListContentCallbackUrl.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_CreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_CreateOrUpdate.json index fbd94da5890d..013e23804c76 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_CreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_CreateOrUpdate.json @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_Delete.json index 3d97c07bab66..8d05d8e47016 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_Delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_Get.json index 814753c54c1b..9fa9587ba018 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_Get.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_List.json index 1d039ddf613d..92b651247b60 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_List.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_ListContentCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_ListContentCallbackUrl.json index a65312d25165..b008e6953a16 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_ListContentCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSchemas_ListContentCallbackUrl.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_CreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_CreateOrUpdate.json index 6a0ff8120ba8..75e216e29e76 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_CreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_CreateOrUpdate.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_Delete.json index ca8986f09f20..598ca26c236d 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_Delete.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_Get.json index 45c3ef54b125..7befaa3b7df4 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_Get.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_List.json index 5e1e50d41f08..3f3a82ada89c 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountSessions_List.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_CreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_CreateOrUpdate.json index 5280a15eb221..d18cd13e37b0 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_CreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_CreateOrUpdate.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Delete.json index 057e1c062812..d5112bd319e3 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Delete.json @@ -9,4 +9,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Get.json index 1c4b761fa9ff..ef94f3a1b879 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Get.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListByResourceGroup.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListByResourceGroup.json index ef95351e238a..28448d9a2155 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListByResourceGroup.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListByResourceGroup.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListBySubscription.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListBySubscription.json index f68b1bdc329e..c82fa5794a6f 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListBySubscription.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListBySubscription.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListCallbackUrl.json index 380249728ef9..d1264dff4c9f 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListCallbackUrl.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListKeyVaultKeys.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListKeyVaultKeys.json index 1d0726cbdb32..21f6bd71c7bf 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListKeyVaultKeys.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_ListKeyVaultKeys.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_LogTrackingEvents.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_LogTrackingEvents.json index 02cfa29956b9..4f74193c217d 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_LogTrackingEvents.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_LogTrackingEvents.json @@ -56,4 +56,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_RegenerateAccessKey.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_RegenerateAccessKey.json index 739972b5f3cf..20a6b4448528 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_RegenerateAccessKey.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_RegenerateAccessKey.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Update.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Update.json index 0f4499002462..da2684a9b0dc 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Update.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccounts_Update.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApiApiOperations_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApiApiOperations_List.json index 2369377ab4c6..3b534cf7c7fd 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApiApiOperations_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApiApiOperations_List.json @@ -44,4 +44,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApis_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApis_Get.json index fe600bef1ba8..e955e8633e71 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApis_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApis_Get.json @@ -52,4 +52,4 @@ "location": "brazilsouth" } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApis_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApis_List.json index 2da2bc0a6ed4..7e52eed47cb0 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApis_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironmentManagedApis_List.json @@ -55,4 +55,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_Delete.json index bc5d08394e95..e59fbda7aa18 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_Delete.json @@ -9,4 +9,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_Get.json index 518b89a8c9f4..3eb6ea4f5dbe 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_Get.json @@ -24,4 +24,4 @@ "location": "brazilsouth" } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_ListByResourceGroup.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_ListByResourceGroup.json index 484cfb0cb89e..ae48bff0d1a1 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_ListByResourceGroup.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_ListByResourceGroup.json @@ -27,4 +27,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_ListBySubscription.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_ListBySubscription.json index 50c3db652aff..305824048c94 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_ListBySubscription.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationServiceEnvironments_ListBySubscription.json @@ -26,4 +26,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Operations_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Operations_List.json index 795d67394033..6c24d2e9b220 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Operations_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Operations_List.json @@ -1348,4 +1348,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json index 5b06c98ac5bf..de766490ecac 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json index 72adfc688a82..f733dc07f2b5 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_Get.json index ce935b634aac..831e2c067f80 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_Get.json @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_List.json index 96d0f071723b..113c5b6390ad 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_List.json @@ -95,4 +95,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json index 6ab0922e56c4..1ee7aece6afa 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRequestHistories_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRequestHistories_Get.json index a39cfc2daa86..39a4802d26f6 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRequestHistories_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRequestHistories_Get.json @@ -65,4 +65,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRequestHistories_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRequestHistories_List.json index e2177e2559a4..459964a049df 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRequestHistories_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionRequestHistories_List.json @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json index f08ee5960839..c06e0afe6cb9 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json index 880c4868d67e..53e32709b4a6 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_Get.json index 80e875d55f2e..97580408f4fe 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_Get.json @@ -42,4 +42,4 @@ "type": "Microsoft.Logic/workflows/runs/actions" } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_List.json index a1db5925519b..2fded69b8506 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_List.json @@ -45,4 +45,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json index 2653e137264a..fdb5405fd0b9 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunOperations_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunOperations_Get.json index 49c739e06f33..01c508c39bd6 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunOperations_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRunOperations_Get.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_Cancel.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_Cancel.json index 28d6b086f68e..77711bf7cadb 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_Cancel.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_Cancel.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_Get.json index d80db8882239..3321ed1e8ce5 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_Get.json @@ -39,4 +39,4 @@ "type": "Microsoft.Logic/workflows/runs" } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_List.json index 78369c18147c..983bb890cca0 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowRuns_List.json @@ -42,4 +42,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_Get.json index f3507095e5be..11daf6435e39 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_Get.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_List.json index 5e278cffedb3..7d7d56ce1518 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_List.json @@ -33,4 +33,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_Resubmit.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_Resubmit.json index 6ea7bc093117..9bcd990642c7 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_Resubmit.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggerHistories_Resubmit.json @@ -10,4 +10,4 @@ "responses": { "202": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Get.json index 137a55d3a11e..e5ce86368b32 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Get.json @@ -24,4 +24,4 @@ "type": "Microsoft.Logic/workflows/triggers" } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_GetSchemaJson.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_GetSchemaJson.json index a9c726cf6231..275e166749e1 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_GetSchemaJson.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_GetSchemaJson.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_List.json index bdfdcb07f611..bdfb38ce41ed 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_List.json @@ -27,4 +27,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json index a9919d035630..18db606a8127 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Reset.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Reset.json index 2ca5d88cafc6..7ebf089676fc 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Reset.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Reset.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Run.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Run.json index 5d9d83a06365..388aa5eb3ad7 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Run.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_Run.json @@ -9,4 +9,4 @@ "responses": { "default": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_SetState.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_SetState.json index 87aab5373b16..c965847f2466 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_SetState.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowTriggers_SetState.json @@ -14,4 +14,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersionTriggers_ListCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersionTriggers_ListCallbackUrl.json index a3dc915c5c47..b564fe57071a 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersionTriggers_ListCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersionTriggers_ListCallbackUrl.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersions_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersions_Get.json index bf979fb5cfe9..8582e730d11a 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersions_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersions_Get.json @@ -71,4 +71,4 @@ "tags": {} } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersions_List.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersions_List.json index c6e1294f18c3..db0ac1e2a457 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersions_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/WorkflowVersions_List.json @@ -74,4 +74,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_CreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_CreateOrUpdate.json index 77914c99b60d..aab93945cbb5 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_CreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_CreateOrUpdate.json @@ -122,4 +122,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Delete.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Delete.json index 074b0856a0fc..1481bb2a0f9f 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Delete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Delete.json @@ -9,4 +9,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Disable.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Disable.json index 2f0d9337774d..097eb81b222c 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Disable.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Disable.json @@ -8,4 +8,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Enable.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Enable.json index 2f0d9337774d..097eb81b222c 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Enable.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Enable.json @@ -8,4 +8,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_GenerateUpgradedDefinition.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_GenerateUpgradedDefinition.json index 3900cc695146..c2c6b1b45499 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_GenerateUpgradedDefinition.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_GenerateUpgradedDefinition.json @@ -23,4 +23,4 @@ "outputs": {} } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Get.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Get.json index d4543c548e83..ab6341d47595 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Get.json @@ -70,4 +70,4 @@ "tags": {} } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListByResourceGroup.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListByResourceGroup.json index cc400b578148..bbe4fe2d03de 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListByResourceGroup.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListByResourceGroup.json @@ -73,4 +73,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListBySubscription.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListBySubscription.json index 5aa89e41cc07..5d18a2201856 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListBySubscription.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListBySubscription.json @@ -72,4 +72,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListCallbackUrl.json index 0c686b5b2855..258a876f63d3 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListCallbackUrl.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListSwagger.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListSwagger.json index fd3f5480014a..0f6caf3c881c 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListSwagger.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ListSwagger.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Move.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Move.json index f0aac548afcb..88c7d97f4e5f 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Move.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Move.json @@ -12,4 +12,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_RegenerateAccessKey.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_RegenerateAccessKey.json index 369bdae4a828..407dc794b9b7 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_RegenerateAccessKey.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_RegenerateAccessKey.json @@ -11,4 +11,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Update.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Update.json index 77914c99b60d..aab93945cbb5 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Update.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_Update.json @@ -122,4 +122,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ValidateByLocation.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ValidateByLocation.json index 3e0a30091f96..40f17679ffe7 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ValidateByLocation.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ValidateByLocation.json @@ -30,4 +30,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ValidateByResourceGroup.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ValidateByResourceGroup.json index ffc82989ea63..a373654ad0a2 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ValidateByResourceGroup.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/Workflows_ValidateByResourceGroup.json @@ -30,4 +30,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/logic.json b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/logic.json index 8ed24880fc15..eeb28994adaf 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/logic.json +++ b/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/logic.json @@ -10045,4 +10045,4 @@ "type": "string" } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsCreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsCreateOrUpdate.json index 283e9b65b359..0c7905635e50 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsCreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsCreateOrUpdate.json @@ -482,4 +482,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsDelete.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsDelete.json index ad1e9a1788c7..44197061d5fa 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsDelete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsGet.json index 20ba8e5cb95b..b8a14c7cd5cd 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsGet.json @@ -167,4 +167,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsList.json index bb0a8abbcb1c..3cf0f670a14d 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsList.json @@ -595,4 +595,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsListContentCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsListContentCallbackUrl.json index 58029a4619fa..d5d6bf2cf6a7 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsListContentCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/AgreementsListContentCallbackUrl.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesCreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesCreateOrUpdate.json index d738be2cbc85..898e78f1c1eb 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesCreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesCreateOrUpdate.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesDelete.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesDelete.json index cb164901e351..14b3e32212be 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesDelete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesGet.json index b800699878ae..e41993785b8c 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesGet.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesList.json index decfda80d8cd..99166c797fb3 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/CertificatesList.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesCreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesCreateOrUpdate.json index b9d4617037ad..a2d097029428 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesCreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesCreateOrUpdate.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesDelete.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesDelete.json index 7724d4c45959..dbfcb324e607 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesDelete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesGet.json index c4ff6eeaf470..7c019af3c2cb 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesGet.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesList.json index 364a8dc15c45..521b53c94102 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesList.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesListContentCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesListContentCallbackUrl.json index 70fc6b810cf1..03da1d058e32 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesListContentCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountAssembliesListContentCallbackUrl.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsCreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsCreateOrUpdate.json index d90909e8e1c7..4edb3b10ab55 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsCreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsCreateOrUpdate.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsDelete.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsDelete.json index b6a0db5f1b0d..dad0e951f40d 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsDelete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsGet.json index 569b275766f9..890b26bb0d6d 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsList.json index a673e8adb3f1..b891afbd3828 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountBatchConfigurationsList.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsCreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsCreateOrUpdate.json index 3173331c60fd..7c53a5530716 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsCreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsCreateOrUpdate.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsDelete.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsDelete.json index c01d1c1a6024..316b1ccb643b 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsDelete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsDelete.json @@ -9,4 +9,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsGet.json index 529d8d3bb6f7..393cc41f1003 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsGetCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsGetCallbackUrl.json index 87253f73ddc9..5d31487816ea 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsGetCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsGetCallbackUrl.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListByResourceGroup.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListByResourceGroup.json index 6d6d97bec930..e0b58f10f5c1 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListByResourceGroup.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListByResourceGroup.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListBySubscription.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListBySubscription.json index d67f9891614d..04b2a03169db 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListBySubscription.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListBySubscription.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListKeyVaultKeys.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListKeyVaultKeys.json index 0bcda03a220b..7350ef83e347 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListKeyVaultKeys.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsListKeyVaultKeys.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsLogTrackingEvent.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsLogTrackingEvent.json index 0d1ab9b75b7c..8b6c7da94fe3 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsLogTrackingEvent.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsLogTrackingEvent.json @@ -56,4 +56,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsRegenerateAccessKey.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsRegenerateAccessKey.json index 50f8d244e8af..10ad9281b58d 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsRegenerateAccessKey.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsRegenerateAccessKey.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsUpdate.json index 9b9f43561c7b..1e0cf1356955 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/IntegrationAccountsUpdate.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsCreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsCreateOrUpdate.json index dc257e403b4e..f6a3d3f1adff 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsCreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsCreateOrUpdate.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsDelete.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsDelete.json index 3478ce4d46c3..09dc50ef71db 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsDelete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsGet.json index 162fc3057cf1..eddb68f0b8c1 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsList.json index 3efe1781081c..d2f156935ddc 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsList.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsListContentCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsListContentCallbackUrl.json index 1bc62ce40c21..0d344627a4db 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsListContentCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/MapsListContentCallbackUrl.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/OperationsList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/OperationsList.json index cf25ee4fdaa1..21f8bc57f4c6 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/OperationsList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/OperationsList.json @@ -1348,4 +1348,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersCreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersCreateOrUpdate.json index f7cd4009b41e..dbb733d5ef5f 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersCreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersCreateOrUpdate.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersDelete.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersDelete.json index 3da0e53fda27..31d68da9b93a 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersDelete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersGet.json index 84124ab698d3..7a97420f879f 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersGet.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersList.json index d1a10bbfb0d2..67d54064fc3b 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersList.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersListContentCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersListContentCallbackUrl.json index c283a3c523c3..52183566bd8e 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersListContentCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/PartnersListContentCallbackUrl.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasCreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasCreateOrUpdate.json index 2b69a68fd9f6..177d64859d68 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasCreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasCreateOrUpdate.json @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasDelete.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasDelete.json index a5849bf97bb9..7191ea5a2ca4 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasDelete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasGet.json index 759cdbba6320..387a054b8289 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasGet.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasList.json index a7fb699daef7..48bf6fea5b41 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasList.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasListContentCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasListContentCallbackUrl.json index 164f81c819df..5eb9ffe21ac1 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasListContentCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SchemasListContentCallbackUrl.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsCreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsCreateOrUpdate.json index 2c0e08993096..3ebdfc07e5b2 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsCreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsCreateOrUpdate.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsDelete.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsDelete.json index 8b680068bb7c..c4dbe1f9c433 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsDelete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsDelete.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsGet.json index 8f51e78c451c..906e291c6451 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsGet.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsList.json index ebf589f11796..92606118f4df 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/SessionsList.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsGet.json index c39357e542cc..90ad77d6288e 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsGet.json @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsList.json index 7501fd2beeb7..f4bc83fe7642 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsList.json @@ -95,4 +95,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsListExpressionTraces.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsListExpressionTraces.json index f3bf713296fe..6328527bd86d 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsListExpressionTraces.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsListExpressionTraces.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json index 5b06c98ac5bf..de766490ecac 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsRequestHistories_List.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsRequestHistories_List.json index 72adfc688a82..f733dc07f2b5 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsRequestHistories_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRepetitionsRequestHistories_List.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRequestHistories_Get.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRequestHistories_Get.json index a39cfc2daa86..39a4802d26f6 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRequestHistories_Get.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRequestHistories_Get.json @@ -65,4 +65,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRequestHistories_List.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRequestHistories_List.json index e2177e2559a4..459964a049df 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRequestHistories_List.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionRequestHistories_List.json @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionScopeRepetitionsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionScopeRepetitionsGet.json index abb051738459..992ce812f8cb 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionScopeRepetitionsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionScopeRepetitionsGet.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionScopeRepetitionsList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionScopeRepetitionsList.json index d6f94735aa90..96e43b1081aa 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionScopeRepetitionsList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionScopeRepetitionsList.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsGet.json index 25b0bbd62ccc..79c49a98d260 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsGet.json @@ -42,4 +42,4 @@ "type": "Microsoft.Logic/workflows/runs/actions" } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsList.json index c428a0d857c3..65e48ec70a79 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsList.json @@ -45,4 +45,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsListExpressionTraces.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsListExpressionTraces.json index 347d8d3beeb9..2ec7c5b18818 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsListExpressionTraces.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunActionsListExpressionTraces.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunOperationsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunOperationsGet.json index f984164dbdc2..57beec741980 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunOperationsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunOperationsGet.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsCancel.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsCancel.json index 5ad071d00167..ae7cf7002edc 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsCancel.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsCancel.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsGet.json index 940a0f986c9d..e2aac39d7dee 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsGet.json @@ -39,4 +39,4 @@ "type": "Microsoft.Logic/workflows/runs" } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsList.json index 9d84df605cc0..a0051eb43519 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowRunsList.json @@ -42,4 +42,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesGet.json index f28d5b17c967..62075f31e66f 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesGet.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesList.json index 1907963cb9fe..0a5a49364185 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesList.json @@ -33,4 +33,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesResubmit.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesResubmit.json index 4089dfb37c4a..dea1de8a0e30 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesResubmit.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggerHistoriesResubmit.json @@ -10,4 +10,4 @@ "responses": { "202": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersGet.json index f88b136623db..cad2208e14f5 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersGet.json @@ -24,4 +24,4 @@ "type": "Microsoft.Logic/workflows/triggers" } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersGetSchemaJson.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersGetSchemaJson.json index f88b136623db..cad2208e14f5 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersGetSchemaJson.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersGetSchemaJson.json @@ -24,4 +24,4 @@ "type": "Microsoft.Logic/workflows/triggers" } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersList.json index 51a8a287edc8..b7b460a1337c 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersList.json @@ -27,4 +27,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersListCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersListCallbackUrl.json index e168ec217618..b616985df406 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersListCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersListCallbackUrl.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersReset.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersReset.json index f3d5ef689136..5f9b9486396e 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersReset.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersReset.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersRun.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersRun.json index dc31ffeb5956..cccbaa5b4b43 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersRun.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersRun.json @@ -9,4 +9,4 @@ "responses": { "default": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersSetState.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersSetState.json index ae4d178e5837..5403d91ae704 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersSetState.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowTriggersSetState.json @@ -14,4 +14,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsGet.json index 98161f5dae2d..f4e3b1edf5a1 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsGet.json @@ -71,4 +71,4 @@ "tags": {} } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsList.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsList.json index c562959c68c3..a44b38d1e452 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsList.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsList.json @@ -74,4 +74,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsTriggersListCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsTriggersListCallbackUrl.json index 3deaeabfbb27..6ceeab9c2346 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsTriggersListCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowVersionsTriggersListCallbackUrl.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsCreateOrUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsCreateOrUpdate.json index 32c4ebf451a7..776e94be8767 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsCreateOrUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsCreateOrUpdate.json @@ -180,4 +180,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsDelete.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsDelete.json index 584368d8cfec..d734f98f381d 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsDelete.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsDelete.json @@ -9,4 +9,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsDisable.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsDisable.json index fa2962180244..4e1dc873e061 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsDisable.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsDisable.json @@ -8,4 +8,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsEnable.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsEnable.json index fa2962180244..4e1dc873e061 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsEnable.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsEnable.json @@ -8,4 +8,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsGenerateUpgradedDefinition.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsGenerateUpgradedDefinition.json index 4253a1150516..0e1dbdff506c 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsGenerateUpgradedDefinition.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsGenerateUpgradedDefinition.json @@ -23,4 +23,4 @@ "outputs": {} } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsGet.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsGet.json index 24911e5f48af..8ec69b492675 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsGet.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsGet.json @@ -70,4 +70,4 @@ "tags": {} } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListByResourceGroup.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListByResourceGroup.json index ca6857d4ac41..f45331bbcadb 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListByResourceGroup.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListByResourceGroup.json @@ -73,4 +73,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListBySubscription.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListBySubscription.json index 82ad92c5bafb..911ddf497f30 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListBySubscription.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListBySubscription.json @@ -72,4 +72,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListCallbackUrl.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListCallbackUrl.json index e047718048bd..30d0d8d8dbf0 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListCallbackUrl.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListCallbackUrl.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListSwagger.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListSwagger.json index 39f1ac94bfbe..e152fc6bc466 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListSwagger.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsListSwagger.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsMove.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsMove.json index 46a587c0df85..d0ddd1d86533 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsMove.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsMove.json @@ -12,4 +12,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsRegenerateAccessKey.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsRegenerateAccessKey.json index e1b25e484914..72cd4506c01a 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsRegenerateAccessKey.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsRegenerateAccessKey.json @@ -11,4 +11,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsUpdate.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsUpdate.json index 9715a45041ba..e41aec2e6d3e 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsUpdate.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsUpdate.json @@ -122,4 +122,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsValidateByLocation.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsValidateByLocation.json index dcf2be9c50e8..a1ad978dc8c7 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsValidateByLocation.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsValidateByLocation.json @@ -30,4 +30,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsValidateByResourceGroup.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsValidateByResourceGroup.json index 85df6a8554e8..de320d2784ec 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsValidateByResourceGroup.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/examples/WorkflowsValidateByResourceGroup.json @@ -30,4 +30,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/logic.json b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/logic.json index 88be3b519f46..5f0b844762c9 100644 --- a/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/logic.json +++ b/specification/logic/resource-manager/Microsoft.Logic/stable/2016-06-01/logic.json @@ -10091,4 +10091,4 @@ "type": "string" } } -} \ No newline at end of file +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/preview/2016-05-01-preview/commitmentPlans.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/preview/2016-05-01-preview/commitmentPlans.json index 5bedfd0262ad..fa260850e575 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/preview/2016-05-01-preview/commitmentPlans.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/preview/2016-05-01-preview/commitmentPlans.json @@ -296,7 +296,7 @@ }, "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "#/parameters/SubscriptionIdParameter" }, { "name": "$skipToken", @@ -365,7 +365,7 @@ }, "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "#/parameters/SubscriptionIdParameter" }, { "$ref": "#/parameters/ResourceGroupNameParameter" @@ -1042,4 +1042,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/preview/2016-05-01-preview/webservices.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/preview/2016-05-01-preview/webservices.json index a9c65d0acf1f..7a063bcec74d 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/preview/2016-05-01-preview/webservices.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/preview/2016-05-01-preview/webservices.json @@ -397,7 +397,7 @@ }, "keys": { "$ref": "#/definitions/WebServiceKeys", - "description": "Contains the web service provisioning keys. If you do not specify provisioning keys, the Azure Machine Learning system generates them for you. Note: The keys are not returned from calls to GET operations." + "description": "Contains the web service provisioning keys. If you do not specify provisioning keys, the Azure Machine Learning system generates them for you. Note: The keys are not returned from calls to GET operations." }, "readOnly": { "type": "boolean", @@ -409,8 +409,8 @@ "readOnly": true }, "exposeSampleData": { - "type": "boolean", - "description": "When set to true, sample data is included in the web service's swagger definition. The default value is true." + "type": "boolean", + "description": "When set to true, sample data is included in the web service's swagger definition. The default value is true." }, "realtimeConfiguration": { "$ref": "#/definitions/RealtimeConfiguration", @@ -1037,4 +1037,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/CreateWorkspace.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/CreateWorkspace.json index 280aa8832c01..75b4eb2b34f4 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/CreateWorkspace.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/CreateWorkspace.json @@ -1,40 +1,40 @@ { + "parameters": { + "api-version": "2016-04-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "workspaceName": "testworkspace", "parameters": { - "api-version": "2016-04-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "workspaceName": "testworkspace", - "parameters": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "West Europe", - "properties": { - "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage" - } - } - }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearning/workspaces", - "location": "East US", - "properties": { - "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage", - "ownerEmail": "abc@microsoft.com", - "workspaceType": "PaidStandard", - "workspaceState": "Enabled", - "workspaceId": "00000000-1111-2222-3333-444444444444", - "studioEndpoint": "https://studioapi.azureml.net", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "keyVaultIdentifierId": "kvid" - } - } - } + "tags": { + "tagKey1": "TagValue1" + }, + "location": "West Europe", + "properties": { + "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage" + } } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearning/workspaces", + "location": "East US", + "properties": { + "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage", + "ownerEmail": "abc@microsoft.com", + "workspaceType": "PaidStandard", + "workspaceState": "Enabled", + "workspaceId": "00000000-1111-2222-3333-444444444444", + "studioEndpoint": "https://studioapi.azureml.net", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "keyVaultIdentifierId": "kvid" + } + } + } + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/DeleteWorkspace.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/DeleteWorkspace.json index 58a1ae212e30..6ddf574b2c6a 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/DeleteWorkspace.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/DeleteWorkspace.json @@ -1,12 +1,12 @@ { - "parameters": { - "api-version": "2016-04-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "workspaceName": "testworkspace" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "api-version": "2016-04-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "workspaceName": "testworkspace" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/GetWorkspace.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/GetWorkspace.json index 25ea1432099c..cca848048426 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/GetWorkspace.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/GetWorkspace.json @@ -1,31 +1,31 @@ { - "parameters": { - "api-version": "2016-04-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "workspaceName": "testworkspace" - }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearning/workspaces", - "location": "East US", - "properties": { - "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage", - "ownerEmail": "abc@microsoft.com", - "workspaceType": "PaidStandard", - "workspaceState": "Enabled", - "workspaceId": "00000000-1111-2222-3333-444444444444", - "studioEndpoint": "https://studioapi.azureml.net", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "keyVaultIdentifierId": "kvid" - } - } - } + "parameters": { + "api-version": "2016-04-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "workspaceName": "testworkspace" + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearning/workspaces", + "location": "East US", + "properties": { + "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage", + "ownerEmail": "abc@microsoft.com", + "workspaceType": "PaidStandard", + "workspaceState": "Enabled", + "workspaceId": "00000000-1111-2222-3333-444444444444", + "studioEndpoint": "https://studioapi.azureml.net", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "keyVaultIdentifierId": "kvid" + } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaceKeys.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaceKeys.json index 46d5f342754f..747f43f286dd 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaceKeys.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaceKeys.json @@ -1,16 +1,16 @@ { - "parameters": { - "api-version": "2016-04-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "workspaceName": "testworkspace" - }, - "responses": { - "200": { - "body": { - "primaryToken": "cZdmqKBYLEPcPo7dsfdfefeSlKpnxybJ86KSQGLarmLik2MYMxHijwsDIZ+d1mGtYJz3mlI5AEnxu8QqHcUjSA==", - "secondaryToken": "NPtbk8ksmLvsasasonFeTjw/k7QLz/SEdKN8+SyzKRcPzOVTQcR6C0O1fwmlELnCsYLjs+13yzdJ+4+Lxo3LtZ2g==" - } - } + "parameters": { + "api-version": "2016-04-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "workspaceName": "testworkspace" + }, + "responses": { + "200": { + "body": { + "primaryToken": "cZdmqKBYLEPcPo7dsfdfefeSlKpnxybJ86KSQGLarmLik2MYMxHijwsDIZ+d1mGtYJz3mlI5AEnxu8QqHcUjSA==", + "secondaryToken": "NPtbk8ksmLvsasasonFeTjw/k7QLz/SEdKN8+SyzKRcPzOVTQcR6C0O1fwmlELnCsYLjs+13yzdJ+4+Lxo3LtZ2g==" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaceResourceGroup.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaceResourceGroup.json index 21cd2caa330b..4463585d34b5 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaceResourceGroup.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaceResourceGroup.json @@ -9,39 +9,39 @@ "body": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearning/workspaces", - "location": "East US", - "properties": { - "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage1", - "ownerEmail": "abc@microsoft.com", - "workspaceType": "PaidStandard", - "workspaceState": "Enabled", - "workspaceId": "00000000-1111-2222-3333-444444444444", - "studioEndpoint": "https://studioapi.azureml.net", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "keyVaultIdentifierId": "kvid" - } + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearning/workspaces", + "location": "East US", + "properties": { + "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage1", + "ownerEmail": "abc@microsoft.com", + "workspaceType": "PaidStandard", + "workspaceState": "Enabled", + "workspaceId": "00000000-1111-2222-3333-444444444444", + "studioEndpoint": "https://studioapi.azureml.net", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "keyVaultIdentifierId": "kvid" + } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace1", - "name": "testworkspace1", - "type": "Microsoft.MachineLearning/workspaces", - "location": "East US", - "properties": { - "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage1", - "ownerEmail": "abc@microsoft.com", - "workspaceType": "PaidStandard", - "workspaceState": "Enabled", - "workspaceId": "00000000-1111-2222-3333-444444444444", - "studioEndpoint": "https://studioapi.azureml.net", - "creationTime": "2017-03-01T23:16:37.0707808Z", - "keyVaultIdentifierId": "kvid" - } + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace1", + "name": "testworkspace1", + "type": "Microsoft.MachineLearning/workspaces", + "location": "East US", + "properties": { + "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage1", + "ownerEmail": "abc@microsoft.com", + "workspaceType": "PaidStandard", + "workspaceState": "Enabled", + "workspaceId": "00000000-1111-2222-3333-444444444444", + "studioEndpoint": "https://studioapi.azureml.net", + "creationTime": "2017-03-01T23:16:37.0707808Z", + "keyVaultIdentifierId": "kvid" + } } ] } } } -} \ No newline at end of file +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaces.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaces.json index 1c2965b97eaa..bc9b8b73cfd3 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaces.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ListWorkspaces.json @@ -8,39 +8,39 @@ "body": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearning/workspaces", - "location": "East US", - "properties": { - "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage1", - "ownerEmail": "abc@microsoft.com", - "workspaceType": "PaidStandard", - "workspaceState": "Enabled", - "workspaceId": "00000000-1111-2222-3333-444444444444", - "studioEndpoint": "https://studioapi.azureml.net", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "keyVaultIdentifierId": "kvid" - } + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearning/workspaces", + "location": "East US", + "properties": { + "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage1", + "ownerEmail": "abc@microsoft.com", + "workspaceType": "PaidStandard", + "workspaceState": "Enabled", + "workspaceId": "00000000-1111-2222-3333-444444444444", + "studioEndpoint": "https://studioapi.azureml.net", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "keyVaultIdentifierId": "kvid" + } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace1", - "name": "testworkspace1", - "type": "Microsoft.MachineLearning/workspaces", - "location": "East US", - "properties": { - "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage1", - "ownerEmail": "abc@microsoft.com", - "workspaceType": "PaidStandard", - "workspaceState": "Enabled", - "workspaceId": "00000000-1111-2222-3333-444444444444", - "studioEndpoint": "https://studioapi.azureml.net", - "creationTime": "2017-03-01T23:16:37.0707808Z", - "keyVaultIdentifierId": "kvid" - } + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace1", + "name": "testworkspace1", + "type": "Microsoft.MachineLearning/workspaces", + "location": "East US", + "properties": { + "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage1", + "ownerEmail": "abc@microsoft.com", + "workspaceType": "PaidStandard", + "workspaceState": "Enabled", + "workspaceId": "00000000-1111-2222-3333-444444444444", + "studioEndpoint": "https://studioapi.azureml.net", + "creationTime": "2017-03-01T23:16:37.0707808Z", + "keyVaultIdentifierId": "kvid" + } } ] } } } -} \ No newline at end of file +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ResyncStorageKeys.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ResyncStorageKeys.json index 8679dda45daf..311cdf530655 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ResyncStorageKeys.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/ResyncStorageKeys.json @@ -1,11 +1,11 @@ { - "parameters": { - "api-version": "2016-04-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "workspaceName": "testworkspace" - }, - "responses": { - "200": {} - } -} \ No newline at end of file + "parameters": { + "api-version": "2016-04-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "workspaceName": "testworkspace" + }, + "responses": { + "200": {} + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/UpdateWorkspace.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/UpdateWorkspace.json index f0c1bea42cea..9f1ad75437f9 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/UpdateWorkspace.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2016-04-01/examples/UpdateWorkspace.json @@ -1,39 +1,39 @@ { + "parameters": { + "api-version": "2016-04-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myResourceGroup", + "workspaceName": "testworkspace", "parameters": { - "api-version": "2016-04-01", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myResourceGroup", - "workspaceName": "testworkspace", - "parameters": { - "tags": { - "tagKey1": "TagValue1" - }, - "properties": { - "keyVaultIdentifierId": "kvidnew" - } - } - }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearning/workspaces", - "location": "East US", - "properties": { - "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage", - "ownerEmail": "abc@microsoft.com", - "workspaceType": "PaidStandard", - "workspaceState": "Enabled", - "workspaceId": "00000000-1111-2222-3333-444444444444", - "studioEndpoint": "https://studioapi.azureml.net", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "keyVaultIdentifierId": "kvidnew" - } - } - } + "tags": { + "tagKey1": "TagValue1" + }, + "properties": { + "keyVaultIdentifierId": "kvidnew" + } } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.MachineLearning/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearning/workspaces", + "location": "East US", + "properties": { + "userStorageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/teststorage", + "ownerEmail": "abc@microsoft.com", + "workspaceType": "PaidStandard", + "workspaceState": "Enabled", + "workspaceId": "00000000-1111-2222-3333-444444444444", + "studioEndpoint": "https://studioapi.azureml.net", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "keyVaultIdentifierId": "kvidnew" + } + } + } + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/createRegionalProperties.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/createRegionalProperties.json index cb84c1920c23..b4b1dbe0722c 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/createRegionalProperties.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/createRegionalProperties.json @@ -1,16 +1,16 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "webServiceName": "TargetWebServiceName", - "region": "Southeast Asia" - }, - "responses": { - "202": { - "headers": { - "azure-asyncoperation": "http://azure.async.operation/status" - } - } + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "webServiceName": "TargetWebServiceName", + "region": "Southeast Asia" + }, + "responses": { + "202": { + "headers": { + "azure-asyncoperation": "http://azure.async.operation/status" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/deleteWebService.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/deleteWebService.json index e8d409ed782c..f5d2376398d0 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/deleteWebService.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/deleteWebService.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "webServiceName": "TargetWebServiceName" + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "webServiceName": "TargetWebServiceName" + }, + "responses": { + "202": { + "headers": { + "azure-asyncoperation": "http://azure.async.operation/status" + } }, - "responses": { - "202": { - "headers": { - "azure-asyncoperation": "http://azure.async.operation/status" - } - }, - "204": { - "headers": { - "azure-asyncoperation": "http://azure.async.operation/status" - } - } + "204": { + "headers": { + "azure-asyncoperation": "http://azure.async.operation/status" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebService.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebService.json index 09d8014d4706..95274f6d6373 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebService.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebService.json @@ -1,194 +1,193 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "webServiceName": "TargetWebServiceName" - }, - "responses": { - "200": { - "headers": { + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "webServiceName": "TargetWebServiceName" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "TheWebServiceId", + "location": "West US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "title": "Web Service Title", + "description": "Web Service Description", + "readOnly": false, + "exposeSampleData": true, + "storageAccount": { + "name": "Storage_Name" + }, + "commitmentPlan": { + "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" + }, + "createdOn": "2017-01-01T01:01:01Z", + "modifiedOn": "2017-01-01T02:02:02Z", + "provisioningState": "Provisioning", + "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", + "realtimeConfiguration": { + "maxConcurrentCalls": 4 + }, + "diagnostics": { + "level": "None" + }, + "payloadsInBlobStorage": false, + "machineLearningWorkspace": { + "id": "workspaceId" + }, + "packageType": "Graph", + "assets": { + "asset1": { + "name": "Execute R Script", + "type": "Module", + "locationInfo": { + "uri": "aml://module/moduleId-1", + "credentials": "" + } }, - "body": { - "id": "TheWebServiceId", - "location": "West US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, + "asset2": { + "name": "Import Data", + "type": "Module", + "locationInfo": { + "uri": "aml://module/moduleId-2", + "credentials": "" + } + } + }, + "parameters": {}, + "input": { + "title": "", + "description": "", + "type": "object", + "properties": { + "input1": { + "title": "", + "description": "", + "type": "object", + "properties": { + "column_name": { + "type": "String", + "x-ms-isnullable": false + } + } + } + } + }, + "output": { + "title": "", + "description": "", + "type": "object", + "properties": { + "output1": { + "title": "", + "description": "", + "type": "object", "properties": { - "title": "Web Service Title", - "description": "Web Service Description", - "readOnly": false, - "exposeSampleData": true, - "storageAccount": { - "name": "Storage_Name" - }, - "commitmentPlan": { - "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" - }, - "createdOn": "2017-01-01T01:01:01Z", - "modifiedOn": "2017-01-01T02:02:02Z", - "provisioningState": "Provisioning", - "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", - "realtimeConfiguration": { - "maxConcurrentCalls": 4 - }, - "diagnostics": { - "level": "None" - }, - "payloadsInBlobStorage": false, - "machineLearningWorkspace": { - "id": "workspaceId" - }, - "packageType": "Graph", - "assets": { - "asset1": { - "name": "Execute R Script", - "type": "Module", - "locationInfo": { - "uri": "aml://module/moduleId-1", - "credentials": "" - } - }, - "asset2": { - "name": "Import Data", - "type": "Module", - "locationInfo": { - "uri": "aml://module/moduleId-2", - "credentials": "" - } - } - }, - "parameters": {}, - "input": { - "title": "", - "description": "", - "type": "object", - "properties": { - "input1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "column_name": { - "type": "String", - "x-ms-isnullable": false - } - } - } - } - }, - "output": { - "title": "", - "description": "", - "type": "object", - "properties": { - "output1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "age": { - "type": "Integer", - "format": "Int32", - "x-ms-isnullable": true - }, - "workclass": { - "type": "String", - "x-ms-isnullable": false - } - } - } - } - }, - "package": { - "Nodes": { - "node1": { - "AssetId": "asset1", - "Parameters": { - "R Script": { - "Value": "The R Script", - "CertificateThumbprint": "" - }, - "R Version": { - "Value": "CRAN R 3.1.0", - "CertificateThumbprint": "" - } - } - }, - "node2": { - "AssetId": "asset2", - "Parameters": { - "Please Specify Data Source": { - "Value": "AzureBlobStorage", - "CertificateThumbprint": "" - }, - "Please Specify Authentication Type": { - "Value": "Account", - "CertificateThumbprint": "" - }, - "Account Name": { - "Value": "accountName", - "CertificateThumbprint": "" - }, - "Account Key": { - "Value": "Encrypted Key", - "CertificateThumbprint": "TheThumbprint" - } - } - }, - "node3": { - "InputId": "input1" - }, - "node4": { - "OutputId": "output1" - } - }, - "Edges": [ - { - "SourceNodeId": "node2", - "SourcePortId": "Results dataset", - "TargetNodeId": "node1", - "TargetPortId": "Dataset2" - }, - { - "SourceNodeId": "node3", - "TargetNodeId": "node1", - "TargetPortId": "Dataset1" - }, - { - "SourceNodeId": "node1", - "SourcePortId": "Result Dataset", - "TargetNodeId": "node4" - } - ], - "GraphParameters": {} - }, - "exampleRequest": { - "inputs": { - "input1": [ - [ - "age" - ], - [ - "workclass" - ], - [ - "fnlwgt" - ], - [ - "education" - ], - [ - "education-num" - ] - ] - }, - "globalParameters": null - } + "age": { + "type": "Integer", + "format": "Int32", + "x-ms-isnullable": true + }, + "workclass": { + "type": "String", + "x-ms-isnullable": false + } } + } } + }, + "package": { + "Nodes": { + "node1": { + "AssetId": "asset1", + "Parameters": { + "R Script": { + "Value": "The R Script", + "CertificateThumbprint": "" + }, + "R Version": { + "Value": "CRAN R 3.1.0", + "CertificateThumbprint": "" + } + } + }, + "node2": { + "AssetId": "asset2", + "Parameters": { + "Please Specify Data Source": { + "Value": "AzureBlobStorage", + "CertificateThumbprint": "" + }, + "Please Specify Authentication Type": { + "Value": "Account", + "CertificateThumbprint": "" + }, + "Account Name": { + "Value": "accountName", + "CertificateThumbprint": "" + }, + "Account Key": { + "Value": "Encrypted Key", + "CertificateThumbprint": "TheThumbprint" + } + } + }, + "node3": { + "InputId": "input1" + }, + "node4": { + "OutputId": "output1" + } + }, + "Edges": [ + { + "SourceNodeId": "node2", + "SourcePortId": "Results dataset", + "TargetNodeId": "node1", + "TargetPortId": "Dataset2" + }, + { + "SourceNodeId": "node3", + "TargetNodeId": "node1", + "TargetPortId": "Dataset1" + }, + { + "SourceNodeId": "node1", + "SourcePortId": "Result Dataset", + "TargetNodeId": "node4" + } + ], + "GraphParameters": {} + }, + "exampleRequest": { + "inputs": { + "input1": [ + [ + "age" + ], + [ + "workclass" + ], + [ + "fnlwgt" + ], + [ + "education" + ], + [ + "education-num" + ] + ] + }, + "globalParameters": null + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServiceKeys.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServiceKeys.json index 099ced8ac2e0..65e00a62d9e7 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServiceKeys.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServiceKeys.json @@ -1,18 +1,17 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "webServiceName": "TargetWebServiceName" - }, - "responses": { - "200": { - "headers": { - }, - "body": { - "primary": "The Primary key", - "secondary": "The Secondary key" - } - } + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "webServiceName": "TargetWebServiceName" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "primary": "The Primary key", + "secondary": "The Secondary key" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServicesByResourceGroup.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServicesByResourceGroup.json index 5f061287ff77..26eb49938580 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServicesByResourceGroup.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServicesByResourceGroup.json @@ -1,83 +1,83 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01" - }, - "responses": { - "200": { - "headers": { - "azure-asyncoperation": "http://azure.async.operation/status" + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01" + }, + "responses": { + "200": { + "headers": { + "azure-asyncoperation": "http://azure.async.operation/status" + }, + "body": { + "value": [ + { + "id": "TheWebServiceId", + "location": "West US", + "tags": { + "tag1": "value1", + "tag2": "value2" }, - "body": { - "value": [ - { - "id": "TheWebServiceId", - "location": "West US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "title": "New Web Service Title", - "description": "New Web Service Description", - "readOnly": false, - "exposeSampleData": true, - "storageAccount": { - "name": "Storage_Name" - }, - "commitmentPlan": { - "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" - }, - "createdOn": "2017-01-01T01:01:01Z", - "modifiedOn": "2017-01-01T02:02:02Z", - "provisioningState": "Provisioning", - "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", - "realtimeConfiguration": { - "maxConcurrentCalls": 4 - }, - "diagnostics": { - "level": "None" - }, - "payloadsInBlobStorage": false, - "packageType": "Graph" - } - }, - { - "id": "TheWebServiceId2", - "location": "West US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "title": "New Web Service Title2", - "description": "New Web Service Description2", - "readOnly": false, - "exposeSampleData": true, - "storageAccount": { - "name": "Storage_Name" - }, - "commitmentPlan": { - "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" - }, - "createdOn": "2017-01-01T01:01:01Z", - "modifiedOn": "2017-01-01T02:02:02Z", - "provisioningState": "Provisioning", - "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", - "realtimeConfiguration": { - "maxConcurrentCalls": 4 - }, - "diagnostics": { - "level": "None" - }, - "payloadsInBlobStorage": false, - "packageType": "Graph" - } - } - ], - "nextLink": "https://the.next/link" + "properties": { + "title": "New Web Service Title", + "description": "New Web Service Description", + "readOnly": false, + "exposeSampleData": true, + "storageAccount": { + "name": "Storage_Name" + }, + "commitmentPlan": { + "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" + }, + "createdOn": "2017-01-01T01:01:01Z", + "modifiedOn": "2017-01-01T02:02:02Z", + "provisioningState": "Provisioning", + "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", + "realtimeConfiguration": { + "maxConcurrentCalls": 4 + }, + "diagnostics": { + "level": "None" + }, + "payloadsInBlobStorage": false, + "packageType": "Graph" } - } + }, + { + "id": "TheWebServiceId2", + "location": "West US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "title": "New Web Service Title2", + "description": "New Web Service Description2", + "readOnly": false, + "exposeSampleData": true, + "storageAccount": { + "name": "Storage_Name" + }, + "commitmentPlan": { + "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" + }, + "createdOn": "2017-01-01T01:01:01Z", + "modifiedOn": "2017-01-01T02:02:02Z", + "provisioningState": "Provisioning", + "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", + "realtimeConfiguration": { + "maxConcurrentCalls": 4 + }, + "diagnostics": { + "level": "None" + }, + "payloadsInBlobStorage": false, + "packageType": "Graph" + } + } + ], + "nextLink": "https://the.next/link" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServicesBySubscriptionId.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServicesBySubscriptionId.json index 20719a9bafb9..9fb51c8407c4 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServicesBySubscriptionId.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/getWebServicesBySubscriptionId.json @@ -1,82 +1,82 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "api-version": "2017-01-01" - }, - "responses": { - "200": { - "headers": { - "azure-asyncoperation": "http://azure.async.operation/status" + "parameters": { + "subscriptionId": "subscription-id", + "api-version": "2017-01-01" + }, + "responses": { + "200": { + "headers": { + "azure-asyncoperation": "http://azure.async.operation/status" + }, + "body": { + "value": [ + { + "id": "TheWebServiceId", + "location": "West US", + "tags": { + "tag1": "value1", + "tag2": "value2" }, - "body": { - "value": [ - { - "id": "TheWebServiceId", - "location": "West US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "title": "New Web Service Title", - "description": "New Web Service Description", - "readOnly": false, - "exposeSampleData": true, - "storageAccount": { - "name": "Storage_Name" - }, - "commitmentPlan": { - "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" - }, - "createdOn": "2017-01-01T01:01:01Z", - "modifiedOn": "2017-01-01T02:02:02Z", - "provisioningState": "Provisioning", - "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", - "realtimeConfiguration": { - "maxConcurrentCalls": 4 - }, - "diagnostics": { - "level": "None" - }, - "payloadsInBlobStorage": false, - "packageType": "Graph" - } - }, - { - "id": "TheWebServiceId2", - "location": "West US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "title": "New Web Service Title2", - "description": "New Web Service Description2", - "readOnly": false, - "exposeSampleData": true, - "storageAccount": { - "name": "Storage_Name" - }, - "commitmentPlan": { - "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" - }, - "createdOn": "2017-01-01T01:01:01Z", - "modifiedOn": "2017-01-01T02:02:02Z", - "provisioningState": "Provisioning", - "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", - "realtimeConfiguration": { - "maxConcurrentCalls": 4 - }, - "diagnostics": { - "level": "None" - }, - "payloadsInBlobStorage": false, - "packageType": "Graph" - } - } - ], - "nextLink": "https://the.next/link" + "properties": { + "title": "New Web Service Title", + "description": "New Web Service Description", + "readOnly": false, + "exposeSampleData": true, + "storageAccount": { + "name": "Storage_Name" + }, + "commitmentPlan": { + "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" + }, + "createdOn": "2017-01-01T01:01:01Z", + "modifiedOn": "2017-01-01T02:02:02Z", + "provisioningState": "Provisioning", + "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", + "realtimeConfiguration": { + "maxConcurrentCalls": 4 + }, + "diagnostics": { + "level": "None" + }, + "payloadsInBlobStorage": false, + "packageType": "Graph" } - } + }, + { + "id": "TheWebServiceId2", + "location": "West US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "title": "New Web Service Title2", + "description": "New Web Service Description2", + "readOnly": false, + "exposeSampleData": true, + "storageAccount": { + "name": "Storage_Name" + }, + "commitmentPlan": { + "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" + }, + "createdOn": "2017-01-01T01:01:01Z", + "modifiedOn": "2017-01-01T02:02:02Z", + "provisioningState": "Provisioning", + "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", + "realtimeConfiguration": { + "maxConcurrentCalls": 4 + }, + "diagnostics": { + "level": "None" + }, + "payloadsInBlobStorage": false, + "packageType": "Graph" + } + } + ], + "nextLink": "https://the.next/link" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/patchWebService.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/patchWebService.json index 5758775b74bf..f39ac13175df 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/patchWebService.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/patchWebService.json @@ -1,203 +1,203 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "webServiceName": "TargetWebServiceName", - "patchPayload": { - "location": "West US", + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "webServiceName": "TargetWebServiceName", + "patchPayload": { + "location": "West US", + "properties": { + "title": "New Web Service Title", + "description": "New Web Service Description", + "packageType": "Graph" + } + } + }, + "responses": { + "200": { + "headers": { + "azure-asyncoperation": "http://azure.async.operation/status" + }, + "body": { + "id": "TheWebServiceId", + "location": "West US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "title": "New Web Service Title", + "description": "New Web Service Description", + "readOnly": false, + "exposeSampleData": true, + "storageAccount": { + "name": "Storage_Name" + }, + "commitmentPlan": { + "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" + }, + "createdOn": "2017-01-01T01:01:01Z", + "modifiedOn": "2017-01-01T02:02:02Z", + "provisioningState": "Provisioning", + "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", + "realtimeConfiguration": { + "maxConcurrentCalls": 4 + }, + "diagnostics": { + "level": "None" + }, + "payloadsInBlobStorage": false, + "machineLearningWorkspace": { + "id": "workspaceId" + }, + "packageType": "Graph", + "assets": { + "asset1": { + "name": "Execute R Script", + "type": "Module", + "locationInfo": { + "uri": "aml://module/moduleId-1", + "credentials": "" + } + }, + "asset2": { + "name": "Import Data", + "type": "Module", + "locationInfo": { + "uri": "aml://module/moduleId-2", + "credentials": "" + } + } + }, + "parameters": {}, + "input": { + "title": "", + "description": "", + "type": "object", "properties": { - "title": "New Web Service Title", - "description": "New Web Service Description", - "packageType": "Graph" + "input1": { + "title": "", + "description": "", + "type": "object", + "properties": { + "column_name": { + "type": "String", + "x-ms-isnullable": false + } + } + } } - } - }, - "responses": { - "200": { - "headers": { - "azure-asyncoperation": "http://azure.async.operation/status" - }, - "body": { - "id": "TheWebServiceId", - "location": "West US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, + }, + "output": { + "title": "", + "description": "", + "type": "object", + "properties": { + "output1": { + "title": "", + "description": "", + "type": "object", "properties": { - "title": "New Web Service Title", - "description": "New Web Service Description", - "readOnly": false, - "exposeSampleData": true, - "storageAccount": { - "name": "Storage_Name" - }, - "commitmentPlan": { - "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" - }, - "createdOn": "2017-01-01T01:01:01Z", - "modifiedOn": "2017-01-01T02:02:02Z", - "provisioningState": "Provisioning", - "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", - "realtimeConfiguration": { - "maxConcurrentCalls": 4 - }, - "diagnostics": { - "level": "None" - }, - "payloadsInBlobStorage": false, - "machineLearningWorkspace": { - "id": "workspaceId" - }, - "packageType": "Graph", - "assets": { - "asset1": { - "name": "Execute R Script", - "type": "Module", - "locationInfo": { - "uri": "aml://module/moduleId-1", - "credentials": "" - } - }, - "asset2": { - "name": "Import Data", - "type": "Module", - "locationInfo": { - "uri": "aml://module/moduleId-2", - "credentials": "" - } - } - }, - "parameters": {}, - "input": { - "title": "", - "description": "", - "type": "object", - "properties": { - "input1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "column_name": { - "type": "String", - "x-ms-isnullable": false - } - } - } - } - }, - "output": { - "title": "", - "description": "", - "type": "object", - "properties": { - "output1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "age": { - "type": "Integer", - "format": "Int32", - "x-ms-isnullable": true - }, - "workclass": { - "type": "String", - "x-ms-isnullable": false - } - } - } - } - }, - "package": { - "Nodes": { - "node1": { - "AssetId": "asset1", - "Parameters": { - "R Script": { - "Value": "The R Script", - "CertificateThumbprint": "" - }, - "R Version": { - "Value": "CRAN R 3.1.0", - "CertificateThumbprint": "" - } - } - }, - "node2": { - "AssetId": "asset2", - "Parameters": { - "Please Specify Data Source": { - "Value": "AzureBlobStorage", - "CertificateThumbprint": "" - }, - "Please Specify Authentication Type": { - "Value": "Account", - "CertificateThumbprint": "" - }, - "Account Name": { - "Value": "accountName", - "CertificateThumbprint": "" - }, - "Account Key": { - "Value": "Encrypted Key", - "CertificateThumbprint": "TheThumbprint" - } - } - }, - "node3": { - "InputId": "input1" - }, - "node4": { - "OutputId": "output1" - } - }, - "Edges": [ - { - "SourceNodeId": "node2", - "SourcePortId": "Results dataset", - "TargetNodeId": "node1", - "TargetPortId": "Dataset2" - }, - { - "SourceNodeId": "node3", - "TargetNodeId": "node1", - "TargetPortId": "Dataset1" - }, - { - "SourceNodeId": "node1", - "SourcePortId": "Result Dataset", - "TargetNodeId": "node4" - } - ], - "GraphParameters": {} - }, - "exampleRequest": { - "inputs": { - "input1": [ - [ - "age" - ], - [ - "workclass" - ], - [ - "fnlwgt" - ], - [ - "education" - ], - [ - "education-num" - ] - ] - }, - "globalParameters": null - } + "age": { + "type": "Integer", + "format": "Int32", + "x-ms-isnullable": true + }, + "workclass": { + "type": "String", + "x-ms-isnullable": false + } } + } } + }, + "package": { + "Nodes": { + "node1": { + "AssetId": "asset1", + "Parameters": { + "R Script": { + "Value": "The R Script", + "CertificateThumbprint": "" + }, + "R Version": { + "Value": "CRAN R 3.1.0", + "CertificateThumbprint": "" + } + } + }, + "node2": { + "AssetId": "asset2", + "Parameters": { + "Please Specify Data Source": { + "Value": "AzureBlobStorage", + "CertificateThumbprint": "" + }, + "Please Specify Authentication Type": { + "Value": "Account", + "CertificateThumbprint": "" + }, + "Account Name": { + "Value": "accountName", + "CertificateThumbprint": "" + }, + "Account Key": { + "Value": "Encrypted Key", + "CertificateThumbprint": "TheThumbprint" + } + } + }, + "node3": { + "InputId": "input1" + }, + "node4": { + "OutputId": "output1" + } + }, + "Edges": [ + { + "SourceNodeId": "node2", + "SourcePortId": "Results dataset", + "TargetNodeId": "node1", + "TargetPortId": "Dataset2" + }, + { + "SourceNodeId": "node3", + "TargetNodeId": "node1", + "TargetPortId": "Dataset1" + }, + { + "SourceNodeId": "node1", + "SourcePortId": "Result Dataset", + "TargetNodeId": "node4" + } + ], + "GraphParameters": {} + }, + "exampleRequest": { + "inputs": { + "input1": [ + [ + "age" + ], + [ + "workclass" + ], + [ + "fnlwgt" + ], + [ + "education" + ], + [ + "education-num" + ] + ] + }, + "globalParameters": null + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/putWebService.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/putWebService.json index dad017d2d2f7..a780004fa25b 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/putWebService.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/examples/putWebService.json @@ -1,556 +1,556 @@ { - "parameters": { - "subscriptionId": "subscription-id", - "resourceGroupName": "OneResourceGroupName", - "api-version": "2017-01-01", - "webServiceName": "TargetWebServiceName", - "createOrUpdatePayload": { - "location": "West US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "title": "Web Service Title", - "description": "Web Service Description", - "readOnly": false, - "exposeSampleData": true, - "storageAccount": { - "name": "Storage_Name", - "key": "Storage_Key" - }, - "commitmentPlan": { - "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" - }, - "realtimeConfiguration": { - "maxConcurrentCalls": 4 - }, - "diagnostics": { - "level": "None" - }, - "payloadsInBlobStorage": false, - "machineLearningWorkspace": { - "id": "workspaceId" + "parameters": { + "subscriptionId": "subscription-id", + "resourceGroupName": "OneResourceGroupName", + "api-version": "2017-01-01", + "webServiceName": "TargetWebServiceName", + "createOrUpdatePayload": { + "location": "West US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "title": "Web Service Title", + "description": "Web Service Description", + "readOnly": false, + "exposeSampleData": true, + "storageAccount": { + "name": "Storage_Name", + "key": "Storage_Key" + }, + "commitmentPlan": { + "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" + }, + "realtimeConfiguration": { + "maxConcurrentCalls": 4 + }, + "diagnostics": { + "level": "None" + }, + "payloadsInBlobStorage": false, + "machineLearningWorkspace": { + "id": "workspaceId" + }, + "packageType": "Graph", + "assets": { + "asset1": { + "name": "Execute R Script", + "type": "Module", + "locationInfo": { + "uri": "aml://module/moduleId-1", + "credentials": "" + } + }, + "asset2": { + "name": "Import Data", + "type": "Module", + "locationInfo": { + "uri": "aml://module/moduleId-2", + "credentials": "" + } + } + }, + "parameters": {}, + "input": { + "title": "", + "description": "", + "type": "object", + "properties": { + "input1": { + "title": "", + "description": "", + "type": "object", + "properties": { + "column_name": { + "type": "String", + "x-ms-isnullable": false + } + } + } + } + }, + "output": { + "title": "", + "description": "", + "type": "object", + "properties": { + "output1": { + "title": "", + "description": "", + "type": "object", + "properties": { + "age": { + "type": "Integer", + "format": "Int32", + "x-ms-isnullable": true }, - "packageType": "Graph", - "assets": { - "asset1": { - "name": "Execute R Script", - "type": "Module", - "locationInfo": { - "uri": "aml://module/moduleId-1", - "credentials": "" - } - }, - "asset2": { - "name": "Import Data", - "type": "Module", - "locationInfo": { - "uri": "aml://module/moduleId-2", - "credentials": "" - } - } + "workclass": { + "type": "String", + "x-ms-isnullable": false + } + } + } + } + }, + "package": { + "Nodes": { + "node1": { + "AssetId": "asset1", + "Parameters": { + "R Script": { + "Value": "The R Script", + "CertificateThumbprint": "" }, - "parameters": {}, - "input": { - "title": "", - "description": "", - "type": "object", - "properties": { - "input1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "column_name": { - "type": "String", - "x-ms-isnullable": false - } - } - } - } + "R Version": { + "Value": "CRAN R 3.1.0", + "CertificateThumbprint": "" + } + } + }, + "node2": { + "AssetId": "asset2", + "Parameters": { + "Please Specify Data Source": { + "Value": "AzureBlobStorage", + "CertificateThumbprint": "" }, - "output": { - "title": "", - "description": "", - "type": "object", - "properties": { - "output1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "age": { - "type": "Integer", - "format": "Int32", - "x-ms-isnullable": true - }, - "workclass": { - "type": "String", - "x-ms-isnullable": false - } - } - } - } + "Please Specify Authentication Type": { + "Value": "Account", + "CertificateThumbprint": "" }, - "package": { - "Nodes": { - "node1": { - "AssetId": "asset1", - "Parameters": { - "R Script": { - "Value": "The R Script", - "CertificateThumbprint": "" - }, - "R Version": { - "Value": "CRAN R 3.1.0", - "CertificateThumbprint": "" - } - } - }, - "node2": { - "AssetId": "asset2", - "Parameters": { - "Please Specify Data Source": { - "Value": "AzureBlobStorage", - "CertificateThumbprint": "" - }, - "Please Specify Authentication Type": { - "Value": "Account", - "CertificateThumbprint": "" - }, - "Account Name": { - "Value": "accountName", - "CertificateThumbprint": "" - }, - "Account Key": { - "Value": "Encrypted Key", - "CertificateThumbprint": "TheThumbprint" - } - } - }, - "node3": { - "InputId": "input1" - }, - "node4": { - "OutputId": "output1" - } - }, - "Edges": [ - { - "SourceNodeId": "node2", - "SourcePortId": "Results dataset", - "TargetNodeId": "node1", - "TargetPortId": "Dataset2" - }, - { - "SourceNodeId": "node3", - "TargetNodeId": "node1", - "TargetPortId": "Dataset1" - }, - { - "SourceNodeId": "node1", - "SourcePortId": "Result Dataset", - "TargetNodeId": "node4" - } - ], - "GraphParameters": {} + "Account Name": { + "Value": "accountName", + "CertificateThumbprint": "" }, - "exampleRequest": { - "inputs": { - "input1": [ - [ - "age" - ], - [ - "workclass" - ], - [ - "fnlwgt" - ], - [ - "education" - ], - [ - "education-num" - ] - ] - }, - "globalParameters": null + "Account Key": { + "Value": "Encrypted Key", + "CertificateThumbprint": "TheThumbprint" } + } + }, + "node3": { + "InputId": "input1" + }, + "node4": { + "OutputId": "output1" } + }, + "Edges": [ + { + "SourceNodeId": "node2", + "SourcePortId": "Results dataset", + "TargetNodeId": "node1", + "TargetPortId": "Dataset2" + }, + { + "SourceNodeId": "node3", + "TargetNodeId": "node1", + "TargetPortId": "Dataset1" + }, + { + "SourceNodeId": "node1", + "SourcePortId": "Result Dataset", + "TargetNodeId": "node4" + } + ], + "GraphParameters": {} + }, + "exampleRequest": { + "inputs": { + "input1": [ + [ + "age" + ], + [ + "workclass" + ], + [ + "fnlwgt" + ], + [ + "education" + ], + [ + "education-num" + ] + ] + }, + "globalParameters": null } - }, - "responses": { - "200": { - "headers": { - "azure-asyncoperation": "http://azure.async.operation/status" + } + } + }, + "responses": { + "200": { + "headers": { + "azure-asyncoperation": "http://azure.async.operation/status" + }, + "body": { + "id": "TheWebServiceId", + "location": "West US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "title": "Web Service Title", + "description": "Web Service Description", + "readOnly": false, + "exposeSampleData": true, + "storageAccount": { + "name": "Storage_Name" + }, + "commitmentPlan": { + "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" + }, + "createdOn": "2017-01-01T01:01:01Z", + "modifiedOn": "2017-01-01T02:02:02Z", + "provisioningState": "Provisioning", + "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", + "realtimeConfiguration": { + "maxConcurrentCalls": 4 + }, + "diagnostics": { + "level": "None" + }, + "payloadsInBlobStorage": false, + "machineLearningWorkspace": { + "id": "workspaceId" + }, + "packageType": "Graph", + "assets": { + "asset1": { + "name": "Execute R Script", + "type": "Module", + "locationInfo": { + "uri": "aml://module/moduleId-1", + "credentials": "" + } }, - "body": { - "id": "TheWebServiceId", - "location": "West US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, + "asset2": { + "name": "Import Data", + "type": "Module", + "locationInfo": { + "uri": "aml://module/moduleId-2", + "credentials": "" + } + } + }, + "parameters": {}, + "input": { + "title": "", + "description": "", + "type": "object", + "properties": { + "input1": { + "title": "", + "description": "", + "type": "object", + "properties": { + "column_name": { + "type": "String", + "x-ms-isnullable": false + } + } + } + } + }, + "output": { + "title": "", + "description": "", + "type": "object", + "properties": { + "output1": { + "title": "", + "description": "", + "type": "object", "properties": { - "title": "Web Service Title", - "description": "Web Service Description", - "readOnly": false, - "exposeSampleData": true, - "storageAccount": { - "name": "Storage_Name" - }, - "commitmentPlan": { - "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" - }, - "createdOn": "2017-01-01T01:01:01Z", - "modifiedOn": "2017-01-01T02:02:02Z", - "provisioningState": "Provisioning", - "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", - "realtimeConfiguration": { - "maxConcurrentCalls": 4 - }, - "diagnostics": { - "level": "None" - }, - "payloadsInBlobStorage": false, - "machineLearningWorkspace": { - "id": "workspaceId" - }, - "packageType": "Graph", - "assets": { - "asset1": { - "name": "Execute R Script", - "type": "Module", - "locationInfo": { - "uri": "aml://module/moduleId-1", - "credentials": "" - } - }, - "asset2": { - "name": "Import Data", - "type": "Module", - "locationInfo": { - "uri": "aml://module/moduleId-2", - "credentials": "" - } - } - }, - "parameters": {}, - "input": { - "title": "", - "description": "", - "type": "object", - "properties": { - "input1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "column_name": { - "type": "String", - "x-ms-isnullable": false - } - } - } - } - }, - "output": { - "title": "", - "description": "", - "type": "object", - "properties": { - "output1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "age": { - "type": "Integer", - "format": "Int32", - "x-ms-isnullable": true - }, - "workclass": { - "type": "String", - "x-ms-isnullable": false - } - } - } - } - }, - "package": { - "Nodes": { - "node1": { - "AssetId": "asset1", - "Parameters": { - "R Script": { - "Value": "The R Script", - "CertificateThumbprint": "" - }, - "R Version": { - "Value": "CRAN R 3.1.0", - "CertificateThumbprint": "" - } - } - }, - "node2": { - "AssetId": "asset2", - "Parameters": { - "Please Specify Data Source": { - "Value": "AzureBlobStorage", - "CertificateThumbprint": "" - }, - "Please Specify Authentication Type": { - "Value": "Account", - "CertificateThumbprint": "" - }, - "Account Name": { - "Value": "accountName", - "CertificateThumbprint": "" - }, - "Account Key": { - "Value": "Encrypted Key", - "CertificateThumbprint": "TheThumbprint" - } - } - }, - "node3": { - "InputId": "input1" - }, - "node4": { - "OutputId": "output1" - } - }, - "Edges": [ - { - "SourceNodeId": "node2", - "SourcePortId": "Results dataset", - "TargetNodeId": "node1", - "TargetPortId": "Dataset2" - }, - { - "SourceNodeId": "node3", - "TargetNodeId": "node1", - "TargetPortId": "Dataset1" - }, - { - "SourceNodeId": "node1", - "SourcePortId": "Result Dataset", - "TargetNodeId": "node4" - } - ], - "GraphParameters": {} - }, - "exampleRequest": { - "inputs": { - "input1": [ - [ - "age" - ], - [ - "workclass" - ], - [ - "fnlwgt" - ], - [ - "education" - ], - [ - "education-num" - ] - ] - }, - "globalParameters": null - } + "age": { + "type": "Integer", + "format": "Int32", + "x-ms-isnullable": true + }, + "workclass": { + "type": "String", + "x-ms-isnullable": false + } } + } } + }, + "package": { + "Nodes": { + "node1": { + "AssetId": "asset1", + "Parameters": { + "R Script": { + "Value": "The R Script", + "CertificateThumbprint": "" + }, + "R Version": { + "Value": "CRAN R 3.1.0", + "CertificateThumbprint": "" + } + } + }, + "node2": { + "AssetId": "asset2", + "Parameters": { + "Please Specify Data Source": { + "Value": "AzureBlobStorage", + "CertificateThumbprint": "" + }, + "Please Specify Authentication Type": { + "Value": "Account", + "CertificateThumbprint": "" + }, + "Account Name": { + "Value": "accountName", + "CertificateThumbprint": "" + }, + "Account Key": { + "Value": "Encrypted Key", + "CertificateThumbprint": "TheThumbprint" + } + } + }, + "node3": { + "InputId": "input1" + }, + "node4": { + "OutputId": "output1" + } + }, + "Edges": [ + { + "SourceNodeId": "node2", + "SourcePortId": "Results dataset", + "TargetNodeId": "node1", + "TargetPortId": "Dataset2" + }, + { + "SourceNodeId": "node3", + "TargetNodeId": "node1", + "TargetPortId": "Dataset1" + }, + { + "SourceNodeId": "node1", + "SourcePortId": "Result Dataset", + "TargetNodeId": "node4" + } + ], + "GraphParameters": {} + }, + "exampleRequest": { + "inputs": { + "input1": [ + [ + "age" + ], + [ + "workclass" + ], + [ + "fnlwgt" + ], + [ + "education" + ], + [ + "education-num" + ] + ] + }, + "globalParameters": null + } + } + } + }, + "201": { + "headers": { + "azure-asyncoperation": "http://azure.async.operation/status" + }, + "body": { + "id": "TheWebServiceId", + "location": "West US", + "tags": { + "tag1": "value1", + "tag2": "value2" }, - "201": { - "headers": { - "azure-asyncoperation": "http://azure.async.operation/status" + "properties": { + "title": "Web Service Title", + "description": "Web Service Description", + "readOnly": false, + "exposeSampleData": true, + "storageAccount": { + "name": "Storage_Name" + }, + "commitmentPlan": { + "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" + }, + "createdOn": "2017-01-01T01:01:01Z", + "modifiedOn": "2017-01-01T01:01:01Z", + "provisioningState": "Provisioning", + "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", + "realtimeConfiguration": { + "maxConcurrentCalls": 4 + }, + "diagnostics": { + "level": "None" + }, + "payloadsInBlobStorage": false, + "machineLearningWorkspace": { + "id": "workspaceId" + }, + "packageType": "Graph", + "assets": { + "asset1": { + "name": "Execute R Script", + "type": "Module", + "locationInfo": { + "uri": "aml://module/moduleId-1", + "credentials": "" + } }, - "body": { - "id": "TheWebServiceId", - "location": "West US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, + "asset2": { + "name": "Import Data", + "type": "Module", + "locationInfo": { + "uri": "aml://module/moduleId-2", + "credentials": "" + } + } + }, + "parameters": {}, + "input": { + "title": "", + "description": "", + "type": "object", + "properties": { + "input1": { + "title": "", + "description": "", + "type": "object", "properties": { - "title": "Web Service Title", - "description": "Web Service Description", - "readOnly": false, - "exposeSampleData": true, - "storageAccount": { - "name": "Storage_Name" - }, - "commitmentPlan": { - "id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName" - }, - "createdOn": "2017-01-01T01:01:01Z", - "modifiedOn": "2017-01-01T01:01:01Z", - "provisioningState": "Provisioning", - "swaggerLocation": "https://ussouthcentral.services.azureml.net/subscriptions/subscriptionId/services/serviceId/swagger.json", - "realtimeConfiguration": { - "maxConcurrentCalls": 4 - }, - "diagnostics": { - "level": "None" - }, - "payloadsInBlobStorage": false, - "machineLearningWorkspace": { - "id": "workspaceId" - }, - "packageType": "Graph", - "assets": { - "asset1": { - "name": "Execute R Script", - "type": "Module", - "locationInfo": { - "uri": "aml://module/moduleId-1", - "credentials": "" - } - }, - "asset2": { - "name": "Import Data", - "type": "Module", - "locationInfo": { - "uri": "aml://module/moduleId-2", - "credentials": "" - } - } - }, - "parameters": {}, - "input": { - "title": "", - "description": "", - "type": "object", - "properties": { - "input1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "column_name": { - "type": "String", - "x-ms-isnullable": false - } - } - } - } - }, - "output": { - "title": "", - "description": "", - "type": "object", - "properties": { - "output1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "age": { - "type": "Integer", - "format": "Int32", - "x-ms-isnullable": true - }, - "workclass": { - "type": "String", - "x-ms-isnullable": false - } - } - } - } - }, - "package": { - "Nodes": { - "node1": { - "AssetId": "asset1", - "Parameters": { - "R Script": { - "Value": "The R Script", - "CertificateThumbprint": "" - }, - "R Version": { - "Value": "CRAN R 3.1.0", - "CertificateThumbprint": "" - } - } - }, - "node2": { - "AssetId": "asset2", - "Parameters": { - "Please Specify Data Source": { - "Value": "AzureBlobStorage", - "CertificateThumbprint": "" - }, - "Please Specify Authentication Type": { - "Value": "Account", - "CertificateThumbprint": "" - }, - "Account Name": { - "Value": "accountName", - "CertificateThumbprint": "" - }, - "Account Key": { - "Value": "Encrypted Key", - "CertificateThumbprint": "TheThumbprint" - } - } - }, - "node3": { - "InputId": "input1" - }, - "node4": { - "OutputId": "output1" - } - }, - "Edges": [ - { - "SourceNodeId": "node2", - "SourcePortId": "Results dataset", - "TargetNodeId": "node1", - "TargetPortId": "Dataset2" - }, - { - "SourceNodeId": "node3", - "TargetNodeId": "node1", - "TargetPortId": "Dataset1" - }, - { - "SourceNodeId": "node1", - "SourcePortId": "Result Dataset", - "TargetNodeId": "node4" - } - ], - "GraphParameters": {} - }, - "exampleRequest": { - "inputs": { - "input1": [ - [ - "age" - ], - [ - "workclass" - ], - [ - "fnlwgt" - ], - [ - "education" - ], - [ - "education-num" - ] - ] - }, - "globalParameters": null - } + "column_name": { + "type": "String", + "x-ms-isnullable": false + } } + } } + }, + "output": { + "title": "", + "description": "", + "type": "object", + "properties": { + "output1": { + "title": "", + "description": "", + "type": "object", + "properties": { + "age": { + "type": "Integer", + "format": "Int32", + "x-ms-isnullable": true + }, + "workclass": { + "type": "String", + "x-ms-isnullable": false + } + } + } + } + }, + "package": { + "Nodes": { + "node1": { + "AssetId": "asset1", + "Parameters": { + "R Script": { + "Value": "The R Script", + "CertificateThumbprint": "" + }, + "R Version": { + "Value": "CRAN R 3.1.0", + "CertificateThumbprint": "" + } + } + }, + "node2": { + "AssetId": "asset2", + "Parameters": { + "Please Specify Data Source": { + "Value": "AzureBlobStorage", + "CertificateThumbprint": "" + }, + "Please Specify Authentication Type": { + "Value": "Account", + "CertificateThumbprint": "" + }, + "Account Name": { + "Value": "accountName", + "CertificateThumbprint": "" + }, + "Account Key": { + "Value": "Encrypted Key", + "CertificateThumbprint": "TheThumbprint" + } + } + }, + "node3": { + "InputId": "input1" + }, + "node4": { + "OutputId": "output1" + } + }, + "Edges": [ + { + "SourceNodeId": "node2", + "SourcePortId": "Results dataset", + "TargetNodeId": "node1", + "TargetPortId": "Dataset2" + }, + { + "SourceNodeId": "node3", + "TargetNodeId": "node1", + "TargetPortId": "Dataset1" + }, + { + "SourceNodeId": "node1", + "SourcePortId": "Result Dataset", + "TargetNodeId": "node4" + } + ], + "GraphParameters": {} + }, + "exampleRequest": { + "inputs": { + "input1": [ + [ + "age" + ], + [ + "workclass" + ], + [ + "fnlwgt" + ], + [ + "education" + ], + [ + "education-num" + ] + ] + }, + "globalParameters": null + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/webservices.json b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/webservices.json index 3061906d2b5c..26a02e11a29d 100644 --- a/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/webservices.json +++ b/specification/machinelearning/resource-manager/Microsoft.MachineLearning/stable/2017-01-01/webservices.json @@ -20,9 +20,11 @@ "get": { "description": "Lists all the available REST API operations.", "operationId": "Operations_List", - "parameters": [{ - "$ref": "#/parameters/APIVersionParameter" - }], + "parameters": [ + { + "$ref": "#/parameters/APIVersionParameter" + } + ], "x-ms-pageable": { "nextLinkName": null }, @@ -208,7 +210,7 @@ "x-ms-long-running-operation": true } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/CreateRegionalBlob":{ + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/CreateRegionalBlob": { "post": { "tags": [ "WebServices" @@ -494,7 +496,7 @@ "properties" ] }, - "PatchedWebService": { + "PatchedWebService": { "type": "object", "description": "Instance of an Patched Azure ML web service resource.", "allOf": [ @@ -554,7 +556,7 @@ }, "keys": { "$ref": "#/definitions/WebServiceKeys", - "description": "Contains the web service provisioning keys. If you do not specify provisioning keys, the Azure Machine Learning system generates them for you. Note: The keys are not returned from calls to GET operations." + "description": "Contains the web service provisioning keys. If you do not specify provisioning keys, the Azure Machine Learning system generates them for you. Note: The keys are not returned from calls to GET operations." }, "readOnly": { "type": "boolean", @@ -566,8 +568,8 @@ "readOnly": true }, "exposeSampleData": { - "type": "boolean", - "description": "When set to true, sample data is included in the web service's swagger definition. The default value is true." + "type": "boolean", + "description": "When set to true, sample data is included in the web service's swagger definition. The default value is true." }, "realtimeConfiguration": { "$ref": "#/definitions/RealtimeConfiguration", diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicAKSCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicAKSCompute.json index 5a9b40a2241e..fb88eb3aba15 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicAKSCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicAKSCompute.json @@ -1,44 +1,44 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview", - "parameters": { - "location": "eastus", - "properties": { - "computeType": "AKS" - } + "location": "eastus", + "properties": { + "computeType": "AKS" + } + } + }, + "responses": { + "200": { + "body": { + "id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "AKS", + "provisioningState": "Creating" } + } }, - "responses": { - "200": { - "body": { - "id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "AKS", - "provisioningState": "Creating" - } - } - }, - "201": { - "body": { - "id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "AKS", - "provisioningState": "Creating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + "201": { + "body": { + "id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "AKS", + "provisioningState": "Creating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicBatchAICompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicBatchAICompute.json index d3f2ffe05ffd..71db1a34d1a4 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicBatchAICompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicBatchAICompute.json @@ -1,44 +1,44 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview", - "parameters": { - "location": "eastus", - "properties": { - "computeType": "BatchAI" - } + "location": "eastus", + "properties": { + "computeType": "BatchAI" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "BatchAI", + "provisioningState": "Creating" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "BatchAI", - "provisioningState": "Creating" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "BatchAI", - "provisioningState": "Creating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "BatchAI", + "provisioningState": "Creating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicDataFactoryCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicDataFactoryCompute.json index 5dcfa2b1644b..08bf514a47a2 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicDataFactoryCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createBasicDataFactoryCompute.json @@ -1,44 +1,44 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview", - "parameters": { - "location": "eastus", - "properties": { - "computeType": "DataFactory" - } + "location": "eastus", + "properties": { + "computeType": "DataFactory" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "DataFactory", + "provisioningState": "Creating" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "DataFactory", - "provisioningState": "Creating" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "DataFactory", - "provisioningState": "Creating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "DataFactory", + "provisioningState": "Creating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createWorkspace.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createWorkspace.json index 7cd518be87b6..cedbdb567567 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createWorkspace.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/createWorkspace.json @@ -1,60 +1,60 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workspace-1234", + "workspaceName": "testworkspace", + "api-version": "2018-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workspace-1234", - "workspaceName": "testworkspace", - "api-version": "2018-03-01-preview", - "parameters": { - "location": "eastus2euap", - "properties": { - "friendlyName": "HelloName", - "description": "test description", - "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount" - } + "location": "eastus2euap", + "properties": { + "friendlyName": "HelloName", + "description": "test description", + "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" } } -} \ No newline at end of file + } + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/deleteCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/deleteCompute.json index e0b596696809..cdd95585e41b 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/deleteCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/deleteCompute.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": {}, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus...", - "Location": "https://management.azure.com/subscriptions/...pathToOperationResult..." - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus...", + "Location": "https://management.azure.com/subscriptions/...pathToOperationResult..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/deleteWorkspace.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/deleteWorkspace.json index 307b6e2f6f86..452b097c5492 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/deleteWorkspace.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/deleteWorkspace.json @@ -1,12 +1,12 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workspace-1234", - "workspaceName": "testworkspace", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workspace-1234", + "workspaceName": "testworkspace", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getAKSCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getAKSCompute.json index 2b032361a3fd..b43ac99719b0 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getAKSCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getAKSCompute.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", - "computeType": "AKS", - "provisioningState": "Succeeded" - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", + "computeType": "AKS", + "provisioningState": "Succeeded" } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getBatchAICompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getBatchAICompute.json index 5e5d75a75a47..db2d7e047fb9 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getBatchAICompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getBatchAICompute.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus2", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.BatchAI/clusters/compute123-ccb488844dcc2", - "computeType": "BatchAI", - "provisioningState": "Succeeded" - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus2", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.BatchAI/clusters/compute123-ccb488844dcc2", + "computeType": "BatchAI", + "provisioningState": "Succeeded" } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getComputes.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getComputes.json index 899e990ea9ef..b96c2eaf315e 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getComputes.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getComputes.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", - "computeType": "AKS", - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute1234", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute1234", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute1234-56826-c9b00420020b2", - "computeType": "AKS", - "provisioningState": "Succeeded" - } - } - ], - "nextLink": "nextLink" + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", + "computeType": "AKS", + "provisioningState": "Succeeded" } - } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute1234", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute1234", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute1234-56826-c9b00420020b2", + "computeType": "AKS", + "provisioningState": "Succeeded" + } + } + ], + "nextLink": "nextLink" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspace.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspace.json index 984545d9ed30..e48b93e29515 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspace.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspace.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workspace-1234", - "workspaceName": "testworkspace", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workspace-1234", + "workspaceName": "testworkspace", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" } } -} \ No newline at end of file + } + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspacesByResourceGroup.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspacesByResourceGroup.json index 43c28a431e8a..ab288f5e8871 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspacesByResourceGroup.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspacesByResourceGroup.json @@ -1,50 +1,50 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workspace-1234", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace1", - "name": "testworkspace1", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistryNew", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkvNew", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccountOld", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName 1", - "description": "test description" - } - } - ], - "nextLink": "nextLink" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workspace-1234", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace1", + "name": "testworkspace1", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistryNew", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkvNew", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccountOld", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName 1", + "description": "test description" + } + } + ], + "nextLink": "nextLink" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspacesBySubscription.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspacesBySubscription.json index 3e5037ab6f45..1cf9bfcf7589 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspacesBySubscription.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/getWorkspacesBySubscription.json @@ -1,49 +1,49 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-5678/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistryNew", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkvNew", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccountOld", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - } - ], - "nextLink": "nextLink" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-5678/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistryNew", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkvNew", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccountOld", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" + } + } + ], + "nextLink": "nextLink" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listKeysAKSCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listKeysAKSCompute.json index 13cd68b7fb4b..b32d1b81d973 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listKeysAKSCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listKeysAKSCompute.json @@ -1,19 +1,19 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": { - "body": { - "computeType": "AKS", - "userKubeConfig": "user kube config...", - "adminKubeConfig": "admin kube config...", - "imagePullSecretName": "the image pull secret name" - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": { + "body": { + "computeType": "AKS", + "userKubeConfig": "user kube config...", + "adminKubeConfig": "admin kube config...", + "imagePullSecretName": "the image pull secret name" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listKeysVirtualMachine.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listKeysVirtualMachine.json index 12035705d05a..bd2d429f0087 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listKeysVirtualMachine.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listKeysVirtualMachine.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": { - "body": { - "computeType": "AKS", - "administratorAccount": { - "username": "the user name", - "password": "the password", - "publicKeyData": "public key...", - "privateKeyData": "private key..." - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": { + "body": { + "computeType": "AKS", + "administratorAccount": { + "username": "the user name", + "password": "the password", + "publicKeyData": "public key...", + "privateKeyData": "private key..." } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listWorkspaceKeys.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listWorkspaceKeys.json index 36c1dba479fe..0d7f76b0d07f 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listWorkspaceKeys.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/listWorkspaceKeys.json @@ -1,32 +1,31 @@ { - "parameters": { - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": { - "body": + "parameters": { + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": { + "body": { + "userStorageKey": "r5rKCJ018TLk+bdAi/9YaVzgcQ0nkLsUqGyUN03KsdCFtqG0SjFGPV8+vT1frWqkvBL0bGoPpLc1BlZSSaZmOA==", + "userStorageResourceId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/ragargeastus2euap/providers/Microsoft.Storage/storageAccounts/testdemoworkazashomr", + "appInsightsInstrumentationKey": null, + "containerRegistryCredentials": { + "location": null, + "username": "testdemoworkjmjmeykp", + "passwords": [ { - "userStorageKey": "r5rKCJ018TLk+bdAi/9YaVzgcQ0nkLsUqGyUN03KsdCFtqG0SjFGPV8+vT1frWqkvBL0bGoPpLc1BlZSSaZmOA==", - "userStorageResourceId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/ragargeastus2euap/providers/Microsoft.Storage/storageAccounts/testdemoworkazashomr", - "appInsightsInstrumentationKey": null, - "containerRegistryCredentials": { - "location": null, - "username": "testdemoworkjmjmeykp", - "passwords": [ - { - "name": "password", - "value": "vBvVhYgAGtUSewVCUv3w95p4/q5Yrsnw" - }, - { - "name": "password2", - "value": "0KARRQoQHSUq1yViPWg7YFernOS=Ic/t" - } - ] - } + "name": "password", + "value": "vBvVhYgAGtUSewVCUv3w95p4/q5Yrsnw" + }, + { + "name": "password2", + "value": "0KARRQoQHSUq1yViPWg7YFernOS=Ic/t" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/resyncWorkspaceKeys.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/resyncWorkspaceKeys.json index 110e00eddc38..0e3115f0badc 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/resyncWorkspaceKeys.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/resyncWorkspaceKeys.json @@ -1,13 +1,11 @@ { - "parameters": { - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": { - - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/systemUpdateCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/systemUpdateCompute.json index e0b596696809..cdd95585e41b 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/systemUpdateCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/systemUpdateCompute.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview" - }, - "responses": { - "200": {}, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus...", - "Location": "https://management.azure.com/subscriptions/...pathToOperationResult..." - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus...", + "Location": "https://management.azure.com/subscriptions/...pathToOperationResult..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateAKSCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateAKSCompute.json index 77a00340ab83..9aef142daae8 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateAKSCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateAKSCompute.json @@ -1,54 +1,54 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview", - "parameters": { - "id": "compute123", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", - "computeType": "AKS", - "properties": { - "agentCount": 4 - } - } + "id": "compute123", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", + "computeType": "AKS", + "properties": { + "agentCount": 4 } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", + "computeType": "AKS", + "provisioningState": "Updating" + } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", - "computeType": "AKS", - "provisioningState": "Updating" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", - "computeType": "AKS", - "provisioningState": "Updating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", + "computeType": "AKS", + "provisioningState": "Updating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateBatchAICompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateBatchAICompute.json index a81692e3d392..eb9e7a49b81c 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateBatchAICompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateBatchAICompute.json @@ -1,60 +1,60 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-03-01-preview", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-03-01-preview", - "parameters": { - "location": "eastus", - "properties": { - "computeType": "BatchAI", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.BatchAI/clusters/compute123-ccb488844dcc2", - "computeType": "BatchAI", - "properties": { - "scaleSettings": { - "maxNodeCount": 4, - "minNodeCount": 4, - "autoScaleEnabled": false - } - } - } + "location": "eastus", + "properties": { + "computeType": "BatchAI", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.BatchAI/clusters/compute123-ccb488844dcc2", + "computeType": "BatchAI", + "properties": { + "scaleSettings": { + "maxNodeCount": 4, + "minNodeCount": 4, + "autoScaleEnabled": false } + } } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus2", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.BatchAI/clusters/compute123-ccb488844dcc2", + "computeType": "BatchAI", + "provisioningState": "Updating" + } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus2", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.BatchAI/clusters/compute123-ccb488844dcc2", - "computeType": "BatchAI", - "provisioningState": "Updating" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus2", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.BatchAI/clusters/compute123-ccb488844dcc2", - "computeType": "BatchAI", - "provisioningState": "Updating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus2", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.BatchAI/clusters/compute123-ccb488844dcc2", + "computeType": "BatchAI", + "provisioningState": "Updating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateWorkspace.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateWorkspace.json index 25eb01e7194b..038c0b6797c1 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateWorkspace.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/examples/updateWorkspace.json @@ -1,35 +1,35 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workspace-1234", + "workspaceName": "testworkspace", + "api-version": "2018-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workspace-1234", - "workspaceName": "testworkspace", - "api-version": "2018-03-01-preview", - "parameters": { - "properties": { - "friendlyName": "New friendly name", - "description": "new description" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "New friendly name", - "description": "new description" - } - } + "properties": { + "friendlyName": "New friendly name", + "description": "new description" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "batchaiWorkspace": "/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/workspace-1234/providers/Microsoft.BatchAI/workspaces/testBatchAIWorkspace", + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "New friendly name", + "description": "new description" } } -} \ No newline at end of file + } + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/machineLearningServices.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/machineLearningServices.json index 6b91c6bc4f85..782995dfe9c5 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/machineLearningServices.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2018-03-01-preview/machineLearningServices.json @@ -73,7 +73,9 @@ "description": "Gets the properties of the specified machine learning workspace.", "operationId": "Workspaces_Get", "x-ms-examples": { - "Get Workspace": { "$ref": "./examples/getWorkspace.json" } + "Get Workspace": { + "$ref": "./examples/getWorkspace.json" + } }, "parameters": [ { @@ -111,7 +113,9 @@ "description": "Creates or updates a workspace with the specified parameters.", "operationId": "Workspaces_CreateOrUpdate", "x-ms-examples": { - "Create Workspace": { "$ref": "./examples/createWorkspace.json" } + "Create Workspace": { + "$ref": "./examples/createWorkspace.json" + } }, "parameters": [ { @@ -164,7 +168,9 @@ "description": "Deletes a machine learning workspace.", "operationId": "Workspaces_Delete", "x-ms-examples": { - "Delete Workspace": { "$ref": "./examples/deleteWorkspace.json" } + "Delete Workspace": { + "$ref": "./examples/deleteWorkspace.json" + } }, "parameters": [ { @@ -202,7 +208,9 @@ "description": "Updates a machine learning workspace with the specified parameters.", "operationId": "Workspaces_Update", "x-ms-examples": { - "Update Workspace": { "$ref": "./examples/updateWorkspace.json" } + "Update Workspace": { + "$ref": "./examples/updateWorkspace.json" + } }, "parameters": [ { @@ -251,7 +259,9 @@ "description": "Lists all the available machine learning workspaces under the specified resource group.", "operationId": "Workspaces_ListByResourceGroup", "x-ms-examples": { - "Get Workspaces by Resource Group": { "$ref": "./examples/getWorkspacesByResourceGroup.json" } + "Get Workspaces by Resource Group": { + "$ref": "./examples/getWorkspacesByResourceGroup.json" + } }, "parameters": [ { @@ -294,7 +304,9 @@ "description": "Lists all the keys associated with this workspace. This includes keys for the storage account, app insights and password for container registry", "operationId": "Workspaces_ListKeys", "x-ms-examples": { - "List Workspace Keys": { "$ref": "./examples/listWorkspaceKeys.json" } + "List Workspace Keys": { + "$ref": "./examples/listWorkspaceKeys.json" + } }, "parameters": [ { @@ -334,7 +346,9 @@ "description": "Resync all the keys associated with this workspace. This includes keys for the storage account, app insights and password for container registry", "operationId": "Workspaces_ResyncKeys", "x-ms-examples": { - "Resync Workspace Keys": { "$ref": "./examples/resyncWorkspaceKeys.json" } + "Resync Workspace Keys": { + "$ref": "./examples/resyncWorkspaceKeys.json" + } }, "parameters": [ { @@ -371,7 +385,9 @@ "description": "Lists all the available machine learning workspaces under the specified subscription.", "operationId": "Workspaces_ListBySubscription", "x-ms-examples": { - "Get Workspaces by subscription": { "$ref": "./examples/getWorkspacesBySubscription.json" } + "Get Workspaces by subscription": { + "$ref": "./examples/getWorkspacesBySubscription.json" + } }, "parameters": [ { @@ -415,7 +431,9 @@ "operationId": "MachineLearningCompute_ListByWorkspace", "description": "Gets computes in specified workspace.", "x-ms-examples": { - "Get Computes": { "$ref": "./examples/getComputes.json" } + "Get Computes": { + "$ref": "./examples/getComputes.json" + } }, "parameters": [ { @@ -459,8 +477,12 @@ "operationId": "MachineLearningCompute_Get", "description": "Gets compute definition by its name. Any secrets (storage keys, service credentials, etc) are not returned - use 'keys' nested resource to get them.", "x-ms-examples": { - "Get a AKS Compute": { "$ref": "./examples/getAKSCompute.json" }, - "Get a BatchAI Compute": { "$ref": "./examples/getBatchAICompute.json" } + "Get a AKS Compute": { + "$ref": "./examples/getAKSCompute.json" + }, + "Get a BatchAI Compute": { + "$ref": "./examples/getBatchAICompute.json" + } }, "parameters": [ { @@ -503,11 +525,21 @@ "description": "Creates or updates compute. This call will overwrite a compute if it exists. This is a nonrecoverable operation. If your intent is to create a new compute, do a GET first to verify that it does not exist yet.", "x-ms-long-running-operation": true, "x-ms-examples": { - "Create a BatchAI Compute": { "$ref": "./examples/createBasicBatchAICompute.json" }, - "Create AKS Compute": { "$ref": "./examples/createBasicAKSCompute.json" }, - "Create a DataFactory Compute": { "$ref": "./examples/createBasicDataFactoryCompute.json" }, - "Update a BatchAI Compute": { "$ref": "./examples/updateBatchAICompute.json" }, - "Update a AKS Compute": { "$ref": "./examples/updateAKSCompute.json" } + "Create a BatchAI Compute": { + "$ref": "./examples/createBasicBatchAICompute.json" + }, + "Create AKS Compute": { + "$ref": "./examples/createBasicAKSCompute.json" + }, + "Create a DataFactory Compute": { + "$ref": "./examples/createBasicDataFactoryCompute.json" + }, + "Update a BatchAI Compute": { + "$ref": "./examples/updateBatchAICompute.json" + }, + "Update a AKS Compute": { + "$ref": "./examples/updateAKSCompute.json" + } }, "parameters": [ { @@ -565,7 +597,9 @@ "description": "Deletes specified Machine Learning compute.", "x-ms-long-running-operation": true, "x-ms-examples": { - "Delete Compute": { "$ref": "./examples/deleteCompute.json" } + "Delete Compute": { + "$ref": "./examples/deleteCompute.json" + } }, "parameters": [ { @@ -618,7 +652,9 @@ "description": "System Update On Machine Learning compute.", "x-ms-long-running-operation": true, "x-ms-examples": { - "System Update Compute": { "$ref": "./examples/systemUpdateCompute.json" } + "System Update Compute": { + "$ref": "./examples/systemUpdateCompute.json" + } }, "parameters": [ { @@ -672,8 +708,12 @@ "operationId": "MachineLearningCompute_ListKeys", "description": "Gets secrets related to Machine Learning compute (storage keys, service credentials, etc).", "x-ms-examples": { - "List AKS Compute Keys": { "$ref": "./examples/listKeysAKSCompute.json" }, - "List BatchAI Compute Keys": { "$ref": "./examples/listKeysAKSCompute.json" } + "List AKS Compute Keys": { + "$ref": "./examples/listKeysAKSCompute.json" + }, + "List BatchAI Compute Keys": { + "$ref": "./examples/listKeysAKSCompute.json" + } }, "parameters": [ { @@ -1106,7 +1146,7 @@ }, { "type": "object", - "properties":{ + "properties": { "properties": { "description": "Compute properties", "$ref": "#/definitions/Compute" diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicAKSCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicAKSCompute.json index c4cebeebb7d2..5abd75786f2e 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicAKSCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicAKSCompute.json @@ -1,44 +1,44 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19", - "parameters": { - "location": "eastus", - "properties": { - "computeType": "AKS" - } + "location": "eastus", + "properties": { + "computeType": "AKS" + } + } + }, + "responses": { + "200": { + "body": { + "id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "AKS", + "provisioningState": "Creating" } + } }, - "responses": { - "200": { - "body": { - "id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "AKS", - "provisioningState": "Creating" - } - } - }, - "201": { - "body": { - "id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "AKS", - "provisioningState": "Creating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + "201": { + "body": { + "id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "AKS", + "provisioningState": "Creating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicAmlCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicAmlCompute.json index 04727724e3c1..fcabd5e57cdc 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicAmlCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicAmlCompute.json @@ -1,53 +1,53 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19", - "parameters": { - "location": "eastus", - "properties": { - "computeType": "AmlCompute", - "properties": { - "vmSize": "STANDARD_NC6", - "vmPriority": "Dedicated", - "scaleSettings": { - "maxNodeCount": 1, - "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT5M" - } - } - } + "location": "eastus", + "properties": { + "computeType": "AmlCompute", + "properties": { + "vmSize": "STANDARD_NC6", + "vmPriority": "Dedicated", + "scaleSettings": { + "maxNodeCount": 1, + "minNodeCount": 0, + "nodeIdleTimeBeforeScaleDown": "PT5M" + } } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "AmlCompute", + "provisioningState": "Creating" + } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "AmlCompute", - "provisioningState": "Creating" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "AmlCompute", - "provisioningState": "Creating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "AmlCompute", + "provisioningState": "Creating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicDataFactoryCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicDataFactoryCompute.json index 554c24581345..0be750c0f1c4 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicDataFactoryCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createBasicDataFactoryCompute.json @@ -1,44 +1,44 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19", - "parameters": { - "location": "eastus", - "properties": { - "computeType": "DataFactory" - } + "location": "eastus", + "properties": { + "computeType": "DataFactory" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "DataFactory", + "provisioningState": "Creating" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "DataFactory", - "provisioningState": "Creating" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "computeType": "DataFactory", - "provisioningState": "Creating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "computeType": "DataFactory", + "provisioningState": "Creating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createWorkspace.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createWorkspace.json index 23e0378b8563..6a032335e30c 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createWorkspace.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/createWorkspace.json @@ -1,57 +1,57 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workspace-1234", + "workspaceName": "testworkspace", + "api-version": "2018-11-19", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workspace-1234", - "workspaceName": "testworkspace", - "api-version": "2018-11-19", - "parameters": { - "location": "eastus2euap", - "properties": { - "friendlyName": "HelloName", - "description": "test description", - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount" - } + "location": "eastus2euap", + "properties": { + "friendlyName": "HelloName", + "description": "test description", + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" } } -} \ No newline at end of file + } + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/deleteCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/deleteCompute.json index ff5e91c8a0fb..c3a92a6f0315 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/deleteCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/deleteCompute.json @@ -1,19 +1,19 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19", - "underlyingResourceAction": "Delete" - }, - "responses": { - "200": {}, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus...", - "Location": "https://management.azure.com/subscriptions/...pathToOperationResult..." - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19", + "underlyingResourceAction": "Delete" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus...", + "Location": "https://management.azure.com/subscriptions/...pathToOperationResult..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/deleteWorkspace.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/deleteWorkspace.json index 92d50dcc248a..df23a8b03400 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/deleteWorkspace.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/deleteWorkspace.json @@ -1,12 +1,12 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workspace-1234", - "workspaceName": "testworkspace", - "api-version": "2018-11-19" - }, - "responses": { - "200": {}, - "204": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workspace-1234", + "workspaceName": "testworkspace", + "api-version": "2018-11-19" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getAKSCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getAKSCompute.json index 64c1ec9062c1..0dfe733ecd46 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getAKSCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getAKSCompute.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", - "computeType": "AKS", - "provisioningState": "Succeeded" - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", + "computeType": "AKS", + "provisioningState": "Succeeded" } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getAmlCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getAmlCompute.json index a04b2a6ff011..7d80e0f73cde 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getAmlCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getAmlCompute.json @@ -1,48 +1,48 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus2", - "properties": { - "description": "some compute", - "computeType": "AmlCompute", - "createdOn": "2017-09-26T22:28:08.327Z", - "provisioningState": "Succeeded", - "properties": { - "vmSize": "STANDARD_NC6", - "vmPriority": "Dedicated", - "subnet": "test-subnet-resource-id", - "scaleSettings": { - "maxNodeCount": 1, - "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT5M" - }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2017-09-27T22:28:08.998Z", - "errors": null, - "currentNodeCount": 0, - "targetNodeCount": 1, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - } - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus2", + "properties": { + "description": "some compute", + "computeType": "AmlCompute", + "createdOn": "2017-09-26T22:28:08.327Z", + "provisioningState": "Succeeded", + "properties": { + "vmSize": "STANDARD_NC6", + "vmPriority": "Dedicated", + "subnet": "test-subnet-resource-id", + "scaleSettings": { + "maxNodeCount": 1, + "minNodeCount": 0, + "nodeIdleTimeBeforeScaleDown": "PT5M" + }, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2017-09-27T22:28:08.998Z", + "errors": null, + "currentNodeCount": 0, + "targetNodeCount": 1, + "nodeStateCounts": { + "preparingNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 0, + "unusableNodeCount": 0, + "leavingNodeCount": 0, + "preemptedNodeCount": 0 } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getComputes.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getComputes.json index 926a37304d52..a13a21654ea9 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getComputes.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getComputes.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "api-version": "2018-11-19" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", - "computeType": "AKS", - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute1234", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute1234", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute1234-56826-c9b00420020b2", - "computeType": "AKS", - "provisioningState": "Succeeded" - } - } - ], - "nextLink": "nextLink" + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "api-version": "2018-11-19" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", + "computeType": "AKS", + "provisioningState": "Succeeded" } - } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute1234", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute1234", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute1234-56826-c9b00420020b2", + "computeType": "AKS", + "provisioningState": "Succeeded" + } + } + ], + "nextLink": "nextLink" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspace.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspace.json index 4e240953146b..586fc19fd757 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspace.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspace.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workspace-1234", - "workspaceName": "testworkspace", - "api-version": "2018-11-19" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workspace-1234", + "workspaceName": "testworkspace", + "api-version": "2018-11-19" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" } } -} \ No newline at end of file + } + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspacesByResourceGroup.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspacesByResourceGroup.json index f3d2500a39d6..f309885452ef 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspacesByResourceGroup.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspacesByResourceGroup.json @@ -1,48 +1,48 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workspace-1234", - "api-version": "2018-11-19" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace1", - "name": "testworkspace1", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistryNew", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkvNew", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccountOld", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName 1", - "description": "test description" - } - } - ], - "nextLink": "nextLink" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workspace-1234", + "api-version": "2018-11-19" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace1", + "name": "testworkspace1", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistryNew", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkvNew", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccountOld", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName 1", + "description": "test description" + } + } + ], + "nextLink": "nextLink" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspacesBySubscription.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspacesBySubscription.json index ad423570e683..b637e867ee7e 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspacesBySubscription.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/getWorkspacesBySubscription.json @@ -1,47 +1,47 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "api-version": "2018-11-19" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-5678/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistryNew", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkvNew", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccountOld", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "HelloName", - "description": "test description" - } - } - ], - "nextLink": "nextLink" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "api-version": "2018-11-19" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-5678/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistryNew", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkvNew", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccountOld", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "HelloName", + "description": "test description" + } + } + ], + "nextLink": "nextLink" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listKeysAKSCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listKeysAKSCompute.json index 6558275db967..06ac141d408f 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listKeysAKSCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listKeysAKSCompute.json @@ -1,19 +1,19 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19" - }, - "responses": { - "200": { - "body": { - "computeType": "AKS", - "userKubeConfig": "user kube config...", - "adminKubeConfig": "admin kube config...", - "imagePullSecretName": "the image pull secret name" - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19" + }, + "responses": { + "200": { + "body": { + "computeType": "AKS", + "userKubeConfig": "user kube config...", + "adminKubeConfig": "admin kube config...", + "imagePullSecretName": "the image pull secret name" + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listKeysVirtualMachine.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listKeysVirtualMachine.json index 670cd7d3dd74..144f1608a036 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listKeysVirtualMachine.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listKeysVirtualMachine.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19" - }, - "responses": { - "200": { - "body": { - "computeType": "AKS", - "administratorAccount": { - "username": "the user name", - "password": "the password", - "publicKeyData": "public key...", - "privateKeyData": "private key..." - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19" + }, + "responses": { + "200": { + "body": { + "computeType": "AKS", + "administratorAccount": { + "username": "the user name", + "password": "the password", + "publicKeyData": "public key...", + "privateKeyData": "private key..." } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listWorkspaceKeys.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listWorkspaceKeys.json index c2dd79bc4175..7b9279c3a634 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listWorkspaceKeys.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/listWorkspaceKeys.json @@ -1,32 +1,31 @@ { - "parameters": { - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "api-version": "2018-11-19" - }, - "responses": { - "200": { - "body": + "parameters": { + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "api-version": "2018-11-19" + }, + "responses": { + "200": { + "body": { + "userStorageKey": "r5rKCJ018TLk+bdAi/9YaVzgcQ0nkLsUqGyUN03KsdCFtqG0SjFGPV8+vT1frWqkvBL0bGoPpLc1BlZSSaZmOA==", + "userStorageResourceId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/ragargeastus2euap/providers/Microsoft.Storage/storageAccounts/testdemoworkazashomr", + "appInsightsInstrumentationKey": null, + "containerRegistryCredentials": { + "location": null, + "username": "testdemoworkjmjmeykp", + "passwords": [ { - "userStorageKey": "r5rKCJ018TLk+bdAi/9YaVzgcQ0nkLsUqGyUN03KsdCFtqG0SjFGPV8+vT1frWqkvBL0bGoPpLc1BlZSSaZmOA==", - "userStorageResourceId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/ragargeastus2euap/providers/Microsoft.Storage/storageAccounts/testdemoworkazashomr", - "appInsightsInstrumentationKey": null, - "containerRegistryCredentials": { - "location": null, - "username": "testdemoworkjmjmeykp", - "passwords": [ - { - "name": "password", - "value": "vBvVhYgAGtUSewVCUv3w95p4/q5Yrsnw" - }, - { - "name": "password2", - "value": "0KARRQoQHSUq1yViPWg7YFernOS=Ic/t" - } - ] - } + "name": "password", + "value": "vBvVhYgAGtUSewVCUv3w95p4/q5Yrsnw" + }, + { + "name": "password2", + "value": "0KARRQoQHSUq1yViPWg7YFernOS=Ic/t" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/patchAmlCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/patchAmlCompute.json index dc7b4fdf12ce..75e344b65ee1 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/patchAmlCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/patchAmlCompute.json @@ -1,38 +1,38 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19", - "parameters": { - "properties": { - "properties": { - "scaleSettings": { - "maxNodeCount": 4, - "minNodeCount": 4, - "nodeIdleTimeBeforeScaleDown": "PT5M" - } - } - } + "properties": { + "properties": { + "scaleSettings": { + "maxNodeCount": 4, + "minNodeCount": 4, + "nodeIdleTimeBeforeScaleDown": "PT5M" + } } - }, - "responses": { - "202": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus2", - "properties": { - "description": "some compute", - "computeType": "AmlCompute", - "provisioningState": "Updating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + } + } + }, + "responses": { + "202": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus2", + "properties": { + "description": "some compute", + "computeType": "AmlCompute", + "provisioningState": "Updating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/resyncWorkspaceKeys.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/resyncWorkspaceKeys.json index 79684b2deee1..6a3e4d786d27 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/resyncWorkspaceKeys.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/resyncWorkspaceKeys.json @@ -1,13 +1,11 @@ { - "parameters": { - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "api-version": "2018-11-19" - }, - "responses": { - "200": { - - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "api-version": "2018-11-19" + }, + "responses": { + "200": {} + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/systemUpdateCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/systemUpdateCompute.json index c2f0b85ae924..367c2830fa12 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/systemUpdateCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/systemUpdateCompute.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19" - }, - "responses": { - "200": {}, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus...", - "Location": "https://management.azure.com/subscriptions/...pathToOperationResult..." - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus...", + "Location": "https://management.azure.com/subscriptions/...pathToOperationResult..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateAKSCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateAKSCompute.json index f2cb82862e2c..cf0a568baef6 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateAKSCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateAKSCompute.json @@ -1,54 +1,54 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19", - "parameters": { - "id": "compute123", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", - "computeType": "AKS", - "properties": { - "agentCount": 4 - } - } + "id": "compute123", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", + "computeType": "AKS", + "properties": { + "agentCount": 4 } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", + "computeType": "AKS", + "provisioningState": "Updating" + } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", - "computeType": "AKS", - "provisioningState": "Updating" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus", - "properties": { - "description": "some compute", - "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", - "computeType": "AKS", - "provisioningState": "Updating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus", + "properties": { + "description": "some compute", + "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", + "computeType": "AKS", + "provisioningState": "Updating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateAmlCompute.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateAmlCompute.json index e34a72e29c8d..760f79ab8979 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateAmlCompute.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateAmlCompute.json @@ -1,57 +1,57 @@ { + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "workspaceName": "workspaces123", + "computeName": "compute123", + "api-version": "2018-11-19", "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "workspaceName": "workspaces123", - "computeName": "compute123", - "api-version": "2018-11-19", - "parameters": { - "location": "eastus", - "properties": { - "computeType": "AmlCompute", - "properties": { - "description": "some compute", - "computeType": "AmlCompute", - "properties": { - "scaleSettings": { - "maxNodeCount": 4, - "minNodeCount": 4, - "nodeIdleTimeBeforeScaleDown": "PT5M" - } - } - } + "location": "eastus", + "properties": { + "computeType": "AmlCompute", + "properties": { + "description": "some compute", + "computeType": "AmlCompute", + "properties": { + "scaleSettings": { + "maxNodeCount": 4, + "minNodeCount": 4, + "nodeIdleTimeBeforeScaleDown": "PT5M" } + } } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus2", + "properties": { + "description": "some compute", + "computeType": "AmlCompute", + "provisioningState": "Updating" + } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus2", - "properties": { - "description": "some compute", - "computeType": "AmlCompute", - "provisioningState": "Updating" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", - "type": "Microsoft.MachineLearningServices/workspaces/computes", - "name": "compute123", - "location": "eastus2", - "properties": { - "description": "some compute", - "computeType": "AmlCompute", - "provisioningState": "Updating" - } - }, - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." - } + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "name": "compute123", + "location": "eastus2", + "properties": { + "description": "some compute", + "computeType": "AmlCompute", + "provisioningState": "Updating" } + }, + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." + } } -} \ No newline at end of file + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateWorkspace.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateWorkspace.json index c415abb0636b..9588187be115 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateWorkspace.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/examples/updateWorkspace.json @@ -1,34 +1,34 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workspace-1234", + "workspaceName": "testworkspace", + "api-version": "2018-11-19", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workspace-1234", - "workspaceName": "testworkspace", - "api-version": "2018-11-19", - "parameters": { - "properties": { - "friendlyName": "New friendly name", - "description": "new description" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", - "name": "testworkspace", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "properties": { - "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", - "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", - "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", - "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", - "discoveryUrl": "http://example.com", - "creationTime": "2017-03-01T23:14:37.0707808Z", - "friendlyName": "New friendly name", - "description": "new description" - } - } + "properties": { + "friendlyName": "New friendly name", + "description": "new description" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", + "name": "testworkspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "properties": { + "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", + "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", + "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", + "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", + "discoveryUrl": "http://example.com", + "creationTime": "2017-03-01T23:14:37.0707808Z", + "friendlyName": "New friendly name", + "description": "new description" } } -} \ No newline at end of file + } + } +} diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/machineLearningServices.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/machineLearningServices.json index 2b4c65b55399..f1aec5f6f590 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/machineLearningServices.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2018-11-19/machineLearningServices.json @@ -73,7 +73,9 @@ "description": "Gets the properties of the specified machine learning workspace.", "operationId": "Workspaces_Get", "x-ms-examples": { - "Get Workspace": { "$ref": "./examples/getWorkspace.json" } + "Get Workspace": { + "$ref": "./examples/getWorkspace.json" + } }, "parameters": [ { @@ -111,7 +113,9 @@ "description": "Creates or updates a workspace with the specified parameters.", "operationId": "Workspaces_CreateOrUpdate", "x-ms-examples": { - "Create Workspace": { "$ref": "./examples/createWorkspace.json" } + "Create Workspace": { + "$ref": "./examples/createWorkspace.json" + } }, "parameters": [ { @@ -164,7 +168,9 @@ "description": "Deletes a machine learning workspace.", "operationId": "Workspaces_Delete", "x-ms-examples": { - "Delete Workspace": { "$ref": "./examples/deleteWorkspace.json" } + "Delete Workspace": { + "$ref": "./examples/deleteWorkspace.json" + } }, "parameters": [ { @@ -202,7 +208,9 @@ "description": "Updates a machine learning workspace with the specified parameters.", "operationId": "Workspaces_Update", "x-ms-examples": { - "Update Workspace": { "$ref": "./examples/updateWorkspace.json" } + "Update Workspace": { + "$ref": "./examples/updateWorkspace.json" + } }, "parameters": [ { @@ -251,7 +259,9 @@ "description": "Lists all the available machine learning workspaces under the specified resource group.", "operationId": "Workspaces_ListByResourceGroup", "x-ms-examples": { - "Get Workspaces by Resource Group": { "$ref": "./examples/getWorkspacesByResourceGroup.json" } + "Get Workspaces by Resource Group": { + "$ref": "./examples/getWorkspacesByResourceGroup.json" + } }, "parameters": [ { @@ -294,7 +304,9 @@ "description": "Lists all the keys associated with this workspace. This includes keys for the storage account, app insights and password for container registry", "operationId": "Workspaces_ListKeys", "x-ms-examples": { - "List Workspace Keys": { "$ref": "./examples/listWorkspaceKeys.json" } + "List Workspace Keys": { + "$ref": "./examples/listWorkspaceKeys.json" + } }, "parameters": [ { @@ -334,7 +346,9 @@ "description": "Resync all the keys associated with this workspace. This includes keys for the storage account, app insights and password for container registry", "operationId": "Workspaces_ResyncKeys", "x-ms-examples": { - "Resync Workspace Keys": { "$ref": "./examples/resyncWorkspaceKeys.json" } + "Resync Workspace Keys": { + "$ref": "./examples/resyncWorkspaceKeys.json" + } }, "parameters": [ { @@ -448,7 +462,9 @@ "description": "Lists all the available machine learning workspaces under the specified subscription.", "operationId": "Workspaces_ListBySubscription", "x-ms-examples": { - "Get Workspaces by subscription": { "$ref": "./examples/getWorkspacesBySubscription.json" } + "Get Workspaces by subscription": { + "$ref": "./examples/getWorkspacesBySubscription.json" + } }, "parameters": [ { @@ -492,7 +508,9 @@ "operationId": "MachineLearningCompute_ListByWorkspace", "description": "Gets computes in specified workspace.", "x-ms-examples": { - "Get Computes": { "$ref": "./examples/getComputes.json" } + "Get Computes": { + "$ref": "./examples/getComputes.json" + } }, "parameters": [ { @@ -536,8 +554,12 @@ "operationId": "MachineLearningCompute_Get", "description": "Gets compute definition by its name. Any secrets (storage keys, service credentials, etc) are not returned - use 'keys' nested resource to get them.", "x-ms-examples": { - "Get a AKS Compute": { "$ref": "./examples/getAKSCompute.json" }, - "Get a AML Compute": { "$ref": "./examples/getAmlCompute.json" } + "Get a AKS Compute": { + "$ref": "./examples/getAKSCompute.json" + }, + "Get a AML Compute": { + "$ref": "./examples/getAmlCompute.json" + } }, "parameters": [ { @@ -580,11 +602,21 @@ "description": "Creates or updates compute. This call will overwrite a compute if it exists. This is a nonrecoverable operation. If your intent is to create a new compute, do a GET first to verify that it does not exist yet.", "x-ms-long-running-operation": true, "x-ms-examples": { - "Create a AML Compute": { "$ref": "./examples/createBasicAmlCompute.json" }, - "Create AKS Compute": { "$ref": "./examples/createBasicAKSCompute.json" }, - "Create a DataFactory Compute": { "$ref": "./examples/createBasicDataFactoryCompute.json" }, - "Update a AML Compute": { "$ref": "./examples/updateAmlCompute.json" }, - "Update a AKS Compute": { "$ref": "./examples/updateAKSCompute.json" } + "Create a AML Compute": { + "$ref": "./examples/createBasicAmlCompute.json" + }, + "Create AKS Compute": { + "$ref": "./examples/createBasicAKSCompute.json" + }, + "Create a DataFactory Compute": { + "$ref": "./examples/createBasicDataFactoryCompute.json" + }, + "Update a AML Compute": { + "$ref": "./examples/updateAmlCompute.json" + }, + "Update a AKS Compute": { + "$ref": "./examples/updateAKSCompute.json" + } }, "parameters": [ { @@ -642,7 +674,9 @@ "description": "Updates properties of a compute. This call will overwrite a compute if it exists. This is a nonrecoverable operation.", "x-ms-long-running-operation": true, "x-ms-examples": { - "Update a AmlCompute Compute": { "$ref": "./examples/patchAmlCompute.json" } + "Update a AmlCompute Compute": { + "$ref": "./examples/patchAmlCompute.json" + } }, "parameters": [ { @@ -694,7 +728,9 @@ "description": "Deletes specified Machine Learning compute.", "x-ms-long-running-operation": true, "x-ms-examples": { - "Delete Compute": { "$ref": "./examples/deleteCompute.json" } + "Delete Compute": { + "$ref": "./examples/deleteCompute.json" + } }, "parameters": [ { @@ -799,7 +835,9 @@ "operationId": "MachineLearningCompute_ListKeys", "description": "Gets secrets related to Machine Learning compute (storage keys, service credentials, etc).", "x-ms-examples": { - "List AKS Compute Keys": { "$ref": "./examples/listKeysAKSCompute.json" } + "List AKS Compute Keys": { + "$ref": "./examples/listKeysAKSCompute.json" + } }, "parameters": [ { @@ -931,7 +969,7 @@ "modelAsString": true }, "x-ms-parameter-location": "method" -} + } }, "definitions": { "Operation": { @@ -1393,7 +1431,7 @@ }, { "type": "object", - "properties":{ + "properties": { "properties": { "description": "Compute properties", "$ref": "#/definitions/Compute" @@ -1559,9 +1597,9 @@ "$ref": "#/definitions/UserAccountCredentials" }, "subnet": { - "title": "Subnet.", - "description": "Virtual network subnet resource ID the compute nodes belong to.", - "$ref": "#/definitions/ResourceId" + "title": "Subnet.", + "description": "Virtual network subnet resource ID the compute nodes belong to.", + "$ref": "#/definitions/ResourceId" }, "allocationState": { "type": "string", @@ -1590,7 +1628,7 @@ "description": "Collection of errors encountered by various compute nodes during node setup.", "type": "array", "items": { - "$ref": "#/definitions/MachineLearningServiceError" + "$ref": "#/definitions/MachineLearningServiceError" } }, "currentNodeCount": { diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/CheckNameAvailability.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/CheckNameAvailability.json index 81ee354035c0..8698804befdc 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/CheckNameAvailability.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/CheckNameAvailability.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationCreateOrUpdate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationCreateOrUpdate.json index 084be8873d75..be36388c313d 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationCreateOrUpdate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationCreateOrUpdate.json @@ -6,7 +6,7 @@ "api-version": "2018-06-01-preview", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ + "properties": { "value": "off", "source": "user-override" } @@ -30,4 +30,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationGet.json index c86a15752b67..6ef1f5fc04de 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationGet.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationListByServer.json index e17eb29e1310..01fa68bfa33a 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ConfigurationListByServer.json @@ -598,4 +598,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseCreate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseCreate.json index 5cbd8be4c95c..63778e737c84 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseCreate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseCreate.json @@ -6,9 +6,9 @@ "api-version": "2018-06-01-preview", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "charset":"utf8", - "collation":"utf8_general_ci" + "properties": { + "charset": "utf8", + "collation": "utf8_general_ci" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseDelete.json index 7f513cbc3631..594cd7a4d947 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseGet.json index ad3e04ba91b0..6957b23797c0 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseListByServer.json index 433d9de6239e..319ac4834850 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/DatabaseListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleCreate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleCreate.json index 478f32bcca6f..be8e9786c23c 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleCreate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleCreate.json @@ -6,9 +6,9 @@ "api-version": "2018-06-01-preview", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "startIpAddress":"0.0.0.0", - "endIpAddress":"255.255.255.255" + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "255.255.255.255" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleDelete.json index b7efa2274f97..31ff7475182f 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleGet.json index 8ea6c060589a..991ef3c7a9f8 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleListByServer.json index 19ebb8a151ba..604c5203d79b 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/FirewallRuleListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/LogFileListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/LogFileListByServer.json index 9ca3b1a251d2..ce869d6e41d8 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/LogFileListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/LogFileListByServer.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/OperationList.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/OperationList.json index 128dbb34efc9..245c99392370 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/OperationList.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/OperationList.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/PerformanceTiersListByLocation.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/PerformanceTiersListByLocation.json index eb15a29cb5fc..ba773d87b696 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/PerformanceTiersListByLocation.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/PerformanceTiersListByLocation.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ReplicasListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ReplicasListByServer.json index e5deac0bb9aa..a46ef1141d13 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ReplicasListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ReplicasListByServer.json @@ -30,7 +30,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver.mariadb.database.azure.com", "version": "5.6", @@ -48,7 +48,7 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", @@ -61,7 +61,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver1.mariadb.database.azure.com", "version": "5.6", @@ -79,20 +79,20 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", "capacity": 2 }, - "properties": { + "properties": { "storageProfile": { "storageMB": 256000, "backupRetentionDays": 35, "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver2.mariadb.database.azure.com", "version": "5.6", @@ -106,4 +106,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreate.json index 1184ddb9c90a..b39e8dd93a1c 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreate.json @@ -91,4 +91,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreateGeoRestoreMode.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreateGeoRestoreMode.json index a576d4673980..88a73cd8bf8c 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreateGeoRestoreMode.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreateGeoRestoreMode.json @@ -1,87 +1,87 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2018-06-01-preview", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2018-06-01-preview", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "westus", - "properties": { - "createMode": "GeoRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "westus", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers" - } + "location": "westus", + "properties": { + "createMode": "GeoRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers", - "location": "westus", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "westus", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers", + "location": "westus", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreatePointInTimeRestore.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreatePointInTimeRestore.json index e4222b136323..432ff0d3a129 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreatePointInTimeRestore.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreatePointInTimeRestore.json @@ -1,88 +1,88 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2018-06-01-preview", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2018-06-01-preview", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "brazilsouth", - "properties": { - "restorePointInTime": "2017-12-14T00:00:37.467Z", - "createMode": "PointInTimeRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "brazilsouth", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers" - } + "location": "brazilsouth", + "properties": { + "restorePointInTime": "2017-12-14T00:00:37.467Z", + "createMode": "PointInTimeRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers", - "location": "brazilsouth", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "brazilsouth", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers", + "location": "brazilsouth", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreateReplicaMode.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreateReplicaMode.json index 171406e889c5..8335290219be 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreateReplicaMode.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerCreateReplicaMode.json @@ -81,4 +81,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerDelete.json index 2d3015f935d6..6a86cec544ed 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerGet.json index 4ae14f56fadb..b4086096f776 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerList.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerList.json index 18bdcddc5016..8e7b0a20fab1 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerList.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerList.json @@ -86,4 +86,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerListByResourceGroup.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerListByResourceGroup.json index 08b101192192..9062e828c299 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerListByResourceGroup.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerListByResourceGroup.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerRestart.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerRestart.json index 25b3cbbc7cfc..8a6eec64860e 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerRestart.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerRestart.json @@ -1,12 +1,12 @@ { - "parameters": { - "serverName": "testserver", - "resourceGroupName": "TestGroup", - "api-version": "2018-06-01-preview", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" - }, - "responses": { - "200": {}, - "202": {} - } - } \ No newline at end of file + "parameters": { + "serverName": "testserver", + "resourceGroupName": "TestGroup", + "api-version": "2018-06-01-preview", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsCreateMax.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsCreateMax.json index 37e7bf3decc1..dd25e366fa0e 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsCreateMax.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsCreateMax.json @@ -1,39 +1,48 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2018-06-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2018-06-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 5, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsCreateMin.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsCreateMin.json index adc54a788662..2f9902071d37 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsCreateMin.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsCreateMin.json @@ -1,34 +1,33 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2018-06-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2018-06-01-preview", - "parameters": { - "properties": { - "state": "Disabled", - "emailAccountAdmins": true - } + "properties": { + "state": "Disabled", + "emailAccountAdmins": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageEndpoint": "" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageEndpoint": "" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsGet.json index acac76e14846..0c0b4cb90e4a 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerSecurityAlertsGet.json @@ -1,26 +1,30 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "emailAddresses": [ "test@microsoft.com;user@microsoft.com" ], - "disabledAlerts": ["Access_Anomaly"], - "retentionDays": 0, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "test@microsoft.com;user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly" + ], + "retentionDays": 0, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } } -} \ No newline at end of file + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerUpdate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerUpdate.json index 38798615afa3..66b86a6813ab 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerUpdate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/ServerUpdate.json @@ -44,4 +44,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json index f53ee5aec0d0..67b3b0a39cc3 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json @@ -6,35 +6,35 @@ "virtualNetworkRuleName": "vnet-firewall-rule", "api-version": "2018-06-01-preview", "parameters": { - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } } }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "202": {} + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesDelete.json index d42649fe262c..c5ea31cb57b0 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesDelete.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "resourceGroupName": "TestGroup", - "serverName": "vnet-test-svr", - "virtualNetworkRuleName": "vnet-firewall-rule", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "parameters": { + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", + "resourceGroupName": "TestGroup", + "serverName": "vnet-test-svr", + "virtualNetworkRuleName": "vnet-firewall-rule", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": "" + }, + "202": { + "body": "" + }, + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesGet.json index ded4809766aa..27ac4ff55177 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesGet.json @@ -7,17 +7,17 @@ "api-version": "2018-06-01-preview" }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesList.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesList.json index 331b5aa3f027..bcaba4c0368d 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesList.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/examples/VirtualNetworkRulesList.json @@ -7,31 +7,31 @@ "api-version": "2018-06-01-preview" }, "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - }, - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - ] - } + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + }, + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/mariadb.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/mariadb.json index c71cc25e2aae..5a391f81e5cf 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/mariadb.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/mariadb.json @@ -44,8 +44,8 @@ "Create a new server": { "$ref": "./examples/ServerCreate.json" }, - "Create a database as a point in time restore":{ - "$ref":"./examples/ServerCreatePointInTimeRestore.json" + "Create a database as a point in time restore": { + "$ref": "./examples/ServerCreatePointInTimeRestore.json" }, "Create a server as a geo restore ": { "$ref": "./examples/ServerCreateGeoRestoreMode.json" @@ -293,7 +293,9 @@ ], "operationId": "Servers_Restart", "x-ms-examples": { - "ServerRestart": { "$ref": "./examples/ServerRestart.json" } + "ServerRestart": { + "$ref": "./examples/ServerRestart.json" + } }, "description": "Restarts a server.", "parameters": [ @@ -326,7 +328,7 @@ }, "x-ms-long-running-operation": true } - }, + }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/replicas": { "get": { "tags": [ @@ -1347,7 +1349,7 @@ "x-ms-mutability": [ "read", "create" - ], + ], "description": "The location the resource resides in." }, "tags": { @@ -1447,7 +1449,7 @@ "format": "int32", "description": "Max storage allowed for a server." }, - "storageAutogrow" : { + "storageAutogrow": { "type": "string", "description": "Enable Storage Auto Grow.", "enum": [ @@ -2276,7 +2278,7 @@ } }, "description": "An error response from the Batch service." - } + } }, "parameters": { "SubscriptionIdParameter": { @@ -2361,4 +2363,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/CheckNameAvailability.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/CheckNameAvailability.json index d547976bab99..31ab6da04c11 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/CheckNameAvailability.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/CheckNameAvailability.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationCreateOrUpdate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationCreateOrUpdate.json index be1a20a77a7a..65cf3730b1b6 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationCreateOrUpdate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationCreateOrUpdate.json @@ -6,7 +6,7 @@ "api-version": "2018-06-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ + "properties": { "value": "off", "source": "user-override" } @@ -30,4 +30,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationGet.json index c742fb75969e..ee378a2516d7 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationGet.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationListByServer.json index 9d6f937021cf..409fd331305d 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ConfigurationListByServer.json @@ -598,4 +598,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseCreate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseCreate.json index 0b0ffa2b8276..d4ccabe39680 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseCreate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseCreate.json @@ -6,9 +6,9 @@ "api-version": "2018-06-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "charset":"utf8", - "collation":"utf8_general_ci" + "properties": { + "charset": "utf8", + "collation": "utf8_general_ci" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseDelete.json index 8fb3bae30a47..d1d52f99130c 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseGet.json index 9a48aa456d70..37c971e32133 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseListByServer.json index 0307a92f626f..ecd533b78bcd 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/DatabaseListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleCreate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleCreate.json index a788d945e9e0..9a416423697d 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleCreate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleCreate.json @@ -6,9 +6,9 @@ "api-version": "2018-06-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "startIpAddress":"0.0.0.0", - "endIpAddress":"255.255.255.255" + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "255.255.255.255" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleDelete.json index 322a072c0209..a3891fa434de 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleGet.json index e073fbc225d4..70f794d4e226 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleListByServer.json index 7231a5428143..df35f93f8cc6 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/FirewallRuleListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/LogFileListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/LogFileListByServer.json index 89bf4bb4a8fe..7c961f4d9139 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/LogFileListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/LogFileListByServer.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/OperationList.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/OperationList.json index 5fee21cd2548..e5d4c6992f3f 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/OperationList.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/OperationList.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/PerformanceTiersListByLocation.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/PerformanceTiersListByLocation.json index d6c217745b17..bd4e7a26607e 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/PerformanceTiersListByLocation.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/PerformanceTiersListByLocation.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/QueryTextsListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/QueryTextsListByServer.json index decd570c9a8d..9a2ad8e212ac 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/QueryTextsListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/QueryTextsListByServer.json @@ -4,7 +4,10 @@ "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "resourceGroupName": "testResourceGroupName", "serverName": "testServerName", - "queryIds": [ "1", "2" ] + "queryIds": [ + "1", + "2" + ] }, "responses": { "200": { diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/RecommendedActionSessionCreate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/RecommendedActionSessionCreate.json index 6a501bd5ceab..e127d2619fb9 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/RecommendedActionSessionCreate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/RecommendedActionSessionCreate.json @@ -1,14 +1,14 @@ { - "parameters": { - "api-version": "2018-06-01-privatepreview", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "resourceGroupName": "testResourceGroupName", - "serverName": "testServerName", - "advisorName": "Index", - "databaseName": "someDatabaseName" - }, - "responses": { - "200": {}, - "202": {} - } + "parameters": { + "api-version": "2018-06-01-privatepreview", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", + "resourceGroupName": "testResourceGroupName", + "serverName": "testServerName", + "advisorName": "Index", + "databaseName": "someDatabaseName" + }, + "responses": { + "200": {}, + "202": {} } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ReplicasListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ReplicasListByServer.json index 9679de879c33..dbff8b3c4e89 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ReplicasListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ReplicasListByServer.json @@ -30,7 +30,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver.mariadb.database.azure.com", "version": "5.6", @@ -48,7 +48,7 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", @@ -61,7 +61,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver1.mariadb.database.azure.com", "version": "5.6", @@ -79,20 +79,20 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", "capacity": 2 }, - "properties": { + "properties": { "storageProfile": { "storageMB": 256000, "backupRetentionDays": 35, "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver2.mariadb.database.azure.com", "version": "5.6", @@ -106,4 +106,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreate.json index c25bf15f2430..adcaa150fbcb 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreate.json @@ -91,4 +91,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreateGeoRestoreMode.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreateGeoRestoreMode.json index c8f33b2ee7a5..b352e68e5f10 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreateGeoRestoreMode.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreateGeoRestoreMode.json @@ -1,87 +1,87 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2018-06-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2018-06-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "westus", - "properties": { - "createMode": "GeoRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "westus", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers" - } + "location": "westus", + "properties": { + "createMode": "GeoRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers", - "location": "westus", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "westus", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers", + "location": "westus", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreatePointInTimeRestore.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreatePointInTimeRestore.json index e8791c551045..05f6fdc02bbd 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreatePointInTimeRestore.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreatePointInTimeRestore.json @@ -1,88 +1,88 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2018-06-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2018-06-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "brazilsouth", - "properties": { - "restorePointInTime": "2017-12-14T00:00:37.467Z", - "createMode": "PointInTimeRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "brazilsouth", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers" - } + "location": "brazilsouth", + "properties": { + "restorePointInTime": "2017-12-14T00:00:37.467Z", + "createMode": "PointInTimeRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers", - "location": "brazilsouth", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "brazilsouth", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers", + "location": "brazilsouth", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreateReplicaMode.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreateReplicaMode.json index f60da39a2c06..fd00d428392f 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreateReplicaMode.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerCreateReplicaMode.json @@ -81,4 +81,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerDelete.json index 2a1ad22df63e..f1950541bfd0 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerGet.json index 97bad474fe4b..fb8fdea3d1f7 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerList.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerList.json index d5c2e5d0ccb3..de7b622078e6 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerList.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerList.json @@ -86,4 +86,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerListByResourceGroup.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerListByResourceGroup.json index 07c4f381084f..7331423f71cd 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerListByResourceGroup.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerListByResourceGroup.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerRestart.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerRestart.json index 3a6333f8febc..3b08fa5928f2 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerRestart.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerRestart.json @@ -1,12 +1,12 @@ { - "parameters": { - "serverName": "testserver", - "resourceGroupName": "TestGroup", - "api-version": "2018-06-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" - }, - "responses": { - "200": {}, - "202": {} - } - } \ No newline at end of file + "parameters": { + "serverName": "testserver", + "resourceGroupName": "TestGroup", + "api-version": "2018-06-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMax.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMax.json index ddd2caa7654b..36f74c0cf8a9 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMax.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMax.json @@ -1,39 +1,48 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2018-06-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2018-06-01", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 5, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMin.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMin.json index 704fcf37b4f3..e55f7fa38330 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMin.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMin.json @@ -1,34 +1,33 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2018-06-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2018-06-01", - "parameters": { - "properties": { - "state": "Disabled", - "emailAccountAdmins": true - } + "properties": { + "state": "Disabled", + "emailAccountAdmins": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageEndpoint": "" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageEndpoint": "" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsGet.json index 6c7833d4d89c..749cbe317f46 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsGet.json @@ -1,26 +1,30 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2018-06-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "emailAddresses": [ "test@microsoft.com;user@microsoft.com" ], - "disabledAlerts": ["Access_Anomaly"], - "retentionDays": 0, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "test@microsoft.com;user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly" + ], + "retentionDays": 0, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } } -} \ No newline at end of file + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerUpdate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerUpdate.json index 046eed085de4..cc84bc925628 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerUpdate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/ServerUpdate.json @@ -44,4 +44,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsGet.json index 87305a2a3432..25cf6245e6e1 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsGet.json @@ -13,19 +13,19 @@ "name": "66-636923268000000000-636923277000000000-avg-duration", "type": "Microsoft.DBforMariaDB/servers/queryStatistics", "properties": { - "aggregationFunction" : "avg", + "aggregationFunction": "avg", "databaseNames": [ "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testResourceGroupName/providers/Microsoft.DBforMariaDB/servers/testServerName/databases/mariadb" ], "startTime": "2019-05-01T17:00:00Z", "endTime": "2019-05-01T17:15:00Z", - "metricDisplayName":"Query duration", + "metricDisplayName": "Query duration", "metricName": "duration", "metricValue": 123.301446136, "metricValueUnit": "milliseconds", "queryExecutionCount": 1, "queryId": "66" - } + } } } } diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsListByServer.json index 3315678eca8f..05e1f9515e13 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsListByServer.json @@ -24,13 +24,13 @@ "name": "66-636923268000000000-636923277000000000-avg-duration", "type": "Microsoft.DBforMariaDB/servers/queryStatistics", "properties": { - "aggregationFunction" : "avg", + "aggregationFunction": "avg", "databaseNames": [ "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testResourceGroupName/providers/Microsoft.DBforMariaDB/servers/testServerName/databases/mariadb" ], "startTime": "2019-05-01T17:00:00Z", "endTime": "2019-05-01T17:15:00Z", - "metricDisplayName":"Query duration", + "metricDisplayName": "Query duration", "metricName": "duration", "metricValue": 123.301446136, "metricValueUnit": "milliseconds", @@ -43,13 +43,13 @@ "name": "66-636924483000000000-636924492000000000-avg-duration", "type": "Microsoft.DBforMariaDB/servers/queryStatistics", "properties": { - "aggregationFunction" : "avg", + "aggregationFunction": "avg", "databaseNames": [ "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testResourceGroupName/providers/Microsoft.DBforMariaDB/servers/testServerName/databases/mariadb" ], "startTime": "2019-05-03T02:45:00Z", "endTime": "2019-05-03T03:00:00Z", - "metricDisplayName":"Query duration", + "metricDisplayName": "Query duration", "metricName": "duration", "metricValue": 1712.301446136, "metricValueUnit": "milliseconds", diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesCreateOrUpdate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesCreateOrUpdate.json index 2df814ab4133..f4ba671f2acc 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesCreateOrUpdate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesCreateOrUpdate.json @@ -6,35 +6,35 @@ "virtualNetworkRuleName": "vnet-firewall-rule", "api-version": "2018-06-01", "parameters": { - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } } }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "202": {} + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesDelete.json index 25b007c52c42..cfb5339892be 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesDelete.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "resourceGroupName": "TestGroup", - "serverName": "vnet-test-svr", - "virtualNetworkRuleName": "vnet-firewall-rule", - "api-version": "2018-06-01" - }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "parameters": { + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", + "resourceGroupName": "TestGroup", + "serverName": "vnet-test-svr", + "virtualNetworkRuleName": "vnet-firewall-rule", + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "body": "" + }, + "202": { + "body": "" + }, + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesGet.json index 1b97f04ccc5a..72eb33edf92a 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesGet.json @@ -7,17 +7,17 @@ "api-version": "2018-06-01" }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesList.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesList.json index e3ea4b632c8e..b55e9fb25c45 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesList.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesList.json @@ -7,31 +7,31 @@ "api-version": "2018-06-01" }, "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - }, - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - ] - } + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + }, + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/mariadb.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/mariadb.json index 237172365fc3..bb7ed03ce2ba 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/mariadb.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-privatepreview/mariadb.json @@ -45,7 +45,7 @@ "$ref": "./examples/ServerCreate.json" }, "Create a database as a point in time restore": { - "$ref":"./examples/ServerCreatePointInTimeRestore.json" + "$ref": "./examples/ServerCreatePointInTimeRestore.json" }, "Create a server as a geo restore ": { "$ref": "./examples/ServerCreateGeoRestoreMode.json" @@ -293,7 +293,9 @@ ], "operationId": "Servers_Restart", "x-ms-examples": { - "ServerRestart": { "$ref": "./examples/ServerRestart.json" } + "ServerRestart": { + "$ref": "./examples/ServerRestart.json" + } }, "description": "Restarts a server.", "parameters": [ @@ -1907,7 +1909,7 @@ "x-ms-mutability": [ "read", "create" - ], + ], "description": "The location the resource resides in." }, "tags": { @@ -2007,7 +2009,7 @@ "format": "int32", "description": "Max storage allowed for a server." }, - "storageAutogrow" : { + "storageAutogrow": { "type": "string", "description": "Enable Storage Auto Grow.", "enum": [ @@ -3142,8 +3144,7 @@ } }, "AdvisorProperties": { - "properties": { - }, + "properties": {}, "description": "The properties of a recommendation action advisor." }, "Advisor": { diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/CheckNameAvailability.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/CheckNameAvailability.json index d547976bab99..31ab6da04c11 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/CheckNameAvailability.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/CheckNameAvailability.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationCreateOrUpdate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationCreateOrUpdate.json index be1a20a77a7a..65cf3730b1b6 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationCreateOrUpdate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationCreateOrUpdate.json @@ -6,7 +6,7 @@ "api-version": "2018-06-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ + "properties": { "value": "off", "source": "user-override" } @@ -30,4 +30,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationGet.json index c742fb75969e..ee378a2516d7 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationGet.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationListByServer.json index 9d6f937021cf..409fd331305d 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ConfigurationListByServer.json @@ -598,4 +598,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseCreate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseCreate.json index 0b0ffa2b8276..d4ccabe39680 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseCreate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseCreate.json @@ -6,9 +6,9 @@ "api-version": "2018-06-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "charset":"utf8", - "collation":"utf8_general_ci" + "properties": { + "charset": "utf8", + "collation": "utf8_general_ci" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseDelete.json index 8fb3bae30a47..d1d52f99130c 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseGet.json index 9a48aa456d70..37c971e32133 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseListByServer.json index 0307a92f626f..ecd533b78bcd 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/DatabaseListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleCreate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleCreate.json index a788d945e9e0..9a416423697d 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleCreate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleCreate.json @@ -6,9 +6,9 @@ "api-version": "2018-06-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "startIpAddress":"0.0.0.0", - "endIpAddress":"255.255.255.255" + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "255.255.255.255" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleDelete.json index 322a072c0209..a3891fa434de 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleGet.json index e073fbc225d4..70f794d4e226 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleListByServer.json index 7231a5428143..df35f93f8cc6 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/FirewallRuleListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/LogFileListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/LogFileListByServer.json index 89bf4bb4a8fe..7c961f4d9139 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/LogFileListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/LogFileListByServer.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/OperationList.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/OperationList.json index 5fee21cd2548..e5d4c6992f3f 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/OperationList.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/OperationList.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/PerformanceTiersListByLocation.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/PerformanceTiersListByLocation.json index d6c217745b17..bd4e7a26607e 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/PerformanceTiersListByLocation.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/PerformanceTiersListByLocation.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ReplicasListByServer.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ReplicasListByServer.json index 9679de879c33..dbff8b3c4e89 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ReplicasListByServer.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ReplicasListByServer.json @@ -30,7 +30,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver.mariadb.database.azure.com", "version": "5.6", @@ -48,7 +48,7 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", @@ -61,7 +61,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver1.mariadb.database.azure.com", "version": "5.6", @@ -79,20 +79,20 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", "capacity": 2 }, - "properties": { + "properties": { "storageProfile": { "storageMB": 256000, "backupRetentionDays": 35, "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver2.mariadb.database.azure.com", "version": "5.6", @@ -106,4 +106,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreate.json index c25bf15f2430..adcaa150fbcb 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreate.json @@ -91,4 +91,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreateGeoRestoreMode.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreateGeoRestoreMode.json index c8f33b2ee7a5..b352e68e5f10 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreateGeoRestoreMode.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreateGeoRestoreMode.json @@ -1,87 +1,87 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2018-06-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2018-06-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "westus", - "properties": { - "createMode": "GeoRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "westus", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers" - } + "location": "westus", + "properties": { + "createMode": "GeoRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers", - "location": "westus", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "westus", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers", + "location": "westus", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreatePointInTimeRestore.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreatePointInTimeRestore.json index e8791c551045..05f6fdc02bbd 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreatePointInTimeRestore.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreatePointInTimeRestore.json @@ -1,88 +1,88 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2018-06-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2018-06-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "brazilsouth", - "properties": { - "restorePointInTime": "2017-12-14T00:00:37.467Z", - "createMode": "PointInTimeRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "brazilsouth", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers" - } + "location": "brazilsouth", + "properties": { + "restorePointInTime": "2017-12-14T00:00:37.467Z", + "createMode": "PointInTimeRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMariaDB/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMariaDB/servers", - "location": "brazilsouth", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "brazilsouth", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMariaDB/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMariaDB/servers", + "location": "brazilsouth", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mariadb.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreateReplicaMode.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreateReplicaMode.json index f60da39a2c06..fd00d428392f 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreateReplicaMode.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerCreateReplicaMode.json @@ -81,4 +81,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerDelete.json index 2a1ad22df63e..f1950541bfd0 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerGet.json index 97bad474fe4b..fb8fdea3d1f7 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerList.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerList.json index d5c2e5d0ccb3..de7b622078e6 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerList.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerList.json @@ -86,4 +86,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerListByResourceGroup.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerListByResourceGroup.json index 07c4f381084f..7331423f71cd 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerListByResourceGroup.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerListByResourceGroup.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerRestart.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerRestart.json index 3a6333f8febc..3b08fa5928f2 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerRestart.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerRestart.json @@ -1,12 +1,12 @@ { - "parameters": { - "serverName": "testserver", - "resourceGroupName": "TestGroup", - "api-version": "2018-06-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" - }, - "responses": { - "200": {}, - "202": {} - } - } \ No newline at end of file + "parameters": { + "serverName": "testserver", + "resourceGroupName": "TestGroup", + "api-version": "2018-06-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsCreateMax.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsCreateMax.json index ddd2caa7654b..36f74c0cf8a9 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsCreateMax.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsCreateMax.json @@ -1,39 +1,48 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2018-06-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2018-06-01", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 5, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsCreateMin.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsCreateMin.json index 704fcf37b4f3..e55f7fa38330 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsCreateMin.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsCreateMin.json @@ -1,34 +1,33 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2018-06-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2018-06-01", - "parameters": { - "properties": { - "state": "Disabled", - "emailAccountAdmins": true - } + "properties": { + "state": "Disabled", + "emailAccountAdmins": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageEndpoint": "" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageEndpoint": "" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsGet.json index 6c7833d4d89c..749cbe317f46 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerSecurityAlertsGet.json @@ -1,26 +1,30 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2018-06-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "emailAddresses": [ "test@microsoft.com;user@microsoft.com" ], - "disabledAlerts": ["Access_Anomaly"], - "retentionDays": 0, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMariaDB/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMariaDB/servers/securityAlertPolicies", + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "test@microsoft.com;user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly" + ], + "retentionDays": 0, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } } -} \ No newline at end of file + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerUpdate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerUpdate.json index 046eed085de4..cc84bc925628 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerUpdate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/ServerUpdate.json @@ -44,4 +44,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesCreateOrUpdate.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesCreateOrUpdate.json index 2df814ab4133..f4ba671f2acc 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesCreateOrUpdate.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesCreateOrUpdate.json @@ -6,35 +6,35 @@ "virtualNetworkRuleName": "vnet-firewall-rule", "api-version": "2018-06-01", "parameters": { - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } } }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "202": {} + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesDelete.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesDelete.json index 25b007c52c42..cfb5339892be 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesDelete.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesDelete.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "resourceGroupName": "TestGroup", - "serverName": "vnet-test-svr", - "virtualNetworkRuleName": "vnet-firewall-rule", - "api-version": "2018-06-01" - }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "parameters": { + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", + "resourceGroupName": "TestGroup", + "serverName": "vnet-test-svr", + "virtualNetworkRuleName": "vnet-firewall-rule", + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "body": "" + }, + "202": { + "body": "" + }, + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesGet.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesGet.json index 1b97f04ccc5a..72eb33edf92a 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesGet.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesGet.json @@ -7,17 +7,17 @@ "api-version": "2018-06-01" }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesList.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesList.json index e3ea4b632c8e..b55e9fb25c45 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesList.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/examples/VirtualNetworkRulesList.json @@ -7,31 +7,31 @@ "api-version": "2018-06-01" }, "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - }, - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - ] - } + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + }, + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMariaDB/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMariaDB/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/mariadb.json b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/mariadb.json index fa9fd646f5fa..8a0ac15ca3bd 100644 --- a/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/mariadb.json +++ b/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/stable/2018-06-01/mariadb.json @@ -45,7 +45,7 @@ "$ref": "./examples/ServerCreate.json" }, "Create a database as a point in time restore": { - "$ref":"./examples/ServerCreatePointInTimeRestore.json" + "$ref": "./examples/ServerCreatePointInTimeRestore.json" }, "Create a server as a geo restore ": { "$ref": "./examples/ServerCreateGeoRestoreMode.json" @@ -293,7 +293,9 @@ ], "operationId": "Servers_Restart", "x-ms-examples": { - "ServerRestart": { "$ref": "./examples/ServerRestart.json" } + "ServerRestart": { + "$ref": "./examples/ServerRestart.json" + } }, "description": "Restarts a server.", "parameters": [ @@ -326,7 +328,7 @@ }, "x-ms-long-running-operation": true } - }, + }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/replicas": { "get": { "tags": [ @@ -1347,7 +1349,7 @@ "x-ms-mutability": [ "read", "create" - ], + ], "description": "The location the resource resides in." }, "tags": { @@ -1447,7 +1449,7 @@ "format": "int32", "description": "Max storage allowed for a server." }, - "storageAutogrow" : { + "storageAutogrow": { "type": "string", "description": "Enable Storage Auto Grow.", "enum": [ @@ -2276,7 +2278,7 @@ } }, "description": "An error response from the Batch service." - } + } }, "parameters": { "SubscriptionIdParameter": { @@ -2361,4 +2363,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Accounts.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Accounts.json index 3a1564f14a8d..d2a1187fcf79 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Accounts.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Accounts.json @@ -741,4 +741,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Assets.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Assets.json index 66688d763279..f01516e405a8 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Assets.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Assets.json @@ -605,4 +605,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Common.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Common.json index 32f0e829b2f9..3140d12d8964 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Common.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Common.json @@ -77,4 +77,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/ContentKeyPolicies.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/ContentKeyPolicies.json index ce7149eb0e28..ff9c43789426 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/ContentKeyPolicies.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/ContentKeyPolicies.json @@ -1129,4 +1129,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Encoding.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Encoding.json index 76c810446bcd..24c3bf6273bd 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Encoding.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/Encoding.json @@ -2180,4 +2180,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/StreamingPoliciesAndStreamingLocators.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/StreamingPoliciesAndStreamingLocators.json index 29e20f920731..55caec9a3de5 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/StreamingPoliciesAndStreamingLocators.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/StreamingPoliciesAndStreamingLocators.json @@ -1258,4 +1258,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-check-name-availability.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-check-name-availability.json index 9aad81eaa24d..b7b88c5076da 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-check-name-availability.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-check-name-availability.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-create.json index e45eecd0de39..91ad5f029386 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-create.json @@ -62,6 +62,6 @@ ] } } - } + } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-delete.json index a593d19bc763..65a89864b63f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-delete.json @@ -8,4 +8,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-get-by-name.json index 0f3507993b5a..eb25d616000a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-get-by-name.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-list-all-accounts.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-list-all-accounts.json index a2b39638396a..4206c3bc5bcd 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-list-all-accounts.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-list-all-accounts.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-subscription-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-subscription-get-by-name.json index 294acb38dda4..037780538a17 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-subscription-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-subscription-get-by-name.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-subscription-list-all-accounts.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-subscription-list-all-accounts.json index 4e934468d15f..1aaaf1fb839f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-subscription-list-all-accounts.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-subscription-list-all-accounts.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-sync-storage-keys.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-sync-storage-keys.json index 5cc591cd0c8e..fe0db4ce798d 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-sync-storage-keys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-sync-storage-keys.json @@ -11,4 +11,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-update.json index 311521534af8..f92e6114dd39 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/accounts-update.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-create.json index 6030d2cfaf61..cfdbf7c19b37 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-create.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-delete.json index f421538b2777..6f4be3e65868 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-get-by-name.json index 559f24ed6e8d..23a4660c94c3 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-get-by-name.json @@ -26,4 +26,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-get-encryption-keys.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-get-encryption-keys.json index a37c1a437f7c..ef85de92474c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-get-encryption-keys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-get-encryption-keys.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-all.json index 02277422b47c..51c49a391036 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-all.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-by-date.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-by-date.json index 5e2e5e25d6dc..a6d14025ce32 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-by-date.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-by-date.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-in-date-range.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-in-date-range.json index 41346fb9dfec..1e5206367b70 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-in-date-range.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-in-date-range.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-sas-urls.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-sas-urls.json index c76387b456da..c7fafa21dbb4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-sas-urls.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-list-sas-urls.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-update.json index f364c58cad97..b3546014b743 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/assets-update.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-multiple-options.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-multiple-options.json index d28b0de1b976..be4d3ada5988 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-multiple-options.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-multiple-options.json @@ -133,4 +133,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-nodrm-token.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-nodrm-token.json index 0e549a219813..4b5aba3f9ac6 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-nodrm-token.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-nodrm-token.json @@ -101,4 +101,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-playready-open.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-playready-open.json index 7ff95f2e2cc3..f7bc21f95e9b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-playready-open.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-playready-open.json @@ -154,4 +154,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-widevine-token.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-widevine-token.json index 040b101db20a..e0afa11884b0 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-widevine-token.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-create-widevine-token.json @@ -123,4 +123,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-delete.json index 3a62484b13ce..5cd1a9391337 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-get-by-name.json index 37ecf53dd233..d22bcc073e01 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-get-by-name.json @@ -64,4 +64,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-get-with-secrets.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-get-with-secrets.json index 72108574dc0a..52d8768ccbc9 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-get-with-secrets.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-get-with-secrets.json @@ -59,4 +59,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-all.json index 376d4d470ebe..0a7167f59ed5 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-all.json @@ -162,4 +162,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-by-lastModified.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-by-lastModified.json index 1664dc22f8d8..5977b31209da 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-by-lastModified.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-by-lastModified.json @@ -163,4 +163,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-in-date-range.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-in-date-range.json index ed8ce398dad1..7ada7b7f9945 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-in-date-range.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-list-in-date-range.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-update.json index b948d59eaac4..e0e1d710967b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/content-key-policies-update.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-cancel.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-cancel.json index 6c4837424e0e..d18100de323e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-cancel.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-cancel.json @@ -10,4 +10,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-create.json index 74d038f1e020..0c45eb221624 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-create.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-delete.json index a8953bb8464e..ef8e5b5d0d29 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-delete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-get-by-name.json index fb2d9650f6dd..a564286d6b03 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-get-by-name.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-list-all.json index 737ff0387a52..94b761c4bc83 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/jobs-list-all.json @@ -113,4 +113,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-create.json index 07d8578572d6..a771cb52b163 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-create.json @@ -139,4 +139,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-delete.json index ccc70906235e..8aac6e6c3aae 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-delete.json @@ -59,4 +59,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-list-all.json index 12a9f113030c..7dc4a3134198 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-list-all.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-list-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-list-by-name.json index b17b37239b60..c7d09630c08f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-list-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-list-by-name.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-reset.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-reset.json index f6bdc3bb200c..9a30f0878c16 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-reset.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-reset.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-start.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-start.json index f6bdc3bb200c..9a30f0878c16 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-start.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-start.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-stop.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-stop.json index 6f8396ac56d7..1465d38e4368 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-stop.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-stop.json @@ -13,4 +13,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-update.json index b88fe16c6755..114aecce95bd 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveevent-update.json @@ -134,4 +134,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-create.json index cc03b1310c27..6e57bce7b94b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-create.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-delete.json index 5de0349ad5d5..f475dbae1b86 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-delete.json @@ -12,4 +12,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-list-all.json index 3545c1448292..90f002383c0e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-list-all.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-list-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-list-by-name.json index 16a359f44592..8ccde48efc47 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-list-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/liveoutput-list-by-name.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/operations-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/operations-list-all.json index 3a7ff0ba371a..cd98a866b0ef 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/operations-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/operations-list-all.json @@ -282,4 +282,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-clear.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-clear.json index 103434801d22..09c037882403 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-clear.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-clear.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-secure-userDefinedContentKeys.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-secure-userDefinedContentKeys.json index 9de3dfdafc7c..554405c7c3e4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-secure-userDefinedContentKeys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-secure-userDefinedContentKeys.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-secure.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-secure.json index 9138dce3a7a6..1bbc01f4c89a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-secure.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-create-secure.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-delete.json index 712cafeac16c..9ef01ec206d4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-get-by-name.json index f2c0f95e24d6..e276c06f488a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-get-by-name.json @@ -26,4 +26,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-content-keys.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-content-keys.json index dc3b9c0cc892..ae5038f19142 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-content-keys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-content-keys.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-paths-streaming-and-download.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-paths-streaming-and-download.json index 968c00a670ae..afddf2b64604 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-paths-streaming-and-download.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-paths-streaming-and-download.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-paths-streaming-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-paths-streaming-only.json index 6f6ec79a6910..9ff02d37fb91 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-paths-streaming-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list-paths-streaming-only.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list.json index 4a5d0b17ca6b..d2d88fd3a56e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-locators-list.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-clear.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-clear.json index 4623cd02a1ec..00d0aaa62e7f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-clear.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-clear.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-commonEncryptionCbcs-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-commonEncryptionCbcs-only.json index 479bebc0c6b8..ca94fbcc66bd 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-commonEncryptionCbcs-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-commonEncryptionCbcs-only.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-commonEncryptionCenc-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-commonEncryptionCenc-only.json index a95e8ca8ecd7..37b9da320afc 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-commonEncryptionCenc-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-commonEncryptionCenc-only.json @@ -95,4 +95,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-envelopeEncryption-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-envelopeEncryption-only.json index ecacf2b9ad98..3f34dfb69945 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-envelopeEncryption-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-envelopeEncryption-only.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-secure-streaming.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-secure-streaming.json index e4fd7183e756..d38f5725f9e5 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-secure-streaming.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-create-secure-streaming.json @@ -167,4 +167,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-delete.json index c5ea443b34b1..9082340db923 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-list.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-list.json index ecc90cd1fb0c..5b29cbb299a5 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-list.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policies-list.json @@ -231,4 +231,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policy-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policy-get-by-name.json index 66380bf55ac3..da8e0b6575f1 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policy-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streaming-policy-get-by-name.json @@ -31,4 +31,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-create.json index 93a632a26c56..94bdc07e92a6 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-create.json @@ -154,4 +154,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-delete.json index e532a6ae1216..8a38da16da2f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-delete.json @@ -41,4 +41,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-list-all.json index f60c33a79cde..1c1bfcdbf416 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-list-all.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-list-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-list-by-name.json index a802c913a87f..f91aadf6a9d1 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-list-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-list-by-name.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-scale.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-scale.json index e273ce6e4363..b41181b3e87c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-scale.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-scale.json @@ -13,4 +13,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-start.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-start.json index 962923ef6cee..6bbdf333e387 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-start.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-start.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-stop.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-stop.json index 962923ef6cee..6bbdf333e387 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-stop.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-stop.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-update.json index c0e8fd319d63..b31956ab3f91 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/streamingendpoint-update.json @@ -79,4 +79,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-create.json index 43271891927c..6cf758172436 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-create.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-delete.json index 35c7f090b821..61d0634926bc 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-get-by-name.json index 348878740740..43cb10cae8a2 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-get-by-name.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-list-all.json index 5dea1ab618ac..38c68e78c16e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-list-all.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-update.json index 109314fe7765..21038d3bb833 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/examples/transforms-update.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/streamingservice.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/streamingservice.json index 7b8f3c334c1c..30b837f363eb 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/streamingservice.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-03-30-preview/streamingservice.json @@ -700,7 +700,7 @@ "List all StreamingEndpoints": { "$ref": "examples/streamingendpoint-list-all.json" } - } + } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaservices/{accountName}/streamingEndpoints/{streamingEndpointName}": { @@ -812,7 +812,7 @@ "Create a StreamingEndpoint": { "$ref": "examples/streamingendpoint-create.json" } - } + } }, "patch": { "tags": [ @@ -1046,7 +1046,7 @@ "description": "StreamingEndpoint scale parameters", "in": "body", "required": true, - "schema": { + "schema": { "$ref": "#/definitions/StreamingEntityScaleUnit" } } @@ -1054,7 +1054,7 @@ "responses": { "200": { "description": "OK. The request has succeeded." - }, + }, "202": { "description": "Accepted. The request has been accepted for processing and the operation will complete asynchronously." }, @@ -1086,7 +1086,10 @@ "description": "The HLS configuration." }, "LiveOutputProperties": { - "required": ["assetName","archiveWindowLength"], + "required": [ + "assetName", + "archiveWindowLength" + ], "properties": { "description": { "type": "string", @@ -1200,7 +1203,9 @@ "description": "The Live Event endpoint." }, "LiveEventInput": { - "required": ["streamingProtocol"], + "required": [ + "streamingProtocol" + ], "properties": { "streamingProtocol": { "type": "string", @@ -1341,7 +1346,9 @@ "description": "The LiveEvent action input parameter definition." }, "LiveEventProperties": { - "required": ["input"], + "required": [ + "input" + ], "properties": { "description": { "type": "string", diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Accounts.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Accounts.json index 0571041d0296..a0504dd205c2 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Accounts.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Accounts.json @@ -777,4 +777,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Assets.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Assets.json index bf61c2602048..5236f29c5470 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Assets.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Assets.json @@ -641,4 +641,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Common.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Common.json index b5f79e9a09f1..8163d87ee174 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Common.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Common.json @@ -77,4 +77,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/ContentKeyPolicies.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/ContentKeyPolicies.json index 92c70482a054..f195ab75bb03 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/ContentKeyPolicies.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/ContentKeyPolicies.json @@ -1165,4 +1165,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Encoding.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Encoding.json index 9b89b0e92ca5..9da7a568fcf5 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Encoding.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/Encoding.json @@ -2188,4 +2188,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/StreamingPoliciesAndStreamingLocators.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/StreamingPoliciesAndStreamingLocators.json index 1732f0fa3e65..8f12d0b43965 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/StreamingPoliciesAndStreamingLocators.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/StreamingPoliciesAndStreamingLocators.json @@ -1278,4 +1278,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-check-name-availability.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-check-name-availability.json index c4d155d2e2d0..4854b4fa231c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-check-name-availability.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-check-name-availability.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-create.json index a07945d423e8..fab4f55bf8a7 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-create.json @@ -62,6 +62,6 @@ ] } } - } + } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-delete.json index 013be2cb9959..b30b0511bb70 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-delete.json @@ -8,4 +8,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-get-by-name.json index e095ffaaeb46..237fd02f35dc 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-get-by-name.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-list-all-accounts.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-list-all-accounts.json index 1f3402d2111c..fa0263497644 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-list-all-accounts.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-list-all-accounts.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-subscription-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-subscription-get-by-name.json index dcdb73b08a18..ac3469354d4a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-subscription-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-subscription-get-by-name.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-subscription-list-all-accounts.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-subscription-list-all-accounts.json index 1589d46d80f1..01de2d995eb2 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-subscription-list-all-accounts.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-subscription-list-all-accounts.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-sync-storage-keys.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-sync-storage-keys.json index b7a116ae3766..6b0ca53a8b8f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-sync-storage-keys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-sync-storage-keys.json @@ -11,4 +11,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-update.json index 0beb3a4f9ad0..eb87fb24aea6 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/accounts-update.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-create.json index a61e1e8aac85..1ac2bb045cd9 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-create.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-delete.json index 9911dace2279..cf58e37bd9cc 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-get-by-name.json index f1d65ce5bfe6..1e951cad5ef9 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-get-by-name.json @@ -26,4 +26,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-get-encryption-keys.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-get-encryption-keys.json index 636528ef24de..3f9457b8de36 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-get-encryption-keys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-get-encryption-keys.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-all.json index 79e3aa6a38ec..992f1cf1c222 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-all.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-by-date.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-by-date.json index 5e7189e5e1aa..c92a141c786d 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-by-date.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-by-date.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-in-date-range.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-in-date-range.json index 80afef55c969..5eda82aec2b3 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-in-date-range.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-in-date-range.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-sas-urls.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-sas-urls.json index fbf0ccb18508..f8b262a1c7bc 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-sas-urls.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-list-sas-urls.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-update.json index d86cf01440d8..43204ab84872 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/assets-update.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-multiple-options.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-multiple-options.json index db98a8275870..529fe3b583fe 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-multiple-options.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-multiple-options.json @@ -133,4 +133,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-nodrm-token.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-nodrm-token.json index c4d93e6c4857..82c9ea28c525 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-nodrm-token.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-nodrm-token.json @@ -101,4 +101,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-playready-open.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-playready-open.json index 4a5c5ecc3e84..244ebd5a0718 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-playready-open.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-playready-open.json @@ -154,4 +154,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-widevine-token.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-widevine-token.json index a749d7e2a053..f27d4a2e2c2b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-widevine-token.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-create-widevine-token.json @@ -123,4 +123,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-delete.json index 7a56da4ed983..25ee061d3780 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-get-by-name.json index 006e7ff3d0a5..265a07bdb845 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-get-by-name.json @@ -64,4 +64,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-get-with-secrets.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-get-with-secrets.json index 3f71f2d56986..9c60480b911d 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-get-with-secrets.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-get-with-secrets.json @@ -59,4 +59,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-all.json index 3a77fb2f317e..6368211a5bbf 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-all.json @@ -162,4 +162,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-by-lastModified.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-by-lastModified.json index d5f52a4a9601..fc542affee4d 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-by-lastModified.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-by-lastModified.json @@ -163,4 +163,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-in-date-range.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-in-date-range.json index a06a45cfa1f3..17bcbe59aca4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-in-date-range.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-list-in-date-range.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-update.json index 4c46b1735b58..fa114e545910 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/content-key-policies-update.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-cancel.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-cancel.json index 7a80feb79c4b..9ce3cd1e845b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-cancel.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-cancel.json @@ -10,4 +10,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-create.json index 43b43b964fb1..2bb32ed6bd2c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-create.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-delete.json index 3abfca49aa8e..1f60565c8c24 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-delete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-get-by-name.json index c9685745227e..b916dc8b42f5 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-get-by-name.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-list-all.json index 62c223520a2c..891fd89ec930 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/jobs-list-all.json @@ -116,4 +116,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-create.json index 2ecef28601e3..41e6b6c5cac9 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-create.json @@ -139,4 +139,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-delete.json index 4fa2565c2920..d4f7e8434704 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-delete.json @@ -59,4 +59,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-list-all.json index 54d4d9242136..e79e94944d26 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-list-all.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-list-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-list-by-name.json index 52d683ac3c20..d6adcd0782dd 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-list-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-list-by-name.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-reset.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-reset.json index 03df7fcc6963..2dda81cb0189 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-reset.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-reset.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-start.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-start.json index 03df7fcc6963..2dda81cb0189 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-start.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-start.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-stop.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-stop.json index 7d4f7edbb688..4a44932b9ece 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-stop.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-stop.json @@ -13,4 +13,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-update.json index 516aa9233361..9bface3db543 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveevent-update.json @@ -134,4 +134,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-create.json index b9ddd9ceec43..17a7865f1317 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-create.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-delete.json index d95aec17f1b5..748f3ea3f5db 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-delete.json @@ -12,4 +12,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-list-all.json index 36db1ae31638..812a52c1f1e9 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-list-all.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-list-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-list-by-name.json index 0f2f40e1f579..d50b7c253bc1 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-list-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/liveoutput-list-by-name.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/operations-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/operations-list-all.json index 26e68293f502..2ac2230b88f8 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/operations-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/operations-list-all.json @@ -498,4 +498,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-clear.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-clear.json index 0e11d877520b..e6bcaa4a304a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-clear.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-clear.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-secure-userDefinedContentKeys.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-secure-userDefinedContentKeys.json index 3cbab7cf9583..8dfe754e4595 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-secure-userDefinedContentKeys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-secure-userDefinedContentKeys.json @@ -75,4 +75,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-secure.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-secure.json index c98cae2f9386..bcf8663eb67c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-secure.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-create-secure.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-delete.json index 103ee8162976..0b0b93feb238 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-get-by-name.json index 7cf317734fa0..297a80f7ba82 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-get-by-name.json @@ -27,4 +27,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-content-keys.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-content-keys.json index 3cea4f5a0e46..f9fa9e32c525 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-content-keys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-content-keys.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-paths-streaming-and-download.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-paths-streaming-and-download.json index e3ce4ad16047..180a24a42e6f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-paths-streaming-and-download.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-paths-streaming-and-download.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-paths-streaming-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-paths-streaming-only.json index e598f984f93d..4001cdfc59a8 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-paths-streaming-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list-paths-streaming-only.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list.json index 3fe5359b9a4d..818a66cca260 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-locators-list.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-clear.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-clear.json index 3abecb479631..6023a1a392bd 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-clear.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-clear.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-commonEncryptionCbcs-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-commonEncryptionCbcs-only.json index d15e58b288eb..07c96dca1068 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-commonEncryptionCbcs-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-commonEncryptionCbcs-only.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-commonEncryptionCenc-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-commonEncryptionCenc-only.json index f874620125b1..faa38a52d4e0 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-commonEncryptionCenc-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-commonEncryptionCenc-only.json @@ -95,4 +95,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-envelopeEncryption-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-envelopeEncryption-only.json index b300ca3fe7a6..0bcf3b1898a8 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-envelopeEncryption-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-envelopeEncryption-only.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-secure-streaming.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-secure-streaming.json index adab37a61e20..15bd4f179724 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-secure-streaming.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-create-secure-streaming.json @@ -167,4 +167,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-delete.json index 8fc0c1a0349a..7208ad95601d 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-list.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-list.json index 64d265289d93..53b9a43c944c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-list.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policies-list.json @@ -232,4 +232,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policy-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policy-get-by-name.json index b90bdad10ff2..497091d9dc6b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policy-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streaming-policy-get-by-name.json @@ -31,4 +31,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-create.json index d336524c9417..0dcd0fdadb19 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-create.json @@ -154,4 +154,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-delete.json index fc2f1ee3d946..9e2c6507b8bf 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-delete.json @@ -41,4 +41,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-list-all.json index 85a9badc34a7..6133ddb6391f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-list-all.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-list-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-list-by-name.json index 1f9dbdce3552..c53f4fc3bbe4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-list-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-list-by-name.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-scale.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-scale.json index bb3194bc81a8..a175800afb0b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-scale.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-scale.json @@ -13,4 +13,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-start.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-start.json index b960e18206f5..4bdabc55baa2 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-start.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-start.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-stop.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-stop.json index b960e18206f5..4bdabc55baa2 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-stop.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-stop.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-update.json index a22f51b3657b..7359529c5d4c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/streamingendpoint-update.json @@ -79,4 +79,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-create.json index cfb560f28e43..2a70fe190934 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-create.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-delete.json index 407300c86a51..51179fa69b98 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-get-by-name.json index 1191595b52bb..e55f2a349995 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-get-by-name.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-list-all.json index 87167e023f06..a13c5e01f038 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-list-all.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-update.json index 0e244b8bf60c..2e6d19f48549 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/examples/transforms-update.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/streamingservice.json b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/streamingservice.json index 8de9f4a1b6bc..258578eb9c4e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/streamingservice.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/preview/2018-06-01-preview/streamingservice.json @@ -700,7 +700,7 @@ "List all StreamingEndpoints": { "$ref": "examples/streamingendpoint-list-all.json" } - } + } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaservices/{accountName}/streamingEndpoints/{streamingEndpointName}": { @@ -812,7 +812,7 @@ "Create a StreamingEndpoint": { "$ref": "examples/streamingendpoint-create.json" } - } + } }, "patch": { "tags": [ @@ -1046,7 +1046,7 @@ "description": "StreamingEndpoint scale parameters", "in": "body", "required": true, - "schema": { + "schema": { "$ref": "#/definitions/StreamingEntityScaleUnit" } } @@ -1054,7 +1054,7 @@ "responses": { "200": { "description": "OK. The request has succeeded." - }, + }, "202": { "description": "Accepted. The request has been accepted for processing and the operation will complete asynchronously." }, @@ -1086,7 +1086,10 @@ "description": "The HLS configuration." }, "LiveOutputProperties": { - "required": ["assetName","archiveWindowLength"], + "required": [ + "assetName", + "archiveWindowLength" + ], "properties": { "description": { "type": "string", @@ -1200,7 +1203,9 @@ "description": "The Live Event endpoint." }, "LiveEventInput": { - "required": ["streamingProtocol"], + "required": [ + "streamingProtocol" + ], "properties": { "streamingProtocol": { "type": "string", @@ -1345,7 +1350,9 @@ "description": "The LiveEvent action input parameter definition." }, "LiveEventProperties": { - "required": ["input"], + "required": [ + "input" + ], "properties": { "description": { "type": "string", diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceCheckNameAvailability.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceCheckNameAvailability.json index fd1064c21bc5..08dbdd4508df 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceCheckNameAvailability.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceCheckNameAvailability.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceCreate.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceCreate.json index b859bba032f3..0831e46e7254 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceCreate.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceCreate.json @@ -7,7 +7,7 @@ "parameters": { "location": "West US", "properties": { - "storageAccounts": [ + "storageAccounts": [ { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Storage/storageAccounts/contosostore", "isPrimary": true @@ -15,13 +15,13 @@ ] } } - }, + }, "responses": { "201": { "body": { "location": "West US", "properties": { - "storageAccounts": [ + "storageAccounts": [ { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Storage/storageAccounts/contosostore", "isPrimary": true @@ -32,4 +32,3 @@ } } } - diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceDelete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceDelete.json index 29e5ea14f3d3..bb5080f5eb93 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceDelete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceDelete.json @@ -14,4 +14,3 @@ } } } - diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceGet.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceGet.json index 589d3618bc9f..cec683d9c8ff 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceGet.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceListByResourceGroup.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceListByResourceGroup.json index 5f1f3b9a468e..7fd21458833e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceListByResourceGroup.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceListByResourceGroup.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceListKeys.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceListKeys.json index 111b60e1d127..9952ebf32be2 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceListKeys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceListKeys.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceRegenerateKey.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceRegenerateKey.json index 65e2f4ef9fe5..2101656df90b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceRegenerateKey.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceRegenerateKey.json @@ -7,13 +7,12 @@ "parameters": { "keyType": "Primary" } - }, + }, "responses": { "200": { "body": { - "key":"" + "key": "" } } } } - diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceSyncStorageKeys.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceSyncStorageKeys.json index 1e8d17789fc8..4b8a55d1b4e4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceSyncStorageKeys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceSyncStorageKeys.json @@ -7,11 +7,10 @@ "parameters": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Storage/storageAccounts/contosostore" } - }, + }, "responses": { "200": { "body": "" } } } - diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceUpdate.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceUpdate.json index 225fc4e84743..e09a1ff1182d 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceUpdate.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceUpdate.json @@ -7,7 +7,7 @@ "parameters": { "location": "West US", "properties": { - "storageAccounts": [ + "storageAccounts": [ { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Storage/storageAccounts/contosostore", "isPrimary": true @@ -15,13 +15,13 @@ ] } } - }, + }, "responses": { "200": { "body": { "location": "West US", "properties": { - "storageAccounts": [ + "storageAccounts": [ { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Storage/storageAccounts/contosostore", "isPrimary": true @@ -32,4 +32,3 @@ } } } - diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/OperationsList.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/OperationsList.json index 275347bc21bc..37c0d04d1ba1 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/OperationsList.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/OperationsList.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/media.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/media.json index 0dd24421734d..c067803e10d5 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/media.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/media.json @@ -42,7 +42,9 @@ "url": "https://aka.ms/media-manage" }, "x-ms-examples": { - "OperationsList": { "$ref": "./examples/OperationsList.json" } + "OperationsList": { + "$ref": "./examples/OperationsList.json" + } }, "parameters": [ { @@ -67,7 +69,9 @@ "url": "https://aka.ms/media-manage" }, "x-ms-examples": { - "MediaServiceCheckNameAvailability": { "$ref": "./examples/MediaServiceCheckNameAvailability.json" } + "MediaServiceCheckNameAvailability": { + "$ref": "./examples/MediaServiceCheckNameAvailability.json" + } }, "parameters": [ { @@ -92,12 +96,12 @@ "schema": { "$ref": "#/definitions/CheckNameAvailabilityOutput" }, - "examples": { + "examples": { "application/json": { "nameAvailable": false, "reason": "AlreadyExists", "message": "Already in use by another Media Service instance. Please try again with a name that is not likely to be in use." - } + } } }, "default": { @@ -117,7 +121,9 @@ "url": "https://aka.ms/media-manage" }, "x-ms-examples": { - "MediaServiceListByResourceGroup": { "$ref": "./examples/MediaServiceListByResourceGroup.json" } + "MediaServiceListByResourceGroup": { + "$ref": "./examples/MediaServiceListByResourceGroup.json" + } }, "parameters": [ { @@ -129,7 +135,7 @@ { "$ref": "#/parameters/resourceGroupNameParameter" } - ], + ], "responses": { "200": { "description": "Success. Returns a list of all of the Media Services accounts in a resource group.", @@ -144,15 +150,15 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Media/mediaservices/contosomedia", "type": "Microsoft.Media/mediaservices", "location": "West US", - "properties":{ - "apiEndpoints":[ - { + "properties": { + "apiEndpoints": [ + { "endpoint": "https://wamsbayclus001rest-hs.cloudapp.net/api/", "majorVersion": "2" } ], - "storageAccounts":[ - { + "storageAccounts": [ + { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Storage/storageAccounts/contosomedia", "isPrimary": true } @@ -171,7 +177,7 @@ } }, "x-ms-pageable": { - "nextLinkName": null + "nextLinkName": null } } }, @@ -183,7 +189,9 @@ "url": "https://aka.ms/media-manage" }, "x-ms-examples": { - "MediaServiceGet": { "$ref": "./examples/MediaServiceGet.json" } + "MediaServiceGet": { + "$ref": "./examples/MediaServiceGet.json" + } }, "parameters": [ { @@ -205,27 +213,27 @@ "schema": { "$ref": "#/definitions/MediaService" }, - "examples" : { + "examples": { "application/json": { "name": "contosomedia", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Media/mediaservices/contosomedia", "type": "Microsoft.Media/mediaservices", "location": "West US", - "properties":{ - "apiEndpoints":[ - { + "properties": { + "apiEndpoints": [ + { "endpoint": "https://wamsbayclus001rest-hs.cloudapp.net/api/", "majorVersion": "2" } ], - "storageAccounts":[ - { + "storageAccounts": [ + { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Storage/storageAccounts/contosomedia", "isPrimary": true } ] } - } + } } }, "default": { @@ -243,7 +251,9 @@ "url": "https://aka.ms/media-manage" }, "x-ms-examples": { - "MediaServiceCreate": { "$ref": "./examples/MediaServiceCreate.json" } + "MediaServiceCreate": { + "$ref": "./examples/MediaServiceCreate.json" + } }, "parameters": [ { @@ -274,27 +284,27 @@ "schema": { "$ref": "#/definitions/MediaService" }, - "examples" : { + "examples": { "application/json": { "name": "contosomedia", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Media/mediaservices/contosomedia", "type": "Microsoft.Media/mediaservices", "location": "West US", - "properties":{ - "apiEndpoints":[ - { + "properties": { + "apiEndpoints": [ + { "endpoint": "https://wamsbayclus001rest-hs.cloudapp.net/api/", "majorVersion": "2" } ], - "storageAccounts":[ - { + "storageAccounts": [ + { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Storage/storageAccounts/contosomedia", "isPrimary": true } ] } - } + } } }, "default": { @@ -312,7 +322,9 @@ "url": "https://aka.ms/media-manage" }, "x-ms-examples": { - "MediaServiceDelete": { "$ref": "./examples/MediaServiceDelete.json" } + "MediaServiceDelete": { + "$ref": "./examples/MediaServiceDelete.json" + } }, "parameters": [ { @@ -350,7 +362,9 @@ "url": "https://aka.ms/media-manage" }, "x-ms-examples": { - "MediaServiceUpdate": { "$ref": "./examples/MediaServiceUpdate.json" } + "MediaServiceUpdate": { + "$ref": "./examples/MediaServiceUpdate.json" + } }, "parameters": [ { @@ -381,26 +395,26 @@ "schema": { "$ref": "#/definitions/MediaService" }, - "examples" : { + "examples": { "application/json": { "name": "contosomedia", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Media/mediaservices/contosomedia", "type": "Microsoft.Media/mediaservices", "location": "West US", - "properties":{ - "apiEndpoints":[ - { + "properties": { + "apiEndpoints": [ + { "endpoint": "https://wamsbayclus001rest-hs.cloudapp.net/api/", "majorVersion": "2" } ], - "storageAccounts":[ - { + "storageAccounts": [ + { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Storage/storageAccounts/contosomedia", "isPrimary": true } ] - } + } } } }, @@ -421,7 +435,9 @@ "url": "https://aka.ms/media-manage" }, "x-ms-examples": { - "MediaServiceRegenerateKey": { "$ref": "./examples/MediaServiceRegenerateKey.json" } + "MediaServiceRegenerateKey": { + "$ref": "./examples/MediaServiceRegenerateKey.json" + } }, "parameters": [ { @@ -455,7 +471,7 @@ "examples": { "application/json": { "key": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=" - } + } } }, "default": { @@ -475,7 +491,9 @@ "url": "https://aka.ms/media-manage" }, "x-ms-examples": { - "MediaServiceListKeys": { "$ref": "./examples/MediaServiceListKeys.json" } + "MediaServiceListKeys": { + "$ref": "./examples/MediaServiceListKeys.json" + } }, "parameters": [ { @@ -497,14 +515,14 @@ "schema": { "$ref": "#/definitions/ServiceKeys" }, - "examples":{ + "examples": { "application/json": { "primaryAuthEndpoint": "https://wamsprodglobal001acs.accesscontrol.windows.net/", "secondaryAuthEndpoint": "https://wamsprodglobal002acs.accesscontrol.windows.net/", "primaryKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=", "secondaryKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=", "scope": "urn:windowsazuremediaservices" - } + } } }, "default": { @@ -524,7 +542,9 @@ "url": "https://aka.ms/media-manage" }, "x-ms-examples": { - "MediaServiceSyncStorageKeys": { "$ref": "./examples/MediaServiceSyncStorageKeys.json" } + "MediaServiceSyncStorageKeys": { + "$ref": "./examples/MediaServiceSyncStorageKeys.json" + } }, "parameters": [ { @@ -566,9 +586,9 @@ "definitions": { "ApiEndpoint": { "description": "The properties for a Media Services REST API endpoint.", - "example": { - "endpoint":"https://wamsbayclus001rest-hs.cloudapp.net/api/", - "majorVersion":"2" + "example": { + "endpoint": "https://wamsbayclus001rest-hs.cloudapp.net/api/", + "majorVersion": "2" }, "properties": { "endpoint": { @@ -603,8 +623,8 @@ "CheckNameAvailabilityInput": { "description": "The request body for CheckNameAvailability API.", "example": { - "name":"contosomedia", - "type":"mediaservices" + "name": "contosomedia", + "type": "mediaservices" }, "required": [ "name", @@ -634,7 +654,7 @@ "name": "ResourceType", "modelAsString": false } - }, + }, "CheckNameAvailabilityOutput": { "description": "The response body for CheckNameAvailability API.", "properties": { @@ -653,7 +673,7 @@ "x-ms-enum": { "name": "EntityNameUnavailabilityReason", "modelAsString": false - } + } }, "message": { "description": "Specifies the detailed reason if the name is not available.", @@ -730,21 +750,21 @@ "type": "string", "enum": [ "Primary", - "Secondary" + "Secondary" ], "x-ms-enum": { "name": "KeyType", "modelAsString": false - } + } } }, "required": [ - "keyType" + "keyType" ] }, "RegenerateKeyOutput": { "description": "The response body for a RegenerateKey API.", - "example": { + "example": { "key": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=" }, "properties": { @@ -820,7 +840,7 @@ }, "StorageAccount": { "description": "The properties of a storage account associated with this resource.", - "example": { + "example": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Storage/storageAccounts/contosomedia", "isPrimary": true }, diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/AccountFilters.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/AccountFilters.json index 0113e2c1450a..c8524b35e255 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/AccountFilters.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/AccountFilters.json @@ -546,4 +546,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Accounts.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Accounts.json index ed122a0cce52..6400418515d4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Accounts.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Accounts.json @@ -920,4 +920,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/AssetsAndAssetFilters.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/AssetsAndAssetFilters.json index 4f54bed9ddb2..c5cecedbb7ac 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/AssetsAndAssetFilters.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/AssetsAndAssetFilters.json @@ -1270,4 +1270,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Common.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Common.json index bea6dd7c7650..8ffd3bd1f71a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Common.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Common.json @@ -77,4 +77,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/ContentKeyPolicies.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/ContentKeyPolicies.json index 372adf53c003..e172d68c25cf 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/ContentKeyPolicies.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/ContentKeyPolicies.json @@ -8,7 +8,7 @@ "description": "This Swagger was generated by the API Framework.", "version": "2018-07-01" }, - "host": "management.azure.com", + "host": "management.azure.com", "consumes": [ "application/json" ], @@ -1165,4 +1165,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Encoding.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Encoding.json index b1303a318780..7ca9a69025e1 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Encoding.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/Encoding.json @@ -2398,4 +2398,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/StreamingPoliciesAndStreamingLocators.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/StreamingPoliciesAndStreamingLocators.json index a2dafe7e44d4..a08ee4ec0a75 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/StreamingPoliciesAndStreamingLocators.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/StreamingPoliciesAndStreamingLocators.json @@ -1286,4 +1286,4 @@ "description": "The Version of the API to be used with the client request." } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-create.json index a89bb51d57ef..198bf61098d8 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-create.json @@ -168,4 +168,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-delete.json index 793540fdf8ba..ad07ff6d257e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-get-by-name.json index 3930e4f6ce69..693f7cbc5eea 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-get-by-name.json @@ -53,4 +53,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-list-all.json index edd40e995724..eacdfbbec53a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-list-all.json @@ -108,4 +108,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-update.json index ff59b2d69427..d91cf8217184 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accountFilters-update.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-check-name-availability.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-check-name-availability.json index 8ac886e3a539..4ef7fa721199 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-check-name-availability.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-check-name-availability.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-create.json index f15582ffd7a2..3451dc6b0572 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-create.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-delete.json index a20c9a79c353..c881a84854c0 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-delete.json @@ -8,4 +8,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-get-by-name.json index b8ebb47bccd7..4ae9745f6b2a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-get-by-name.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-list-all-accounts.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-list-all-accounts.json index bc61d392b902..2f59e9cae5ef 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-list-all-accounts.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-list-all-accounts.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-subscription-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-subscription-get-by-name.json index d4a79fb8bd03..665c0edcd6bc 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-subscription-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-subscription-get-by-name.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-subscription-list-all-accounts.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-subscription-list-all-accounts.json index 633ec2d3a5e2..07e64ecaadba 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-subscription-list-all-accounts.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-subscription-list-all-accounts.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-sync-storage-keys.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-sync-storage-keys.json index 14c63c725d94..ea9b54b7ffd8 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-sync-storage-keys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-sync-storage-keys.json @@ -11,4 +11,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-update.json index 0d5093206a74..0d4396b72abe 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/accounts-update.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-create.json index 84dea565f6ba..9784120409d5 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-create.json @@ -169,4 +169,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-delete.json index e36fd253a836..3b890a6f7ccc 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-delete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-get-by-name.json index 6e6d6696391e..8eaed610e85d 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-get-by-name.json @@ -65,4 +65,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-list-all.json index 8c2cd9a680c2..aa9981050b68 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-list-all.json @@ -128,4 +128,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-update.json index 224f2cf3183a..42832ec0e80d 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assetFilters-update.json @@ -79,4 +79,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-create.json index 7e9b78dea5b6..431c93bdb73e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-create.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-delete.json index 7988e4a683c1..3661cae3e441 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-get-by-name.json index da24748b30f5..cc427282d0fa 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-get-by-name.json @@ -25,4 +25,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-get-encryption-keys.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-get-encryption-keys.json index c4a5e5a54004..c7c3f3fa0606 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-get-encryption-keys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-get-encryption-keys.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-all.json index ebb39fb6dfe1..714dd42b6137 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-all.json @@ -98,4 +98,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-by-date.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-by-date.json index efb131fe71fb..a2a1cba3d82f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-by-date.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-by-date.json @@ -99,4 +99,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-in-date-range.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-in-date-range.json index 2363fe29859c..9cc1ef62ea2a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-in-date-range.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-in-date-range.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-sas-urls.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-sas-urls.json index 07f2117528d4..f861fd39b54b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-sas-urls.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-sas-urls.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-streaming-locators.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-streaming-locators.json index 242504bc435c..3646044598cc 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-streaming-locators.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-list-streaming-locators.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-update.json index e55650b58f63..aa8743214b59 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/assets-update.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-multiple-options.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-multiple-options.json index 94709fc604f6..1106df0390d4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-multiple-options.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-multiple-options.json @@ -128,7 +128,7 @@ } ] } - } + } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-nodrm-token.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-nodrm-token.json index 2aeafe202a08..7395f4a1b42e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-nodrm-token.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-nodrm-token.json @@ -99,4 +99,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-playready-open.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-playready-open.json index 93dad936400f..da7e946e3279 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-playready-open.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-playready-open.json @@ -128,4 +128,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-widevine-token.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-widevine-token.json index b8d4a2930768..1df5682c7cef 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-widevine-token.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-create-widevine-token.json @@ -121,4 +121,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-delete.json index c77275731aa7..7447440dc857 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-get-by-name.json index ddd9eb76e54a..250a24b9d44e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-get-by-name.json @@ -60,4 +60,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-get-with-secrets.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-get-with-secrets.json index f11e2b4b8b9a..9143019cbbd5 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-get-with-secrets.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-get-with-secrets.json @@ -55,4 +55,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-all.json index 3652532bf048..750d942f695b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-all.json @@ -162,4 +162,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-by-lastModified.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-by-lastModified.json index 7348534d2def..3964906825e4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-by-lastModified.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-by-lastModified.json @@ -141,4 +141,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-in-date-range.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-in-date-range.json index 0339c941acca..00509549496e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-in-date-range.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-list-in-date-range.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-update.json index 03266d7a7ba6..6ad18004d6f4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/content-key-policies-update.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-cancel.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-cancel.json index 9c132f7e0806..0ac966b8b75b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-cancel.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-cancel.json @@ -10,4 +10,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-create.json index b525731f8d4d..5d89c32c60fa 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-create.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-delete.json index 3ddeb219ab86..6294423759db 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-delete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-get-by-name.json index bfbee0d5ce1c..377c1d76d265 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-get-by-name.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-created.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-created.json index 395cecb25446..5edc04a19e36 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-created.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-created.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-lastmodified.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-lastmodified.json index f62722d0e0be..0e9639af32a7 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-lastmodified.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-lastmodified.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-name-and-state.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-name-and-state.json index 95975da8908e..0c04098bed7c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-name-and-state.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-name-and-state.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-name.json index 6b082f7e48d2..a1dce95541ee 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-name.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-state-eq.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-state-eq.json index f089816e8da7..72eabbf3f41b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-state-eq.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-state-eq.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-state-ne.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-state-ne.json index 2fef3a6c39dd..fbcaef2d9ce2 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-state-ne.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all-filter-by-state-ne.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all.json index 41acda6e73f8..a389ddb0ee9c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-list-all.json @@ -107,4 +107,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-update.json index 36135ba39660..037037159cb4 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/jobs-update.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-create.json index c820ed037742..01bc4ea3b8ea 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-create.json @@ -139,4 +139,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-delete.json index a17f0b85b17a..76f800375bfa 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-delete.json @@ -59,4 +59,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-list-all.json index 3b3e8efed9de..8d211c4d12f6 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-list-all.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-list-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-list-by-name.json index 5dd282da51d8..da80ef5d0805 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-list-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-list-by-name.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-reset.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-reset.json index c31b9e1a601f..d5443a60b311 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-reset.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-reset.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-start.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-start.json index c31b9e1a601f..d5443a60b311 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-start.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-start.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-stop.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-stop.json index 97057f6a74ae..cdf6c800889b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-stop.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-stop.json @@ -13,4 +13,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-update.json index 39b447203ee7..29eecd3adf47 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveevent-update.json @@ -134,4 +134,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-create.json index b2a5dc1bbe42..473fa7d65cd1 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-create.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-delete.json index 855a0df3eff0..7ff08e04d878 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-delete.json @@ -12,4 +12,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-list-all.json index dbfa020e3ce3..879d657299fe 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-list-all.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-list-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-list-by-name.json index c8db5d2b2f20..46d56644799c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-list-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/liveoutput-list-by-name.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/operations-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/operations-list-all.json index 7efcb833aba6..7426d00e6230 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/operations-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/operations-list-all.json @@ -586,4 +586,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-clear.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-clear.json index 381dffc87ad3..ad55ead6f9e8 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-clear.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-clear.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-secure-userDefinedContentKeys.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-secure-userDefinedContentKeys.json index 505cd08bc772..08233501a6b7 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-secure-userDefinedContentKeys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-secure-userDefinedContentKeys.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-secure.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-secure.json index 351164c1b69a..977d843d2416 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-secure.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-create-secure.json @@ -51,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-delete.json index e0ae87e60243..140630d47647 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-get-by-name.json index 2d488f5e2d62..e66ccef9dc6a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-get-by-name.json @@ -24,4 +24,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-content-keys.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-content-keys.json index 4306466b4ced..7ef154ff54fd 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-content-keys.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-content-keys.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-paths-streaming-and-download.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-paths-streaming-and-download.json index feeb42a437c1..811f52ff50a7 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-paths-streaming-and-download.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-paths-streaming-and-download.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-paths-streaming-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-paths-streaming-only.json index 8dc70f7d3823..6dea46e058bd 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-paths-streaming-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list-paths-streaming-only.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list.json index 6f91901c68c6..98c6f76ef174 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-locators-list.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-clear.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-clear.json index 5532720ca129..cb5f6ccb065c 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-clear.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-clear.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-commonEncryptionCbcs-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-commonEncryptionCbcs-only.json index 2e4ed2ced08d..52fc0ae3126e 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-commonEncryptionCbcs-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-commonEncryptionCbcs-only.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-commonEncryptionCenc-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-commonEncryptionCenc-only.json index 5a391d0dda07..f4b39637fd31 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-commonEncryptionCenc-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-commonEncryptionCenc-only.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-envelopeEncryption-only.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-envelopeEncryption-only.json index 6215adf0f6e3..dae05f33ecc1 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-envelopeEncryption-only.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-envelopeEncryption-only.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-secure-streaming.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-secure-streaming.json index c82e0156301a..ba379b251a62 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-secure-streaming.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-create-secure-streaming.json @@ -161,4 +161,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-delete.json index 402f133656ea..f7c557b72159 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-list.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-list.json index a80e669c9990..a9107e1e2bbd 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-list.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policies-list.json @@ -208,4 +208,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policy-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policy-get-by-name.json index 525db8cc0c92..e1f4eb5d3fbb 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policy-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streaming-policy-get-by-name.json @@ -27,4 +27,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-create.json index 7988dffd74b1..d2aa1a2e4295 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-create.json @@ -154,4 +154,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-delete.json index 632ca025edfd..b78b3322644f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-delete.json @@ -41,4 +41,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-list-all.json index db370e9e4a10..bcbc02e5185a 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-list-all.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-list-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-list-by-name.json index f44064bf9904..d3194bf8ceca 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-list-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-list-by-name.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-scale.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-scale.json index 6d8205f8145a..6a324b3b86b5 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-scale.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-scale.json @@ -13,4 +13,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-start.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-start.json index cee5764636e4..0ace89511dc6 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-start.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-start.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-stop.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-stop.json index cee5764636e4..0ace89511dc6 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-stop.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-stop.json @@ -10,4 +10,4 @@ "202": {}, "200": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-update.json index f83258256808..99d1524ebd94 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/streamingendpoint-update.json @@ -79,4 +79,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-create.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-create.json index 8c492eae7dd7..b8efcf50fa76 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-create.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-create.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-delete.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-delete.json index 75397d696f65..f7377895cc28 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-delete.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-delete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-get-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-get-by-name.json index 849d964221c6..aaa70d241f27 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-get-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-get-by-name.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-created.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-created.json index cf729aa5a250..6e9fff4bb24f 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-created.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-created.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-lastmodified.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-lastmodified.json index 28153774e318..7a7c451a796b 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-lastmodified.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-lastmodified.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-name.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-name.json index 84a76f252fb5..73abc35d3eff 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-name.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all-filter-by-name.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all.json index 0b53d7c2160e..577b65d56e1d 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-list-all.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-update.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-update.json index f299ef02994f..8676dc1745b7 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-update.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/examples/transforms-update.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/streamingservice.json b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/streamingservice.json index b30ff201a412..f48e5640a176 100644 --- a/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/streamingservice.json +++ b/specification/mediaservices/resource-manager/Microsoft.Media/stable/2018-07-01/streamingservice.json @@ -700,7 +700,7 @@ "List all StreamingEndpoints": { "$ref": "examples/streamingendpoint-list-all.json" } - } + } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaservices/{accountName}/streamingEndpoints/{streamingEndpointName}": { @@ -812,7 +812,7 @@ "Create a StreamingEndpoint": { "$ref": "examples/streamingendpoint-create.json" } - } + } }, "patch": { "tags": [ @@ -1046,7 +1046,7 @@ "description": "StreamingEndpoint scale parameters", "in": "body", "required": true, - "schema": { + "schema": { "$ref": "#/definitions/StreamingEntityScaleUnit" } } @@ -1054,7 +1054,7 @@ "responses": { "200": { "description": "OK. The request has succeeded." - }, + }, "202": { "description": "Accepted. The request has been accepted for processing and the operation will complete asynchronously. See https://go.microsoft.com/fwlink/?linkid=2087017 for details on the monitoring asynchronous Azure Operations." }, @@ -1086,7 +1086,10 @@ "description": "The HLS configuration." }, "LiveOutputProperties": { - "required": ["assetName","archiveWindowLength"], + "required": [ + "assetName", + "archiveWindowLength" + ], "properties": { "description": { "type": "string", @@ -1210,7 +1213,9 @@ "description": "The IP access control for Live Event Input." }, "LiveEventInput": { - "required": ["streamingProtocol"], + "required": [ + "streamingProtocol" + ], "properties": { "streamingProtocol": { "type": "string", @@ -1362,7 +1367,9 @@ "description": "The LiveEvent action input parameter definition." }, "LiveEventProperties": { - "required": ["input"], + "required": [ + "input" + ], "properties": { "description": { "type": "string", @@ -1536,7 +1543,9 @@ "description": "scale units definition" }, "StreamingEndpointProperties": { - "required": ["scaleUnits"], + "required": [ + "scaleUnits" + ], "properties": { "description": { "type": "string", diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/CheckLocalNameAvailability.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/CheckLocalNameAvailability.json index a5f1f33fd3e4..6993389a3f5a 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/CheckLocalNameAvailability.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/CheckLocalNameAvailability.json @@ -1,10 +1,10 @@ { "parameters": { "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "location" : "Global", + "location": "Global", "checkNameAvailability": { - "name" : "alpha", - "type" : "SpatialAnchorsAccount" + "name": "alpha", + "type": "SpatialAnchorsAccount" }, "api-version": "2019-02-28-preview" }, @@ -12,8 +12,8 @@ "200": { "body": { "nameAvailable": "false", - "reason" : "AlreadyExists", - "message" : "..." + "reason": "AlreadyExists", + "message": "..." } } } diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/GetOperationList.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/GetOperationList.json index b110404cd393..3fa4a3e973be 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/GetOperationList.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/GetOperationList.json @@ -7,43 +7,43 @@ "body": { "value": [ { - "name": "Microsoft.MixedReality/register/action", - "display": { - "provider": "Microsoft.MixedReality", - "resource": "Mixed Reality resource provider", - "operation": "Registers the Mixed Reality resource provider", - "description": "Registers a subscription for the Mixed Reality resource provider." - } + "name": "Microsoft.MixedReality/register/action", + "display": { + "provider": "Microsoft.MixedReality", + "resource": "Mixed Reality resource provider", + "operation": "Registers the Mixed Reality resource provider", + "description": "Registers a subscription for the Mixed Reality resource provider." + } }, { - "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/delete", - "display": { - "provider": "Microsoft.MixedReality", - "resource": "SpatialAnchorsAccounts", - "operation": "Delete Spatial Anchors Accounts", - "description": "Deletes the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" - } + "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/delete", + "display": { + "provider": "Microsoft.MixedReality", + "resource": "SpatialAnchorsAccounts", + "operation": "Delete Spatial Anchors Accounts", + "description": "Deletes the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" + } }, { - "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/read", - "display": { - "provider": "Microsoft.MixedReality", - "resource": "SpatialAnchorsAccounts", - "operation": "Get Spatial Anchors Accounts", - "description": "Gets the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" - } + "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/read", + "display": { + "provider": "Microsoft.MixedReality", + "resource": "SpatialAnchorsAccounts", + "operation": "Get Spatial Anchors Accounts", + "description": "Gets the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" + } }, { - "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/write", - "display": { - "provider": "Microsoft.MixedReality", - "resource": "SpatialAnchorsAccounts", - "operation": "Update Spatial Anchors Accounts", - "description": "Updates the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" - } + "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/write", + "display": { + "provider": "Microsoft.MixedReality", + "resource": "SpatialAnchorsAccounts", + "operation": "Update Spatial Anchors Accounts", + "description": "Updates the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" + } } - ], - "nextLink" : null + ], + "nextLink": null } } } diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Delete.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Delete.json index 5358d047394d..e6be2658eacd 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Delete.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Delete.json @@ -1,15 +1,13 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "spatialAnchorsAccountName": "alpha", - "api-version": "2019-02-28-preview" - }, - "responses": { - "200": { - }, - "204": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "spatialAnchorsAccountName": "alpha", + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Get.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Get.json index 45d9538d596f..559debcf1dd4 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Get.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Get.json @@ -1,25 +1,24 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "spatialAnchorsAccountName": "alpha", - "api-version": "2019-02-28-preview" - }, - "responses": { - "200": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" - }, - "tags": {}, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "spatialAnchorsAccountName": "alpha", + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" + }, + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetByResourceGroup.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetByResourceGroup.json index d72b2a249099..0612ad7a5d0b 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetByResourceGroup.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetByResourceGroup.json @@ -10,35 +10,29 @@ "body": { "value": [ { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" }, { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/omega", - "name": "omega", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/omega", + "name": "omega", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" } ], - "nextLink" : "https://aka.ms/&^FDKKAR" + "nextLink": "https://aka.ms/&^FDKKAR" } } } diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetBySubscription.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetBySubscription.json index 3ea42319137a..9c0dd3a9a744 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetBySubscription.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetBySubscription.json @@ -9,35 +9,29 @@ "body": { "value": [ { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" }, { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/omega", - "name": "omega", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/omega", + "name": "omega", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" } ], - "nextLink" : "https://aka.ms/&^FDKKAR" + "nextLink": "https://aka.ms/&^FDKKAR" } } } diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetKeys.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetKeys.json index 169223d4759e..c8e5fecdbbf8 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetKeys.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/GetKeys.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "spatialAnchorsAccountName": "alpha", - "api-version": "2019-02-28-preview" - }, - "responses": { - "200": { - "body":{ - "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", - "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "spatialAnchorsAccountName": "alpha", + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": { + "body": { + "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", + "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Patch.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Patch.json index 783e3da419ac..71c450c42c80 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Patch.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Patch.json @@ -1,34 +1,33 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "spatialAnchorsAccountName": "alpha", - "api-version": "2019-02-28-preview", - "spatialAnchorsAccount": { - "Tags": { - "heroine": "juliet", - "hero": "romeo" - } - } - }, - "responses": { - "200": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" - }, - "tags": { - "heroine": "juliet", - "hero": "romeo" - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "spatialAnchorsAccountName": "alpha", + "api-version": "2019-02-28-preview", + "spatialAnchorsAccount": { + "Tags": { + "heroine": "juliet", + "hero": "romeo" + } } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" + }, + "tags": { + "heroine": "juliet", + "hero": "romeo" + }, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + } + } + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Put.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Put.json index 833a3047a8d4..062b85028515 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Put.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/Put.json @@ -1,42 +1,40 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "spatialAnchorsAccountName": "alpha", - "api-version": "2019-02-28-preview", - "spatialAnchorsAccount": { - "location": "Global" - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "spatialAnchorsAccountName": "alpha", + "api-version": "2019-02-28-preview", + "spatialAnchorsAccount": { + "location": "Global" + } + }, + "responses": { + "201": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" + }, + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + } }, - "responses": { - "201": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" - }, - "tags": {}, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" - } + "200": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" }, - "200": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" - }, - "tags": {}, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" - } - } + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/RegenerateKey.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/RegenerateKey.json index 7821d459c4c7..c26a9a4d3836 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/RegenerateKey.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/examples/SpatialAnchorsAccount/RegenerateKey.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "spatialAnchorsAccountName": "alpha", - "api-version": "2019-02-28-preview", - "spatialAnchorsAccountKeyRegenerate": { - "serial": 1 - } - }, - "responses": { - "200": { - "body":{ - "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", - "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "spatialAnchorsAccountName": "alpha", + "api-version": "2019-02-28-preview", + "spatialAnchorsAccountKeyRegenerate": { + "serial": 1 } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", + "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" + } + } + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/mixedreality.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/mixedreality.json index 2e3f1b9d953a..ca3cf310179d 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/mixedreality.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-02-28-preview/mixedreality.json @@ -33,7 +33,7 @@ } } }, - "paths" : { + "paths": { "/providers/Microsoft.MixedReality/operations": { "get": { "operationId": "Operations_List", @@ -42,7 +42,9 @@ ], "description": "Exposing Available Operations", "x-ms-examples": { - "OperationList": { "$ref": "./examples/GetOperationList.json" } + "OperationList": { + "$ref": "./examples/GetOperationList.json" + } }, "parameters": [ { @@ -76,7 +78,9 @@ ], "description": "Check Name Availability for global uniqueness", "x-ms-examples": { - "CheckLocalNameAvailability": { "$ref": "./examples/CheckLocalNameAvailability.json" } + "CheckLocalNameAvailability": { + "$ref": "./examples/CheckLocalNameAvailability.json" + } }, "parameters": [ { @@ -108,15 +112,18 @@ } } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/spatialAnchorsAccounts" : { + "/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/spatialAnchorsAccounts": { "get": { "operationId": "SpatialAnchorsAccounts_ListBySubscription", "tags": [ - "Resource", "Proxy" + "Resource", + "Proxy" ], "description": "List Spatial Anchors Accounts by Subscription", "x-ms-examples": { - "SpatialAnchorsAccountListBySubscription": { "$ref": "./examples/SpatialAnchorsAccount/GetBySubscription.json" } + "SpatialAnchorsAccountListBySubscription": { + "$ref": "./examples/SpatialAnchorsAccount/GetBySubscription.json" + } }, "parameters": [ { @@ -145,7 +152,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts" : { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts": { "get": { "operationId": "SpatialAnchorsAccounts_ListByResourceGroup", "tags": [ @@ -153,7 +160,9 @@ ], "description": "List Resources by Resource Group", "x-ms-examples": { - "ResourceGet": { "$ref": "./examples/SpatialAnchorsAccount/GetByResourceGroup.json" } + "ResourceGet": { + "$ref": "./examples/SpatialAnchorsAccount/GetByResourceGroup.json" + } }, "parameters": [ { @@ -185,7 +194,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{spatialAnchorsAccountName}" : { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{spatialAnchorsAccountName}": { "delete": { "operationId": "SpatialAnchorsAccounts_Delete", "tags": [ @@ -193,7 +202,9 @@ ], "description": "Delete a Spatial Anchors Account.", "x-ms-examples": { - "ResourceDelete": { "$ref": "./examples/SpatialAnchorsAccount/Delete.json" } + "ResourceDelete": { + "$ref": "./examples/SpatialAnchorsAccount/Delete.json" + } }, "parameters": [ { @@ -231,7 +242,9 @@ ], "description": "Retrieve a Spatial Anchors Account.", "x-ms-examples": { - "ResourceGet": { "$ref": "./examples/SpatialAnchorsAccount/Get.json" } + "ResourceGet": { + "$ref": "./examples/SpatialAnchorsAccount/Get.json" + } }, "parameters": [ { @@ -269,7 +282,9 @@ ], "description": "Updating a Spatial Anchors Account", "x-ms-examples": { - "ResourceCreateOrUpdate": { "$ref": "./examples/SpatialAnchorsAccount/Patch.json" } + "ResourceCreateOrUpdate": { + "$ref": "./examples/SpatialAnchorsAccount/Patch.json" + } }, "parameters": [ { @@ -310,7 +325,9 @@ ], "description": "Creating or Updating a Spatial Anchors Account.", "x-ms-examples": { - "ResourceCreate": { "$ref": "./examples/SpatialAnchorsAccount/Put.json" } + "ResourceCreate": { + "$ref": "./examples/SpatialAnchorsAccount/Put.json" + } }, "parameters": [ { @@ -351,7 +368,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{spatialAnchorsAccountName}/keys" : { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{spatialAnchorsAccountName}/keys": { "get": { "operationId": "SpatialAnchorsAccounts_GetKeys", "tags": [ @@ -359,7 +376,9 @@ ], "description": "Get Both of the 2 Keys of a Spatial Anchors Account", "x-ms-examples": { - "ResourceRegenerateKey": { "$ref": "./examples/SpatialAnchorsAccount/GetKeys.json" } + "ResourceRegenerateKey": { + "$ref": "./examples/SpatialAnchorsAccount/GetKeys.json" + } }, "parameters": [ { @@ -397,7 +416,9 @@ ], "description": "Regenerate 1 Key of a Spatial Anchors Account", "x-ms-examples": { - "ResourceRegenerateKey": { "$ref": "./examples/SpatialAnchorsAccount/RegenerateKey.json" } + "ResourceRegenerateKey": { + "$ref": "./examples/SpatialAnchorsAccount/RegenerateKey.json" + } }, "parameters": [ { @@ -433,11 +454,14 @@ } } }, - "definitions" : { - "CheckNameAvailabilityRequest" : { + "definitions": { + "CheckNameAvailabilityRequest": { "description": "Check Name Availability Request", "type": "object", - "required" : ["name", "type"], + "required": [ + "name", + "type" + ], "properties": { "name": { "description": "Resource Name To Verify", @@ -449,18 +473,20 @@ } } }, - "CheckNameAvailabilityResponse" : { + "CheckNameAvailabilityResponse": { "description": "Check Name Availability Response", "type": "object", - "required" : ["nameAvailable"], + "required": [ + "nameAvailable" + ], "properties": { "nameAvailable": { "description": "if name Available", - "$ref" : "#/definitions/NameAvailability" + "$ref": "#/definitions/NameAvailability" }, "reason": { "description": "Resource Name To Verify", - "$ref" : "#/definitions/NameUnavailableReason" + "$ref": "#/definitions/NameUnavailableReason" }, "message": { "description": "detail message", @@ -471,7 +497,10 @@ "ErrorResponse": { "description": "Response on Error", "type": "object", - "required" : ["message", "code"], + "required": [ + "message", + "code" + ], "properties": { "message": { "description": "Describes the error in detail and provides debugging information", @@ -508,7 +537,12 @@ "OperationDisplay": { "description": "The object that represents the operation.", "type": "object", - "required" : ["provider", "resource", "operation", "description"], + "required": [ + "provider", + "resource", + "operation", + "description" + ], "properties": { "provider": { "description": "Service provider: Microsoft.ResourceProvider", @@ -532,24 +566,24 @@ "description": "Whether or not the name is available.", "type": "string", "enum": [ - "true", - "false" + "true", + "false" ], "x-ms-enum": { - "name": "NameAvailability", - "modelAsString": true + "name": "NameAvailability", + "modelAsString": true } }, "NameUnavailableReason": { "description": "reason of name unavailable.", "type": "string", "enum": [ - "Invalid", - "AlreadyExists" + "Invalid", + "AlreadyExists" ], "x-ms-enum": { - "name": "NameUnavailableReason", - "modelAsString": true + "name": "NameUnavailableReason", + "modelAsString": true } }, "OperationList": { @@ -568,11 +602,15 @@ } } }, - "SpatialAnchorsAccount" : { - "allOf" : [{ "$ref" : "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource"}], + "SpatialAnchorsAccount": { + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" + } + ], "description": "SpatialAnchorsAccount Response.", "type": "object", - "properties" :{ + "properties": { "properties": { "x-ms-client-flatten": true, "description": "Property bag.", @@ -580,40 +618,51 @@ } } }, - "SpatialAnchorsAccountKeys" : { + "SpatialAnchorsAccountKeys": { "description": "Spatial Anchors Account Keys", "type": "object", "properties": { - "primaryKey" : { + "primaryKey": { "description": "value of primary key.", "readOnly": true, "type": "string" }, - "secondaryKey" : { + "secondaryKey": { "description": "value of secondary key.", "readOnly": true, "type": "string" } - } + } }, - "SpatialAnchorsAccountKeyRegenerateRequest" : { + "SpatialAnchorsAccountKeyRegenerateRequest": { "description": "Spatial Anchors Account Regenerate Key", "type": "object", "properties": { - "serial" : { - "type" : "integer", - "enum": [1, 2], - "default" : 1, - "x-ms-enum" : { - "name" : "Serial", - "values" : [ - {"value": 1, "description": "The Primary Key", "name": "Primary"}, - {"value": 2, "description": "The Secondary Key", "name": "Secondary"} + "serial": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "default": 1, + "x-ms-enum": { + "name": "Serial", + "values": [ + { + "value": 1, + "description": "The Primary Key", + "name": "Primary" + }, + { + "value": 2, + "description": "The Secondary Key", + "name": "Secondary" + } ] }, "description": "serial of key to be regenerated" } - } + } }, "SpatialAnchorsAccountProperties": { "description": "Spatial Anchors Account Customize Properties", @@ -657,12 +706,12 @@ "required": true, "type": "string" }, - "checkNameAvailabilityParameter" : { + "checkNameAvailabilityParameter": { "name": "checkNameAvailability", "description": "Check Name Availability Request.", "in": "body", "schema": { - "$ref": "#/definitions/CheckNameAvailabilityRequest" + "$ref": "#/definitions/CheckNameAvailabilityRequest" }, "required": true, "x-ms-parameter-location": "method" @@ -695,7 +744,7 @@ "required": true, "schema": { "$ref": "#/definitions/SpatialAnchorsAccountKeyRegenerateRequest" - }, + }, "x-ms-parameter-location": "method", "description": "Specifying which key to be regenerated." }, @@ -715,7 +764,7 @@ "description": "Spatial Anchors Account parameter.", "in": "body", "schema": { - "$ref": "#/definitions/SpatialAnchorsAccount" + "$ref": "#/definitions/SpatialAnchorsAccount" }, "required": true, "x-ms-parameter-location": "method" @@ -728,4 +777,4 @@ "type": "string" } } -} \ No newline at end of file +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/common.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/common.json index f6f2d686fe76..34573e350c6a 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/common.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/common.json @@ -5,36 +5,47 @@ "description": "Mixed Reality Resource Provider API", "version": "2019-12-02-preview" }, - "definitions" : { - "AccountKeys" : { + "definitions": { + "AccountKeys": { "description": "Developer Keys of account", "type": "object", "properties": { - "primaryKey" : { + "primaryKey": { "description": "value of primary key.", "readOnly": true, "type": "string" }, - "secondaryKey" : { + "secondaryKey": { "description": "value of secondary key.", "readOnly": true, "type": "string" } } }, - "AccountKeyRegenerateRequest" : { + "AccountKeyRegenerateRequest": { "description": "Request for account key regeneration", "type": "object", "properties": { - "serial" : { - "type" : "integer", - "enum": [1, 2], - "default" : 1, - "x-ms-enum" : { - "name" : "Serial", - "values" : [ - {"value": 1, "description": "The Primary Key", "name": "Primary"}, - {"value": 2, "description": "The Secondary Key", "name": "Secondary"} + "serial": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "default": 1, + "x-ms-enum": { + "name": "Serial", + "values": [ + { + "value": 1, + "description": "The Primary Key", + "name": "Primary" + }, + { + "value": 2, + "description": "The Secondary Key", + "name": "Secondary" + } ] }, "description": "serial of key to be regenerated" @@ -44,7 +55,10 @@ "ErrorResponse": { "description": "Response on Error", "type": "object", - "required" : ["message", "code"], + "required": [ + "message", + "code" + ], "properties": { "message": { "description": "Describes the error in detail and provides debugging information", @@ -140,4 +154,4 @@ "type": "string" } } -} \ No newline at end of file +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/proxy/CheckNameAvailabilityForLocalUniqueness.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/proxy/CheckNameAvailabilityForLocalUniqueness.json index b9d3f11ccb26..6993389a3f5a 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/proxy/CheckNameAvailabilityForLocalUniqueness.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/proxy/CheckNameAvailabilityForLocalUniqueness.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "location" : "Global", - "checkNameAvailability": { - "name" : "alpha", - "type" : "SpatialAnchorsAccount" - }, - "api-version": "2019-02-28-preview" + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "location": "Global", + "checkNameAvailability": { + "name": "alpha", + "type": "SpatialAnchorsAccount" }, - "responses": { - "200": { - "body": { - "nameAvailable": "false", - "reason" : "AlreadyExists", - "message" : "..." - } - } + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": { + "body": { + "nameAvailable": "false", + "reason": "AlreadyExists", + "message": "..." + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/proxy/ExposingAvailableOperations.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/proxy/ExposingAvailableOperations.json index b44cb270d6a7..3fa4a3e973be 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/proxy/ExposingAvailableOperations.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/proxy/ExposingAvailableOperations.json @@ -1,50 +1,50 @@ { - "parameters": { - "api-version": "2019-02-28-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "Microsoft.MixedReality/register/action", - "display": { - "provider": "Microsoft.MixedReality", - "resource": "Mixed Reality resource provider", - "operation": "Registers the Mixed Reality resource provider", - "description": "Registers a subscription for the Mixed Reality resource provider." - } - }, - { - "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/delete", - "display": { - "provider": "Microsoft.MixedReality", - "resource": "SpatialAnchorsAccounts", - "operation": "Delete Spatial Anchors Accounts", - "description": "Deletes the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" - } - }, - { - "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/read", - "display": { - "provider": "Microsoft.MixedReality", - "resource": "SpatialAnchorsAccounts", - "operation": "Get Spatial Anchors Accounts", - "description": "Gets the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" - } - }, - { - "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/write", - "display": { - "provider": "Microsoft.MixedReality", - "resource": "SpatialAnchorsAccounts", - "operation": "Update Spatial Anchors Accounts", - "description": "Updates the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" - } - } - ], - "nextLink" : null + "parameters": { + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.MixedReality/register/action", + "display": { + "provider": "Microsoft.MixedReality", + "resource": "Mixed Reality resource provider", + "operation": "Registers the Mixed Reality resource provider", + "description": "Registers a subscription for the Mixed Reality resource provider." } - } + }, + { + "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/delete", + "display": { + "provider": "Microsoft.MixedReality", + "resource": "SpatialAnchorsAccounts", + "operation": "Delete Spatial Anchors Accounts", + "description": "Deletes the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" + } + }, + { + "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/read", + "display": { + "provider": "Microsoft.MixedReality", + "resource": "SpatialAnchorsAccounts", + "operation": "Get Spatial Anchors Accounts", + "description": "Gets the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" + } + }, + { + "name": "Microsoft.MixedReality/SpatialAnchorsAccounts/write", + "display": { + "provider": "Microsoft.MixedReality", + "resource": "SpatialAnchorsAccounts", + "operation": "Update Spatial Anchors Accounts", + "description": "Updates the resource for Microsoft.MixedReality/SpatialAnchorsAccounts" + } + } + ], + "nextLink": null + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Delete.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Delete.json index 047cdc8d3012..87aa2cf8766c 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Delete.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Delete.json @@ -1,15 +1,13 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "RemoteRenderingAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview" - }, - "responses": { - "200": { - }, - "204": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "RemoteRenderingAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Get.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Get.json index 16a66f145b0b..8dab265d753e 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Get.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Get.json @@ -1,24 +1,23 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "RemoteRenderingAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview" - }, - "responses": { - "200": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" - }, - "tags": {}, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/RemoteRenderingAccounts" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "RemoteRenderingAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" + }, + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/RemoteRenderingAccounts" + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetByResourceGroup.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetByResourceGroup.json index a5ca226fda71..db4928093467 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetByResourceGroup.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetByResourceGroup.json @@ -10,33 +10,27 @@ "body": { "value": [ { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/RemoteRenderingAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/RemoteRenderingAccounts" }, { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/omega", - "name": "omega", - "type": "Microsoft.MixedReality/RemoteRenderingAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/omega", + "name": "omega", + "type": "Microsoft.MixedReality/RemoteRenderingAccounts" } ], - "nextLink" : "https://aka.ms/&^FDKKAR" + "nextLink": "https://aka.ms/&^FDKKAR" } } } diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetBySubscription.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetBySubscription.json index 8a82e54d0224..5fa17b86258d 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetBySubscription.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetBySubscription.json @@ -9,33 +9,27 @@ "body": { "value": [ { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/RemoteRenderingAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/RemoteRenderingAccounts" }, { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/omega", - "name": "omega", - "type": "Microsoft.MixedReality/RemoteRenderingAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/omega", + "name": "omega", + "type": "Microsoft.MixedReality/RemoteRenderingAccounts" } ], - "nextLink" : "https://aka.ms/&^FDKKAR" + "nextLink": "https://aka.ms/&^FDKKAR" } } } diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetKeys.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetKeys.json index 9fa340013c19..e613ee2d463f 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetKeys.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/GetKeys.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "RemoteRenderingAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview" - }, - "responses": { - "200": { - "body":{ - "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", - "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "RemoteRenderingAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": { + "body": { + "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", + "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Patch.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Patch.json index d359e2bd4c3b..8c7e014ea358 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Patch.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Patch.json @@ -1,33 +1,32 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "RemoteRenderingAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview", - "remoteRenderingAccount": { - "Tags": { - "heroine": "juliet", - "hero": "romeo" - } - } - }, - "responses": { - "200": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" - }, - "tags": { - "heroine": "juliet", - "hero": "romeo" - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/RemoteRenderingAccounts" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "RemoteRenderingAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview", + "remoteRenderingAccount": { + "Tags": { + "heroine": "juliet", + "hero": "romeo" + } } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" + }, + "tags": { + "heroine": "juliet", + "hero": "romeo" + }, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/RemoteRenderingAccounts" + } + } + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Put.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Put.json index e4868edd578b..cabef07b573e 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Put.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/Put.json @@ -1,40 +1,38 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "RemoteRenderingAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview", - "remoteRenderingAccount": { - "location": "EastUs2" - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "RemoteRenderingAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview", + "remoteRenderingAccount": { + "location": "EastUs2" + } + }, + "responses": { + "201": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" + }, + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/RemoteRenderingAccounts" + } }, - "responses": { - "201": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" - }, - "tags": {}, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/RemoteRenderingAccounts" - } + "200": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" }, - "200": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5" - }, - "tags": {}, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/RemoteRenderingAccounts" - } - } + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/RemoteRenderingAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/RemoteRenderingAccounts" + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/RegenerateKey.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/RegenerateKey.json index 3900ffeb770d..f8543269f50a 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/RegenerateKey.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/remote-rendering/RegenerateKey.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "RemoteRenderingAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview", - "regenerate": { - "serial": 1 - } - }, - "responses": { - "200": { - "body":{ - "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", - "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "RemoteRenderingAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview", + "regenerate": { + "serial": 1 } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", + "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" + } + } + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Delete.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Delete.json index 7b10f55a47e9..ea9b830ec4e7 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Delete.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Delete.json @@ -1,15 +1,13 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview" - }, - "responses": { - "200": { - }, - "204": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Get.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Get.json index 2b1fbbc39420..523a779096ea 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Get.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Get.json @@ -1,25 +1,24 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview" - }, - "responses": { - "200": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" - }, - "tags": {}, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" + }, + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetByResourceGroup.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetByResourceGroup.json index d72b2a249099..0612ad7a5d0b 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetByResourceGroup.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetByResourceGroup.json @@ -10,35 +10,29 @@ "body": { "value": [ { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" }, { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/omega", - "name": "omega", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/omega", + "name": "omega", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" } ], - "nextLink" : "https://aka.ms/&^FDKKAR" + "nextLink": "https://aka.ms/&^FDKKAR" } } } diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetBySubscription.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetBySubscription.json index 3ea42319137a..9c0dd3a9a744 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetBySubscription.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetBySubscription.json @@ -9,35 +9,29 @@ "body": { "value": [ { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" }, { - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" }, - "tags": { - - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/omega", - "name": "omega", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/omega", + "name": "omega", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" } ], - "nextLink" : "https://aka.ms/&^FDKKAR" + "nextLink": "https://aka.ms/&^FDKKAR" } } } diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetKeys.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetKeys.json index 64df5ac8ed04..8e9a15de0201 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetKeys.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/GetKeys.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview" - }, - "responses": { - "200": { - "body":{ - "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", - "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview" + }, + "responses": { + "200": { + "body": { + "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", + "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Patch.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Patch.json index 752461eca11d..d472ecce7812 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Patch.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Patch.json @@ -1,34 +1,33 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview", - "spatialAnchorsAccount": { - "Tags": { - "heroine": "juliet", - "hero": "romeo" - } - } - }, - "responses": { - "200": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" - }, - "tags": { - "heroine": "juliet", - "hero": "romeo" - }, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview", + "spatialAnchorsAccount": { + "Tags": { + "heroine": "juliet", + "hero": "romeo" + } } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" + }, + "tags": { + "heroine": "juliet", + "hero": "romeo" + }, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + } + } + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Put.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Put.json index 32a3861eae99..e325b2ce32ff 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Put.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/Put.json @@ -1,42 +1,40 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview", - "spatialAnchorsAccount": { - "location": "EastUs2" - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview", + "spatialAnchorsAccount": { + "location": "EastUs2" + } + }, + "responses": { + "201": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" + }, + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + } }, - "responses": { - "201": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" - }, - "tags": {}, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" - } + "200": { + "body": { + "properties": { + "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", + "accountDomain": "mixedreality.azure.com" }, - "200": { - "body":{ - "properties": - { - "accountId": "5007a881-6fb4-4c93-be52-942e355944a5", - "accountDomain": "mixedreality.azure.com" - }, - "tags": {}, - "location": "Global", - "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", - "name": "alpha", - "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" - } - } + "tags": {}, + "location": "Global", + "id": "/subscriptions/8f8a44e1-1711-4fc4-ae53-8bcc11fc7c3c/resourceGroups/xiangyul/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/alpha", + "name": "alpha", + "type": "Microsoft.MixedReality/SpatialAnchorsAccounts" + } } -} \ No newline at end of file + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/RegenerateKey.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/RegenerateKey.json index 9e6531645848..1d38afa29071 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/RegenerateKey.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/examples/spatial-anchors/RegenerateKey.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "mrsecf", - "resourceType": "SpatialAnchorsAccount", - "accountName": "alpha", - "api-version": "2019-02-28-preview", - "regenerate": { - "serial": 1 - } - }, - "responses": { - "200": { - "body":{ - "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", - "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" - } - } + "parameters": { + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "mrsecf", + "resourceType": "SpatialAnchorsAccount", + "accountName": "alpha", + "api-version": "2019-02-28-preview", + "regenerate": { + "serial": 1 } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "primaryKey": "vMAlcI/j25TwDs8hjTorto3JQkoiqZAXKsFq0rYnSNc=", + "secondaryKey": "N4umIGhJt8LgnMMMBpwFOxVOS9zpxHxSHy1TJhN3hU4=" + } + } + } +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/proxy.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/proxy.json index 791cec771898..080123834d54 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/proxy.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/proxy.json @@ -33,8 +33,8 @@ } } }, - "paths" : { - "/providers/Microsoft.MixedReality/operations" : { + "paths": { + "/providers/Microsoft.MixedReality/operations": { "get": { "operationId": "Operations_List", "tags": [ @@ -42,7 +42,9 @@ ], "description": "Exposing Available Operations", "x-ms-examples": { - "OperationPage": { "$ref": "./examples/proxy/ExposingAvailableOperations.json" } + "OperationPage": { + "$ref": "./examples/proxy/ExposingAvailableOperations.json" + } }, "parameters": [ { @@ -68,7 +70,7 @@ } } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/locations/{location}/checkNameAvailability" : { + "/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/locations/{location}/checkNameAvailability": { "post": { "operationId": "CheckNameAvailabilityLocal", "tags": [ @@ -76,7 +78,9 @@ ], "description": "Check Name Availability for local uniqueness", "x-ms-examples": { - "CheckLocalNameAvailability": { "$ref": "./examples/proxy/CheckNameAvailabilityForLocalUniqueness.json" } + "CheckLocalNameAvailability": { + "$ref": "./examples/proxy/CheckNameAvailabilityForLocalUniqueness.json" + } }, "parameters": [ { @@ -109,11 +113,14 @@ } } }, - "definitions" : { - "CheckNameAvailabilityRequest" : { + "definitions": { + "CheckNameAvailabilityRequest": { "description": "Check Name Availability Request", "type": "object", - "required" : ["name", "type"], + "required": [ + "name", + "type" + ], "properties": { "name": { "description": "Resource Name To Verify", @@ -125,18 +132,20 @@ } } }, - "CheckNameAvailabilityResponse" : { + "CheckNameAvailabilityResponse": { "description": "Check Name Availability Response", "type": "object", - "required" : ["nameAvailable"], + "required": [ + "nameAvailable" + ], "properties": { "nameAvailable": { "description": "if name Available", - "$ref" : "#/definitions/NameAvailability" + "$ref": "#/definitions/NameAvailability" }, "reason": { "description": "Resource Name To Verify", - "$ref" : "#/definitions/NameUnavailableReason" + "$ref": "#/definitions/NameUnavailableReason" }, "message": { "description": "detail message", @@ -161,7 +170,12 @@ "OperationDisplay": { "description": "The object that represents the operation.", "type": "object", - "required" : ["provider", "resource", "operation", "description"], + "required": [ + "provider", + "resource", + "operation", + "description" + ], "properties": { "provider": { "description": "Service provider: Microsoft.ResourceProvider", @@ -185,24 +199,24 @@ "description": "Whether or not the name is available.", "type": "string", "enum": [ - "true", - "false" + "true", + "false" ], "x-ms-enum": { - "name": "NameAvailability", - "modelAsString": true + "name": "NameAvailability", + "modelAsString": true } }, "NameUnavailableReason": { "description": "reason of name unavailable.", "type": "string", "enum": [ - "Invalid", - "AlreadyExists" + "Invalid", + "AlreadyExists" ], "x-ms-enum": { - "name": "NameUnavailableReason", - "modelAsString": true + "name": "NameUnavailableReason", + "modelAsString": true } }, "OperationPage": { @@ -223,15 +237,15 @@ } }, "parameters": { - "checkNameAvailabilityParameter" : { + "checkNameAvailabilityParameter": { "name": "checkNameAvailability", "description": "Check Name Availability Request.", "in": "body", "schema": { - "$ref": "#/definitions/CheckNameAvailabilityRequest" + "$ref": "#/definitions/CheckNameAvailabilityRequest" }, "required": true, "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/remote-rendering.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/remote-rendering.json index 49836974c477..b02ed2643216 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/remote-rendering.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/remote-rendering.json @@ -33,16 +33,19 @@ } } }, - "paths" : { - "/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/remoteRenderingAccounts" : { + "paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/remoteRenderingAccounts": { "get": { "operationId": "RemoteRenderingAccounts_ListBySubscription", "tags": [ - "Resource", "Proxy" + "Resource", + "Proxy" ], "description": "List Remote Rendering Accounts by Subscription", "x-ms-examples": { - "RemoteRenderingAccountPageBySubscription": { "$ref": "./examples/remote-rendering/GetBySubscription.json" } + "RemoteRenderingAccountPageBySubscription": { + "$ref": "./examples/remote-rendering/GetBySubscription.json" + } }, "parameters": [ { @@ -71,7 +74,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts" : { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts": { "get": { "operationId": "RemoteRenderingAccounts_ListByResourceGroup", "tags": [ @@ -79,7 +82,9 @@ ], "description": "List Resources by Resource Group", "x-ms-examples": { - "ResourceGet": { "$ref": "./examples/remote-rendering/GetByResourceGroup.json" } + "ResourceGet": { + "$ref": "./examples/remote-rendering/GetByResourceGroup.json" + } }, "parameters": [ { @@ -111,7 +116,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}" : { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}": { "delete": { "operationId": "RemoteRenderingAccounts_Delete", "tags": [ @@ -119,7 +124,9 @@ ], "description": "Delete a Remote Rendering Account.", "x-ms-examples": { - "ResourceDelete": { "$ref": "./examples/remote-rendering/Delete.json" } + "ResourceDelete": { + "$ref": "./examples/remote-rendering/Delete.json" + } }, "parameters": [ { @@ -157,7 +164,9 @@ ], "description": "Retrieve a Remote Rendering Account.", "x-ms-examples": { - "ResourceGet": { "$ref": "./examples/remote-rendering/Get.json" } + "ResourceGet": { + "$ref": "./examples/remote-rendering/Get.json" + } }, "parameters": [ { @@ -195,7 +204,9 @@ ], "description": "Updating a Remote Rendering Account", "x-ms-examples": { - "ResourceCreateOrUpdate": { "$ref": "./examples/remote-rendering/Patch.json" } + "ResourceCreateOrUpdate": { + "$ref": "./examples/remote-rendering/Patch.json" + } }, "parameters": [ { @@ -236,7 +247,9 @@ ], "description": "Creating or Updating a Remote Rendering Account.", "x-ms-examples": { - "ResourceCreate": { "$ref": "./examples/remote-rendering/Put.json" } + "ResourceCreate": { + "$ref": "./examples/remote-rendering/Put.json" + } }, "parameters": [ { @@ -277,7 +290,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}/keys" : { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}/keys": { "get": { "operationId": "RemoteRenderingAccounts_GetKeys", "tags": [ @@ -285,7 +298,9 @@ ], "description": "Get Both of the 2 Keys of a Remote Rendering Account", "x-ms-examples": { - "ResourceGetKey": { "$ref": "./examples/remote-rendering/GetKeys.json" } + "ResourceGetKey": { + "$ref": "./examples/remote-rendering/GetKeys.json" + } }, "parameters": [ { @@ -323,7 +338,9 @@ ], "description": "Regenerate specified Key of a Remote Rendering Account", "x-ms-examples": { - "ResourceRegenerateKey": { "$ref": "./examples/remote-rendering/RegenerateKey.json" } + "ResourceRegenerateKey": { + "$ref": "./examples/remote-rendering/RegenerateKey.json" + } }, "parameters": [ { @@ -359,12 +376,16 @@ } } }, - "definitions" : { - "RemoteRenderingAccount" : { - "allOf" : [{ "$ref" : "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource"}], + "definitions": { + "RemoteRenderingAccount": { + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" + } + ], "description": "RemoteRenderingAccount Response.", "type": "object", - "properties" :{ + "properties": { "properties": { "x-ms-client-flatten": true, "description": "Property bag.", @@ -396,10 +417,10 @@ "description": "Remote Rendering Account parameter.", "in": "body", "schema": { - "$ref": "#/definitions/RemoteRenderingAccount" + "$ref": "#/definitions/RemoteRenderingAccount" }, "required": true, "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/spatial-anchors.json b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/spatial-anchors.json index fa7dc52ed3a4..84f77495791d 100644 --- a/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/spatial-anchors.json +++ b/specification/mixedreality/resource-manager/Microsoft.MixedReality/preview/2019-12-02-preview/spatial-anchors.json @@ -33,16 +33,19 @@ } } }, - "paths" : { - "/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/spatialAnchorsAccounts" : { + "paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/spatialAnchorsAccounts": { "get": { "operationId": "SpatialAnchorsAccounts_ListBySubscription", "tags": [ - "Resource", "Proxy" + "Resource", + "Proxy" ], "description": "List Spatial Anchors Accounts by Subscription", "x-ms-examples": { - "SpatialAnchorsAccountPageBySubscription": { "$ref": "./examples/spatial-anchors/GetBySubscription.json" } + "SpatialAnchorsAccountPageBySubscription": { + "$ref": "./examples/spatial-anchors/GetBySubscription.json" + } }, "parameters": [ { @@ -71,7 +74,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts" : { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts": { "get": { "operationId": "SpatialAnchorsAccounts_ListByResourceGroup", "tags": [ @@ -79,7 +82,9 @@ ], "description": "List Resources by Resource Group", "x-ms-examples": { - "ResourceGet": { "$ref": "./examples/spatial-anchors/GetByResourceGroup.json" } + "ResourceGet": { + "$ref": "./examples/spatial-anchors/GetByResourceGroup.json" + } }, "parameters": [ { @@ -111,7 +116,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}" : { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}": { "delete": { "operationId": "SpatialAnchorsAccounts_Delete", "tags": [ @@ -119,7 +124,9 @@ ], "description": "Delete a Spatial Anchors Account.", "x-ms-examples": { - "ResourceDelete": { "$ref": "./examples/spatial-anchors/Delete.json" } + "ResourceDelete": { + "$ref": "./examples/spatial-anchors/Delete.json" + } }, "parameters": [ { @@ -157,7 +164,9 @@ ], "description": "Retrieve a Spatial Anchors Account.", "x-ms-examples": { - "ResourceGet": { "$ref": "./examples/spatial-anchors/Get.json" } + "ResourceGet": { + "$ref": "./examples/spatial-anchors/Get.json" + } }, "parameters": [ { @@ -195,7 +204,9 @@ ], "description": "Updating a Spatial Anchors Account", "x-ms-examples": { - "ResourceCreateOrUpdate": { "$ref": "./examples/spatial-anchors/Patch.json" } + "ResourceCreateOrUpdate": { + "$ref": "./examples/spatial-anchors/Patch.json" + } }, "parameters": [ { @@ -236,7 +247,9 @@ ], "description": "Creating or Updating a Spatial Anchors Account.", "x-ms-examples": { - "ResourceCreate": { "$ref": "./examples/spatial-anchors/Put.json" } + "ResourceCreate": { + "$ref": "./examples/spatial-anchors/Put.json" + } }, "parameters": [ { @@ -277,7 +290,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}/keys" : { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}/keys": { "get": { "operationId": "SpatialAnchorsAccounts_GetKeys", "tags": [ @@ -285,7 +298,9 @@ ], "description": "Get Both of the 2 Keys of a Spatial Anchors Account", "x-ms-examples": { - "ResourceGetKey": { "$ref": "./examples/spatial-anchors/GetKeys.json" } + "ResourceGetKey": { + "$ref": "./examples/spatial-anchors/GetKeys.json" + } }, "parameters": [ { @@ -323,7 +338,9 @@ ], "description": "Regenerate specified Key of a Spatial Anchors Account", "x-ms-examples": { - "ResourceRegenerateKey": { "$ref": "./examples/spatial-anchors/RegenerateKey.json" } + "ResourceRegenerateKey": { + "$ref": "./examples/spatial-anchors/RegenerateKey.json" + } }, "parameters": [ { @@ -359,12 +376,16 @@ } } }, - "definitions" : { - "SpatialAnchorsAccount" : { - "allOf" : [{ "$ref" : "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource"}], + "definitions": { + "SpatialAnchorsAccount": { + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" + } + ], "description": "SpatialAnchorsAccount Response.", "type": "object", - "properties" :{ + "properties": { "properties": { "x-ms-client-flatten": true, "description": "Property bag.", @@ -396,10 +417,10 @@ "description": "Spatial Anchors Account parameter.", "in": "body", "schema": { - "$ref": "#/definitions/SpatialAnchorsAccount" + "$ref": "#/definitions/SpatialAnchorsAccount" }, "required": true, "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/monitor/data-plane/preview/2018-09-01-preview/examples/AzureMetrics_IngestMetrics.json b/specification/monitor/data-plane/preview/2018-09-01-preview/examples/AzureMetrics_IngestMetrics.json index 4c8dadb212e1..0f4ffddf4c84 100644 --- a/specification/monitor/data-plane/preview/2018-09-01-preview/examples/AzureMetrics_IngestMetrics.json +++ b/specification/monitor/data-plane/preview/2018-09-01-preview/examples/AzureMetrics_IngestMetrics.json @@ -1,47 +1,47 @@ { - "parameters": { - "api-version": "2018-09-01-preview", - "Content-Type": "application/json", - "Content-Length": 783, - "Authorization": "Bearer {AAD JWT token issued for \"https:\\\\monitoring.azure.com\\}\"", - "subscriptionId": "b7ac8a0c-fbae-4e29-a0f7-09999b8857a1", - "resourceGroupName": "CowsSeller", - "resourceProvider": "Microsoft.Storage", - "resourceTypeName": "storageAccounts", - "resourceName": "cowssellerstore", - "body": { - "time": "2018-08-24T 11:02:00-7:00", - "data": { - "baseData": { - "metric": "CowsSold", - "namespace": "Cows", - "dimNames": [ - "Breed", - "Color", - "Age" - ], - "series": [ - { - "dimValues": [ - "Angus", - "Blue", - "5" - ], - "min": 5, - "max": 20, - "sum": 30, - "count": 3 - } - ] - } - } - } - }, - "responses": { - "200": { - "body": { - "statusCode": 200 + "parameters": { + "api-version": "2018-09-01-preview", + "Content-Type": "application/json", + "Content-Length": 783, + "Authorization": "Bearer {AAD JWT token issued for \"https:\\\\monitoring.azure.com\\}\"", + "subscriptionId": "b7ac8a0c-fbae-4e29-a0f7-09999b8857a1", + "resourceGroupName": "CowsSeller", + "resourceProvider": "Microsoft.Storage", + "resourceTypeName": "storageAccounts", + "resourceName": "cowssellerstore", + "body": { + "time": "2018-08-24T 11:02:00-7:00", + "data": { + "baseData": { + "metric": "CowsSold", + "namespace": "Cows", + "dimNames": [ + "Breed", + "Color", + "Age" + ], + "series": [ + { + "dimValues": [ + "Angus", + "Blue", + "5" + ], + "min": 5, + "max": 20, + "sum": 30, + "count": 3 } + ] } + } + } + }, + "responses": { + "200": { + "body": { + "statusCode": 200 + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/data-plane/preview/2018-09-01-preview/metricsCreate_API.json b/specification/monitor/data-plane/preview/2018-09-01-preview/metricsCreate_API.json index 344ed08b867a..499c2dcdbfb5 100644 --- a/specification/monitor/data-plane/preview/2018-09-01-preview/metricsCreate_API.json +++ b/specification/monitor/data-plane/preview/2018-09-01-preview/metricsCreate_API.json @@ -176,7 +176,7 @@ } } }, - "required":[ + "required": [ "metric", "namespace", "series" @@ -213,7 +213,7 @@ "type": "integer" } }, - "required" : [ + "required": [ "min", "max", "sum", @@ -255,4 +255,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/activityLogAlerts_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/activityLogAlerts_API.json index 8dbc8df139dd..5ff0bea9c06e 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/activityLogAlerts_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/activityLogAlerts_API.json @@ -1,527 +1,527 @@ { - "swagger": "2.0", - "info": { - "title": "Azure Activity Log Alerts API", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2017-03-01-preview" + "swagger": "2.0", + "info": { + "title": "Azure Activity Log Alerts API", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "version": "2017-03-01-preview" + }, + "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}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/activityLogAlerts/{activityLogAlertName}": { + "put": { + "deprecated": true, + "description": "Create a new activity log alert or update an existing one.", + "operationId": "ActivityLogAlerts_CreateOrUpdate", + "x-ms-examples": { + "Create or update an activity log alert": { + "$ref": "./examples/createOrUpdateActivityLogAlert.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActivityLogAlertNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "activityLogAlert", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActivityLogAlertResource" + }, + "description": "The activity log alert to create or use for the update." + } + ], + "responses": { + "200": { + "description": "An existing activity log alert was successfully updated.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertResource" + } + }, + "201": { + "description": "A new activity log alert was successfully created.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertResource" + } + }, + "default": { + "description": "An error occurred and the activity log alert could not be created or updated.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } - ], - "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" + }, + "get": { + "deprecated": true, + "description": "Get an activity log alert.", + "operationId": "ActivityLogAlerts_Get", + "x-ms-examples": { + "Get an activity log alert": { + "$ref": "./examples/getActivityLogAlert.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActivityLogAlertNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertResource" } + }, + "default": { + "description": "An error occurred and the activity log alert could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } - }, - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/activityLogAlerts/{activityLogAlertName}": { - "put": { - "deprecated": true, - "description": "Create a new activity log alert or update an existing one.", - "operationId": "ActivityLogAlerts_CreateOrUpdate", - "x-ms-examples": { - "Create or update an activity log alert": { - "$ref": "./examples/createOrUpdateActivityLogAlert.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActivityLogAlertNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "activityLogAlert", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActivityLogAlertResource" - }, - "description": "The activity log alert to create or use for the update." - } - ], - "responses": { - "200": { - "description": "An existing activity log alert was successfully updated.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertResource" - } - }, - "201": { - "description": "A new activity log alert was successfully created.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertResource" - } - }, - "default": { - "description": "An error occurred and the activity log alert could not be created or updated.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "get": { - "deprecated": true, - "description": "Get an activity log alert.", - "operationId": "ActivityLogAlerts_Get", - "x-ms-examples": { - "Get an activity log alert": { - "$ref": "./examples/getActivityLogAlert.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActivityLogAlertNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertResource" - } - }, - "default": { - "description": "An error occurred and the activity log alert could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "deprecated": true, - "description": "Delete an activity log alert.", - "operationId": "ActivityLogAlerts_Delete", - "x-ms-examples": { - "Delete an activity log alert": { - "$ref": "./examples/deleteActivityLogAlert.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActivityLogAlertNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The activity log alert was successfully deleted." - }, - "204": { - "description": "The activity log alert does not exist. It may have already been deleted." - }, - "default": { - "description": "An error occurred and the activity log alert could not be deleted.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "delete": { + "deprecated": true, + "description": "Delete an activity log alert.", + "operationId": "ActivityLogAlerts_Delete", + "x-ms-examples": { + "Delete an activity log alert": { + "$ref": "./examples/deleteActivityLogAlert.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActivityLogAlertNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The activity log alert was successfully deleted." + }, + "204": { + "description": "The activity log alert does not exist. It may have already been deleted." + }, + "default": { + "description": "An error occurred and the activity log alert could not be deleted.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "deprecated": true, + "description": "Updates an existing ActivityLogAlertResource's tags. To update other fields use the CreateOrUpdate method.", + "operationId": "ActivityLogAlerts_Update", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActivityLogAlertNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "activityLogAlertPatch", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActivityLogAlertResourcePatch" }, - "patch": { - "deprecated": true, - "description": "Updates an existing ActivityLogAlertResource's tags. To update other fields use the CreateOrUpdate method.", - "operationId": "ActivityLogAlerts_Update", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActivityLogAlertNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "activityLogAlertPatch", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActivityLogAlertResourcePatch" - }, - "description": "Parameters supplied to the operation." - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "An existing activity log alert was successfully updated.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertResource" - } - } - }, - "x-ms-examples": { - "Path an activity log alert": { - "$ref": "./examples/patchActivityLogAlert.json" - } - } + "description": "Parameters supplied to the operation." + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } - }, - "/subscriptions/{subscriptionId}/providers/microsoft.insights/activityLogAlerts": { - "get": { - "deprecated": true, - "description": "Get a list of all activity log alerts in a subscription.", - "operationId": "ActivityLogAlerts_ListBySubscriptionId", - "x-ms-examples": { - "List activity log alerts": { - "$ref": "./examples/listActivityLogAlerts.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertList" - } - }, - "default": { - "description": "An error occurred and the list of activity log alerts could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "200": { + "description": "An existing activity log alert was successfully updated.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertResource" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/activityLogAlerts": { - "get": { - "deprecated": true, - "description": "Get a list of all activity log alerts in a resource group.", - "operationId": "ActivityLogAlerts_ListByResourceGroup", - "x-ms-examples": { - "List activity log alerts": { - "$ref": "./examples/listActivityLogAlerts.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertList" - } - }, - "default": { - "description": "An error occurred and the list of activity log alerts could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - } + "x-ms-examples": { + "Path an activity log alert": { + "$ref": "./examples/patchActivityLogAlert.json" + } } + } }, - "definitions": { - "Resource": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Azure resource Id" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Azure resource name" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Azure resource type" - }, - "location": { - "type": "string", - "description": "Resource location", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - } - }, - "required": [ - "location" - ], - "x-ms-azure-resource": true, - "description": "An azure resource object" + "/subscriptions/{subscriptionId}/providers/microsoft.insights/activityLogAlerts": { + "get": { + "deprecated": true, + "description": "Get a list of all activity log alerts in a subscription.", + "operationId": "ActivityLogAlerts_ListBySubscriptionId", + "x-ms-examples": { + "List activity log alerts": { + "$ref": "./examples/listActivityLogAlerts.json" + } }, - "ActivityLogAlertResource": { - "description": "An activity log alert resource.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActivityLogAlert" - } + "x-ms-pageable": { + "nextLinkName": null + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertList" + } + }, + "default": { + "description": "An error occurred and the list of activity log alerts could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/activityLogAlerts": { + "get": { + "deprecated": true, + "description": "Get a list of all activity log alerts in a resource group.", + "operationId": "ActivityLogAlerts_ListByResourceGroup", + "x-ms-examples": { + "List activity log alerts": { + "$ref": "./examples/listActivityLogAlerts.json" + } }, - "ActivityLogAlertList": { - "description": "A list of activity log alerts.", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ActivityLogAlertResource" - }, - "description": "The list of activity log alerts." - } + "x-ms-pageable": { + "nextLinkName": null + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertList" + } + }, + "default": { + "description": "An error occurred and the list of activity log alerts could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + } + }, + "definitions": { + "Resource": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Azure resource Id" }, - "ActivityLogAlert": { - "description": "An Azure activity log alert.", - "properties": { - "scopes": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of resourceIds that will be used as prefixes. The alert will only apply to activityLogs with resourceIds that fall under one of these prefixes. This list must include at least one item." - }, - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated." - }, - "condition": { - "$ref": "#/definitions/ActivityLogAlertAllOfCondition", - "description": "The condition that will cause this alert to activate." - }, - "actions": { - "$ref": "#/definitions/ActivityLogAlertActionList", - "description": "The actions that will activate when the condition is met." - }, - "description": { - "type": "string", - "description": "A description of this activity log alert." - } - }, - "required": [ - "scopes", - "condition", - "actions" - ] + "name": { + "type": "string", + "readOnly": true, + "description": "Azure resource name" }, - "ActivityLogAlertAllOfCondition": { - "properties": { - "allOf": { - "type": "array", - "items": { - "$ref": "#/definitions/ActivityLogAlertLeafCondition" - }, - "description": "The list of activity log alert conditions." - } - }, - "description": "An Activity Log alert condition that is met when all its member conditions are met.", - "required": [ - "allOf" - ] + "type": { + "type": "string", + "readOnly": true, + "description": "Azure resource type" }, - "ActivityLogAlertLeafCondition": { - "properties": { - "field": { - "type": "string", - "description": "The name of the field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties.'." - }, - "equals": { - "type": "string", - "description": "The field value will be compared to this value (case-insensitive) to determine if the condition is met." - } - }, - "description": "An Activity Log alert condition that is met by comparing an activity log field and value.", - "required": [ - "field", - "equals" - ] + "location": { + "type": "string", + "description": "Resource location", + "x-ms-mutability": [ + "create", + "read" + ] }, - "ActivityLogAlertActionList": { - "description": "A list of activity log alert actions.", - "properties": { - "actionGroups": { - "type": "array", - "items": { - "$ref": "#/definitions/ActivityLogAlertActionGroup" - }, - "description": "The list of activity log alerts." - } - } + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true, + "description": "An azure resource object" + }, + "ActivityLogAlertResource": { + "description": "An activity log alert resource.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActivityLogAlert" + } + } + }, + "ActivityLogAlertList": { + "description": "A list of activity log alerts.", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ActivityLogAlertResource" + }, + "description": "The list of activity log alerts." + } + } + }, + "ActivityLogAlert": { + "description": "An Azure activity log alert.", + "properties": { + "scopes": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of resourceIds that will be used as prefixes. The alert will only apply to activityLogs with resourceIds that fall under one of these prefixes. This list must include at least one item." }, - "ActivityLogAlertActionGroup": { - "description": "A pointer to an Azure Action Group.", - "properties": { - "actionGroupId": { - "type": "string", - "description": "The resourceId of the action group. This cannot be null or empty." - }, - "webhookProperties": { - "additionalProperties": { - "type": "string" - }, - "description": "The dictionary of custom properties to include with the post operation. These data are appended to the webhook payload." - } - }, - "required": [ - "actionGroupId" - ] + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated." }, - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } - } + "condition": { + "$ref": "#/definitions/ActivityLogAlertAllOfCondition", + "description": "The condition that will cause this alert to activate." }, - "ActivityLogAlertResourcePatch": { - "description": "An activity log alert resource for patch operations.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActivityLogAlertPatch" - } - } + "actions": { + "$ref": "#/definitions/ActivityLogAlertActionList", + "description": "The actions that will activate when the condition is met." }, - "ActivityLogAlertPatch": { - "description": "An Azure activity log alert for patch operations.", - "properties": { - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated." - } - } + "description": { + "type": "string", + "description": "A description of this activity log alert." } + }, + "required": [ + "scopes", + "condition", + "actions" + ] }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "The Azure subscription Id." + "ActivityLogAlertAllOfCondition": { + "properties": { + "allOf": { + "type": "array", + "items": { + "$ref": "#/definitions/ActivityLogAlertLeafCondition" + }, + "description": "The list of activity log alert conditions." + } + }, + "description": "An Activity Log alert condition that is met when all its member conditions are met.", + "required": [ + "allOf" + ] + }, + "ActivityLogAlertLeafCondition": { + "properties": { + "field": { + "type": "string", + "description": "The name of the field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties.'." }, - "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group.", - "x-ms-parameter-location": "method" + "equals": { + "type": "string", + "description": "The field value will be compared to this value (case-insensitive) to determine if the condition is met." + } + }, + "description": "An Activity Log alert condition that is met by comparing an activity log field and value.", + "required": [ + "field", + "equals" + ] + }, + "ActivityLogAlertActionList": { + "description": "A list of activity log alert actions.", + "properties": { + "actionGroups": { + "type": "array", + "items": { + "$ref": "#/definitions/ActivityLogAlertActionGroup" + }, + "description": "The list of activity log alerts." + } + } + }, + "ActivityLogAlertActionGroup": { + "description": "A pointer to an Azure Action Group.", + "properties": { + "actionGroupId": { + "type": "string", + "description": "The resourceId of the action group. This cannot be null or empty." }, - "ActivityLogAlertNameParameter": { - "name": "activityLogAlertName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the activity log alert.", - "x-ms-parameter-location": "method" + "webhookProperties": { + "additionalProperties": { + "type": "string" + }, + "description": "The dictionary of custom properties to include with the post operation. These data are appended to the webhook payload." + } + }, + "required": [ + "actionGroupId" + ] + }, + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" } + } + }, + "ActivityLogAlertResourcePatch": { + "description": "An activity log alert resource for patch operations.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActivityLogAlertPatch" + } + } + }, + "ActivityLogAlertPatch": { + "description": "An Azure activity log alert for patch operations.", + "properties": { + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated." + } + } + } + }, + "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" + }, + "ActivityLogAlertNameParameter": { + "name": "activityLogAlertName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the activity log alert.", + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } + } } diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/createOrUpdateActivityLogAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/createOrUpdateActivityLogAlert.json index 16d14631da06..713c7ca84d46 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/createOrUpdateActivityLogAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/createOrUpdateActivityLogAlert.json @@ -1,121 +1,121 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ActivityLogAlerts", - "activityLogAlertName": "SampleActivityLogAlert", - "api-version": "2017-03-01-preview", - "activityLogAlert": { - "location": "Global", - "tags": { }, - "properties": { - "scopes": [ - "/subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ActivityLogAlerts", + "activityLogAlertName": "SampleActivityLogAlert", + "api-version": "2017-03-01-preview", + "activityLogAlert": { + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "/subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert", - "location": "Global", - "tags": { }, - "properties": { - "scopes": [ - "/subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" - } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" + } } + ] }, - "201": { - "headers": { }, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert", - "location": "Global", - "tags": { }, - "properties": { - "scopes": [ - "subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" + "description": "Sample activity log alert description" + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert", + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "/subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" } - } + } + ] + }, + "description": "Sample activity log alert description" + } + } + }, + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert", + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" + } + } + ] + }, + "description": "Sample activity log alert description" } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/deleteActivityLogAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/deleteActivityLogAlert.json index 05fab8bcc4cd..f993e7b180a8 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/deleteActivityLogAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/deleteActivityLogAlert.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ActivityLogAlerts", - "activityLogAlertName": "SampleActivityLogAlert", - "api-version": "2017-03-01-preview" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ActivityLogAlerts", + "activityLogAlertName": "SampleActivityLogAlert", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/getActivityLogAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/getActivityLogAlert.json index 8af0493dc28c..85bd49638845 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/getActivityLogAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/getActivityLogAlert.json @@ -1,49 +1,49 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ActivityLogAlerts", - "activityLogAlertName": "SampleActivityLogAlert", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert", - "location": "Global", - "tags": {}, - "properties": { - "scopes": [ - "subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ActivityLogAlerts", + "activityLogAlertName": "SampleActivityLogAlert", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert", + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" } - } + } + ] + }, + "description": "Sample activity log alert description" } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/listActivityLogAlerts.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/listActivityLogAlerts.json index 04507656ca2a..ad8d840dc9ad 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/listActivityLogAlerts.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/listActivityLogAlerts.json @@ -1,81 +1,81 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ActivityLogAlerts", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert", - "location": "Global", - "tags": {}, - "properties": { - "scopes": [ - "subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" - } - }, - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert2", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert2", - "location": "Global", - "tags": {}, - "properties": { - "scopes": [ - "subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { } - } - ] - } - } + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ActivityLogAlerts", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert", + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" } + } + ] + }, + "description": "Sample activity log alert description" + } + }, + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert2", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert2", + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": {} + } ] + } } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/patchActivityLogAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/patchActivityLogAlert.json index 4c592bc5a958..0ac423a4ad74 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/patchActivityLogAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-03-01-preview/examples/patchActivityLogAlert.json @@ -1,56 +1,62 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ActivityLogAlerts", - "activityLogAlertName": "SampleActivityLogAlert", - "api-version": "2017-03-01-preview", - "activityLogAlertPatch": { - "location": "Global", - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "enabled": false - } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert", - "location": "Global", - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "scopes": [ - "/subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": false, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ActivityLogAlerts", + "activityLogAlertName": "SampleActivityLogAlert", + "api-version": "2017-03-01-preview", + "activityLogAlertPatch": { + "location": "Global", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "enabled": false + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert", + "location": "Global", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "scopes": [ + "/subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": false, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" } - } + } + ] + }, + "description": "Sample activity log alert description" } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/diagnosticsSettingsCategories_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/diagnosticsSettingsCategories_API.json index 84ce43832f26..7b5e3e1334a2 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/diagnosticsSettingsCategories_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/diagnosticsSettingsCategories_API.json @@ -72,7 +72,7 @@ "Gets the diagnostic setting": { "$ref": "./examples/getDiagnosticSettingsCategory.json" } - } + } } }, "/{resourceUri}/providers/microsoft.insights/diagnosticSettingsCategories": { @@ -108,7 +108,7 @@ "Gets the diagnostic setting": { "$ref": "./examples/listDiagnosticSettingsCategories.json" } - } + } } } }, @@ -137,10 +137,13 @@ "DiagnosticSettingsCategory": { "properties": { "categoryType": { - "enum": ["Metrics", "Logs"], + "enum": [ + "Metrics", + "Logs" + ], "type": "string", "x-ms-enum": { - "name": "categoryType" + "name": "categoryType" }, "x-nullable": false, "description": "The type of the diagnostic settings category." @@ -217,4 +220,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/diagnosticsSettings_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/diagnosticsSettings_API.json index 2febaa3b9017..251d6338d1b7 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/diagnosticsSettings_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/diagnosticsSettings_API.json @@ -72,7 +72,7 @@ "Gets the diagnostic setting": { "$ref": "./examples/getDiagnosticSetting.json" } - } + } }, "put": { "tags": [ @@ -118,7 +118,7 @@ "Creates or Updates the diagnostic setting": { "$ref": "./examples/createOrUpdateDiagnosticSetting.json" } - } + } }, "delete": { "tags": [ @@ -155,7 +155,7 @@ "Deletes the diagnostic setting": { "$ref": "./examples/deleteDiagnosticSetting.json" } - } + } } }, "/{resourceUri}/providers/microsoft.insights/diagnosticSettings": { @@ -191,7 +191,7 @@ "Gets the diagnostic setting": { "$ref": "./examples/listDiagnosticSettings.json" } - } + } } } }, @@ -230,7 +230,10 @@ "description": "the number of days for the retention in days. A value of 0 will retain the events indefinitely." } }, - "required": [ "enabled", "days" ], + "required": [ + "enabled", + "days" + ], "description": "Specifies the retention policy for the log." }, "MetricSettings": { @@ -253,7 +256,9 @@ "description": "the retention policy for this category." } }, - "required": [ "enabled" ], + "required": [ + "enabled" + ], "description": "Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular metric." }, "LogSettings": { @@ -271,7 +276,9 @@ "description": "the retention policy for this log." } }, - "required": [ "enabled" ], + "required": [ + "enabled" + ], "description": "Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular log." }, "DiagnosticSettings": { @@ -382,4 +389,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetric.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetric.json index 14a12faa011b..07251092bf57 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetric.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetric.json @@ -1,95 +1,95 @@ { - "parameters": { - "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", + "parameters": { + "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "metric": "BlobCapacity", + "$filter": "BlobType eq '*'", + "top": "3", + "orderby": "Average asc", + "aggregation": "Average,count", + "interval": "PT1M", + "api-version": "2017-05-01-preview" + }, + "responses": { + "200": { + "body": { + "cost": 0, "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "metric": "BlobCapacity", - "$filter": "BlobType eq '*'", - "top": "3", - "orderby": "Average asc", - "aggregation": "Average,count", "interval": "PT1M", - "api-version": "2017-05-01-preview" - }, - "responses": { - "200": { - "body": { - "cost": 0, - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "interval": "PT1M", - "value": [ - { - "id": "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity", - "type": "Microsoft.Insights/metrics", - "name": { - "value": "BlobCapacity", - "localizedValue": "Blob Capacity" + "value": [ + { + "id": "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity", + "type": "Microsoft.Insights/metrics", + "name": { + "value": "BlobCapacity", + "localizedValue": "Blob Capacity" + }, + "unit": "Bytes", + "timeseries": [ + { + "metadatavalues": [ + { + "name": { + "value": "blobtype", + "localizedValue": "blobtype" + }, + "value": "PageBlob" + } + ], + "data": [ + { + "timeStamp": "2017-04-14T02:20:00Z", + "count": 0.0 + }, + { + "timeStamp": "2017-04-14T02:21:00Z", + "count": 0.0 + }, + { + "timeStamp": "2017-04-14T02:22:00Z", + "count": 0.0 }, - "unit": "Bytes", - "timeseries": [ - { - "metadatavalues": [ - { - "name": { - "value": "blobtype", - "localizedValue": "blobtype" - }, - "value": "PageBlob" - } - ], - "data": [ - { - "timeStamp": "2017-04-14T02:20:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:21:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:22:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:23:00Z", - "count": 1.0, - "average": 0.0 - } - ] + { + "timeStamp": "2017-04-14T02:23:00Z", + "count": 1.0, + "average": 0.0 + } + ] + }, + { + "metadatavalues": [ + { + "name": { + "value": "blobtype", + "localizedValue": "blobtype" }, - { - "metadatavalues": [ - { - "name": { - "value": "blobtype", - "localizedValue": "blobtype" - }, - "value": "BlockBlob" - } - ], - "data": [ - { - "timeStamp": "2017-04-14T02:20:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:21:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:22:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:23:00Z", - "count": 1.0, - "average": 245.0 - } - ] - } - ] - } - ] - } - } + "value": "BlockBlob" + } + ], + "data": [ + { + "timeStamp": "2017-04-14T02:20:00Z", + "count": 0.0 + }, + { + "timeStamp": "2017-04-14T02:21:00Z", + "count": 0.0 + }, + { + "timeStamp": "2017-04-14T02:22:00Z", + "count": 0.0 + }, + { + "timeStamp": "2017-04-14T02:23:00Z", + "count": 1.0, + "average": 245.0 + } + ] + } + ] + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetricDefinitions.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetricDefinitions.json index cf6d98975ea7..c92baff7bd0d 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetricDefinitions.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetricDefinitions.json @@ -1,383 +1,446 @@ { - "parameters": { - "resourceUri": "subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricDefinitions", - "api-version": "2017-05-01-preview" - }, - "responses": { - "200": { - "body": - { - "value": [{ - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/CpuTime", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "CpuTime", - "localizedValue": "CPU Time" - }, - "isDimensionRequired": false, - "unit": "Seconds", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Requests", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "Requests", - "localizedValue": "Requests" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/BytesReceived", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "BytesReceived", - "localizedValue": "Data In" - }, - "isDimensionRequired": false, - "unit": "Bytes", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/BytesSent", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "BytesSent", - "localizedValue": "Data Out" - }, - "isDimensionRequired": false, - "unit": "Bytes", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http101", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "Http101", - "localizedValue": "Http 101" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http2xx", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "Http2xx", - "localizedValue": "Http 2xx" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http3xx", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "Http3xx", - "localizedValue": "Http 3xx" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http401", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "Http401", - "localizedValue": "Http 401" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http403", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "Http403", - "localizedValue": "Http 403" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http404", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "Http404", - "localizedValue": "Http 404" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http406", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "Http406", - "localizedValue": "Http 406" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http4xx", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "Http4xx", - "localizedValue": "Http 4xx" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http5xx", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "Http5xx", - "localizedValue": "Http Server Errors" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/MemoryWorkingSet", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "MemoryWorkingSet", - "localizedValue": "Memory working set" - }, - "isDimensionRequired": false, - "unit": "Bytes", - "primaryAggregationType": "Average", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/AverageMemoryWorkingSet", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "AverageMemoryWorkingSet", - "localizedValue": "Average memory working set" - }, - "isDimensionRequired": false, - "unit": "Bytes", - "primaryAggregationType": "Average", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/AverageResponseTime", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "name": { - "value": "AverageResponseTime", - "localizedValue": "Average Response Time" - }, - "isDimensionRequired": false, - "unit": "Seconds", - "primaryAggregationType": "Average", - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P30D" - }, { - "timeGrain": "PT1H", - "retention": "P30D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - } - ] - } - } + "parameters": { + "resourceUri": "subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricDefinitions", + "api-version": "2017-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/CpuTime", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "CpuTime", + "localizedValue": "CPU Time" + }, + "isDimensionRequired": false, + "unit": "Seconds", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Requests", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "Requests", + "localizedValue": "Requests" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/BytesReceived", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "BytesReceived", + "localizedValue": "Data In" + }, + "isDimensionRequired": false, + "unit": "Bytes", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/BytesSent", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "BytesSent", + "localizedValue": "Data Out" + }, + "isDimensionRequired": false, + "unit": "Bytes", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http101", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "Http101", + "localizedValue": "Http 101" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http2xx", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "Http2xx", + "localizedValue": "Http 2xx" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http3xx", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "Http3xx", + "localizedValue": "Http 3xx" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http401", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "Http401", + "localizedValue": "Http 401" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http403", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "Http403", + "localizedValue": "Http 403" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http404", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "Http404", + "localizedValue": "Http 404" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http406", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "Http406", + "localizedValue": "Http 406" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http4xx", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "Http4xx", + "localizedValue": "Http 4xx" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http5xx", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "Http5xx", + "localizedValue": "Http Server Errors" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/MemoryWorkingSet", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "MemoryWorkingSet", + "localizedValue": "Memory working set" + }, + "isDimensionRequired": false, + "unit": "Bytes", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/AverageMemoryWorkingSet", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "AverageMemoryWorkingSet", + "localizedValue": "Average memory working set" + }, + "isDimensionRequired": false, + "unit": "Bytes", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/AverageResponseTime", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "name": { + "value": "AverageResponseTime", + "localizedValue": "Average Response Time" + }, + "isDimensionRequired": false, + "unit": "Seconds", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetricMetadata.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetricMetadata.json index 105be64cb52c..23a9ca8877b0 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetricMetadata.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/GetMetricMetadata.json @@ -1,56 +1,56 @@ { - "parameters": { + "parameters": { + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "metric": "BlobCapacity", + "$filter": "BlobType eq '*'", + "top": "3", + "orderby": "Average asc", + "aggregation": "Average,count", + "interval": "PT1M", + "resulttype": "metadata", + "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", + "api-version": "2017-05-01-preview" + }, + "responses": { + "200": { + "body": { "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "metric": "BlobCapacity", - "$filter": "BlobType eq '*'", - "top": "3", - "orderby": "Average asc", - "aggregation": "Average,count", - "interval": "PT1M", - "resulttype": "metadata", - "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", - "api-version": "2017-05-01-preview" - }, - "responses": { - "200": { - "body": { - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "value": [ - { - "id": "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity", - "type": "Microsoft.Insights/metrics", - "name": { - "value": "BlobCapacity", - "localizedValue": "Blob Capacity" - }, - "unit": "Bytes", - "timeseries": [ - { - "metadatavalues": [ - { - "name": { - "value": "blobtype", - "localizedValue": "blobtype" - }, - "value": "BlockBlob" - } - ] - }, - { - "metadatavalues": [ - { - "name": { - "value": "blobtype", - "localizedValue": "blobtype" - }, - "value": "PageBlob" - } - ] - } - ] - } - ] - } - } + "value": [ + { + "id": "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity", + "type": "Microsoft.Insights/metrics", + "name": { + "value": "BlobCapacity", + "localizedValue": "Blob Capacity" + }, + "unit": "Bytes", + "timeseries": [ + { + "metadatavalues": [ + { + "name": { + "value": "blobtype", + "localizedValue": "blobtype" + }, + "value": "BlockBlob" + } + ] + }, + { + "metadatavalues": [ + { + "name": { + "value": "blobtype", + "localizedValue": "blobtype" + }, + "value": "PageBlob" + } + ] + } + ] + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/createOrUpdateDiagnosticSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/createOrUpdateDiagnosticSetting.json index 8335a4ec33e1..685add921831 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/createOrUpdateDiagnosticSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/createOrUpdateDiagnosticSetting.json @@ -5,27 +5,27 @@ "api-version": "2017-05-01-preview", "parameters": { "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "workspaceId":"", - "eventHubAuthorizationRuleId":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", "eventHubName": "myeventhub", "metrics": [ { - "category":"WorkflowMetrics", - "enabled":true, + "category": "WorkflowMetrics", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ], "logs": [ { - "category":"WorkflowRuntime", - "enabled":true, + "category": "WorkflowRuntime", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ] @@ -34,33 +34,33 @@ }, "responses": { "200": { - "headers": { }, + "headers": {}, "body": { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/mysetting", - "type":"", - "name":"mysetting", + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/mysetting", + "type": "", + "name": "mysetting", "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "workspaceId":"", - "eventHubAuthorizationRuleId":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", "eventHubName": "myeventhub", "metrics": [ { - "category":"WorkflowMetrics", - "enabled":true, + "category": "WorkflowMetrics", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ], "logs": [ { - "category":"WorkflowRuntime", - "enabled":true, + "category": "WorkflowRuntime", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ] @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/deleteDiagnosticSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/deleteDiagnosticSetting.json index c7468e7ff795..ade0a9a73841 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/deleteDiagnosticSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/deleteDiagnosticSetting.json @@ -1,17 +1,17 @@ { - "parameters" : { - "resourceUri" : "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", + "parameters": { + "resourceUri": "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", "name": "mysetting", - "api-version" : "2017-05-01-preview" + "api-version": "2017-05-01-preview" }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "responses": { + "200": { + "headers": {}, + "body": null + }, + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/getDiagnosticSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/getDiagnosticSetting.json index 03603e23f20d..50cf4c636646 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/getDiagnosticSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/getDiagnosticSetting.json @@ -1,35 +1,37 @@ { - "parameters" : { - "resourceUri" : "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", + "parameters": { + "resourceUri": "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", "name": "mysetting", - "api-version" : "2017-05-01-preview" + "api-version": "2017-05-01-preview" }, - "responses" : { - "200" : { - "headers" : {}, - "body" : { - "id" : "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", - "type" : "", - "name" : "mysetting", - "properties" : { - "storageAccountId" : "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "workspaceId" : "", - "eventHubAuthorizationRuleId" : "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", - "metrics" : [{ - "category" : "WorkflowMetrics", - "enabled" : true, - "retentionPolicy" : { - "enabled" : false, - "days" : 0 + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", + "type": "", + "name": "mysetting", + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "metrics": [ + { + "category": "WorkflowMetrics", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 0 } } ], - "logs" : [{ - "category" : "WorkflowRuntime", - "enabled" : true, - "retentionPolicy" : { - "enabled" : false, - "days" : 0 + "logs": [ + { + "category": "WorkflowRuntime", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 0 } } ] @@ -37,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/getDiagnosticSettingsCategory.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/getDiagnosticSettingsCategory.json index c8d94c67c36f..ae766e558bdc 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/getDiagnosticSettingsCategory.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/getDiagnosticSettingsCategory.json @@ -1,20 +1,20 @@ { - "parameters" : { - "resourceUri" : "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", + "parameters": { + "resourceUri": "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", "name": "WorkflowRuntime", - "api-version" : "2017-05-01-preview" + "api-version": "2017-05-01-preview" }, - "responses" : { - "200" : { - "headers" : {}, - "body" : { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/providers/microsoft.insights/diagnosticSettingsCategories/WorkflowRuntime", - "type":"microsoft.insights/diagnosticSettingsCategories", - "name":"WorkflowRuntime", + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/providers/microsoft.insights/diagnosticSettingsCategories/WorkflowRuntime", + "type": "microsoft.insights/diagnosticSettingsCategories", + "name": "WorkflowRuntime", "properties": { - "categoryType":"Logs" + "categoryType": "Logs" } } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/listDiagnosticSettings.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/listDiagnosticSettings.json index 3a54aca66177..50220bc82498 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/listDiagnosticSettings.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/listDiagnosticSettings.json @@ -1,38 +1,38 @@ { - "parameters" : { - "resourceUri" : "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", - "api-version" : "2017-05-01-preview" + "parameters": { + "resourceUri": "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", + "api-version": "2017-05-01-preview" }, - "responses" : { - "200" : { - "headers" : {}, - "body" : { - "value": [ + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/mysetting", - "type":"microsoft.logic/workflows", - "name":"mysetting", + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/mysetting", + "type": "microsoft.logic/workflows", + "name": "mysetting", "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "eventHubAuthorizationRuleId":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", - "workspaceId":"", + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "eventHubAuthorizationRuleId": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", + "workspaceId": "", "metrics": [ { - "category":"WorkflowMetrics", - "enabled":true, + "category": "WorkflowMetrics", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ], "logs": [ { - "category":"WorkflowRuntime", - "enabled":true, + "category": "WorkflowRuntime", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ] @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/listDiagnosticSettingsCategories.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/listDiagnosticSettingsCategories.json index 2b915de05f31..d7ea73b6638b 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/listDiagnosticSettingsCategories.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/examples/listDiagnosticSettingsCategories.json @@ -1,31 +1,31 @@ { - "parameters" : { - "resourceUri" : "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", - "api-version" : "2017-05-01-preview" + "parameters": { + "resourceUri": "subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", + "api-version": "2017-05-01-preview" }, - "responses" : { - "200" : { - "headers" : {}, - "body" : { + "responses": { + "200": { + "headers": {}, + "body": { "value": [ { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/providers/microsoft.insights/diagnosticSettingsCategories/WorkflowRuntime", - "type":"microsoft.insights/diagnosticSettingsCategories", - "name":"WorkflowRuntime", + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/providers/microsoft.insights/diagnosticSettingsCategories/WorkflowRuntime", + "type": "microsoft.insights/diagnosticSettingsCategories", + "name": "WorkflowRuntime", "properties": { - "categoryType":"Logs" + "categoryType": "Logs" } }, { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/providers/microsoft.insights/diagnosticSettingsCategories/WorkflowMetric", - "type":"microsoft.insights/diagnosticSettingsCategories", - "name":"WorkflowMetric", + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/providers/microsoft.insights/diagnosticSettingsCategories/WorkflowMetric", + "type": "microsoft.insights/diagnosticSettingsCategories", + "name": "WorkflowMetric", "properties": { - "categoryType":"Metrics" + "categoryType": "Metrics" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/metricDefinitions_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/metricDefinitions_API.json index 6c4ab30c16cb..bf16c9cdee59 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/metricDefinitions_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/metricDefinitions_API.json @@ -65,7 +65,8 @@ }, "examples": { "application/json": { - "value": [{ + "value": [ + { "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/CpuTime", "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", "name": { @@ -75,20 +76,24 @@ "isDimensionRequired": false, "unit": "Seconds", "primaryAggregationType": "Total", - "metricAvailabilities": [{ + "metricAvailabilities": [ + { "timeGrain": "PT1M", "retention": "P30D" - }, { + }, + { "timeGrain": "PT1H", "retention": "P30D" } ], - "dimensions": [{ + "dimensions": [ + { "value": "Instance", "localizedValue": "Instance" } ] - }, { + }, + { "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/MemoryWorkingSet", "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", "name": { @@ -98,20 +103,24 @@ "isDimensionRequired": false, "unit": "Bytes", "primaryAggregationType": "Average", - "metricAvailabilities": [{ + "metricAvailabilities": [ + { "timeGrain": "PT1M", "retention": "P30D" - }, { + }, + { "timeGrain": "PT1H", "retention": "P30D" } ], - "dimensions": [{ + "dimensions": [ + { "value": "Instance", "localizedValue": "Instance" } ] - }, { + }, + { "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/AverageMemoryWorkingSet", "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", "name": { @@ -121,22 +130,25 @@ "isDimensionRequired": false, "unit": "Bytes", "primaryAggregationType": "Average", - "metricAvailabilities": [{ + "metricAvailabilities": [ + { "timeGrain": "PT1M", "retention": "P30D" - }, { + }, + { "timeGrain": "PT1H", "retention": "P30D" } ], - "dimensions": [{ + "dimensions": [ + { "value": "Instance", "localizedValue": "Instance" } ] } ] - } + } } } }, @@ -144,14 +156,18 @@ "nextLinkName": null }, "x-ms-examples": { - "Get Metric Definitions without filter": { "$ref": "./examples/GetMetricDefinitions.json" } + "Get Metric Definitions without filter": { + "$ref": "./examples/GetMetricDefinitions.json" + } } } } }, "definitions": { "LocalizableString": { - "required": [ "value" ], + "required": [ + "value" + ], "properties": { "value": { "type": "string", @@ -263,7 +279,9 @@ "description": "the values for the metric definitions." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents collection of metric definitions." }, "ErrorResponse": { @@ -299,4 +317,4 @@ "x-ms-skip-url-encoding": true } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/metrics_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/metrics_API.json index c02c2f86f83f..fbcde3c0e5ca 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/metrics_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/metrics_API.json @@ -96,7 +96,8 @@ "cost": 0, "timespan": "2017-08-10T21:44:34Z/2017-08-10T22:44:34Z", "interval": "PT1M", - "value": [{ + "value": [ + { "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/Microsoft.Insights/metrics/CpuTime", "type": "Microsoft.Insights/metrics", "name": { @@ -104,27 +105,35 @@ "localizedValue": "CPU Time" }, "unit": "Seconds", - "timeseries": [{ + "timeseries": [ + { "metadatavalues": [], - "data": [{ + "data": [ + { "timeStamp": "2017-08-10T21:44:00Z", "total": 0.0 - }, { + }, + { "timeStamp": "2017-08-10T21:45:00Z", "total": 0.0 - }, { + }, + { "timeStamp": "2017-08-10T21:46:00Z", "total": 0.0 - }, { + }, + { "timeStamp": "2017-08-10T21:47:00Z", "total": 0.0 - }, { + }, + { "timeStamp": "2017-08-10T21:48:00Z", "total": 0.0 - }, { + }, + { "timeStamp": "2017-08-10T21:49:00Z", "total": 0.0 - }, { + }, + { "timeStamp": "2017-08-10T21:50:00Z", "total": 0.0 } @@ -139,15 +148,21 @@ }, "x-ms-odata": "#/definitions/MetadataValue", "x-ms-examples": { - "Get Metric for data": { "$ref": "./examples/GetMetric.json" }, - "Get Metric for metadata": { "$ref": "./examples/GetMetricMetadata.json" } + "Get Metric for data": { + "$ref": "./examples/GetMetric.json" + }, + "Get Metric for metadata": { + "$ref": "./examples/GetMetricMetadata.json" + } } } } }, "definitions": { "LocalizableString": { - "required": [ "value" ], + "required": [ + "value" + ], "properties": { "value": { "type": "string", @@ -180,7 +195,9 @@ } }, "MetricValue": { - "required": [ "timeStamp" ], + "required": [ + "timeStamp" + ], "properties": { "timeStamp": { "type": "string", @@ -268,7 +285,10 @@ "description": "the value of the collection." } }, - "required": [ "timespan", "value" ], + "required": [ + "timespan", + "value" + ], "description": "The response to a metrics query." }, "Metric": { @@ -298,7 +318,13 @@ "description": "the time series returned when a data query is performed." } }, - "required": [ "id", "type", "name", "unit", "timeseries" ], + "required": [ + "id", + "type", + "name", + "unit", + "timeseries" + ], "description": "The result data of a query." }, "TimeSeriesElement": { @@ -406,4 +432,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/baseline_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/baseline_API.json index caba765e16e5..4ba3123874d4 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/baseline_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/baseline_API.json @@ -1,316 +1,326 @@ { - "swagger": "2.0", - "info": { - "title": "MonitorManagementClient", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2017-11-01-preview" + "swagger": "2.0", + "info": { + "title": "MonitorManagementClient", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "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" - } + "version": "2017-11-01-preview" + }, + "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": { - "/{resourceUri}/providers/microsoft.insights/baseline/{metricName}": { - "get": { - "tags": [ - "Baseline" - ], - "operationId": "MetricBaseline_Get", - "description": "**Gets the baseline values for a specific metric**.", - "parameters": [ - { - "$ref": "#/parameters/ExtendedResourceUriParameter" - }, - { - "$ref": "#/parameters/MetricNameParameter" - }, - { - "$ref": "#/parameters/TimespanParameter" - }, - { - "$ref": "#/parameters/IntervalParameter" - }, - { - "$ref": "#/parameters/AggregationParameter" - }, - { - "$ref": "#/parameters/SensitivitiesParameter" - }, - { - "$ref": "#/parameters/BaselineResultTypeParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" + } + }, + "paths": { + "/{resourceUri}/providers/microsoft.insights/baseline/{metricName}": { + "get": { + "tags": [ + "Baseline" + ], + "operationId": "MetricBaseline_Get", + "description": "**Gets the baseline values for a specific metric**.", + "parameters": [ + { + "$ref": "#/parameters/ExtendedResourceUriParameter" + }, + { + "$ref": "#/parameters/MetricNameParameter" + }, + { + "$ref": "#/parameters/TimespanParameter" + }, + { + "$ref": "#/parameters/IntervalParameter" + }, + { + "$ref": "#/parameters/AggregationParameter" + }, + { + "$ref": "#/parameters/SensitivitiesParameter" + }, + { + "$ref": "#/parameters/BaselineResultTypeParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "Successful request to get the list of metric values.", - "schema": { - "$ref": "#/definitions/BaselineResponse" - } + }, + "200": { + "description": "Successful request to get the list of metric values.", + "schema": { + "$ref": "#/definitions/BaselineResponse" } + } + }, + "x-ms-examples": { + "Get Metric for data": { + "$ref": "./examples/GetBaseline.json" }, - "x-ms-examples": { - "Get Metric for data": { "$ref": "./examples/GetBaseline.json" }, - "Get Metric for metadata": { "$ref": "./examples/GetBaselineMetadata.json" } + "Get Metric for metadata": { + "$ref": "./examples/GetBaselineMetadata.json" } } } - }, - "definitions": { - "LocalizableString": { - "required": [ "value" ], - "properties": { - "value": { - "type": "string", - "description": "the invariant value." - }, - "localizedValue": { - "type": "string", - "description": "the locale specific value." - } + } + }, + "definitions": { + "LocalizableString": { + "required": [ + "value" + ], + "properties": { + "value": { + "type": "string", + "description": "the invariant value." }, - "description": "The localizable string class." + "localizedValue": { + "type": "string", + "description": "the locale specific value." + } }, - "BaselineMetadataValue": { - "properties": { - "name": { - "$ref": "#/definitions/LocalizableString", - "description": "the name of the metadata." - }, - "value": { - "type": "string", - "description": "the value of the metadata." - } + "description": "The localizable string class." + }, + "BaselineMetadataValue": { + "properties": { + "name": { + "$ref": "#/definitions/LocalizableString", + "description": "the name of the metadata." }, - "description": "Represents a baseline metadata value." + "value": { + "type": "string", + "description": "the value of the metadata." + } }, - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", + "description": "Represents a baseline metadata value." + }, + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" + } + } + }, + "BaselineResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "the metric baseline Id." + }, + "type": { + "type": "string", + "readOnly": true, + "description": "the resource type of the baseline resource." + }, + "name": { + "$ref": "#/definitions/LocalizableString", + "readOnly": true, + "description": "the name and the display name of the metric, i.e. it is localizable string." + }, "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } + "x-ms-client-flatten": true, + "$ref": "#/definitions/BaselineProperties", + "description": "the properties of the baseline." } }, - "BaselineResponse": { - "type": "object", - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "the metric baseline Id." - }, - "type": { - "type": "string", - "readOnly": true, - "description": "the resource type of the baseline resource." - }, - "name": { - "$ref": "#/definitions/LocalizableString", - "readOnly": true, - "description": "the name and the display name of the metric, i.e. it is localizable string." - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/BaselineProperties", - "description": "the properties of the baseline." - } + "description": "The response to a baseline query." + }, + "BaselineProperties": { + "properties": { + "timespan": { + "type": "string", + "description": "The timespan for which the data was retrieved. Its value consists of two datetimes concatenated, separated by '/'. This may be adjusted in the future and returned back from what was originally requested." }, - "description": "The response to a baseline query." - }, - "BaselineProperties": { - "properties": { - "timespan": { - "type": "string", - "description": "The timespan for which the data was retrieved. Its value consists of two datetimes concatenated, separated by '/'. This may be adjusted in the future and returned back from what was originally requested." - }, - "interval": { - "type": "string", - "format": "duration", - "description": "The interval (window size) for which the metric data was returned in. This may be adjusted in the future and returned back from what was originally requested. This is not present if a metadata request was made." - }, - "aggregation": { + "interval": { + "type": "string", + "format": "duration", + "description": "The interval (window size) for which the metric data was returned in. This may be adjusted in the future and returned back from what was originally requested. This is not present if a metadata request was made." + }, + "aggregation": { + "type": "string", + "description": "The aggregation type of the metric." + }, + "timestamps": { + "type": "array", + "items": { "type": "string", - "description": "The aggregation type of the metric." + "format": "date-time", + "description": "the timestamp for the baseline value in ISO 8601 format." }, - "timestamps": { - "type": "array", - "items": { - "type": "string", - "format": "date-time", - "description": "the timestamp for the baseline value in ISO 8601 format." - }, - "description": "the array of timestamps of the baselines." - }, - "baseline": { - "type": "array", - "items": { - "$ref": "#/definitions/Baseline" - }, - "description": "the baseline values for each sensitivity." + "description": "the array of timestamps of the baselines." + }, + "baseline": { + "type": "array", + "items": { + "$ref": "#/definitions/Baseline" }, - "metadata": { - "type": "array", - "items": { - "$ref": "#/definitions/BaselineMetadataValue" - }, - "description": "the baseline metadata values." - } + "description": "the baseline values for each sensitivity." }, - "description": "The baseline properties class." + "metadata": { + "type": "array", + "items": { + "$ref": "#/definitions/BaselineMetadataValue" + }, + "description": "the baseline metadata values." + } }, - "Baseline": { - "type": "object", - "properties": { - "sensitivity": { - "type": "string", - "enum": [ - "Low", - "Medium", - "High" - ], - "x-ms-enum": { - "name": "Sensitivity", - "modelAsString": false - }, - "description": "the sensitivity of the baseline." + "description": "The baseline properties class." + }, + "Baseline": { + "type": "object", + "properties": { + "sensitivity": { + "type": "string", + "enum": [ + "Low", + "Medium", + "High" + ], + "x-ms-enum": { + "name": "Sensitivity", + "modelAsString": false }, - "lowThresholds": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single low threshold value." - }, - "description": "The low thresholds of the baseline." + "description": "the sensitivity of the baseline." + }, + "lowThresholds": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single low threshold value." }, - "highThresholds": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single high threshold value." - }, - "description": "The high thresholds of the baseline." - } + "description": "The low thresholds of the baseline." }, - "required": [ "sensitivity", "lowThresholds", "highThresholds" ], - "description": "The baseline values for a single sensitivity value." - } - }, - "parameters": { - "ExtendedResourceUriParameter": { - "name": "resourceUri", - "in": "path", - "required": true, - "type": "string", - "description": "The identifier of the resource. It has the following structure: subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/{providerName}/{resourceName}. For example: subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", - "x-ms-parameter-location": "method", - "x-ms-skip-url-encoding": true - }, - "MetricNameParameter": { - "name": "metricName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the metric to retrieve the baseline for.", - "x-ms-parameter-location": "method" - }, - "TimespanParameter": { - "name": "timespan", - "in": "query", - "required": false, - "type": "string", - "description": "The timespan of the query. It is a string with the following format 'startDateTime_ISO/endDateTime_ISO'.", - "x-ms-parameter-location": "method" - }, - "IntervalParameter": { - "name": "interval", - "in": "query", - "required": false, - "type": "string", - "format": "duration", - "description": "The interval (i.e. timegrain) of the query.", - "x-ms-parameter-location": "method" - }, - "AggregationParameter": { - "name": "aggregation", - "in": "query", - "required": false, - "type": "string", - "description": "The aggregation type of the metric to retrieve the baseline for.", - "x-ms-parameter-location": "method" - }, - "SensitivitiesParameter": { - "name": "sensitivities", - "in": "query", - "required": false, - "type": "string", - "description": "The list of sensitivities (comma separated) to retrieve.", - "x-ms-parameter-location": "method" + "highThresholds": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single high threshold value." + }, + "description": "The high thresholds of the baseline." + } }, - "BaselineResultTypeParameter": { - "name": "resultType", - "in": "query", - "type": "string", - "enum": [ - "Data", - "Metadata" - ], - "x-ms-enum": { - "name": "ResultType", - "modelAsString": false - }, - "description": "Allows retrieving only metadata of the baseline. On data request all information is retrieved.", - "x-ms-parameter-location": "method", - "required": false + "required": [ + "sensitivity", + "lowThresholds", + "highThresholds" + ], + "description": "The baseline values for a single sensitivity value." + } + }, + "parameters": { + "ExtendedResourceUriParameter": { + "name": "resourceUri", + "in": "path", + "required": true, + "type": "string", + "description": "The identifier of the resource. It has the following structure: subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/{providerName}/{resourceName}. For example: subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", + "x-ms-parameter-location": "method", + "x-ms-skip-url-encoding": true + }, + "MetricNameParameter": { + "name": "metricName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the metric to retrieve the baseline for.", + "x-ms-parameter-location": "method" + }, + "TimespanParameter": { + "name": "timespan", + "in": "query", + "required": false, + "type": "string", + "description": "The timespan of the query. It is a string with the following format 'startDateTime_ISO/endDateTime_ISO'.", + "x-ms-parameter-location": "method" + }, + "IntervalParameter": { + "name": "interval", + "in": "query", + "required": false, + "type": "string", + "format": "duration", + "description": "The interval (i.e. timegrain) of the query.", + "x-ms-parameter-location": "method" + }, + "AggregationParameter": { + "name": "aggregation", + "in": "query", + "required": false, + "type": "string", + "description": "The aggregation type of the metric to retrieve the baseline for.", + "x-ms-parameter-location": "method" + }, + "SensitivitiesParameter": { + "name": "sensitivities", + "in": "query", + "required": false, + "type": "string", + "description": "The list of sensitivities (comma separated) to retrieve.", + "x-ms-parameter-location": "method" + }, + "BaselineResultTypeParameter": { + "name": "resultType", + "in": "query", + "type": "string", + "enum": [ + "Data", + "Metadata" + ], + "x-ms-enum": { + "name": "ResultType", + "modelAsString": false }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." - } + "description": "Allows retrieving only metadata of the baseline. On data request all information is retrieved.", + "x-ms-parameter-location": "method", + "required": false + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } - } \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/calculateBaseline_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/calculateBaseline_API.json index c2e9065d56f5..e1ce81ced40d 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/calculateBaseline_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/calculateBaseline_API.json @@ -1,214 +1,226 @@ { - "swagger": "2.0", - "info": { - "title": "MonitorManagementClient", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2017-11-01-preview" + "swagger": "2.0", + "info": { + "title": "MonitorManagementClient", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "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" - } + "version": "2017-11-01-preview" + }, + "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": { - "/{resourceUri}/providers/microsoft.insights/calculatebaseline": { - "post": { - "tags": [ - "Baseline" - ], - "operationId": "MetricBaseline_CalculateBaseline", - "description": "**Lists the baseline values for a resource**.", - "parameters": [ - { - "$ref": "#/parameters/ExtendedResourceUriParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "TimeSeriesInformation", - "description": "Information that need to be specified to calculate a baseline on a time series.", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/TimeSeriesInformation" - } + } + }, + "paths": { + "/{resourceUri}/providers/microsoft.insights/calculatebaseline": { + "post": { + "tags": [ + "Baseline" + ], + "operationId": "MetricBaseline_CalculateBaseline", + "description": "**Lists the baseline values for a resource**.", + "parameters": [ + { + "$ref": "#/parameters/ExtendedResourceUriParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "TimeSeriesInformation", + "description": "Information that need to be specified to calculate a baseline on a time series.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/TimeSeriesInformation" } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "Successful request to get the list of metric values.", - "schema": { - "$ref": "#/definitions/CalculateBaselineResponse" - } + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } }, - "x-ms-examples": { - "Calculate baseline": { "$ref": "./examples/CalculateBaseline.json" } + "200": { + "description": "Successful request to get the list of metric values.", + "schema": { + "$ref": "#/definitions/CalculateBaselineResponse" + } + } + }, + "x-ms-examples": { + "Calculate baseline": { + "$ref": "./examples/CalculateBaseline.json" } } } - }, - "definitions": { - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } + } + }, + "definitions": { + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" } - }, - "TimeSeriesInformation": { - "properties": { - "sensitivities": { - "type": "array", - "items": { - "type": "string", - "description": "the requested sensitivity for calculating the baseline." - }, - "description": "the list of sensitivities for calculating the baseline." + } + }, + "TimeSeriesInformation": { + "properties": { + "sensitivities": { + "type": "array", + "items": { + "type": "string", + "description": "the requested sensitivity for calculating the baseline." }, - "values": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single metric value." - }, - "description": "The metric values to calculate the baseline." + "description": "the list of sensitivities for calculating the baseline." + }, + "values": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single metric value." }, - "timestamps": { - "type": "array", - "items": { - "type": "string", - "format": "date-time", - "description": "the timestamp for the baseline value in ISO 8601 format." - }, - "description": "the array of timestamps of the baselines." - } + "description": "The metric values to calculate the baseline." }, - "required": [ "sensitivities", "values" ], - "description": "The time series info needed for calculating the baseline." - }, - "CalculateBaselineResponse": { - "type": "object", - "properties": { - "type": { + "timestamps": { + "type": "array", + "items": { "type": "string", - "description": "the resource type of the baseline resource." + "format": "date-time", + "description": "the timestamp for the baseline value in ISO 8601 format." }, - "timestamps": { - "type": "array", - "items": { - "type": "string", - "format": "date-time", - "description": "the timestamp for the baseline value in ISO 8601 format." - }, - "description": "the array of timestamps of the baselines." + "description": "the array of timestamps of the baselines." + } + }, + "required": [ + "sensitivities", + "values" + ], + "description": "The time series info needed for calculating the baseline." + }, + "CalculateBaselineResponse": { + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "the resource type of the baseline resource." + }, + "timestamps": { + "type": "array", + "items": { + "type": "string", + "format": "date-time", + "description": "the timestamp for the baseline value in ISO 8601 format." }, - "baseline": { - "type": "array", - "items": { - "$ref": "#/definitions/Baseline" - }, - "description": "the baseline values for each sensitivity." - } + "description": "the array of timestamps of the baselines." }, - "required": [ "type", "baseline" ], - "description": "The response to a calculate baseline call." + "baseline": { + "type": "array", + "items": { + "$ref": "#/definitions/Baseline" + }, + "description": "the baseline values for each sensitivity." + } }, - "Baseline": { - "type": "object", - "properties": { - "sensitivity": { - "type": "string", - "enum": [ - "Low", - "Medium", - "High" - ], - "x-ms-enum": { - "name": "Sensitivity", - "modelAsString": false - }, - "description": "the sensitivity of the baseline." + "required": [ + "type", + "baseline" + ], + "description": "The response to a calculate baseline call." + }, + "Baseline": { + "type": "object", + "properties": { + "sensitivity": { + "type": "string", + "enum": [ + "Low", + "Medium", + "High" + ], + "x-ms-enum": { + "name": "Sensitivity", + "modelAsString": false }, - "lowThresholds": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single low threshold value." - }, - "description": "The low thresholds of the baseline." + "description": "the sensitivity of the baseline." + }, + "lowThresholds": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single low threshold value." }, - "highThresholds": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single high threshold value." - }, - "description": "The high thresholds of the baseline." - } + "description": "The low thresholds of the baseline." }, - "required": [ "sensitivity", "lowThresholds", "highThresholds" ], - "description": "The baseline values for a single sensitivity value." - } - }, - "parameters": { - "ExtendedResourceUriParameter": { - "name": "resourceUri", - "in": "path", - "required": true, - "type": "string", - "description": "The identifier of the resource. It has the following structure: subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/{providerName}/{resourceName}. For example: subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", - "x-ms-parameter-location": "method", - "x-ms-skip-url-encoding": true + "highThresholds": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single high threshold value." + }, + "description": "The high thresholds of the baseline." + } }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." - } + "required": [ + "sensitivity", + "lowThresholds", + "highThresholds" + ], + "description": "The baseline values for a single sensitivity value." + } + }, + "parameters": { + "ExtendedResourceUriParameter": { + "name": "resourceUri", + "in": "path", + "required": true, + "type": "string", + "description": "The identifier of the resource. It has the following structure: subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/{providerName}/{resourceName}. For example: subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", + "x-ms-parameter-location": "method", + "x-ms-skip-url-encoding": true + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } - } \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/CalculateBaseline.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/CalculateBaseline.json index 3b1a708a6c91..706ed919758c 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/CalculateBaseline.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/CalculateBaseline.json @@ -1,41 +1,47 @@ { - "parameters": { - "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", - "api-version": "2017-11-01-preview", - "TimeSeriesInformation": { - "sensitivities": ["Low", "Medium"], - "values": [61.0, 62.0] - } - }, - "responses": { - "200": { - "body": { - "type": "Microsoft.Insights/calculatebaseline", - "baseline": [ - { - "sensitivity": "Low", - "lowThresholds": [ - 30.0, - 31.1 - ], - "highThresholds": [ - 90.3453, - 91.3453 - ] - }, - { - "sensitivity": "Medium", - "lowThresholds": [ - 50.0, - 51.1 - ], - "highThresholds": [ - 70.3453, - 71.3453 - ] - } - ] - } - } + "parameters": { + "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", + "api-version": "2017-11-01-preview", + "TimeSeriesInformation": { + "sensitivities": [ + "Low", + "Medium" + ], + "values": [ + 61.0, + 62.0 + ] } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "type": "Microsoft.Insights/calculatebaseline", + "baseline": [ + { + "sensitivity": "Low", + "lowThresholds": [ + 30.0, + 31.1 + ], + "highThresholds": [ + 90.3453, + 91.3453 + ] + }, + { + "sensitivity": "Medium", + "lowThresholds": [ + 50.0, + 51.1 + ], + "highThresholds": [ + 70.3453, + 71.3453 + ] + } + ] + } + } + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/GetBaseline.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/GetBaseline.json index e7b39ef4b363..2c84cad30ea4 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/GetBaseline.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/GetBaseline.json @@ -1,55 +1,55 @@ { - "parameters": { - "resourceUri": "subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "metricName": "PercentageCpu", - "aggregation": "Average", - "interval": "PT1H", - "sensitivities": "Low,Medium", - "api-version": "2017-11-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Insights/baseline/PercentageCpu", - "type": "Microsoft.Insights/baseline", - "name": { - "value": "PercentageCpu" - }, - "properties": { - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "aggregation": "Average", - "interval": "PT1H", - "timestamps": [ - "2017-04-14T02:20:00Z", - "2017-04-14T03:20:00Z" - ], - "baseline": [ - { - "sensitivity": "Low", - "lowThresholds": [ - 30.0, - 31.1 - ], - "highThresholds": [ - 90.3453, - 91.3453 - ] - }, - { - "sensitivity": "Medium", - "lowThresholds": [ - 50.0, - 51.1 - ], - "highThresholds": [ - 70.3453, - 71.3453 - ] - } - ] - } - } + "parameters": { + "resourceUri": "subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "metricName": "PercentageCpu", + "aggregation": "Average", + "interval": "PT1H", + "sensitivities": "Low,Medium", + "api-version": "2017-11-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Insights/baseline/PercentageCpu", + "type": "Microsoft.Insights/baseline", + "name": { + "value": "PercentageCpu" + }, + "properties": { + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "aggregation": "Average", + "interval": "PT1H", + "timestamps": [ + "2017-04-14T02:20:00Z", + "2017-04-14T03:20:00Z" + ], + "baseline": [ + { + "sensitivity": "Low", + "lowThresholds": [ + 30.0, + 31.1 + ], + "highThresholds": [ + 90.3453, + 91.3453 + ] + }, + { + "sensitivity": "Medium", + "lowThresholds": [ + 50.0, + 51.1 + ], + "highThresholds": [ + 70.3453, + 71.3453 + ] + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/GetBaselineMetadata.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/GetBaselineMetadata.json index e3384a56ce4a..0f6ea5ff333d 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/GetBaselineMetadata.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-11-01-preview/examples/GetBaselineMetadata.json @@ -1,37 +1,37 @@ { - "parameters": { - "resourceUri": "subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "metricName": "PercentageCpu", - "aggregation": "Average", - "interval": "PT1H", - "resulttype": "metadata", - "api-version": "2017-11-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Insights/baseline/PercentageCpu", - "type": "Microsoft.Insights/baseline", - "name": { - "value": "PercentageCpu" - }, - "properties": { - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "aggregation": "Average", - "interval": "PT1H", - "metadata": [ - { - "name": "CurrentTrainingState", - "value": "Trained" - }, - { - "name": "SelectedModel", - "value": "AdjustedBoxplot" - } - ] - } - } + "parameters": { + "resourceUri": "subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "metricName": "PercentageCpu", + "aggregation": "Average", + "interval": "PT1H", + "resulttype": "metadata", + "api-version": "2017-11-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Insights/baseline/PercentageCpu", + "type": "Microsoft.Insights/baseline", + "name": { + "value": "PercentageCpu" + }, + "properties": { + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "aggregation": "Average", + "interval": "PT1H", + "metadata": [ + { + "name": "CurrentTrainingState", + "value": "Trained" + }, + { + "name": "SelectedModel", + "value": "AdjustedBoxplot" + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-12-01-preview/examples/GetMetricNamespaces.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-12-01-preview/examples/GetMetricNamespaces.json index 46a037b1705e..1eff5dfacb69 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-12-01-preview/examples/GetMetricNamespaces.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-12-01-preview/examples/GetMetricNamespaces.json @@ -1,23 +1,23 @@ { - "parameters": { - "resourceUri": "subscriptions/a252e87d-ec06-45b1-8901-57e613be91b0/resourceGroups/larrytest/providers/Microsoft.DocumentDB/databaseAccounts/larrytestdocdb", - "startTime": "2018-08-31T15:53:00Z", - "api-version": "2017-12-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/a252e87d-ec06-45b1-8901-57e613be91b0/resourceGroups/larrytest/providers/Microsoft.DocumentDB/databaseAccounts/larrytestdocdb/providers/microsoft.insights/metricNamespaces/Microsoft.DocumentDB-databaseAccounts", - "name": "Microsoft.DocumentDB-databaseAccounts", - "type": "Microsoft.Insights/metricNamespaces", - "properties": { - "metricNamespaceName": "Microsoft.DocumentDB/databaseAccounts" - } - } - ] - } - } + "parameters": { + "resourceUri": "subscriptions/a252e87d-ec06-45b1-8901-57e613be91b0/resourceGroups/larrytest/providers/Microsoft.DocumentDB/databaseAccounts/larrytestdocdb", + "startTime": "2018-08-31T15:53:00Z", + "api-version": "2017-12-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/a252e87d-ec06-45b1-8901-57e613be91b0/resourceGroups/larrytest/providers/Microsoft.DocumentDB/databaseAccounts/larrytestdocdb/providers/microsoft.insights/metricNamespaces/Microsoft.DocumentDB-databaseAccounts", + "name": "Microsoft.DocumentDB-databaseAccounts", + "type": "Microsoft.Insights/metricNamespaces", + "properties": { + "metricNamespaceName": "Microsoft.DocumentDB/databaseAccounts" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-12-01-preview/metricNamespaces_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-12-01-preview/metricNamespaces_API.json index ba9d6a3e6c2c..85e1e0f5a63f 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-12-01-preview/metricNamespaces_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-12-01-preview/metricNamespaces_API.json @@ -72,7 +72,9 @@ "nextLinkName": null }, "x-ms-examples": { - "Get Metric Namespaces without filter": { "$ref": "./examples/GetMetricNamespaces.json" } + "Get Metric Namespaces without filter": { + "$ref": "./examples/GetMetricNamespaces.json" + } } } } @@ -102,7 +104,7 @@ "type": "string", "description": "The name of the namespace." }, - "properties": { + "properties": { "$ref": "#/definitions/MetricNamespaceName", "description": "Properties which include the fully qualified namespace name." } @@ -119,7 +121,9 @@ "description": "The values for the metric namespaces." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents collection of metric namespaces." }, "ErrorResponse": { @@ -154,7 +158,7 @@ "x-ms-parameter-location": "method", "x-ms-skip-url-encoding": true }, - "StartTimeParameter": { + "StartTimeParameter": { "name": "startTime", "in": "query", "required": false, @@ -163,4 +167,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/createOrUpdateGuestDiagnosticSettings.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/createOrUpdateGuestDiagnosticSettings.json index e57cc6ec6235..19e93cdd1e9d 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/createOrUpdateGuestDiagnosticSettings.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/createOrUpdateGuestDiagnosticSettings.json @@ -1,153 +1,150 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ResourceGroup", - "diagnosticSettingsName": "SampleDiagSetting", - "api-version": "2018-06-01-preview", - "diagnosticSettings": { - "location": "Global", - "tags": {}, - "properties": { - "osType": "Windows", - "dataSources": [ - { - "kind": "PerformanceCounter", - "configuration": { - "perfCounters": [ - { - "name": "\\Process(_Total)\\%Processor Time", - "samplingPeriod": "PT1M" - }, - { - "name": "\\Process(_Total)\\Working Set", - "samplingPeriod": "PT1M" - } - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - }, - { - "kind": "ETWProviders", - "configuration": { - "providers": [ - { - "name": "AuditLog", - "id": 1, - "filter": "filter exp" - }, - { - "name": "TraceLog", - "id": 2 - } - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - }, - { - "kind": "WindowsEventLogs", - "configuration": { - "eventLogs": [ - { - "logName": "Application", - "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"CatWoman\"" - - }, - { - "logName": "Application", - "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"BatMan\"" - } - - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - } - + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ResourceGroup", + "diagnosticSettingsName": "SampleDiagSetting", + "api-version": "2018-06-01-preview", + "diagnosticSettings": { + "location": "Global", + "tags": {}, + "properties": { + "osType": "Windows", + "dataSources": [ + { + "kind": "PerformanceCounter", + "configuration": { + "perfCounters": [ + { + "name": "\\Process(_Total)\\%Processor Time", + "samplingPeriod": "PT1M" + }, + { + "name": "\\Process(_Total)\\Working Set", + "samplingPeriod": "PT1M" + } + ] + }, + "sinks": [ + { + "kind": "LogAnalytics" + } + ] + }, + { + "kind": "ETWProviders", + "configuration": { + "providers": [ + { + "name": "AuditLog", + "id": 1, + "filter": "filter exp" + }, + { + "name": "TraceLog", + "id": 2 + } + ] + }, + "sinks": [ + { + "kind": "LogAnalytics" + } + ] + }, + { + "kind": "WindowsEventLogs", + "configuration": { + "eventLogs": [ + { + "logName": "Application", + "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"CatWoman\"" + }, + { + "logName": "Application", + "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"BatMan\"" + } + ] + }, + "sinks": [ + { + "kind": "LogAnalytics" + } + ] + } + ] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ResourceGroup/providers/microsoft.insights/guestDiagnosticSettings/SampleDiagSetting", + "name": "productionMachineSetting", + "type": "Microsoft.Insights/guestDiagnosticSettings", + "location": "West US", + "tags": {}, + "properties": { + "osType": "Windows", + "dataSources": [ + { + "kind": "PerformanceCounter", + "configuration": { + "perfCounters": [ + { + "name": "\\Process(_Total)\\%Processor Time", + "samplingPeriod": "PT1M" + }, + { + "name": "\\Process(_Total)\\Working Set", + "samplingPeriod": "PT1M" + } ] + }, + "sinks": [ + { + "kind": "LogAnalytics" + } + ] } + ] } + } }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ResourceGroup/providers/microsoft.insights/guestDiagnosticSettings/SampleDiagSetting", - "name": "productionMachineSetting", - "type": "Microsoft.Insights/guestDiagnosticSettings", - "location": "West US", - "tags": {}, - "properties": { - "osType": "Windows", - "dataSources": [ - { - "kind": "PerformanceCounter", - "configuration": { - "perfCounters": [ - { - "name": "\\Process(_Total)\\%Processor Time", - "samplingPeriod": "PT1M" - }, - { - "name": "\\Process(_Total)\\Working Set", - "samplingPeriod": "PT1M" - } - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - } - ] - } - } - }, - "201": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ResourceGroup/providers/microsoft.insights/guestDiagnosticSettings/SampleDiagSetting", - "name": "SampleDiagSetting", - "type": "Microsoft.Insights/guestDiagnosticSettings", - "location": "West US", - "tags": {}, - "properties": { - "osType": "Windows", - "dataSources": [ - { - "kind": "PerformanceCounter", - "configuration": { - "perfCounters": [ - { - "name": "\\Process(_Total)\\%Processor Time", - "samplingPeriod": "PT1M" - }, - { - "name": "\\Process(_Total)\\Working Set", - "samplingPeriod": "PT1M" - } - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - } - ] + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ResourceGroup/providers/microsoft.insights/guestDiagnosticSettings/SampleDiagSetting", + "name": "SampleDiagSetting", + "type": "Microsoft.Insights/guestDiagnosticSettings", + "location": "West US", + "tags": {}, + "properties": { + "osType": "Windows", + "dataSources": [ + { + "kind": "PerformanceCounter", + "configuration": { + "perfCounters": [ + { + "name": "\\Process(_Total)\\%Processor Time", + "samplingPeriod": "PT1M" + }, + { + "name": "\\Process(_Total)\\Working Set", + "samplingPeriod": "PT1M" + } + ] + }, + "sinks": [ + { + "kind": "LogAnalytics" } + ] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/createOrUpdateGuestDiagnosticSettingsAssociation.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/createOrUpdateGuestDiagnosticSettingsAssociation.json index c35cff6c5de2..633e67f69828 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/createOrUpdateGuestDiagnosticSettingsAssociation.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/createOrUpdateGuestDiagnosticSettingsAssociation.json @@ -1,42 +1,42 @@ { - "parameters": { - "resourceUri":"subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai", - "associationName": "healthSystemMachineConfigAssociation", - "api-version": "2018-06-01-preview", - "diagnosticSettingsAssociation": { - "location": "Global", - "tags": {}, - "properties": { - "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/vmSettingForSecurity" - } + "parameters": { + "resourceUri": "subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai", + "associationName": "healthSystemMachineConfigAssociation", + "api-version": "2018-06-01-preview", + "diagnosticSettingsAssociation": { + "location": "Global", + "tags": {}, + "properties": { + "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/vmSettingForSecurity" + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai/providers/microsoft.insights/guestDiagnosticSettingsAssociation/healthSystemMachineConfigAssociation", + "type": "Microsoft.Insights/GuestDiagnosticSettingsAssociation", + "name": "healthSystemMachineConfigAssociation", + "location": "Global", + "tags": {}, + "properties": { + "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/vmSettingForSecurity" } + } }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai/providers/microsoft.insights/guestDiagnosticSettingsAssociation/healthSystemMachineConfigAssociation", - "type": "Microsoft.Insights/GuestDiagnosticSettingsAssociation", - "name": "healthSystemMachineConfigAssociation", - "location": "Global", - "tags": {}, - "properties": { - "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/vmSettingForSecurity" - } - } - }, - "201": { - "headers": {}, - "body": { - "id": "/subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai/providers/microsoft.insights/guestDiagnosticSettingsAssociation/healthSystemMachineConfigAssociation", - "type": "Microsoft.Insights/GuestDiagnosticSettingsAssociation", - "name": "healthSystemMachineConfigAssociation", - "location": "Global", - "tags": {}, - "properties": { - "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/vmSettingForSecurity" - } - } + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai/providers/microsoft.insights/guestDiagnosticSettingsAssociation/healthSystemMachineConfigAssociation", + "type": "Microsoft.Insights/GuestDiagnosticSettingsAssociation", + "name": "healthSystemMachineConfigAssociation", + "location": "Global", + "tags": {}, + "properties": { + "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/vmSettingForSecurity" } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/deleteGuestDiagnosticSettingsAssociation.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/deleteGuestDiagnosticSettingsAssociation.json index 2de5c4bb50ef..4b1941830408 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/deleteGuestDiagnosticSettingsAssociation.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/deleteGuestDiagnosticSettingsAssociation.json @@ -1,17 +1,17 @@ { - "parameters": { - "resourceUri":"subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai", - "associationName": "healthSystemMachineConfigAssociation", - "api-version": "2018-06-01-preview" + "parameters": { + "resourceUri": "subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai", + "associationName": "healthSystemMachineConfigAssociation", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/getGuestDiagnosticSettings.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/getGuestDiagnosticSettings.json index 09a003c11131..b9a8f6faa1dd 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/getGuestDiagnosticSettings.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/getGuestDiagnosticSettings.json @@ -1,168 +1,162 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ResourceGroup", - "diagnosticSettingsName": "productionMachineSetting", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ResourceGroup/providers/microsoft.insights/guestDiagnosticSettings/productionMachineSetting", - "name": "productionMachineSetting", - "type": "Microsoft.Insights/guestDiagnosticSettings", - "location": "West US", - "tags": {}, - "properties": { - "osType": "windows", - "dataSources": [ - { - "kind": "PerformanceCounter", - "configuration": { - "perfCounters": [ - { - "name": "\\Process(_Total)\\%Processor Time", - "samplingPeriod": "PT1M" - }, - { - "name": "\\Process(_Total)\\Working Set", - "samplingPeriod": "PT1M" - } - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - }, - { - "kind": "ETWProviders", - "configuration": { - "providers": [ - { - "name": "AuditLog", - "id": 1, - "filter": "filter exp" - }, - { - "name": "TraceLog", - "id": 2 - } - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - }, - { - "kind": "WindowsEventLogs", - "configuration": { - "eventLogs": [ - { - "logName": "Application", - "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"CatWoman\"" - - }, - { - "logName": "Application", - "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"BatMan\"" - } - - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - } - - ] + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ResourceGroup", + "diagnosticSettingsName": "productionMachineSetting", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ResourceGroup/providers/microsoft.insights/guestDiagnosticSettings/productionMachineSetting", + "name": "productionMachineSetting", + "type": "Microsoft.Insights/guestDiagnosticSettings", + "location": "West US", + "tags": {}, + "properties": { + "osType": "windows", + "dataSources": [ + { + "kind": "PerformanceCounter", + "configuration": { + "perfCounters": [ + { + "name": "\\Process(_Total)\\%Processor Time", + "samplingPeriod": "PT1M" + }, + { + "name": "\\Process(_Total)\\Working Set", + "samplingPeriod": "PT1M" + } + ] + }, + "sinks": [ + { + "kind": "LogAnalytics" + } + ] + }, + { + "kind": "ETWProviders", + "configuration": { + "providers": [ + { + "name": "AuditLog", + "id": 1, + "filter": "filter exp" + }, + { + "name": "TraceLog", + "id": 2 + } + ] + }, + "sinks": [ + { + "kind": "LogAnalytics" } + ] + }, + { + "kind": "WindowsEventLogs", + "configuration": { + "eventLogs": [ + { + "logName": "Application", + "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"CatWoman\"" + }, + { + "logName": "Application", + "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"BatMan\"" + } + ] + }, + "sinks": [ + { + "kind": "LogAnalytics" + } + ] } - }, - "202": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ResourceGroup/providers/microsoft.insights/guestDiagnosticSettings/productionMachineSetting", - "name": "productionMachineSetting", - "type": "Microsoft.Insights/guestDiagnosticSettings", - "location": "West US", - "tags": {}, - "properties": { - "osType": "windows", - "dataSources": [ - { - "kind": "PerformanceCounter", - "configuration": { - "perfCounters": [ - { - "name": "\\Process(_Total)\\%Processor Time", - "samplingPeriod": "PT1M" - }, - { - "name": "\\Process(_Total)\\Working Set", - "samplingPeriod": "PT1M" - } - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - }, - { - "kind": "ETWProviders", - "configuration": { - "providers": [ - { - "name": "AuditLog", - "id": 1, - "filter": "filter exp" - }, - { - "name": "TraceLog", - "id": 2 - } - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - }, - { - "kind": "WindowsEventLogs", - "configuration": { - "eventLogs": [ - { - "logName": "Application", - "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"CatWoman\"" - - }, - { - "logName": "Application", - "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"BatMan\"" - } - - ] - }, - "sinks": [ - { - "kind": "LogAnalytics" - } - ] - } - - ] + ] + } + } + }, + "202": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ResourceGroup/providers/microsoft.insights/guestDiagnosticSettings/productionMachineSetting", + "name": "productionMachineSetting", + "type": "Microsoft.Insights/guestDiagnosticSettings", + "location": "West US", + "tags": {}, + "properties": { + "osType": "windows", + "dataSources": [ + { + "kind": "PerformanceCounter", + "configuration": { + "perfCounters": [ + { + "name": "\\Process(_Total)\\%Processor Time", + "samplingPeriod": "PT1M" + }, + { + "name": "\\Process(_Total)\\Working Set", + "samplingPeriod": "PT1M" + } + ] + }, + "sinks": [ + { + "kind": "LogAnalytics" + } + ] + }, + { + "kind": "ETWProviders", + "configuration": { + "providers": [ + { + "name": "AuditLog", + "id": 1, + "filter": "filter exp" + }, + { + "name": "TraceLog", + "id": 2 + } + ] + }, + "sinks": [ + { + "kind": "LogAnalytics" + } + ] + }, + { + "kind": "WindowsEventLogs", + "configuration": { + "eventLogs": [ + { + "logName": "Application", + "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"CatWoman\"" + }, + { + "logName": "Application", + "filter": "SourceName == Xyz AND EventId = \"100\" AND $Xpath/Column=\"DCName\" = \"BatMan\"" + } + ] + }, + "sinks": [ + { + "kind": "LogAnalytics" } + ] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/getGuestDiagnosticSettingsAssociation.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/getGuestDiagnosticSettingsAssociation.json index 5ee3afd4ef02..5cd3f4ba672c 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/getGuestDiagnosticSettingsAssociation.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/getGuestDiagnosticSettingsAssociation.json @@ -1,22 +1,22 @@ { - "parameters": { - "resourceUri":"subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai", - "associationName": "healthSystemMachineConfigAssociation", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai/providers/microsoft.insights/guestDiagnosticSettingsAssociation/healthSystemMachineConfigAssociation", - "type": "Microsoft.Insights/GuestDiagnosticSettingsAssociation", - "name": "healthSystemMachineConfigAssociation", - "location": "Global", - "tags": {}, - "properties": { - "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/SampleDiagnosticSettingsName" - } - } + "parameters": { + "resourceUri": "subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai", + "associationName": "healthSystemMachineConfigAssociation", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai/providers/microsoft.insights/guestDiagnosticSettingsAssociation/healthSystemMachineConfigAssociation", + "type": "Microsoft.Insights/GuestDiagnosticSettingsAssociation", + "name": "healthSystemMachineConfigAssociation", + "location": "Global", + "tags": {}, + "properties": { + "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/SampleDiagnosticSettingsName" } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/updateGuestDiagnosticSettingsAssociation.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/updateGuestDiagnosticSettingsAssociation.json index e33341549273..2cfc3cf55463 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/updateGuestDiagnosticSettingsAssociation.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/examples/updateGuestDiagnosticSettingsAssociation.json @@ -1,28 +1,28 @@ { + "parameters": { + "resourceUri": "subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai", + "associationName": "healthSystemMachineConfigAssociation", + "api-version": "2018-06-01-preview", "parameters": { - "resourceUri":"subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai", - "associationName": "healthSystemMachineConfigAssociation", - "api-version": "2018-06-01-preview", - "parameters": { - "tags": null, - "properties": { - "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/vmSettingForSecurity" - } - } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai/providers/microsoft.insights/guestDiagnosticSettingsAssociation/healthSystemMachineConfigAssociation", - "type": "Microsoft.Insights/GuestDiagnosticSettingsAssociation", - "name": "healthSystemMachineConfigAssociation", - "location": "Global", - "tags": null, - "properties": { - "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/vmSettingForSecurity" - } - } + "tags": null, + "properties": { + "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/vmSettingForSecurity" + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/8498f01b-8064-4e37-856e-318f3c6c685f/resourceGroups/healthsystem/providers/Microsoft.Compute/virtualMachines/eastussojai/providers/microsoft.insights/guestDiagnosticSettingsAssociation/healthSystemMachineConfigAssociation", + "type": "Microsoft.Insights/GuestDiagnosticSettingsAssociation", + "name": "healthSystemMachineConfigAssociation", + "location": "Global", + "tags": null, + "properties": { + "guestDiagnosticSettingsName": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-Association-ResourceGroup/providers/providers/microsoft.insights/guestDiagnosticSettings/vmSettingForSecurity" } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettingsAssociation_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettingsAssociation_API.json index 80487b3dc64d..c48fc471c6ec 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettingsAssociation_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettingsAssociation_API.json @@ -1,444 +1,446 @@ { - "swagger": "2.0", - "info": { - "title": "Guest Diagnostic Settings Association API", - "description": "API to Add/Remove/List Guest Diagnostics Settings Association for Azure Resources", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2018-06-01-preview" + "swagger": "2.0", + "info": { + "title": "Guest Diagnostic Settings Association API", + "description": "API to Add/Remove/List Guest Diagnostics Settings Association for Azure Resources", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "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" - } + "version": "2018-06-01-preview" + }, + "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": { - "/{resourceUri}/providers/microsoft.insights/guestDiagnosticSettingsAssociation/{associationName}": { - "put": { - "description": "Creates or updates guest diagnostics settings association.", - "tags": [ - "GuestDiagnosticsSettingsAssociation" - ], - "operationId": "guestDiagnosticsSettingsAssociation_CreateOrUpdate", - "x-ms-examples": { - "Create or update an guest diagnostic settings association": { - "$ref": "./examples/createOrUpdateGuestDiagnosticSettingsAssociation.json" - } - }, - "parameters": [ - { - "name": "resourceUri", - "in": "path", - "required": true, - "type": "string", - "description": "The fully qualified ID of the resource, including the resource name and resource type.", - "x-ms-skip-url-encoding": true - }, - { - "$ref": "#/parameters/DiagnosticSettingsAssociationNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "diagnosticSettingsAssociation", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" - }, - "description": "The diagnostic settings association to create or update." - } - ], - "responses": { - "200": { - "description": "An existing guest diagnostic settings association was successfully updated.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" - } - }, - "201": { - "description": "A new guest diagnostic settings association was successfully created.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" - } - }, - "default": { - "description": "An error occurred and the guest diagnostic settings association could not be created or updated.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "get": { - "description": "Gets guest diagnostics association settings.", - "tags": [ - "GuestDiagnosticsSettingsAssociation" - ], - "operationId": "guestDiagnosticsSettingsAssociation_Get", - "x-ms-examples": { - "Create or update an guest diagnostic settings association": { - "$ref": "./examples/getGuestDiagnosticSettingsAssociation.json" - } - }, - "parameters": [ - { - "name": "resourceUri", - "in": "path", - "required": true, - "type": "string", - "description": "The fully qualified ID of the resource, including the resource name and resource type.", - "x-ms-skip-url-encoding": true - }, - { - "$ref": "#/parameters/DiagnosticSettingsAssociationNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" - } - }, - "default": { - "description": "An error occurred and the diagnostic settings association could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "description": "Delete guest diagnostics association settings.", - "tags": [ - "GuestDiagnosticsSettingsAssociation" - ], - "x-ms-examples": { - "Create or update an guest diagnostic settings association": { - "$ref": "./examples/deleteGuestDiagnosticSettingsAssociation.json" - } - }, - "operationId": "GuestDiagnosticsSettingsAssociation_Delete", - "parameters": [ - { - "name": "resourceUri", - "in": "path", - "required": true, - "type": "string", - "description": "The fully qualified ID of the resource, including the resource name and resource type.", - "x-ms-skip-url-encoding": true - }, - { - "$ref": "#/parameters/DiagnosticSettingsAssociationNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The diagnostic settings association was successfully deleted." - }, - "204": { - "description": "The diagnostic settings association does not exist. It may have already been deleted." - }, - "default": { - "description": "An error occurred and the diagnostic settings association could not be deleted.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + } + }, + "paths": { + "/{resourceUri}/providers/microsoft.insights/guestDiagnosticSettingsAssociation/{associationName}": { + "put": { + "description": "Creates or updates guest diagnostics settings association.", + "tags": [ + "GuestDiagnosticsSettingsAssociation" + ], + "operationId": "guestDiagnosticsSettingsAssociation_CreateOrUpdate", + "x-ms-examples": { + "Create or update an guest diagnostic settings association": { + "$ref": "./examples/createOrUpdateGuestDiagnosticSettingsAssociation.json" + } + }, + "parameters": [ + { + "name": "resourceUri", + "in": "path", + "required": true, + "type": "string", + "description": "The fully qualified ID of the resource, including the resource name and resource type.", + "x-ms-skip-url-encoding": true + }, + { + "$ref": "#/parameters/DiagnosticSettingsAssociationNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "diagnosticSettingsAssociation", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" }, - "patch": { - "description": "Updates an existing guestDiagnosticsSettingsAssociation Resource. To update other fields use the CreateOrUpdate method", - "operationId": "guestDiagnosticsSettingsAssociation_Update", - "parameters": [ - { - "name": "resourceUri", - "in": "path", - "required": true, - "type": "string", - "description": "The fully qualified ID of the resource, including the resource name and resource type.", - "x-ms-skip-url-encoding": true - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/DiagnosticSettingsAssociationNameParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResourcePatch" - }, - "description": "Parameters supplied to the operation." - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "An existing guest diagnostics setting resource was successfully updated.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" - } - } - }, - "x-ms-examples": { - "Update a service diagnostic setting": { "$ref": "./examples/updateGuestDiagnosticSettingsAssociation.json" } - } - } + "description": "The diagnostic settings association to create or update." + } + ], + "responses": { + "200": { + "description": "An existing guest diagnostic settings association was successfully updated.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" + } + }, + "201": { + "description": "A new guest diagnostic settings association was successfully created.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" + } + }, + "default": { + "description": "An error occurred and the guest diagnostic settings association could not be created or updated.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "get": { + "description": "Gets guest diagnostics association settings.", + "tags": [ + "GuestDiagnosticsSettingsAssociation" + ], + "operationId": "guestDiagnosticsSettingsAssociation_Get", + "x-ms-examples": { + "Create or update an guest diagnostic settings association": { + "$ref": "./examples/getGuestDiagnosticSettingsAssociation.json" + } }, - "/subscriptions/{subscriptionId}/providers/microsoft.insights/guestDiagnosticSettingsAssociations": { - "get": { - "description": "Get a list of all guest diagnostic settings association in a subscription.", - "operationId": "guestDiagnosticsSettingsAssociation_List", - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsAssociationList" - } - }, - "default": { - "description": "An error occurred and the list of guest diagnostic settings association could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + "parameters": [ + { + "name": "resourceUri", + "in": "path", + "required": true, + "type": "string", + "description": "The fully qualified ID of the resource, including the resource name and resource type.", + "x-ms-skip-url-encoding": true + }, + { + "$ref": "#/parameters/DiagnosticSettingsAssociationNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" } + }, + "default": { + "description": "An error occurred and the diagnostic settings association could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "delete": { + "description": "Delete guest diagnostics association settings.", + "tags": [ + "GuestDiagnosticsSettingsAssociation" + ], + "x-ms-examples": { + "Create or update an guest diagnostic settings association": { + "$ref": "./examples/deleteGuestDiagnosticSettingsAssociation.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/guestDiagnosticSettingsAssociations": { - "get": { - "description": "Get a list of all guest diagnostic settings association in a resource group.", - "operationId": "guestDiagnosticsSettingsAssociation_ListByResourceGroup", - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsAssociationList" - } - }, - "default": { - "description": "An error occurred and the list of guest diagnostic settings association could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + "operationId": "GuestDiagnosticsSettingsAssociation_Delete", + "parameters": [ + { + "name": "resourceUri", + "in": "path", + "required": true, + "type": "string", + "description": "The fully qualified ID of the resource, including the resource name and resource type.", + "x-ms-skip-url-encoding": true + }, + { + "$ref": "#/parameters/DiagnosticSettingsAssociationNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The diagnostic settings association was successfully deleted." + }, + "204": { + "description": "The diagnostic settings association does not exist. It may have already been deleted." + }, + "default": { + "description": "An error occurred and the diagnostic settings association could not be deleted.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } } - }, - "definitions": { - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } + }, + "patch": { + "description": "Updates an existing guestDiagnosticsSettingsAssociation Resource. To update other fields use the CreateOrUpdate method", + "operationId": "guestDiagnosticsSettingsAssociation_Update", + "parameters": [ + { + "name": "resourceUri", + "in": "path", + "required": true, + "type": "string", + "description": "The fully qualified ID of the resource, including the resource name and resource type.", + "x-ms-skip-url-encoding": true + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/DiagnosticSettingsAssociationNameParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResourcePatch" + }, + "description": "Parameters supplied to the operation." + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + }, + "200": { + "description": "An existing guest diagnostics setting resource was successfully updated.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" } + } + }, + "x-ms-examples": { + "Update a service diagnostic setting": { + "$ref": "./examples/updateGuestDiagnosticSettingsAssociation.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/microsoft.insights/guestDiagnosticSettingsAssociations": { + "get": { + "description": "Get a list of all guest diagnostic settings association in a subscription.", + "operationId": "guestDiagnosticsSettingsAssociation_List", + "x-ms-pageable": { + "nextLinkName": null }, - "GuestDiagnosticSettingsAssociationList": { - "description": "A list of guest diagnostic settings association.", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" - }, - "description": "The list of guest diagnostic settings association." - }, - "nextLink": { - "type": "string", - "description": "Provides the link to retrieve the next set of elements." - } + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsAssociationList" + } + }, + "default": { + "description": "An error occurred and the list of guest diagnostic settings association could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/guestDiagnosticSettingsAssociations": { + "get": { + "description": "Get a list of all guest diagnostic settings association in a resource group.", + "operationId": "guestDiagnosticsSettingsAssociation_ListByResourceGroup", + "x-ms-pageable": { + "nextLinkName": null }, - "GuestDiagnosticSettingsAssociationResourcePatch": { - "description": "Guest diagnostic setting resource for patch operations", - "properties": { - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/GuestDiagnosticSettingsAssociation", - "description": "The service diagnostics settings for an update operation." - } + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsAssociationList" + } + }, + "default": { + "description": "An error occurred and the list of guest diagnostic settings association could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + } + }, + "definitions": { + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" }, - "GuestDiagnosticSettingsAssociation": { - "description": "A guest diagnostic settings association.", - "properties": { - "guestDiagnosticSettingsName": { - "type": "string", - "description": "The guest diagnostic settings name." - } - }, - "required": [ - "guestDiagnosticSettingsName" - ] + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" + } + } + }, + "GuestDiagnosticSettingsAssociationList": { + "description": "A list of guest diagnostic settings association.", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/GuestDiagnosticSettingsAssociationResource" + }, + "description": "The list of guest diagnostic settings association." }, - "GuestDiagnosticSettingsAssociationResource": { - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "required": [ - "properties" - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/GuestDiagnosticSettingsAssociation", - "description": "The diagnostics settings associations of the resource." - } - }, - "description": "Virtual machine guest diagnostic settings resource." + "nextLink": { + "type": "string", + "description": "Provides the link to retrieve the next set of elements." + } + } + }, + "GuestDiagnosticSettingsAssociationResourcePatch": { + "description": "Guest diagnostic setting resource for patch operations", + "properties": { + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" }, - "Resource": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Azure resource Id" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Azure resource name" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Azure resource type" - }, - "location": { - "type": "string", - "description": "Resource location", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - } - }, - "required": [ - "location" - ], - "x-ms-azure-resource": true, - "description": "An azure resource object" - } + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/GuestDiagnosticSettingsAssociation", + "description": "The service diagnostics settings for an update operation." + } + } }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "The Azure subscription Id." + "GuestDiagnosticSettingsAssociation": { + "description": "A guest diagnostic settings association.", + "properties": { + "guestDiagnosticSettingsName": { + "type": "string", + "description": "The guest diagnostic settings name." + } + }, + "required": [ + "guestDiagnosticSettingsName" + ] + }, + "GuestDiagnosticSettingsAssociationResource": { + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "required": [ + "properties" + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/GuestDiagnosticSettingsAssociation", + "description": "The diagnostics settings associations of the resource." + } + }, + "description": "Virtual machine guest diagnostic settings resource." + }, + "Resource": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Azure resource Id" }, - "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group.", - "x-ms-parameter-location": "method" + "name": { + "type": "string", + "readOnly": true, + "description": "Azure resource name" }, - "DiagnosticSettingsAssociationNameParameter": { - "name": "associationName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the diagnostic settings association.", - "x-ms-parameter-location": "method" + "type": { + "type": "string", + "readOnly": true, + "description": "Azure resource type" }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." - } + "location": { + "type": "string", + "description": "Resource location", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true, + "description": "An azure resource object" + } + }, + "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" + }, + "DiagnosticSettingsAssociationNameParameter": { + "name": "associationName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the diagnostic settings association.", + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } - } \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettings_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettings_API.json index 092ba0613f6f..c82bcd2e139e 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettings_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettings_API.json @@ -1,580 +1,580 @@ { - "swagger": "2.0", - "info": { - "title": "Guest Diagnostic Settings API", - "description": "API to Add/Remove/List Guest Diagnostics Configuration to Azure Resources", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2018-06-01-preview" + "swagger": "2.0", + "info": { + "title": "Guest Diagnostic Settings API", + "description": "API to Add/Remove/List Guest Diagnostics Configuration to Azure Resources", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "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" - } + "version": "2018-06-01-preview" + }, + "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}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/guestDiagnosticSettings/{diagnosticSettingsName}": { - "put": { - "description": "Creates or updates guest diagnostics settings.", - "tags": [ - "GuestDiagnosticsSettings" - ], - "operationId": "guestDiagnosticsSettings_CreateOrUpdate", - "x-ms-examples": { - "Create or update a guest diagnostic settings": { - "$ref": "./examples/createOrUpdateGuestDiagnosticSettings.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/DiagnosticSettingNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "name": "diagnosticSettings", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsResource" - }, - "description": "The configuration to create or update." - } - ], - "responses": { - "200": { - "description": "An existing guest diagnostic settings was successfully updated.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsResource" - } - }, - "201": { - "description": "A new guest diagnostic settings was successfully created.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsResource" - } - }, - "default": { - "description": "An error occurred and the guest diagnostic settings could not be created or updated.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "get": { - "description": "Gets guest diagnostics settings.", - "tags": [ - "GuestDiagnosticsSettings" - ], - "operationId": "guestDiagnosticsSettings_Get", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/DiagnosticSettingNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsResource" - } - }, - "default": { - "description": "An error occurred and the diagnostic settings could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + } + }, + "paths": { + "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/guestDiagnosticSettings/{diagnosticSettingsName}": { + "put": { + "description": "Creates or updates guest diagnostics settings.", + "tags": [ + "GuestDiagnosticsSettings" + ], + "operationId": "guestDiagnosticsSettings_CreateOrUpdate", + "x-ms-examples": { + "Create or update a guest diagnostic settings": { + "$ref": "./examples/createOrUpdateGuestDiagnosticSettings.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/DiagnosticSettingNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "name": "diagnosticSettings", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsResource" }, - "patch": { - "description": "Updates guest diagnostics settings.", - "operationId": "guestDiagnosticsSettings_Update", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/DiagnosticSettingNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsPatchResource" - }, - "description": "The configuration to patch." - } - ], - "responses": { - "200": { - "description": "An existing guest diagnostic settings was successfully updated.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsResource" - } - }, - "201": { - "description": "A new guest diagnostic settings was successfully created.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsResource" - } - }, - "default": { - "description": "An error occurred and the guest diagnostic settings could not be created or updated.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "description": "Delete guest diagnostics settings.", - "tags": [ - "GuestDiagnosticsSettings" - ], - "operationId": "guestDiagnosticsSettings_Delete", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/DiagnosticSettingNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The diagnostic settings was successfully deleted." - }, - "204": { - "description": "The diagnostic settings does not exist. It may have already been deleted." - }, - "default": { - "description": "An error occurred and the diagnostic settings could not be deleted.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + "description": "The configuration to create or update." + } + ], + "responses": { + "200": { + "description": "An existing guest diagnostic settings was successfully updated.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsResource" } - }, - "/subscriptions/{subscriptionId}/providers/microsoft.insights/guestDiagnosticSettings": { - "get": { - "description": "Get a list of all guest diagnostic settings in a subscription.", - "operationId": "guestDiagnosticsSettings_List", - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsList" - } - }, - "default": { - "description": "An error occurred and the list of guest diagnostic settings could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "201": { + "description": "A new guest diagnostic settings was successfully created.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsResource" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/guestDiagnosticSettings": { - "get": { - "description": "Get a list of all guest diagnostic settings in a resource group.", - "operationId": "guestDiagnosticsSettings_ListByResourceGroup", - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/GuestDiagnosticSettingsList" - } - }, - "default": { - "description": "An error occurred and the list of guest diagnostic settings could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "default": { + "description": "An error occurred and the guest diagnostic settings could not be created or updated.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } } - }, - "definitions": { - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } + }, + "get": { + "description": "Gets guest diagnostics settings.", + "tags": [ + "GuestDiagnosticsSettings" + ], + "operationId": "guestDiagnosticsSettings_Get", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/DiagnosticSettingNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsResource" } - }, - "GuestDiagnosticSettingsList": { - "description": "A list of guest diagnostic settings.", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/GuestDiagnosticSettingsResource" - }, - "description": "The list of guest diagnostic settings." - }, - "nextLink": { - "type": "string", - "description": "Provides the link to retrieve the next set of elements." - } + }, + "default": { + "description": "An error occurred and the diagnostic settings could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } - }, - "GuestDiagnosticSettingsResource": { - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "required": [ - "properties" - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/GuestDiagnosticSettings", - "description": "The diagnostic settings to be applied to azure resources." - } + } + } + }, + "patch": { + "description": "Updates guest diagnostics settings.", + "operationId": "guestDiagnosticsSettings_Update", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/DiagnosticSettingNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsPatchResource" }, - "description": "Virtual machine guest diagnostics settings resource." - }, - "GuestDiagnosticSettings": { - "description": "Virtual machine diagnostic settings", - "properties": { - "osType": { - "type": "string", - "enum": [ - "Windows", - "Linux" - ], - "description" : "Operating system type for the configuration" - }, - "dataSources": { - "type": "array", - "items": { - "$ref": "#/definitions/DataSource" - }, - "description": "the array of data source object which are configured to collect and send data" - }, - "proxySetting": { - "type": "string" - } + "description": "The configuration to patch." + } + ], + "responses": { + "200": { + "description": "An existing guest diagnostic settings was successfully updated.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsResource" } - }, - "GuestDiagnosticSettingsPatchResource": { - "description": "An diagnostic settings object for the body of patch operations.", - "properties": { - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/GuestDiagnosticSettings", - "description": "The diagnostic settings for an update operation." - } + }, + "201": { + "description": "A new guest diagnostic settings was successfully created.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsResource" } - }, - "DataSource": { - "type": "object", - "required": [ - "kind", - "configuration", - "sinks" - ], - "properties": { - "kind": { - "type": "string", - "enum": [ - "PerformanceCounter", - "ETWProviders", - "WindowsEventLogs" - ], - "description": "Datasource kind" - }, - "configuration": { - "type": "object", - "$ref": "#/definitions/DataSourceConfiguration" - }, - "sinks": { - "type": "array", - "items": { - "$ref": "#/definitions/SinkConfiguration" - } - } - }, - "description": "Data source object contains configuration to collect telemetry and one or more sinks to send that telemetry data to" - }, - "SinkConfiguration": { - "type": "object", - "required": [ - "kind" - ], - "properties": { - "kind": { - "type": "string", - "enum": [ - "EventHub", - "ApplicationInsights", - "LogAnalytics" - ] - } + }, + "default": { + "description": "An error occurred and the guest diagnostic settings could not be created or updated.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } - }, - "DataSourceConfiguration": { - "type": "object", - "properties": { - "providers": { - "type": "array", - "items": { - "$ref": "#/definitions/EtwProviderConfiguration" - }, - "description": "ETW providers configuration" - }, - "perfCounters": { - "type": "array", - "items": { - "$ref": "#/definitions/PerformanceCounterConfiguration" - }, - "description": "Performance counter configuration" - }, - "eventLogs": { - "type": "array", - "items": { - "$ref": "#/definitions/EventLogConfiguration" - }, - "description": "Windows event logs configuration." - } + } + } + }, + "delete": { + "description": "Delete guest diagnostics settings.", + "tags": [ + "GuestDiagnosticsSettings" + ], + "operationId": "guestDiagnosticsSettings_Delete", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/DiagnosticSettingNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The diagnostic settings was successfully deleted." + }, + "204": { + "description": "The diagnostic settings does not exist. It may have already been deleted." + }, + "default": { + "description": "An error occurred and the diagnostic settings could not be deleted.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/microsoft.insights/guestDiagnosticSettings": { + "get": { + "description": "Get a list of all guest diagnostic settings in a subscription.", + "operationId": "guestDiagnosticsSettings_List", + "x-ms-pageable": { + "nextLinkName": null }, - "EtwEventConfiguration": { - "type": "object", - "required": [ - "name", - "id" - ], - "properties": { - "name": { - "type": "string" - }, - "id": { - "type": "integer" - }, - "filter": { - "type": "string" - } + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsList" } - }, - "EtwProviderConfiguration": { - "type": "object", - "required": [ - "id", - "events" - ], - "properties": { - "id": { - "type": "string" - }, - "events": { - "type": "array", - "items": { - "$ref": "#/definitions/EtwEventConfiguration" - } - } + }, + "default": { + "description": "An error occurred and the list of guest diagnostic settings could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/guestDiagnosticSettings": { + "get": { + "description": "Get a list of all guest diagnostic settings in a resource group.", + "operationId": "guestDiagnosticsSettings_ListByResourceGroup", + "x-ms-pageable": { + "nextLinkName": null }, - "PerformanceCounterConfiguration": { - "type": "object", - "required": [ - "name", - "samplingPeriod" - ], - "properties": { - "name": { - "type": "string" - }, - "samplingPeriod": { - "type": "string" - }, - "instance": { - "type": "string" - } + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/GuestDiagnosticSettingsList" } - }, - "EventLogConfiguration": { - "type": "object", - "required": [ - "logName" - ], - "properties": { - "logName": { - "type": "string" - }, - "filter": { - "type": "string" - } + }, + "default": { + "description": "An error occurred and the list of guest diagnostic settings could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + } + }, + "definitions": { + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" }, - "Resource": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Azure resource Id" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Azure resource name" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Azure resource type" - }, - "location": { - "type": "string", - "description": "Resource location", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - } - }, - "required": [ - "location" - ], - "x-ms-azure-resource": true, - "description": "An azure resource object" - } + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" + } + } }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "The Azure subscription Id." + "GuestDiagnosticSettingsList": { + "description": "A list of guest diagnostic settings.", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/GuestDiagnosticSettingsResource" + }, + "description": "The list of guest diagnostic settings." }, - "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group.", - "x-ms-parameter-location": "method" + "nextLink": { + "type": "string", + "description": "Provides the link to retrieve the next set of elements." + } + } + }, + "GuestDiagnosticSettingsResource": { + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "required": [ + "properties" + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/GuestDiagnosticSettings", + "description": "The diagnostic settings to be applied to azure resources." + } + }, + "description": "Virtual machine guest diagnostics settings resource." + }, + "GuestDiagnosticSettings": { + "description": "Virtual machine diagnostic settings", + "properties": { + "osType": { + "type": "string", + "enum": [ + "Windows", + "Linux" + ], + "description": "Operating system type for the configuration" }, - "DiagnosticSettingNameParameter": { - "name": "diagnosticSettingsName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the diagnostic setting.", - "x-ms-parameter-location": "method" + "dataSources": { + "type": "array", + "items": { + "$ref": "#/definitions/DataSource" + }, + "description": "the array of data source object which are configured to collect and send data" }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." - } + "proxySetting": { + "type": "string" + } + } + }, + "GuestDiagnosticSettingsPatchResource": { + "description": "An diagnostic settings object for the body of patch operations.", + "properties": { + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/GuestDiagnosticSettings", + "description": "The diagnostic settings for an update operation." + } + } + }, + "DataSource": { + "type": "object", + "required": [ + "kind", + "configuration", + "sinks" + ], + "properties": { + "kind": { + "type": "string", + "enum": [ + "PerformanceCounter", + "ETWProviders", + "WindowsEventLogs" + ], + "description": "Datasource kind" + }, + "configuration": { + "type": "object", + "$ref": "#/definitions/DataSourceConfiguration" + }, + "sinks": { + "type": "array", + "items": { + "$ref": "#/definitions/SinkConfiguration" + } + } + }, + "description": "Data source object contains configuration to collect telemetry and one or more sinks to send that telemetry data to" + }, + "SinkConfiguration": { + "type": "object", + "required": [ + "kind" + ], + "properties": { + "kind": { + "type": "string", + "enum": [ + "EventHub", + "ApplicationInsights", + "LogAnalytics" + ] + } + } + }, + "DataSourceConfiguration": { + "type": "object", + "properties": { + "providers": { + "type": "array", + "items": { + "$ref": "#/definitions/EtwProviderConfiguration" + }, + "description": "ETW providers configuration" + }, + "perfCounters": { + "type": "array", + "items": { + "$ref": "#/definitions/PerformanceCounterConfiguration" + }, + "description": "Performance counter configuration" + }, + "eventLogs": { + "type": "array", + "items": { + "$ref": "#/definitions/EventLogConfiguration" + }, + "description": "Windows event logs configuration." + } + } + }, + "EtwEventConfiguration": { + "type": "object", + "required": [ + "name", + "id" + ], + "properties": { + "name": { + "type": "string" + }, + "id": { + "type": "integer" + }, + "filter": { + "type": "string" + } + } + }, + "EtwProviderConfiguration": { + "type": "object", + "required": [ + "id", + "events" + ], + "properties": { + "id": { + "type": "string" + }, + "events": { + "type": "array", + "items": { + "$ref": "#/definitions/EtwEventConfiguration" + } + } + } + }, + "PerformanceCounterConfiguration": { + "type": "object", + "required": [ + "name", + "samplingPeriod" + ], + "properties": { + "name": { + "type": "string" + }, + "samplingPeriod": { + "type": "string" + }, + "instance": { + "type": "string" + } + } + }, + "EventLogConfiguration": { + "type": "object", + "required": [ + "logName" + ], + "properties": { + "logName": { + "type": "string" + }, + "filter": { + "type": "string" + } + } + }, + "Resource": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Azure resource Id" + }, + "name": { + "type": "string", + "readOnly": true, + "description": "Azure resource name" + }, + "type": { + "type": "string", + "readOnly": true, + "description": "Azure resource type" + }, + "location": { + "type": "string", + "description": "Resource location", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true, + "description": "An azure resource object" + } + }, + "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" + }, + "DiagnosticSettingNameParameter": { + "name": "diagnosticSettingsName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the diagnostic setting.", + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } - } \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusResourceGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusResourceGroup.json index 3500766bd62a..2e60687e3054 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusResourceGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusResourceGroup.json @@ -1,32 +1,32 @@ { - "parameters": { - "resourceUri": "subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/resource-group-with-vms", - "api-version": "2018-11-27-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { + "parameters": { + "resourceUri": "subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/resource-group-with-vms", + "api-version": "2018-11-27-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "properties": { + "resourceId": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/resource-group-with-vms", + "onboardingStatus": "onboarded", + "dataStatus": "present", + "data": [ + { + "workspace": { + "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourcegroups/monitoring/providers/microsoft.operationalinsights/workspaces/vm-monitoring", + "location": "eastus", "properties": { - "resourceId": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/resource-group-with-vms", - "onboardingStatus": "onboarded", - "dataStatus": "present", - "data": [ - { - "workspace": { - "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourcegroups/monitoring/providers/microsoft.operationalinsights/workspaces/vm-monitoring", - "location": "eastus", - "properties": { - "customerId": "c7f8f44d-d8ee-4b79-9d9a-4d8a1f2a112a" - } - } - } - ] - }, - "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/resource-group-with-vms/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default", - "type": "Microsoft.Insights/vmInsightsOnboardingStatuses", - "name": "default" + "customerId": "c7f8f44d-d8ee-4b79-9d9a-4d8a1f2a112a" + } + } } - } + ] + }, + "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/resource-group-with-vms/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default", + "type": "Microsoft.Insights/vmInsightsOnboardingStatuses", + "name": "default" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSingleVM.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSingleVM.json index 8fb2b0190191..59476d080e17 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSingleVM.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSingleVM.json @@ -1,32 +1,32 @@ { - "parameters": { - "resourceUri": "subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm", - "api-version": "2018-11-27-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { + "parameters": { + "resourceUri": "subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm", + "api-version": "2018-11-27-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "properties": { + "resourceId": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm", + "onboardingStatus": "onboarded", + "dataStatus": "present", + "data": [ + { + "workspace": { + "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourcegroups/monitoring/providers/microsoft.operationalinsights/workspaces/vm-monitoring", + "location": "eastus", "properties": { - "resourceId": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm", - "onboardingStatus": "onboarded", - "dataStatus": "present", - "data": [ - { - "workspace": { - "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourcegroups/monitoring/providers/microsoft.operationalinsights/workspaces/vm-monitoring", - "location": "eastus", - "properties": { - "customerId": "c7f8f44d-d8ee-4b79-9d9a-4d8a1f2a112a" - } - } - } - ] - }, - "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default", - "type": "Microsoft.Insights/vmInsightsOnboardingStatuses", - "name": "default" + "customerId": "c7f8f44d-d8ee-4b79-9d9a-4d8a1f2a112a" + } + } } - } + ] + }, + "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default", + "type": "Microsoft.Insights/vmInsightsOnboardingStatuses", + "name": "default" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSingleVMUnknown.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSingleVMUnknown.json index 41d1f25fdf8d..203db7a7a12f 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSingleVMUnknown.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSingleVMUnknown.json @@ -1,22 +1,22 @@ { - "parameters": { - "resourceUri": "subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm", - "api-version": "2018-11-27-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "properties": { - "resourceId": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm", - "onboardingStatus": "unknown", - "dataStatus": "notPresent", - "data": [] - }, - "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default", - "type": "Microsoft.Insights/vmInsightsOnboardingStatuses", - "name": "default" - } - } + "parameters": { + "resourceUri": "subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm", + "api-version": "2018-11-27-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "properties": { + "resourceId": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm", + "onboardingStatus": "unknown", + "dataStatus": "notPresent", + "data": [] + }, + "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/vm-resource-group/providers/Microsoft.Compute/virtualMachines/ubuntu-vm/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default", + "type": "Microsoft.Insights/vmInsightsOnboardingStatuses", + "name": "default" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSubscription.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSubscription.json index 57eb902d9b23..a18c08b8587d 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSubscription.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusSubscription.json @@ -1,38 +1,38 @@ { - "parameters": { - "resourceUri": "subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87", - "api-version": "2018-11-27-preview" - }, - "responses": { - "200": { - "properties": { - "resourceId": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87", - "onboardingStatus": "onboarded", - "dataStatus": "present", - "data": [ - { - "workspace": { - "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourcegroups/monitoring/providers/microsoft.operationalinsights/workspaces/vm-monitoring-secondary", - "location": "eastus", - "properties": { - "customerId": "f096d163-206e-4abf-9db3-2c62af003d68" - } - } - }, - { - "workspace": { - "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourcegroups/monitoring/providers/microsoft.operationalinsights/workspaces/vm-monitoring", - "location": "eastus", - "properties": { - "customerId": "c7f8f44d-d8ee-4b79-9d9a-4d8a1f2a112a" - } - } - } - ] - }, - "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default", - "type": "Microsoft.Insights/vmInsightsOnboardingStatuses", - "name": "default" - } + "parameters": { + "resourceUri": "subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87", + "api-version": "2018-11-27-preview" + }, + "responses": { + "200": { + "properties": { + "resourceId": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87", + "onboardingStatus": "onboarded", + "dataStatus": "present", + "data": [ + { + "workspace": { + "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourcegroups/monitoring/providers/microsoft.operationalinsights/workspaces/vm-monitoring-secondary", + "location": "eastus", + "properties": { + "customerId": "f096d163-206e-4abf-9db3-2c62af003d68" + } + } + }, + { + "workspace": { + "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourcegroups/monitoring/providers/microsoft.operationalinsights/workspaces/vm-monitoring", + "location": "eastus", + "properties": { + "customerId": "c7f8f44d-d8ee-4b79-9d9a-4d8a1f2a112a" + } + } + } + ] + }, + "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default", + "type": "Microsoft.Insights/vmInsightsOnboardingStatuses", + "name": "default" } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusVMScaleSet.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusVMScaleSet.json index be3a9a8d3a61..1b0a85ec5ad2 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusVMScaleSet.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/examples/getOnboardingStatusVMScaleSet.json @@ -1,32 +1,32 @@ { - "parameters": { - "resourceUri": "subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/my-service-cluster/providers/Microsoft.Compute/virtualMachineScaleSets/scale-set-01", - "api-version": "2018-11-27-preview" - }, - "responses": { - "200": { - "headers": {}, - "body": { + "parameters": { + "resourceUri": "subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/my-service-cluster/providers/Microsoft.Compute/virtualMachineScaleSets/scale-set-01", + "api-version": "2018-11-27-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "properties": { + "resourceId": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/my-service-cluster/providers/Microsoft.Compute/virtualMachineScaleSets/scale-set-01", + "onboardingStatus": "onboarded", + "dataStatus": "present", + "data": [ + { + "workspace": { + "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourcegroups/monitoring/providers/microsoft.operationalinsights/workspaces/vm-monitoring", + "location": "eastus", "properties": { - "resourceId": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/my-service-cluster/providers/Microsoft.Compute/virtualMachineScaleSets/scale-set-01", - "onboardingStatus": "onboarded", - "dataStatus": "present", - "data": [ - { - "workspace": { - "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourcegroups/monitoring/providers/microsoft.operationalinsights/workspaces/vm-monitoring", - "location": "eastus", - "properties": { - "customerId": "c7f8f44d-d8ee-4b79-9d9a-4d8a1f2a112a" - } - } - } - ] - }, - "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/my-service-cluster/providers/Microsoft.Compute/virtualMachineScaleSets/scale-set-01/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default", - "type": "Microsoft.Insights/vmInsightsOnboardingStatuses", - "name": "default" + "customerId": "c7f8f44d-d8ee-4b79-9d9a-4d8a1f2a112a" + } + } } - } + ] + }, + "id": "/subscriptions/3d51de47-8d1c-4d24-b42f-bcae075dfa87/resourceGroups/my-service-cluster/providers/Microsoft.Compute/virtualMachineScaleSets/scale-set-01/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default", + "type": "Microsoft.Insights/vmInsightsOnboardingStatuses", + "name": "default" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/vmInsightsOnboarding_API.json b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/vmInsightsOnboarding_API.json index b6385a6437bd..a955bfa3fbdd 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/vmInsightsOnboarding_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-11-27-preview/vmInsightsOnboarding_API.json @@ -1,260 +1,260 @@ { - "swagger": "2.0", - "info": { - "title": "VM Insights Onboarding API", - "description": "API to manage VM Insights Onboarding", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2018-11-27-preview" + "swagger": "2.0", + "info": { + "title": "VM Insights Onboarding API", + "description": "API to manage VM Insights Onboarding", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "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" - } + "version": "2018-11-27-preview" + }, + "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": { - "/{resourceUri}/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default": { - "get": { - "tags": [ - "VM Insights Onboarding" - ], - "operationId": "VMInsights_GetOnboardingStatus", - "description": "Retrieves the VM Insights onboarding status for the specified resource or resource scope.", - "x-ms-examples": { - "Get status for a VM that has not yet reported data": { - "$ref": "./examples/getOnboardingStatusSingleVMUnknown.json" - }, - "Get status for a VM that is actively reporting data": { - "$ref": "./examples/getOnboardingStatusSingleVM.json" - }, - "Get status for a VM scale set that is actively reporting data": { - "$ref": "./examples/getOnboardingStatusVMScaleSet.json" - }, - "Get status for a resource group that has at least one VM that is actively reporting data": { - "$ref": "./examples/getOnboardingStatusResourceGroup.json" - }, - "Get status for a subscription that has at least one VM that is actively reporting data": { - "$ref": "./examples/getOnboardingStatusSubscription.json" - } + } + }, + "paths": { + "/{resourceUri}/providers/Microsoft.Insights/vmInsightsOnboardingStatuses/default": { + "get": { + "tags": [ + "VM Insights Onboarding" + ], + "operationId": "VMInsights_GetOnboardingStatus", + "description": "Retrieves the VM Insights onboarding status for the specified resource or resource scope.", + "x-ms-examples": { + "Get status for a VM that has not yet reported data": { + "$ref": "./examples/getOnboardingStatusSingleVMUnknown.json" }, - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "resourceUri", - "in": "path", - "required": true, - "type": "string", - "description": "The fully qualified Azure Resource manager identifier of the resource, or scope, whose status to retrieve.", - "x-ms-skip-url-encoding": true - } - ], - "responses": { - "200": { - "description": "The operation completed successfully.", - "schema": { - "$ref": "#/definitions/VMInsightsOnboardingStatus" - } - }, - "default": { - "description": "An error occurred while processing the request. See the error.code parameter to identify the specific error.", - "schema": { - "$ref": "#/definitions/ResponseWithError" - } - } + "Get status for a VM that is actively reporting data": { + "$ref": "./examples/getOnboardingStatusSingleVM.json" + }, + "Get status for a VM scale set that is actively reporting data": { + "$ref": "./examples/getOnboardingStatusVMScaleSet.json" + }, + "Get status for a resource group that has at least one VM that is actively reporting data": { + "$ref": "./examples/getOnboardingStatusResourceGroup.json" + }, + "Get status for a subscription that has at least one VM that is actively reporting data": { + "$ref": "./examples/getOnboardingStatusSubscription.json" } - } - } - }, - "definitions": { - "ProxyResource": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Azure resource Id" + }, + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" }, - "name": { + { + "name": "resourceUri", + "in": "path", + "required": true, "type": "string", - "readOnly": true, - "description": "Azure resource name" + "description": "The fully qualified Azure Resource manager identifier of the resource, or scope, whose status to retrieve.", + "x-ms-skip-url-encoding": true + } + ], + "responses": { + "200": { + "description": "The operation completed successfully.", + "schema": { + "$ref": "#/definitions/VMInsightsOnboardingStatus" + } }, - "type": { - "type": "string", - "readOnly": true, - "description": "Azure resource type" + "default": { + "description": "An error occurred while processing the request. See the error.code parameter to identify the specific error.", + "schema": { + "$ref": "#/definitions/ResponseWithError" + } } + } + } + } + }, + "definitions": { + "ProxyResource": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Azure resource Id" }, - "x-ms-azure-resource": true, - "description": "An azure resource object" - }, - "ResponseWithError": { - "type": "object", - "description": "An error response from the API.", - "properties": { - "error": { - "$ref": "#/definitions/Error", - "description": "Error information." - } + "name": { + "type": "string", + "readOnly": true, + "description": "Azure resource name" }, - "required": [ - "error" - ] + "type": { + "type": "string", + "readOnly": true, + "description": "Azure resource type" + } }, - "Error": { - "type": "object", - "description": "Error details.", - "properties": { - "code": { - "type": "string", - "description": "Error code identifying the specific error." - }, - "message": { - "type": "string", - "description": "Error message in the caller's locale." - } + "x-ms-azure-resource": true, + "description": "An azure resource object" + }, + "ResponseWithError": { + "type": "object", + "description": "An error response from the API.", + "properties": { + "error": { + "$ref": "#/definitions/Error", + "description": "Error information." + } + }, + "required": [ + "error" + ] + }, + "Error": { + "type": "object", + "description": "Error details.", + "properties": { + "code": { + "type": "string", + "description": "Error code identifying the specific error." }, - "required": [ - "code" - ] + "message": { + "type": "string", + "description": "Error message in the caller's locale." + } }, - "WorkspaceInfo": { - "type": "object", - "description": "Information about a Log Analytics Workspace.", + "required": [ + "code" + ] + }, + "WorkspaceInfo": { + "type": "object", + "description": "Information about a Log Analytics Workspace.", + "properties": { + "id": { + "type": "string", + "description": "Azure Resource Manager identifier of the Log Analytics Workspace." + }, + "location": { + "type": "string", + "description": "Location of the Log Analytics workspace." + }, "properties": { - "id": { - "type": "string", - "description": "Azure Resource Manager identifier of the Log Analytics Workspace." - }, - "location": { - "type": "string", - "description": "Location of the Log Analytics workspace." - }, + "x-ms-client-flatten": true, + "type": "object", + "description": "Resource properties.", "properties": { - "x-ms-client-flatten": true, - "type": "object", - "description": "Resource properties.", - "properties": { - "customerId": { - "type": "string", - "description": "Log Analytics workspace identifier." - } - }, - "required": [ - "customerId" - ] - } - }, - "required": [ - "id", - "location", - "properties" - ] + "customerId": { + "type": "string", + "description": "Log Analytics workspace identifier." + } + }, + "required": [ + "customerId" + ] + } }, - "DataContainer": { - "type": "object", - "description": "Information about a container with data for a given resource.", - "properties": { - "workspace": { - "$ref": "#/definitions/WorkspaceInfo", - "description": "Log Analytics workspace information." - } - }, - "required": [ - "workspace" - ] + "required": [ + "id", + "location", + "properties" + ] + }, + "DataContainer": { + "type": "object", + "description": "Information about a container with data for a given resource.", + "properties": { + "workspace": { + "$ref": "#/definitions/WorkspaceInfo", + "description": "Log Analytics workspace information." + } }, - "VMInsightsOnboardingStatus": { - "description": "VM Insights onboarding status for a resource.", - "allOf": [ - { - "$ref": "#/definitions/ProxyResource" - } - ], + "required": [ + "workspace" + ] + }, + "VMInsightsOnboardingStatus": { + "description": "VM Insights onboarding status for a resource.", + "allOf": [ + { + "$ref": "#/definitions/ProxyResource" + } + ], + "properties": { "properties": { + "x-ms-client-flatten": true, + "type": "object", + "description": "Resource properties.", "properties": { - "x-ms-client-flatten": true, - "type": "object", - "description": "Resource properties.", - "properties": { - "resourceId": { - "type": "string", - "description": "Azure Resource Manager identifier of the resource whose onboarding status is being represented." - }, - "onboardingStatus": { - "type": "string", - "enum": [ - "onboarded", - "notOnboarded", - "unknown" - ], - "x-ms-enum": { - "name": "OnboardingStatus", - "modelAsString": true - }, - "description": "The onboarding status for the resource. Note that, a higher level scope, e.g., resource group or subscription, is considered onboarded if at least one resource under it is onboarded." + "resourceId": { + "type": "string", + "description": "Azure Resource Manager identifier of the resource whose onboarding status is being represented." + }, + "onboardingStatus": { + "type": "string", + "enum": [ + "onboarded", + "notOnboarded", + "unknown" + ], + "x-ms-enum": { + "name": "OnboardingStatus", + "modelAsString": true }, - "dataStatus": { - "type": "string", - "enum": [ - "present", - "notPresent" - ], - "x-ms-enum": { - "name": "DataStatus", - "modelAsString": true - }, - "description": "The status of VM Insights data from the resource. When reported as `present` the data array will contain information about the data containers to which data for the specified resource is being routed." + "description": "The onboarding status for the resource. Note that, a higher level scope, e.g., resource group or subscription, is considered onboarded if at least one resource under it is onboarded." + }, + "dataStatus": { + "type": "string", + "enum": [ + "present", + "notPresent" + ], + "x-ms-enum": { + "name": "DataStatus", + "modelAsString": true }, - "data": { - "type": "array", - "items": { - "$ref": "#/definitions/DataContainer" - }, - "description": "Containers that currently store VM Insights data for the specified resource." - } + "description": "The status of VM Insights data from the resource. When reported as `present` the data array will contain information about the data containers to which data for the specified resource is being routed." }, - "required": [ - "resourceId", - "onboardingStatus", - "dataStatus" - ] - } + "data": { + "type": "array", + "items": { + "$ref": "#/definitions/DataContainer" + }, + "description": "Containers that currently store VM Insights data for the specified resource." + } + }, + "required": [ + "resourceId", + "onboardingStatus", + "dataStatus" + ] } } - }, - "parameters": { - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "API version." - } } - } \ No newline at end of file + }, + "parameters": { + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "API version." + } + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/activityLogs_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/activityLogs_API.json index cccfc164c41b..9ce194198379 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/activityLogs_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/activityLogs_API.json @@ -80,17 +80,27 @@ }, "x-ms-odata": "#/definitions/EventData", "x-ms-examples": { - "Get Activity Logs without filter or select": { "$ref": "./examples/GetActivityLogsNoParams.json" }, - "Get Activity Logs with filter": { "$ref": "./examples/GetActivityLogsFiltered.json" }, - "Get Activity Logs with select": { "$ref": "./examples/GetActivityLogsSelected.json" }, - "Get Activity Logs with filter and select": { "$ref": "./examples/GetActivityLogsFilteredAndSelected.json" } + "Get Activity Logs without filter or select": { + "$ref": "./examples/GetActivityLogsNoParams.json" + }, + "Get Activity Logs with filter": { + "$ref": "./examples/GetActivityLogsFiltered.json" + }, + "Get Activity Logs with select": { + "$ref": "./examples/GetActivityLogsSelected.json" + }, + "Get Activity Logs with filter and select": { + "$ref": "./examples/GetActivityLogsFilteredAndSelected.json" + } } } } }, "definitions": { "LocalizableString": { - "required": [ "value" ], + "required": [ + "value" + ], "properties": { "value": { "type": "string", @@ -311,7 +321,9 @@ "description": "Provides the link to retrieve the next set of events." } }, - "required": [ "value" ], + "required": [ + "value" + ], "description": "Represents collection of events." }, "ErrorResponse": { diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/autoscale_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/autoscale_API.json index bfc43dd3c7f4..857de7aa263c 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/autoscale_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/autoscale_API.json @@ -72,7 +72,9 @@ "nextLinkName": "nextLink" }, "x-ms-examples": { - "List autoscale settings": { "$ref": "./examples/listAutoscaleSetting.json" } + "List autoscale settings": { + "$ref": "./examples/listAutoscaleSetting.json" + } } } }, @@ -127,7 +129,9 @@ } }, "x-ms-examples": { - "Create or update an autoscale setting": { "$ref": "./examples/createOrUpdateAutoscaleSetting.json" } + "Create or update an autoscale setting": { + "$ref": "./examples/createOrUpdateAutoscaleSetting.json" + } } }, "delete": { @@ -165,7 +169,9 @@ } }, "x-ms-examples": { - "Delete an autoscale setting": { "$ref": "./examples/deleteAutoscaleSetting.json" } + "Delete an autoscale setting": { + "$ref": "./examples/deleteAutoscaleSetting.json" + } } }, "get": { @@ -203,52 +209,56 @@ } }, "x-ms-examples": { - "Get an autoscale setting": { "$ref": "./examples/getAutoscaleSetting.json" } + "Get an autoscale setting": { + "$ref": "./examples/getAutoscaleSetting.json" + } } }, "patch": { - "description": "Updates an existing AutoscaleSettingsResource. To update other fields use the CreateOrUpdate method.", - "operationId": "AutoscaleSettings_Update", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/AutoscaleSettingNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "autoscaleSettingResource", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/AutoscaleSettingResourcePatch" - }, - "description": "Parameters supplied to the operation." - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "An existing autoscale setting resource was successfully updated.", - "schema": { - "$ref": "#/definitions/AutoscaleSettingResource" - } - } - }, - "x-ms-examples": { - "Patch an autoscale setting": { "$ref": "./examples/patchAutoscaleSetting.json" } + "description": "Updates an existing AutoscaleSettingsResource. To update other fields use the CreateOrUpdate method.", + "operationId": "AutoscaleSettings_Update", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/AutoscaleSettingNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "autoscaleSettingResource", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/AutoscaleSettingResourcePatch" + }, + "description": "Parameters supplied to the operation." } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + }, + "200": { + "description": "An existing autoscale setting resource was successfully updated.", + "schema": { + "$ref": "#/definitions/AutoscaleSettingResource" + } + } + }, + "x-ms-examples": { + "Patch an autoscale setting": { + "$ref": "./examples/patchAutoscaleSetting.json" + } + } } }, "/subscriptions/{subscriptionId}/providers/microsoft.insights/autoscalesettings": { @@ -284,7 +294,9 @@ "nextLinkName": "nextLink" }, "x-ms-examples": { - "List autoscale settings": { "$ref": "./examples/listAutoscaleSettingBySubscription.json" } + "List autoscale settings": { + "$ref": "./examples/listAutoscaleSettingBySubscription.json" + } } } } @@ -311,8 +323,8 @@ "type": "string", "description": "Resource location", "x-ms-mutability": [ - "create", - "read" + "create", + "read" ] }, "tags": { @@ -351,7 +363,16 @@ "description": "The number of instances that can be used during this profile." }, "MetricTrigger": { - "required": ["metricName", "metricResourceUri", "timeGrain", "statistic", "timeWindow", "timeAggregation", "operator", "threshold"], + "required": [ + "metricName", + "metricResourceUri", + "timeGrain", + "statistic", + "timeWindow", + "timeAggregation", + "operator", + "threshold" + ], "properties": { "metricName": { "type": "string", @@ -473,7 +494,8 @@ }, "ScaleRule": { "required": [ - "scaleAction", "metricTrigger" + "scaleAction", + "metricTrigger" ], "properties": { "metricTrigger": { @@ -504,11 +526,19 @@ "description": "the end time for the profile in ISO 8601 format." } }, - "required": [ "start", "end" ], + "required": [ + "start", + "end" + ], "description": "A specific date-time for the profile." }, "RecurrentSchedule": { - "required": ["timeZone", "days", "hours", "minutes"], + "required": [ + "timeZone", + "days", + "hours", + "minutes" + ], "properties": { "timeZone": { "type": "string", @@ -541,7 +571,10 @@ "description": "The scheduling constraints for when the profile begins." }, "Recurrence": { - "required": ["frequency", "schedule"], + "required": [ + "frequency", + "schedule" + ], "properties": { "frequency": { "type": "string", @@ -569,7 +602,7 @@ "description": "The repeating times at which this profile begins. This element is not used if the FixedDate element is used." }, "AutoscaleProfile": { - "required":[ + "required": [ "rules", "name", "capacity" @@ -645,7 +678,9 @@ "operation": { "type": "string", "description": "the operation associated with the notification and its value must be \"scale\"", - "enum": ["Scale"], + "enum": [ + "Scale" + ], "x-ms-enum": { "name": "OperationType", "modelAsString": false @@ -666,7 +701,7 @@ "description": "Autoscale notification." }, "AutoscaleSetting": { - "required":[ + "required": [ "profiles" ], "properties": { @@ -705,7 +740,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/Resource" + "$ref": "#/definitions/Resource" } ], "required": [ @@ -724,10 +759,10 @@ "description": "The autoscale setting object for patch operations.", "properties": { "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" }, "properties": { "x-ms-client-flatten": true, @@ -750,7 +785,9 @@ "description": "URL to get the next set of results." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents a collection of autoscale setting resources." }, "ErrorResponse": { diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/eventCategories_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/eventCategories_API.json index 558f853ada92..7a3187374bb6 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/eventCategories_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/eventCategories_API.json @@ -66,14 +66,18 @@ "nextLinkName": null }, "x-ms-examples": { - "Get event categories": { "$ref": "./examples/GetEventCategories.json" } + "Get event categories": { + "$ref": "./examples/GetEventCategories.json" + } } } } }, "definitions": { "LocalizableString": { - "required": [ "value" ], + "required": [ + "value" + ], "properties": { "value": { "type": "string", @@ -96,7 +100,9 @@ "description": "the list that includes the Azure event categories." } }, - "required": [ "value" ], + "required": [ + "value" + ], "description": "A collection of event categories. Currently possible values are: Administrative, Security, ServiceHealth, Alert, Recommendation, Policy." }, "ErrorResponse": { @@ -123,4 +129,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsFiltered.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsFiltered.json index d1240f00184b..c02eaaaee174 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsFiltered.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsFiltered.json @@ -1,83 +1,85 @@ { - "parameters": { - "$filter": "eventTimestamp ge '2015-01-21T20:00:00Z' and eventTimestamp le '2015-01-23T20:00:00Z' and resourceGroupName eq 'MSSupportGroup'", - "api-version": "2015-04-01", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - }, - "responses": { - "200": { - "body": { - "value": [ { - "authorization": { - "action": "microsoft.support/supporttickets/write", - "role": "Subscription Admin", - "scope": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841" - }, - "caller": "admin@contoso.com", - "claims": { - "aud": "https://management.core.windows.net/", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "iat": "1421876371", - "nbf": "1421876371", - "exp": "1421880271", - "ver": "1.0", - "http://schemas.microsoft.com/identity/claims/tenantid": "1e8d8218-c5e7-4578-9acc-9abbd5d23315 ", - "http://schemas.microsoft.com/claims/authnmethodsreferences": "pwd", - "http://schemas.microsoft.com/identity/claims/objectidentifier": "2468adf0-8211-44e3-95xq-85137af64708", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn": "admin@contoso.com", - "puid": "20030000801A118C", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier": "9vckmEGF7zDKk1YzIY8k0t1_EAPaXoeHyPRn6f413zM", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname": "John", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname": "Smith", - "name": "John Smith", - "groups": "cacfe77c-e058-4712-83qw-f9b08849fd60,7f71d11d-4c41-4b23-99d2-d32ce7aa621c,31522864-0578-4ea0-9gdc-e66cc564d18c", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name": " admin@contoso.com", - "appid": "c44b4083-3bq0-49c1-b47d-974e53cbdf3c", - "appidacr": "2", - "http://schemas.microsoft.com/identity/claims/scope": "user_impersonation", - "http://schemas.microsoft.com/claims/authnclassreference": "1" - }, - "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "description": "", - "eventDataId": "44ade6b4-3813-45e6-ae27-7420a95fa2f8", - "eventName": { - "value": "EndRequest", - "localizedValue": "End request" - }, - "httpRequest": { - "clientRequestId": "27003b25-91d3-418f-8eb1-29e537dcb249", - "clientIpAddress": "192.168.35.115", - "method": "PUT" - }, - "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", - "level": "Informational", - "resourceGroupName": "MSSupportGroup", - "resourceProviderName": { - "value": "microsoft.support", - "localizedValue": "microsoft.support" - }, - "operationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "operationName": { - "value": "microsoft.support/supporttickets/write", - "localizedValue": "microsoft.support/supporttickets/write" - }, - "properties": { - "statusCode": "Created" - }, - "status": { - "value": "Succeeded", - "localizedValue": "Succeeded" - }, - "subStatus": { - "value": "Created", - "localizedValue": "Created (HTTP Status Code: 201)" - }, - "eventTimestamp": "2015-01-21T22:14:26.9792776Z", - "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - } ], - "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" - } - } + "parameters": { + "$filter": "eventTimestamp ge '2015-01-21T20:00:00Z' and eventTimestamp le '2015-01-23T20:00:00Z' and resourceGroupName eq 'MSSupportGroup'", + "api-version": "2015-04-01", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "authorization": { + "action": "microsoft.support/supporttickets/write", + "role": "Subscription Admin", + "scope": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841" + }, + "caller": "admin@contoso.com", + "claims": { + "aud": "https://management.core.windows.net/", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "iat": "1421876371", + "nbf": "1421876371", + "exp": "1421880271", + "ver": "1.0", + "http://schemas.microsoft.com/identity/claims/tenantid": "1e8d8218-c5e7-4578-9acc-9abbd5d23315 ", + "http://schemas.microsoft.com/claims/authnmethodsreferences": "pwd", + "http://schemas.microsoft.com/identity/claims/objectidentifier": "2468adf0-8211-44e3-95xq-85137af64708", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn": "admin@contoso.com", + "puid": "20030000801A118C", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier": "9vckmEGF7zDKk1YzIY8k0t1_EAPaXoeHyPRn6f413zM", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname": "John", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname": "Smith", + "name": "John Smith", + "groups": "cacfe77c-e058-4712-83qw-f9b08849fd60,7f71d11d-4c41-4b23-99d2-d32ce7aa621c,31522864-0578-4ea0-9gdc-e66cc564d18c", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name": " admin@contoso.com", + "appid": "c44b4083-3bq0-49c1-b47d-974e53cbdf3c", + "appidacr": "2", + "http://schemas.microsoft.com/identity/claims/scope": "user_impersonation", + "http://schemas.microsoft.com/claims/authnclassreference": "1" + }, + "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "description": "", + "eventDataId": "44ade6b4-3813-45e6-ae27-7420a95fa2f8", + "eventName": { + "value": "EndRequest", + "localizedValue": "End request" + }, + "httpRequest": { + "clientRequestId": "27003b25-91d3-418f-8eb1-29e537dcb249", + "clientIpAddress": "192.168.35.115", + "method": "PUT" + }, + "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", + "level": "Informational", + "resourceGroupName": "MSSupportGroup", + "resourceProviderName": { + "value": "microsoft.support", + "localizedValue": "microsoft.support" + }, + "operationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "operationName": { + "value": "microsoft.support/supporttickets/write", + "localizedValue": "microsoft.support/supporttickets/write" + }, + "properties": { + "statusCode": "Created" + }, + "status": { + "value": "Succeeded", + "localizedValue": "Succeeded" + }, + "subStatus": { + "value": "Created", + "localizedValue": "Created (HTTP Status Code: 201)" + }, + "eventTimestamp": "2015-01-21T22:14:26.9792776Z", + "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + } + ], + "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsFilteredAndSelected.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsFilteredAndSelected.json index 3c521070179c..7c8fcf697066 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsFilteredAndSelected.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsFilteredAndSelected.json @@ -1,39 +1,41 @@ { - "parameters": { - "$filter": "eventTimestamp ge '2015-01-21T20:00:00Z' and eventTimestamp le '2015-01-23T20:00:00Z' and resourceGroupName eq 'MSSupportGroup'", - "$select": "eventName,id,resourceGroupName,resourceProviderName,operationName,status,eventTimestamp,correlationId,submissionTimestamp,level", - "api-version": "2015-04-01", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - }, - "responses": { - "200": { - "body": { - "value": [ { - "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "eventName": { - "value": "EndRequest", - "localizedValue": "End request" - }, - "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", - "resourceGroupName": "MSSupportGroup", - "resourceProviderName": { - "value": "microsoft.support", - "localizedValue": "microsoft.support" - }, - "operationName": { - "value": "microsoft.support/supporttickets/write", - "localizedValue": "microsoft.support/supporttickets/write" - }, - "status": { - "value": "Succeeded", - "localizedValue": "Succeeded" - }, - "eventTimestamp": "2015-01-21T22:14:26.9792776Z", - "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", - "level": "Informational" - } ], - "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" - } - } + "parameters": { + "$filter": "eventTimestamp ge '2015-01-21T20:00:00Z' and eventTimestamp le '2015-01-23T20:00:00Z' and resourceGroupName eq 'MSSupportGroup'", + "$select": "eventName,id,resourceGroupName,resourceProviderName,operationName,status,eventTimestamp,correlationId,submissionTimestamp,level", + "api-version": "2015-04-01", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "eventName": { + "value": "EndRequest", + "localizedValue": "End request" + }, + "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", + "resourceGroupName": "MSSupportGroup", + "resourceProviderName": { + "value": "microsoft.support", + "localizedValue": "microsoft.support" + }, + "operationName": { + "value": "microsoft.support/supporttickets/write", + "localizedValue": "microsoft.support/supporttickets/write" + }, + "status": { + "value": "Succeeded", + "localizedValue": "Succeeded" + }, + "eventTimestamp": "2015-01-21T22:14:26.9792776Z", + "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", + "level": "Informational" + } + ], + "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsNoParams.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsNoParams.json index 9b7b95534d62..4b5c221df46b 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsNoParams.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsNoParams.json @@ -1,82 +1,84 @@ { - "parameters": { - "api-version": "2015-04-01", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - }, - "responses": { - "200": { - "body": { - "value": [ { - "authorization": { - "action": "microsoft.support/supporttickets/write", - "role": "Subscription Admin", - "scope": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841" - }, - "caller": "admin@contoso.com", - "claims": { - "aud": "https://management.core.windows.net/", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "iat": "1421876371", - "nbf": "1421876371", - "exp": "1421880271", - "ver": "1.0", - "http://schemas.microsoft.com/identity/claims/tenantid": "1e8d8218-c5e7-4578-9acc-9abbd5d23315 ", - "http://schemas.microsoft.com/claims/authnmethodsreferences": "pwd", - "http://schemas.microsoft.com/identity/claims/objectidentifier": "2468adf0-8211-44e3-95xq-85137af64708", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn": "admin@contoso.com", - "puid": "20030000801A118C", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier": "9vckmEGF7zDKk1YzIY8k0t1_EAPaXoeHyPRn6f413zM", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname": "John", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname": "Smith", - "name": "John Smith", - "groups": "cacfe77c-e058-4712-83qw-f9b08849fd60,7f71d11d-4c41-4b23-99d2-d32ce7aa621c,31522864-0578-4ea0-9gdc-e66cc564d18c", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name": " admin@contoso.com", - "appid": "c44b4083-3bq0-49c1-b47d-974e53cbdf3c", - "appidacr": "2", - "http://schemas.microsoft.com/identity/claims/scope": "user_impersonation", - "http://schemas.microsoft.com/claims/authnclassreference": "1" - }, - "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "description": "", - "eventDataId": "44ade6b4-3813-45e6-ae27-7420a95fa2f8", - "eventName": { - "value": "EndRequest", - "localizedValue": "End request" - }, - "httpRequest": { - "clientRequestId": "27003b25-91d3-418f-8eb1-29e537dcb249", - "clientIpAddress": "192.168.35.115", - "method": "PUT" - }, - "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", - "level": "Informational", - "resourceGroupName": "MSSupportGroup", - "resourceProviderName": { - "value": "microsoft.support", - "localizedValue": "microsoft.support" - }, - "operationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "operationName": { - "value": "microsoft.support/supporttickets/write", - "localizedValue": "microsoft.support/supporttickets/write" - }, - "properties": { - "statusCode": "Created" - }, - "status": { - "value": "Succeeded", - "localizedValue": "Succeeded" - }, - "subStatus": { - "value": "Created", - "localizedValue": "Created (HTTP Status Code: 201)" - }, - "eventTimestamp": "2015-01-21T22:14:26.9792776Z", - "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - } ], - "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" - } - } + "parameters": { + "api-version": "2015-04-01", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "authorization": { + "action": "microsoft.support/supporttickets/write", + "role": "Subscription Admin", + "scope": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841" + }, + "caller": "admin@contoso.com", + "claims": { + "aud": "https://management.core.windows.net/", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "iat": "1421876371", + "nbf": "1421876371", + "exp": "1421880271", + "ver": "1.0", + "http://schemas.microsoft.com/identity/claims/tenantid": "1e8d8218-c5e7-4578-9acc-9abbd5d23315 ", + "http://schemas.microsoft.com/claims/authnmethodsreferences": "pwd", + "http://schemas.microsoft.com/identity/claims/objectidentifier": "2468adf0-8211-44e3-95xq-85137af64708", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn": "admin@contoso.com", + "puid": "20030000801A118C", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier": "9vckmEGF7zDKk1YzIY8k0t1_EAPaXoeHyPRn6f413zM", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname": "John", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname": "Smith", + "name": "John Smith", + "groups": "cacfe77c-e058-4712-83qw-f9b08849fd60,7f71d11d-4c41-4b23-99d2-d32ce7aa621c,31522864-0578-4ea0-9gdc-e66cc564d18c", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name": " admin@contoso.com", + "appid": "c44b4083-3bq0-49c1-b47d-974e53cbdf3c", + "appidacr": "2", + "http://schemas.microsoft.com/identity/claims/scope": "user_impersonation", + "http://schemas.microsoft.com/claims/authnclassreference": "1" + }, + "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "description": "", + "eventDataId": "44ade6b4-3813-45e6-ae27-7420a95fa2f8", + "eventName": { + "value": "EndRequest", + "localizedValue": "End request" + }, + "httpRequest": { + "clientRequestId": "27003b25-91d3-418f-8eb1-29e537dcb249", + "clientIpAddress": "192.168.35.115", + "method": "PUT" + }, + "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", + "level": "Informational", + "resourceGroupName": "MSSupportGroup", + "resourceProviderName": { + "value": "microsoft.support", + "localizedValue": "microsoft.support" + }, + "operationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "operationName": { + "value": "microsoft.support/supporttickets/write", + "localizedValue": "microsoft.support/supporttickets/write" + }, + "properties": { + "statusCode": "Created" + }, + "status": { + "value": "Succeeded", + "localizedValue": "Succeeded" + }, + "subStatus": { + "value": "Created", + "localizedValue": "Created (HTTP Status Code: 201)" + }, + "eventTimestamp": "2015-01-21T22:14:26.9792776Z", + "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + } + ], + "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsSelected.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsSelected.json index 3ebe725ae844..020bb6e7f15e 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsSelected.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetActivityLogsSelected.json @@ -1,38 +1,40 @@ { - "parameters": { - "$select": "eventName,id,resourceGroupName,resourceProviderName,operationName,status,eventTimestamp,correlationId,submissionTimestamp,level", - "api-version": "2015-04-01", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - }, - "responses": { - "200": { - "body": { - "value": [ { - "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "eventName": { - "value": "EndRequest", - "localizedValue": "End request" - }, - "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", - "resourceGroupName": "MSSupportGroup", - "resourceProviderName": { - "value": "microsoft.support", - "localizedValue": "microsoft.support" - }, - "operationName": { - "value": "microsoft.support/supporttickets/write", - "localizedValue": "microsoft.support/supporttickets/write" - }, - "status": { - "value": "Succeeded", - "localizedValue": "Succeeded" - }, - "eventTimestamp": "2015-01-21T22:14:26.9792776Z", - "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", - "level": "Informational" - } ], - "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" - } - } + "parameters": { + "$select": "eventName,id,resourceGroupName,resourceProviderName,operationName,status,eventTimestamp,correlationId,submissionTimestamp,level", + "api-version": "2015-04-01", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "eventName": { + "value": "EndRequest", + "localizedValue": "End request" + }, + "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", + "resourceGroupName": "MSSupportGroup", + "resourceProviderName": { + "value": "microsoft.support", + "localizedValue": "microsoft.support" + }, + "operationName": { + "value": "microsoft.support/supporttickets/write", + "localizedValue": "microsoft.support/supporttickets/write" + }, + "status": { + "value": "Succeeded", + "localizedValue": "Succeeded" + }, + "eventTimestamp": "2015-01-21T22:14:26.9792776Z", + "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", + "level": "Informational" + } + ], + "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetEventCategories.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetEventCategories.json index e90ca45e3f83..38dca0f27034 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetEventCategories.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetEventCategories.json @@ -1,21 +1,21 @@ { - "parameters": { - "api-version": "2015-04-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "value": "category1", - "localizedValue": "category1" - }, - { - "value": "category2", - "localizedValue": "category2" - } - ] - } - } + "parameters": { + "api-version": "2015-04-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "value": "category1", + "localizedValue": "category1" + }, + { + "value": "category2", + "localizedValue": "category2" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsFiltered.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsFiltered.json index d1240f00184b..c02eaaaee174 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsFiltered.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsFiltered.json @@ -1,83 +1,85 @@ { - "parameters": { - "$filter": "eventTimestamp ge '2015-01-21T20:00:00Z' and eventTimestamp le '2015-01-23T20:00:00Z' and resourceGroupName eq 'MSSupportGroup'", - "api-version": "2015-04-01", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - }, - "responses": { - "200": { - "body": { - "value": [ { - "authorization": { - "action": "microsoft.support/supporttickets/write", - "role": "Subscription Admin", - "scope": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841" - }, - "caller": "admin@contoso.com", - "claims": { - "aud": "https://management.core.windows.net/", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "iat": "1421876371", - "nbf": "1421876371", - "exp": "1421880271", - "ver": "1.0", - "http://schemas.microsoft.com/identity/claims/tenantid": "1e8d8218-c5e7-4578-9acc-9abbd5d23315 ", - "http://schemas.microsoft.com/claims/authnmethodsreferences": "pwd", - "http://schemas.microsoft.com/identity/claims/objectidentifier": "2468adf0-8211-44e3-95xq-85137af64708", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn": "admin@contoso.com", - "puid": "20030000801A118C", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier": "9vckmEGF7zDKk1YzIY8k0t1_EAPaXoeHyPRn6f413zM", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname": "John", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname": "Smith", - "name": "John Smith", - "groups": "cacfe77c-e058-4712-83qw-f9b08849fd60,7f71d11d-4c41-4b23-99d2-d32ce7aa621c,31522864-0578-4ea0-9gdc-e66cc564d18c", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name": " admin@contoso.com", - "appid": "c44b4083-3bq0-49c1-b47d-974e53cbdf3c", - "appidacr": "2", - "http://schemas.microsoft.com/identity/claims/scope": "user_impersonation", - "http://schemas.microsoft.com/claims/authnclassreference": "1" - }, - "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "description": "", - "eventDataId": "44ade6b4-3813-45e6-ae27-7420a95fa2f8", - "eventName": { - "value": "EndRequest", - "localizedValue": "End request" - }, - "httpRequest": { - "clientRequestId": "27003b25-91d3-418f-8eb1-29e537dcb249", - "clientIpAddress": "192.168.35.115", - "method": "PUT" - }, - "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", - "level": "Informational", - "resourceGroupName": "MSSupportGroup", - "resourceProviderName": { - "value": "microsoft.support", - "localizedValue": "microsoft.support" - }, - "operationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "operationName": { - "value": "microsoft.support/supporttickets/write", - "localizedValue": "microsoft.support/supporttickets/write" - }, - "properties": { - "statusCode": "Created" - }, - "status": { - "value": "Succeeded", - "localizedValue": "Succeeded" - }, - "subStatus": { - "value": "Created", - "localizedValue": "Created (HTTP Status Code: 201)" - }, - "eventTimestamp": "2015-01-21T22:14:26.9792776Z", - "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - } ], - "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" - } - } + "parameters": { + "$filter": "eventTimestamp ge '2015-01-21T20:00:00Z' and eventTimestamp le '2015-01-23T20:00:00Z' and resourceGroupName eq 'MSSupportGroup'", + "api-version": "2015-04-01", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "authorization": { + "action": "microsoft.support/supporttickets/write", + "role": "Subscription Admin", + "scope": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841" + }, + "caller": "admin@contoso.com", + "claims": { + "aud": "https://management.core.windows.net/", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "iat": "1421876371", + "nbf": "1421876371", + "exp": "1421880271", + "ver": "1.0", + "http://schemas.microsoft.com/identity/claims/tenantid": "1e8d8218-c5e7-4578-9acc-9abbd5d23315 ", + "http://schemas.microsoft.com/claims/authnmethodsreferences": "pwd", + "http://schemas.microsoft.com/identity/claims/objectidentifier": "2468adf0-8211-44e3-95xq-85137af64708", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn": "admin@contoso.com", + "puid": "20030000801A118C", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier": "9vckmEGF7zDKk1YzIY8k0t1_EAPaXoeHyPRn6f413zM", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname": "John", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname": "Smith", + "name": "John Smith", + "groups": "cacfe77c-e058-4712-83qw-f9b08849fd60,7f71d11d-4c41-4b23-99d2-d32ce7aa621c,31522864-0578-4ea0-9gdc-e66cc564d18c", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name": " admin@contoso.com", + "appid": "c44b4083-3bq0-49c1-b47d-974e53cbdf3c", + "appidacr": "2", + "http://schemas.microsoft.com/identity/claims/scope": "user_impersonation", + "http://schemas.microsoft.com/claims/authnclassreference": "1" + }, + "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "description": "", + "eventDataId": "44ade6b4-3813-45e6-ae27-7420a95fa2f8", + "eventName": { + "value": "EndRequest", + "localizedValue": "End request" + }, + "httpRequest": { + "clientRequestId": "27003b25-91d3-418f-8eb1-29e537dcb249", + "clientIpAddress": "192.168.35.115", + "method": "PUT" + }, + "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", + "level": "Informational", + "resourceGroupName": "MSSupportGroup", + "resourceProviderName": { + "value": "microsoft.support", + "localizedValue": "microsoft.support" + }, + "operationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "operationName": { + "value": "microsoft.support/supporttickets/write", + "localizedValue": "microsoft.support/supporttickets/write" + }, + "properties": { + "statusCode": "Created" + }, + "status": { + "value": "Succeeded", + "localizedValue": "Succeeded" + }, + "subStatus": { + "value": "Created", + "localizedValue": "Created (HTTP Status Code: 201)" + }, + "eventTimestamp": "2015-01-21T22:14:26.9792776Z", + "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + } + ], + "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsFilteredAndSelected.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsFilteredAndSelected.json index 3c521070179c..7c8fcf697066 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsFilteredAndSelected.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsFilteredAndSelected.json @@ -1,39 +1,41 @@ { - "parameters": { - "$filter": "eventTimestamp ge '2015-01-21T20:00:00Z' and eventTimestamp le '2015-01-23T20:00:00Z' and resourceGroupName eq 'MSSupportGroup'", - "$select": "eventName,id,resourceGroupName,resourceProviderName,operationName,status,eventTimestamp,correlationId,submissionTimestamp,level", - "api-version": "2015-04-01", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - }, - "responses": { - "200": { - "body": { - "value": [ { - "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "eventName": { - "value": "EndRequest", - "localizedValue": "End request" - }, - "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", - "resourceGroupName": "MSSupportGroup", - "resourceProviderName": { - "value": "microsoft.support", - "localizedValue": "microsoft.support" - }, - "operationName": { - "value": "microsoft.support/supporttickets/write", - "localizedValue": "microsoft.support/supporttickets/write" - }, - "status": { - "value": "Succeeded", - "localizedValue": "Succeeded" - }, - "eventTimestamp": "2015-01-21T22:14:26.9792776Z", - "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", - "level": "Informational" - } ], - "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" - } - } + "parameters": { + "$filter": "eventTimestamp ge '2015-01-21T20:00:00Z' and eventTimestamp le '2015-01-23T20:00:00Z' and resourceGroupName eq 'MSSupportGroup'", + "$select": "eventName,id,resourceGroupName,resourceProviderName,operationName,status,eventTimestamp,correlationId,submissionTimestamp,level", + "api-version": "2015-04-01", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "eventName": { + "value": "EndRequest", + "localizedValue": "End request" + }, + "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", + "resourceGroupName": "MSSupportGroup", + "resourceProviderName": { + "value": "microsoft.support", + "localizedValue": "microsoft.support" + }, + "operationName": { + "value": "microsoft.support/supporttickets/write", + "localizedValue": "microsoft.support/supporttickets/write" + }, + "status": { + "value": "Succeeded", + "localizedValue": "Succeeded" + }, + "eventTimestamp": "2015-01-21T22:14:26.9792776Z", + "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", + "level": "Informational" + } + ], + "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsNoParams.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsNoParams.json index 9b7b95534d62..4b5c221df46b 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsNoParams.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsNoParams.json @@ -1,82 +1,84 @@ { - "parameters": { - "api-version": "2015-04-01", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - }, - "responses": { - "200": { - "body": { - "value": [ { - "authorization": { - "action": "microsoft.support/supporttickets/write", - "role": "Subscription Admin", - "scope": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841" - }, - "caller": "admin@contoso.com", - "claims": { - "aud": "https://management.core.windows.net/", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "iat": "1421876371", - "nbf": "1421876371", - "exp": "1421880271", - "ver": "1.0", - "http://schemas.microsoft.com/identity/claims/tenantid": "1e8d8218-c5e7-4578-9acc-9abbd5d23315 ", - "http://schemas.microsoft.com/claims/authnmethodsreferences": "pwd", - "http://schemas.microsoft.com/identity/claims/objectidentifier": "2468adf0-8211-44e3-95xq-85137af64708", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn": "admin@contoso.com", - "puid": "20030000801A118C", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier": "9vckmEGF7zDKk1YzIY8k0t1_EAPaXoeHyPRn6f413zM", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname": "John", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname": "Smith", - "name": "John Smith", - "groups": "cacfe77c-e058-4712-83qw-f9b08849fd60,7f71d11d-4c41-4b23-99d2-d32ce7aa621c,31522864-0578-4ea0-9gdc-e66cc564d18c", - "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name": " admin@contoso.com", - "appid": "c44b4083-3bq0-49c1-b47d-974e53cbdf3c", - "appidacr": "2", - "http://schemas.microsoft.com/identity/claims/scope": "user_impersonation", - "http://schemas.microsoft.com/claims/authnclassreference": "1" - }, - "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "description": "", - "eventDataId": "44ade6b4-3813-45e6-ae27-7420a95fa2f8", - "eventName": { - "value": "EndRequest", - "localizedValue": "End request" - }, - "httpRequest": { - "clientRequestId": "27003b25-91d3-418f-8eb1-29e537dcb249", - "clientIpAddress": "192.168.35.115", - "method": "PUT" - }, - "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", - "level": "Informational", - "resourceGroupName": "MSSupportGroup", - "resourceProviderName": { - "value": "microsoft.support", - "localizedValue": "microsoft.support" - }, - "operationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "operationName": { - "value": "microsoft.support/supporttickets/write", - "localizedValue": "microsoft.support/supporttickets/write" - }, - "properties": { - "statusCode": "Created" - }, - "status": { - "value": "Succeeded", - "localizedValue": "Succeeded" - }, - "subStatus": { - "value": "Created", - "localizedValue": "Created (HTTP Status Code: 201)" - }, - "eventTimestamp": "2015-01-21T22:14:26.9792776Z", - "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - } ], - "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" - } - } + "parameters": { + "api-version": "2015-04-01", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "authorization": { + "action": "microsoft.support/supporttickets/write", + "role": "Subscription Admin", + "scope": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841" + }, + "caller": "admin@contoso.com", + "claims": { + "aud": "https://management.core.windows.net/", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "iat": "1421876371", + "nbf": "1421876371", + "exp": "1421880271", + "ver": "1.0", + "http://schemas.microsoft.com/identity/claims/tenantid": "1e8d8218-c5e7-4578-9acc-9abbd5d23315 ", + "http://schemas.microsoft.com/claims/authnmethodsreferences": "pwd", + "http://schemas.microsoft.com/identity/claims/objectidentifier": "2468adf0-8211-44e3-95xq-85137af64708", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn": "admin@contoso.com", + "puid": "20030000801A118C", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier": "9vckmEGF7zDKk1YzIY8k0t1_EAPaXoeHyPRn6f413zM", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname": "John", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname": "Smith", + "name": "John Smith", + "groups": "cacfe77c-e058-4712-83qw-f9b08849fd60,7f71d11d-4c41-4b23-99d2-d32ce7aa621c,31522864-0578-4ea0-9gdc-e66cc564d18c", + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name": " admin@contoso.com", + "appid": "c44b4083-3bq0-49c1-b47d-974e53cbdf3c", + "appidacr": "2", + "http://schemas.microsoft.com/identity/claims/scope": "user_impersonation", + "http://schemas.microsoft.com/claims/authnclassreference": "1" + }, + "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "description": "", + "eventDataId": "44ade6b4-3813-45e6-ae27-7420a95fa2f8", + "eventName": { + "value": "EndRequest", + "localizedValue": "End request" + }, + "httpRequest": { + "clientRequestId": "27003b25-91d3-418f-8eb1-29e537dcb249", + "clientIpAddress": "192.168.35.115", + "method": "PUT" + }, + "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", + "level": "Informational", + "resourceGroupName": "MSSupportGroup", + "resourceProviderName": { + "value": "microsoft.support", + "localizedValue": "microsoft.support" + }, + "operationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "operationName": { + "value": "microsoft.support/supporttickets/write", + "localizedValue": "microsoft.support/supporttickets/write" + }, + "properties": { + "statusCode": "Created" + }, + "status": { + "value": "Succeeded", + "localizedValue": "Succeeded" + }, + "subStatus": { + "value": "Created", + "localizedValue": "Created (HTTP Status Code: 201)" + }, + "eventTimestamp": "2015-01-21T22:14:26.9792776Z", + "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + } + ], + "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsSelected.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsSelected.json index 3ebe725ae844..020bb6e7f15e 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsSelected.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/GetTenantActivityLogsSelected.json @@ -1,38 +1,40 @@ { - "parameters": { - "$select": "eventName,id,resourceGroupName,resourceProviderName,operationName,status,eventTimestamp,correlationId,submissionTimestamp,level", - "api-version": "2015-04-01", - "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" - }, - "responses": { - "200": { - "body": { - "value": [ { - "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", - "eventName": { - "value": "EndRequest", - "localizedValue": "End request" - }, - "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", - "resourceGroupName": "MSSupportGroup", - "resourceProviderName": { - "value": "microsoft.support", - "localizedValue": "microsoft.support" - }, - "operationName": { - "value": "microsoft.support/supporttickets/write", - "localizedValue": "microsoft.support/supporttickets/write" - }, - "status": { - "value": "Succeeded", - "localizedValue": "Succeeded" - }, - "eventTimestamp": "2015-01-21T22:14:26.9792776Z", - "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", - "level": "Informational" - } ], - "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" - } - } + "parameters": { + "$select": "eventName,id,resourceGroupName,resourceProviderName,operationName,status,eventTimestamp,correlationId,submissionTimestamp,level", + "api-version": "2015-04-01", + "subscriptionId": "089bd33f-d4ec-47fe-8ba5-0753aa5c5b33" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "correlationId": "1e121103-0ba6-4300-ac9d-952bb5d0c80f", + "eventName": { + "value": "EndRequest", + "localizedValue": "End request" + }, + "id": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841/events/44ade6b4-3813-45e6-ae27-7420a95fa2f8/ticks/635574752669792776", + "resourceGroupName": "MSSupportGroup", + "resourceProviderName": { + "value": "microsoft.support", + "localizedValue": "microsoft.support" + }, + "operationName": { + "value": "microsoft.support/supporttickets/write", + "localizedValue": "microsoft.support/supporttickets/write" + }, + "status": { + "value": "Succeeded", + "localizedValue": "Succeeded" + }, + "eventTimestamp": "2015-01-21T22:14:26.9792776Z", + "submissionTimestamp": "2015-01-21T22:14:39.9936304Z", + "level": "Informational" + } + ], + "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/OperationList.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/OperationList.json index a9b7694da946..df5222d53176 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/OperationList.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/OperationList.json @@ -1,717 +1,621 @@ { - "parameters":{ - "api-version":"2015-04-01" + "parameters": { + "api-version": "2015-04-01" }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "name":"Microsoft.Insights/Operations/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Operations", - "operation":"Operations read", - "description":"Reading operations" - }, - "properties":{ - - } + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.Insights/Operations/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Operations", + "operation": "Operations read", + "description": "Reading operations" + }, + "properties": {} }, { - "name":"Microsoft.Insights/MetricDefinitions/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Metric Definitions", - "operation":"Metric definitions read", - "description":"Read metric definitions" + "name": "Microsoft.Insights/MetricDefinitions/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Metric Definitions", + "operation": "Metric definitions read", + "description": "Read metric definitions" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Metrics/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Metrics", - "operation":"Metrics read", - "description":"Read metrics" + "name": "Microsoft.Insights/Metrics/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Metrics", + "operation": "Metrics read", + "description": "Read metrics" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AlertRules/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Alert Rules", - "operation":"Alert Rule write", - "description":"Writing to an alert rule configuration" + "name": "Microsoft.Insights/AlertRules/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Alert Rules", + "operation": "Alert Rule write", + "description": "Writing to an alert rule configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AlertRules/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Alert Rules", - "operation":"Alert Rule delete", - "description":"Deleting an alert rule configuration" + "name": "Microsoft.Insights/AlertRules/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Alert Rules", + "operation": "Alert Rule delete", + "description": "Deleting an alert rule configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AlertRules/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Alert Rules", - "operation":"Alert Rule read", - "description":"Reading an alert rule configuration" + "name": "Microsoft.Insights/AlertRules/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Alert Rules", + "operation": "Alert Rule read", + "description": "Reading an alert rule configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/MetricAlerts/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Metric alerts", - "operation":"Metric alert write", - "description":"Writing a metric alert" + "name": "Microsoft.Insights/MetricAlerts/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Metric alerts", + "operation": "Metric alert write", + "description": "Writing a metric alert" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/MetricAlerts/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Metric alerts", - "operation":"Metric alert delete", - "description":"Deleting a metric alert" + "name": "Microsoft.Insights/MetricAlerts/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Metric alerts", + "operation": "Metric alert delete", + "description": "Deleting a metric alert" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/MetricAlerts/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Metric alerts", - "operation":"Metric alert read", - "description":"Reading a metric alert" + "name": "Microsoft.Insights/MetricAlerts/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Metric alerts", + "operation": "Metric alert read", + "description": "Reading a metric alert" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AutoscaleSettings/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Autoscale", - "operation":"Autoscale Setting write", - "description":"Writing to an autoscale setting configuration" + "name": "Microsoft.Insights/AutoscaleSettings/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Autoscale", + "operation": "Autoscale Setting write", + "description": "Writing to an autoscale setting configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AutoscaleSettings/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Autoscale", - "operation":"Autoscale Setting delete", - "description":"Deleting an autoscale setting configuration" + "name": "Microsoft.Insights/AutoscaleSettings/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Autoscale", + "operation": "Autoscale Setting delete", + "description": "Deleting an autoscale setting configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AutoscaleSettings/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Autoscale", - "operation":"Autoscale Setting read", - "description":"Reading an autoscale setting configuration" + "name": "Microsoft.Insights/AutoscaleSettings/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Autoscale", + "operation": "Autoscale Setting read", + "description": "Reading an autoscale setting configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AlertRules/Incidents/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Alert Rule Incident resource", - "operation":"Alert Rule Incidents read", - "description":"Reading an alert rule incident configuration" + "name": "Microsoft.Insights/AlertRules/Incidents/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Alert Rule Incident resource", + "operation": "Alert Rule Incidents read", + "description": "Reading an alert rule incident configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AutoscaleSettings/providers/Microsoft.Insights/MetricDefinitions/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Metric Definitions", - "operation":"Metric definitions read", - "description":"Read metric definitions" + "name": "Microsoft.Insights/AutoscaleSettings/providers/Microsoft.Insights/MetricDefinitions/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Metric Definitions", + "operation": "Metric definitions read", + "description": "Read metric definitions" }, - "properties":{ - "serviceSpecification":{ - "metricSpecifications":[ + "properties": { + "serviceSpecification": { + "metricSpecifications": [ { - "name":"ObservedMetricValue", - "displayName":"Observed Metric Value", - "displayDescription":"The value computed by autoscale when executed", - "unit":"Count", - "aggregationType":"Average", - "availabilities":null, - "fillGapWithZero":false, - "category":"Metric", - "dimensions":[ + "name": "ObservedMetricValue", + "displayName": "Observed Metric Value", + "displayDescription": "The value computed by autoscale when executed", + "unit": "Count", + "aggregationType": "Average", + "availabilities": null, + "fillGapWithZero": false, + "category": "Metric", + "dimensions": [ { - "name":"MetricTriggerSource", - "displayName":"Metric Trigger Source", - "toBeExportedForShoebox":true + "name": "MetricTriggerSource", + "displayName": "Metric Trigger Source", + "toBeExportedForShoebox": true } ] }, { - "name":"MetricThreshold", - "displayName":"Metric Threshold", - "displayDescription":"The configured autoscale threshold when autoscale ran.", - "unit":"Count", - "aggregationType":"Average", - "availabilities":null, - "fillGapWithZero":false, - "category":"Metric", - "dimensions":[ + "name": "MetricThreshold", + "displayName": "Metric Threshold", + "displayDescription": "The configured autoscale threshold when autoscale ran.", + "unit": "Count", + "aggregationType": "Average", + "availabilities": null, + "fillGapWithZero": false, + "category": "Metric", + "dimensions": [ { - "name":"MetricTriggerRule", - "displayName":"Metric Trigger Rule", - "toBeExportedForShoebox":true + "name": "MetricTriggerRule", + "displayName": "Metric Trigger Rule", + "toBeExportedForShoebox": true } ] }, { - "name":"ObservedCapacity", - "displayName":"Observed Capacity", - "displayDescription":"The capacity reported to autoscale when it executed.", - "unit":"Count", - "aggregationType":"Average", - "availabilities":null, - "fillGapWithZero":false, - "category":"ScaleAction", - "dimensions":null + "name": "ObservedCapacity", + "displayName": "Observed Capacity", + "displayDescription": "The capacity reported to autoscale when it executed.", + "unit": "Count", + "aggregationType": "Average", + "availabilities": null, + "fillGapWithZero": false, + "category": "ScaleAction", + "dimensions": null }, { - "name":"ScaleActionsInitiated", - "displayName":"Scale Actions Initiated", - "displayDescription":"The direction of the scale operation.", - "unit":"Count", - "aggregationType":"Total", - "availabilities":null, - "fillGapWithZero":true, - "category":"ScaleAction", - "dimensions":[ + "name": "ScaleActionsInitiated", + "displayName": "Scale Actions Initiated", + "displayDescription": "The direction of the scale operation.", + "unit": "Count", + "aggregationType": "Total", + "availabilities": null, + "fillGapWithZero": true, + "category": "ScaleAction", + "dimensions": [ { - "name":"ScaleDirection", - "displayName":"Scale Direction", - "toBeExportedForShoebox":true + "name": "ScaleDirection", + "displayName": "Scale Direction", + "toBeExportedForShoebox": true } ] } ], - "logSpecifications":null, - "legacyMetricSpecifications":null + "logSpecifications": null, + "legacyMetricSpecifications": null } } }, { - "name":"Microsoft.Insights/ActionGroups/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Action groups", - "operation":"Action group write", - "description":"Writing an action group" + "name": "Microsoft.Insights/ActionGroups/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Action groups", + "operation": "Action group write", + "description": "Writing an action group" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/ActionGroups/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Action groups", - "operation":"Action group delete", - "description":"Deleting an action group" + "name": "Microsoft.Insights/ActionGroups/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Action groups", + "operation": "Action group delete", + "description": "Deleting an action group" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/ActionGroups/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Action groups", - "operation":"Action group read", - "description":"Reading an action group" + "name": "Microsoft.Insights/ActionGroups/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Action groups", + "operation": "Action group read", + "description": "Reading an action group" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/ActivityLogAlerts/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Activity log alert", - "operation":"Activity log alert read", - "description":"Reading an activity log alert" + "name": "Microsoft.Insights/ActivityLogAlerts/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Activity log alert", + "operation": "Activity log alert read", + "description": "Reading an activity log alert" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/ActivityLogAlerts/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Activity log alert", - "operation":"Activity log alert delete", - "description":"Deleting an activity log alert" + "name": "Microsoft.Insights/ActivityLogAlerts/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Activity log alert", + "operation": "Activity log alert delete", + "description": "Deleting an activity log alert" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/ActivityLogAlerts/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Activity log alert", - "operation":"Activity log alert read", - "description":"Reading an activity log alert" + "name": "Microsoft.Insights/ActivityLogAlerts/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Activity log alert", + "operation": "Activity log alert read", + "description": "Reading an activity log alert" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/ActivityLogAlerts/Activated/Action", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Activity Log Alert", - "operation":"Activity Log Alert Activated", - "description":"Triggered the Activity Log Alert" + "name": "Microsoft.Insights/ActivityLogAlerts/Activated/Action", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Activity Log Alert", + "operation": "Activity Log Alert Activated", + "description": "Triggered the Activity Log Alert" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/EventCategories/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Event category", - "operation":"Event category read", - "description":"Reading an event category" + "name": "Microsoft.Insights/EventCategories/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Event category", + "operation": "Event category read", + "description": "Reading an event category" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/eventtypes/values/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Events", - "operation":"Event types management values read", - "description":"Read management event type values" + "name": "Microsoft.Insights/eventtypes/values/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Events", + "operation": "Event types management values read", + "description": "Read management event type values" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/eventtypes/digestevents/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Digest events", - "operation":"Event types management digest read", - "description":"Read management event type digest" + "name": "Microsoft.Insights/eventtypes/digestevents/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Digest events", + "operation": "Event types management digest read", + "description": "Read management event type digest" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/DiagnosticSettings/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Diagnostic settings", - "operation":"Diagnostic settings write", - "description":"Writing to diagnostic settings configuration" + "name": "Microsoft.Insights/DiagnosticSettings/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Diagnostic settings", + "operation": "Diagnostic settings write", + "description": "Writing to diagnostic settings configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/DiagnosticSettings/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Diagnostic settings", - "operation":"Diagnostic settings delete", - "description":"Deleting diagnostic settings configuration" + "name": "Microsoft.Insights/DiagnosticSettings/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Diagnostic settings", + "operation": "Diagnostic settings delete", + "description": "Deleting diagnostic settings configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/DiagnosticSettings/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Diagnostic settings", - "operation":"Diagnostic settings read", - "description":"Reading a diagnostic settings configuration" + "name": "Microsoft.Insights/DiagnosticSettings/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Diagnostic settings", + "operation": "Diagnostic settings read", + "description": "Reading a diagnostic settings configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/ExtendedDiagnosticSettings/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Extended Diagnostic settings", - "operation":"Extended Diagnostic settings write", - "description":"Writing to extended diagnostic settings configuration" + "name": "Microsoft.Insights/ExtendedDiagnosticSettings/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Extended Diagnostic settings", + "operation": "Extended Diagnostic settings write", + "description": "Writing to extended diagnostic settings configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/ExtendedDiagnosticSettings/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Extended Diagnostic settings", - "operation":"Extended Diagnostic settings delete", - "description":"Deleting extended diagnostic settings configuration" + "name": "Microsoft.Insights/ExtendedDiagnosticSettings/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Extended Diagnostic settings", + "operation": "Extended Diagnostic settings delete", + "description": "Deleting extended diagnostic settings configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/ExtendedDiagnosticSettings/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Extended Diagnostic settings", - "operation":"Extended Diagnostic settings read", - "description":"Reading a extended diagnostic settings configuration" + "name": "Microsoft.Insights/ExtendedDiagnosticSettings/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Extended Diagnostic settings", + "operation": "Extended Diagnostic settings read", + "description": "Reading a extended diagnostic settings configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/LogProfiles/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Log Profiles", - "operation":"Log profile write", - "description":"Writing to a log profile configuration" + "name": "Microsoft.Insights/LogProfiles/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Log Profiles", + "operation": "Log profile write", + "description": "Writing to a log profile configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/LogProfiles/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Log Profiles", - "operation":"Log profile delete", - "description":"Delete log profiles configuration" + "name": "Microsoft.Insights/LogProfiles/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Log Profiles", + "operation": "Log profile delete", + "description": "Delete log profiles configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/LogProfiles/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Log Profiles", - "operation":"Log profile read", - "description":"Read log profiles" + "name": "Microsoft.Insights/LogProfiles/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Log Profiles", + "operation": "Log profile read", + "description": "Read log profiles" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/LogDefinitions/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Log Definitions", - "operation":"Log Definitions read", - "description":"Read log definitions" + "name": "Microsoft.Insights/LogDefinitions/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Log Definitions", + "operation": "Log Definitions read", + "description": "Read log definitions" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AutoscaleSettings/Scaleup/Action", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Autoscale", - "operation":"Autoscale scale up operation", - "description":"Autoscale scale up operation" + "name": "Microsoft.Insights/AutoscaleSettings/Scaleup/Action", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Autoscale", + "operation": "Autoscale scale up operation", + "description": "Autoscale scale up operation" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AutoscaleSettings/Scaledown/Action", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Autoscale", - "operation":"Autoscale scale down operation", - "description":"Autoscale scale down operation" + "name": "Microsoft.Insights/AutoscaleSettings/Scaledown/Action", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Autoscale", + "operation": "Autoscale scale down operation", + "description": "Autoscale scale down operation" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AlertRules/Activated/Action", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Alert Rules", - "operation":"Alert Rule activated", - "description":"Alert Rule activated" + "name": "Microsoft.Insights/AlertRules/Activated/Action", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Alert Rules", + "operation": "Alert Rule activated", + "description": "Alert Rule activated" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AlertRules/Resolved/Action", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Alert Rules", - "operation":"Alert Rule resolved", - "description":"Alert Rule resolved" + "name": "Microsoft.Insights/AlertRules/Resolved/Action", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Alert Rules", + "operation": "Alert Rule resolved", + "description": "Alert Rule resolved" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/AlertRules/Throttled/Action", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Alert Rules", - "operation":"Alert Rule throttled", - "description":"Alert rule is throttled" + "name": "Microsoft.Insights/AlertRules/Throttled/Action", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Alert Rules", + "operation": "Alert Rule throttled", + "description": "Alert rule is throttled" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Register/Action", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Microsoft.Insights", - "operation":"Register Microsoft.Insights", - "description":"Register the microsoft insights provider" + "name": "Microsoft.Insights/Register/Action", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Microsoft.Insights", + "operation": "Register Microsoft.Insights", + "description": "Register the microsoft insights provider" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Components/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Application insights components", - "operation":"Application insights component write", - "description":"Writing to an application insights component configuration" + "name": "Microsoft.Insights/Components/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Application insights components", + "operation": "Application insights component write", + "description": "Writing to an application insights component configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Components/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Application insights components", - "operation":"Application insights component delete", - "description":"Deleting an application insights component configuration" + "name": "Microsoft.Insights/Components/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Application insights components", + "operation": "Application insights component delete", + "description": "Deleting an application insights component configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Components/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Application insights components", - "operation":"Application insights component read", - "description":"Reading an application insights component configuration" + "name": "Microsoft.Insights/Components/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Application insights components", + "operation": "Application insights component read", + "description": "Reading an application insights component configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Webtests/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Web tests", - "operation":"Webtest write", - "description":"Writing to a webtest configuration" + "name": "Microsoft.Insights/Webtests/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Web tests", + "operation": "Webtest write", + "description": "Writing to a webtest configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Webtests/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Monitoring Insights", - "resource":"Web tests", - "operation":"Webtest delete", - "description":"Deleting a webtest configuration" + "name": "Microsoft.Insights/Webtests/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Monitoring Insights", + "resource": "Web tests", + "operation": "Webtest delete", + "description": "Deleting a webtest configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Workbooks/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Application Insights", - "resource":"Workbooks", - "operation":"Workbooks read", - "description":"Reading a Workbooks configuration" + "name": "Microsoft.Insights/Workbooks/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Application Insights", + "resource": "Workbooks", + "operation": "Workbooks read", + "description": "Reading a Workbooks configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Workbooks/Write", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Application Insights", - "resource":"Workbooks", - "operation":"Workbooks write", - "description":"Writing to a Workbooks configuration" + "name": "Microsoft.Insights/Workbooks/Write", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Application Insights", + "resource": "Workbooks", + "operation": "Workbooks write", + "description": "Writing to a Workbooks configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Workbooks/Delete", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Application Insights", - "resource":"Workbooks", - "operation":"Workbooks delete", - "description":"Deleting a Workbooks configuration" + "name": "Microsoft.Insights/Workbooks/Delete", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Application Insights", + "resource": "Workbooks", + "operation": "Workbooks delete", + "description": "Deleting a Workbooks configuration" }, - "properties":{ - - } + "properties": {} }, { - "name":"Microsoft.Insights/Workbooks/Read", - "display":{ - "publisher":"Microsoft", - "provider":"Microsoft Application Insights", - "resource":"Workbooks", - "operation":"Workbooks read", - "description":"Reading a Workbooks configuration" + "name": "Microsoft.Insights/Workbooks/Read", + "display": { + "publisher": "Microsoft", + "provider": "Microsoft Application Insights", + "resource": "Workbooks", + "operation": "Workbooks read", + "description": "Reading a Workbooks configuration" }, - "properties":{ - - } + "properties": {} } ] } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/createOrUpdateAutoscaleSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/createOrUpdateAutoscaleSetting.json index 819bc4f6885d..4a429d060c9f 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/createOrUpdateAutoscaleSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/createOrUpdateAutoscaleSetting.json @@ -1,136 +1,144 @@ { - "parameters" : { - "subscriptionId" : "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName" : "TestingMetricsScaleSet", - "autoscaleSettingName" : "MySetting", - "api-version" : "2015-04-01", - "parameters" : { - "location" : "West US", - "tags" : {}, - "properties" : { - "profiles" : [{ - "name" : "adios", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "TestingMetricsScaleSet", + "autoscaleSettingName": "MySetting", + "api-version": "2015-04-01", + "parameters": { + "location": "West US", + "tags": {}, + "properties": { + "profiles": [ + { + "name": "adios", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" } } ], - "fixedDate" : { - "timeZone" : "UTC", - "start" : "2015-03-05T14:00:00Z", - "end" : "2015-03-05T14:30:00Z" + "fixedDate": { + "timeZone": "UTC", + "start": "2015-03-05T14:00:00Z", + "end": "2015-03-05T14:30:00Z" } - }, { - "name" : "saludos", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" + }, + { + "name": "saludos", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" } } ], - "recurrence" : { - "frequency" : "Week", - "schedule" : { - "timeZone" : "UTC", - "days" : [ + "recurrence": { + "frequency": "Week", + "schedule": { + "timeZone": "UTC", + "days": [ "1" ], - "hours" : [ + "hours": [ 5 ], - "minutes" : [ + "minutes": [ 15 ] } } } ], - "enabled" : true, - "targetResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "notifications" : [{ - "operation" : "Scale", - "email" : { - "sendToSubscriptionAdministrator" : true, - "sendToSubscriptionCoAdministrators" : true, - "customEmails" : [ + "enabled": true, + "targetResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "notifications": [ + { + "operation": "Scale", + "email": { + "sendToSubscriptionAdministrator": true, + "sendToSubscriptionCoAdministrators": true, + "customEmails": [ "gu@ms.com", "ge@ns.net" ] }, - "webhooks" : [{ - "serviceUri" : "http://myservice.com", - "properties" : {} + "webhooks": [ + { + "serviceUri": "http://myservice.com", + "properties": {} } ] } @@ -138,142 +146,150 @@ } } }, - "responses" : { - "200" : { - "headers" : {}, - "body" : { - "id" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", - "name" : "MySetting", - "type" : "Microsoft.Insights/autoscaleSettings", - "location" : "West US", - "tags" : { - "$type" : "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage" + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", + "name": "MySetting", + "type": "Microsoft.Insights/autoscaleSettings", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage" }, - "properties" : { - "profiles" : [{ - "name" : "adios", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" + "properties": { + "profiles": [ + { + "name": "adios", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" } } ], - "fixedDate" : { - "timeZone" : "UTC", - "start" : "2015-03-05T14:00:00Z", - "end" : "2015-03-05T14:30:00Z" + "fixedDate": { + "timeZone": "UTC", + "start": "2015-03-05T14:00:00Z", + "end": "2015-03-05T14:30:00Z" } - }, { - "name" : "saludos", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" + }, + { + "name": "saludos", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" } } ], - "recurrence" : { - "frequency" : "Week", - "schedule" : { - "timeZone" : "UTC", - "days" : [ + "recurrence": { + "frequency": "Week", + "schedule": { + "timeZone": "UTC", + "days": [ "1" ], - "hours" : [ + "hours": [ 5 ], - "minutes" : [ + "minutes": [ 15 ] } } } ], - "enabled" : true, - "name" : "MySetting", - "targetResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "notifications" : [{ - "operation" : "Scale", - "email" : { - "sendToSubscriptionAdministrator" : true, - "sendToSubscriptionCoAdministrators" : true, - "customEmails" : [ + "enabled": true, + "name": "MySetting", + "targetResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "notifications": [ + { + "operation": "Scale", + "email": { + "sendToSubscriptionAdministrator": true, + "sendToSubscriptionCoAdministrators": true, + "customEmails": [ "gu@ms.com", "ge@ns.net" ] }, - "webhooks" : [{ - "serviceUri" : "http://myservice.com", - "properties" : {} + "webhooks": [ + { + "serviceUri": "http://myservice.com", + "properties": {} } ] } @@ -281,141 +297,149 @@ } } }, - "201" : { - "headers" : {}, - "body" : { - "id" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", - "name" : "MySetting", - "type" : "Microsoft.Insights/autoscaleSettings", - "location" : "West US", - "tags" : { - "$type" : "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage" + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", + "name": "MySetting", + "type": "Microsoft.Insights/autoscaleSettings", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage" }, - "properties" : { - "profiles" : [{ - "name" : "adios", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" + "properties": { + "profiles": [ + { + "name": "adios", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" } } ], - "fixedDate" : { - "timeZone" : "UTC", - "start" : "2015-03-05T14:00:00Z", - "end" : "2015-03-05T14:30:00Z" + "fixedDate": { + "timeZone": "UTC", + "start": "2015-03-05T14:00:00Z", + "end": "2015-03-05T14:30:00Z" } - }, { - "name" : "saludos", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" + }, + { + "name": "saludos", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" } } ], - "recurrence" : { - "frequency" : "Week", - "schedule" : { - "timeZone" : "UTC", - "days" : [ + "recurrence": { + "frequency": "Week", + "schedule": { + "timeZone": "UTC", + "days": [ "1" ], - "hours" : [ + "hours": [ 5 ], - "minutes" : [ + "minutes": [ 15 ] } } } ], - "enabled" : true, - "name" : "MySetting", - "targetResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "notifications" : [{ - "operation" : "Scale", - "email" : { - "sendToSubscriptionAdministrator" : true, - "sendToSubscriptionCoAdministrators" : true, - "customEmails" : [ + "enabled": true, + "name": "MySetting", + "targetResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "notifications": [ + { + "operation": "Scale", + "email": { + "sendToSubscriptionAdministrator": true, + "sendToSubscriptionCoAdministrators": true, + "customEmails": [ "gu@ms.com", "ge@ns.net" ] }, - "webhooks" : [{ - "serviceUri" : "http://myservice.com", - "properties" : {} + "webhooks": [ + { + "serviceUri": "http://myservice.com", + "properties": {} } ] } @@ -424,4 +448,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/deleteAutoscaleSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/deleteAutoscaleSetting.json index 45e684316de4..f7aedfaea3cb 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/deleteAutoscaleSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/deleteAutoscaleSetting.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName": "TestingMetricsScaleSet", - "autoscaleSettingName": "MySetting", - "api-version": "2015-04-01" + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "TestingMetricsScaleSet", + "autoscaleSettingName": "MySetting", + "api-version": "2015-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/getAutoscaleSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/getAutoscaleSetting.json index 7e359dd858c2..940fb7184382 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/getAutoscaleSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/getAutoscaleSetting.json @@ -1,160 +1,160 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName": "TestingMetricsScaleSet", - "autoscaleSettingName": "MySetting", - "api-version": "2015-04-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", - "name":"MySetting", - "type":"Microsoft.Insights/autoscaleSettings", - "location":"West US", - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage" + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "TestingMetricsScaleSet", + "autoscaleSettingName": "MySetting", + "api-version": "2015-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", + "name": "MySetting", + "type": "Microsoft.Insights/autoscaleSettings", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage" + }, + "properties": { + "profiles": [ + { + "name": "adios", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" + }, + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 + }, + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" + } }, - "properties": { - "profiles": [ - { - "name":"adios", - "capacity": { - "minimum":"1", - "maximum":"10", - "default":"1" - }, - "rules": [ - { - "metricTrigger": { - "metricName":"Percentage CPU", - "metricResourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain":"PT1M", - "statistic":"Average", - "timeWindow":"PT5M", - "timeAggregation":"Average", - "operator":"GreaterThan", - "threshold":10.0 - }, - "scaleAction": { - "direction":"Increase", - "type":"ChangeCount", - "value":"1", - "cooldown":"PT5M" - } - }, - { - "metricTrigger": { - "metricName":"Percentage CPU", - "metricResourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain":"PT2M", - "statistic":"Average", - "timeWindow":"PT5M", - "timeAggregation":"Average", - "operator":"GreaterThan", - "threshold":15.0 - }, - "scaleAction": { - "direction":"Decrease", - "type":"ChangeCount", - "value":"2", - "cooldown":"PT6M" - } - } - ], - "fixedDate": { - "timeZone":"UTC", - "start":"2015-03-05T14:00:00Z", - "end":"2015-03-05T14:30:00Z" - } - }, - { - "name":"saludos", - "capacity": { - "minimum":"1", - "maximum":"10", - "default":"1" - }, - "rules": [ - { - "metricTrigger": { - "metricName":"Percentage CPU", - "metricResourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain":"PT1M", - "statistic":"Average", - "timeWindow":"PT5M", - "timeAggregation":"Average", - "operator":"GreaterThan", - "threshold":10.0 - }, - "scaleAction": { - "direction":"Increase", - "type":"ChangeCount", - "value":"1", - "cooldown":"PT5M" - } - }, - { - "metricTrigger": { - "metricName":"Percentage CPU", - "metricResourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain":"PT2M", - "statistic":"Average", - "timeWindow":"PT5M", - "timeAggregation":"Average", - "operator":"GreaterThan", - "threshold":15.0 - }, - "scaleAction": { - "direction":"Decrease", - "type":"ChangeCount", - "value":"2", - "cooldown":"PT6M" - } - } - ], - "recurrence": { - "frequency":"Week", - "schedule": { - "timeZone":"UTC", - "days": [ - "1" - ], - "hours": [ - 5 - ], - "minutes": [ - 15 - ] - } - } - } + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 + }, + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" + } + } + ], + "fixedDate": { + "timeZone": "UTC", + "start": "2015-03-05T14:00:00Z", + "end": "2015-03-05T14:30:00Z" + } + }, + { + "name": "saludos", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" + }, + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 + }, + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" + } + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 + }, + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" + } + } + ], + "recurrence": { + "frequency": "Week", + "schedule": { + "timeZone": "UTC", + "days": [ + "1" ], - "enabled":true, - "name":"MySetting", - "targetResourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "notifications": [ - { - "operation":"Scale", - "email": { - "sendToSubscriptionAdministrator":true, - "sendToSubscriptionCoAdministrators":true, - "customEmails": [ - "gu@ms.com", - "ge@ns.net" - ] - }, - "webhooks": [ - { - "serviceUri":"http://myservice.com", - "properties":{} - } - ] - } + "hours": [ + 5 + ], + "minutes": [ + 15 ] } + } + } + ], + "enabled": true, + "name": "MySetting", + "targetResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "notifications": [ + { + "operation": "Scale", + "email": { + "sendToSubscriptionAdministrator": true, + "sendToSubscriptionCoAdministrators": true, + "customEmails": [ + "gu@ms.com", + "ge@ns.net" + ] + }, + "webhooks": [ + { + "serviceUri": "http://myservice.com", + "properties": {} + } + ] } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/listAutoscaleSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/listAutoscaleSetting.json index 909da7a9fb73..70ba238c9364 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/listAutoscaleSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/listAutoscaleSetting.json @@ -1,147 +1,164 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName": "TestingMetricsScaleSet", - "api-version": "2015-04-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value" : [ - { - "id" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", - "name" : "MySetting", - "type" : "Microsoft.Insights/autoscaleSettings", - "location" : "West US", - "tags" : { - "$type" : "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage" + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "TestingMetricsScaleSet", + "api-version": "2015-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", + "name": "MySetting", + "type": "Microsoft.Insights/autoscaleSettings", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage" + }, + "properties": { + "profiles": [ + { + "name": "adios", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" + }, + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 + }, + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" + } }, - "properties" : { - "profiles" : [{ - "name" : "adios", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" - }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 - }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" - } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 - }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" - } - } - ], - "fixedDate" : { - "timeZone" : "UTC", - "start" : "2015-03-05T14:00:00Z", - "end" : "2015-03-05T14:30:00Z" - } - }, { - "name" : "saludos", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" - }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 - }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" - } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 - }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" - } - } - ], - "recurrence" : { - "frequency" : "Week", - "schedule" : { - "timeZone" : "UTC", - "days" : ["1"], - "hours" : [5], - "minutes" : [15] - } - } - } + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 + }, + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" + } + } + ], + "fixedDate": { + "timeZone": "UTC", + "start": "2015-03-05T14:00:00Z", + "end": "2015-03-05T14:30:00Z" + } + }, + { + "name": "saludos", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" + }, + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 + }, + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" + } + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 + }, + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" + } + } + ], + "recurrence": { + "frequency": "Week", + "schedule": { + "timeZone": "UTC", + "days": [ + "1" + ], + "hours": [ + 5 ], - "enabled" : true, - "name" : "MySetting", - "targetResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "notifications" : [{ - "operation" : "Scale", - "email" : { - "sendToSubscriptionAdministrator" : true, - "sendToSubscriptionCoAdministrators" : true, - "customEmails" : ["gu@ms.com", "ge@ns.net"] - }, - "webhooks" : [{ - "serviceUri" : "http://myservice.com", - "properties" : {} - } - ] - } + "minutes": [ + 15 ] } } - ], - "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } + ], + "enabled": true, + "name": "MySetting", + "targetResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "notifications": [ + { + "operation": "Scale", + "email": { + "sendToSubscriptionAdministrator": true, + "sendToSubscriptionCoAdministrators": true, + "customEmails": [ + "gu@ms.com", + "ge@ns.net" + ] + }, + "webhooks": [ + { + "serviceUri": "http://myservice.com", + "properties": {} + } + ] + } + ] } - } + } + ], + "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/listAutoscaleSettingBySubscription.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/listAutoscaleSettingBySubscription.json index 134f3ed6bb91..dddfc3df50e1 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/listAutoscaleSettingBySubscription.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/listAutoscaleSettingBySubscription.json @@ -1,146 +1,163 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "api-version": "2015-04-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value" : [ - { - "id" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", - "name" : "MySetting", - "type" : "Microsoft.Insights/autoscaleSettings", - "location" : "West US", - "tags" : { - "$type" : "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage" + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "api-version": "2015-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", + "name": "MySetting", + "type": "Microsoft.Insights/autoscaleSettings", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage" + }, + "properties": { + "profiles": [ + { + "name": "adios", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" + }, + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 + }, + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" + } }, - "properties" : { - "profiles" : [{ - "name" : "adios", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" - }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 - }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" - } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 - }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" - } - } - ], - "fixedDate" : { - "timeZone" : "UTC", - "start" : "2015-03-05T14:00:00Z", - "end" : "2015-03-05T14:30:00Z" - } - }, { - "name" : "saludos", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" - }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 - }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" - } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 - }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" - } - } - ], - "recurrence" : { - "frequency" : "Week", - "schedule" : { - "timeZone" : "UTC", - "days" : ["1"], - "hours" : [5], - "minutes" : [15] - } - } - } + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 + }, + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" + } + } + ], + "fixedDate": { + "timeZone": "UTC", + "start": "2015-03-05T14:00:00Z", + "end": "2015-03-05T14:30:00Z" + } + }, + { + "name": "saludos", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" + }, + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 + }, + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" + } + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 + }, + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" + } + } + ], + "recurrence": { + "frequency": "Week", + "schedule": { + "timeZone": "UTC", + "days": [ + "1" + ], + "hours": [ + 5 ], - "enabled" : true, - "name" : "MySetting", - "targetResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "notifications" : [{ - "operation" : "Scale", - "email" : { - "sendToSubscriptionAdministrator" : true, - "sendToSubscriptionCoAdministrators" : true, - "customEmails" : ["gu@ms.com", "ge@ns.net"] - }, - "webhooks" : [{ - "serviceUri" : "http://myservice.com", - "properties" : {} - } - ] - } + "minutes": [ + 15 ] } } - ], - "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } + ], + "enabled": true, + "name": "MySetting", + "targetResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "notifications": [ + { + "operation": "Scale", + "email": { + "sendToSubscriptionAdministrator": true, + "sendToSubscriptionCoAdministrators": true, + "customEmails": [ + "gu@ms.com", + "ge@ns.net" + ] + }, + "webhooks": [ + { + "serviceUri": "http://myservice.com", + "properties": {} + } + ] + } + ] } - } + } + ], + "nextLink": "https://management.azure.com/########-####-####-####-############$skiptoken=######" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/patchAutoscaleSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/patchAutoscaleSetting.json index ef609f5e2646..3c80bd7a509f 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/patchAutoscaleSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/patchAutoscaleSetting.json @@ -1,137 +1,145 @@ { - "parameters" : { - "subscriptionId" : "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName" : "TestingMetricsScaleSet", - "autoscaleSettingName" : "MySetting", - "api-version" : "2015-04-01", - "autoscaleSettingResource" : { - "tags" : { - "$type" : "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary" + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "TestingMetricsScaleSet", + "autoscaleSettingName": "MySetting", + "api-version": "2015-04-01", + "autoscaleSettingResource": { + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary" }, - "properties" : { - "profiles" : [{ - "name" : "adios", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" + "properties": { + "profiles": [ + { + "name": "adios", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" } } ], - "fixedDate" : { - "timeZone" : "UTC", - "start" : "2015-03-05T14:00:00Z", - "end" : "2015-03-05T14:30:00Z" + "fixedDate": { + "timeZone": "UTC", + "start": "2015-03-05T14:00:00Z", + "end": "2015-03-05T14:30:00Z" } - }, { - "name" : "saludos", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" + }, + { + "name": "saludos", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" } } ], - "recurrence" : { - "frequency" : "Week", - "schedule" : { - "timeZone" : "UTC", - "days" : [ + "recurrence": { + "frequency": "Week", + "schedule": { + "timeZone": "UTC", + "days": [ "1" ], - "hours" : [ + "hours": [ 5 ], - "minutes" : [ + "minutes": [ 15 ] } } } ], - "enabled" : true, - "targetResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "notifications" : [{ - "operation" : "Scale", - "email" : { - "sendToSubscriptionAdministrator" : true, - "sendToSubscriptionCoAdministrators" : true, - "customEmails" : [ + "enabled": true, + "targetResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "notifications": [ + { + "operation": "Scale", + "email": { + "sendToSubscriptionAdministrator": true, + "sendToSubscriptionCoAdministrators": true, + "customEmails": [ "gu@ms.com", "ge@ns.net" ] }, - "webhooks" : [{ - "serviceUri" : "http://myservice.com", - "properties" : {} + "webhooks": [ + { + "serviceUri": "http://myservice.com", + "properties": {} } ] } @@ -139,142 +147,150 @@ } } }, - "responses" : { - "200" : { - "headers" : {}, - "body" : { - "id" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", - "name" : "MySetting", - "type" : "Microsoft.Insights/autoscaleSettings", - "location" : "West US", - "tags" : { - "$type" : "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary" + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/microsoft.insights/autoscalesettings/MySetting", + "name": "MySetting", + "type": "Microsoft.Insights/autoscaleSettings", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary" }, - "properties" : { - "profiles" : [{ - "name" : "adios", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" + "properties": { + "profiles": [ + { + "name": "adios", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" } } ], - "fixedDate" : { - "timeZone" : "UTC", - "start" : "2015-03-05T14:00:00Z", - "end" : "2015-03-05T14:30:00Z" + "fixedDate": { + "timeZone": "UTC", + "start": "2015-03-05T14:00:00Z", + "end": "2015-03-05T14:30:00Z" } - }, { - "name" : "saludos", - "capacity" : { - "minimum" : "1", - "maximum" : "10", - "default" : "1" + }, + { + "name": "saludos", + "capacity": { + "minimum": "1", + "maximum": "10", + "default": "1" }, - "rules" : [{ - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT1M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 10.0 + "rules": [ + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT1M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 10.0 }, - "scaleAction" : { - "direction" : "Increase", - "type" : "ChangeCount", - "value" : "1", - "cooldown" : "PT5M" + "scaleAction": { + "direction": "Increase", + "type": "ChangeCount", + "value": "1", + "cooldown": "PT5M" } - }, { - "metricTrigger" : { - "metricName" : "Percentage CPU", - "metricResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "timeGrain" : "PT2M", - "statistic" : "Average", - "timeWindow" : "PT5M", - "timeAggregation" : "Average", - "operator" : "GreaterThan", - "threshold" : 15.0 + }, + { + "metricTrigger": { + "metricName": "Percentage CPU", + "metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "timeGrain": "PT2M", + "statistic": "Average", + "timeWindow": "PT5M", + "timeAggregation": "Average", + "operator": "GreaterThan", + "threshold": 15.0 }, - "scaleAction" : { - "direction" : "Decrease", - "type" : "ChangeCount", - "value" : "2", - "cooldown" : "PT6M" + "scaleAction": { + "direction": "Decrease", + "type": "ChangeCount", + "value": "2", + "cooldown": "PT6M" } } ], - "recurrence" : { - "frequency" : "Week", - "schedule" : { - "timeZone" : "UTC", - "days" : [ + "recurrence": { + "frequency": "Week", + "schedule": { + "timeZone": "UTC", + "days": [ "1" ], - "hours" : [ + "hours": [ 5 ], - "minutes" : [ + "minutes": [ 15 ] } } } ], - "enabled" : true, - "name" : "MySetting", - "targetResourceUri" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", - "notifications" : [{ - "operation" : "Scale", - "email" : { - "sendToSubscriptionAdministrator" : true, - "sendToSubscriptionCoAdministrators" : true, - "customEmails" : [ + "enabled": true, + "name": "MySetting", + "targetResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc", + "notifications": [ + { + "operation": "Scale", + "email": { + "sendToSubscriptionAdministrator": true, + "sendToSubscriptionCoAdministrators": true, + "customEmails": [ "gu@ms.com", "ge@ns.net" ] }, - "webhooks" : [{ - "serviceUri" : "http://myservice.com", - "properties" : {} + "webhooks": [ + { + "serviceUri": "http://myservice.com", + "properties": {} } ] } @@ -283,4 +299,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/operations_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/operations_API.json index b45598268c67..9b684a8b01b1 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/operations_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/operations_API.json @@ -36,35 +36,37 @@ } }, "paths": { - "/providers/microsoft.insights/operations": { - "get": { - "tags": [ - "Operations" - ], - "description": "Lists all of the available operations from Microsoft.Insights provider.", - "operationId": "Operations_List", - "x-ms-examples": { - "Get a list of operations for a resource provider": { - "$ref": "./examples/OperationList.json" - } - }, - "parameters": [{ + "/providers/microsoft.insights/operations": { + "get": { + "tags": [ + "Operations" + ], + "description": "Lists all of the available operations from Microsoft.Insights provider.", + "operationId": "Operations_List", + "x-ms-examples": { + "Get a list of operations for a resource provider": { + "$ref": "./examples/OperationList.json" + } + }, + "parameters": [ + { "$ref": "#/parameters/ApiVersionParameter" - }], - "responses": { - "200": { - "description": "OK. The request has succeeded.", - "schema": { - "$ref": "#/definitions/OperationListResult" - } + } + ], + "responses": { + "200": { + "description": "OK. The request has succeeded.", + "schema": { + "$ref": "#/definitions/OperationListResult" } } } } + } }, "definitions": { "OperationListResult": { - "description": "Result of the request to list Microsoft.Insights operations. It contains a list of operations and a URL link to get the next set of results.", + "description": "Result of the request to list Microsoft.Insights operations. It contains a list of operations and a URL link to get the next set of results.", "properties": { "value": { "type": "array", diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/tenantActivityLogs_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/tenantActivityLogs_API.json index 3a4bbdb55dc4..bfc830e14ef3 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/tenantActivityLogs_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/tenantActivityLogs_API.json @@ -77,17 +77,27 @@ }, "x-ms-odata": "#/definitions/EventData", "x-ms-examples": { - "Get Tenant Activity Logs without filter or select": { "$ref": "./examples/GetTenantActivityLogsNoParams.json" }, - "Get Tenant Activity Logs with filter": { "$ref": "./examples/GetTenantActivityLogsFiltered.json" }, - "Get Tenant Activity Logs with select": { "$ref": "./examples/GetTenantActivityLogsSelected.json" }, - "Get Tenant Activity Logs with filter and select": { "$ref": "./examples/GetTenantActivityLogsFilteredAndSelected.json" } + "Get Tenant Activity Logs without filter or select": { + "$ref": "./examples/GetTenantActivityLogsNoParams.json" + }, + "Get Tenant Activity Logs with filter": { + "$ref": "./examples/GetTenantActivityLogsFiltered.json" + }, + "Get Tenant Activity Logs with select": { + "$ref": "./examples/GetTenantActivityLogsSelected.json" + }, + "Get Tenant Activity Logs with filter and select": { + "$ref": "./examples/GetTenantActivityLogsFilteredAndSelected.json" + } } } } }, "definitions": { "LocalizableString": { - "required": [ "value" ], + "required": [ + "value" + ], "properties": { "value": { "type": "string", @@ -308,7 +318,9 @@ "description": "Provides the link to retrieve the next set of events." } }, - "required": [ "value" ], + "required": [ + "value" + ], "description": "Represents collection of events." }, "ErrorResponse": { @@ -343,4 +355,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-07-01/serviceDiagnosticsSettings_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-07-01/serviceDiagnosticsSettings_API.json index 28d3af6e0462..47d2cfd11f23 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-07-01/serviceDiagnosticsSettings_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-07-01/serviceDiagnosticsSettings_API.json @@ -63,31 +63,32 @@ }, "examples": { "application/json": { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", - "type":"", - "name":"service", - "location":"", - "tags":null, + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", + "type": "", + "name": "service", + "location": "", + "tags": null, "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1","serviceBusRuleId":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", - "workspaceId":"", + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "serviceBusRuleId": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", + "workspaceId": "", "metrics": [ { - "timeGrain":"PT1M", - "enabled":true, + "timeGrain": "PT1M", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ], "logs": [ { - "category":"WorkflowRuntime", - "enabled":true, + "category": "WorkflowRuntime", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ] @@ -129,31 +130,32 @@ }, "examples": { "application/json": { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", - "type":"", - "name":"service", - "location":"", - "tags":null, + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", + "type": "", + "name": "service", + "location": "", + "tags": null, "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1","serviceBusRuleId":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", - "workspaceId":"", + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "serviceBusRuleId": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", + "workspaceId": "", "metrics": [ { - "timeGrain":"PT1M", - "enabled":true, + "timeGrain": "PT1M", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ], "logs": [ { - "category":"WorkflowRuntime", - "enabled":true, + "category": "WorkflowRuntime", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ] @@ -187,8 +189,8 @@ "type": "string", "description": "Resource location", "x-ms-mutability": [ - "create", - "read" + "create", + "read" ] }, "tags": { @@ -216,7 +218,10 @@ "description": "the number of days for the retention in days. A value of 0 will retain the events indefinitely." } }, - "required": [ "enabled", "days" ], + "required": [ + "enabled", + "days" + ], "description": "Specifies the retention policy for the log." }, "MetricSettings": { @@ -235,7 +240,10 @@ "description": "the retention policy for this timegrain." } }, - "required": [ "enabled", "timeGrain" ], + "required": [ + "enabled", + "timeGrain" + ], "description": "Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular metric." }, "LogSettings": { @@ -253,7 +261,9 @@ "description": "the retention policy for this log." } }, - "required": [ "enabled" ], + "required": [ + "enabled" + ], "description": "Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular log." }, "ServiceDiagnosticSettings": { @@ -334,4 +344,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/alertRulesIncidents_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/alertRulesIncidents_API.json index 6ef19b51b0a8..732e28a28d68 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/alertRulesIncidents_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/alertRulesIncidents_API.json @@ -79,7 +79,9 @@ } }, "x-ms-examples": { - "Get a single alert rule incident": { "$ref": "./examples/getAlertRuleIncident.json" } + "Get a single alert rule incident": { + "$ref": "./examples/getAlertRuleIncident.json" + } } } }, @@ -113,7 +115,9 @@ } }, "x-ms-examples": { - "List alert rule incidents": { "$ref": "./examples/listAlertRuleIncidents.json" } + "List alert rule incidents": { + "$ref": "./examples/listAlertRuleIncidents.json" + } }, "x-ms-pageable": { "nextLinkName": null @@ -213,4 +217,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/alertRules_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/alertRules_API.json index c7d1732feece..f9d1e42c1f5e 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/alertRules_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/alertRules_API.json @@ -87,7 +87,9 @@ } }, "x-ms-examples": { - "Create or update an alert rule": { "$ref": "./examples/createOrUpdateAlertRule.json" } + "Create or update an alert rule": { + "$ref": "./examples/createOrUpdateAlertRule.json" + } } }, "delete": { @@ -119,7 +121,9 @@ } }, "x-ms-examples": { - "Delete an alert rule": { "$ref": "./examples/deleteAlertRule.json" } + "Delete an alert rule": { + "$ref": "./examples/deleteAlertRule.json" + } } }, "get": { @@ -151,58 +155,62 @@ } }, "x-ms-examples": { - "Get an alert rule": { "$ref": "./examples/getAlertRule.json" } + "Get an alert rule": { + "$ref": "./examples/getAlertRule.json" + } } }, "patch": { - "description": "Updates an existing AlertRuleResource. To update other fields use the CreateOrUpdate method.", - "operationId": "AlertRules_Update", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/RuleNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "alertRulesResource", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/AlertRuleResourcePatch" - }, - "description": "Parameters supplied to the operation." - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "Successful request to update an alert rule", - "schema": { - "$ref": "#/definitions/AlertRuleResource" - } - }, - "201": { - "description": "Successful request to update an alert rule that resulted in a creation of the alert rule", - "schema": { - "$ref": "#/definitions/AlertRuleResource" - } - } + "description": "Updates an existing AlertRuleResource. To update other fields use the CreateOrUpdate method.", + "operationId": "AlertRules_Update", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/RuleNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "alertRulesResource", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/AlertRuleResourcePatch" + }, + "description": "Parameters supplied to the operation." + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } }, - "x-ms-examples": { - "Patch an alert rule": { "$ref": "./examples/patchAlertRule.json" } + "200": { + "description": "Successful request to update an alert rule", + "schema": { + "$ref": "#/definitions/AlertRuleResource" + } + }, + "201": { + "description": "Successful request to update an alert rule that resulted in a creation of the alert rule", + "schema": { + "$ref": "#/definitions/AlertRuleResource" + } + } + }, + "x-ms-examples": { + "Patch an alert rule": { + "$ref": "./examples/patchAlertRule.json" } + } } }, "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules": { @@ -235,7 +243,9 @@ "nextLinkName": null }, "x-ms-examples": { - "List alert rules": { "$ref": "./examples/listAlertRule.json" } + "List alert rules": { + "$ref": "./examples/listAlertRule.json" + } } } }, @@ -266,7 +276,9 @@ "nextLinkName": null }, "x-ms-examples": { - "List alert rules": { "$ref": "./examples/listAlertRuleBySubscription.json" } + "List alert rules": { + "$ref": "./examples/listAlertRuleBySubscription.json" + } } } } @@ -285,7 +297,9 @@ "description": "the resource from which the rule collects its data. For this type dataSource will always be of type RuleMetricDataSource." } }, - "required": [ "odata.type" ], + "required": [ + "odata.type" + ], "description": "The condition that results in the alert rule being activated." }, "RuleDataSource": { @@ -301,7 +315,9 @@ "description": "the resource identifier of the resource the rule monitors. **NOTE**: this property cannot be updated for an existing rule." } }, - "required": [ "odata.type" ], + "required": [ + "odata.type" + ], "description": "The resource from which the rule collects its data." }, "RuleMetricDataSource": { @@ -334,7 +350,7 @@ "type": "object", "allOf": [ { - "$ref" : "#/definitions/RuleDataSource" + "$ref": "#/definitions/RuleDataSource" } ], "properties": { @@ -392,14 +408,14 @@ "description": "Operators allowed in the rule condition." }, "TimeAggregationOperator": { - "type": "string", - "enum": [ - "Average", - "Minimum", - "Maximum", - "Total", - "Last" - ], + "type": "string", + "enum": [ + "Average", + "Minimum", + "Maximum", + "Total", + "Last" + ], "x-ms-enum": { "name": "TimeAggregationOperator", "modelAsString": false @@ -411,10 +427,13 @@ "type": "object", "allOf": [ { - "$ref" : "#/definitions/RuleCondition" + "$ref": "#/definitions/RuleCondition" } ], - "required": [ "threshold", "operator" ], + "required": [ + "threshold", + "operator" + ], "properties": { "operator": { "$ref": "#/definitions/ConditionOperator", @@ -443,7 +462,7 @@ "type": "object", "allOf": [ { - "$ref" : "#/definitions/RuleCondition" + "$ref": "#/definitions/RuleCondition" } ], "properties": { @@ -459,20 +478,22 @@ "description": "the number of locations that must fail to activate the alert." } }, - "required": [ "failedLocationCount" ], + "required": [ + "failedLocationCount" + ], "description": "A rule condition based on a certain number of locations failing.", "example": "{\r\n\t\"odata.type\": \"Microsoft.Azure.Management.Insights.Models.LocationThresholdRuleCondition\",\r\n\t\"dataSource\": {\r\n\t\t\"odata.type\": \"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource\",\r\n\t\t\"resourceUri\": \"/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourcegroups/Default-Web-CentralUS/providers/microsoft.insights/webtests/homepagetest-newrelapp2\",r\n\t\t\"metricName\": \"GSMT_AvRaW\"\r\n\t},\r\n\t\"windowSize\": \"PT5M\",\r\n\t\"failedLocationCount\": 1\r\n}" }, "ManagementEventAggregationCondition": { "properties": { "operator": { - "$ref": "#/definitions/ConditionOperator", - "description": "the condition operator." + "$ref": "#/definitions/ConditionOperator", + "description": "the condition operator." }, "threshold": { - "type": "number", - "format": "double", - "description": "The threshold value that activates the alert." + "type": "number", + "format": "double", + "description": "The threshold value that activates the alert." }, "windowSize": { "type": "string", @@ -487,7 +508,7 @@ "type": "object", "allOf": [ { - "$ref" : "#/definitions/RuleCondition" + "$ref": "#/definitions/RuleCondition" } ], "properties": { @@ -508,7 +529,9 @@ "description": "specifies the type of the action. There are two types of actions: RuleEmailAction and RuleWebhookAction." } }, - "required": [ "odata.type" ], + "required": [ + "odata.type" + ], "description": "The action that is performed when the alert rule becomes active, and when an alert condition is resolved." }, "RuleEmailAction": { @@ -521,15 +544,15 @@ ], "properties": { "sendToServiceOwners": { - "type": "boolean", - "description": "Whether the administrators (service and co-administrators) of the service should be notified when the alert is activated." + "type": "boolean", + "description": "Whether the administrators (service and co-administrators) of the service should be notified when the alert is activated." }, "customEmails": { - "type": "array", - "items": { - "type" : "string" - }, - "description": "the list of administrator's custom email addresses to notify of the activation of the alert." + "type": "array", + "items": { + "type": "string" + }, + "description": "the list of administrator's custom email addresses to notify of the activation of the alert." } }, "description": "Specifies the action to send email when the rule condition is evaluated. The discriminator is always RuleEmailAction in this case.", @@ -544,17 +567,17 @@ } ], "properties": { - "serviceUri": { - "type": "string", - "description": "the service uri to Post the notification when the alert activates or resolves." - }, - "properties": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload." - } + "serviceUri": { + "type": "string", + "description": "the service uri to Post the notification when the alert activates or resolves." + }, + "properties": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload." + } }, "description": "Specifies the action to post to service when the rule condition is evaluated. The discriminator is always RuleWebhookAction in this case.", "example": "{\r\n\t\"odata.type\": \"Microsoft.Azure.Management.Insights.Models.RuleWebhookAction\",\r\n\t\"serviceUri\": \"http://contoso.com/\",\r\n\t\"properties\": { }\r\n}" @@ -619,8 +642,8 @@ "type": "string", "description": "Resource location", "x-ms-mutability": [ - "create", - "read" + "create", + "read" ] }, "tags": { @@ -639,9 +662,9 @@ "AlertRuleResource": { "type": "object", "allOf": [ - { - "$ref": "#/definitions/Resource" - } + { + "$ref": "#/definitions/Resource" + } ], "required": [ "properties" @@ -659,10 +682,10 @@ "description": "The alert rule object for patch operations.", "properties": { "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" }, "properties": { "x-ms-client-flatten": true, diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/GetMetricDefinitions.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/GetMetricDefinitions.json index fda5f7bc6329..68fd82a7aa48 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/GetMetricDefinitions.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/GetMetricDefinitions.json @@ -1,76 +1,75 @@ { - "parameters": { - "resourceUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", - "api-version": "2016-03-01", - "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" - }, - "responses": { - "200": { - "body": { - "value": - [ - { - "resourceId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", - "name": { - "value":"RunsStarted", - "localizedValue":"Runs Started" - }, - "unit":"Count", - "primaryAggregationType":"Total", - "metricAvailabilities":[ - { - "timeGrain":"PT1M", - "retention":"P30D" - }, - { - "timeGrain":"PT1H", - "retention":"P30D" - } - ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsStarted" - }, - { - "resourceId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", - "name": { - "value":"RunsCompleted", - "localizedValue":"Runs Completed" - }, - "unit":"Count", - "primaryAggregationType":"Total", - "metricAvailabilities": [ - { - "timeGrain":"PT1M", - "retention":"P30D" - }, - { - "timeGrain":"PT1H", - "retention":"P30D" - } - ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsCompleted" - }, - { - "resourceId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", - "name": { - "value":"RunsSucceeded", - "localizedValue":"Runs Succeeded" - }, - "unit":"Count", - "primaryAggregationType":"Total", - "metricAvailabilities": [ - { - "timeGrain":"PT1M", - "retention":"P30D" - }, - { - "timeGrain":"PT1H", - "retention":"P30D" - } - ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsSucceeded" - } - ] - } - } + "parameters": { + "resourceUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "api-version": "2016-03-01", + "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "resourceId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "name": { + "value": "RunsStarted", + "localizedValue": "Runs Started" + }, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsStarted" + }, + { + "resourceId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "name": { + "value": "RunsCompleted", + "localizedValue": "Runs Completed" + }, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsCompleted" + }, + { + "resourceId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "name": { + "value": "RunsSucceeded", + "localizedValue": "Runs Succeeded" + }, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsSucceeded" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/GetMetricDefinitionsFiltered.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/GetMetricDefinitionsFiltered.json index ccbe7670ed6f..3362cc71a05a 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/GetMetricDefinitionsFiltered.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/GetMetricDefinitionsFiltered.json @@ -1,57 +1,56 @@ { - "parameters": { - "resourceUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", - "api-version": "2016-03-01", - "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192", - "$filter": "name.value eq 'RunsStarted' or name.value eq 'RunsSucceeded'" - }, - "responses": { - "200": { - "body": { - "value": - [ - { - "resourceId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", - "name": { - "value":"RunsStarted", - "localizedValue":"Runs Started" - }, - "unit":"Count", - "primaryAggregationType":"Total", - "metricAvailabilities":[ - { - "timeGrain":"PT1M", - "retention":"P30D" - }, - { - "timeGrain":"PT1H", - "retention":"P30D" - } - ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsStarted" - }, - { - "resourceId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", - "name": { - "value":"RunsSucceeded", - "localizedValue":"Runs Succeeded" - }, - "unit":"Count", - "primaryAggregationType":"Total", - "metricAvailabilities": [ - { - "timeGrain":"PT1M", - "retention":"P30D" - }, - { - "timeGrain":"PT1H", - "retention":"P30D" - } - ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsSucceeded" - } - ] - } - } + "parameters": { + "resourceUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "api-version": "2016-03-01", + "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192", + "$filter": "name.value eq 'RunsStarted' or name.value eq 'RunsSucceeded'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "resourceId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "name": { + "value": "RunsStarted", + "localizedValue": "Runs Started" + }, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsStarted" + }, + { + "resourceId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "name": { + "value": "RunsSucceeded", + "localizedValue": "Runs Succeeded" + }, + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P30D" + }, + { + "timeGrain": "PT1H", + "retention": "P30D" + } + ], + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsSucceeded" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/createOrUpdateAlertRule.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/createOrUpdateAlertRule.json index 7c6eec0e5d36..50712ab18981 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/createOrUpdateAlertRule.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/createOrUpdateAlertRule.json @@ -1,95 +1,97 @@ { + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "Rac46PostSwapRG", + "ruleName": "chiricutin", + "api-version": "2016-03-01", "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName": "Rac46PostSwapRG", - "ruleName": "chiricutin", - "api-version": "2016-03-01", - "parameters": { - "location": "West US", - "tags": { }, - "properties": { - "name":"chiricutin", - "description":"Pura Vida", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":3.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-23T21:23:52.0221265Z", - "actions":[] - } + "location": "West US", + "tags": {}, + "properties": { + "name": "chiricutin", + "description": "Pura Vida", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 3.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-23T21:23:52.0221265Z", + "actions": [] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin", + "name": "chiricutin", + "type": "Microsoft.Insights/alertRules", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage", + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" + }, + "properties": { + "name": "chiricutin", + "description": "Pura Vida", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 3.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-23T21:23:52.0221265Z", + "actions": [] } + } }, - "responses": { - "200": { - "headers": { }, - "body": { - "id":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin", - "name":"chiricutin", - "type":"Microsoft.Insights/alertRules", - "location":"West US", - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage","hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest":"Resource" - }, - "properties": { - "name":"chiricutin", - "description":"Pura Vida", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":3.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-23T21:23:52.0221265Z", - "actions":[] - } - } + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin", + "name": "chiricutin", + "type": "Microsoft.Insights/alertRules", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage", + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" }, - "201": { - "headers": { }, - "body": { - "id":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin", - "name":"chiricutin", - "type":"Microsoft.Insights/alertRules", - "location":"West US", - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage","hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest":"Resource" - }, - "properties": { - "name":"chiricutin", - "description":"Pura Vida", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":3.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-23T21:23:52.0221265Z", - "actions":[] - } - } + "properties": { + "name": "chiricutin", + "description": "Pura Vida", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 3.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-23T21:23:52.0221265Z", + "actions": [] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/createOrUpdateLogProfile.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/createOrUpdateLogProfile.json index 437c9a43999e..a10cf81d6573 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/createOrUpdateLogProfile.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/createOrUpdateLogProfile.json @@ -1,49 +1,55 @@ { + "parameters": { + "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192", + "logProfileName": "Rac46PostSwapRG", + "api-version": "2016-03-01", "parameters": { - "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192", - "logProfileName": "Rac46PostSwapRG", - "api-version": "2016-03-01", - "parameters": { - "location": "", - "tags": { }, - "properties": { - "locations": [ "global" ], - "categories": [ "Write", "Delete", "Action" ], - "retentionPolicy": { - "enabled": true, - "days": 3 - }, - "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", - "serviceBusRuleId": "" - } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/microsoft.insights/logprofiles/default", - "type":"", - "name":"default", - "location":"", - "tags":null, - "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", - "serviceBusRuleId":"", - "locations":[ - "global" - ], - "categories": [ - "Delete", - "Write", - "Action" - ], - "retentionPolicy": { - "enabled":true, - "days":3 - } - } - } + "location": "", + "tags": {}, + "properties": { + "locations": [ + "global" + ], + "categories": [ + "Write", + "Delete", + "Action" + ], + "retentionPolicy": { + "enabled": true, + "days": 3 + }, + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", + "serviceBusRuleId": "" + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/microsoft.insights/logprofiles/default", + "type": "", + "name": "default", + "location": "", + "tags": null, + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", + "serviceBusRuleId": "", + "locations": [ + "global" + ], + "categories": [ + "Delete", + "Write", + "Action" + ], + "retentionPolicy": { + "enabled": true, + "days": 3 + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/deleteAlertRule.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/deleteAlertRule.json index 959c9be02353..e32256513b8f 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/deleteAlertRule.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/deleteAlertRule.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName": "Rac46PostSwapRG", - "ruleName": "chiricutin", - "api-version": "2016-03-01" + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "Rac46PostSwapRG", + "ruleName": "chiricutin", + "api-version": "2016-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/deleteLogProfile.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/deleteLogProfile.json index 1d8b3c9c57c4..15c210f6aafb 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/deleteLogProfile.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/deleteLogProfile.json @@ -1,13 +1,13 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "logProfileName": "Rac46PostSwapRG", - "api-version": "2016-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": null - } + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "logProfileName": "Rac46PostSwapRG", + "api-version": "2016-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getAlertRule.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getAlertRule.json index 16f5a1e5e0c8..f8b0c0165a9d 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getAlertRule.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getAlertRule.json @@ -1,41 +1,42 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName": "Rac46PostSwapRG", - "ruleName": "chiricutin", - "api-version": "2016-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin", - "name":"chiricutin", - "type":"Microsoft.Insights/alertRules", - "location":"West US", - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage","hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest":"Resource" - }, - "properties": { - "name":"chiricutin", - "description":"Pura Vida", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":3.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-23T21:23:52.0221265Z", - "actions":[] - } - } + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "Rac46PostSwapRG", + "ruleName": "chiricutin", + "api-version": "2016-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin", + "name": "chiricutin", + "type": "Microsoft.Insights/alertRules", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage", + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" + }, + "properties": { + "name": "chiricutin", + "description": "Pura Vida", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 3.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-23T21:23:52.0221265Z", + "actions": [] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getAlertRuleIncident.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getAlertRuleIncident.json index 5893da737f48..c09724c5d089 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getAlertRuleIncident.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getAlertRuleIncident.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName": "Rac46PostSwapRG", + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "Rac46PostSwapRG", + "ruleName": "myRuleName", + "incidentName": "Website_started", + "api-version": "2016-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "name": "Website_started", "ruleName": "myRuleName", - "incidentName": "Website_started", - "api-version": "2016-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "name": "Website_started", - "ruleName": "myRuleName", - "isActive": true, - "activatedTime": "2017-09-13T15:45:26.9792776Z", - "resolvedTime": "2017-09-13T22:14:28.9792776Z" - } - } + "isActive": true, + "activatedTime": "2017-09-13T15:45:26.9792776Z", + "resolvedTime": "2017-09-13T22:14:28.9792776Z" + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getLogProfile.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getLogProfile.json index 8449a7b74678..739e5dea636f 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getLogProfile.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/getLogProfile.json @@ -1,35 +1,35 @@ { - "parameters": { - "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192", - "logProfileName": "default", - "api-version": "2016-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/microsoft.insights/logprofiles/default", - "type":"", - "name":"default", - "location":"", - "tags":null, - "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", - "serviceBusRuleId":"", - "locations": [ - "global" - ], - "categories": [ - "Delete", - "Write", - "Action" - ], - "retentionPolicy": { - "enabled":true, - "days":3 - } - } - } + "parameters": { + "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192", + "logProfileName": "default", + "api-version": "2016-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/microsoft.insights/logprofiles/default", + "type": "", + "name": "default", + "location": "", + "tags": null, + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", + "serviceBusRuleId": "", + "locations": [ + "global" + ], + "categories": [ + "Delete", + "Write", + "Action" + ], + "retentionPolicy": { + "enabled": true, + "days": 3 + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRule.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRule.json index fd6521f57989..fb531977b2a5 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRule.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRule.json @@ -1,81 +1,83 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName": "Rac46PostSwapRG", - "api-version": "2016-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/myRuleName", - "name":"myRuleName", - "type":"Microsoft.Insights/alertRules", - "location":"West US", - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage","hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest":"Resource" - }, - "properties": { - "name":"myRuleName", - "description":"Pura Vida", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":2.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-10T21:04:39.0005255Z", - "actions": [ - { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleEmailAction", - "sendToServiceOwners":true, - "customEmails": [ - "gu@ms.com", - "su@ms.net" - ] - } - ] - } - }, - { - "id":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin0", - "name":"chiricutin0", - "type":"Microsoft.Insights/alertRules", - "location":"West US", - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage","hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest":"Resource" - }, - "properties": { - "name":"chiricutin0", - "description":"Pura Vida 0", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":2.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-10T21:04:39.1082596Z", - "actions":[] - } - } - ] + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "Rac46PostSwapRG", + "api-version": "2016-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/myRuleName", + "name": "myRuleName", + "type": "Microsoft.Insights/alertRules", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage", + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" + }, + "properties": { + "name": "myRuleName", + "description": "Pura Vida", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 2.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-10T21:04:39.0005255Z", + "actions": [ + { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleEmailAction", + "sendToServiceOwners": true, + "customEmails": [ + "gu@ms.com", + "su@ms.net" + ] + } + ] } - } + }, + { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin0", + "name": "chiricutin0", + "type": "Microsoft.Insights/alertRules", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage", + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" + }, + "properties": { + "name": "chiricutin0", + "description": "Pura Vida 0", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 2.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-10T21:04:39.1082596Z", + "actions": [] + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRuleBySubscription.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRuleBySubscription.json index bd048421d8cc..78b6e018656a 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRuleBySubscription.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRuleBySubscription.json @@ -1,80 +1,82 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "api-version": "2016-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/myRuleName", - "name":"myRuleName", - "type":"Microsoft.Insights/alertRules", - "location":"West US", - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage","hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest":"Resource" - }, - "properties": { - "name":"myRuleName", - "description":"Pura Vida", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":2.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-10T21:04:39.0005255Z", - "actions": [ - { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleEmailAction", - "sendToServiceOwners":true, - "customEmails": [ - "gu@ms.com", - "su@ms.net" - ] - } - ] - } - }, - { - "id":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin0", - "name":"chiricutin0", - "type":"Microsoft.Insights/alertRules", - "location":"West US", - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage","hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest":"Resource" - }, - "properties": { - "name":"chiricutin0", - "description":"Pura Vida 0", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":2.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-10T21:04:39.1082596Z", - "actions":[] - } - } - ] + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "api-version": "2016-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/myRuleName", + "name": "myRuleName", + "type": "Microsoft.Insights/alertRules", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage", + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" + }, + "properties": { + "name": "myRuleName", + "description": "Pura Vida", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 2.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-10T21:04:39.0005255Z", + "actions": [ + { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleEmailAction", + "sendToServiceOwners": true, + "customEmails": [ + "gu@ms.com", + "su@ms.net" + ] + } + ] } - } + }, + { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin0", + "name": "chiricutin0", + "type": "Microsoft.Insights/alertRules", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage", + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" + }, + "properties": { + "name": "chiricutin0", + "description": "Pura Vida 0", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 2.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-10T21:04:39.1082596Z", + "actions": [] + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRuleIncidents.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRuleIncidents.json index ccd54a57d356..bdf0f5aaee03 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRuleIncidents.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listAlertRuleIncidents.json @@ -1,24 +1,24 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName": "Rac46PostSwapRG", - "ruleName": "myRuleName", - "api-version": "2016-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "name": "Website_started", - "ruleName": "myRuleName", - "isActive": true, - "activatedTime": "2017-09-13T15:45:26.9792776Z", - "resolvedTime": "2017-09-13T22:14:28.9792776Z" - } - ] - } - } + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "Rac46PostSwapRG", + "ruleName": "myRuleName", + "api-version": "2016-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "name": "Website_started", + "ruleName": "myRuleName", + "isActive": true, + "activatedTime": "2017-09-13T15:45:26.9792776Z", + "resolvedTime": "2017-09-13T22:14:28.9792776Z" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listLogProfile.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listLogProfile.json index e4c59ca65269..3b6886398973 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listLogProfile.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/listLogProfile.json @@ -1,61 +1,61 @@ { - "parameters": { - "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192", - "api-version": "2016-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/microsoft.insights/logprofiles/default", - "type":"", - "name":"default", - "location":"", - "tags":null, - "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", - "serviceBusRuleId":"", - "locations": [ - "global" - ], - "categories": [ - "Delete", - "Write", - "Action" - ], - "retentionPolicy": { - "enabled":true, - "days":3 - } - } - }, - { - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/microsoft.insights/logprofiles/default2", - "type":"", - "name":"default2", - "location":"", - "tags":null, - "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8165", - "serviceBusRuleId":"", - "locations": [ - "global" - ], - "categories": [ - "Delete", - "Write", - "Action" - ], - "retentionPolicy": { - "enabled":true, - "days":15 - } - } - } - ] + "parameters": { + "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192", + "api-version": "2016-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/microsoft.insights/logprofiles/default", + "type": "", + "name": "default", + "location": "", + "tags": null, + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", + "serviceBusRuleId": "", + "locations": [ + "global" + ], + "categories": [ + "Delete", + "Write", + "Action" + ], + "retentionPolicy": { + "enabled": true, + "days": 3 + } } - } + }, + { + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/microsoft.insights/logprofiles/default2", + "type": "", + "name": "default2", + "location": "", + "tags": null, + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8165", + "serviceBusRuleId": "", + "locations": [ + "global" + ], + "categories": [ + "Delete", + "Write", + "Action" + ], + "retentionPolicy": { + "enabled": true, + "days": 15 + } + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/patchAlertRule.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/patchAlertRule.json index 91122db11b8f..df5d714900ba 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/patchAlertRule.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/patchAlertRule.json @@ -1,96 +1,96 @@ { - "parameters": { - "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", - "resourceGroupName": "Rac46PostSwapRG", - "ruleName": "chiricutin", - "api-version": "2016-03-01", - "alertRulesResource": { - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary" - }, - "properties": { - "name":"chiricutin", - "description":"Pura Vida", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":3.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-23T21:23:52.0221265Z", - "actions":[] - } + "parameters": { + "subscriptionId": "b67f7fec-69fc-4974-9099-a26bd6ffeda3", + "resourceGroupName": "Rac46PostSwapRG", + "ruleName": "chiricutin", + "api-version": "2016-03-01", + "alertRulesResource": { + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary" + }, + "properties": { + "name": "chiricutin", + "description": "Pura Vida", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 3.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-23T21:23:52.0221265Z", + "actions": [] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin", + "name": "chiricutin", + "type": "Microsoft.Insights/alertRules", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary" + }, + "properties": { + "name": "chiricutin", + "description": "Pura Vida", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 3.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-23T21:23:52.0221265Z", + "actions": [] } + } }, - "responses": { - "200": { - "headers": { }, - "body": { - "id":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin", - "name":"chiricutin", - "type":"Microsoft.Insights/alertRules", - "location":"West US", - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary" - }, - "properties": { - "name":"chiricutin", - "description":"Pura Vida", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":3.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-23T21:23:52.0221265Z", - "actions":[] - } - } + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin", + "name": "chiricutin", + "type": "Microsoft.Insights/alertRules", + "location": "West US", + "tags": { + "$type": "Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary" }, - "201": { - "headers": { }, - "body": { - "id":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/alertrules/chiricutin", - "name":"chiricutin", - "type":"Microsoft.Insights/alertRules", - "location":"West US", - "tags": { - "$type":"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary" - }, - "properties": { - "name":"chiricutin", - "description":"Pura Vida", - "isEnabled":true, - "condition": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", - "dataSource": { - "odata.type":"Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", - "resourceUri":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", - "metricName":"Requests" - }, - "operator":"GreaterThan", - "threshold":3.0, - "windowSize":"PT5M", - "timeAggregation":"Total" - }, - "lastUpdatedTime":"2016-11-23T21:23:52.0221265Z", - "actions":[] - } - } + "properties": { + "name": "chiricutin", + "description": "Pura Vida", + "isEnabled": true, + "condition": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition", + "dataSource": { + "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource", + "resourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest", + "metricName": "Requests" + }, + "operator": "GreaterThan", + "threshold": 3.0, + "windowSize": "PT5M", + "timeAggregation": "Total" + }, + "lastUpdatedTime": "2016-11-23T21:23:52.0221265Z", + "actions": [] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/patchLogProfile.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/patchLogProfile.json index 4e4a0a199d8c..6fc9bbb17e11 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/patchLogProfile.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/examples/patchLogProfile.json @@ -1,52 +1,58 @@ { - "parameters": { - "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192", - "logProfileName": "Rac46PostSwapRG", - "api-version": "2016-03-01", - "logProfilesResource": { - "tags": { - "key1": "value1" - }, - "properties": { - "locations": [ "global" ], - "categories": [ "Write", "Delete", "Action" ], - "retentionPolicy": { - "enabled": true, - "days": 3 - }, - "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", - "serviceBusRuleId": "" - } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/microsoft.insights/logprofiles/default", - "type":"", - "name":"default", - "location":"", - "tags": { - "key1": "value1" - }, - "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", - "serviceBusRuleId":"", - "locations":[ - "global" - ], - "categories": [ - "Delete", - "Write", - "Action" - ], - "retentionPolicy": { - "enabled":true, - "days":3 - } - } - } + "parameters": { + "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192", + "logProfileName": "Rac46PostSwapRG", + "api-version": "2016-03-01", + "logProfilesResource": { + "tags": { + "key1": "value1" + }, + "properties": { + "locations": [ + "global" + ], + "categories": [ + "Write", + "Delete", + "Action" + ], + "retentionPolicy": { + "enabled": true, + "days": 3 + }, + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", + "serviceBusRuleId": "" + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/microsoft.insights/logprofiles/default", + "type": "", + "name": "default", + "location": "", + "tags": { + "key1": "value1" + }, + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/JohnKemTest/providers/Microsoft.Storage/storageAccounts/johnkemtest8162", + "serviceBusRuleId": "", + "locations": [ + "global" + ], + "categories": [ + "Delete", + "Write", + "Action" + ], + "retentionPolicy": { + "enabled": true, + "days": 3 + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/logProfiles_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/logProfiles_API.json index b7a79b53ef2c..73c5d169e3d8 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/logProfiles_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/logProfiles_API.json @@ -60,7 +60,9 @@ } }, "x-ms-examples": { - "Delete log profile": { "$ref": "./examples/deleteLogProfile.json" } + "Delete log profile": { + "$ref": "./examples/deleteLogProfile.json" + } } }, "get": { @@ -95,7 +97,9 @@ } }, "x-ms-examples": { - "Get log profile": { "$ref": "./examples/getLogProfile.json" } + "Get log profile": { + "$ref": "./examples/getLogProfile.json" + } } }, "put": { @@ -133,49 +137,53 @@ } }, "x-ms-examples": { - "Create or update a log profile": { "$ref": "./examples/createOrUpdateLogProfile.json" } + "Create or update a log profile": { + "$ref": "./examples/createOrUpdateLogProfile.json" + } } }, "patch": { - "description": "Updates an existing LogProfilesResource. To update other fields use the CreateOrUpdate method.", - "operationId": "LogProfiles_Update", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/LogProfileNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "logProfilesResource", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LogProfileResourcePatch" - }, - "description": "Parameters supplied to the operation." - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "An existing log profile was successfully updated.", - "schema": { - "$ref": "#/definitions/LogProfileResource" - } - } + "description": "Updates an existing LogProfilesResource. To update other fields use the CreateOrUpdate method.", + "operationId": "LogProfiles_Update", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/LogProfileNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "logProfilesResource", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LogProfileResourcePatch" + }, + "description": "Parameters supplied to the operation." + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } }, - "x-ms-examples": { - "Patch a log profile": { "$ref": "./examples/patchLogProfile.json" } + "200": { + "description": "An existing log profile was successfully updated.", + "schema": { + "$ref": "#/definitions/LogProfileResource" + } } + }, + "x-ms-examples": { + "Patch a log profile": { + "$ref": "./examples/patchLogProfile.json" + } + } } }, "/subscriptions/{subscriptionId}/providers/microsoft.insights/logprofiles": { @@ -205,7 +213,9 @@ "nextLinkName": null }, "x-ms-examples": { - "List log profiles": { "$ref": "./examples/listLogProfile.json" } + "List log profiles": { + "$ref": "./examples/listLogProfile.json" + } } } } @@ -232,8 +242,8 @@ "type": "string", "description": "Resource location", "x-ms-mutability": [ - "create", - "read" + "create", + "read" ] }, "tags": { @@ -262,11 +272,18 @@ "description": "the number of days for the retention in days. A value of 0 will retain the events indefinitely." } }, - "required": [ "enabled", "days" ], + "required": [ + "enabled", + "days" + ], "description": "Specifies the retention policy for the log." }, "LogProfileProperties": { - "required": [ "locations", "categories", "retentionPolicy" ], + "required": [ + "locations", + "categories", + "retentionPolicy" + ], "properties": { "storageAccountId": { "type": "string", @@ -305,23 +322,25 @@ } ], "properties": { - "properties": { + "properties": { "x-ms-client-flatten": true, "$ref": "#/definitions/LogProfileProperties", "description": "The log profile properties of the resource." } }, - "required": ["properties"], + "required": [ + "properties" + ], "description": "The log profile resource." }, "LogProfileResourcePatch": { "description": "The log profile resource for patch operations.", "properties": { "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" }, "properties": { "x-ms-client-flatten": true, @@ -340,7 +359,9 @@ "description": "the values of the log profiles." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents a collection of log profiles." }, "ErrorResponse": { diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/metricDefinitions_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/metricDefinitions_API.json index 035cc95f53e4..fcfaf112add0 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/metricDefinitions_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-03-01/metricDefinitions_API.json @@ -69,66 +69,66 @@ }, "examples": { "application/json": { - "value":[ + "value": [ { - "resourceId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "resourceId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", "name": { - "value":"RunsStarted", - "localizedValue":"Runs Started" + "value": "RunsStarted", + "localizedValue": "Runs Started" }, - "unit":"Count", - "primaryAggregationType":"Total", - "metricAvailabilities":[ + "unit": "Count", + "primaryAggregationType": "Total", + "metricAvailabilities": [ { - "timeGrain":"PT1M", - "retention":"P30D" + "timeGrain": "PT1M", + "retention": "P30D" }, { - "timeGrain":"PT1H", - "retention":"P30D" + "timeGrain": "PT1H", + "retention": "P30D" } ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsStarted" + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsStarted" }, { - "resourceId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "resourceId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", "name": { - "value":"RunsCompleted", - "localizedValue":"Runs Completed" + "value": "RunsCompleted", + "localizedValue": "Runs Completed" }, - "unit":"Count", - "primaryAggregationType":"Total", + "unit": "Count", + "primaryAggregationType": "Total", "metricAvailabilities": [ { - "timeGrain":"PT1M", - "retention":"P30D" + "timeGrain": "PT1M", + "retention": "P30D" }, { - "timeGrain":"PT1H", - "retention":"P30D" + "timeGrain": "PT1H", + "retention": "P30D" } ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsCompleted" + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsCompleted" }, { - "resourceId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "resourceId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", "name": { - "value":"RunsSucceeded", - "localizedValue":"Runs Succeeded" + "value": "RunsSucceeded", + "localizedValue": "Runs Succeeded" }, - "unit":"Count", - "primaryAggregationType":"Total", + "unit": "Count", + "primaryAggregationType": "Total", "metricAvailabilities": [ { - "timeGrain":"PT1M", - "retention":"P30D" + "timeGrain": "PT1M", + "retention": "P30D" }, { - "timeGrain":"PT1H", - "retention":"P30D" + "timeGrain": "PT1H", + "retention": "P30D" } ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsSucceeded" + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metricdefinitions/RunsSucceeded" } ] } @@ -140,15 +140,21 @@ }, "x-ms-odata": "#/definitions/MetricDefinition", "x-ms-examples": { - "Get Metric Definitions without filter": { "$ref": "./examples/GetMetricDefinitions.json" }, - "Get Metric Definitions with filter": { "$ref": "./examples/GetMetricDefinitionsFiltered.json" } + "Get Metric Definitions without filter": { + "$ref": "./examples/GetMetricDefinitions.json" + }, + "Get Metric Definitions with filter": { + "$ref": "./examples/GetMetricDefinitionsFiltered.json" + } } } } }, "definitions": { "LocalizableString": { - "required": [ "value" ], + "required": [ + "value" + ], "properties": { "value": { "type": "string", @@ -247,7 +253,9 @@ "description": "the values for the metric definitions." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents collection of metric definitions." }, "ErrorResponse": { diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/GetMetric.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/GetMetric.json index a1377c14f37b..fdc5de9cf6d7 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/GetMetric.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/GetMetric.json @@ -1,62 +1,62 @@ { - "parameters": { - "resourceUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", - "api-version": "2016-09-01", - "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "data": [ - { - "timeStamp":"2016-11-23T19:14:00Z", - "total":1.0 - }, - { - "timeStamp":"2016-11-23T19:15:00Z" - }, - { - "timeStamp":"2016-11-23T19:16:00Z" - }, - { - "timeStamp":"2016-11-23T19:17:00Z" - }, - { - "timeStamp":"2016-11-23T19:18:00Z" - }, - { - "timeStamp":"2016-11-23T19:19:00Z", - "total":1.0 - }, - { - "timeStamp":"2016-11-23T19:20:00Z" - }, - { - "timeStamp":"2016-11-23T19:21:00Z" - }, - { - "timeStamp":"2016-11-23T19:22:00Z" - }, - { - "timeStamp":"2016-11-23T19:23:00Z" - }, - { - "timeStamp":"2016-11-23T19:24:00Z", - "total":1.0 - } - ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metrics/RunsStarted", - "name": { - "value":"RunsStarted", - "localizedValue":"Runs Started" - }, - "type":"Microsoft.Insights/metrics", - "unit":"Count" - } - ] - } - } + "parameters": { + "resourceUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "api-version": "2016-09-01", + "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "data": [ + { + "timeStamp": "2016-11-23T19:14:00Z", + "total": 1.0 + }, + { + "timeStamp": "2016-11-23T19:15:00Z" + }, + { + "timeStamp": "2016-11-23T19:16:00Z" + }, + { + "timeStamp": "2016-11-23T19:17:00Z" + }, + { + "timeStamp": "2016-11-23T19:18:00Z" + }, + { + "timeStamp": "2016-11-23T19:19:00Z", + "total": 1.0 + }, + { + "timeStamp": "2016-11-23T19:20:00Z" + }, + { + "timeStamp": "2016-11-23T19:21:00Z" + }, + { + "timeStamp": "2016-11-23T19:22:00Z" + }, + { + "timeStamp": "2016-11-23T19:23:00Z" + }, + { + "timeStamp": "2016-11-23T19:24:00Z", + "total": 1.0 + } + ], + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metrics/RunsStarted", + "name": { + "value": "RunsStarted", + "localizedValue": "Runs Started" + }, + "type": "Microsoft.Insights/metrics", + "unit": "Count" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/GetMetricFiltered.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/GetMetricFiltered.json index bece918b2b16..df50abd401b4 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/GetMetricFiltered.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/GetMetricFiltered.json @@ -1,63 +1,63 @@ { - "parameters": { - "$filter": "(name.value eq 'RunsStarted') and aggregationType eq 'Total' and startTime eq 2016-11-23 and endTime eq 2016-11-24 and timeGrain eq duration'PT1M'", - "resourceUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", - "api-version": "2016-09-01", - "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "data": [ - { - "timeStamp":"2016-11-23T19:14:00Z", - "total":1.0 - }, - { - "timeStamp":"2016-11-23T19:15:00Z" - }, - { - "timeStamp":"2016-11-23T19:16:00Z" - }, - { - "timeStamp":"2016-11-23T19:17:00Z" - }, - { - "timeStamp":"2016-11-23T19:18:00Z" - }, - { - "timeStamp":"2016-11-23T19:19:00Z", - "total":1.0 - }, - { - "timeStamp":"2016-11-23T19:20:00Z" - }, - { - "timeStamp":"2016-11-23T19:21:00Z" - }, - { - "timeStamp":"2016-11-23T19:22:00Z" - }, - { - "timeStamp":"2016-11-23T19:23:00Z" - }, - { - "timeStamp":"2016-11-23T19:24:00Z", - "total":1.0 - } - ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metrics/RunsStarted", - "name": { - "value":"RunsStarted", - "localizedValue":"Runs Started" - }, - "type":"Microsoft.Insights/metrics", - "unit":"Count" - } - ] - } - } + "parameters": { + "$filter": "(name.value eq 'RunsStarted') and aggregationType eq 'Total' and startTime eq 2016-11-23 and endTime eq 2016-11-24 and timeGrain eq duration'PT1M'", + "resourceUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia", + "api-version": "2016-09-01", + "subscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "data": [ + { + "timeStamp": "2016-11-23T19:14:00Z", + "total": 1.0 + }, + { + "timeStamp": "2016-11-23T19:15:00Z" + }, + { + "timeStamp": "2016-11-23T19:16:00Z" + }, + { + "timeStamp": "2016-11-23T19:17:00Z" + }, + { + "timeStamp": "2016-11-23T19:18:00Z" + }, + { + "timeStamp": "2016-11-23T19:19:00Z", + "total": 1.0 + }, + { + "timeStamp": "2016-11-23T19:20:00Z" + }, + { + "timeStamp": "2016-11-23T19:21:00Z" + }, + { + "timeStamp": "2016-11-23T19:22:00Z" + }, + { + "timeStamp": "2016-11-23T19:23:00Z" + }, + { + "timeStamp": "2016-11-23T19:24:00Z", + "total": 1.0 + } + ], + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metrics/RunsStarted", + "name": { + "value": "RunsStarted", + "localizedValue": "Runs Started" + }, + "type": "Microsoft.Insights/metrics", + "unit": "Count" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/createOrUpdateServiceDiagnosticSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/createOrUpdateServiceDiagnosticSetting.json index 2257369319d9..b384e6adb9de 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/createOrUpdateServiceDiagnosticSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/createOrUpdateServiceDiagnosticSetting.json @@ -1,73 +1,73 @@ { + "parameters": { + "resourceUri": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", + "api-version": "2016-09-01", "parameters": { - "resourceUri": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", - "api-version": "2016-09-01", - "parameters": { - "location": "", - "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "serviceBusRuleId":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", - "workspaceId":"", - "eventHubAuthorizationRuleId":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", - "metrics": [ - { - "timeGrain":"PT1M", - "enabled":true, - "retentionPolicy": { - "enabled":false, - "days":0 - } - } - ], - "logs": [ - { - "category":"WorkflowRuntime", - "enabled":true, - "retentionPolicy": { - "enabled":false, - "days":0 - } - } - ] + "location": "", + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "serviceBusRuleId": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "metrics": [ + { + "timeGrain": "PT1M", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 0 } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", - "type":"", - "name":"service", - "location":"", - "tags":null, - "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "serviceBusRuleId":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", - "workspaceId":"", - "eventHubAuthorizationRuleId":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", - "metrics": [ - { - "timeGrain":"PT1M", - "enabled":true, - "retentionPolicy": { - "enabled":false, - "days":0 - } - } - ], - "logs": [ - { - "category":"WorkflowRuntime", - "enabled":true, - "retentionPolicy": { - "enabled":false, - "days":0 - } - } - ] - } + } + ], + "logs": [ + { + "category": "WorkflowRuntime", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 0 + } + } + ] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", + "type": "", + "name": "service", + "location": "", + "tags": null, + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "serviceBusRuleId": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "metrics": [ + { + "timeGrain": "PT1M", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 0 } + } + ], + "logs": [ + { + "category": "WorkflowRuntime", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 0 + } + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/getServiceDiagnosticSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/getServiceDiagnosticSetting.json index 323f6938d9bd..a05370758b19 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/getServiceDiagnosticSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/getServiceDiagnosticSetting.json @@ -1,37 +1,39 @@ { - "parameters" : { - "resourceUri" : "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", - "api-version" : "2016-09-01" + "parameters": { + "resourceUri": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", + "api-version": "2016-09-01" }, - "responses" : { - "200" : { - "headers" : {}, - "body" : { - "id" : "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", - "type" : "", - "name" : "service", - "location" : "", - "tags" : null, - "properties" : { - "storageAccountId" : "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "serviceBusRuleId" : "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", - "workspaceId" : "", - "eventHubAuthorizationRuleId" : "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", - "metrics" : [{ - "timeGrain" : "PT1M", - "enabled" : true, - "retentionPolicy" : { - "enabled" : false, - "days" : 0 + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", + "type": "", + "name": "service", + "location": "", + "tags": null, + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "serviceBusRuleId": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "metrics": [ + { + "timeGrain": "PT1M", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 0 } } ], - "logs" : [{ - "category" : "WorkflowRuntime", - "enabled" : true, - "retentionPolicy" : { - "enabled" : false, - "days" : 0 + "logs": [ + { + "category": "WorkflowRuntime", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 0 } } ] @@ -39,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/updateServiceDiagnosticSetting.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/updateServiceDiagnosticSetting.json index da047720e4ff..7d0bb0639f60 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/updateServiceDiagnosticSetting.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/examples/updateServiceDiagnosticSetting.json @@ -1,73 +1,73 @@ { + "parameters": { + "resourceUri": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", + "api-version": "2016-09-01", "parameters": { - "resourceUri": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6", - "api-version": "2016-09-01", - "parameters": { - "tags": null, - "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "serviceBusRuleId":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", - "workspaceId":"", - "eventHubAuthorizationRuleId":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", - "metrics": [ - { - "timeGrain":"PT1M", - "enabled":true, - "retentionPolicy": { - "enabled":false, - "days":3 - } - } - ], - "logs": [ - { - "category":"WorkflowRuntime", - "enabled":true, - "retentionPolicy": { - "enabled":false, - "days":5 - } - } - ] + "tags": null, + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "serviceBusRuleId": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "metrics": [ + { + "timeGrain": "PT1M", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 3 } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", - "type":"", - "name":"service", - "location":"", - "tags":null, - "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "serviceBusRuleId":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", - "workspaceId":"", - "eventHubAuthorizationRuleId":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", - "metrics": [ - { - "timeGrain":"PT1M", - "enabled":true, - "retentionPolicy": { - "enabled":false, - "days":3 - } - } - ], - "logs": [ - { - "category":"WorkflowRuntime", - "enabled":true, - "retentionPolicy": { - "enabled":false, - "days":5 - } - } - ] - } + } + ], + "logs": [ + { + "category": "WorkflowRuntime", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 5 + } + } + ] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", + "type": "", + "name": "service", + "location": "", + "tags": null, + "properties": { + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "serviceBusRuleId": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/eventhubs/myeventhub/authorizationrules/myrule", + "metrics": [ + { + "timeGrain": "PT1M", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 3 } + } + ], + "logs": [ + { + "category": "WorkflowRuntime", + "enabled": true, + "retentionPolicy": { + "enabled": false, + "days": 5 + } + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/metrics_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/metrics_API.json index 061139f29e94..4191c1dd8b46 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/metrics_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/metrics_API.json @@ -73,49 +73,49 @@ { "data": [ { - "timeStamp":"2016-11-23T19:14:00Z", - "total":1.0 + "timeStamp": "2016-11-23T19:14:00Z", + "total": 1.0 }, { - "timeStamp":"2016-11-23T19:15:00Z" + "timeStamp": "2016-11-23T19:15:00Z" }, { - "timeStamp":"2016-11-23T19:16:00Z" + "timeStamp": "2016-11-23T19:16:00Z" }, { - "timeStamp":"2016-11-23T19:17:00Z" + "timeStamp": "2016-11-23T19:17:00Z" }, { - "timeStamp":"2016-11-23T19:18:00Z" + "timeStamp": "2016-11-23T19:18:00Z" }, { - "timeStamp":"2016-11-23T19:19:00Z", - "total":1.0 + "timeStamp": "2016-11-23T19:19:00Z", + "total": 1.0 }, { - "timeStamp":"2016-11-23T19:20:00Z" + "timeStamp": "2016-11-23T19:20:00Z" }, { - "timeStamp":"2016-11-23T19:21:00Z" + "timeStamp": "2016-11-23T19:21:00Z" }, { - "timeStamp":"2016-11-23T19:22:00Z" + "timeStamp": "2016-11-23T19:22:00Z" }, { - "timeStamp":"2016-11-23T19:23:00Z" + "timeStamp": "2016-11-23T19:23:00Z" }, { - "timeStamp":"2016-11-23T19:24:00Z", - "total":1.0 + "timeStamp": "2016-11-23T19:24:00Z", + "total": 1.0 } ], - "id":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metrics/RunsStarted", + "id": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/andy0802australia/providers/Microsoft.Logic/workflows/andy0803australia/providers/microsoft.insights/metrics/RunsStarted", "name": { - "value":"RunsStarted", - "localizedValue":"Runs Started" + "value": "RunsStarted", + "localizedValue": "Runs Started" }, - "type":"Microsoft.Insights/metrics", - "unit":"Count" + "type": "Microsoft.Insights/metrics", + "unit": "Count" } ] } @@ -127,15 +127,21 @@ }, "x-ms-odata": "#/definitions/Metric", "x-ms-examples": { - "Get Metric without filter": { "$ref": "./examples/GetMetric.json" }, - "Get Metric with filter": { "$ref": "./examples/GetMetricFiltered.json" } + "Get Metric without filter": { + "$ref": "./examples/GetMetric.json" + }, + "Get Metric with filter": { + "$ref": "./examples/GetMetricFiltered.json" + } } } } }, "definitions": { "LocalizableString": { - "required": [ "value" ], + "required": [ + "value" + ], "properties": { "value": { "type": "string", @@ -166,7 +172,9 @@ } }, "MetricValue": { - "required": [ "timeStamp" ], + "required": [ + "timeStamp" + ], "properties": { "timeStamp": { "type": "string", @@ -202,7 +210,11 @@ "description": "Represents a metric value." }, "Metric": { - "required": [ "name", "unit", "data" ], + "required": [ + "name", + "unit", + "data" + ], "properties": { "id": { "type": "string", @@ -240,7 +252,9 @@ "description": "the value of the collection." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "The collection of metric value sets." }, "ErrorResponse": { diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/serviceDiagnosticsSettings_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/serviceDiagnosticsSettings_API.json index 4918d221fd0f..bc1396b369c2 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/serviceDiagnosticsSettings_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2016-09-01/serviceDiagnosticsSettings_API.json @@ -62,32 +62,32 @@ }, "examples": { "application/json": { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", - "type":"", - "name":"service", - "location":"", - "tags":null, + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", + "type": "", + "name": "service", + "location": "", + "tags": null, "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "serviceBusRuleId":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", - "workspaceId":"", + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "serviceBusRuleId": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", + "workspaceId": "", "metrics": [ { - "timeGrain":"PT1M", - "enabled":true, + "timeGrain": "PT1M", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ], "logs": [ { - "category":"WorkflowRuntime", - "enabled":true, + "category": "WorkflowRuntime", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ] @@ -97,7 +97,9 @@ } }, "x-ms-examples": { - "Get service diagnostic setting": { "$ref": "./examples/getServiceDiagnosticSetting.json" } + "Get service diagnostic setting": { + "$ref": "./examples/getServiceDiagnosticSetting.json" + } } }, "put": { @@ -131,33 +133,33 @@ }, "examples": { "application/json": { - "id":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", - "type":"", - "name":"service", - "location":"", - "tags":null, + "id": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourcegroups/viruela1/providers/microsoft.logic/workflows/viruela6/diagnosticSettings/service", + "type": "", + "name": "service", + "location": "", + "tags": null, "properties": { - "storageAccountId":"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", - "serviceBusRuleId":"/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", - "workspaceId":"", - "eventHubAuthorizationRuleId":"/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/authorizationrules/myrule", + "storageAccountId": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/apptest/providers/Microsoft.Storage/storageAccounts/appteststorage1", + "serviceBusRuleId": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/andy1101/providers/Microsoft.EventHub/namespaces/andy1101/authorizationrules/RootManageSharedAccessKey", + "workspaceId": "", + "eventHubAuthorizationRuleId": "/subscriptions/1a66ce04-b633-4a0b-b2bc-a912ec8986a6/resourceGroups/montest/providers/microsoft.eventhub/namespaces/mynamespace/authorizationrules/myrule", "metrics": [ { - "timeGrain":"PT1M", - "enabled":true, + "timeGrain": "PT1M", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ], "logs": [ { - "category":"WorkflowRuntime", - "enabled":true, + "category": "WorkflowRuntime", + "enabled": true, "retentionPolicy": { - "enabled":false, - "days":0 + "enabled": false, + "days": 0 } } ] @@ -167,45 +169,49 @@ } }, "x-ms-examples": { - "Create or update a service diagnostic setting": { "$ref": "./examples/createOrUpdateServiceDiagnosticSetting.json" } + "Create or update a service diagnostic setting": { + "$ref": "./examples/createOrUpdateServiceDiagnosticSetting.json" + } } }, "patch": { "description": "Updates an existing ServiceDiagnosticSettingsResource. To update other fields use the CreateOrUpdate method. **WARNING**: This method will be deprecated in future releases.", "operationId": "ServiceDiagnosticSettings_Update", "parameters": [ - { - "$ref": "#/parameters/ResourceUriParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" + { + "$ref": "#/parameters/ResourceUriParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "serviceDiagnosticSettingsResource", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ServiceDiagnosticSettingsResourcePatch" }, - { - "name": "serviceDiagnosticSettingsResource", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ServiceDiagnosticSettingsResourcePatch" - }, - "description": "Parameters supplied to the operation." - } + "description": "Parameters supplied to the operation." + } ], "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "An existing service diagnostics setting resource was successfully updated.", - "schema": { - "$ref": "#/definitions/ServiceDiagnosticSettingsResource" - } + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + }, + "200": { + "description": "An existing service diagnostics setting resource was successfully updated.", + "schema": { + "$ref": "#/definitions/ServiceDiagnosticSettingsResource" } + } }, "x-ms-examples": { - "Update a service diagnostic setting": { "$ref": "./examples/updateServiceDiagnosticSetting.json" } + "Update a service diagnostic setting": { + "$ref": "./examples/updateServiceDiagnosticSetting.json" + } } } } @@ -232,8 +238,8 @@ "type": "string", "description": "Resource location", "x-ms-mutability": [ - "create", - "read" + "create", + "read" ] }, "tags": { @@ -262,7 +268,10 @@ "description": "the number of days for the retention in days. A value of 0 will retain the events indefinitely." } }, - "required": [ "enabled", "days" ], + "required": [ + "enabled", + "days" + ], "description": "Specifies the retention policy for the log." }, "MetricSettings": { @@ -281,7 +290,10 @@ "description": "the retention policy for this timegrain." } }, - "required": [ "enabled", "timeGrain" ], + "required": [ + "enabled", + "timeGrain" + ], "description": "Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular metric." }, "LogSettings": { @@ -299,7 +311,9 @@ "description": "the retention policy for this log." } }, - "required": [ "enabled" ], + "required": [ + "enabled" + ], "description": "Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular log." }, "ServiceDiagnosticSettings": { @@ -357,10 +371,10 @@ "description": "Service diagnostic setting resource for patch operations", "properties": { "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" }, "properties": { "x-ms-client-flatten": true, diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/actionGroups_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/actionGroups_API.json index b3d90206d892..c2f3163a2c36 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/actionGroups_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/actionGroups_API.json @@ -1,716 +1,716 @@ { - "swagger": "2.0", - "info": { - "title": "Azure Action Groups API", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2017-04-01" + "swagger": "2.0", + "info": { + "title": "Azure Action Groups API", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "version": "2017-04-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}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}": { + "put": { + "description": "Create a new action group or update an existing one.", + "operationId": "ActionGroups_CreateOrUpdate", + "x-ms-examples": { + "Create or update an action group": { + "$ref": "./examples/createOrUpdateActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "name": "actionGroup", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActionGroupResource" + }, + "description": "The action group to create or use for the update." + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "An existing action group was successfully updated.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "201": { + "description": "A new action group was successfully created.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "default": { + "description": "An error occurred and the action group could not be created or updated.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } - ], - "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" + }, + "get": { + "description": "Get an action group.", + "operationId": "ActionGroups_Get", + "x-ms-examples": { + "Get an action group": { + "$ref": "./examples/getActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "default": { + "description": "An error occurred and the action group could not be retrieved. 404: The action group does not exist.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } } - }, - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}": { - "put": { - "description": "Create a new action group or update an existing one.", - "operationId": "ActionGroups_CreateOrUpdate", - "x-ms-examples": { - "Create or update an action group": { - "$ref": "./examples/createOrUpdateActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "name": "actionGroup", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActionGroupResource" - }, - "description": "The action group to create or use for the update." - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "An existing action group was successfully updated.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "201": { - "description": "A new action group was successfully created.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "default": { - "description": "An error occurred and the action group could not be created or updated.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "get": { - "description": "Get an action group.", - "operationId": "ActionGroups_Get", - "x-ms-examples": { - "Get an action group": { - "$ref": "./examples/getActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "default": { - "description": "An error occurred and the action group could not be retrieved. 404: The action group does not exist.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "description": "Delete an action group.", - "operationId": "ActionGroups_Delete", - "x-ms-examples": { - "Delete an action group": { - "$ref": "./examples/deleteActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The action group was successfully deleted." - }, - "204": { - "description": "The action group does not exist. It may have already been deleted." - }, - "default": { - "description": "An error occurred and the action group could not be deleted.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "delete": { + "description": "Delete an action group.", + "operationId": "ActionGroups_Delete", + "x-ms-examples": { + "Delete an action group": { + "$ref": "./examples/deleteActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The action group was successfully deleted." + }, + "204": { + "description": "The action group does not exist. It may have already been deleted." + }, + "default": { + "description": "An error occurred and the action group could not be deleted.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "description": "Updates an existing action group's tags. To update other fields use the CreateOrUpdate method.", + "operationId": "ActionGroups_Update", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "actionGroupPatch", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActionGroupPatchBody" }, - "patch": { - "description": "Updates an existing action group's tags. To update other fields use the CreateOrUpdate method.", - "operationId": "ActionGroups_Update", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "actionGroupPatch", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActionGroupPatchBody" - }, - "description": "Parameters supplied to the operation." - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "An existing action group was successfully updated.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - } - }, - "x-ms-examples": { - "Patch an action group": { - "$ref": "./examples/patchActionGroup.json" - } - } + "description": "Parameters supplied to the operation." + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } - }, - "/subscriptions/{subscriptionId}/providers/microsoft.insights/actionGroups": { - "get": { - "description": "Get a list of all action groups in a subscription.", - "operationId": "ActionGroups_ListBySubscriptionId", - "x-ms-examples": { - "List action groups": { - "$ref": "./examples/listActionGroups.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupList" - } - }, - "default": { - "description": "An error occurred and the list of action groups could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "200": { + "description": "An existing action group was successfully updated.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups": { - "get": { - "description": "Get a list of all action groups in a resource group.", - "operationId": "ActionGroups_ListByResourceGroup", - "x-ms-examples": { - "List action groups": { - "$ref": "./examples/listActionGroups.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupList" - } - }, - "default": { - "description": "An error occurred and the list of action groups could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - } + "x-ms-examples": { + "Patch an action group": { + "$ref": "./examples/patchActionGroup.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/microsoft.insights/actionGroups": { + "get": { + "description": "Get a list of all action groups in a subscription.", + "operationId": "ActionGroups_ListBySubscriptionId", + "x-ms-examples": { + "List action groups": { + "$ref": "./examples/listActionGroups.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}/subscribe": { - "post": { - "description": "Enable a receiver in an action group. This changes the receiver's status from Disabled to Enabled.", - "operationId": "ActionGroups_EnableReceiver", - "x-ms-examples": { - "Enable the receiver": { - "$ref": "./examples/enableReceiver.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "name": "enableRequest", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/EnableRequest" - }, - "description": "The receiver to re-enable." - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The receiver was successfully enabled." - }, - "409": { - "description": "The receiver is already enabled in the action group." - }, - "default": { - "description": "An error occurred and the receiver could not be enabled, e.g.: 404: The action group was not found or no matching receiver was found in the action group.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + "x-ms-pageable": { + "nextLinkName": null + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupList" + } + }, + "default": { + "description": "An error occurred and the list of action groups could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } } + } }, - "definitions": { - "Resource": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Azure resource Id" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Azure resource name" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Azure resource type" - }, - "location": { - "type": "string", - "description": "Resource location", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - } - }, - "required": [ - "location" - ], - "x-ms-azure-resource": true, - "description": "An azure resource object" - }, - "ActionGroupResource": { - "description": "An action group resource.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActionGroup", - "description": "The action groups properties of the resource." - } - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups": { + "get": { + "description": "Get a list of all action groups in a resource group.", + "operationId": "ActionGroups_ListByResourceGroup", + "x-ms-examples": { + "List action groups": { + "$ref": "./examples/listActionGroups.json" + } + }, + "x-ms-pageable": { + "nextLinkName": null }, - "ActionGroupList": { - "description": "A list of action groups.", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ActionGroupResource" - }, - "description": "The list of action groups." - }, - "nextLink": { - "type": "string", - "description": "Provides the link to retrieve the next set of elements." - } + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupList" } + }, + "default": { + "description": "An error occurred and the list of action groups could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}/subscribe": { + "post": { + "description": "Enable a receiver in an action group. This changes the receiver's status from Disabled to Enabled.", + "operationId": "ActionGroups_EnableReceiver", + "x-ms-examples": { + "Enable the receiver": { + "$ref": "./examples/enableReceiver.json" + } }, - "ActionGroup": { - "description": "An Azure action group.", - "properties": { - "groupShortName": { - "type": "string", - "maxLength": 12, - "description": "The short name of the action group. This will be used in SMS messages." - }, - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its receivers will receive communications." - }, - "emailReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/EmailReceiver" - }, - "description": "The list of email receivers that are part of this action group." - }, - "smsReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/SmsReceiver" - }, - "description": "The list of SMS receivers that are part of this action group." - }, - "webhookReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/WebhookReceiver" - }, - "description": "The list of webhook receivers that are part of this action group." - }, - "itsmReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/ItsmReceiver" - }, - "description": "The list of ITSM receivers that are part of this action group." - }, - "azureAppPushReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AzureAppPushReceiver" - }, - "description": "The list of AzureAppPush receivers that are part of this action group." - }, - "automationRunbookReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AutomationRunbookReceiver" - }, - "description": "The list of AutomationRunbook receivers that are part of this action group." - } - }, - "required": [ - "groupShortName", - "enabled" - ] - }, - "EmailReceiver": { - "description": "An email receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the email receiver. Names must be unique across all receivers within an action group." - }, - "emailAddress": { - "type": "string", - "description": "The email address of this receiver." - }, - "status": { - "readOnly": true, - "$ref": "#/definitions/ReceiverStatus", - "description": "The receiver status of the e-mail." - } - }, - "required": [ - "name", - "emailAddress" - ] - }, - "SmsReceiver": { - "description": "An SMS receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the SMS receiver. Names must be unique across all receivers within an action group." - }, - "countryCode": { - "type": "string", - "description": "The country code of the SMS receiver." - }, - "phoneNumber": { - "type": "string", - "description": "The phone number of the SMS receiver." - }, - "status": { - "readOnly": true, - "$ref": "#/definitions/ReceiverStatus", - "description": "The status of the receiver." - } - }, - "required": [ - "name", - "countryCode", - "phoneNumber" - ] - }, - "WebhookReceiver": { - "description": "A webhook receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the webhook receiver. Names must be unique across all receivers within an action group." - }, - "serviceUri": { - "type": "string", - "description": "The URI where webhooks should be sent." - } - }, - "required": [ - "name", - "serviceUri" - ] - }, - "ItsmReceiver": { - "description": "An Itsm receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the Itsm receiver. Names must be unique across all receivers within an action group." - }, - "workspaceId": { - "type": "string", - "description": "OMS LA instance identifier." - }, - "connectionId": { - "type": "string", - "description": "Unique identification of ITSM connection among multiple defined in above workspace." - }, - "ticketConfiguration": { - "type": "string", - "description": "JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well." - }, - "region": { - "type": "string", - "description": "Region in which workspace resides. Supported values:'centralindia','japaneast','southeastasia','australiasoutheast','uksouth','westcentralus','canadacentral','eastus','westeurope'" - } - }, - "required": [ - "name", - "workspaceId", - "connectionId", - "ticketConfiguration", - "region" - ] - }, - "AzureAppPushReceiver": { - "description": "The Azure mobile App push notification receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group." - }, - "emailAddress": { - "type": "string", - "description": "The email address registered for the Azure mobile app." - } - }, - "required": [ - "name", - "emailAddress" - ] - }, - "AutomationRunbookReceiver": { - "description": "The Azure Automation Runbook notification receiver.", - "properties": { - "automationAccountId": { - "type": "string", - "description": "The Azure automation account Id which holds this runbook and authenticate to Azure resource." - }, - "runbookName": { - "type": "string", - "description": "The name for this runbook." - }, - "webhookResourceId": { - "type": "string", - "description": "The resource id for webhook linked to this runbook." - }, - "isGlobalRunbook": { - "type": "boolean", - "description": "Indicates whether this instance is global runbook." - }, - "name": { - "type": "string", - "description": "Indicates name of the webhook." - }, - "serviceUri": { - "type": "string", - "description": "The URI where webhooks should be sent." - } - }, - "required": [ - "automationAccountId", - "runbookName", - "webhookResourceId", - "isGlobalRunbook" - ] - }, - "ReceiverStatus": { - "type": "string", - "enum": [ - "NotSpecified", - "Enabled", - "Disabled" - ], - "x-ms-enum": { - "name": "ReceiverStatus", - "modelAsString": false - }, - "description": "Indicates the status of the receiver. Receivers that are not Enabled will not receive any communications." - }, - "EnableRequest": { - "description": "Describes a receiver that should be resubscribed.", - "properties": { - "receiverName": { - "type": "string", - "description": "The name of the receiver to resubscribe." - } + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "name": "enableRequest", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/EnableRequest" }, - "required": [ - "receiverName" - ] - }, - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } + "description": "The receiver to re-enable." + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The receiver was successfully enabled." + }, + "409": { + "description": "The receiver is already enabled in the action group." + }, + "default": { + "description": "An error occurred and the receiver could not be enabled, e.g.: 404: The action group was not found or no matching receiver was found in the action group.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + } + }, + "definitions": { + "Resource": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Azure resource Id" }, - "ActionGroupPatchBody": { - "description": "An action group object for the body of patch operations.", - "properties": { - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActionGroupPatch", - "description": "The action group settings for an update operation." - } - } + "name": { + "type": "string", + "readOnly": true, + "description": "Azure resource name" }, - "ActionGroupPatch": { - "description": "An Azure action group for patch operations.", - "properties": { - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its actions will be activated." - } - } + "type": { + "type": "string", + "readOnly": true, + "description": "Azure resource type" + }, + "location": { + "type": "string", + "description": "Resource location", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true, + "description": "An azure resource object" }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "The Azure subscription Id." + "ActionGroupResource": { + "description": "An action group resource.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActionGroup", + "description": "The action groups properties of the resource." + } + } + }, + "ActionGroupList": { + "description": "A list of action groups.", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ActionGroupResource" + }, + "description": "The list of action groups." }, - "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group.", - "x-ms-parameter-location": "method" + "nextLink": { + "type": "string", + "description": "Provides the link to retrieve the next set of elements." + } + } + }, + "ActionGroup": { + "description": "An Azure action group.", + "properties": { + "groupShortName": { + "type": "string", + "maxLength": 12, + "description": "The short name of the action group. This will be used in SMS messages." }, - "ActionGroupNameParameter": { - "name": "actionGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the action group.", - "x-ms-parameter-location": "method" + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its receivers will receive communications." }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." + "emailReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/EmailReceiver" + }, + "description": "The list of email receivers that are part of this action group." + }, + "smsReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/SmsReceiver" + }, + "description": "The list of SMS receivers that are part of this action group." + }, + "webhookReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/WebhookReceiver" + }, + "description": "The list of webhook receivers that are part of this action group." + }, + "itsmReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/ItsmReceiver" + }, + "description": "The list of ITSM receivers that are part of this action group." + }, + "azureAppPushReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AzureAppPushReceiver" + }, + "description": "The list of AzureAppPush receivers that are part of this action group." + }, + "automationRunbookReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AutomationRunbookReceiver" + }, + "description": "The list of AutomationRunbook receivers that are part of this action group." + } + }, + "required": [ + "groupShortName", + "enabled" + ] + }, + "EmailReceiver": { + "description": "An email receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the email receiver. Names must be unique across all receivers within an action group." + }, + "emailAddress": { + "type": "string", + "description": "The email address of this receiver." + }, + "status": { + "readOnly": true, + "$ref": "#/definitions/ReceiverStatus", + "description": "The receiver status of the e-mail." + } + }, + "required": [ + "name", + "emailAddress" + ] + }, + "SmsReceiver": { + "description": "An SMS receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the SMS receiver. Names must be unique across all receivers within an action group." + }, + "countryCode": { + "type": "string", + "description": "The country code of the SMS receiver." + }, + "phoneNumber": { + "type": "string", + "description": "The phone number of the SMS receiver." + }, + "status": { + "readOnly": true, + "$ref": "#/definitions/ReceiverStatus", + "description": "The status of the receiver." + } + }, + "required": [ + "name", + "countryCode", + "phoneNumber" + ] + }, + "WebhookReceiver": { + "description": "A webhook receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the webhook receiver. Names must be unique across all receivers within an action group." + }, + "serviceUri": { + "type": "string", + "description": "The URI where webhooks should be sent." + } + }, + "required": [ + "name", + "serviceUri" + ] + }, + "ItsmReceiver": { + "description": "An Itsm receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the Itsm receiver. Names must be unique across all receivers within an action group." + }, + "workspaceId": { + "type": "string", + "description": "OMS LA instance identifier." + }, + "connectionId": { + "type": "string", + "description": "Unique identification of ITSM connection among multiple defined in above workspace." + }, + "ticketConfiguration": { + "type": "string", + "description": "JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well." + }, + "region": { + "type": "string", + "description": "Region in which workspace resides. Supported values:'centralindia','japaneast','southeastasia','australiasoutheast','uksouth','westcentralus','canadacentral','eastus','westeurope'" } + }, + "required": [ + "name", + "workspaceId", + "connectionId", + "ticketConfiguration", + "region" + ] + }, + "AzureAppPushReceiver": { + "description": "The Azure mobile App push notification receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group." + }, + "emailAddress": { + "type": "string", + "description": "The email address registered for the Azure mobile app." + } + }, + "required": [ + "name", + "emailAddress" + ] + }, + "AutomationRunbookReceiver": { + "description": "The Azure Automation Runbook notification receiver.", + "properties": { + "automationAccountId": { + "type": "string", + "description": "The Azure automation account Id which holds this runbook and authenticate to Azure resource." + }, + "runbookName": { + "type": "string", + "description": "The name for this runbook." + }, + "webhookResourceId": { + "type": "string", + "description": "The resource id for webhook linked to this runbook." + }, + "isGlobalRunbook": { + "type": "boolean", + "description": "Indicates whether this instance is global runbook." + }, + "name": { + "type": "string", + "description": "Indicates name of the webhook." + }, + "serviceUri": { + "type": "string", + "description": "The URI where webhooks should be sent." + } + }, + "required": [ + "automationAccountId", + "runbookName", + "webhookResourceId", + "isGlobalRunbook" + ] + }, + "ReceiverStatus": { + "type": "string", + "enum": [ + "NotSpecified", + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "ReceiverStatus", + "modelAsString": false + }, + "description": "Indicates the status of the receiver. Receivers that are not Enabled will not receive any communications." + }, + "EnableRequest": { + "description": "Describes a receiver that should be resubscribed.", + "properties": { + "receiverName": { + "type": "string", + "description": "The name of the receiver to resubscribe." + } + }, + "required": [ + "receiverName" + ] + }, + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" + } + } + }, + "ActionGroupPatchBody": { + "description": "An action group object for the body of patch operations.", + "properties": { + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActionGroupPatch", + "description": "The action group settings for an update operation." + } + } + }, + "ActionGroupPatch": { + "description": "An Azure action group for patch operations.", + "properties": { + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its actions will be activated." + } + } + } + }, + "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" + }, + "ActionGroupNameParameter": { + "name": "actionGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the action group.", + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } + } } diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/activityLogAlerts_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/activityLogAlerts_API.json index 332e93e78a8c..1c8c0a5d5ae8 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/activityLogAlerts_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/activityLogAlerts_API.json @@ -1,528 +1,528 @@ { - "swagger": "2.0", - "info": { - "title": "Azure Activity Log Alerts API", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2017-04-01" + "swagger": "2.0", + "info": { + "title": "Azure Activity Log Alerts API", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "version": "2017-04-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}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/activityLogAlerts/{activityLogAlertName}": { + "put": { + "description": "Create a new activity log alert or update an existing one.", + "operationId": "ActivityLogAlerts_CreateOrUpdate", + "x-ms-examples": { + "Create or update an activity log alert": { + "$ref": "./examples/createOrUpdateActivityLogAlert.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActivityLogAlertNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "activityLogAlert", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActivityLogAlertResource" + }, + "description": "The activity log alert to create or use for the update." + } + ], + "responses": { + "200": { + "description": "An existing activity log alert was successfully updated.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertResource" + } + }, + "201": { + "description": "A new activity log alert was successfully created.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertResource" + } + }, + "default": { + "description": "An error occurred and the activity log alert could not be created or updated.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } - ], - "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" + }, + "get": { + "description": "Get an activity log alert.", + "operationId": "ActivityLogAlerts_Get", + "x-ms-examples": { + "Get an activity log alert": { + "$ref": "./examples/getActivityLogAlert.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActivityLogAlertNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertResource" } + }, + "default": { + "description": "An error occurred and the activity log alert could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } - }, - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/activityLogAlerts/{activityLogAlertName}": { - "put": { - "description": "Create a new activity log alert or update an existing one.", - "operationId": "ActivityLogAlerts_CreateOrUpdate", - "x-ms-examples": { - "Create or update an activity log alert": { - "$ref": "./examples/createOrUpdateActivityLogAlert.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActivityLogAlertNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "activityLogAlert", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActivityLogAlertResource" - }, - "description": "The activity log alert to create or use for the update." - } - ], - "responses": { - "200": { - "description": "An existing activity log alert was successfully updated.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertResource" - } - }, - "201": { - "description": "A new activity log alert was successfully created.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertResource" - } - }, - "default": { - "description": "An error occurred and the activity log alert could not be created or updated.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "get": { - "description": "Get an activity log alert.", - "operationId": "ActivityLogAlerts_Get", - "x-ms-examples": { - "Get an activity log alert": { - "$ref": "./examples/getActivityLogAlert.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActivityLogAlertNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertResource" - } - }, - "default": { - "description": "An error occurred and the activity log alert could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "description": "Delete an activity log alert.", - "operationId": "ActivityLogAlerts_Delete", - "x-ms-examples": { - "Delete an activity log alert": { - "$ref": "./examples/deleteActivityLogAlert.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActivityLogAlertNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The activity log alert was successfully deleted." - }, - "204": { - "description": "The activity log alert does not exist. It may have already been deleted." - }, - "default": { - "description": "An error occurred and the activity log alert could not be deleted.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "delete": { + "description": "Delete an activity log alert.", + "operationId": "ActivityLogAlerts_Delete", + "x-ms-examples": { + "Delete an activity log alert": { + "$ref": "./examples/deleteActivityLogAlert.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActivityLogAlertNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The activity log alert was successfully deleted." + }, + "204": { + "description": "The activity log alert does not exist. It may have already been deleted." + }, + "default": { + "description": "An error occurred and the activity log alert could not be deleted.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "description": "Updates an existing ActivityLogAlertResource's tags. To update other fields use the CreateOrUpdate method.", + "operationId": "ActivityLogAlerts_Update", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActivityLogAlertNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "activityLogAlertPatch", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActivityLogAlertPatchBody" }, - "patch": { - "description": "Updates an existing ActivityLogAlertResource's tags. To update other fields use the CreateOrUpdate method.", - "operationId": "ActivityLogAlerts_Update", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActivityLogAlertNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "activityLogAlertPatch", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActivityLogAlertPatchBody" - }, - "description": "Parameters supplied to the operation." - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "An existing activity log alert was successfully updated.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertResource" - } - } - }, - "x-ms-examples": { - "Patch an activity log alert": { - "$ref": "./examples/patchActivityLogAlert.json" - } - } + "description": "Parameters supplied to the operation." + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } - }, - "/subscriptions/{subscriptionId}/providers/microsoft.insights/activityLogAlerts": { - "get": { - "description": "Get a list of all activity log alerts in a subscription.", - "operationId": "ActivityLogAlerts_ListBySubscriptionId", - "x-ms-examples": { - "List activity log alerts": { - "$ref": "./examples/listActivityLogAlerts.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertList" - } - }, - "default": { - "description": "An error occurred and the list of activity log alerts could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "200": { + "description": "An existing activity log alert was successfully updated.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertResource" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/activityLogAlerts": { - "get": { - "description": "Get a list of all activity log alerts in a resource group.", - "operationId": "ActivityLogAlerts_ListByResourceGroup", - "x-ms-examples": { - "List activity log alerts": { - "$ref": "./examples/listActivityLogAlerts.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActivityLogAlertList" - } - }, - "default": { - "description": "An error occurred and the list of activity log alerts could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - } + "x-ms-examples": { + "Patch an activity log alert": { + "$ref": "./examples/patchActivityLogAlert.json" + } } + } }, - "definitions": { - "Resource": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Azure resource Id" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Azure resource name" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Azure resource type" - }, - "location": { - "type": "string", - "description": "Resource location", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - } - }, - "required": [ - "location" - ], - "x-ms-azure-resource": true, - "description": "An azure resource object" + "/subscriptions/{subscriptionId}/providers/microsoft.insights/activityLogAlerts": { + "get": { + "description": "Get a list of all activity log alerts in a subscription.", + "operationId": "ActivityLogAlerts_ListBySubscriptionId", + "x-ms-examples": { + "List activity log alerts": { + "$ref": "./examples/listActivityLogAlerts.json" + } }, - "ActivityLogAlertResource": { - "description": "An activity log alert resource.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActivityLogAlert", - "description": "The activity log alert properties of the resource." - } + "x-ms-pageable": { + "nextLinkName": null + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertList" + } + }, + "default": { + "description": "An error occurred and the list of activity log alerts could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/activityLogAlerts": { + "get": { + "description": "Get a list of all activity log alerts in a resource group.", + "operationId": "ActivityLogAlerts_ListByResourceGroup", + "x-ms-examples": { + "List activity log alerts": { + "$ref": "./examples/listActivityLogAlerts.json" + } }, - "ActivityLogAlertList": { - "description": "A list of activity log alerts.", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ActivityLogAlertResource" - }, - "description": "The list of activity log alerts." - }, - "nextLink": { - "type": "string", - "description": "Provides the link to retrieve the next set of elements." - } + "x-ms-pageable": { + "nextLinkName": null + }, + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActivityLogAlertList" + } + }, + "default": { + "description": "An error occurred and the list of activity log alerts could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + } + }, + "definitions": { + "Resource": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Azure resource Id" }, - "ActivityLogAlert": { - "description": "An Azure activity log alert.", - "properties": { - "scopes": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of resourceIds that will be used as prefixes. The alert will only apply to activityLogs with resourceIds that fall under one of these prefixes. This list must include at least one item." - }, - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated." - }, - "condition": { - "$ref": "#/definitions/ActivityLogAlertAllOfCondition", - "description": "The condition that will cause this alert to activate." - }, - "actions": { - "$ref": "#/definitions/ActivityLogAlertActionList", - "description": "The actions that will activate when the condition is met." - }, - "description": { - "type": "string", - "description": "A description of this activity log alert." - } - }, - "required": [ - "scopes", - "condition", - "actions" - ] + "name": { + "type": "string", + "readOnly": true, + "description": "Azure resource name" }, - "ActivityLogAlertAllOfCondition": { - "properties": { - "allOf": { - "type": "array", - "items": { - "$ref": "#/definitions/ActivityLogAlertLeafCondition" - }, - "description": "The list of activity log alert conditions." - } - }, - "description": "An Activity Log alert condition that is met when all its member conditions are met.", - "required": [ - "allOf" - ] + "type": { + "type": "string", + "readOnly": true, + "description": "Azure resource type" }, - "ActivityLogAlertLeafCondition": { - "properties": { - "field": { - "type": "string", - "description": "The name of the field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties.'." - }, - "equals": { - "type": "string", - "description": "The field value will be compared to this value (case-insensitive) to determine if the condition is met." - } - }, - "description": "An Activity Log alert condition that is met by comparing an activity log field and value.", - "required": [ - "field", - "equals" - ] + "location": { + "type": "string", + "description": "Resource location", + "x-ms-mutability": [ + "create", + "read" + ] }, - "ActivityLogAlertActionList": { - "description": "A list of activity log alert actions.", - "properties": { - "actionGroups": { - "type": "array", - "items": { - "$ref": "#/definitions/ActivityLogAlertActionGroup" - }, - "description": "The list of activity log alerts." - } - } + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true, + "description": "An azure resource object" + }, + "ActivityLogAlertResource": { + "description": "An activity log alert resource.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActivityLogAlert", + "description": "The activity log alert properties of the resource." + } + } + }, + "ActivityLogAlertList": { + "description": "A list of activity log alerts.", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ActivityLogAlertResource" + }, + "description": "The list of activity log alerts." }, - "ActivityLogAlertActionGroup": { - "description": "A pointer to an Azure Action Group.", - "properties": { - "actionGroupId": { - "type": "string", - "description": "The resourceId of the action group. This cannot be null or empty." - }, - "webhookProperties": { - "additionalProperties": { - "type": "string" - }, - "description": "the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload." - } - }, - "required": [ - "actionGroupId" - ] + "nextLink": { + "type": "string", + "description": "Provides the link to retrieve the next set of elements." + } + } + }, + "ActivityLogAlert": { + "description": "An Azure activity log alert.", + "properties": { + "scopes": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of resourceIds that will be used as prefixes. The alert will only apply to activityLogs with resourceIds that fall under one of these prefixes. This list must include at least one item." }, - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } - } + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated." }, - "ActivityLogAlertPatchBody": { - "description": "An activity log alert object for the body of patch operations.", - "properties": { - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActivityLogAlertPatch", - "description": "The activity log alert settings for an update operation." - } - } + "condition": { + "$ref": "#/definitions/ActivityLogAlertAllOfCondition", + "description": "The condition that will cause this alert to activate." }, - "ActivityLogAlertPatch": { - "description": "An Azure activity log alert for patch operations.", - "properties": { - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated." - } - } + "actions": { + "$ref": "#/definitions/ActivityLogAlertActionList", + "description": "The actions that will activate when the condition is met." + }, + "description": { + "type": "string", + "description": "A description of this activity log alert." } + }, + "required": [ + "scopes", + "condition", + "actions" + ] }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "The Azure subscription Id." + "ActivityLogAlertAllOfCondition": { + "properties": { + "allOf": { + "type": "array", + "items": { + "$ref": "#/definitions/ActivityLogAlertLeafCondition" + }, + "description": "The list of activity log alert conditions." + } + }, + "description": "An Activity Log alert condition that is met when all its member conditions are met.", + "required": [ + "allOf" + ] + }, + "ActivityLogAlertLeafCondition": { + "properties": { + "field": { + "type": "string", + "description": "The name of the field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties.'." }, - "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group.", - "x-ms-parameter-location": "method" + "equals": { + "type": "string", + "description": "The field value will be compared to this value (case-insensitive) to determine if the condition is met." + } + }, + "description": "An Activity Log alert condition that is met by comparing an activity log field and value.", + "required": [ + "field", + "equals" + ] + }, + "ActivityLogAlertActionList": { + "description": "A list of activity log alert actions.", + "properties": { + "actionGroups": { + "type": "array", + "items": { + "$ref": "#/definitions/ActivityLogAlertActionGroup" + }, + "description": "The list of activity log alerts." + } + } + }, + "ActivityLogAlertActionGroup": { + "description": "A pointer to an Azure Action Group.", + "properties": { + "actionGroupId": { + "type": "string", + "description": "The resourceId of the action group. This cannot be null or empty." }, - "ActivityLogAlertNameParameter": { - "name": "activityLogAlertName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the activity log alert.", - "x-ms-parameter-location": "method" + "webhookProperties": { + "additionalProperties": { + "type": "string" + }, + "description": "the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload." + } + }, + "required": [ + "actionGroupId" + ] + }, + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" } + } + }, + "ActivityLogAlertPatchBody": { + "description": "An activity log alert object for the body of patch operations.", + "properties": { + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActivityLogAlertPatch", + "description": "The activity log alert settings for an update operation." + } + } + }, + "ActivityLogAlertPatch": { + "description": "An Azure activity log alert for patch operations.", + "properties": { + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated." + } + } + } + }, + "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" + }, + "ActivityLogAlertNameParameter": { + "name": "activityLogAlertName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the activity log alert.", + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } + } } diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/createOrUpdateActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/createOrUpdateActionGroup.json index c061cee773df..a8de7b6b5531 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/createOrUpdateActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/createOrUpdateActionGroup.json @@ -1,213 +1,213 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2017-04-01", - "actionGroup": { - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com" - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" - } - ] + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2017-04-01", + "actionGroup": { + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" + } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" + } + ] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" + } + ] } + } }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled" - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" - } - ] - } + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" } - }, - "201": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled" - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" - } - ] - } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/createOrUpdateActivityLogAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/createOrUpdateActivityLogAlert.json index da116b2822ab..24993d51dde8 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/createOrUpdateActivityLogAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/createOrUpdateActivityLogAlert.json @@ -1,121 +1,121 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ActivityLogAlerts", - "activityLogAlertName": "SampleActivityLogAlert", - "api-version": "2017-04-01", - "activityLogAlert": { - "location": "Global", - "tags": { }, - "properties": { - "scopes": [ - "subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ActivityLogAlerts", + "activityLogAlertName": "SampleActivityLogAlert", + "api-version": "2017-04-01", + "activityLogAlert": { + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert", - "location": "Global", - "tags": { }, - "properties": { - "scopes": [ - "subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" - } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" + } } + ] }, - "201": { - "headers": { }, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert", - "location": "Global", - "tags": { }, - "properties": { - "scopes": [ - "subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" + "description": "Sample activity log alert description" + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert", + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" } - } + } + ] + }, + "description": "Sample activity log alert description" + } + } + }, + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert", + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" + } + } + ] + }, + "description": "Sample activity log alert description" } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/deleteActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/deleteActionGroup.json index c6e835cb2895..87fc46039a3d 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/deleteActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/deleteActionGroup.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2017-04-01" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2017-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/deleteActivityLogAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/deleteActivityLogAlert.json index 7a3fbf91c0c6..23393ae26daa 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/deleteActivityLogAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/deleteActivityLogAlert.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ActivityLogAlerts", - "activityLogAlertName": "SampleActivityLogAlert", - "api-version": "2017-04-01" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ActivityLogAlerts", + "activityLogAlertName": "SampleActivityLogAlert", + "api-version": "2017-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/enableReceiver.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/enableReceiver.json index 65bd11c1c1fb..43802e8eb192 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/enableReceiver.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/enableReceiver.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2017-04-01", - "enableRequest": { - "receiverName": "John Doe's mobile" - } + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2017-04-01", + "enableRequest": { + "receiverName": "John Doe's mobile" + } + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "409": { - "headers": {}, - "body": null - } + "409": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/getActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/getActionGroup.json index 1066a62661e5..cc56b291979e 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/getActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/getActionGroup.json @@ -1,56 +1,56 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2017-04-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Disabled" - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Disabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ] - } + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2017-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Disabled" } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Disabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/getActivityLogAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/getActivityLogAlert.json index 7172f109e8fe..e468e240dbf4 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/getActivityLogAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/getActivityLogAlert.json @@ -1,49 +1,49 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ActivityLogAlerts", - "activityLogAlertName": "SampleActivityLogAlert", - "api-version": "2017-04-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert", - "location": "Global", - "tags": {}, - "properties": { - "scopes": [ - "subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ActivityLogAlerts", + "activityLogAlertName": "SampleActivityLogAlert", + "api-version": "2017-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert", + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" } - } + } + ] + }, + "description": "Sample activity log alert description" } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/listActionGroups.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/listActionGroups.json index c8e9e4901dd5..89044838c7fb 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/listActionGroups.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/listActionGroups.json @@ -1,86 +1,86 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "api-version": "2017-04-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Disabled" - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Disabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ] - } - }, - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup2", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup2", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample2", - "enabled": false, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - } - ], - "smsReceivers": [ - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [] - } - } - ] + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "api-version": "2017-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Disabled" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Disabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ] } - } + }, + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup2", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup2", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample2", + "enabled": false, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + } + ], + "smsReceivers": [ + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [] + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/listActivityLogAlerts.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/listActivityLogAlerts.json index ae53a7ca9351..3d92803d2bf4 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/listActivityLogAlerts.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/listActivityLogAlerts.json @@ -1,81 +1,81 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ActivityLogAlerts", - "api-version": "2017-04-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert", - "location": "Global", - "tags": {}, - "properties": { - "scopes": [ - "subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" - } - }, - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert2", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert2", - "location": "Global", - "tags": {}, - "properties": { - "scopes": [ - "subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts" - ], - "enabled": true, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { } - } - ] - } - } + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ActivityLogAlerts", + "api-version": "2017-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert", + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" } + } + ] + }, + "description": "Sample activity log alert description" + } + }, + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert2", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert2", + "location": "Global", + "tags": {}, + "properties": { + "scopes": [ + "subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts" + ], + "enabled": true, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": {} + } ] + } } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/patchActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/patchActionGroup.json index 1175ff17126e..855c3ef1cb5f 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/patchActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/patchActionGroup.json @@ -1,62 +1,68 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2017-04-01", - "actionGroupPatch": { - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "enabled": false + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2017-04-01", + "actionGroupPatch": { + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "enabled": false + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled" } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled" - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ] - } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/patchActivityLogAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/patchActivityLogAlert.json index 96fada36985a..0b207b8ff409 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/patchActivityLogAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2017-04-01/examples/patchActivityLogAlert.json @@ -1,55 +1,61 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-ActivityLogAlerts", - "activityLogAlertName": "SampleActivityLogAlert", - "api-version": "2017-03-01-preview", - "activityLogAlertPatch": { - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "enabled": false - } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", - "type": "Microsoft.Insights/ActivityLogAlerts", - "name": "SampleActivityLogAlert", - "location": "Global", - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "scopes": [ - "/subscriptions/187f412d-1758-44d9-b052-169e2564721d" - ], - "enabled": false, - "condition": { - "allOf": [ - { - "field": "Category", - "equals": "Administrative" - }, - { - "field": "Level", - "equals": "Error" - } - ] - }, - "actions": { - "actionGroups": [ - { - "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", - "webhookProperties": { - "sampleWebhookProperty": "samplePropertyValue" - } - } - ] - }, - "description": "Sample activity log alert description" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-ActivityLogAlerts", + "activityLogAlertName": "SampleActivityLogAlert", + "api-version": "2017-03-01-preview", + "activityLogAlertPatch": { + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "enabled": false + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/SampleActivityLogAlert", + "type": "Microsoft.Insights/ActivityLogAlerts", + "name": "SampleActivityLogAlert", + "location": "Global", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "scopes": [ + "/subscriptions/187f412d-1758-44d9-b052-169e2564721d" + ], + "enabled": false, + "condition": { + "allOf": [ + { + "field": "Category", + "equals": "Administrative" + }, + { + "field": "Level", + "equals": "Error" + } + ] + }, + "actions": { + "actionGroups": [ + { + "actionGroupId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-ActionGroups/providers/microsoft.insights/actionGroups/SampleActionGroup", + "webhookProperties": { + "sampleWebhookProperty": "samplePropertyValue" } - } + } + ] + }, + "description": "Sample activity log alert description" } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetric.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetric.json index e4577210e0fa..4f9b0f06a527 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetric.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetric.json @@ -1,98 +1,98 @@ { - "parameters": { - "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", + "parameters": { + "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "metric": "BlobCapacity", + "metricnamespace": "Microsoft.Storage/storageAccounts/blobServices", + "$filter": "BlobType eq '*'", + "top": 3, + "orderby": "Average asc", + "aggregation": "Average,count", + "interval": "PT1M", + "api-version": "2018-01-01" + }, + "responses": { + "200": { + "body": { + "cost": 0, "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "metric": "BlobCapacity", - "metricnamespace": "Microsoft.Storage/storageAccounts/blobServices", - "$filter": "BlobType eq '*'", - "top": 3, - "orderby": "Average asc", - "aggregation": "Average,count", "interval": "PT1M", - "api-version": "2018-01-01" - }, - "responses": { - "200": { - "body": { - "cost": 0, - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "interval": "PT1M", - "namespace": "Microsoft.Storage/storageAccounts/blobServices", - "resourceregion": "eastus2", - "value": [ - { - "id": "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity", - "type": "Microsoft.Insights/metrics", - "name": { - "value": "BlobCapacity", - "localizedValue": "Blob Capacity" + "namespace": "Microsoft.Storage/storageAccounts/blobServices", + "resourceregion": "eastus2", + "value": [ + { + "id": "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity", + "type": "Microsoft.Insights/metrics", + "name": { + "value": "BlobCapacity", + "localizedValue": "Blob Capacity" + }, + "unit": "Bytes", + "timeseries": [ + { + "metadatavalues": [ + { + "name": { + "value": "blobtype", + "localizedValue": "blobtype" + }, + "value": "PageBlob" + } + ], + "data": [ + { + "timeStamp": "2017-04-14T02:20:00Z", + "count": 0.0 + }, + { + "timeStamp": "2017-04-14T02:21:00Z", + "count": 0.0 + }, + { + "timeStamp": "2017-04-14T02:22:00Z", + "count": 0.0 }, - "unit": "Bytes", - "timeseries": [ - { - "metadatavalues": [ - { - "name": { - "value": "blobtype", - "localizedValue": "blobtype" - }, - "value": "PageBlob" - } - ], - "data": [ - { - "timeStamp": "2017-04-14T02:20:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:21:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:22:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:23:00Z", - "count": 1.0, - "average": 0.0 - } - ] + { + "timeStamp": "2017-04-14T02:23:00Z", + "count": 1.0, + "average": 0.0 + } + ] + }, + { + "metadatavalues": [ + { + "name": { + "value": "blobtype", + "localizedValue": "blobtype" }, - { - "metadatavalues": [ - { - "name": { - "value": "blobtype", - "localizedValue": "blobtype" - }, - "value": "BlockBlob" - } - ], - "data": [ - { - "timeStamp": "2017-04-14T02:20:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:21:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:22:00Z", - "count": 0.0 - }, - { - "timeStamp": "2017-04-14T02:23:00Z", - "count": 1.0, - "average": 245.0 - } - ] - } - ] - } - ] - } - } + "value": "BlockBlob" + } + ], + "data": [ + { + "timeStamp": "2017-04-14T02:20:00Z", + "count": 0.0 + }, + { + "timeStamp": "2017-04-14T02:21:00Z", + "count": 0.0 + }, + { + "timeStamp": "2017-04-14T02:22:00Z", + "count": 0.0 + }, + { + "timeStamp": "2017-04-14T02:23:00Z", + "count": 1.0, + "average": 245.0 + } + ] + } + ] + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetricDefinitions.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetricDefinitions.json index 5f49d369c758..6b07e32cb0c9 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetricDefinitions.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetricDefinitions.json @@ -1,928 +1,975 @@ { - "parameters": { - "resourceUri": "subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricDefinitions", - "api-version": "2018-01-01", - "metricnamespace": "Microsoft.Web/sites" - }, - "responses": { - "200": { - "body": - { - "value": [{ - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/CpuTime", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "CpuTime", - "localizedValue": "CPU Time" - }, - "isDimensionRequired": false, - "unit": "Seconds", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Requests", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "Requests", - "localizedValue": "Requests" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/BytesReceived", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "BytesReceived", - "localizedValue": "Data In" - }, - "isDimensionRequired": false, - "unit": "Bytes", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/BytesSent", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "BytesSent", - "localizedValue": "Data Out" - }, - "isDimensionRequired": false, - "unit": "Bytes", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http101", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "Http101", - "localizedValue": "Http 101" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http2xx", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "Http2xx", - "localizedValue": "Http 2xx" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http3xx", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "Http3xx", - "localizedValue": "Http 3xx" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http401", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "Http401", - "localizedValue": "Http 401" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http403", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "Http403", - "localizedValue": "Http 403" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http404", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "Http404", - "localizedValue": "Http 404" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http406", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "Http406", - "localizedValue": "Http 406" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http4xx", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "Http4xx", - "localizedValue": "Http 4xx" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http5xx", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "Http5xx", - "localizedValue": "Http Server Errors" - }, - "isDimensionRequired": false, - "unit": "Count", - "primaryAggregationType": "Total", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/MemoryWorkingSet", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "MemoryWorkingSet", - "localizedValue": "Memory working set" - }, - "isDimensionRequired": false, - "unit": "Bytes", - "primaryAggregationType": "Average", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/AverageMemoryWorkingSet", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "AverageMemoryWorkingSet", - "localizedValue": "Average memory working set" - }, - "isDimensionRequired": false, - "unit": "Bytes", - "primaryAggregationType": "Average", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - }, { - "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/AverageResponseTime", - "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", - "namespace": "Microsoft.Web/sites", - "name": { - "value": "AverageResponseTime", - "localizedValue": "Average Response Time" - }, - "isDimensionRequired": false, - "unit": "Seconds", - "primaryAggregationType": "Average", - "supportedAggregationTypes": [ - "None", - "Average", - "Minimum", - "Maximum", - "Total", - "Count" - ], - "metricAvailabilities": [{ - "timeGrain": "PT1M", - "retention": "P93D" - }, - { - "timeGrain": "PT5M", - "retention": "P93D" - }, - { - "timeGrain": "PT15M", - "retention": "P93D" - }, - { - "timeGrain": "PT30M", - "retention": "P93D" - }, - { - "timeGrain": "PT1H", - "retention": "P93D" - }, - { - "timeGrain": "PT6H", - "retention": "P93D" - }, - { - "timeGrain": "PT12H", - "retention": "P93D" - }, - { - "timeGrain": "P1D", - "retention": "P93D" - } - ], - "dimensions": [{ - "value": "Instance", - "localizedValue": "Instance" - } - ] - } - ] - } - } + "parameters": { + "resourceUri": "subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricDefinitions", + "api-version": "2018-01-01", + "metricnamespace": "Microsoft.Web/sites" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/CpuTime", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "CpuTime", + "localizedValue": "CPU Time" + }, + "isDimensionRequired": false, + "unit": "Seconds", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Requests", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "Requests", + "localizedValue": "Requests" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/BytesReceived", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "BytesReceived", + "localizedValue": "Data In" + }, + "isDimensionRequired": false, + "unit": "Bytes", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/BytesSent", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "BytesSent", + "localizedValue": "Data Out" + }, + "isDimensionRequired": false, + "unit": "Bytes", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http101", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "Http101", + "localizedValue": "Http 101" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http2xx", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "Http2xx", + "localizedValue": "Http 2xx" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http3xx", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "Http3xx", + "localizedValue": "Http 3xx" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http401", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "Http401", + "localizedValue": "Http 401" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http403", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "Http403", + "localizedValue": "Http 403" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http404", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "Http404", + "localizedValue": "Http 404" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http406", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "Http406", + "localizedValue": "Http 406" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http4xx", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "Http4xx", + "localizedValue": "Http 4xx" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/Http5xx", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "Http5xx", + "localizedValue": "Http Server Errors" + }, + "isDimensionRequired": false, + "unit": "Count", + "primaryAggregationType": "Total", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/MemoryWorkingSet", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "MemoryWorkingSet", + "localizedValue": "Memory working set" + }, + "isDimensionRequired": false, + "unit": "Bytes", + "primaryAggregationType": "Average", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/AverageMemoryWorkingSet", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "AverageMemoryWorkingSet", + "localizedValue": "Average memory working set" + }, + "isDimensionRequired": false, + "unit": "Bytes", + "primaryAggregationType": "Average", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + }, + { + "id": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest/providers/microsoft.insights/metricdefinitions/AverageResponseTime", + "resourceId": "/subscriptions/07c0b09d-9f69-4e6e-8d05-f59f67299cb2/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/alertruleTest", + "namespace": "Microsoft.Web/sites", + "name": { + "value": "AverageResponseTime", + "localizedValue": "Average Response Time" + }, + "isDimensionRequired": false, + "unit": "Seconds", + "primaryAggregationType": "Average", + "supportedAggregationTypes": [ + "None", + "Average", + "Minimum", + "Maximum", + "Total", + "Count" + ], + "metricAvailabilities": [ + { + "timeGrain": "PT1M", + "retention": "P93D" + }, + { + "timeGrain": "PT5M", + "retention": "P93D" + }, + { + "timeGrain": "PT15M", + "retention": "P93D" + }, + { + "timeGrain": "PT30M", + "retention": "P93D" + }, + { + "timeGrain": "PT1H", + "retention": "P93D" + }, + { + "timeGrain": "PT6H", + "retention": "P93D" + }, + { + "timeGrain": "PT12H", + "retention": "P93D" + }, + { + "timeGrain": "P1D", + "retention": "P93D" + } + ], + "dimensions": [ + { + "value": "Instance", + "localizedValue": "Instance" + } + ] + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetricMetadata.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetricMetadata.json index eb929a0ee350..2d8a21817013 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetricMetadata.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/examples/GetMetricMetadata.json @@ -1,59 +1,59 @@ { - "parameters": { + "parameters": { + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "metric": "BlobCapacity", + "metricnamespace": "Microsoft.Storage/storageAccounts/blobServices", + "$filter": "BlobType eq '*'", + "top": 3, + "orderby": "Average asc", + "aggregation": "Average,count", + "interval": "PT1M", + "resulttype": "metadata", + "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", + "api-version": "2018-01-01" + }, + "responses": { + "200": { + "body": { "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "metric": "BlobCapacity", - "metricnamespace": "Microsoft.Storage/storageAccounts/blobServices", - "$filter": "BlobType eq '*'", - "top": 3, - "orderby": "Average asc", - "aggregation": "Average,count", - "interval": "PT1M", - "resulttype": "metadata", - "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", - "api-version": "2018-01-01" - }, - "responses": { - "200": { - "body": { - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "namespace": "Microsoft.Storage/storageAccounts/blobServices", - "resourceregion": "eastus2", - "value": [ - { - "id": "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity", - "type": "Microsoft.Insights/metrics", - "name": { - "value": "BlobCapacity", - "localizedValue": "Blob Capacity" - }, - "unit": "Bytes", - "timeseries": [ - { - "metadatavalues": [ - { - "name": { - "value": "blobtype", - "localizedValue": "blobtype" - }, - "value": "BlockBlob" - } - ] - }, - { - "metadatavalues": [ - { - "name": { - "value": "blobtype", - "localizedValue": "blobtype" - }, - "value": "PageBlob" - } - ] - } - ] - } - ] - } - } + "namespace": "Microsoft.Storage/storageAccounts/blobServices", + "resourceregion": "eastus2", + "value": [ + { + "id": "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity", + "type": "Microsoft.Insights/metrics", + "name": { + "value": "BlobCapacity", + "localizedValue": "Blob Capacity" + }, + "unit": "Bytes", + "timeseries": [ + { + "metadatavalues": [ + { + "name": { + "value": "blobtype", + "localizedValue": "blobtype" + }, + "value": "BlockBlob" + } + ] + }, + { + "metadatavalues": [ + { + "name": { + "value": "blobtype", + "localizedValue": "blobtype" + }, + "value": "PageBlob" + } + ] + } + ] + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/metricDefinitions_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/metricDefinitions_API.json index 8a13c0cb6a7f..c4d5a7215841 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/metricDefinitions_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/metricDefinitions_API.json @@ -72,14 +72,18 @@ "nextLinkName": null }, "x-ms-examples": { - "Get Metric Definitions without filter": { "$ref": "./examples/GetMetricDefinitions.json" } + "Get Metric Definitions without filter": { + "$ref": "./examples/GetMetricDefinitions.json" + } } } } }, "definitions": { "LocalizableString": { - "required": [ "value" ], + "required": [ + "value" + ], "properties": { "value": { "type": "string", @@ -126,23 +130,22 @@ "modelAsString": false } }, - "AggregationType": - { + "AggregationType": { "type": "string", "description": "the aggregation type of the metric.", "enum": [ - "None", - "Average", - "Count", - "Minimum", - "Maximum", - "Total" + "None", + "Average", + "Count", + "Minimum", + "Maximum", + "Total" ], "x-ms-enum": { - "name": "AggregationType", - "modelAsString": false + "name": "AggregationType", + "modelAsString": false } - }, + }, "MetricDefinition": { "properties": { "isDimensionRequired": { @@ -169,7 +172,7 @@ "$ref": "#/definitions/AggregationType", "description": "the primary aggregation type value defining how to use the values for display." }, - "supportedAggregationTypes": { + "supportedAggregationTypes": { "type": "array", "items": { "$ref": "#/definitions/AggregationType" @@ -207,7 +210,9 @@ "description": "the values for the metric definitions." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents collection of metric definitions." }, "ErrorResponse": { @@ -251,4 +256,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/metrics_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/metrics_API.json index 2aba4142c955..1e13053516e4 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/metrics_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/metrics_API.json @@ -98,15 +98,21 @@ }, "x-ms-odata": "#/definitions/MetadataValue", "x-ms-examples": { - "Get Metric for data": { "$ref": "./examples/GetMetric.json" }, - "Get Metric for metadata": { "$ref": "./examples/GetMetricMetadata.json" } + "Get Metric for data": { + "$ref": "./examples/GetMetric.json" + }, + "Get Metric for metadata": { + "$ref": "./examples/GetMetricMetadata.json" + } } } } }, "definitions": { "LocalizableString": { - "required": [ "value" ], + "required": [ + "value" + ], "properties": { "value": { "type": "string", @@ -139,7 +145,9 @@ } }, "MetricValue": { - "required": [ "timeStamp" ], + "required": [ + "timeStamp" + ], "properties": { "timeStamp": { "type": "string", @@ -235,7 +243,10 @@ "description": "the value of the collection." } }, - "required": [ "timespan", "value" ], + "required": [ + "timespan", + "value" + ], "description": "The response to a metrics query." }, "Metric": { @@ -265,7 +276,13 @@ "description": "the time series returned when a data query is performed." } }, - "required": [ "id", "type", "name", "unit", "timeseries" ], + "required": [ + "id", + "type", + "name", + "unit", + "timeseries" + ], "description": "The result data of a query." }, "TimeSeriesElement": { @@ -381,4 +398,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/actionGroups_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/actionGroups_API.json index 78580130da79..d1966662068f 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/actionGroups_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/actionGroups_API.json @@ -1,808 +1,808 @@ { - "swagger": "2.0", - "info": { - "title": "Azure Action Groups API", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2018-03-01" + "swagger": "2.0", + "info": { + "title": "Azure Action Groups API", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "version": "2018-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}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}": { + "put": { + "description": "Create a new action group or update an existing one.", + "operationId": "ActionGroups_CreateOrUpdate", + "x-ms-examples": { + "Create or update an action group": { + "$ref": "./examples/createOrUpdateActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "name": "actionGroup", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActionGroupResource" + }, + "description": "The action group to create or use for the update." + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "An existing action group was successfully updated.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "201": { + "description": "A new action group was successfully created.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "default": { + "description": "An error occurred and the action group could not be created or updated.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } - ], - "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" + }, + "get": { + "description": "Get an action group.", + "operationId": "ActionGroups_Get", + "x-ms-examples": { + "Get an action group": { + "$ref": "./examples/getActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "default": { + "description": "An error occurred and the action group could not be retrieved. 404: The action group does not exist.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } } - }, - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}": { - "put": { - "description": "Create a new action group or update an existing one.", - "operationId": "ActionGroups_CreateOrUpdate", - "x-ms-examples": { - "Create or update an action group": { - "$ref": "./examples/createOrUpdateActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "name": "actionGroup", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActionGroupResource" - }, - "description": "The action group to create or use for the update." - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "An existing action group was successfully updated.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "201": { - "description": "A new action group was successfully created.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "default": { - "description": "An error occurred and the action group could not be created or updated.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "get": { - "description": "Get an action group.", - "operationId": "ActionGroups_Get", - "x-ms-examples": { - "Get an action group": { - "$ref": "./examples/getActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "default": { - "description": "An error occurred and the action group could not be retrieved. 404: The action group does not exist.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "description": "Delete an action group.", - "operationId": "ActionGroups_Delete", - "x-ms-examples": { - "Delete an action group": { - "$ref": "./examples/deleteActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The action group was successfully deleted." - }, - "204": { - "description": "The action group does not exist. It may have already been deleted." - }, - "default": { - "description": "An error occurred and the action group could not be deleted.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "delete": { + "description": "Delete an action group.", + "operationId": "ActionGroups_Delete", + "x-ms-examples": { + "Delete an action group": { + "$ref": "./examples/deleteActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The action group was successfully deleted." + }, + "204": { + "description": "The action group does not exist. It may have already been deleted." + }, + "default": { + "description": "An error occurred and the action group could not be deleted.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "description": "Updates an existing action group's tags. To update other fields use the CreateOrUpdate method.", + "operationId": "ActionGroups_Update", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "actionGroupPatch", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActionGroupPatchBody" }, - "patch": { - "description": "Updates an existing action group's tags. To update other fields use the CreateOrUpdate method.", - "operationId": "ActionGroups_Update", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "actionGroupPatch", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActionGroupPatchBody" - }, - "description": "Parameters supplied to the operation." - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "An existing action group was successfully updated.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - } - }, - "x-ms-examples": { - "Patch an action group": { - "$ref": "./examples/patchActionGroup.json" - } - } + "description": "Parameters supplied to the operation." + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } - }, - "/subscriptions/{subscriptionId}/providers/microsoft.insights/actionGroups": { - "get": { - "description": "Get a list of all action groups in a subscription.", - "operationId": "ActionGroups_ListBySubscriptionId", - "x-ms-examples": { - "List action groups": { - "$ref": "./examples/listActionGroups.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupList" - } - }, - "default": { - "description": "An error occurred and the list of action groups could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "200": { + "description": "An existing action group was successfully updated.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups": { - "get": { - "description": "Get a list of all action groups in a resource group.", - "operationId": "ActionGroups_ListByResourceGroup", - "x-ms-examples": { - "List action groups": { - "$ref": "./examples/listActionGroups.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupList" - } - }, - "default": { - "description": "An error occurred and the list of action groups could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - } + "x-ms-examples": { + "Patch an action group": { + "$ref": "./examples/patchActionGroup.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/microsoft.insights/actionGroups": { + "get": { + "description": "Get a list of all action groups in a subscription.", + "operationId": "ActionGroups_ListBySubscriptionId", + "x-ms-examples": { + "List action groups": { + "$ref": "./examples/listActionGroups.json" + } + }, + "x-ms-pageable": { + "nextLinkName": null }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}/subscribe": { - "post": { - "description": "Enable a receiver in an action group. This changes the receiver's status from Disabled to Enabled. This operation is only supported for Email or SMS receivers.", - "operationId": "ActionGroups_EnableReceiver", - "x-ms-examples": { - "Enable the receiver": { - "$ref": "./examples/enableReceiver.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "name": "enableRequest", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/EnableRequest" - }, - "description": "The receiver to re-enable." - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The receiver was successfully enabled." - }, - "409": { - "description": "The receiver is already enabled in the action group." - }, - "default": { - "description": "An error occurred and the receiver could not be enabled, e.g.: 404: The action group was not found or no matching receiver was found in the action group.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupList" } + }, + "default": { + "description": "An error occurred and the list of action groups could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } + } }, - "definitions": { - "Resource": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Azure resource Id" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Azure resource name" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Azure resource type" - }, - "location": { - "type": "string", - "description": "Resource location", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - } - }, - "required": [ - "location" - ], - "x-ms-azure-resource": true, - "description": "An azure resource object" - }, - "ActionGroupResource": { - "description": "An action group resource.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActionGroup", - "description": "The action groups properties of the resource." - } - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups": { + "get": { + "description": "Get a list of all action groups in a resource group.", + "operationId": "ActionGroups_ListByResourceGroup", + "x-ms-examples": { + "List action groups": { + "$ref": "./examples/listActionGroups.json" + } + }, + "x-ms-pageable": { + "nextLinkName": null }, - "ActionGroupList": { - "description": "A list of action groups.", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ActionGroupResource" - }, - "description": "The list of action groups." - }, - "nextLink": { - "type": "string", - "description": "Provides the link to retrieve the next set of elements." - } + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupList" } + }, + "default": { + "description": "An error occurred and the list of action groups could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}/subscribe": { + "post": { + "description": "Enable a receiver in an action group. This changes the receiver's status from Disabled to Enabled. This operation is only supported for Email or SMS receivers.", + "operationId": "ActionGroups_EnableReceiver", + "x-ms-examples": { + "Enable the receiver": { + "$ref": "./examples/enableReceiver.json" + } }, - "ActionGroup": { - "description": "An Azure action group.", - "properties": { - "groupShortName": { - "type": "string", - "maxLength": 12, - "description": "The short name of the action group. This will be used in SMS messages." - }, - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its receivers will receive communications." - }, - "emailReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/EmailReceiver" - }, - "description": "The list of email receivers that are part of this action group." - }, - "smsReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/SmsReceiver" - }, - "description": "The list of SMS receivers that are part of this action group." - }, - "webhookReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/WebhookReceiver" - }, - "description": "The list of webhook receivers that are part of this action group." - }, - "itsmReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/ItsmReceiver" - }, - "description": "The list of ITSM receivers that are part of this action group." - }, - "azureAppPushReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AzureAppPushReceiver" - }, - "description": "The list of AzureAppPush receivers that are part of this action group." - }, - "automationRunbookReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AutomationRunbookReceiver" - }, - "description": "The list of AutomationRunbook receivers that are part of this action group." - }, - "voiceReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/VoiceReceiver" - }, - "description": "The list of voice receivers that are part of this action group." - }, - "logicAppReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/LogicAppReceiver" - }, - "description": "The list of logic app receivers that are part of this action group." - }, - "azureFunctionReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AzureFunctionReceiver" - }, - "description": "The list of azure function receivers that are part of this action group." - } - }, - "required": [ - "groupShortName", - "enabled" - ] - }, - "EmailReceiver": { - "description": "An email receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the email receiver. Names must be unique across all receivers within an action group." - }, - "emailAddress": { - "type": "string", - "description": "The email address of this receiver." - }, - "status": { - "readOnly": true, - "$ref": "#/definitions/ReceiverStatus", - "description": "The receiver status of the e-mail." - } - }, - "required": [ - "name", - "emailAddress" - ] - }, - "SmsReceiver": { - "description": "An SMS receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the SMS receiver. Names must be unique across all receivers within an action group." - }, - "countryCode": { - "type": "string", - "description": "The country code of the SMS receiver." - }, - "phoneNumber": { - "type": "string", - "description": "The phone number of the SMS receiver." - }, - "status": { - "readOnly": true, - "$ref": "#/definitions/ReceiverStatus", - "description": "The status of the receiver." - } - }, - "required": [ - "name", - "countryCode", - "phoneNumber" - ] - }, - "WebhookReceiver": { - "description": "A webhook receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the webhook receiver. Names must be unique across all receivers within an action group." - }, - "serviceUri": { - "type": "string", - "description": "The URI where webhooks should be sent." - } - }, - "required": [ - "name", - "serviceUri" - ] - }, - "ItsmReceiver": { - "description": "An Itsm receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the Itsm receiver. Names must be unique across all receivers within an action group." - }, - "workspaceId": { - "type": "string", - "description": "OMS LA instance identifier." - }, - "connectionId": { - "type": "string", - "description": "Unique identification of ITSM connection among multiple defined in above workspace." - }, - "ticketConfiguration": { - "type": "string", - "description": "JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well." - }, - "region": { - "type": "string", - "description": "Region in which workspace resides. Supported values:'centralindia','japaneast','southeastasia','australiasoutheast','uksouth','westcentralus','canadacentral','eastus','westeurope'" - } - }, - "required": [ - "name", - "workspaceId", - "connectionId", - "ticketConfiguration", - "region" - ] - }, - "AzureAppPushReceiver": { - "description": "The Azure mobile App push notification receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group." - }, - "emailAddress": { - "type": "string", - "description": "The email address registered for the Azure mobile app." - } - }, - "required": [ - "name", - "emailAddress" - ] - }, - "AutomationRunbookReceiver": { - "description": "The Azure Automation Runbook notification receiver.", - "properties": { - "automationAccountId": { - "type": "string", - "description": "The Azure automation account Id which holds this runbook and authenticate to Azure resource." - }, - "runbookName": { - "type": "string", - "description": "The name for this runbook." - }, - "webhookResourceId": { - "type": "string", - "description": "The resource id for webhook linked to this runbook." - }, - "isGlobalRunbook": { - "type": "boolean", - "description": "Indicates whether this instance is global runbook." - }, - "name": { - "type": "string", - "description": "Indicates name of the webhook." - }, - "serviceUri": { - "type": "string", - "description": "The URI where webhooks should be sent." - } - }, - "required": [ - "automationAccountId", - "runbookName", - "webhookResourceId", - "isGlobalRunbook" - ] - }, - "VoiceReceiver": { - "description": "A voice receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the voice receiver. Names must be unique across all receivers within an action group." - }, - "countryCode": { - "type": "string", - "description": "The country code of the voice receiver." - }, - "phoneNumber": { - "type": "string", - "description": "The phone number of the voice receiver." - } - }, - "required": [ - "name", - "countryCode", - "phoneNumber" - ] - }, - "LogicAppReceiver": { - "description": "A logic app receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the logic app receiver. Names must be unique across all receivers within an action group." - }, - "resourceId": { - "type": "string", - "description": "The azure resource id of the logic app receiver." - }, - "callbackUrl": { - "type": "string", - "description": "The callback url where http request sent to." - } - }, - "required": [ - "name", - "resourceId", - "callbackUrl" - ] - }, - "AzureFunctionReceiver": { - "description": "An azure function receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the azure function receiver. Names must be unique across all receivers within an action group." - }, - "functionAppResourceId": { - "type": "string", - "description": "The azure resource id of the function app." - }, - "functionName": { - "type": "string", - "description": "The function name in the function app." - }, - "httpTriggerUrl": { - "type": "string", - "description": "The http trigger url where http request sent to." - } - }, - "required": [ - "name", - "functionAppResourceId", - "functionName", - "httpTriggerUrl" - ] - }, - "ReceiverStatus": { - "type": "string", - "enum": [ - "NotSpecified", - "Enabled", - "Disabled" - ], - "x-ms-enum": { - "name": "ReceiverStatus", - "modelAsString": false - }, - "description": "Indicates the status of the receiver. Receivers that are not Enabled will not receive any communications." - }, - "EnableRequest": { - "description": "Describes a receiver that should be resubscribed.", - "properties": { - "receiverName": { - "type": "string", - "description": "The name of the receiver to resubscribe." - } + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "name": "enableRequest", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/EnableRequest" }, - "required": [ - "receiverName" - ] - }, - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } + "description": "The receiver to re-enable." + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The receiver was successfully enabled." + }, + "409": { + "description": "The receiver is already enabled in the action group." + }, + "default": { + "description": "An error occurred and the receiver could not be enabled, e.g.: 404: The action group was not found or no matching receiver was found in the action group.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + } + }, + "definitions": { + "Resource": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Azure resource Id" }, - "ActionGroupPatchBody": { - "description": "An action group object for the body of patch operations.", - "properties": { - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActionGroupPatch", - "description": "The action group settings for an update operation." - } - } + "name": { + "type": "string", + "readOnly": true, + "description": "Azure resource name" }, - "ActionGroupPatch": { - "description": "An Azure action group for patch operations.", - "properties": { - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its actions will be activated." - } - } + "type": { + "type": "string", + "readOnly": true, + "description": "Azure resource type" + }, + "location": { + "type": "string", + "description": "Resource location", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true, + "description": "An azure resource object" }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "The Azure subscription Id." + "ActionGroupResource": { + "description": "An action group resource.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActionGroup", + "description": "The action groups properties of the resource." + } + } + }, + "ActionGroupList": { + "description": "A list of action groups.", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ActionGroupResource" + }, + "description": "The list of action groups." }, - "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group.", - "x-ms-parameter-location": "method" + "nextLink": { + "type": "string", + "description": "Provides the link to retrieve the next set of elements." + } + } + }, + "ActionGroup": { + "description": "An Azure action group.", + "properties": { + "groupShortName": { + "type": "string", + "maxLength": 12, + "description": "The short name of the action group. This will be used in SMS messages." }, - "ActionGroupNameParameter": { - "name": "actionGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the action group.", - "x-ms-parameter-location": "method" + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its receivers will receive communications." }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." + "emailReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/EmailReceiver" + }, + "description": "The list of email receivers that are part of this action group." + }, + "smsReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/SmsReceiver" + }, + "description": "The list of SMS receivers that are part of this action group." + }, + "webhookReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/WebhookReceiver" + }, + "description": "The list of webhook receivers that are part of this action group." + }, + "itsmReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/ItsmReceiver" + }, + "description": "The list of ITSM receivers that are part of this action group." + }, + "azureAppPushReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AzureAppPushReceiver" + }, + "description": "The list of AzureAppPush receivers that are part of this action group." + }, + "automationRunbookReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AutomationRunbookReceiver" + }, + "description": "The list of AutomationRunbook receivers that are part of this action group." + }, + "voiceReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/VoiceReceiver" + }, + "description": "The list of voice receivers that are part of this action group." + }, + "logicAppReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/LogicAppReceiver" + }, + "description": "The list of logic app receivers that are part of this action group." + }, + "azureFunctionReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AzureFunctionReceiver" + }, + "description": "The list of azure function receivers that are part of this action group." + } + }, + "required": [ + "groupShortName", + "enabled" + ] + }, + "EmailReceiver": { + "description": "An email receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the email receiver. Names must be unique across all receivers within an action group." + }, + "emailAddress": { + "type": "string", + "description": "The email address of this receiver." + }, + "status": { + "readOnly": true, + "$ref": "#/definitions/ReceiverStatus", + "description": "The receiver status of the e-mail." + } + }, + "required": [ + "name", + "emailAddress" + ] + }, + "SmsReceiver": { + "description": "An SMS receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the SMS receiver. Names must be unique across all receivers within an action group." + }, + "countryCode": { + "type": "string", + "description": "The country code of the SMS receiver." + }, + "phoneNumber": { + "type": "string", + "description": "The phone number of the SMS receiver." + }, + "status": { + "readOnly": true, + "$ref": "#/definitions/ReceiverStatus", + "description": "The status of the receiver." } + }, + "required": [ + "name", + "countryCode", + "phoneNumber" + ] + }, + "WebhookReceiver": { + "description": "A webhook receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the webhook receiver. Names must be unique across all receivers within an action group." + }, + "serviceUri": { + "type": "string", + "description": "The URI where webhooks should be sent." + } + }, + "required": [ + "name", + "serviceUri" + ] + }, + "ItsmReceiver": { + "description": "An Itsm receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the Itsm receiver. Names must be unique across all receivers within an action group." + }, + "workspaceId": { + "type": "string", + "description": "OMS LA instance identifier." + }, + "connectionId": { + "type": "string", + "description": "Unique identification of ITSM connection among multiple defined in above workspace." + }, + "ticketConfiguration": { + "type": "string", + "description": "JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well." + }, + "region": { + "type": "string", + "description": "Region in which workspace resides. Supported values:'centralindia','japaneast','southeastasia','australiasoutheast','uksouth','westcentralus','canadacentral','eastus','westeurope'" + } + }, + "required": [ + "name", + "workspaceId", + "connectionId", + "ticketConfiguration", + "region" + ] + }, + "AzureAppPushReceiver": { + "description": "The Azure mobile App push notification receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group." + }, + "emailAddress": { + "type": "string", + "description": "The email address registered for the Azure mobile app." + } + }, + "required": [ + "name", + "emailAddress" + ] + }, + "AutomationRunbookReceiver": { + "description": "The Azure Automation Runbook notification receiver.", + "properties": { + "automationAccountId": { + "type": "string", + "description": "The Azure automation account Id which holds this runbook and authenticate to Azure resource." + }, + "runbookName": { + "type": "string", + "description": "The name for this runbook." + }, + "webhookResourceId": { + "type": "string", + "description": "The resource id for webhook linked to this runbook." + }, + "isGlobalRunbook": { + "type": "boolean", + "description": "Indicates whether this instance is global runbook." + }, + "name": { + "type": "string", + "description": "Indicates name of the webhook." + }, + "serviceUri": { + "type": "string", + "description": "The URI where webhooks should be sent." + } + }, + "required": [ + "automationAccountId", + "runbookName", + "webhookResourceId", + "isGlobalRunbook" + ] + }, + "VoiceReceiver": { + "description": "A voice receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the voice receiver. Names must be unique across all receivers within an action group." + }, + "countryCode": { + "type": "string", + "description": "The country code of the voice receiver." + }, + "phoneNumber": { + "type": "string", + "description": "The phone number of the voice receiver." + } + }, + "required": [ + "name", + "countryCode", + "phoneNumber" + ] + }, + "LogicAppReceiver": { + "description": "A logic app receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the logic app receiver. Names must be unique across all receivers within an action group." + }, + "resourceId": { + "type": "string", + "description": "The azure resource id of the logic app receiver." + }, + "callbackUrl": { + "type": "string", + "description": "The callback url where http request sent to." + } + }, + "required": [ + "name", + "resourceId", + "callbackUrl" + ] + }, + "AzureFunctionReceiver": { + "description": "An azure function receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the azure function receiver. Names must be unique across all receivers within an action group." + }, + "functionAppResourceId": { + "type": "string", + "description": "The azure resource id of the function app." + }, + "functionName": { + "type": "string", + "description": "The function name in the function app." + }, + "httpTriggerUrl": { + "type": "string", + "description": "The http trigger url where http request sent to." + } + }, + "required": [ + "name", + "functionAppResourceId", + "functionName", + "httpTriggerUrl" + ] + }, + "ReceiverStatus": { + "type": "string", + "enum": [ + "NotSpecified", + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "ReceiverStatus", + "modelAsString": false + }, + "description": "Indicates the status of the receiver. Receivers that are not Enabled will not receive any communications." + }, + "EnableRequest": { + "description": "Describes a receiver that should be resubscribed.", + "properties": { + "receiverName": { + "type": "string", + "description": "The name of the receiver to resubscribe." + } + }, + "required": [ + "receiverName" + ] + }, + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" + } + } + }, + "ActionGroupPatchBody": { + "description": "An action group object for the body of patch operations.", + "properties": { + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActionGroupPatch", + "description": "The action group settings for an update operation." + } + } + }, + "ActionGroupPatch": { + "description": "An Azure action group for patch operations.", + "properties": { + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its actions will be activated." + } + } + } + }, + "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" + }, + "ActionGroupNameParameter": { + "name": "actionGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the action group.", + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } + } } diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/UpdateMetricAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/UpdateMetricAlert.json index 627786075af7..1688705d89ce 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/UpdateMetricAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/UpdateMetricAlert.json @@ -19,11 +19,10 @@ "odata.type": "Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria", "allOf": [ { - "criterionType":"StaticThresholdCriterion", + "criterionType": "StaticThresholdCriterion", "name": "High_CPU_80", "metricName": "\\Processor(_Total)\\% Processor Time", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" @@ -66,18 +65,17 @@ "odata.type": "Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria", "allOf": [ { - "criterionType":"StaticThresholdCriterion", + "criterionType": "StaticThresholdCriterion", "name": "High_CPU_80", "metricName": "\\Processor(_Total)\\% Processor Time", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" } ] }, - "autoMitigate":false, + "autoMitigate": false, "actions": [ { "actionGroupId": "/subscriptions/14ddf0c5-77c5-4b53-84f6-e1fa43ad68f7/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", @@ -91,4 +89,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateActionGroup.json index 5fcb558496b9..da0f49efd6ab 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateActionGroup.json @@ -1,279 +1,279 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2018-03-01", - "actionGroup": { - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com" - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" - } - ], - "voiceReceivers": [ - { - "name": "Sample voice", - "countryCode": "1", - "phoneNumber": "1234567890" - } - ], - "logicAppReceivers": [ - { - "name": "Sample logicApp", - "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", - "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" - } - ], - "azureFunctionReceivers": [ - { - "name": "Sample azureFunction", - "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", - "functionName": "HttpTriggerCSharp1", - "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" - } - ] + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2018-03-01", + "actionGroup": { + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" + } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" + } + ], + "voiceReceivers": [ + { + "name": "Sample voice", + "countryCode": "1", + "phoneNumber": "1234567890" + } + ], + "logicAppReceivers": [ + { + "name": "Sample logicApp", + "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", + "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" + } + ], + "azureFunctionReceivers": [ + { + "name": "Sample azureFunction", + "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", + "functionName": "HttpTriggerCSharp1", + "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" + } + ] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" + } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" + } + ], + "voiceReceivers": [ + { + "name": "Sample voice", + "countryCode": "1", + "phoneNumber": "1234567890" + } + ], + "logicAppReceivers": [ + { + "name": "Sample logicApp", + "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", + "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" } + ], + "azureFunctionReceivers": [ + { + "name": "Sample azureFunction", + "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", + "functionName": "HttpTriggerCSharp1", + "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" + } + ] } + } }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled" - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" - } - ], - "voiceReceivers": [ - { - "name": "Sample voice", - "countryCode": "1", - "phoneNumber": "1234567890" - } - ], - "logicAppReceivers": [ - { - "name": "Sample logicApp", - "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", - "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" - } - ], - "azureFunctionReceivers": [ - { - "name": "Sample azureFunction", - "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", - "functionName": "HttpTriggerCSharp1", - "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" - } - ] - } + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" + } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" + } + ], + "voiceReceivers": [ + { + "name": "Sample voice", + "countryCode": "1", + "phoneNumber": "1234567890" + } + ], + "logicAppReceivers": [ + { + "name": "Sample logicApp", + "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", + "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" } - }, - "201": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled" - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" - } - ], - "voiceReceivers": [ - { - "name": "Sample voice", - "countryCode": "1", - "phoneNumber": "1234567890" - } - ], - "logicAppReceivers": [ - { - "name": "Sample logicApp", - "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", - "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" - } - ], - "azureFunctionReceivers": [ - { - "name": "Sample azureFunction", - "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", - "functionName": "HttpTriggerCSharp1", - "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" - } - ] - } + ], + "azureFunctionReceivers": [ + { + "name": "Sample azureFunction", + "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", + "functionName": "HttpTriggerCSharp1", + "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateDynamicMetricAlertMultipleResource.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateDynamicMetricAlertMultipleResource.json index 35e8264e7de9..ee68510b86c7 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateDynamicMetricAlertMultipleResource.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateDynamicMetricAlertMultipleResource.json @@ -1,12 +1,66 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "gigtest", + "ruleName": "MetricAlertOnMultipleResources", + "api-version": "2018-03-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "gigtest", - "ruleName": "MetricAlertOnMultipleResources", - "api-version": "2018-03-01", - "parameters": { + "location": "global", + "tags": {}, + "properties": { + "description": "This is the description of the rule1", + "severity": 3, + "enabled": true, + "scopes": [ + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme1", + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme2" + ], + "evaluationFrequency": "PT1M", + "windowSize": "PT15M", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", + "criteria": { + "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", + "allOf": [ + { + "criterionType": "DynamicThresholdCriterion", + "name": "High_CPU_80", + "metricName": "Percentage CPU", + "metricNamespace": "microsoft.compute/virtualmachines", + "operator": "GreaterOrLessThan", + "timeAggregation": "Average", + "dimensions": [], + "alertSensitivity": "Medium", + "failingPeriods": { + "numberOfEvaluationPeriods": 4, + "minFailingPeriodsToAlert": 4 + } + } + ] + }, + "autoMitigate": false, + "actions": [ + { + "actionGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", + "webhookProperties": { + "key11": "value11", + "key12": "value12" + } + } + ] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/providers/microsoft.insights/metricalerts/MetricAlertOnMultipleResources", + "type": "Microsoft.Insights/metricAlerts", "location": "global", - "tags": {}, + "tags": { + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" + }, "properties": { "description": "This is the description of the rule1", "severity": 3, @@ -17,8 +71,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -32,8 +86,8 @@ "dimensions": [], "alertSensitivity": "Medium", "failingPeriods": { - "numberOfEvaluationPeriods": 4, - "minFailingPeriodsToAlert": 4 + "numberOfEvaluationPeriods": 4, + "minFailingPeriodsToAlert": 4 } } ] @@ -50,60 +104,6 @@ ] } } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/providers/microsoft.insights/metricalerts/MetricAlertOnMultipleResources", - "type": "Microsoft.Insights/metricAlerts", - "location": "global", - "tags": { - "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" - }, - "properties": { - "description": "This is the description of the rule1", - "severity": 3, - "enabled": true, - "scopes": [ - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme1", - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme2" - ], - "evaluationFrequency": "PT1M", - "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", - "criteria": { - "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", - "allOf": [ - { - "criterionType": "DynamicThresholdCriterion", - "name": "High_CPU_80", - "metricName": "Percentage CPU", - "metricNamespace": "microsoft.compute/virtualmachines", - "operator": "GreaterOrLessThan", - "timeAggregation": "Average", - "dimensions": [], - "alertSensitivity": "Medium", - "failingPeriods": { - "numberOfEvaluationPeriods": 4, - "minFailingPeriodsToAlert": 4 - } - } - ] - }, - "autoMitigate":false, - "actions": [ - { - "actionGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", - "webhookProperties": { - "key11": "value11", - "key12": "value12" - } - } - ] - } - } - } } } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateDynamicMetricAlertSingleResource.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateDynamicMetricAlertSingleResource.json index 59765d180233..3fdd3df3ad4e 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateDynamicMetricAlertSingleResource.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateDynamicMetricAlertSingleResource.json @@ -1,12 +1,66 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "gigtest", + "ruleName": "chiricutin", + "api-version": "2018-03-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "gigtest", - "ruleName": "chiricutin", - "api-version": "2018-03-01", - "parameters": { + "location": "global", + "tags": {}, + "properties": { + "description": "This is the description of the rule1", + "severity": 3, + "enabled": true, + "scopes": [ + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme" + ], + "evaluationFrequency": "PT1M", + "windowSize": "PT15M", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", + "criteria": { + "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", + "allOf": [ + { + "criterionType": "DynamicThresholdCriterion", + "name": "High_CPU_80", + "metricName": "Percentage CPU", + "metricNamespace": "microsoft.compute/virtualmachines", + "operator": "GreaterOrLessThan", + "timeAggregation": "Average", + "dimensions": [], + "alertSensitivity": "Medium", + "failingPeriods": { + "numberOfEvaluationPeriods": 4, + "minFailingPeriodsToAlert": 4 + }, + "ignoreDataBefore": "2019-04-04T21:00:00.000Z" + } + ] + }, + "autoMitigate": false, + "actions": [ + { + "actionGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", + "webhookProperties": { + "key11": "value11", + "key12": "value12" + } + } + ] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/providers/microsoft.insights/metricalerts/chiricutin", + "type": "Microsoft.Insights/metricAlerts", "location": "global", - "tags": {}, + "tags": { + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" + }, "properties": { "description": "This is the description of the rule1", "severity": 3, @@ -16,8 +70,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -31,8 +85,8 @@ "dimensions": [], "alertSensitivity": "Medium", "failingPeriods": { - "numberOfEvaluationPeriods": 4, - "minFailingPeriodsToAlert": 4 + "numberOfEvaluationPeriods": 4, + "minFailingPeriodsToAlert": 4 }, "ignoreDataBefore": "2019-04-04T21:00:00.000Z" } @@ -50,60 +104,6 @@ ] } } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/providers/microsoft.insights/metricalerts/chiricutin", - "type": "Microsoft.Insights/metricAlerts", - "location": "global", - "tags": { - "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" - }, - "properties": { - "description": "This is the description of the rule1", - "severity": 3, - "enabled": true, - "scopes": [ - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme" - ], - "evaluationFrequency": "PT1M", - "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", - "criteria": { - "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", - "allOf": [ - { - "criterionType": "DynamicThresholdCriterion", - "name": "High_CPU_80", - "metricName": "Percentage CPU", - "metricNamespace": "microsoft.compute/virtualmachines", - "operator": "GreaterOrLessThan", - "timeAggregation": "Average", - "dimensions": [], - "alertSensitivity": "Medium", - "failingPeriods": { - "numberOfEvaluationPeriods": 4, - "minFailingPeriodsToAlert": 4 - }, - "ignoreDataBefore": "2019-04-04T21:00:00.000Z" - } - ] - }, - "autoMitigate":false, - "actions": [ - { - "actionGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", - "webhookProperties": { - "key11": "value11", - "key12": "value12" - } - } - ] - } - } - } } - } \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertMultipleResource.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertMultipleResource.json index fba5379d0fb2..50e3275420f9 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertMultipleResource.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertMultipleResource.json @@ -17,8 +17,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -27,8 +27,7 @@ "name": "High_CPU_80", "metricName": "Percentage CPU", "metricNamespace": "microsoft.compute/virtualmachines", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" @@ -68,8 +67,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -78,15 +77,14 @@ "name": "High_CPU_80", "metricName": "Percentage CPU", "metricNamespace": "microsoft.compute/virtualmachines", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" } ] }, - "autoMitigate":false, + "autoMitigate": false, "actions": [ { "actionGroupId": "/subscriptions/14ddf0c5-77c5-4b53-84f6-e1fa43ad68f7/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", @@ -100,4 +98,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertResourceGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertResourceGroup.json index 907f73e9c2f8..7b2bb11cd113 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertResourceGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertResourceGroup.json @@ -17,8 +17,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -27,8 +27,7 @@ "name": "High_CPU_80", "metricName": "Percentage CPU", "metricNamespace": "microsoft.compute/virtualmachines", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" @@ -68,8 +67,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -78,15 +77,14 @@ "name": "High_CPU_80", "metricName": "Percentage CPU", "metricNamespace": "microsoft.compute/virtualmachines", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" } ] }, - "autoMitigate":false, + "autoMitigate": false, "actions": [ { "actionGroupId": "/subscriptions/14ddf0c5-77c5-4b53-84f6-e1fa43ad68f7/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", @@ -100,4 +98,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertSingleResource.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertSingleResource.json index c7aa4f165acf..4065627efa3f 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertSingleResource.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertSingleResource.json @@ -23,8 +23,7 @@ "criterionType": "StaticThresholdCriterion", "name": "High_CPU_80", "metricName": "\\Processor(_Total)\\% Processor Time", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" @@ -70,15 +69,14 @@ "criterionType": "StaticThresholdCriterion", "name": "High_CPU_80", "metricName": "\\Processor(_Total)\\% Processor Time", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" } ] }, - "autoMitigate":false, + "autoMitigate": false, "actions": [ { "actionGroupId": "/subscriptions/14ddf0c5-77c5-4b53-84f6-e1fa43ad68f7/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", @@ -92,4 +90,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertSubscription.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertSubscription.json index 09c9cf710d19..918d07dd4620 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertSubscription.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/createOrUpdateMetricAlertSubscription.json @@ -16,8 +16,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -26,8 +26,7 @@ "name": "High_CPU_80", "metricName": "Percentage CPU", "metricNamespace": "microsoft.compute/virtualmachines", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" @@ -66,8 +65,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -76,15 +75,14 @@ "name": "High_CPU_80", "metricName": "Percentage CPU", "metricNamespace": "microsoft.compute/virtualmachines", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" } ] }, - "autoMitigate":false, + "autoMitigate": false, "actions": [ { "actionGroupId": "/subscriptions/14ddf0c5-77c5-4b53-84f6-e1fa43ad68f7/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", @@ -98,4 +96,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/deleteActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/deleteActionGroup.json index ff8db9749d27..f28ccba95fc6 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/deleteActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/deleteActionGroup.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2018-03-01" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2018-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/deleteMetricAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/deleteMetricAlert.json index 79076b517119..86808cb7c95a 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/deleteMetricAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/deleteMetricAlert.json @@ -15,4 +15,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/enableReceiver.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/enableReceiver.json index cb085170b440..768e38c7c9dd 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/enableReceiver.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/enableReceiver.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2018-03-01", - "enableRequest": { - "receiverName": "John Doe's mobile" - } + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2018-03-01", + "enableRequest": { + "receiverName": "John Doe's mobile" + } + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "409": { - "headers": {}, - "body": null - } + "409": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getActionGroup.json index a7573f481272..ccdf6dfa0e57 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getActionGroup.json @@ -1,56 +1,56 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2018-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Disabled" - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Disabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ] - } + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2018-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Disabled" } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Disabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getDynamicMetricAlertMultipleResource.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getDynamicMetricAlertMultipleResource.json index 5ac5532e4c23..8869f07a8571 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getDynamicMetricAlertMultipleResource.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getDynamicMetricAlertMultipleResource.json @@ -1,63 +1,63 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "gigtest", - "ruleName": "MetricAlertOnMultipleResources", - "api-version": "2018-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/providers/microsoft.insights/metricalerts/MetricAlertOnMultipleResources", - "type": "Microsoft.Insights/metricAlerts", - "location": "global", - "tags": { - "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" - }, - "properties": { - "description": "This is the description of the rule1", - "severity": 3, - "enabled": true, - "scopes": [ - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme1", - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme2" - ], - "evaluationFrequency": "PT1M", - "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", - "criteria": { - "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", - "allOf": [ - { - "criterionType": "DynamicThresholdCriterion", - "name": "High_CPU_80", - "metricName": "Percentage CPU", - "metricNamespace": "microsoft.compute/virtualmachines", - "operator": "GreaterOrLessThan", - "timeAggregation": "Average", - "dimensions": [], - "alertSensitivity": "Medium", - "failingPeriods": { - "numberOfEvaluationPeriods": 4, - "minFailingPeriodsToAlert": 4 - } - } - ] - }, - "autoMitigate": false, - "actions": [ + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "gigtest", + "ruleName": "MetricAlertOnMultipleResources", + "api-version": "2018-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/providers/microsoft.insights/metricalerts/MetricAlertOnMultipleResources", + "type": "Microsoft.Insights/metricAlerts", + "location": "global", + "tags": { + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" + }, + "properties": { + "description": "This is the description of the rule1", + "severity": 3, + "enabled": true, + "scopes": [ + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme1", + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme2" + ], + "evaluationFrequency": "PT1M", + "windowSize": "PT15M", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", + "criteria": { + "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", + "allOf": [ { - "actionGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", - "webhookProperties": { - "key11": "value11", - "key12": "value12" + "criterionType": "DynamicThresholdCriterion", + "name": "High_CPU_80", + "metricName": "Percentage CPU", + "metricNamespace": "microsoft.compute/virtualmachines", + "operator": "GreaterOrLessThan", + "timeAggregation": "Average", + "dimensions": [], + "alertSensitivity": "Medium", + "failingPeriods": { + "numberOfEvaluationPeriods": 4, + "minFailingPeriodsToAlert": 4 } } ] - } + }, + "autoMitigate": false, + "actions": [ + { + "actionGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", + "webhookProperties": { + "key11": "value11", + "key12": "value12" + } + } + ] } } } - } \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getDynamicMetricAlertSingleResource.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getDynamicMetricAlertSingleResource.json index 3434c835ef0e..54d46d2c1ac8 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getDynamicMetricAlertSingleResource.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getDynamicMetricAlertSingleResource.json @@ -1,61 +1,61 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "gigtest", - "ruleName": "chiricutin", - "api-version": "2018-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/providers/microsoft.insights/metricalerts/chiricutin", - "type": "Microsoft.Insights/metricAlerts", - "location": "global", - "tags": { - "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" - }, - "properties": { - "description": "This is the description of the rule1", - "severity": 3, - "enabled": true, - "scopes": [ - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme" - ], - "evaluationFrequency": "Pt1m", - "windowSize": "Pt15m", - "criteria": { - "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", - "allOf": [ - { - "criterionType": "DynamicThresholdCriterion", - "name": "High_CPU_80", - "metricName": "Percentage CPU", - "metricNamespace": "microsoft.compute/virtualmachines", - "operator": "GreaterOrLessThan", - "timeAggregation": "Average", - "dimensions": [], - "alertSensitivity": "Medium", - "failingPeriods": { - "numberOfEvaluationPeriods": 4, - "minFailingPeriodsToAlert": 4 - }, - "ignoreDataBefore": null - } - ] - }, - "autoMitigate": false, - "actions": [ + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "gigtest", + "ruleName": "chiricutin", + "api-version": "2018-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/providers/microsoft.insights/metricalerts/chiricutin", + "type": "Microsoft.Insights/metricAlerts", + "location": "global", + "tags": { + "hidden-link:/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/Microsoft.Web/sites/leoalerttest": "Resource" + }, + "properties": { + "description": "This is the description of the rule1", + "severity": 3, + "enabled": true, + "scopes": [ + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gigtest/providers/Microsoft.Compute/virtualMachines/gigwadme" + ], + "evaluationFrequency": "Pt1m", + "windowSize": "Pt15m", + "criteria": { + "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", + "allOf": [ { - "actionGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", - "webhookProperties": { - "key11": "value11", - "key12": "value12" - } + "criterionType": "DynamicThresholdCriterion", + "name": "High_CPU_80", + "metricName": "Percentage CPU", + "metricNamespace": "microsoft.compute/virtualmachines", + "operator": "GreaterOrLessThan", + "timeAggregation": "Average", + "dimensions": [], + "alertSensitivity": "Medium", + "failingPeriods": { + "numberOfEvaluationPeriods": 4, + "minFailingPeriodsToAlert": 4 + }, + "ignoreDataBefore": null } ] - } + }, + "autoMitigate": false, + "actions": [ + { + "actionGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/gigtest/providers/microsoft.insights/notificationgroups/group2", + "webhookProperties": { + "key11": "value11", + "key12": "value12" + } + } + ] } } } - } \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertMultipleResource.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertMultipleResource.json index 789b5b34b10e..853015d49de3 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertMultipleResource.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertMultipleResource.json @@ -25,8 +25,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -35,8 +35,7 @@ "name": "High_CPU_80", "metricName": "Percentage CPU", "metricNamespace": "microsoft.compute/virtualmachines", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" @@ -57,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertResourceGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertResourceGroup.json index 9ab3285b8179..00e5d33bd202 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertResourceGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertResourceGroup.json @@ -25,8 +25,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -35,8 +35,7 @@ "name": "High_CPU_80", "metricName": "Percentage CPU", "metricNamespace": "microsoft.compute/virtualmachines", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" @@ -57,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertSingleResource.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertSingleResource.json index 510dd835dfb5..c6ab3a033c42 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertSingleResource.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertSingleResource.json @@ -28,11 +28,10 @@ "odata.type": "Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria", "allOf": [ { - "criterionType":"StaticThresholdCriterion", + "criterionType": "StaticThresholdCriterion", "name": "High_CPU_80", "metricName": "\\Processor(_Total)\\% Processor Time", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" @@ -53,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertStatus.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertStatus.json index a3d593e53669..cf2123868ab7 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertStatus.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertStatus.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertStatusByName.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertStatusByName.json index 7bd82721d5f6..92742ea3d426 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertStatusByName.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertStatusByName.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertSubscription.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertSubscription.json index 1fb0e39afe36..9c323b96999c 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertSubscription.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/getMetricAlertSubscription.json @@ -24,8 +24,8 @@ ], "evaluationFrequency": "PT1M", "windowSize": "PT15M", - "targetResourceType":"Microsoft.Compute/virtualMachines", - "targetResourceRegion":"southcentralus", + "targetResourceType": "Microsoft.Compute/virtualMachines", + "targetResourceRegion": "southcentralus", "criteria": { "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "allOf": [ @@ -34,8 +34,7 @@ "name": "High_CPU_80", "metricName": "Percentage CPU", "metricNamespace": "microsoft.compute/virtualmachines", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" @@ -56,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/listActionGroups.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/listActionGroups.json index ebc446f2bac6..5206b3234761 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/listActionGroups.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/listActionGroups.json @@ -1,86 +1,86 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "api-version": "2018-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Disabled" - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Disabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ] - } - }, - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup2", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup2", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample2", - "enabled": false, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - } - ], - "smsReceivers": [ - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [] - } - } - ] + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "api-version": "2018-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Disabled" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Disabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ] } - } + }, + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup2", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup2", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample2", + "enabled": false, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + } + ], + "smsReceivers": [ + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [] + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/listMetricAlert.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/listMetricAlert.json index b8e115bae254..b2feab27f209 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/listMetricAlert.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/listMetricAlert.json @@ -29,11 +29,10 @@ "odata.type": "Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria", "allOf": [ { - "criterionType":"StaticThresholdCriterion", + "criterionType": "StaticThresholdCriterion", "name": "High_CPU_80", "metricName": "CustomMetric_\\Processor(_Total)\\% Processor Time", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 80.50, "timeAggregation": "Average" @@ -71,11 +70,10 @@ "odata.type": "Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria", "allOf": [ { - "criterionType":"StaticThresholdCriterion", + "criterionType": "StaticThresholdCriterion", "name": "Medium_CPU_50", "metricName": "CustomMetric_\\Processor(_Total)\\% Processor Time", - "dimensions": [ - ], + "dimensions": [], "operator": "GreaterThan", "threshold": 50.50, "timeAggregation": "Average" @@ -97,4 +95,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/patchActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/patchActionGroup.json index df0b9b2b99bb..3004ae6f5a38 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/patchActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/examples/patchActionGroup.json @@ -1,62 +1,68 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2018-03-01", - "actionGroupPatch": { - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "enabled": false + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2018-03-01", + "actionGroupPatch": { + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "enabled": false + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled" } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled" - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ] - } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/metricAlert_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/metricAlert_API.json index 7c7c65bd8648..db9fdcdfb868 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/metricAlert_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-03-01/metricAlert_API.json @@ -9,9 +9,15 @@ "description": "Azure Monitor client to create/update/delete metric based alerts." }, "host": "management.azure.com", - "schemes": [ "https" ], - "consumes": [ "application/json" ], - "produces": [ "application/json" ], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { "azure_auth": [ @@ -33,12 +39,18 @@ "paths": { "/subscriptions/{subscriptionId}/providers/Microsoft.Insights/metricAlerts": { "get": { - "tags": [ "MetricAlerts" ], + "tags": [ + "MetricAlerts" + ], "description": "Retrieve alert rule definitions in a subscription.", "operationId": "MetricAlerts_ListBySubscription", "parameters": [ - { "$ref": "#/parameters/SubscriptionIdParameter" }, - { "$ref": "#/parameters/ApiVersionParameter" } + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } ], "responses": { "200": { @@ -49,26 +61,38 @@ }, "default": { "description": "BadRequest", - "schema": { "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" } + "schema": { + "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" + } } }, "x-ms-pageable": { "nextLinkName": null }, "x-ms-examples": { - "List metric alert rules": { "$ref": "./examples/listMetricAlert.json" } + "List metric alert rules": { + "$ref": "./examples/listMetricAlert.json" + } } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/metricAlerts": { "get": { - "tags": [ "MetricAlerts" ], + "tags": [ + "MetricAlerts" + ], "description": "Retrieve alert rule definitions in a resource group.", "operationId": "MetricAlerts_ListByResourceGroup", "parameters": [ - { "$ref": "#/parameters/SubscriptionIdParameter" }, - { "$ref": "#/parameters/ResourceGroupNameParameter" }, - { "$ref": "#/parameters/ApiVersionParameter" } + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } ], "responses": { "200": { @@ -79,27 +103,41 @@ }, "default": { "description": "BadRequest", - "schema": { "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" } + "schema": { + "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" + } } }, "x-ms-pageable": { "nextLinkName": null }, "x-ms-examples": { - "List metric alert rules": { "$ref": "./examples/listMetricAlert.json" } + "List metric alert rules": { + "$ref": "./examples/listMetricAlert.json" + } } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/metricAlerts/{ruleName}": { "get": { - "tags": [ "MetricAlerts" ], + "tags": [ + "MetricAlerts" + ], "description": "Retrieve an alert rule definition.", "operationId": "MetricAlerts_Get", "parameters": [ - { "$ref": "#/parameters/SubscriptionIdParameter" }, - { "$ref": "#/parameters/ResourceGroupNameParameter" }, - { "$ref": "#/parameters/RuleNameParameter" }, - { "$ref": "#/parameters/ApiVersionParameter" } + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/RuleNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } ], "responses": { "200": { @@ -110,27 +148,51 @@ }, "default": { "description": "BadRequest", - "schema": { "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" } + "schema": { + "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" + } } }, "x-ms-examples": { - "Get an alert rule for single resource": { "$ref": "./examples/getMetricAlertSingleResource.json" }, - "Get an alert rule for multiple resources": { "$ref": "./examples/getMetricAlertMultipleResource.json" }, - "Get an alert rule on resource group(s)": { "$ref": "./examples/getMetricAlertResourceGroup.json" }, - "Get an alert rule on subscription": { "$ref": "./examples/getMetricAlertSubscription.json" }, - "Get a dynamic alert rule for single resource": { "$ref": "./examples/getDynamicMetricAlertSingleResource.json" }, - "Get a dynamic alert rule for multiple resources": { "$ref": "./examples/getDynamicMetricAlertMultipleResource.json" } + "Get an alert rule for single resource": { + "$ref": "./examples/getMetricAlertSingleResource.json" + }, + "Get an alert rule for multiple resources": { + "$ref": "./examples/getMetricAlertMultipleResource.json" + }, + "Get an alert rule on resource group(s)": { + "$ref": "./examples/getMetricAlertResourceGroup.json" + }, + "Get an alert rule on subscription": { + "$ref": "./examples/getMetricAlertSubscription.json" + }, + "Get a dynamic alert rule for single resource": { + "$ref": "./examples/getDynamicMetricAlertSingleResource.json" + }, + "Get a dynamic alert rule for multiple resources": { + "$ref": "./examples/getDynamicMetricAlertMultipleResource.json" + } } }, "put": { - "tags": [ "MetricAlerts" ], + "tags": [ + "MetricAlerts" + ], "description": "Create or update an metric alert definition.", "operationId": "MetricAlerts_CreateOrUpdate", "parameters": [ - { "$ref": "#/parameters/SubscriptionIdParameter" }, - { "$ref": "#/parameters/ResourceGroupNameParameter" }, - { "$ref": "#/parameters/RuleNameParameter" }, - { "$ref": "#/parameters/ApiVersionParameter" }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/RuleNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, { "name": "parameters", "in": "body", @@ -150,27 +212,51 @@ }, "default": { "description": "BadRequest", - "schema": { "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" } + "schema": { + "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" + } } }, "x-ms-examples": { - "Create or update an alert rule for Single Resource": { "$ref": "./examples/createOrUpdateMetricAlertSingleResource.json" }, - "Create or update an alert rule for Multiple Resource": { "$ref": "./examples/createOrUpdateMetricAlertMultipleResource.json" }, - "Create or update an alert rule on Resource group(s)": { "$ref": "./examples/createOrUpdateMetricAlertResourceGroup.json" }, - "Create or update an alert rule on Subscription ": { "$ref": "./examples/createOrUpdateMetricAlertSubscription.json" }, - "Create or update a dynamic alert rule for Single Resource": { "$ref": "./examples/createOrUpdateDynamicMetricAlertSingleResource.json" }, - "Create or update a dynamic alert rule for Multiple Resources": { "$ref": "./examples/createOrUpdateDynamicMetricAlertMultipleResource.json" } + "Create or update an alert rule for Single Resource": { + "$ref": "./examples/createOrUpdateMetricAlertSingleResource.json" + }, + "Create or update an alert rule for Multiple Resource": { + "$ref": "./examples/createOrUpdateMetricAlertMultipleResource.json" + }, + "Create or update an alert rule on Resource group(s)": { + "$ref": "./examples/createOrUpdateMetricAlertResourceGroup.json" + }, + "Create or update an alert rule on Subscription ": { + "$ref": "./examples/createOrUpdateMetricAlertSubscription.json" + }, + "Create or update a dynamic alert rule for Single Resource": { + "$ref": "./examples/createOrUpdateDynamicMetricAlertSingleResource.json" + }, + "Create or update a dynamic alert rule for Multiple Resources": { + "$ref": "./examples/createOrUpdateDynamicMetricAlertMultipleResource.json" + } } }, "patch": { - "tags": [ "MetricAlerts" ], + "tags": [ + "MetricAlerts" + ], "description": "Update an metric alert definition.", "operationId": "MetricAlerts_Update", "parameters": [ - { "$ref": "#/parameters/SubscriptionIdParameter" }, - { "$ref": "#/parameters/ResourceGroupNameParameter" }, - { "$ref": "#/parameters/RuleNameParameter" }, - { "$ref": "#/parameters/ApiVersionParameter" }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/RuleNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, { "name": "parameters", "in": "body", @@ -190,22 +276,36 @@ }, "default": { "description": "BadRequest", - "schema": { "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" } + "schema": { + "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" + } } }, "x-ms-examples": { - "Create or update an alert rule": { "$ref": "./examples/UpdateMetricAlert.json" } + "Create or update an alert rule": { + "$ref": "./examples/UpdateMetricAlert.json" + } } }, "delete": { - "tags": [ "MetricAlerts" ], + "tags": [ + "MetricAlerts" + ], "description": "Delete an alert rule definition.", "operationId": "MetricAlerts_Delete", "parameters": [ - { "$ref": "#/parameters/SubscriptionIdParameter" }, - { "$ref": "#/parameters/ResourceGroupNameParameter" }, - { "$ref": "#/parameters/RuleNameParameter" }, - { "$ref": "#/parameters/ApiVersionParameter" } + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/RuleNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } ], "responses": { "204": { @@ -216,20 +316,32 @@ } }, "x-ms-examples": { - "Delete an alert rule": { "$ref": "./examples/deleteMetricAlert.json" } + "Delete an alert rule": { + "$ref": "./examples/deleteMetricAlert.json" + } } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/metricAlerts/{ruleName}/status": { "get": { - "tags": [ "MetricAlertsStatus" ], + "tags": [ + "MetricAlertsStatus" + ], "description": "Retrieve an alert rule status.", "operationId": "MetricAlertsStatus_List", "parameters": [ - { "$ref": "#/parameters/SubscriptionIdParameter" }, - { "$ref": "#/parameters/ResourceGroupNameParameter" }, - { "$ref": "#/parameters/RuleNameParameter" }, - { "$ref": "#/parameters/ApiVersionParameter" } + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/RuleNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } ], "responses": { "200": { @@ -240,25 +352,41 @@ }, "default": { "description": "BadRequest", - "schema": { "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" } + "schema": { + "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" + } } }, "x-ms-examples": { - "Get an alert rule status": { "$ref": "./examples/getMetricAlertStatus.json" } + "Get an alert rule status": { + "$ref": "./examples/getMetricAlertStatus.json" + } } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/metricAlerts/{ruleName}/status/{statusName}": { "get": { - "tags": [ "MetricAlertsStatus" ], + "tags": [ + "MetricAlertsStatus" + ], "description": "Retrieve an alert rule status.", "operationId": "MetricAlertsStatus_ListByName", "parameters": [ - { "$ref": "#/parameters/SubscriptionIdParameter" }, - { "$ref": "#/parameters/ResourceGroupNameParameter" }, - { "$ref": "#/parameters/RuleNameParameter" }, - { "$ref": "#/parameters/StatusNameParameter" }, - { "$ref": "#/parameters/ApiVersionParameter" } + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/RuleNameParameter" + }, + { + "$ref": "#/parameters/StatusNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } ], "responses": { "200": { @@ -269,11 +397,15 @@ }, "default": { "description": "BadRequest", - "schema": { "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" } + "schema": { + "$ref": "../../stable/2016-03-01/alertRules_API.json#/definitions/ErrorResponse" + } } }, "x-ms-examples": { - "Get an alert rule status": { "$ref": "./examples/getMetricAlertStatusByName.json" } + "Get an alert rule status": { + "$ref": "./examples/getMetricAlertStatusByName.json" + } } } } @@ -373,13 +505,13 @@ "format": "duration", "description": "the period of time (in ISO 8601 duration format) that is used to monitor alert activity based on the threshold." }, - "targetResourceType" :{ - "type" : "string", - "description" : "the resource type of the target resource(s) on which the alert is created/updated. Mandatory for MultipleResourceMultipleMetricCriteria." + "targetResourceType": { + "type": "string", + "description": "the resource type of the target resource(s) on which the alert is created/updated. Mandatory for MultipleResourceMultipleMetricCriteria." }, - "targetResourceRegion" : { - "type" : "string", - "description" : "the region of the target resource(s) on which the alert is created/updated. Mandatory for MultipleResourceMultipleMetricCriteria." + "targetResourceRegion": { + "type": "string", + "description": "the region of the target resource(s) on which the alert is created/updated. Mandatory for MultipleResourceMultipleMetricCriteria." }, "criteria": { "$ref": "#/definitions/MetricAlertCriteria", @@ -387,7 +519,7 @@ }, "autoMitigate": { "type": "boolean", - "description":"the flag that indicates whether the alert should be auto resolved or not." + "description": "the flag that indicates whether the alert should be auto resolved or not." }, "actions": { "type": "array", @@ -510,7 +642,7 @@ "MetricAlertCriteria": { "type": "object", "additionalProperties": { - "type": "object" + "type": "object" }, "discriminator": "odata.type", "properties": { @@ -526,7 +658,9 @@ "description": "specifies the type of the alert criteria." } }, - "required": [ "odata.type" ], + "required": [ + "odata.type" + ], "description": "The rule criteria that defines the conditions of the alert rule." }, "MetricAlertSingleResourceMultipleMetricCriteria": { @@ -556,7 +690,7 @@ "$ref": "#/definitions/MultiMetricCriteria" } ], - "required": [ + "required": [ "operator", "threshold" ], @@ -578,7 +712,7 @@ }, "threshold": { "type": "number", - "format": "double", + "format": "double", "description": "the criteria threshold value that activates the alert." } }, @@ -609,19 +743,19 @@ }, "description": "Specifies a metric dimension." }, - "MetricAlertMultipleResourceMultipleMetricCriteria":{ + "MetricAlertMultipleResourceMultipleMetricCriteria": { "x-ms-discriminator-value": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria", "type": "object", - "allOf":[ + "allOf": [ { - "$ref":"#/definitions/MetricAlertCriteria" + "$ref": "#/definitions/MetricAlertCriteria" } ], - "properties":{ - "allOf":{ + "properties": { + "allOf": { "type": "array", - "items":{ - "$ref":"#/definitions/MultiMetricCriteria" + "items": { + "$ref": "#/definitions/MultiMetricCriteria" }, "description": "the list of multiple metric criteria for this 'all of' operation. " } @@ -633,18 +767,18 @@ "additionalProperties": { "type": "object" }, - "discriminator":"criterionType", - "properties":{ - "criterionType" : { - "enum":[ - "StaticThresholdCriterion", - "DynamicThresholdCriterion" + "discriminator": "criterionType", + "properties": { + "criterionType": { + "enum": [ + "StaticThresholdCriterion", + "DynamicThresholdCriterion" ], - "x-ms-enum" : { - "name" : "criterionType", + "x-ms-enum": { + "name": "criterionType", "modelAsString": true }, - "description":" Specifies the type of threshold criteria" + "description": " Specifies the type of threshold criteria" }, "name": { "type": "string", @@ -679,10 +813,15 @@ "description": "List of dimension conditions." } }, - "required": [ "criterionType", "name", "metricName", "timeAggregation" ], + "required": [ + "criterionType", + "name", + "metricName", + "timeAggregation" + ], "description": "The types of conditions for a multi resource alert." }, - "DynamicMetricCriteria" : { + "DynamicMetricCriteria": { "x-ms-discriminator-value": "DynamicThresholdCriterion", "type": "object", "allOf": [ @@ -690,7 +829,7 @@ "$ref": "#/definitions/MultiMetricCriteria" } ], - "required": [ + "required": [ "operator", "alertSensitivity", "failingPeriods" @@ -709,31 +848,31 @@ "description": "The operator used to compare the metric value against the threshold." }, "alertSensitivity": { - "enum" : [ + "enum": [ "Low", "Medium", "High" ], - "x-ms-enum" : { - "name" : "DynamicThresholdSensitivity", + "x-ms-enum": { + "name": "DynamicThresholdSensitivity", "modelAsString": true }, "description": "The extent of deviation required to trigger an alert. This will affect how tight the threshold is to the metric series pattern." }, - "failingPeriods" : { - "type" : "object", - "$ref" : "#/definitions/DynamicThresholdFailingPeriods", - "description" : "The minimum number of violations required within the selected lookback time window required to raise an alert." + "failingPeriods": { + "type": "object", + "$ref": "#/definitions/DynamicThresholdFailingPeriods", + "description": "The minimum number of violations required within the selected lookback time window required to raise an alert." }, - "ignoreDataBefore" : { - "type" : "string", + "ignoreDataBefore": { + "type": "string", "format": "date-time", - "description" :"Use this option to set the date from which to start learning the metric historical data and calculate the dynamic thresholds (in ISO8601 format)" + "description": "Use this option to set the date from which to start learning the metric historical data and calculate the dynamic thresholds (in ISO8601 format)" } }, "description": "Criterion for dynamic threshold." }, - "DynamicThresholdFailingPeriods" : { + "DynamicThresholdFailingPeriods": { "required": [ "numberOfEvaluationPeriods", "minFailingPeriodsToAlert" diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRule-LogToMetricAction.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRule-LogToMetricAction.json index 3c75479ee262..7d133e6c23b8 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRule-LogToMetricAction.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRule-LogToMetricAction.json @@ -6,7 +6,7 @@ "api-version": "2018-04-16", "parameters": { "location": "West Europe", - "tags": { }, + "tags": {}, "properties": { "description": "log to metric description", "enabled": "true", @@ -33,7 +33,7 @@ "name": "logtometricfoo", "type": "microsoft.insights/scheduledqueryrules", "location": "westeurope", - "tags": { }, + "tags": {}, "properties": { "description": "log to metric description", "displayName": "logtometricfoo", @@ -64,7 +64,7 @@ "name": "logtometricfoo", "type": "microsoft.insights/scheduledqueryrules", "location": "westeurope", - "tags": { }, + "tags": {}, "properties": { "description": "log to metric description", "enabled": "true", @@ -88,4 +88,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRules.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRules.json index bd449c2b5479..da4ba2df9eb5 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRules.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRules.json @@ -6,7 +6,7 @@ "api-version": "2018-04-16", "parameters": { "location": "eastus", - "tags": { }, + "tags": {}, "properties": { "description": "log alert description", "enabled": "true", @@ -51,7 +51,7 @@ "name": "logalertfoo", "type": "Microsoft.Insights/scheduledQueryRules", "location": "eastus", - "tags": { }, + "tags": {}, "properties": { "description": "log alert description", "enabled": "true", @@ -95,7 +95,7 @@ "name": "logalertfoo", "type": "Microsoft.Insights/scheduledQueryRules", "location": "eastus", - "tags": { }, + "tags": {}, "properties": { "description": "log alert description", "enabled": "true", @@ -127,4 +127,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRuleswithCrossResource.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRuleswithCrossResource.json index 464d745e7c53..4f39938e4eec 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRuleswithCrossResource.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/createOrUpdateScheduledQueryRuleswithCrossResource.json @@ -6,7 +6,7 @@ "api-version": "2018-04-16", "parameters": { "location": "eastus", - "tags": { }, + "tags": {}, "properties": { "description": "Sample Cross Resource alert", "enabled": "true", @@ -26,7 +26,9 @@ "action": { "severity": "3", "aznsAction": { - "actionGroup": [ "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/actiongroups/test-ag" ], + "actionGroup": [ + "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/actiongroups/test-ag" + ], "emailSubject": "Cross Resource Mail!!" }, "trigger": { @@ -46,7 +48,7 @@ "name": "SampleCrossResourceAlert", "type": "Microsoft.Insights/scheduledQueryRules", "location": "eastus", - "tags": { }, + "tags": {}, "properties": { "description": "Sample Cross Resource alert", "enabled": "true", @@ -68,7 +70,9 @@ "action": { "severity": "3", "aznsAction": { - "actionGroup": [ "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/actiongroups/test-ag" ], + "actionGroup": [ + "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/actiongroups/test-ag" + ], "emailSubject": "Cross Resource Mail!!" }, "trigger": { @@ -87,7 +91,7 @@ "name": "SampleCrossResourceAlert", "type": "Microsoft.Insights/scheduledQueryRules", "location": "eastus", - "tags": { }, + "tags": {}, "properties": { "description": "Sample Cross Resource alert", "enabled": "true", @@ -109,7 +113,9 @@ "action": { "severity": "3", "aznsAction": { - "actionGroup": [ "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/actiongroups/test-ag" ], + "actionGroup": [ + "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/Rac46PostSwapRG/providers/microsoft.insights/actiongroups/test-ag" + ], "emailSubject": "Cross Resource Mail!!" }, "trigger": { diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/deleteScheduledQueryRules.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/deleteScheduledQueryRules.json index f9fba36800dd..a4c920963d87 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/deleteScheduledQueryRules.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/deleteScheduledQueryRules.json @@ -15,4 +15,4 @@ "body": null } } -} \ No newline at end of file +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/getScheduledQueryRules.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/getScheduledQueryRules.json index 6209f950f657..ae3256f4e092 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/getScheduledQueryRules.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/getScheduledQueryRules.json @@ -13,7 +13,7 @@ "name": "logalertfoo", "type": "Microsoft.Insights/scheduledQueryRules", "location": "West US", - "tags": { }, + "tags": {}, "properties": { "description": "log alert description", "enabled": "true", diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/listScheduledQueryRules.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/listScheduledQueryRules.json index d07a6c2a311a..28e33b126d63 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/listScheduledQueryRules.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/examples/listScheduledQueryRules.json @@ -14,7 +14,7 @@ "name": "logalertfoo", "type": "Microsoft.Insights/scheduledQueryRules", "location": "West US", - "tags": { }, + "tags": {}, "properties": { "description": "log alert description", "enabled": "false", @@ -55,7 +55,7 @@ "name": "logalertfoo", "type": "Microsoft.Insights/scheduledQueryRules", "location": "West US", - "tags": { }, + "tags": {}, "properties": { "description": "log alert description", "enabled": "true", diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/scheduledQueryRule_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/scheduledQueryRule_API.json index 57dad457a726..e39dca56bcb6 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/scheduledQueryRule_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-04-16/scheduledQueryRule_API.json @@ -85,9 +85,15 @@ } }, "x-ms-examples": { - "Create or Update rule - AlertingAction": { "$ref": "./examples/createOrUpdateScheduledQueryRules.json" }, - "Create or Update rule - AlertingAction with Cross-Resource": { "$ref": "./examples/createOrUpdateScheduledQueryRuleswithCrossResource.json" }, - "Create or Update rule - LogToMetricAction": { "$ref": "./examples/createOrUpdateScheduledQueryRule-LogToMetricAction.json" } + "Create or Update rule - AlertingAction": { + "$ref": "./examples/createOrUpdateScheduledQueryRules.json" + }, + "Create or Update rule - AlertingAction with Cross-Resource": { + "$ref": "./examples/createOrUpdateScheduledQueryRuleswithCrossResource.json" + }, + "Create or Update rule - LogToMetricAction": { + "$ref": "./examples/createOrUpdateScheduledQueryRule-LogToMetricAction.json" + } } }, "get": { @@ -125,18 +131,30 @@ } }, "x-ms-examples": { - "Get rule": { "$ref": "./examples/getScheduledQueryRules.json" } + "Get rule": { + "$ref": "./examples/getScheduledQueryRules.json" + } } }, "patch": { - "tags": [ "scheduledQueryRules" ], + "tags": [ + "scheduledQueryRules" + ], "description": "Update log search Rule.", "operationId": "ScheduledQueryRules_Update", "parameters": [ - { "$ref": "#/parameters/SubscriptionIdParameter" }, - { "$ref": "#/parameters/ResourceGroupNameParameter" }, - { "$ref": "#/parameters/RuleNameParameter" }, - { "$ref": "#/parameters/ApiVersionParameter" }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/RuleNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, { "name": "parameters", "in": "body", @@ -162,7 +180,9 @@ } }, "x-ms-examples": { - "Patch Log Search Rule": { "$ref": "./examples/patchScheduledQueryRules.json" } + "Patch Log Search Rule": { + "$ref": "./examples/patchScheduledQueryRules.json" + } } }, "delete": { @@ -200,7 +220,9 @@ } }, "x-ms-examples": { - "Delete rule": { "$ref": "./examples/deleteScheduledQueryRules.json" } + "Delete rule": { + "$ref": "./examples/deleteScheduledQueryRules.json" + } } } }, @@ -240,7 +262,9 @@ "nextLinkName": null }, "x-ms-examples": { - "List rules": { "$ref": "./examples/listScheduledQueryRules.json" } + "List rules": { + "$ref": "./examples/listScheduledQueryRules.json" + } }, "x-ms-odata": "#/definitions/LogSearchRuleResource" } @@ -284,14 +308,16 @@ "nextLinkName": null }, "x-ms-examples": { - "List rules": { "$ref": "./examples/listScheduledQueryRules.json" } + "List rules": { + "$ref": "./examples/listScheduledQueryRules.json" + } }, "x-ms-odata": "#/definitions/LogSearchRuleResource" } } }, "definitions": { - "Resource": { + "Resource": { "properties": { "id": { "type": "string", diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/actionGroups_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/actionGroups_API.json index 586975d5f55c..d997d59945fb 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/actionGroups_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/actionGroups_API.json @@ -1,832 +1,832 @@ { - "swagger": "2.0", - "info": { - "title": "Azure Action Groups API", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2018-09-01" + "swagger": "2.0", + "info": { + "title": "Azure Action Groups API", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "version": "2018-09-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}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}": { + "put": { + "description": "Create a new action group or update an existing one.", + "operationId": "ActionGroups_CreateOrUpdate", + "x-ms-examples": { + "Create or update an action group": { + "$ref": "./examples/createOrUpdateActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "name": "actionGroup", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActionGroupResource" + }, + "description": "The action group to create or use for the update." + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "An existing action group was successfully updated.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "201": { + "description": "A new action group was successfully created.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "default": { + "description": "An error occurred and the action group could not be created or updated.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } - ], - "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" + }, + "get": { + "description": "Get an action group.", + "operationId": "ActionGroups_Get", + "x-ms-examples": { + "Get an action group": { + "$ref": "./examples/getActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "default": { + "description": "An error occurred and the action group could not be retrieved. 404: The action group does not exist.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } } - }, - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}": { - "put": { - "description": "Create a new action group or update an existing one.", - "operationId": "ActionGroups_CreateOrUpdate", - "x-ms-examples": { - "Create or update an action group": { - "$ref": "./examples/createOrUpdateActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "name": "actionGroup", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActionGroupResource" - }, - "description": "The action group to create or use for the update." - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "An existing action group was successfully updated.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "201": { - "description": "A new action group was successfully created.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "default": { - "description": "An error occurred and the action group could not be created or updated.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "get": { - "description": "Get an action group.", - "operationId": "ActionGroups_Get", - "x-ms-examples": { - "Get an action group": { - "$ref": "./examples/getActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "default": { - "description": "An error occurred and the action group could not be retrieved. 404: The action group does not exist.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "description": "Delete an action group.", - "operationId": "ActionGroups_Delete", - "x-ms-examples": { - "Delete an action group": { - "$ref": "./examples/deleteActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The action group was successfully deleted." - }, - "204": { - "description": "The action group does not exist. It may have already been deleted." - }, - "default": { - "description": "An error occurred and the action group could not be deleted.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "delete": { + "description": "Delete an action group.", + "operationId": "ActionGroups_Delete", + "x-ms-examples": { + "Delete an action group": { + "$ref": "./examples/deleteActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The action group was successfully deleted." + }, + "204": { + "description": "The action group does not exist. It may have already been deleted." + }, + "default": { + "description": "An error occurred and the action group could not be deleted.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "description": "Updates an existing action group's tags. To update other fields use the CreateOrUpdate method.", + "operationId": "ActionGroups_Update", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "actionGroupPatch", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActionGroupPatchBody" }, - "patch": { - "description": "Updates an existing action group's tags. To update other fields use the CreateOrUpdate method.", - "operationId": "ActionGroups_Update", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "actionGroupPatch", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActionGroupPatchBody" - }, - "description": "Parameters supplied to the operation." - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "An existing action group was successfully updated.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - } - }, - "x-ms-examples": { - "Patch an action group": { - "$ref": "./examples/patchActionGroup.json" - } - } + "description": "Parameters supplied to the operation." + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } - }, - "/subscriptions/{subscriptionId}/providers/microsoft.insights/actionGroups": { - "get": { - "description": "Get a list of all action groups in a subscription.", - "operationId": "ActionGroups_ListBySubscriptionId", - "x-ms-examples": { - "List action groups": { - "$ref": "./examples/listActionGroups.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupList" - } - }, - "default": { - "description": "An error occurred and the list of action groups could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "200": { + "description": "An existing action group was successfully updated.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups": { - "get": { - "description": "Get a list of all action groups in a resource group.", - "operationId": "ActionGroups_ListByResourceGroup", - "x-ms-examples": { - "List action groups": { - "$ref": "./examples/listActionGroups.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupList" - } - }, - "default": { - "description": "An error occurred and the list of action groups could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - } + "x-ms-examples": { + "Patch an action group": { + "$ref": "./examples/patchActionGroup.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/microsoft.insights/actionGroups": { + "get": { + "description": "Get a list of all action groups in a subscription.", + "operationId": "ActionGroups_ListBySubscriptionId", + "x-ms-examples": { + "List action groups": { + "$ref": "./examples/listActionGroups.json" + } + }, + "x-ms-pageable": { + "nextLinkName": null }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}/subscribe": { - "post": { - "description": "Enable a receiver in an action group. This changes the receiver's status from Disabled to Enabled. This operation is only supported for Email or SMS receivers.", - "operationId": "ActionGroups_EnableReceiver", - "x-ms-examples": { - "Enable the receiver": { - "$ref": "./examples/enableReceiver.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "name": "enableRequest", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/EnableRequest" - }, - "description": "The receiver to re-enable." - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The receiver was successfully enabled." - }, - "409": { - "description": "The receiver is already enabled in the action group." - }, - "default": { - "description": "An error occurred and the receiver could not be enabled, e.g.: 404: The action group was not found or no matching receiver was found in the action group.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupList" } + }, + "default": { + "description": "An error occurred and the list of action groups could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } + } }, - "definitions": { - "Resource": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Azure resource Id" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Azure resource name" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Azure resource type" - }, - "location": { - "type": "string", - "description": "Resource location", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - } - }, - "required": [ - "location" - ], - "x-ms-azure-resource": true, - "description": "An azure resource object" - }, - "ActionGroupResource": { - "description": "An action group resource.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActionGroup", - "description": "The action groups properties of the resource." - } - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups": { + "get": { + "description": "Get a list of all action groups in a resource group.", + "operationId": "ActionGroups_ListByResourceGroup", + "x-ms-examples": { + "List action groups": { + "$ref": "./examples/listActionGroups.json" + } + }, + "x-ms-pageable": { + "nextLinkName": null }, - "ActionGroupList": { - "description": "A list of action groups.", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ActionGroupResource" - }, - "description": "The list of action groups." - }, - "nextLink": { - "type": "string", - "description": "Provides the link to retrieve the next set of elements." - } + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupList" } + }, + "default": { + "description": "An error occurred and the list of action groups could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}/subscribe": { + "post": { + "description": "Enable a receiver in an action group. This changes the receiver's status from Disabled to Enabled. This operation is only supported for Email or SMS receivers.", + "operationId": "ActionGroups_EnableReceiver", + "x-ms-examples": { + "Enable the receiver": { + "$ref": "./examples/enableReceiver.json" + } }, - "ActionGroup": { - "description": "An Azure action group.", - "properties": { - "groupShortName": { - "type": "string", - "maxLength": 12, - "description": "The short name of the action group. This will be used in SMS messages." - }, - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its receivers will receive communications." - }, - "emailReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/EmailReceiver" - }, - "description": "The list of email receivers that are part of this action group." - }, - "smsReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/SmsReceiver" - }, - "description": "The list of SMS receivers that are part of this action group." - }, - "webhookReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/WebhookReceiver" - }, - "description": "The list of webhook receivers that are part of this action group." - }, - "itsmReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/ItsmReceiver" - }, - "description": "The list of ITSM receivers that are part of this action group." - }, - "azureAppPushReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AzureAppPushReceiver" - }, - "description": "The list of AzureAppPush receivers that are part of this action group." - }, - "automationRunbookReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AutomationRunbookReceiver" - }, - "description": "The list of AutomationRunbook receivers that are part of this action group." - }, - "voiceReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/VoiceReceiver" - }, - "description": "The list of voice receivers that are part of this action group." - }, - "logicAppReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/LogicAppReceiver" - }, - "description": "The list of logic app receivers that are part of this action group." - }, - "azureFunctionReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AzureFunctionReceiver" - }, - "description": "The list of azure function receivers that are part of this action group." - }, - "armRoleReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/ArmRoleReceiver" - }, - "description": "The list of ARM role receivers that are part of this action group. Roles are Azure RBAC roles and only built-in roles are supported." - } - }, - "required": [ - "groupShortName", - "enabled" - ] - }, - "EmailReceiver": { - "description": "An email receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the email receiver. Names must be unique across all receivers within an action group." - }, - "emailAddress": { - "type": "string", - "description": "The email address of this receiver." - }, - "status": { - "readOnly": true, - "$ref": "#/definitions/ReceiverStatus", - "description": "The receiver status of the e-mail." - } - }, - "required": [ - "name", - "emailAddress" - ] - }, - "SmsReceiver": { - "description": "An SMS receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the SMS receiver. Names must be unique across all receivers within an action group." - }, - "countryCode": { - "type": "string", - "description": "The country code of the SMS receiver." - }, - "phoneNumber": { - "type": "string", - "description": "The phone number of the SMS receiver." - }, - "status": { - "readOnly": true, - "$ref": "#/definitions/ReceiverStatus", - "description": "The status of the receiver." - } - }, - "required": [ - "name", - "countryCode", - "phoneNumber" - ] - }, - "WebhookReceiver": { - "description": "A webhook receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the webhook receiver. Names must be unique across all receivers within an action group." - }, - "serviceUri": { - "type": "string", - "description": "The URI where webhooks should be sent." - } - }, - "required": [ - "name", - "serviceUri" - ] - }, - "ItsmReceiver": { - "description": "An Itsm receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the Itsm receiver. Names must be unique across all receivers within an action group." - }, - "workspaceId": { - "type": "string", - "description": "OMS LA instance identifier." - }, - "connectionId": { - "type": "string", - "description": "Unique identification of ITSM connection among multiple defined in above workspace." - }, - "ticketConfiguration": { - "type": "string", - "description": "JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well." - }, - "region": { - "type": "string", - "description": "Region in which workspace resides. Supported values:'centralindia','japaneast','southeastasia','australiasoutheast','uksouth','westcentralus','canadacentral','eastus','westeurope'" - } - }, - "required": [ - "name", - "workspaceId", - "connectionId", - "ticketConfiguration", - "region" - ] - }, - "AzureAppPushReceiver": { - "description": "The Azure mobile App push notification receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group." - }, - "emailAddress": { - "type": "string", - "description": "The email address registered for the Azure mobile app." - } - }, - "required": [ - "name", - "emailAddress" - ] - }, - "AutomationRunbookReceiver": { - "description": "The Azure Automation Runbook notification receiver.", - "properties": { - "automationAccountId": { - "type": "string", - "description": "The Azure automation account Id which holds this runbook and authenticate to Azure resource." - }, - "runbookName": { - "type": "string", - "description": "The name for this runbook." - }, - "webhookResourceId": { - "type": "string", - "description": "The resource id for webhook linked to this runbook." - }, - "isGlobalRunbook": { - "type": "boolean", - "description": "Indicates whether this instance is global runbook." - }, - "name": { - "type": "string", - "description": "Indicates name of the webhook." - }, - "serviceUri": { - "type": "string", - "description": "The URI where webhooks should be sent." - } - }, - "required": [ - "automationAccountId", - "runbookName", - "webhookResourceId", - "isGlobalRunbook" - ] - }, - "VoiceReceiver": { - "description": "A voice receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the voice receiver. Names must be unique across all receivers within an action group." - }, - "countryCode": { - "type": "string", - "description": "The country code of the voice receiver." - }, - "phoneNumber": { - "type": "string", - "description": "The phone number of the voice receiver." - } - }, - "required": [ - "name", - "countryCode", - "phoneNumber" - ] - }, - "LogicAppReceiver": { - "description": "A logic app receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the logic app receiver. Names must be unique across all receivers within an action group." - }, - "resourceId": { - "type": "string", - "description": "The azure resource id of the logic app receiver." - }, - "callbackUrl": { - "type": "string", - "description": "The callback url where http request sent to." - } - }, - "required": [ - "name", - "resourceId", - "callbackUrl" - ] - }, - "AzureFunctionReceiver": { - "description": "An azure function receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the azure function receiver. Names must be unique across all receivers within an action group." - }, - "functionAppResourceId": { - "type": "string", - "description": "The azure resource id of the function app." - }, - "functionName": { - "type": "string", - "description": "The function name in the function app." - }, - "httpTriggerUrl": { - "type": "string", - "description": "The http trigger url where http request sent to." - } - }, - "required": [ - "name", - "functionAppResourceId", - "functionName", - "httpTriggerUrl" - ] - }, - "ArmRoleReceiver": { - "description": "An arm role receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the arm role receiver. Names must be unique across all receivers within an action group." - }, - "roleId": { - "type": "string", - "description": "The arm role id." - } - }, - "required": [ - "name", - "roleId" - ] - }, - "ReceiverStatus": { - "type": "string", - "enum": [ - "NotSpecified", - "Enabled", - "Disabled" - ], - "x-ms-enum": { - "name": "ReceiverStatus", - "modelAsString": false - }, - "description": "Indicates the status of the receiver. Receivers that are not Enabled will not receive any communications." - }, - "EnableRequest": { - "description": "Describes a receiver that should be resubscribed.", - "properties": { - "receiverName": { - "type": "string", - "description": "The name of the receiver to resubscribe." - } + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "name": "enableRequest", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/EnableRequest" }, - "required": [ - "receiverName" - ] - }, - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } + "description": "The receiver to re-enable." + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The receiver was successfully enabled." + }, + "409": { + "description": "The receiver is already enabled in the action group." + }, + "default": { + "description": "An error occurred and the receiver could not be enabled, e.g.: 404: The action group was not found or no matching receiver was found in the action group.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + } + }, + "definitions": { + "Resource": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Azure resource Id" }, - "ActionGroupPatchBody": { - "description": "An action group object for the body of patch operations.", - "properties": { - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActionGroupPatch", - "description": "The action group settings for an update operation." - } - } + "name": { + "type": "string", + "readOnly": true, + "description": "Azure resource name" }, - "ActionGroupPatch": { - "description": "An Azure action group for patch operations.", - "properties": { - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its actions will be activated." - } - } + "type": { + "type": "string", + "readOnly": true, + "description": "Azure resource type" + }, + "location": { + "type": "string", + "description": "Resource location", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true, + "description": "An azure resource object" }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "The Azure subscription Id." + "ActionGroupResource": { + "description": "An action group resource.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActionGroup", + "description": "The action groups properties of the resource." + } + } + }, + "ActionGroupList": { + "description": "A list of action groups.", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ActionGroupResource" + }, + "description": "The list of action groups." }, - "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group.", - "x-ms-parameter-location": "method" + "nextLink": { + "type": "string", + "description": "Provides the link to retrieve the next set of elements." + } + } + }, + "ActionGroup": { + "description": "An Azure action group.", + "properties": { + "groupShortName": { + "type": "string", + "maxLength": 12, + "description": "The short name of the action group. This will be used in SMS messages." }, - "ActionGroupNameParameter": { - "name": "actionGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the action group.", - "x-ms-parameter-location": "method" + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its receivers will receive communications." }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." + "emailReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/EmailReceiver" + }, + "description": "The list of email receivers that are part of this action group." + }, + "smsReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/SmsReceiver" + }, + "description": "The list of SMS receivers that are part of this action group." + }, + "webhookReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/WebhookReceiver" + }, + "description": "The list of webhook receivers that are part of this action group." + }, + "itsmReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/ItsmReceiver" + }, + "description": "The list of ITSM receivers that are part of this action group." + }, + "azureAppPushReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AzureAppPushReceiver" + }, + "description": "The list of AzureAppPush receivers that are part of this action group." + }, + "automationRunbookReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AutomationRunbookReceiver" + }, + "description": "The list of AutomationRunbook receivers that are part of this action group." + }, + "voiceReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/VoiceReceiver" + }, + "description": "The list of voice receivers that are part of this action group." + }, + "logicAppReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/LogicAppReceiver" + }, + "description": "The list of logic app receivers that are part of this action group." + }, + "azureFunctionReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AzureFunctionReceiver" + }, + "description": "The list of azure function receivers that are part of this action group." + }, + "armRoleReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/ArmRoleReceiver" + }, + "description": "The list of ARM role receivers that are part of this action group. Roles are Azure RBAC roles and only built-in roles are supported." + } + }, + "required": [ + "groupShortName", + "enabled" + ] + }, + "EmailReceiver": { + "description": "An email receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the email receiver. Names must be unique across all receivers within an action group." + }, + "emailAddress": { + "type": "string", + "description": "The email address of this receiver." + }, + "status": { + "readOnly": true, + "$ref": "#/definitions/ReceiverStatus", + "description": "The receiver status of the e-mail." + } + }, + "required": [ + "name", + "emailAddress" + ] + }, + "SmsReceiver": { + "description": "An SMS receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the SMS receiver. Names must be unique across all receivers within an action group." + }, + "countryCode": { + "type": "string", + "description": "The country code of the SMS receiver." + }, + "phoneNumber": { + "type": "string", + "description": "The phone number of the SMS receiver." + }, + "status": { + "readOnly": true, + "$ref": "#/definitions/ReceiverStatus", + "description": "The status of the receiver." + } + }, + "required": [ + "name", + "countryCode", + "phoneNumber" + ] + }, + "WebhookReceiver": { + "description": "A webhook receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the webhook receiver. Names must be unique across all receivers within an action group." + }, + "serviceUri": { + "type": "string", + "description": "The URI where webhooks should be sent." + } + }, + "required": [ + "name", + "serviceUri" + ] + }, + "ItsmReceiver": { + "description": "An Itsm receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the Itsm receiver. Names must be unique across all receivers within an action group." + }, + "workspaceId": { + "type": "string", + "description": "OMS LA instance identifier." + }, + "connectionId": { + "type": "string", + "description": "Unique identification of ITSM connection among multiple defined in above workspace." + }, + "ticketConfiguration": { + "type": "string", + "description": "JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well." + }, + "region": { + "type": "string", + "description": "Region in which workspace resides. Supported values:'centralindia','japaneast','southeastasia','australiasoutheast','uksouth','westcentralus','canadacentral','eastus','westeurope'" + } + }, + "required": [ + "name", + "workspaceId", + "connectionId", + "ticketConfiguration", + "region" + ] + }, + "AzureAppPushReceiver": { + "description": "The Azure mobile App push notification receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group." + }, + "emailAddress": { + "type": "string", + "description": "The email address registered for the Azure mobile app." + } + }, + "required": [ + "name", + "emailAddress" + ] + }, + "AutomationRunbookReceiver": { + "description": "The Azure Automation Runbook notification receiver.", + "properties": { + "automationAccountId": { + "type": "string", + "description": "The Azure automation account Id which holds this runbook and authenticate to Azure resource." + }, + "runbookName": { + "type": "string", + "description": "The name for this runbook." + }, + "webhookResourceId": { + "type": "string", + "description": "The resource id for webhook linked to this runbook." + }, + "isGlobalRunbook": { + "type": "boolean", + "description": "Indicates whether this instance is global runbook." + }, + "name": { + "type": "string", + "description": "Indicates name of the webhook." + }, + "serviceUri": { + "type": "string", + "description": "The URI where webhooks should be sent." } + }, + "required": [ + "automationAccountId", + "runbookName", + "webhookResourceId", + "isGlobalRunbook" + ] + }, + "VoiceReceiver": { + "description": "A voice receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the voice receiver. Names must be unique across all receivers within an action group." + }, + "countryCode": { + "type": "string", + "description": "The country code of the voice receiver." + }, + "phoneNumber": { + "type": "string", + "description": "The phone number of the voice receiver." + } + }, + "required": [ + "name", + "countryCode", + "phoneNumber" + ] + }, + "LogicAppReceiver": { + "description": "A logic app receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the logic app receiver. Names must be unique across all receivers within an action group." + }, + "resourceId": { + "type": "string", + "description": "The azure resource id of the logic app receiver." + }, + "callbackUrl": { + "type": "string", + "description": "The callback url where http request sent to." + } + }, + "required": [ + "name", + "resourceId", + "callbackUrl" + ] + }, + "AzureFunctionReceiver": { + "description": "An azure function receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the azure function receiver. Names must be unique across all receivers within an action group." + }, + "functionAppResourceId": { + "type": "string", + "description": "The azure resource id of the function app." + }, + "functionName": { + "type": "string", + "description": "The function name in the function app." + }, + "httpTriggerUrl": { + "type": "string", + "description": "The http trigger url where http request sent to." + } + }, + "required": [ + "name", + "functionAppResourceId", + "functionName", + "httpTriggerUrl" + ] + }, + "ArmRoleReceiver": { + "description": "An arm role receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the arm role receiver. Names must be unique across all receivers within an action group." + }, + "roleId": { + "type": "string", + "description": "The arm role id." + } + }, + "required": [ + "name", + "roleId" + ] + }, + "ReceiverStatus": { + "type": "string", + "enum": [ + "NotSpecified", + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "ReceiverStatus", + "modelAsString": false + }, + "description": "Indicates the status of the receiver. Receivers that are not Enabled will not receive any communications." + }, + "EnableRequest": { + "description": "Describes a receiver that should be resubscribed.", + "properties": { + "receiverName": { + "type": "string", + "description": "The name of the receiver to resubscribe." + } + }, + "required": [ + "receiverName" + ] + }, + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" + } + } + }, + "ActionGroupPatchBody": { + "description": "An action group object for the body of patch operations.", + "properties": { + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActionGroupPatch", + "description": "The action group settings for an update operation." + } + } + }, + "ActionGroupPatch": { + "description": "An Azure action group for patch operations.", + "properties": { + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its actions will be activated." + } + } + } + }, + "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" + }, + "ActionGroupNameParameter": { + "name": "actionGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the action group.", + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/baseline_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/baseline_API.json index fa616c4edb22..fbf213aaa465 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/baseline_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/baseline_API.json @@ -1,404 +1,416 @@ { - "swagger": "2.0", - "info": { - "title": "MonitorManagementClient", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2018-09-01" + "swagger": "2.0", + "info": { + "title": "MonitorManagementClient", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "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" - } + "version": "2018-09-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": { - "/{resourceUri}/providers/microsoft.insights/baseline/{metricName}": { - "get": { - "tags": [ - "Baseline" - ], - "operationId": "MetricBaseline_Get", - "description": "**Gets the baseline values for a specific metric**.", - "parameters": [ - { - "$ref": "#/parameters/ExtendedResourceUriParameter" - }, - { - "$ref": "#/parameters/MetricNameParameter" - }, - { - "$ref": "#/parameters/TimespanParameter" - }, - { - "$ref": "#/parameters/IntervalParameter" - }, - { - "$ref": "#/parameters/AggregationParameter" - }, - { - "$ref": "#/parameters/SensitivitiesParameter" - }, - { - "$ref": "#/parameters/BaselineResultTypeParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/MetricNamespaceParameter" - }, - { - "name": "$filter", - "in": "query", - "type": "string", - "description": "The **$filter** is used to describe a set of dimensions with their concrete values which produce a specific metric's time series, in which a baseline is requested for.", - "required": false - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "Successful request to get the list of metric values.", - "schema": { - "$ref": "#/definitions/BaselineResponse" - } - } + } + }, + "paths": { + "/{resourceUri}/providers/microsoft.insights/baseline/{metricName}": { + "get": { + "tags": [ + "Baseline" + ], + "operationId": "MetricBaseline_Get", + "description": "**Gets the baseline values for a specific metric**.", + "parameters": [ + { + "$ref": "#/parameters/ExtendedResourceUriParameter" }, - "x-ms-examples": { - "Get Metric for data": { "$ref": "./examples/GetBaseline.json" }, - "Get Metric for metadata": { "$ref": "./examples/GetBaselineMetadata.json" } - } - } - }, - "/{resourceUri}/providers/microsoft.insights/baseline": { - "get": { - "tags": [ - "Baseline" - ], - "operationId": "Baseline_Get", - "description": "**Gets the baseline values for a resource**.", - "parameters": [ - { - "$ref": "#/parameters/ExtendedResourceUriParameter" - }, - { - "$ref": "#/parameters/MetricNamesParameter" - }, - { - "$ref": "#/parameters/TimespanParameter" - }, - { - "$ref": "#/parameters/IntervalParameter" - }, - { - "$ref": "#/parameters/AggregationParameter" - }, - { - "$ref": "#/parameters/SensitivitiesParameter" - }, - { - "$ref": "#/parameters/BaselineResultTypeParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/MetricNamespaceParameter" - }, - { - "name": "$filter", - "in": "query", - "type": "string", - "description": "The **$filter** is used to describe a set of dimensions with their concrete values which produce a specific metric's time series, in which a baseline is requested for.", - "required": false - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "Successful request to get the list of metric values.", - "schema": { - "$ref": "#/definitions/BaselineResponse" - } - } + { + "$ref": "#/parameters/MetricNameParameter" }, - "x-ms-examples": { - "Get Metric for data": { "$ref": "./examples/GetBaseline.json" } - } - } - } - }, - "definitions": { - "LocalizableString": { - "required": [ "value" ], - "properties": { - "value": { - "type": "string", - "description": "The invariant value." + { + "$ref": "#/parameters/TimespanParameter" + }, + { + "$ref": "#/parameters/IntervalParameter" + }, + { + "$ref": "#/parameters/AggregationParameter" + }, + { + "$ref": "#/parameters/SensitivitiesParameter" + }, + { + "$ref": "#/parameters/BaselineResultTypeParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" }, - "localizedValue": { + { + "$ref": "#/parameters/MetricNamespaceParameter" + }, + { + "name": "$filter", + "in": "query", "type": "string", - "description": "The locale specific value." + "description": "The **$filter** is used to describe a set of dimensions with their concrete values which produce a specific metric's time series, in which a baseline is requested for.", + "required": false } - }, - "description": "The localizable string class." - }, - "BaselineMetadataValue": { - "properties": { - "name": { - "$ref": "#/definitions/LocalizableString", - "description": "The name of the metadata." + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } }, - "value": { - "type": "string", - "description": "The value of the metadata." + "200": { + "description": "Successful request to get the list of metric values.", + "schema": { + "$ref": "#/definitions/BaselineResponse" + } } }, - "description": "Represents a baseline metadata value." - }, - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" + "x-ms-examples": { + "Get Metric for data": { + "$ref": "./examples/GetBaseline.json" }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" + "Get Metric for metadata": { + "$ref": "./examples/GetBaselineMetadata.json" } } - }, - "BaselineResponse": { - "type": "object", - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "The metric baseline ID." + } + }, + "/{resourceUri}/providers/microsoft.insights/baseline": { + "get": { + "tags": [ + "Baseline" + ], + "operationId": "Baseline_Get", + "description": "**Gets the baseline values for a resource**.", + "parameters": [ + { + "$ref": "#/parameters/ExtendedResourceUriParameter" }, - "type": { - "type": "string", - "readOnly": true, - "description": "The resource type of the baseline resource." + { + "$ref": "#/parameters/MetricNamesParameter" }, - "name": { - "$ref": "#/definitions/LocalizableString", - "readOnly": true, - "description": "The name and the display name of the metric, i.e. it is localizable string." + { + "$ref": "#/parameters/TimespanParameter" }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/BaselineProperties", - "description": "The properties of the baseline." - } - }, - "description": "The response to a baseline query." - }, - "BaselineProperties": { - "properties": { - "timespan": { - "type": "string", - "description": "The timespan for which the data was retrieved. Its value consists of two datetimes concatenated, separated by '/'. This may be adjusted in the future and returned back from what was originally requested." + { + "$ref": "#/parameters/IntervalParameter" }, - "interval": { - "type": "string", - "format": "duration", - "description": "The interval (window size) for which the metric data was returned in. This may be adjusted in the future and returned back from what was originally requested. This is not present if a metadata request was made." + { + "$ref": "#/parameters/AggregationParameter" }, - "aggregation": { - "type": "string", - "description": "The aggregation type of the metric." + { + "$ref": "#/parameters/SensitivitiesParameter" }, - "timestamps": { - "type": "array", - "items": { - "type": "string", - "format": "date-time", - "description": "The timestamp for the baseline value in ISO 8601 format." - }, - "description": "The array of timestamps of the baselines." + { + "$ref": "#/parameters/BaselineResultTypeParameter" }, - "baseline": { - "type": "array", - "items": { - "$ref": "#/definitions/Baseline" - }, - "description": "The baseline values for each sensitivity." + { + "$ref": "#/parameters/ApiVersionParameter" }, - "metadata": { - "type": "array", - "items": { - "$ref": "#/definitions/BaselineMetadataValue" - }, - "description": "The baseline metadata values." - } - }, - "description": "The baseline properties class." - }, - "Baseline": { - "type": "object", - "properties": { - "sensitivity": { - "type": "string", - "enum": [ - "Low", - "Medium", - "High" - ], - "x-ms-enum": { - "name": "Sensitivity", - "modelAsString": false - }, - "description": "The sensitivity of the baseline." + { + "$ref": "#/parameters/MetricNamespaceParameter" }, - "lowThresholds": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single low threshold value." - }, - "description": "The low thresholds of the baseline." + { + "name": "$filter", + "in": "query", + "type": "string", + "description": "The **$filter** is used to describe a set of dimensions with their concrete values which produce a specific metric's time series, in which a baseline is requested for.", + "required": false + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } }, - "highThresholds": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single high threshold value." - }, - "description": "The high thresholds of the baseline." + "200": { + "description": "Successful request to get the list of metric values.", + "schema": { + "$ref": "#/definitions/BaselineResponse" + } } }, - "required": [ "sensitivity", "lowThresholds", "highThresholds" ], - "description": "The baseline values for a single sensitivity value." + "x-ms-examples": { + "Get Metric for data": { + "$ref": "./examples/GetBaseline.json" + } + } } - }, - "parameters": { - "ExtendedResourceUriParameter": { - "name": "resourceUri", - "in": "path", - "required": true, - "type": "string", - "description": "The identifier of the resource. It has the following structure: subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/{providerName}/{resourceName}. For example: subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", - "x-ms-parameter-location": "method", - "x-ms-skip-url-encoding": true - }, - "MetricNameParameter": { - "name": "metricName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the metric to retrieve the baseline for.", - "x-ms-parameter-location": "method" - }, - "TimespanParameter": { - "name": "timespan", - "in": "query", - "required": false, - "type": "string", - "description": "The timespan of the query. It is a string with the following format 'startDateTime_ISO/endDateTime_ISO'.", - "x-ms-parameter-location": "method" - }, - "IntervalParameter": { - "name": "interval", - "in": "query", - "required": false, - "type": "string", - "format": "duration", - "description": "The interval (i.e. timegrain) of the query.", - "x-ms-parameter-location": "method" + } + }, + "definitions": { + "LocalizableString": { + "required": [ + "value" + ], + "properties": { + "value": { + "type": "string", + "description": "The invariant value." + }, + "localizedValue": { + "type": "string", + "description": "The locale specific value." + } }, - "MetricNamesParameter": { - "name": "metricnames", - "in": "query", - "required": false, - "type": "string", - "description": "The names of the metrics (comma separated) to retrieve.", - "x-ms-parameter-location": "method" + "description": "The localizable string class." + }, + "BaselineMetadataValue": { + "properties": { + "name": { + "$ref": "#/definitions/LocalizableString", + "description": "The name of the metadata." + }, + "value": { + "type": "string", + "description": "The value of the metadata." + } }, - "AggregationParameter": { - "name": "aggregation", - "in": "query", - "required": false, - "type": "string", - "description": "The aggregation type of the metric to retrieve the baseline for.", - "x-ms-parameter-location": "method" + "description": "Represents a baseline metadata value." + }, + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" + } + } + }, + "BaselineResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "The metric baseline ID." + }, + "type": { + "type": "string", + "readOnly": true, + "description": "The resource type of the baseline resource." + }, + "name": { + "$ref": "#/definitions/LocalizableString", + "readOnly": true, + "description": "The name and the display name of the metric, i.e. it is localizable string." + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/BaselineProperties", + "description": "The properties of the baseline." + } }, - "SensitivitiesParameter": { - "name": "sensitivities", - "in": "query", - "required": false, - "type": "string", - "description": "The list of sensitivities (comma separated) to retrieve.", - "x-ms-parameter-location": "method" + "description": "The response to a baseline query." + }, + "BaselineProperties": { + "properties": { + "timespan": { + "type": "string", + "description": "The timespan for which the data was retrieved. Its value consists of two datetimes concatenated, separated by '/'. This may be adjusted in the future and returned back from what was originally requested." + }, + "interval": { + "type": "string", + "format": "duration", + "description": "The interval (window size) for which the metric data was returned in. This may be adjusted in the future and returned back from what was originally requested. This is not present if a metadata request was made." + }, + "aggregation": { + "type": "string", + "description": "The aggregation type of the metric." + }, + "timestamps": { + "type": "array", + "items": { + "type": "string", + "format": "date-time", + "description": "The timestamp for the baseline value in ISO 8601 format." + }, + "description": "The array of timestamps of the baselines." + }, + "baseline": { + "type": "array", + "items": { + "$ref": "#/definitions/Baseline" + }, + "description": "The baseline values for each sensitivity." + }, + "metadata": { + "type": "array", + "items": { + "$ref": "#/definitions/BaselineMetadataValue" + }, + "description": "The baseline metadata values." + } }, - "BaselineResultTypeParameter": { - "name": "resultType", - "in": "query", - "type": "string", - "enum": [ - "Data", - "Metadata" - ], - "x-ms-enum": { - "name": "ResultType", - "modelAsString": false + "description": "The baseline properties class." + }, + "Baseline": { + "type": "object", + "properties": { + "sensitivity": { + "type": "string", + "enum": [ + "Low", + "Medium", + "High" + ], + "x-ms-enum": { + "name": "Sensitivity", + "modelAsString": false + }, + "description": "The sensitivity of the baseline." + }, + "lowThresholds": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single low threshold value." + }, + "description": "The low thresholds of the baseline." }, - "description": "Allows retrieving only metadata of the baseline. On data request all information is retrieved.", - "x-ms-parameter-location": "method", - "required": false + "highThresholds": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single high threshold value." + }, + "description": "The high thresholds of the baseline." + } }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." + "required": [ + "sensitivity", + "lowThresholds", + "highThresholds" + ], + "description": "The baseline values for a single sensitivity value." + } + }, + "parameters": { + "ExtendedResourceUriParameter": { + "name": "resourceUri", + "in": "path", + "required": true, + "type": "string", + "description": "The identifier of the resource. It has the following structure: subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/{providerName}/{resourceName}. For example: subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", + "x-ms-parameter-location": "method", + "x-ms-skip-url-encoding": true + }, + "MetricNameParameter": { + "name": "metricName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the metric to retrieve the baseline for.", + "x-ms-parameter-location": "method" + }, + "TimespanParameter": { + "name": "timespan", + "in": "query", + "required": false, + "type": "string", + "description": "The timespan of the query. It is a string with the following format 'startDateTime_ISO/endDateTime_ISO'.", + "x-ms-parameter-location": "method" + }, + "IntervalParameter": { + "name": "interval", + "in": "query", + "required": false, + "type": "string", + "format": "duration", + "description": "The interval (i.e. timegrain) of the query.", + "x-ms-parameter-location": "method" + }, + "MetricNamesParameter": { + "name": "metricnames", + "in": "query", + "required": false, + "type": "string", + "description": "The names of the metrics (comma separated) to retrieve.", + "x-ms-parameter-location": "method" + }, + "AggregationParameter": { + "name": "aggregation", + "in": "query", + "required": false, + "type": "string", + "description": "The aggregation type of the metric to retrieve the baseline for.", + "x-ms-parameter-location": "method" + }, + "SensitivitiesParameter": { + "name": "sensitivities", + "in": "query", + "required": false, + "type": "string", + "description": "The list of sensitivities (comma separated) to retrieve.", + "x-ms-parameter-location": "method" + }, + "BaselineResultTypeParameter": { + "name": "resultType", + "in": "query", + "type": "string", + "enum": [ + "Data", + "Metadata" + ], + "x-ms-enum": { + "name": "ResultType", + "modelAsString": false }, - "MetricNamespaceParameter": { - "name": "metricnamespace", - "in": "query", - "required": false, - "type": "string", - "description": "Metric namespace to query metric definitions for.", - "x-ms-parameter-location": "method" - } + "description": "Allows retrieving only metadata of the baseline. On data request all information is retrieved.", + "x-ms-parameter-location": "method", + "required": false + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." + }, + "MetricNamespaceParameter": { + "name": "metricnamespace", + "in": "query", + "required": false, + "type": "string", + "description": "Metric namespace to query metric definitions for.", + "x-ms-parameter-location": "method" } - } \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/calculateBaseline_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/calculateBaseline_API.json index c6e0e614c5e5..39ba5120dd9e 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/calculateBaseline_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/calculateBaseline_API.json @@ -1,214 +1,226 @@ { - "swagger": "2.0", - "info": { - "title": "MonitorManagementClient", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2018-09-01" + "swagger": "2.0", + "info": { + "title": "MonitorManagementClient", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "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" - } + "version": "2018-09-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": { - "/{resourceUri}/providers/microsoft.insights/calculatebaseline": { - "post": { - "tags": [ - "Baseline" - ], - "operationId": "MetricBaseline_CalculateBaseline", - "description": "**Lists the baseline values for a resource**.", - "parameters": [ - { - "$ref": "#/parameters/ExtendedResourceUriParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "TimeSeriesInformation", - "description": "Information that need to be specified to calculate a baseline on a time series.", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/TimeSeriesInformation" - } + } + }, + "paths": { + "/{resourceUri}/providers/microsoft.insights/calculatebaseline": { + "post": { + "tags": [ + "Baseline" + ], + "operationId": "MetricBaseline_CalculateBaseline", + "description": "**Lists the baseline values for a resource**.", + "parameters": [ + { + "$ref": "#/parameters/ExtendedResourceUriParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "TimeSeriesInformation", + "description": "Information that need to be specified to calculate a baseline on a time series.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/TimeSeriesInformation" } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "Successful request to get the list of metric values.", - "schema": { - "$ref": "#/definitions/CalculateBaselineResponse" - } + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } }, - "x-ms-examples": { - "Calculate baseline": { "$ref": "./examples/CalculateBaseline.json" } + "200": { + "description": "Successful request to get the list of metric values.", + "schema": { + "$ref": "#/definitions/CalculateBaselineResponse" + } + } + }, + "x-ms-examples": { + "Calculate baseline": { + "$ref": "./examples/CalculateBaseline.json" } } } - }, - "definitions": { - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } + } + }, + "definitions": { + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" } - }, - "TimeSeriesInformation": { - "properties": { - "sensitivities": { - "type": "array", - "items": { - "type": "string", - "description": "The requested sensitivity for calculating the baseline." - }, - "description": "The list of sensitivities for calculating the baseline." + } + }, + "TimeSeriesInformation": { + "properties": { + "sensitivities": { + "type": "array", + "items": { + "type": "string", + "description": "The requested sensitivity for calculating the baseline." }, - "values": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single metric value." - }, - "description": "The metric values to calculate the baseline." + "description": "The list of sensitivities for calculating the baseline." + }, + "values": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single metric value." }, - "timestamps": { - "type": "array", - "items": { - "type": "string", - "format": "date-time", - "description": "The timestamp for the baseline value in ISO 8601 format." - }, - "description": "The array of timestamps of the baselines." - } + "description": "The metric values to calculate the baseline." }, - "required": [ "sensitivities", "values" ], - "description": "The time series info needed for calculating the baseline." - }, - "CalculateBaselineResponse": { - "type": "object", - "properties": { - "type": { + "timestamps": { + "type": "array", + "items": { "type": "string", - "description": "The resource type of the baseline resource." + "format": "date-time", + "description": "The timestamp for the baseline value in ISO 8601 format." }, - "timestamps": { - "type": "array", - "items": { - "type": "string", - "format": "date-time", - "description": "The timestamp for the baseline value in ISO 8601 format." - }, - "description": "The array of timestamps of the baselines." + "description": "The array of timestamps of the baselines." + } + }, + "required": [ + "sensitivities", + "values" + ], + "description": "The time series info needed for calculating the baseline." + }, + "CalculateBaselineResponse": { + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The resource type of the baseline resource." + }, + "timestamps": { + "type": "array", + "items": { + "type": "string", + "format": "date-time", + "description": "The timestamp for the baseline value in ISO 8601 format." }, - "baseline": { - "type": "array", - "items": { - "$ref": "#/definitions/Baseline" - }, - "description": "The baseline values for each sensitivity." - } + "description": "The array of timestamps of the baselines." }, - "required": [ "type", "baseline" ], - "description": "The response to a calculate baseline call." + "baseline": { + "type": "array", + "items": { + "$ref": "#/definitions/Baseline" + }, + "description": "The baseline values for each sensitivity." + } }, - "Baseline": { - "type": "object", - "properties": { - "sensitivity": { - "type": "string", - "enum": [ - "Low", - "Medium", - "High" - ], - "x-ms-enum": { - "name": "Sensitivity", - "modelAsString": false - }, - "description": "The sensitivity of the baseline." + "required": [ + "type", + "baseline" + ], + "description": "The response to a calculate baseline call." + }, + "Baseline": { + "type": "object", + "properties": { + "sensitivity": { + "type": "string", + "enum": [ + "Low", + "Medium", + "High" + ], + "x-ms-enum": { + "name": "Sensitivity", + "modelAsString": false }, - "lowThresholds": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single low threshold value." - }, - "description": "The low thresholds of the baseline." + "description": "The sensitivity of the baseline." + }, + "lowThresholds": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single low threshold value." }, - "highThresholds": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single high threshold value." - }, - "description": "The high thresholds of the baseline." - } + "description": "The low thresholds of the baseline." }, - "required": [ "sensitivity", "lowThresholds", "highThresholds" ], - "description": "The baseline values for a single sensitivity value." - } - }, - "parameters": { - "ExtendedResourceUriParameter": { - "name": "resourceUri", - "in": "path", - "required": true, - "type": "string", - "description": "The identifier of the resource. It has the following structure: subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/{providerName}/{resourceName}. For example: subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", - "x-ms-parameter-location": "method", - "x-ms-skip-url-encoding": true + "highThresholds": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single high threshold value." + }, + "description": "The high thresholds of the baseline." + } }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." - } + "required": [ + "sensitivity", + "lowThresholds", + "highThresholds" + ], + "description": "The baseline values for a single sensitivity value." + } + }, + "parameters": { + "ExtendedResourceUriParameter": { + "name": "resourceUri", + "in": "path", + "required": true, + "type": "string", + "description": "The identifier of the resource. It has the following structure: subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/{providerName}/{resourceName}. For example: subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", + "x-ms-parameter-location": "method", + "x-ms-skip-url-encoding": true + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } - } \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/CalculateBaseline.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/CalculateBaseline.json index f2e6c8a3a683..904f1d3a3ef7 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/CalculateBaseline.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/CalculateBaseline.json @@ -1,41 +1,47 @@ { - "parameters": { - "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", - "api-version": "2018-09-01", - "TimeSeriesInformation": { - "sensitivities": ["Low", "Medium"], - "values": [61.0, 62.0] - } - }, - "responses": { - "200": { - "body": { - "type": "Microsoft.Insights/calculatebaseline", - "baseline": [ - { - "sensitivity": "Low", - "lowThresholds": [ - 30.0, - 31.1 - ], - "highThresholds": [ - 90.3453, - 91.3453 - ] - }, - { - "sensitivity": "Medium", - "lowThresholds": [ - 50.0, - 51.1 - ], - "highThresholds": [ - 70.3453, - 71.3453 - ] - } - ] - } - } + "parameters": { + "resourceUri": "subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default", + "api-version": "2018-09-01", + "TimeSeriesInformation": { + "sensitivities": [ + "Low", + "Medium" + ], + "values": [ + 61.0, + 62.0 + ] } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "type": "Microsoft.Insights/calculatebaseline", + "baseline": [ + { + "sensitivity": "Low", + "lowThresholds": [ + 30.0, + 31.1 + ], + "highThresholds": [ + 90.3453, + 91.3453 + ] + }, + { + "sensitivity": "Medium", + "lowThresholds": [ + 50.0, + 51.1 + ], + "highThresholds": [ + 70.3453, + 71.3453 + ] + } + ] + } + } + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/GetBaseline.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/GetBaseline.json index 05f072f096e4..326d00ba4e6b 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/GetBaseline.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/GetBaseline.json @@ -1,55 +1,55 @@ { - "parameters": { - "resourceUri": "subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "metricName": "PercentageCpu", - "aggregation": "Average", - "interval": "PT1H", - "sensitivities": "Low,Medium", - "api-version": "2018-09-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Insights/baseline/PercentageCpu", - "type": "Microsoft.Insights/baseline", - "name": { - "value": "PercentageCpu" - }, - "properties": { - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "aggregation": "Average", - "interval": "PT1H", - "timestamps": [ - "2017-04-14T02:20:00Z", - "2017-04-14T03:20:00Z" - ], - "baseline": [ - { - "sensitivity": "Low", - "lowThresholds": [ - 30.0, - 31.1 - ], - "highThresholds": [ - 90.3453, - 91.3453 - ] - }, - { - "sensitivity": "Medium", - "lowThresholds": [ - 50.0, - 51.1 - ], - "highThresholds": [ - 70.3453, - 71.3453 - ] - } - ] - } - } + "parameters": { + "resourceUri": "subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "metricName": "PercentageCpu", + "aggregation": "Average", + "interval": "PT1H", + "sensitivities": "Low,Medium", + "api-version": "2018-09-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Insights/baseline/PercentageCpu", + "type": "Microsoft.Insights/baseline", + "name": { + "value": "PercentageCpu" + }, + "properties": { + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "aggregation": "Average", + "interval": "PT1H", + "timestamps": [ + "2017-04-14T02:20:00Z", + "2017-04-14T03:20:00Z" + ], + "baseline": [ + { + "sensitivity": "Low", + "lowThresholds": [ + 30.0, + 31.1 + ], + "highThresholds": [ + 90.3453, + 91.3453 + ] + }, + { + "sensitivity": "Medium", + "lowThresholds": [ + 50.0, + 51.1 + ], + "highThresholds": [ + 70.3453, + 71.3453 + ] + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/GetBaselineMetadata.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/GetBaselineMetadata.json index 25bdf1d01df2..1af52e4488a8 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/GetBaselineMetadata.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/GetBaselineMetadata.json @@ -1,37 +1,37 @@ { - "parameters": { - "resourceUri": "subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "metricName": "PercentageCpu", - "aggregation": "Average", - "interval": "PT1H", - "resulttype": "metadata", - "api-version": "2018-09-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Insights/baseline/PercentageCpu", - "type": "Microsoft.Insights/baseline", - "name": { - "value": "PercentageCpu" - }, - "properties": { - "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", - "aggregation": "Average", - "interval": "PT1H", - "metadata": [ - { - "name": "CurrentTrainingState", - "value": "Trained" - }, - { - "name": "SelectedModel", - "value": "AdjustedBoxplot" - } - ] - } - } + "parameters": { + "resourceUri": "subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "metricName": "PercentageCpu", + "aggregation": "Average", + "interval": "PT1H", + "resulttype": "metadata", + "api-version": "2018-09-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Insights/baseline/PercentageCpu", + "type": "Microsoft.Insights/baseline", + "name": { + "value": "PercentageCpu" + }, + "properties": { + "timespan": "2017-04-14T02:20:00Z/2017-04-14T04:20:00Z", + "aggregation": "Average", + "interval": "PT1H", + "metadata": [ + { + "name": "CurrentTrainingState", + "value": "Trained" + }, + { + "name": "SelectedModel", + "value": "AdjustedBoxplot" + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/createOrUpdateActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/createOrUpdateActionGroup.json index 5d79f314d84b..741971c63b8c 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/createOrUpdateActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/createOrUpdateActionGroup.json @@ -1,297 +1,297 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2018-09-01", - "actionGroup": { - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com" - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" - } - ], - "voiceReceivers": [ - { - "name": "Sample voice", - "countryCode": "1", - "phoneNumber": "1234567890" - } - ], - "logicAppReceivers": [ - { - "name": "Sample logicApp", - "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", - "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" - } - ], - "azureFunctionReceivers": [ - { - "name": "Sample azureFunction", - "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", - "functionName": "HttpTriggerCSharp1", - "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" - } - ], - "armRoleReceivers": [ - { - "name": "Sample armRole", - "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635" - } - ] + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2018-09-01", + "actionGroup": { + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" + } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" + } + ], + "voiceReceivers": [ + { + "name": "Sample voice", + "countryCode": "1", + "phoneNumber": "1234567890" + } + ], + "logicAppReceivers": [ + { + "name": "Sample logicApp", + "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", + "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" + } + ], + "azureFunctionReceivers": [ + { + "name": "Sample azureFunction", + "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", + "functionName": "HttpTriggerCSharp1", + "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" + } + ], + "armRoleReceivers": [ + { + "name": "Sample armRole", + "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635" + } + ] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" + } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" + } + ], + "voiceReceivers": [ + { + "name": "Sample voice", + "countryCode": "1", + "phoneNumber": "1234567890" + } + ], + "logicAppReceivers": [ + { + "name": "Sample logicApp", + "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", + "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" + } + ], + "azureFunctionReceivers": [ + { + "name": "Sample azureFunction", + "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", + "functionName": "HttpTriggerCSharp1", + "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" } + ], + "armRoleReceivers": [ + { + "name": "Sample armRole", + "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635" + } + ] } + } }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled" - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" - } - ], - "voiceReceivers": [ - { - "name": "Sample voice", - "countryCode": "1", - "phoneNumber": "1234567890" - } - ], - "logicAppReceivers": [ - { - "name": "Sample logicApp", - "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", - "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" - } - ], - "azureFunctionReceivers": [ - { - "name": "Sample azureFunction", - "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", - "functionName": "HttpTriggerCSharp1", - "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" - } - ], - "armRoleReceivers": [ - { - "name": "Sample armRole", - "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635" - } - ] - } + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" + } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" + } + ], + "voiceReceivers": [ + { + "name": "Sample voice", + "countryCode": "1", + "phoneNumber": "1234567890" + } + ], + "logicAppReceivers": [ + { + "name": "Sample logicApp", + "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", + "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" + } + ], + "azureFunctionReceivers": [ + { + "name": "Sample azureFunction", + "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", + "functionName": "HttpTriggerCSharp1", + "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" } - }, - "201": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled" - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d" - } - ], - "voiceReceivers": [ - { - "name": "Sample voice", - "countryCode": "1", - "phoneNumber": "1234567890" - } - ], - "logicAppReceivers": [ - { - "name": "Sample logicApp", - "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", - "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w" - } - ], - "azureFunctionReceivers": [ - { - "name": "Sample azureFunction", - "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", - "functionName": "HttpTriggerCSharp1", - "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==" - } - ], - "armRoleReceivers": [ - { - "name": "Sample armRole", - "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635" - } - ] - } + ], + "armRoleReceivers": [ + { + "name": "Sample armRole", + "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/deleteActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/deleteActionGroup.json index 3d7edcf8ebb6..d61e90614bce 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/deleteActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/deleteActionGroup.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2018-08-01" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2018-08-01" + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/enableReceiver.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/enableReceiver.json index c57300b58fe7..cdf572ea5acb 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/enableReceiver.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/enableReceiver.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2018-08-01", - "enableRequest": { - "receiverName": "John Doe's mobile" - } + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2018-08-01", + "enableRequest": { + "receiverName": "John Doe's mobile" + } + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "409": { - "headers": {}, - "body": null - } + "409": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/getActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/getActionGroup.json index 6aa11ec2bdfc..d0b3e8101891 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/getActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/getActionGroup.json @@ -1,56 +1,56 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2018-08-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Disabled" - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Disabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ] - } + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2018-08-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Disabled" } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Disabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/listActionGroups.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/listActionGroups.json index cbce7c57b919..11fcec5d6097 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/listActionGroups.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/listActionGroups.json @@ -1,86 +1,86 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "api-version": "2018-03801" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Disabled" - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Disabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ] - } - }, - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup2", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup2", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample2", - "enabled": false, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - } - ], - "smsReceivers": [ - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [] - } - } - ] + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "api-version": "2018-03801" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Disabled" + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Disabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" + } + ] } - } + }, + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup2", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup2", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample2", + "enabled": false, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + } + ], + "smsReceivers": [ + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [] + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/patchActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/patchActionGroup.json index fe9df4fec5f0..4f0cdf66c70e 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/patchActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-09-01/examples/patchActionGroup.json @@ -1,62 +1,68 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2018-08-01", - "actionGroupPatch": { - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "enabled": false + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2018-08-01", + "actionGroupPatch": { + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "enabled": false + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled" + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled" } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled" - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled" - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook" - } - ] - } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/actionGroups_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/actionGroups_API.json index ff39155ebae6..0f37312be577 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/actionGroups_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/actionGroups_API.json @@ -1,862 +1,862 @@ { - "swagger": "2.0", - "info": { - "title": "Azure Action Groups API", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2019-03-01" + "swagger": "2.0", + "info": { + "title": "Azure Action Groups API", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "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}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}": { + "put": { + "description": "Create a new action group or update an existing one.", + "operationId": "ActionGroups_CreateOrUpdate", + "x-ms-examples": { + "Create or update an action group": { + "$ref": "./examples/createOrUpdateActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "name": "actionGroup", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActionGroupResource" + }, + "description": "The action group to create or use for the update." + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "An existing action group was successfully updated.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "201": { + "description": "A new action group was successfully created.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" + } + }, + "default": { + "description": "An error occurred and the action group could not be created or updated.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } - ], - "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" + }, + "get": { + "description": "Get an action group.", + "operationId": "ActionGroups_Get", + "x-ms-examples": { + "Get an action group": { + "$ref": "./examples/getActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" } + }, + "default": { + "description": "An error occurred and the action group could not be retrieved. 404: The action group does not exist.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } - }, - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}": { - "put": { - "description": "Create a new action group or update an existing one.", - "operationId": "ActionGroups_CreateOrUpdate", - "x-ms-examples": { - "Create or update an action group": { - "$ref": "./examples/createOrUpdateActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "name": "actionGroup", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActionGroupResource" - }, - "description": "The action group to create or use for the update." - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "An existing action group was successfully updated.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "201": { - "description": "A new action group was successfully created.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "default": { - "description": "An error occurred and the action group could not be created or updated.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "get": { - "description": "Get an action group.", - "operationId": "ActionGroups_Get", - "x-ms-examples": { - "Get an action group": { - "$ref": "./examples/getActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - }, - "default": { - "description": "An error occurred and the action group could not be retrieved. 404: The action group does not exist.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "delete": { - "description": "Delete an action group.", - "operationId": "ActionGroups_Delete", - "x-ms-examples": { - "Delete an action group": { - "$ref": "./examples/deleteActionGroup.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The action group was successfully deleted." - }, - "204": { - "description": "The action group does not exist. It may have already been deleted." - }, - "default": { - "description": "An error occurred and the action group could not be deleted.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "delete": { + "description": "Delete an action group.", + "operationId": "ActionGroups_Delete", + "x-ms-examples": { + "Delete an action group": { + "$ref": "./examples/deleteActionGroup.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The action group was successfully deleted." + }, + "204": { + "description": "The action group does not exist. It may have already been deleted." + }, + "default": { + "description": "An error occurred and the action group could not be deleted.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "description": "Updates an existing action group's tags. To update other fields use the CreateOrUpdate method.", + "operationId": "ActionGroups_Update", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "actionGroupPatch", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ActionGroupPatchBody" }, - "patch": { - "description": "Updates an existing action group's tags. To update other fields use the CreateOrUpdate method.", - "operationId": "ActionGroups_Update", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "actionGroupPatch", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ActionGroupPatchBody" - }, - "description": "Parameters supplied to the operation." - } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "An existing action group was successfully updated.", - "schema": { - "$ref": "#/definitions/ActionGroupResource" - } - } - }, - "x-ms-examples": { - "Patch an action group": { - "$ref": "./examples/patchActionGroup.json" - } - } + "description": "Parameters supplied to the operation." + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } - }, - "/subscriptions/{subscriptionId}/providers/microsoft.insights/actionGroups": { - "get": { - "description": "Get a list of all action groups in a subscription.", - "operationId": "ActionGroups_ListBySubscriptionId", - "x-ms-examples": { - "List action groups": { - "$ref": "./examples/listActionGroups.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupList" - } - }, - "default": { - "description": "An error occurred and the list of action groups could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + }, + "200": { + "description": "An existing action group was successfully updated.", + "schema": { + "$ref": "#/definitions/ActionGroupResource" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups": { - "get": { - "description": "Get a list of all action groups in a resource group.", - "operationId": "ActionGroups_ListByResourceGroup", - "x-ms-examples": { - "List action groups": { - "$ref": "./examples/listActionGroups.json" - } - }, - "x-ms-pageable": { - "nextLinkName": null - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The request succeeded.", - "schema": { - "$ref": "#/definitions/ActionGroupList" - } - }, - "default": { - "description": "An error occurred and the list of action groups could not be retrieved.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - } + "x-ms-examples": { + "Patch an action group": { + "$ref": "./examples/patchActionGroup.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/microsoft.insights/actionGroups": { + "get": { + "description": "Get a list of all action groups in a subscription.", + "operationId": "ActionGroups_ListBySubscriptionId", + "x-ms-examples": { + "List action groups": { + "$ref": "./examples/listActionGroups.json" + } + }, + "x-ms-pageable": { + "nextLinkName": null }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}/subscribe": { - "post": { - "description": "Enable a receiver in an action group. This changes the receiver's status from Disabled to Enabled. This operation is only supported for Email or SMS receivers.", - "operationId": "ActionGroups_EnableReceiver", - "x-ms-examples": { - "Enable the receiver": { - "$ref": "./examples/enableReceiver.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ActionGroupNameParameter" - }, - { - "name": "enableRequest", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/EnableRequest" - }, - "description": "The receiver to re-enable." - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "The receiver was successfully enabled." - }, - "409": { - "description": "The receiver is already enabled in the action group." - }, - "default": { - "description": "An error occurred and the receiver could not be enabled, e.g.: 404: The action group was not found or no matching receiver was found in the action group.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupList" } + }, + "default": { + "description": "An error occurred and the list of action groups could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } } + } }, - "definitions": { - "Resource": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Azure resource Id" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Azure resource name" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Azure resource type" - }, - "location": { - "type": "string", - "description": "Resource location", - "x-ms-mutability": [ - "create", - "read" - ] - }, - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - } - }, - "required": [ - "location" - ], - "x-ms-azure-resource": true, - "description": "An azure resource object" - }, - "ActionGroupResource": { - "description": "An action group resource.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActionGroup", - "description": "The action groups properties of the resource." - } - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups": { + "get": { + "description": "Get a list of all action groups in a resource group.", + "operationId": "ActionGroups_ListByResourceGroup", + "x-ms-examples": { + "List action groups": { + "$ref": "./examples/listActionGroups.json" + } + }, + "x-ms-pageable": { + "nextLinkName": null }, - "ActionGroupList": { - "description": "A list of action groups.", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ActionGroupResource" - }, - "description": "The list of action groups." - }, - "nextLink": { - "type": "string", - "description": "Provides the link to retrieve the next set of elements." - } + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The request succeeded.", + "schema": { + "$ref": "#/definitions/ActionGroupList" } + }, + "default": { + "description": "An error occurred and the list of action groups could not be retrieved.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/actionGroups/{actionGroupName}/subscribe": { + "post": { + "description": "Enable a receiver in an action group. This changes the receiver's status from Disabled to Enabled. This operation is only supported for Email or SMS receivers.", + "operationId": "ActionGroups_EnableReceiver", + "x-ms-examples": { + "Enable the receiver": { + "$ref": "./examples/enableReceiver.json" + } }, - "ActionGroup": { - "description": "An Azure action group.", - "properties": { - "groupShortName": { - "type": "string", - "maxLength": 12, - "description": "The short name of the action group. This will be used in SMS messages." - }, - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its receivers will receive communications." - }, - "emailReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/EmailReceiver" - }, - "description": "The list of email receivers that are part of this action group." - }, - "smsReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/SmsReceiver" - }, - "description": "The list of SMS receivers that are part of this action group." - }, - "webhookReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/WebhookReceiver" - }, - "description": "The list of webhook receivers that are part of this action group." - }, - "itsmReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/ItsmReceiver" - }, - "description": "The list of ITSM receivers that are part of this action group." - }, - "azureAppPushReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AzureAppPushReceiver" - }, - "description": "The list of AzureAppPush receivers that are part of this action group." - }, - "automationRunbookReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AutomationRunbookReceiver" - }, - "description": "The list of AutomationRunbook receivers that are part of this action group." - }, - "voiceReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/VoiceReceiver" - }, - "description": "The list of voice receivers that are part of this action group." - }, - "logicAppReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/LogicAppReceiver" - }, - "description": "The list of logic app receivers that are part of this action group." - }, - "azureFunctionReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/AzureFunctionReceiver" - }, - "description": "The list of azure function receivers that are part of this action group." - }, - "armRoleReceivers": { - "type": "array", - "items": { - "$ref": "#/definitions/ArmRoleReceiver" - }, - "description": "The list of ARM role receivers that are part of this action group. Roles are Azure RBAC roles and only built-in roles are supported." - } - }, - "required": [ - "groupShortName", - "enabled" - ] - }, - "EmailReceiver": { - "description": "An email receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the email receiver. Names must be unique across all receivers within an action group." - }, - "emailAddress": { - "type": "string", - "description": "The email address of this receiver." - }, - "useCommonAlertSchema": { - "type": "boolean", - "description": "Indicates whether to use common alert schema." - }, - "status": { - "readOnly": true, - "$ref": "#/definitions/ReceiverStatus", - "description": "The receiver status of the e-mail." - } - }, - "required": [ - "name", - "emailAddress", - "useCommonAlertSchema" - ] - }, - "SmsReceiver": { - "description": "An SMS receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the SMS receiver. Names must be unique across all receivers within an action group." - }, - "countryCode": { - "type": "string", - "description": "The country code of the SMS receiver." - }, - "phoneNumber": { - "type": "string", - "description": "The phone number of the SMS receiver." - }, - "status": { - "readOnly": true, - "$ref": "#/definitions/ReceiverStatus", - "description": "The status of the receiver." - } - }, - "required": [ - "name", - "countryCode", - "phoneNumber" - ] - }, - "WebhookReceiver": { - "description": "A webhook receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the webhook receiver. Names must be unique across all receivers within an action group." - }, - "serviceUri": { - "type": "string", - "description": "The URI where webhooks should be sent." - }, - "useCommonAlertSchema": { - "type": "boolean", - "description": "Indicates whether to use common alert schema." - } - }, - "required": [ - "name", - "serviceUri", - "useCommonAlertSchema" - ] - }, - "ItsmReceiver": { - "description": "An Itsm receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the Itsm receiver. Names must be unique across all receivers within an action group." - }, - "workspaceId": { - "type": "string", - "description": "OMS LA instance identifier." - }, - "connectionId": { - "type": "string", - "description": "Unique identification of ITSM connection among multiple defined in above workspace." - }, - "ticketConfiguration": { - "type": "string", - "description": "JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well." - }, - "region": { - "type": "string", - "description": "Region in which workspace resides. Supported values:'centralindia','japaneast','southeastasia','australiasoutheast','uksouth','westcentralus','canadacentral','eastus','westeurope'" - } - }, - "required": [ - "name", - "workspaceId", - "connectionId", - "ticketConfiguration", - "region" - ] - }, - "AzureAppPushReceiver": { - "description": "The Azure mobile App push notification receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group." - }, - "emailAddress": { - "type": "string", - "description": "The email address registered for the Azure mobile app." - } - }, - "required": [ - "name", - "emailAddress" - ] - }, - "AutomationRunbookReceiver": { - "description": "The Azure Automation Runbook notification receiver.", - "properties": { - "automationAccountId": { - "type": "string", - "description": "The Azure automation account Id which holds this runbook and authenticate to Azure resource." - }, - "runbookName": { - "type": "string", - "description": "The name for this runbook." - }, - "webhookResourceId": { - "type": "string", - "description": "The resource id for webhook linked to this runbook." - }, - "isGlobalRunbook": { - "type": "boolean", - "description": "Indicates whether this instance is global runbook." - }, - "name": { - "type": "string", - "description": "Indicates name of the webhook." - }, - "serviceUri": { - "type": "string", - "description": "The URI where webhooks should be sent." - }, - "useCommonAlertSchema": { - "type": "boolean", - "description": "Indicates whether to use common alert schema." - } - }, - "required": [ - "automationAccountId", - "runbookName", - "webhookResourceId", - "isGlobalRunbook", - "useCommonAlertSchema" - ] - }, - "VoiceReceiver": { - "description": "A voice receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the voice receiver. Names must be unique across all receivers within an action group." - }, - "countryCode": { - "type": "string", - "description": "The country code of the voice receiver." - }, - "phoneNumber": { - "type": "string", - "description": "The phone number of the voice receiver." - } - }, - "required": [ - "name", - "countryCode", - "phoneNumber" - ] - }, - "LogicAppReceiver": { - "description": "A logic app receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the logic app receiver. Names must be unique across all receivers within an action group." - }, - "resourceId": { - "type": "string", - "description": "The azure resource id of the logic app receiver." - }, - "callbackUrl": { - "type": "string", - "description": "The callback url where http request sent to." - }, - "useCommonAlertSchema": { - "type": "boolean", - "description": "Indicates whether to use common alert schema." - } - }, - "required": [ - "name", - "resourceId", - "callbackUrl", - "useCommonAlertSchema" - ] - }, - "AzureFunctionReceiver": { - "description": "An azure function receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the azure function receiver. Names must be unique across all receivers within an action group." - }, - "functionAppResourceId": { - "type": "string", - "description": "The azure resource id of the function app." - }, - "functionName": { - "type": "string", - "description": "The function name in the function app." - }, - "httpTriggerUrl": { - "type": "string", - "description": "The http trigger url where http request sent to." - }, - "useCommonAlertSchema": { - "type": "boolean", - "description": "Indicates whether to use common alert schema." - } - }, - "required": [ - "name", - "functionAppResourceId", - "functionName", - "httpTriggerUrl", - "useCommonAlertSchema" - ] - }, - "ArmRoleReceiver": { - "description": "An arm role receiver.", - "properties": { - "name": { - "type": "string", - "description": "The name of the arm role receiver. Names must be unique across all receivers within an action group." - }, - "roleId": { - "type": "string", - "description": "The arm role id." - }, - "useCommonAlertSchema": { - "type": "boolean", - "description": "Indicates whether to use common alert schema." - } - }, - "required": [ - "name", - "roleId", - "useCommonAlertSchema" - ] - }, - "ReceiverStatus": { - "type": "string", - "enum": [ - "NotSpecified", - "Enabled", - "Disabled" - ], - "x-ms-enum": { - "name": "ReceiverStatus", - "modelAsString": false - }, - "description": "Indicates the status of the receiver. Receivers that are not Enabled will not receive any communications." - }, - "EnableRequest": { - "description": "Describes a receiver that should be resubscribed.", - "properties": { - "receiverName": { - "type": "string", - "description": "The name of the receiver to resubscribe." - } + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ActionGroupNameParameter" + }, + { + "name": "enableRequest", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/EnableRequest" }, - "required": [ - "receiverName" - ] - }, - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" - }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } + "description": "The receiver to re-enable." + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "The receiver was successfully enabled." + }, + "409": { + "description": "The receiver is already enabled in the action group." + }, + "default": { + "description": "An error occurred and the receiver could not be enabled, e.g.: 404: The action group was not found or no matching receiver was found in the action group.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + } + }, + "definitions": { + "Resource": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Azure resource Id" }, - "ActionGroupPatchBody": { - "description": "An action group object for the body of patch operations.", - "properties": { - "tags": { - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ActionGroupPatch", - "description": "The action group settings for an update operation." - } - } + "name": { + "type": "string", + "readOnly": true, + "description": "Azure resource name" }, - "ActionGroupPatch": { - "description": "An Azure action group for patch operations.", - "properties": { - "enabled": { - "type": "boolean", - "default": true, - "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its actions will be activated." - } - } + "type": { + "type": "string", + "readOnly": true, + "description": "Azure resource type" + }, + "location": { + "type": "string", + "description": "Resource location", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true, + "description": "An azure resource object" }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "The Azure subscription Id." + "ActionGroupResource": { + "description": "An action group resource.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActionGroup", + "description": "The action groups properties of the resource." + } + } + }, + "ActionGroupList": { + "description": "A list of action groups.", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ActionGroupResource" + }, + "description": "The list of action groups." }, - "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group.", - "x-ms-parameter-location": "method" + "nextLink": { + "type": "string", + "description": "Provides the link to retrieve the next set of elements." + } + } + }, + "ActionGroup": { + "description": "An Azure action group.", + "properties": { + "groupShortName": { + "type": "string", + "maxLength": 12, + "description": "The short name of the action group. This will be used in SMS messages." }, - "ActionGroupNameParameter": { - "name": "actionGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the action group.", - "x-ms-parameter-location": "method" + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its receivers will receive communications." }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." + "emailReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/EmailReceiver" + }, + "description": "The list of email receivers that are part of this action group." + }, + "smsReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/SmsReceiver" + }, + "description": "The list of SMS receivers that are part of this action group." + }, + "webhookReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/WebhookReceiver" + }, + "description": "The list of webhook receivers that are part of this action group." + }, + "itsmReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/ItsmReceiver" + }, + "description": "The list of ITSM receivers that are part of this action group." + }, + "azureAppPushReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AzureAppPushReceiver" + }, + "description": "The list of AzureAppPush receivers that are part of this action group." + }, + "automationRunbookReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AutomationRunbookReceiver" + }, + "description": "The list of AutomationRunbook receivers that are part of this action group." + }, + "voiceReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/VoiceReceiver" + }, + "description": "The list of voice receivers that are part of this action group." + }, + "logicAppReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/LogicAppReceiver" + }, + "description": "The list of logic app receivers that are part of this action group." + }, + "azureFunctionReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/AzureFunctionReceiver" + }, + "description": "The list of azure function receivers that are part of this action group." + }, + "armRoleReceivers": { + "type": "array", + "items": { + "$ref": "#/definitions/ArmRoleReceiver" + }, + "description": "The list of ARM role receivers that are part of this action group. Roles are Azure RBAC roles and only built-in roles are supported." + } + }, + "required": [ + "groupShortName", + "enabled" + ] + }, + "EmailReceiver": { + "description": "An email receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the email receiver. Names must be unique across all receivers within an action group." + }, + "emailAddress": { + "type": "string", + "description": "The email address of this receiver." + }, + "useCommonAlertSchema": { + "type": "boolean", + "description": "Indicates whether to use common alert schema." + }, + "status": { + "readOnly": true, + "$ref": "#/definitions/ReceiverStatus", + "description": "The receiver status of the e-mail." + } + }, + "required": [ + "name", + "emailAddress", + "useCommonAlertSchema" + ] + }, + "SmsReceiver": { + "description": "An SMS receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the SMS receiver. Names must be unique across all receivers within an action group." + }, + "countryCode": { + "type": "string", + "description": "The country code of the SMS receiver." + }, + "phoneNumber": { + "type": "string", + "description": "The phone number of the SMS receiver." + }, + "status": { + "readOnly": true, + "$ref": "#/definitions/ReceiverStatus", + "description": "The status of the receiver." + } + }, + "required": [ + "name", + "countryCode", + "phoneNumber" + ] + }, + "WebhookReceiver": { + "description": "A webhook receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the webhook receiver. Names must be unique across all receivers within an action group." + }, + "serviceUri": { + "type": "string", + "description": "The URI where webhooks should be sent." + }, + "useCommonAlertSchema": { + "type": "boolean", + "description": "Indicates whether to use common alert schema." + } + }, + "required": [ + "name", + "serviceUri", + "useCommonAlertSchema" + ] + }, + "ItsmReceiver": { + "description": "An Itsm receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the Itsm receiver. Names must be unique across all receivers within an action group." + }, + "workspaceId": { + "type": "string", + "description": "OMS LA instance identifier." + }, + "connectionId": { + "type": "string", + "description": "Unique identification of ITSM connection among multiple defined in above workspace." + }, + "ticketConfiguration": { + "type": "string", + "description": "JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well." + }, + "region": { + "type": "string", + "description": "Region in which workspace resides. Supported values:'centralindia','japaneast','southeastasia','australiasoutheast','uksouth','westcentralus','canadacentral','eastus','westeurope'" + } + }, + "required": [ + "name", + "workspaceId", + "connectionId", + "ticketConfiguration", + "region" + ] + }, + "AzureAppPushReceiver": { + "description": "The Azure mobile App push notification receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group." + }, + "emailAddress": { + "type": "string", + "description": "The email address registered for the Azure mobile app." + } + }, + "required": [ + "name", + "emailAddress" + ] + }, + "AutomationRunbookReceiver": { + "description": "The Azure Automation Runbook notification receiver.", + "properties": { + "automationAccountId": { + "type": "string", + "description": "The Azure automation account Id which holds this runbook and authenticate to Azure resource." + }, + "runbookName": { + "type": "string", + "description": "The name for this runbook." + }, + "webhookResourceId": { + "type": "string", + "description": "The resource id for webhook linked to this runbook." + }, + "isGlobalRunbook": { + "type": "boolean", + "description": "Indicates whether this instance is global runbook." + }, + "name": { + "type": "string", + "description": "Indicates name of the webhook." + }, + "serviceUri": { + "type": "string", + "description": "The URI where webhooks should be sent." + }, + "useCommonAlertSchema": { + "type": "boolean", + "description": "Indicates whether to use common alert schema." + } + }, + "required": [ + "automationAccountId", + "runbookName", + "webhookResourceId", + "isGlobalRunbook", + "useCommonAlertSchema" + ] + }, + "VoiceReceiver": { + "description": "A voice receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the voice receiver. Names must be unique across all receivers within an action group." + }, + "countryCode": { + "type": "string", + "description": "The country code of the voice receiver." + }, + "phoneNumber": { + "type": "string", + "description": "The phone number of the voice receiver." } + }, + "required": [ + "name", + "countryCode", + "phoneNumber" + ] + }, + "LogicAppReceiver": { + "description": "A logic app receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the logic app receiver. Names must be unique across all receivers within an action group." + }, + "resourceId": { + "type": "string", + "description": "The azure resource id of the logic app receiver." + }, + "callbackUrl": { + "type": "string", + "description": "The callback url where http request sent to." + }, + "useCommonAlertSchema": { + "type": "boolean", + "description": "Indicates whether to use common alert schema." + } + }, + "required": [ + "name", + "resourceId", + "callbackUrl", + "useCommonAlertSchema" + ] + }, + "AzureFunctionReceiver": { + "description": "An azure function receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the azure function receiver. Names must be unique across all receivers within an action group." + }, + "functionAppResourceId": { + "type": "string", + "description": "The azure resource id of the function app." + }, + "functionName": { + "type": "string", + "description": "The function name in the function app." + }, + "httpTriggerUrl": { + "type": "string", + "description": "The http trigger url where http request sent to." + }, + "useCommonAlertSchema": { + "type": "boolean", + "description": "Indicates whether to use common alert schema." + } + }, + "required": [ + "name", + "functionAppResourceId", + "functionName", + "httpTriggerUrl", + "useCommonAlertSchema" + ] + }, + "ArmRoleReceiver": { + "description": "An arm role receiver.", + "properties": { + "name": { + "type": "string", + "description": "The name of the arm role receiver. Names must be unique across all receivers within an action group." + }, + "roleId": { + "type": "string", + "description": "The arm role id." + }, + "useCommonAlertSchema": { + "type": "boolean", + "description": "Indicates whether to use common alert schema." + } + }, + "required": [ + "name", + "roleId", + "useCommonAlertSchema" + ] + }, + "ReceiverStatus": { + "type": "string", + "enum": [ + "NotSpecified", + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "ReceiverStatus", + "modelAsString": false + }, + "description": "Indicates the status of the receiver. Receivers that are not Enabled will not receive any communications." + }, + "EnableRequest": { + "description": "Describes a receiver that should be resubscribed.", + "properties": { + "receiverName": { + "type": "string", + "description": "The name of the receiver to resubscribe." + } + }, + "required": [ + "receiverName" + ] + }, + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" + } + } + }, + "ActionGroupPatchBody": { + "description": "An action group object for the body of patch operations.", + "properties": { + "tags": { + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ActionGroupPatch", + "description": "The action group settings for an update operation." + } + } + }, + "ActionGroupPatch": { + "description": "An Azure action group for patch operations.", + "properties": { + "enabled": { + "type": "boolean", + "default": true, + "description": "Indicates whether this action group is enabled. If an action group is not enabled, then none of its actions will be activated." + } + } + } + }, + "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" + }, + "ActionGroupNameParameter": { + "name": "actionGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the action group.", + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/createOrUpdateActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/createOrUpdateActionGroup.json index 775a40ca8790..f6204525c10f 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/createOrUpdateActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/createOrUpdateActionGroup.json @@ -1,318 +1,318 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2019-03-01", - "actionGroup": { - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "useCommonAlertSchema": false - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "useCommonAlertSchema": true - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook", - "useCommonAlertSchema": true - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d", - "useCommonAlertSchema": true - } - ], - "voiceReceivers": [ - { - "name": "Sample voice", - "countryCode": "1", - "phoneNumber": "1234567890" - } - ], - "logicAppReceivers": [ - { - "name": "Sample logicApp", - "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", - "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w", - "useCommonAlertSchema": false - } - ], - "azureFunctionReceivers": [ - { - "name": "Sample azureFunction", - "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", - "functionName": "HttpTriggerCSharp1", - "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==", - "useCommonAlertSchema": true - } - ], - "armRoleReceivers": [ - { - "name": "Sample armRole", - "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "useCommonAlertSchema": true - } - ] + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2019-03-01", + "actionGroup": { + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "useCommonAlertSchema": false + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "useCommonAlertSchema": true + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook", + "useCommonAlertSchema": true + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" + } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d", + "useCommonAlertSchema": true + } + ], + "voiceReceivers": [ + { + "name": "Sample voice", + "countryCode": "1", + "phoneNumber": "1234567890" + } + ], + "logicAppReceivers": [ + { + "name": "Sample logicApp", + "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", + "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w", + "useCommonAlertSchema": false + } + ], + "azureFunctionReceivers": [ + { + "name": "Sample azureFunction", + "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", + "functionName": "HttpTriggerCSharp1", + "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==", + "useCommonAlertSchema": true + } + ], + "armRoleReceivers": [ + { + "name": "Sample armRole", + "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635", + "useCommonAlertSchema": true + } + ] + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled", + "useCommonAlertSchema": false + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled", + "useCommonAlertSchema": true + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook", + "useCommonAlertSchema": true + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" + } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d", + "useCommonAlertSchema": true + } + ], + "voiceReceivers": [ + { + "name": "Sample voice", + "countryCode": "1", + "phoneNumber": "1234567890" + } + ], + "logicAppReceivers": [ + { + "name": "Sample logicApp", + "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", + "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w", + "useCommonAlertSchema": false + } + ], + "azureFunctionReceivers": [ + { + "name": "Sample azureFunction", + "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", + "functionName": "HttpTriggerCSharp1", + "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==", + "useCommonAlertSchema": true } + ], + "armRoleReceivers": [ + { + "name": "Sample armRole", + "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635", + "useCommonAlertSchema": true + } + ] } + } }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled", - "useCommonAlertSchema": false - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled", - "useCommonAlertSchema": true - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook", - "useCommonAlertSchema": true - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d", - "useCommonAlertSchema": true - } - ], - "voiceReceivers": [ - { - "name": "Sample voice", - "countryCode": "1", - "phoneNumber": "1234567890" - } - ], - "logicAppReceivers": [ - { - "name": "Sample logicApp", - "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", - "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w", - "useCommonAlertSchema": false - } - ], - "azureFunctionReceivers": [ - { - "name": "Sample azureFunction", - "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", - "functionName": "HttpTriggerCSharp1", - "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==", - "useCommonAlertSchema": true - } - ], - "armRoleReceivers": [ - { - "name": "Sample armRole", - "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "useCommonAlertSchema": true - } - ] - } + "201": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled", + "useCommonAlertSchema": false + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled", + "useCommonAlertSchema": true + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook", + "useCommonAlertSchema": true + } + ], + "itsmReceivers": [ + { + "name": "Sample itsm", + "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", + "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", + "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", + "region": "westcentralus" + } + ], + "azureAppPushReceivers": [ + { + "name": "Sample azureAppPush", + "emailAddress": "johndoe@email.com" + } + ], + "automationRunbookReceivers": [ + { + "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", + "runbookName": "Sample runbook", + "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", + "isGlobalRunbook": false, + "name": "testRunbook", + "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d", + "useCommonAlertSchema": true + } + ], + "voiceReceivers": [ + { + "name": "Sample voice", + "countryCode": "1", + "phoneNumber": "1234567890" + } + ], + "logicAppReceivers": [ + { + "name": "Sample logicApp", + "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", + "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w", + "useCommonAlertSchema": false + } + ], + "azureFunctionReceivers": [ + { + "name": "Sample azureFunction", + "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", + "functionName": "HttpTriggerCSharp1", + "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==", + "useCommonAlertSchema": true } - }, - "201": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled", - "useCommonAlertSchema": false - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled", - "useCommonAlertSchema": true - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook", - "useCommonAlertSchema": true - } - ], - "itsmReceivers": [ - { - "name": "Sample itsm", - "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c", - "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1", - "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}", - "region": "westcentralus" - } - ], - "azureAppPushReceivers": [ - { - "name": "Sample azureAppPush", - "emailAddress": "johndoe@email.com" - } - ], - "automationRunbookReceivers": [ - { - "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest", - "runbookName": "Sample runbook", - "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084", - "isGlobalRunbook": false, - "name": "testRunbook", - "serviceUri": "https://s13events.azure-automation.net/webhooks?token=iimE%2fD19Eg%2bvDy22yUMecIZY6Uiz%2bHfuQ67r8r1wY%2fI%3d", - "useCommonAlertSchema": true - } - ], - "voiceReceivers": [ - { - "name": "Sample voice", - "countryCode": "1", - "phoneNumber": "1234567890" - } - ], - "logicAppReceivers": [ - { - "name": "Sample logicApp", - "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp", - "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w", - "useCommonAlertSchema": false - } - ], - "azureFunctionReceivers": [ - { - "name": "Sample azureFunction", - "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp", - "functionName": "HttpTriggerCSharp1", - "httpTriggerUrl": "https://testfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1?code=4CopFfiXqUQC8dvIM7F53J7tIU3Gy9QQIG/vKAXMe2avhHqK3/jVYw==", - "useCommonAlertSchema": true - } - ], - "armRoleReceivers": [ - { - "name": "Sample armRole", - "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "useCommonAlertSchema": true - } - ] - } + ], + "armRoleReceivers": [ + { + "name": "Sample armRole", + "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635", + "useCommonAlertSchema": true } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/deleteActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/deleteActionGroup.json index 3f5e257870b3..e35e083e4ebb 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/deleteActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/deleteActionGroup.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2019-03-01" + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/enableReceiver.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/enableReceiver.json index 460f6864c0eb..4fb78fcca51d 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/enableReceiver.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/enableReceiver.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2019-03-01", - "enableRequest": { - "receiverName": "John Doe's mobile" - } + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2019-03-01", + "enableRequest": { + "receiverName": "John Doe's mobile" + } + }, + "responses": { + "200": { + "headers": {}, + "body": null }, - "responses": { - "200": { - "headers": {}, - "body": null - }, - "409": { - "headers": {}, - "body": null - } + "409": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/getActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/getActionGroup.json index 2896dd13117d..538e192f52bf 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/getActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/getActionGroup.json @@ -1,59 +1,59 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled", - "useCommonAlertSchema": true - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Disabled", - "useCommonAlertSchema": true - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Disabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook", - "useCommonAlertSchema": false - } - ] - } + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled", + "useCommonAlertSchema": true + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Disabled", + "useCommonAlertSchema": true } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Disabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook", + "useCommonAlertSchema": false + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/listActionGroups.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/listActionGroups.json index 30bec9bfa7ea..9058cf7afdf3 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/listActionGroups.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/listActionGroups.json @@ -1,90 +1,90 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled", - "useCommonAlertSchema": true - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Disabled", - "useCommonAlertSchema": true - } - ], - "smsReceivers": [ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Disabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook", - "useCommonAlertSchema": false - } - ] - } - }, - { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup2", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup2", - "location": "Global", - "tags": {}, - "properties": { - "groupShortName": "sample2", - "enabled": false, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled", - "useCommonAlertSchema": true - } - ], - "smsReceivers": [ - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers": [] - } - } - ] + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled", + "useCommonAlertSchema": true + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Disabled", + "useCommonAlertSchema": true + } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Disabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook", + "useCommonAlertSchema": false + } + ] } - } + }, + { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup2", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup2", + "location": "Global", + "tags": {}, + "properties": { + "groupShortName": "sample2", + "enabled": false, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled", + "useCommonAlertSchema": true + } + ], + "smsReceivers": [ + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [] + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/metricBaselines.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/metricBaselines.json index 788b72e76039..b44b5b9bffbf 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/metricBaselines.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/metricBaselines.json @@ -1,55 +1,73 @@ { - "parameters": { - "resourceUri": "subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", - "timespan": "2019-03-12T11:00:00.000Z/2019-03-12T12:00:00.000Z", - "metricName": "Percentage Cpu", - "aggregation": "average", - "interval": "PT1H", - "sensitivities": "Low,Medium", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/SmartAnalytics-DEV-VM/providers/Microsoft.Compute/virtualMachines/DemoVM1/providers/microsoft.insights/metricBaselines/Percentage CPU", - "type": "microsoft.insights/metricBaselines", - "name": "Percentage CPU", - "properties": { - "interval": "PT1H", - "timespan": "2019-03-12T11:00:00.000Z/2019-03-12T12:00:00.000Z", - "namespace": "microsoft.compute/virtualmachines", - "baselines": [{ - "aggregation": "average", - "dimensions": [], - "metadata": [{ - "name": "ErrorType", - "value": "TooManyAnomalies" - }, - { - "name": "SeasonalityFrequency", - "value": "288" - }], - "timestamps": ["2019-03-12T11:00:00.000Z", - "2019-03-12T12:00:00.000Z"], - "data": [{ - "sensitivity": "Low", - "lowThresholds": [30.0, - 31.1], - "highThresholds": [90.3453, - 91.3453] - }, - { - "sensitivity": "Medium", - "lowThresholds": [50.0, - 51.1], - "highThresholds": [70.3453, - 71.3453] - }] - }] - } - }] - } - } + "parameters": { + "resourceUri": "subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1", + "timespan": "2019-03-12T11:00:00.000Z/2019-03-12T12:00:00.000Z", + "metricName": "Percentage Cpu", + "aggregation": "average", + "interval": "PT1H", + "sensitivities": "Low,Medium", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/SmartAnalytics-DEV-VM/providers/Microsoft.Compute/virtualMachines/DemoVM1/providers/microsoft.insights/metricBaselines/Percentage CPU", + "type": "microsoft.insights/metricBaselines", + "name": "Percentage CPU", + "properties": { + "interval": "PT1H", + "timespan": "2019-03-12T11:00:00.000Z/2019-03-12T12:00:00.000Z", + "namespace": "microsoft.compute/virtualmachines", + "baselines": [ + { + "aggregation": "average", + "dimensions": [], + "metadata": [ + { + "name": "ErrorType", + "value": "TooManyAnomalies" + }, + { + "name": "SeasonalityFrequency", + "value": "288" + } + ], + "timestamps": [ + "2019-03-12T11:00:00.000Z", + "2019-03-12T12:00:00.000Z" + ], + "data": [ + { + "sensitivity": "Low", + "lowThresholds": [ + 30.0, + 31.1 + ], + "highThresholds": [ + 90.3453, + 91.3453 + ] + }, + { + "sensitivity": "Medium", + "lowThresholds": [ + 50.0, + 51.1 + ], + "highThresholds": [ + 70.3453, + 71.3453 + ] + } + ] + } + ] + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/patchActionGroup.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/patchActionGroup.json index cea90dcf4195..ecfa69379297 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/patchActionGroup.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/examples/patchActionGroup.json @@ -1,65 +1,71 @@ { - "parameters": { - "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", - "resourceGroupName": "Default-NotificationRules", - "actionGroupName": "SampleActionGroup", - "api-version": "2019-03-01", - "actionGroupPatch": { - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "enabled": false + "parameters": { + "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d", + "resourceGroupName": "Default-NotificationRules", + "actionGroupName": "SampleActionGroup", + "api-version": "2019-03-01", + "actionGroupPatch": { + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "enabled": false + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", + "type": "Microsoft.Insights/ActionGroups", + "name": "SampleActionGroup", + "location": "Global", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "properties": { + "groupShortName": "sample", + "enabled": true, + "emailReceivers": [ + { + "name": "John Doe's email", + "emailAddress": "johndoe@email.com", + "status": "Enabled", + "useCommonAlertSchema": true + }, + { + "name": "Jane Smith's email", + "emailAddress": "janesmith@email.com", + "status": "Enabled", + "useCommonAlertSchema": true } - } - }, - "responses": { - "200": { - "headers": { }, - "body": { - "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup", - "type": "Microsoft.Insights/ActionGroups", - "name": "SampleActionGroup", - "location": "Global", - "tags": { "key1": "value1", "key2": "value2" }, - "properties": { - "groupShortName": "sample", - "enabled": true, - "emailReceivers": [ - { - "name": "John Doe's email", - "emailAddress": "johndoe@email.com", - "status": "Enabled", - "useCommonAlertSchema": true - }, - { - "name": "Jane Smith's email", - "emailAddress": "janesmith@email.com", - "status": "Enabled", - "useCommonAlertSchema": true - } - ], - "smsReceivers":[ - { - "name": "John Doe's mobile", - "countryCode": "1", - "phoneNumber": "1234567890", - "status": "Enabled" - }, - { - "name": "Jane Smith's mobile", - "countryCode": "1", - "phoneNumber": "0987654321", - "status": "Enabled" - } - ], - "webhookReceivers":[ - { - "name": "Sample webhook", - "serviceUri": "http://www.example.com/webhook", - "useCommonAlertSchema": false - } - ] - } + ], + "smsReceivers": [ + { + "name": "John Doe's mobile", + "countryCode": "1", + "phoneNumber": "1234567890", + "status": "Enabled" + }, + { + "name": "Jane Smith's mobile", + "countryCode": "1", + "phoneNumber": "0987654321", + "status": "Enabled" + } + ], + "webhookReceivers": [ + { + "name": "Sample webhook", + "serviceUri": "http://www.example.com/webhook", + "useCommonAlertSchema": false } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/metricBaselines_API.json b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/metricBaselines_API.json index 5f107a50da50..6d7f50245e2c 100644 --- a/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/metricBaselines_API.json +++ b/specification/monitor/resource-manager/Microsoft.Insights/stable/2019-03-01/metricBaselines_API.json @@ -1,376 +1,399 @@ { - "swagger": "2.0", - "info": { - "title": "MonitorManagementClient", - "x-ms-code-generation-settings": { - "name": "MonitorManagementClient" - }, - "version": "2019-03-01" + "swagger": "2.0", + "info": { + "title": "MonitorManagementClient", + "x-ms-code-generation-settings": { + "name": "MonitorManagementClient" }, - "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" - } + "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": { - "/{resourceUri}/providers/microsoft.insights/metricBaselines": { - "get": { - "tags": [ - "Baseline", - "Metric" - ], - "operationId": "Baselines_List", - "description": "**Lists the metric baseline values for a resource**.", - "x-ms-examples": { - "Get metric baselines": { - "$ref": "./examples/metricBaselines.json" - } + } + }, + "paths": { + "/{resourceUri}/providers/microsoft.insights/metricBaselines": { + "get": { + "tags": [ + "Baseline", + "Metric" + ], + "operationId": "Baselines_List", + "description": "**Lists the metric baseline values for a resource**.", + "x-ms-examples": { + "Get metric baselines": { + "$ref": "./examples/metricBaselines.json" + } + }, + "x-ms-pageable": { + "nextLinkName": null + }, + "parameters": [ + { + "$ref": "#/parameters/ResourceUriParameter" + }, + { + "$ref": "#/parameters/MetricNamesParameter" + }, + { + "$ref": "#/parameters/MetricNamespaceParameter" }, - "x-ms-pageable": { - "nextLinkName": null + { + "$ref": "#/parameters/TimespanParameter" }, - "parameters": [ - { - "$ref": "#/parameters/ResourceUriParameter" - }, - { - "$ref": "#/parameters/MetricNamesParameter" - }, - { - "$ref": "#/parameters/MetricNamespaceParameter" - }, - { - "$ref": "#/parameters/TimespanParameter" - }, - { - "$ref": "#/parameters/IntervalParameter" - }, - { - "$ref": "#/parameters/AggregationsParameter" - }, - { - "$ref": "#/parameters/SensitivitiesParameter" - }, - { - "name": "$filter", - "in": "query", - "type": "string", - "description": "The **$filter** is used to reduce the set of metric data returned.
Example:
Metric contains metadata A, B and C.
- Return all time series of C where A = a1 and B = b1 or b2
**$filter=A eq ‘a1’ and B eq ‘b1’ or B eq ‘b2’ and C eq ‘*’**
- Invalid variant:
**$filter=A eq ‘a1’ and B eq ‘b1’ and C eq ‘*’ or B = ‘b2’**
This is invalid because the logical or operator cannot separate two different metadata names.
- Return all time series where A = a1, B = b1 and C = c1:
**$filter=A eq ‘a1’ and B eq ‘b1’ and C eq ‘c1’**
- Return all time series where A = a1
**$filter=A eq ‘a1’ and B eq ‘*’ and C eq ‘*’**.", - "required": false - }, - { - "$ref": "#/parameters/BaselineResultTypeParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" + { + "$ref": "#/parameters/IntervalParameter" + }, + { + "$ref": "#/parameters/AggregationsParameter" + }, + { + "$ref": "#/parameters/SensitivitiesParameter" + }, + { + "name": "$filter", + "in": "query", + "type": "string", + "description": "The **$filter** is used to reduce the set of metric data returned.
Example:
Metric contains metadata A, B and C.
- Return all time series of C where A = a1 and B = b1 or b2
**$filter=A eq ‘a1’ and B eq ‘b1’ or B eq ‘b2’ and C eq ‘*’**
- Invalid variant:
**$filter=A eq ‘a1’ and B eq ‘b1’ and C eq ‘*’ or B = ‘b2’**
This is invalid because the logical or operator cannot separate two different metadata names.
- Return all time series where A = a1, B = b1 and C = c1:
**$filter=A eq ‘a1’ and B eq ‘b1’ and C eq ‘c1’**
- Return all time series where A = a1
**$filter=A eq ‘a1’ and B eq ‘*’ and C eq ‘*’**.", + "required": false + }, + { + "$ref": "#/parameters/BaselineResultTypeParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } - ], - "responses": { - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - }, - "200": { - "description": "Successful request to get the list of metric baseline values.", - "schema": { - "$ref": "#/definitions/MetricBaselinesResponse" - } + }, + "200": { + "description": "Successful request to get the list of metric baseline values.", + "schema": { + "$ref": "#/definitions/MetricBaselinesResponse" } } } } + } + }, + "definitions": { + "ErrorResponse": { + "description": "Describes the format of Error response.", + "type": "object", + "properties": { + "code": { + "description": "Error code", + "type": "string" + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" + } + } }, - "definitions": { - "ErrorResponse": { - "description": "Describes the format of Error response.", - "type": "object", - "properties": { - "code": { - "description": "Error code", - "type": "string" + "MetricBaselinesResponse": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/SingleMetricBaseline" }, - "message": { - "description": "Error message indicating why the operation failed.", - "type": "string" - } + "description": "The list of metric baselines." } }, - "MetricBaselinesResponse": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/SingleMetricBaseline" - }, - "description": "The list of metric baselines." - } - }, - "description": "A list of metric baselines." - }, - "SingleMetricBaseline": { - "properties": { - "id": { - "type": "string", - "description": "The metric baseline Id." - }, - "type": { - "type": "string", - "description": "The resource type of the metric baseline resource." - }, - "name": { - "type": "string", - "description": "The name of the metric for which the baselines were retrieved." - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/MetricBaselinesProperties", - "description": "The metric baseline properties of the metric." - } + "description": "A list of metric baselines." + }, + "SingleMetricBaseline": { + "properties": { + "id": { + "type": "string", + "description": "The metric baseline Id." + }, + "type": { + "type": "string", + "description": "The resource type of the metric baseline resource." + }, + "name": { + "type": "string", + "description": "The name of the metric for which the baselines were retrieved." }, - "required": [ "id", "type", "name", "properties" ], - "description": "The baseline results of a single metric." - }, - "MetricBaselinesProperties": { - "type": "object", "properties": { - "timespan": { - "type": "string", - "description": "The timespan for which the data was retrieved. Its value consists of two datetimes concatenated, separated by '/'. This may be adjusted in the future and returned back from what was originally requested." - }, - "interval": { - "type": "string", - "format": "duration", - "description": "The interval (window size) for which the metric data was returned in. This may be adjusted in the future and returned back from what was originally requested. This is not present if a metadata request was made." + "x-ms-client-flatten": true, + "$ref": "#/definitions/MetricBaselinesProperties", + "description": "The metric baseline properties of the metric." + } + }, + "required": [ + "id", + "type", + "name", + "properties" + ], + "description": "The baseline results of a single metric." + }, + "MetricBaselinesProperties": { + "type": "object", + "properties": { + "timespan": { + "type": "string", + "description": "The timespan for which the data was retrieved. Its value consists of two datetimes concatenated, separated by '/'. This may be adjusted in the future and returned back from what was originally requested." + }, + "interval": { + "type": "string", + "format": "duration", + "description": "The interval (window size) for which the metric data was returned in. This may be adjusted in the future and returned back from what was originally requested. This is not present if a metadata request was made." + }, + "namespace": { + "type": "string", + "description": "The namespace of the metrics been queried." + }, + "baselines": { + "type": "array", + "items": { + "$ref": "#/definitions/TimeSeriesBaseline" }, - "namespace": { - "type": "string", - "description": "The namespace of the metrics been queried." + "description": "The baseline for each time series that was queried." + } + }, + "required": [ + "timespan", + "interval", + "baselines" + ], + "description": "The response to a metric baselines query." + }, + "TimeSeriesBaseline": { + "properties": { + "aggregation": { + "type": "string", + "description": "The aggregation type of the metric." + }, + "dimensions": { + "type": "array", + "items": { + "$ref": "#/definitions/MetricSingleDimension" }, - "baselines": { - "type": "array", - "items": { - "$ref": "#/definitions/TimeSeriesBaseline" - }, - "description": "The baseline for each time series that was queried." - } + "description": "The dimensions of this time series." }, - "required": [ "timespan", "interval", "baselines" ], - "description": "The response to a metric baselines query." - }, - "TimeSeriesBaseline": { - "properties": { - "aggregation": { + "timestamps": { + "type": "array", + "items": { "type": "string", - "description": "The aggregation type of the metric." - }, - "dimensions": { - "type": "array", - "items": { - "$ref": "#/definitions/MetricSingleDimension" - }, - "description": "The dimensions of this time series." - }, - "timestamps": { - "type": "array", - "items": { - "type": "string", - "format": "date-time", - "description": "The timestamp for the baseline value in ISO 8601 format." - }, - "description": "The list of timestamps of the baselines." + "format": "date-time", + "description": "The timestamp for the baseline value in ISO 8601 format." }, - "data": { - "type": "array", - "items": { - "$ref": "#/definitions/SingleBaseline" - }, - "description": "The baseline values for each sensitivity." + "description": "The list of timestamps of the baselines." + }, + "data": { + "type": "array", + "items": { + "$ref": "#/definitions/SingleBaseline" }, - "metadata": { - "type": "array", - "items": { - "$ref": "#/definitions/BaselineMetadata" - }, - "description": "The baseline metadata values." - } + "description": "The baseline values for each sensitivity." }, - "required": [ "aggregation", "timestamps", "data" ], - "description": "The baseline values for a single time series." - }, - "MetricSingleDimension": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "Name of the dimension." + "metadata": { + "type": "array", + "items": { + "$ref": "#/definitions/BaselineMetadata" }, - "value": { - "type": "string", - "description": "Value of the dimension." - } + "description": "The baseline metadata values." + } + }, + "required": [ + "aggregation", + "timestamps", + "data" + ], + "description": "The baseline values for a single time series." + }, + "MetricSingleDimension": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Name of the dimension." }, - "required": [ "name", "value" ], - "description": "The metric dimension name and value." + "value": { + "type": "string", + "description": "Value of the dimension." + } }, - "SingleBaseline": { - "type": "object", - "properties": { - "sensitivity": { - "type": "string", - "enum": [ - "Low", - "Medium", - "High" - ], - "x-ms-enum": { - "name": "BaselineSensitivity", - "modelAsString": true - }, - "description": "the sensitivity of the baseline." - }, - "lowThresholds": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single low threshold value." - }, - "description": "The low thresholds of the baseline." + "required": [ + "name", + "value" + ], + "description": "The metric dimension name and value." + }, + "SingleBaseline": { + "type": "object", + "properties": { + "sensitivity": { + "type": "string", + "enum": [ + "Low", + "Medium", + "High" + ], + "x-ms-enum": { + "name": "BaselineSensitivity", + "modelAsString": true }, - "highThresholds": { - "type": "array", - "items": { - "type": "number", - "format": "double", - "description": "A single high threshold value." - }, - "description": "The high thresholds of the baseline." - } + "description": "the sensitivity of the baseline." }, - "required": [ "sensitivity", "lowThresholds", "highThresholds" ], - "description": "The baseline values for a single sensitivity value." - }, - "BaselineMetadata": { - "properties": { - "name": { - "type": "string", - "description": "Name of the baseline metadata." + "lowThresholds": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single low threshold value." }, - "value": { - "type": "string", - "description": "Value of the baseline metadata." - } + "description": "The low thresholds of the baseline." }, - "required": [ "name", "value" ], - "description": "Represents a baseline metadata value." - } - }, - "parameters": { - "ResourceUriParameter": { - "name": "resourceUri", - "in": "path", - "required": true, - "type": "string", - "description": "The identifier of the resource.", - "x-ms-parameter-location": "method", - "x-ms-skip-url-encoding": true - }, - "TimespanParameter": { - "name": "timespan", - "in": "query", - "required": false, - "type": "string", - "description": "The timespan of the query. It is a string with the following format 'startDateTime_ISO/endDateTime_ISO'.", - "x-ms-parameter-location": "method" - }, - "IntervalParameter": { - "name": "interval", - "in": "query", - "required": false, - "type": "string", - "format": "duration", - "description": "The interval (i.e. timegrain) of the query.", - "x-ms-parameter-location": "method" - }, - "MetricNamesParameter": { - "name": "metricnames", - "in": "query", - "required": false, - "type": "string", - "description": "The names of the metrics (comma separated) to retrieve.", - "x-ms-parameter-location": "method" - }, - "MetricNamespaceParameter": { - "name": "metricnamespace", - "in": "query", - "required": false, - "type": "string", - "description": "Metric namespace to query metric definitions for.", - "x-ms-parameter-location": "method" - }, - "AggregationsParameter": { - "name": "aggregation", - "in": "query", - "required": false, - "type": "string", - "description": "The list of aggregation types (comma separated) to retrieve.", - "x-ms-parameter-location": "method" - }, - "SensitivitiesParameter": { - "name": "sensitivities", - "in": "query", - "required": false, - "type": "string", - "description": "The list of sensitivities (comma separated) to retrieve.", - "x-ms-parameter-location": "method" + "highThresholds": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "description": "A single high threshold value." + }, + "description": "The high thresholds of the baseline." + } }, - "BaselineResultTypeParameter": { - "name": "resultType", - "in": "query", - "type": "string", - "enum": [ - "Data", - "Metadata" - ], - "x-ms-enum": { - "name": "ResultType", - "modelAsString": false + "required": [ + "sensitivity", + "lowThresholds", + "highThresholds" + ], + "description": "The baseline values for a single sensitivity value." + }, + "BaselineMetadata": { + "properties": { + "name": { + "type": "string", + "description": "Name of the baseline metadata." }, - "description": "Allows retrieving only metadata of the baseline. On data request all information is retrieved.", - "x-ms-parameter-location": "method", - "required": false + "value": { + "type": "string", + "description": "Value of the baseline metadata." + } }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." - } + "required": [ + "name", + "value" + ], + "description": "Represents a baseline metadata value." + } + }, + "parameters": { + "ResourceUriParameter": { + "name": "resourceUri", + "in": "path", + "required": true, + "type": "string", + "description": "The identifier of the resource.", + "x-ms-parameter-location": "method", + "x-ms-skip-url-encoding": true + }, + "TimespanParameter": { + "name": "timespan", + "in": "query", + "required": false, + "type": "string", + "description": "The timespan of the query. It is a string with the following format 'startDateTime_ISO/endDateTime_ISO'.", + "x-ms-parameter-location": "method" + }, + "IntervalParameter": { + "name": "interval", + "in": "query", + "required": false, + "type": "string", + "format": "duration", + "description": "The interval (i.e. timegrain) of the query.", + "x-ms-parameter-location": "method" + }, + "MetricNamesParameter": { + "name": "metricnames", + "in": "query", + "required": false, + "type": "string", + "description": "The names of the metrics (comma separated) to retrieve.", + "x-ms-parameter-location": "method" + }, + "MetricNamespaceParameter": { + "name": "metricnamespace", + "in": "query", + "required": false, + "type": "string", + "description": "Metric namespace to query metric definitions for.", + "x-ms-parameter-location": "method" + }, + "AggregationsParameter": { + "name": "aggregation", + "in": "query", + "required": false, + "type": "string", + "description": "The list of aggregation types (comma separated) to retrieve.", + "x-ms-parameter-location": "method" + }, + "SensitivitiesParameter": { + "name": "sensitivities", + "in": "query", + "required": false, + "type": "string", + "description": "The list of sensitivities (comma separated) to retrieve.", + "x-ms-parameter-location": "method" + }, + "BaselineResultTypeParameter": { + "name": "resultType", + "in": "query", + "type": "string", + "enum": [ + "Data", + "Metadata" + ], + "x-ms-enum": { + "name": "ResultType", + "modelAsString": false + }, + "description": "Allows retrieving only metadata of the baseline. On data request all information is retrieved.", + "x-ms-parameter-location": "method", + "required": false + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." } -} \ No newline at end of file + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/CheckNameAvailability.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/CheckNameAvailability.json index fcad6babede5..10161ea1d3d9 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/CheckNameAvailability.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/CheckNameAvailability.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ConfigurationCreateOrUpdate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ConfigurationCreateOrUpdate.json index 7b1c0a923c2a..4cb86a501129 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ConfigurationCreateOrUpdate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ConfigurationCreateOrUpdate.json @@ -6,7 +6,7 @@ "api-version": "2017-12-01-preview", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ + "properties": { "value": "off", "source": "user-override" } @@ -30,4 +30,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ConfigurationGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ConfigurationGet.json index 024f87a440d1..2239c50cb476 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ConfigurationGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ConfigurationGet.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseCreate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseCreate.json index 5459c5080944..fe6446eba8ca 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseCreate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseCreate.json @@ -6,9 +6,9 @@ "api-version": "2017-12-01-preview", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "charset":"utf8", - "collation":"utf8_general_ci" + "properties": { + "charset": "utf8", + "collation": "utf8_general_ci" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseDelete.json index de60cc340354..5a92a30f21a8 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseGet.json index e21c5cbef64e..14c67b04f652 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseListByServer.json index 80032843b496..076cf15c5b86 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/DatabaseListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleCreate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleCreate.json index 9f749c46fcaa..c93a4fe1b8cc 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleCreate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleCreate.json @@ -6,9 +6,9 @@ "api-version": "2017-12-01-preview", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "startIpAddress":"0.0.0.0", - "endIpAddress":"255.255.255.255" + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "255.255.255.255" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleDelete.json index 9bd78a018f7d..24b609a399b8 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleGet.json index 399a1ea5b114..a072465af30d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleListByServer.json index 3b00d3c2bbd0..af1300560888 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/FirewallRuleListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/LogFileListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/LogFileListByServer.json index 42686020cbb7..1158a53674ab 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/LogFileListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/LogFileListByServer.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/OperationList.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/OperationList.json index 17898b0ec9ae..3c2143e5e4f0 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/OperationList.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/OperationList.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/PerformanceTiersListByLocation.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/PerformanceTiersListByLocation.json index 65f92bde8968..372295debcc7 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/PerformanceTiersListByLocation.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/PerformanceTiersListByLocation.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ReplicasListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ReplicasListByServer.json index d92bda51d4f5..3ba3044c3b9f 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ReplicasListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ReplicasListByServer.json @@ -30,7 +30,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver.mysql.database.azure.com", "version": "5.6", @@ -48,7 +48,7 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", @@ -61,7 +61,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver1.mysql.database.azure.com", "version": "5.6", @@ -79,20 +79,20 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", "capacity": 2 }, - "properties": { + "properties": { "storageProfile": { "storageMB": 256000, "backupRetentionDays": 35, "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver2.mysql.database.azure.com", "version": "5.6", @@ -106,4 +106,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreateGeoRestoreMode.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreateGeoRestoreMode.json index 9efce0135830..1a584362d449 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreateGeoRestoreMode.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreateGeoRestoreMode.json @@ -1,87 +1,87 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2017-12-01-preview", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2017-12-01-preview", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "westus", - "properties": { - "createMode": "GeoRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "westus", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers" - } + "location": "westus", + "properties": { + "createMode": "GeoRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers", - "location": "westus", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "westus", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers", + "location": "westus", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreatePointInTimeRestore.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreatePointInTimeRestore.json index ea5a8b6e8573..978ac08c0c50 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreatePointInTimeRestore.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreatePointInTimeRestore.json @@ -1,88 +1,88 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2017-12-01-preview", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2017-12-01-preview", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "brazilsouth", - "properties": { - "restorePointInTime": "2017-12-14T00:00:37.467Z", - "createMode": "PointInTimeRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "brazilsouth", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers" - } + "location": "brazilsouth", + "properties": { + "restorePointInTime": "2017-12-14T00:00:37.467Z", + "createMode": "PointInTimeRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers", - "location": "brazilsouth", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "brazilsouth", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers", + "location": "brazilsouth", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreateReplicaMode.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreateReplicaMode.json index 42d22bb2929f..6b0fe8b632e2 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreateReplicaMode.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerCreateReplicaMode.json @@ -81,4 +81,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerDelete.json index 17cf2924102c..079f432114ff 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerRestart.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerRestart.json index 0f58486f743a..1bb9a7ec0414 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerRestart.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerRestart.json @@ -1,12 +1,12 @@ { - "parameters": { - "serverName": "testserver", - "resourceGroupName": "TestGroup", - "api-version": "2017-12-01-preview", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" - }, - "responses": { - "200": {}, - "202": {} - } - } \ No newline at end of file + "parameters": { + "serverName": "testserver", + "resourceGroupName": "TestGroup", + "api-version": "2017-12-01-preview", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsCreateMax.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsCreateMax.json index ce8f70a65a88..7e9b8bb82f78 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsCreateMax.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsCreateMax.json @@ -1,39 +1,48 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-12-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-12-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 5, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsCreateMin.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsCreateMin.json index 32d9e90c033a..4c103677e54b 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsCreateMin.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsCreateMin.json @@ -1,34 +1,33 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-12-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-12-01-preview", - "parameters": { - "properties": { - "state": "Disabled", - "emailAccountAdmins": true - } + "properties": { + "state": "Disabled", + "emailAccountAdmins": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageEndpoint": "" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageEndpoint": "" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsGet.json index d189ddd73a3f..4939ece1a0c6 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/ServerSecurityAlertsGet.json @@ -1,26 +1,30 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "emailAddresses": [ "test@microsoft.com;user@microsoft.com" ], - "disabledAlerts": ["Access_Anomaly"], - "retentionDays": 0, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "test@microsoft.com;user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly" + ], + "retentionDays": 0, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } } -} \ No newline at end of file + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json index e49272d97d31..63349a42c85e 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json @@ -6,35 +6,35 @@ "virtualNetworkRuleName": "vnet-firewall-rule", "api-version": "2017-12-01-preview", "parameters": { - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } } }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "202": {} + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesDelete.json index a6dc2113e0d5..8d51878323cd 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesDelete.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "resourceGroupName": "TestGroup", - "serverName": "vnet-test-svr", - "virtualNetworkRuleName": "vnet-firewall-rule", - "api-version": "2017-12-01-preview" - }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "parameters": { + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", + "resourceGroupName": "TestGroup", + "serverName": "vnet-test-svr", + "virtualNetworkRuleName": "vnet-firewall-rule", + "api-version": "2017-12-01-preview" + }, + "responses": { + "200": { + "body": "" + }, + "202": { + "body": "" + }, + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesGet.json index 176df67d2998..3e670a430e5e 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesGet.json @@ -7,17 +7,17 @@ "api-version": "2017-12-01-preview" }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesList.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesList.json index 3574662d1ed5..b9dbbb781c98 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesList.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/examples/VirtualNetworkRulesList.json @@ -7,31 +7,31 @@ "api-version": "2017-12-01-preview" }, "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - }, - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - ] - } + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + }, + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/mysql.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/mysql.json index 938a97c6e252..b7a1f683cc53 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/mysql.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2017-12-01-preview/mysql.json @@ -45,7 +45,7 @@ "$ref": "./examples/ServerCreate.json" }, "Create a database as a point in time restore": { - "$ref":"./examples/ServerCreatePointInTimeRestore.json" + "$ref": "./examples/ServerCreatePointInTimeRestore.json" }, "Create a server as a geo restore ": { "$ref": "./examples/ServerCreateGeoRestoreMode.json" @@ -293,7 +293,9 @@ ], "operationId": "Servers_Restart", "x-ms-examples": { - "ServerRestart": { "$ref": "./examples/ServerRestart.json" } + "ServerRestart": { + "$ref": "./examples/ServerRestart.json" + } }, "description": "Restarts a server.", "parameters": [ @@ -326,7 +328,7 @@ }, "x-ms-long-running-operation": true } - }, + }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/replicas": { "get": { "tags": [ @@ -1443,7 +1445,7 @@ "format": "int32", "description": "Max storage allowed for a server." }, - "storageAutogrow" : { + "storageAutogrow": { "type": "string", "description": "Enable Storage Auto Grow.", "enum": [ @@ -2270,7 +2272,7 @@ } }, "description": "An error response from the Batch service." - } + } }, "parameters": { "SubscriptionIdParameter": { @@ -2355,4 +2357,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/CheckNameAvailability.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/CheckNameAvailability.json index 4543f9ced197..df008637bdb5 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/CheckNameAvailability.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/CheckNameAvailability.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationCreateOrUpdate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationCreateOrUpdate.json index 0a9da92eaee8..4e4e1cd91396 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationCreateOrUpdate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationCreateOrUpdate.json @@ -6,7 +6,7 @@ "api-version": "2017-12-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ + "properties": { "value": "off", "source": "user-override" } @@ -30,4 +30,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationGet.json index e58485efa99e..61d65e032a4a 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationGet.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationListByServer.json index 90d4e18a56e4..4f8651a74f7e 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ConfigurationListByServer.json @@ -598,4 +598,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseCreate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseCreate.json index 73848f69214f..ef9319f5e8b1 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseCreate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseCreate.json @@ -6,9 +6,9 @@ "api-version": "2017-12-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "charset":"utf8", - "collation":"utf8_general_ci" + "properties": { + "charset": "utf8", + "collation": "utf8_general_ci" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseDelete.json index 6706a74576de..a708f740d475 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseGet.json index cc7a8b270676..71a6289d50fe 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseListByServer.json index c5563821a18e..209210b13f9d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/DatabaseListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleCreate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleCreate.json index 9d9cee7bb309..3b9dacd5b712 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleCreate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleCreate.json @@ -6,9 +6,9 @@ "api-version": "2017-12-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "startIpAddress":"0.0.0.0", - "endIpAddress":"255.255.255.255" + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "255.255.255.255" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleDelete.json index d8348f45a659..b78f19daba9d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleGet.json index e78102ff408a..3a57e76e26b3 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleListByServer.json index 40de6a14928d..49ed7c0d8de1 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/FirewallRuleListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/LogFileListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/LogFileListByServer.json index a442a7cfe19e..488659020a22 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/LogFileListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/LogFileListByServer.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/OperationList.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/OperationList.json index fe26bba54b89..d58a0f0af262 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/OperationList.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/OperationList.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/PerformanceTiersListByLocation.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/PerformanceTiersListByLocation.json index 4e8093cfd7dc..e06b0f4b64ec 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/PerformanceTiersListByLocation.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/PerformanceTiersListByLocation.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/QueryTextsListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/QueryTextsListByServer.json index e190fcacbadd..b9d7472cb3ab 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/QueryTextsListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/QueryTextsListByServer.json @@ -4,7 +4,10 @@ "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "resourceGroupName": "testResourceGroupName", "serverName": "testServerName", - "queryIds": [ "1", "2" ] + "queryIds": [ + "1", + "2" + ] }, "responses": { "200": { diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/RecommendedActionSessionCreate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/RecommendedActionSessionCreate.json index 6a501bd5ceab..e127d2619fb9 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/RecommendedActionSessionCreate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/RecommendedActionSessionCreate.json @@ -1,14 +1,14 @@ { - "parameters": { - "api-version": "2018-06-01-privatepreview", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "resourceGroupName": "testResourceGroupName", - "serverName": "testServerName", - "advisorName": "Index", - "databaseName": "someDatabaseName" - }, - "responses": { - "200": {}, - "202": {} - } + "parameters": { + "api-version": "2018-06-01-privatepreview", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", + "resourceGroupName": "testResourceGroupName", + "serverName": "testServerName", + "advisorName": "Index", + "databaseName": "someDatabaseName" + }, + "responses": { + "200": {}, + "202": {} } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ReplicasListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ReplicasListByServer.json index 931fd7889be2..91e3babfd5de 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ReplicasListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ReplicasListByServer.json @@ -30,7 +30,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver.mysql.database.azure.com", "version": "5.6", @@ -48,7 +48,7 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", @@ -61,7 +61,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver1.mysql.database.azure.com", "version": "5.6", @@ -79,20 +79,20 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", "capacity": 2 }, - "properties": { + "properties": { "storageProfile": { "storageMB": 256000, "backupRetentionDays": 35, "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver2.mysql.database.azure.com", "version": "5.6", @@ -106,4 +106,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreate.json index 95e43a06f2fd..1990e33ffbe6 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreate.json @@ -91,4 +91,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreateGeoRestoreMode.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreateGeoRestoreMode.json index 24ed1b914bbb..756e3baeedfa 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreateGeoRestoreMode.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreateGeoRestoreMode.json @@ -1,87 +1,87 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2017-12-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2017-12-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "westus", - "properties": { - "createMode": "GeoRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "westus", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers" - } + "location": "westus", + "properties": { + "createMode": "GeoRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers", - "location": "westus", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "westus", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers", + "location": "westus", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreatePointInTimeRestore.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreatePointInTimeRestore.json index bba4057c8d8c..690482a16c7a 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreatePointInTimeRestore.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreatePointInTimeRestore.json @@ -1,88 +1,88 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2017-12-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2017-12-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "brazilsouth", - "properties": { - "restorePointInTime": "2017-12-14T00:00:37.467Z", - "createMode": "PointInTimeRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "brazilsouth", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers" - } + "location": "brazilsouth", + "properties": { + "restorePointInTime": "2017-12-14T00:00:37.467Z", + "createMode": "PointInTimeRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers", - "location": "brazilsouth", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "brazilsouth", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers", + "location": "brazilsouth", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreateReplicaMode.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreateReplicaMode.json index c906294eb2ae..bd008b4de0d1 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreateReplicaMode.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerCreateReplicaMode.json @@ -81,4 +81,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerDelete.json index 6427e09c2b08..6cb3de624950 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerGet.json index 381f09f4870d..2f315136b484 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerList.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerList.json index ca2c00b01b1e..ea5765692f3d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerList.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerList.json @@ -86,4 +86,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerListByResourceGroup.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerListByResourceGroup.json index 93fab5d2ecf0..6e0256e1c27c 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerListByResourceGroup.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerListByResourceGroup.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerRestart.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerRestart.json index bc355a010136..791eb7edcb7f 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerRestart.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerRestart.json @@ -1,12 +1,12 @@ { - "parameters": { - "serverName": "testserver", - "resourceGroupName": "TestGroup", - "api-version": "2017-12-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" - }, - "responses": { - "200": {}, - "202": {} - } - } \ No newline at end of file + "parameters": { + "serverName": "testserver", + "resourceGroupName": "TestGroup", + "api-version": "2017-12-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMax.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMax.json index 7e0e08e7fce9..5b613db3291d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMax.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMax.json @@ -1,39 +1,48 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-12-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-12-01", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 5, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMin.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMin.json index cca181d831ee..b9c9fe160f3d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMin.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsCreateMin.json @@ -1,34 +1,33 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-12-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-12-01", - "parameters": { - "properties": { - "state": "Disabled", - "emailAccountAdmins": true - } + "properties": { + "state": "Disabled", + "emailAccountAdmins": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageEndpoint": "" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageEndpoint": "" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsGet.json index d189ddd73a3f..4939ece1a0c6 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerSecurityAlertsGet.json @@ -1,26 +1,30 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "emailAddresses": [ "test@microsoft.com;user@microsoft.com" ], - "disabledAlerts": ["Access_Anomaly"], - "retentionDays": 0, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "test@microsoft.com;user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly" + ], + "retentionDays": 0, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } } -} \ No newline at end of file + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerUpdate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerUpdate.json index cf7bf6844965..09623b8abe29 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerUpdate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/ServerUpdate.json @@ -44,4 +44,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsGet.json index f0b884dab2e6..bb59c49ea32f 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsGet.json @@ -13,19 +13,19 @@ "name": "66-636923268000000000-636923277000000000-avg-duration", "type": "Microsoft.DBforMySQL/servers/queryStatistics", "properties": { - "aggregationFunction" : "avg", + "aggregationFunction": "avg", "databaseNames": [ "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testResourceGroupName/providers/Microsoft.DBforMySQL/servers/testServerName/databases/mysql" ], "startTime": "2019-05-01T17:00:00Z", "endTime": "2019-05-01T17:15:00Z", - "metricDisplayName":"Query duration", + "metricDisplayName": "Query duration", "metricName": "duration", "metricValue": 123.301446136, "metricValueUnit": "milliseconds", "queryExecutionCount": 1, "queryId": "66" - } + } } } } diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsListByServer.json index e05826343693..e2bd9ada4f9e 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/TopQueryStatisticsListByServer.json @@ -24,13 +24,13 @@ "name": "66-636923268000000000-636923277000000000-avg-duration", "type": "Microsoft.DBforMySQL/servers/queryStatistics", "properties": { - "aggregationFunction" : "avg", + "aggregationFunction": "avg", "databaseNames": [ "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testResourceGroupName/providers/Microsoft.DBforMySQL/servers/testServerName/databases/mysql" ], "startTime": "2019-05-01T17:00:00Z", "endTime": "2019-05-01T17:15:00Z", - "metricDisplayName":"Query duration", + "metricDisplayName": "Query duration", "metricName": "duration", "metricValue": 123.301446136, "metricValueUnit": "milliseconds", @@ -43,13 +43,13 @@ "name": "66-636924483000000000-636924492000000000-avg-duration", "type": "Microsoft.DBforMySQL/servers/queryStatistics", "properties": { - "aggregationFunction" : "avg", + "aggregationFunction": "avg", "databaseNames": [ "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testResourceGroupName/providers/Microsoft.DBforMySQL/servers/testServerName/databases/mysql" ], "startTime": "2019-05-03T02:45:00Z", "endTime": "2019-05-03T03:00:00Z", - "metricDisplayName":"Query duration", + "metricDisplayName": "Query duration", "metricName": "duration", "metricValue": 1712.301446136, "metricValueUnit": "milliseconds", diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesCreateOrUpdate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesCreateOrUpdate.json index e7baa8266bbd..9a4bfd76b984 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesCreateOrUpdate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesCreateOrUpdate.json @@ -6,35 +6,35 @@ "virtualNetworkRuleName": "vnet-firewall-rule", "api-version": "2017-12-01", "parameters": { - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } } }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "202": {} + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesDelete.json index fb3336a3e4b5..0fa496b85696 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesDelete.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "resourceGroupName": "TestGroup", - "serverName": "vnet-test-svr", - "virtualNetworkRuleName": "vnet-firewall-rule", - "api-version": "2017-12-01" - }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "parameters": { + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", + "resourceGroupName": "TestGroup", + "serverName": "vnet-test-svr", + "virtualNetworkRuleName": "vnet-firewall-rule", + "api-version": "2017-12-01" + }, + "responses": { + "200": { + "body": "" + }, + "202": { + "body": "" + }, + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesGet.json index 50f18a6578e2..145aa65e22e4 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesGet.json @@ -7,17 +7,17 @@ "api-version": "2017-12-01" }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesList.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesList.json index 459eed49d500..3bf5f1281229 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesList.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/examples/VirtualNetworkRulesList.json @@ -7,31 +7,31 @@ "api-version": "2017-12-01" }, "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - }, - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - ] - } + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + }, + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/mysql.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/mysql.json index b67153f9ea44..0b8d89484000 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/mysql.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2018-06-01-privatepreview/mysql.json @@ -45,7 +45,7 @@ "$ref": "./examples/ServerCreate.json" }, "Create a database as a point in time restore": { - "$ref":"./examples/ServerCreatePointInTimeRestore.json" + "$ref": "./examples/ServerCreatePointInTimeRestore.json" }, "Create a server as a geo restore ": { "$ref": "./examples/ServerCreateGeoRestoreMode.json" @@ -293,7 +293,9 @@ ], "operationId": "Servers_Restart", "x-ms-examples": { - "ServerRestart": { "$ref": "./examples/ServerRestart.json" } + "ServerRestart": { + "$ref": "./examples/ServerRestart.json" + } }, "description": "Restarts a server.", "parameters": [ @@ -2003,7 +2005,7 @@ "format": "int32", "description": "Max storage allowed for a server." }, - "storageAutogrow" : { + "storageAutogrow": { "type": "string", "description": "Enable Storage Auto Grow.", "enum": [ @@ -3136,8 +3138,7 @@ } }, "AdvisorProperties": { - "properties": { - }, + "properties": {}, "description": "The properties of a recommendation action advisor." }, "Advisor": { diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/CheckNameAvailability.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/CheckNameAvailability.json index 4543f9ced197..df008637bdb5 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/CheckNameAvailability.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/CheckNameAvailability.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationCreateOrUpdate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationCreateOrUpdate.json index 0a9da92eaee8..4e4e1cd91396 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationCreateOrUpdate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationCreateOrUpdate.json @@ -6,7 +6,7 @@ "api-version": "2017-12-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ + "properties": { "value": "off", "source": "user-override" } @@ -30,4 +30,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationGet.json index e58485efa99e..61d65e032a4a 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationGet.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationListByServer.json index 90d4e18a56e4..4f8651a74f7e 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationListByServer.json @@ -598,4 +598,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseCreate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseCreate.json index 73848f69214f..ef9319f5e8b1 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseCreate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseCreate.json @@ -6,9 +6,9 @@ "api-version": "2017-12-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "charset":"utf8", - "collation":"utf8_general_ci" + "properties": { + "charset": "utf8", + "collation": "utf8_general_ci" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseDelete.json index 6706a74576de..a708f740d475 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseGet.json index cc7a8b270676..71a6289d50fe 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseListByServer.json index c5563821a18e..209210b13f9d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/DatabaseListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleCreate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleCreate.json index 9d9cee7bb309..3b9dacd5b712 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleCreate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleCreate.json @@ -6,9 +6,9 @@ "api-version": "2017-12-01", "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "properties":{ - "startIpAddress":"0.0.0.0", - "endIpAddress":"255.255.255.255" + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "255.255.255.255" } } }, @@ -37,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleDelete.json index d8348f45a659..b78f19daba9d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleGet.json index e78102ff408a..3a57e76e26b3 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleListByServer.json index 40de6a14928d..49ed7c0d8de1 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/FirewallRuleListByServer.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/LogFileListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/LogFileListByServer.json index a442a7cfe19e..488659020a22 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/LogFileListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/LogFileListByServer.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/OperationList.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/OperationList.json index fe26bba54b89..d58a0f0af262 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/OperationList.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/OperationList.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/PerformanceTiersListByLocation.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/PerformanceTiersListByLocation.json index 4e8093cfd7dc..e06b0f4b64ec 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/PerformanceTiersListByLocation.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/PerformanceTiersListByLocation.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ReplicasListByServer.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ReplicasListByServer.json index 931fd7889be2..91e3babfd5de 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ReplicasListByServer.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ReplicasListByServer.json @@ -30,7 +30,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver.mysql.database.azure.com", "version": "5.6", @@ -48,7 +48,7 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", @@ -61,7 +61,7 @@ "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver1.mysql.database.azure.com", "version": "5.6", @@ -79,20 +79,20 @@ "tags": { "elasticServer": "1" }, - "sku": { + "sku": { "name": "GP_Gen4_2", "tier": "GeneralPurpose", "family": "Gen4", "capacity": 2 }, - "properties": { + "properties": { "storageProfile": { "storageMB": 256000, "backupRetentionDays": 35, "geoRedundantBackup": "Enabled" }, "administratorLogin": "cloudsa", - "sslEnforcement":"Enabled", + "sslEnforcement": "Enabled", "userVisibleState": "Ready", "fullyQualifiedDomainName": "testserver2.mysql.database.azure.com", "version": "5.6", @@ -106,4 +106,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreate.json index 95e43a06f2fd..1990e33ffbe6 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreate.json @@ -91,4 +91,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreateGeoRestoreMode.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreateGeoRestoreMode.json index 24ed1b914bbb..756e3baeedfa 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreateGeoRestoreMode.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreateGeoRestoreMode.json @@ -1,87 +1,87 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2017-12-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2017-12-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "westus", - "properties": { - "createMode": "GeoRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "westus", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers" - } + "location": "westus", + "properties": { + "createMode": "GeoRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers", - "location": "westus", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 14, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "westus", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers", + "location": "westus", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 14, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreatePointInTimeRestore.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreatePointInTimeRestore.json index bba4057c8d8c..690482a16c7a 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreatePointInTimeRestore.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreatePointInTimeRestore.json @@ -1,88 +1,88 @@ { + "parameters": { + "serverName": "targetserver", + "resourceGroupName": "TargetResourceGroup", + "api-version": "2017-12-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", "parameters": { - "serverName": "targetserver", - "resourceGroupName": "TargetResourceGroup", - "api-version": "2017-12-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "parameters": { - "location": "brazilsouth", - "properties": { - "restorePointInTime": "2017-12-14T00:00:37.467Z", - "createMode": "PointInTimeRestore", - "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" - }, - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "ElasticServer": "1" - } - } - }, - "responses": { - "201": { - "body": { - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - }, - "location": "brazilsouth", - "tags": { - "ElasticServer": "1" - }, - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers" - } + "location": "brazilsouth", + "properties": { + "restorePointInTime": "2017-12-14T00:00:37.467Z", + "createMode": "PointInTimeRestore", + "sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver" + }, + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "ElasticServer": "1" + } + } + }, + "responses": { + "201": { + "body": { + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", - "name": "targetserver", - "type": "Microsoft.DBforMySQL/servers", - "location": "brazilsouth", - "sku": { - "name": "GP_Gen5_2", - "tier": "GeneralPurpose", - "family": "Gen5", - "capacity": 2 - }, - "tags": { - "elasticServer": "1" - }, - "properties": { - "administratorLogin": "cloudsa", - "storageProfile": { - "storageMB": 128000, - "backupRetentionDays": 7, - "geoRedundantBackup": "Enabled" - }, - "version": "5.7", - "sslEnforcement": "Enabled", - "userVisibleState": "Ready", - "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", - "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" - } - } + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + }, + "location": "brazilsouth", + "tags": { + "ElasticServer": "1" + }, + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers" + } + }, + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver", + "name": "targetserver", + "type": "Microsoft.DBforMySQL/servers", + "location": "brazilsouth", + "sku": { + "name": "GP_Gen5_2", + "tier": "GeneralPurpose", + "family": "Gen5", + "capacity": 2 + }, + "tags": { + "elasticServer": "1" + }, + "properties": { + "administratorLogin": "cloudsa", + "storageProfile": { + "storageMB": 128000, + "backupRetentionDays": 7, + "geoRedundantBackup": "Enabled" }, - "202": {} - } -} \ No newline at end of file + "version": "5.7", + "sslEnforcement": "Enabled", + "userVisibleState": "Ready", + "fullyQualifiedDomainName": "targetserver.mysql.database.azure.com", + "earliestRestoreDate": "2018-03-14T18:02:41.577+00:00" + } + } + }, + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreateReplicaMode.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreateReplicaMode.json index c906294eb2ae..bd008b4de0d1 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreateReplicaMode.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerCreateReplicaMode.json @@ -81,4 +81,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerDelete.json index 6427e09c2b08..6cb3de624950 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerGet.json index 381f09f4870d..2f315136b484 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerGet.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerList.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerList.json index ca2c00b01b1e..ea5765692f3d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerList.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerList.json @@ -86,4 +86,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerListByResourceGroup.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerListByResourceGroup.json index 93fab5d2ecf0..6e0256e1c27c 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerListByResourceGroup.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerListByResourceGroup.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerRestart.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerRestart.json index bc355a010136..791eb7edcb7f 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerRestart.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerRestart.json @@ -1,12 +1,12 @@ { - "parameters": { - "serverName": "testserver", - "resourceGroupName": "TestGroup", - "api-version": "2017-12-01", - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" - }, - "responses": { - "200": {}, - "202": {} - } - } \ No newline at end of file + "parameters": { + "serverName": "testserver", + "resourceGroupName": "TestGroup", + "api-version": "2017-12-01", + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff" + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsCreateMax.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsCreateMax.json index 7e0e08e7fce9..5b613db3291d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsCreateMax.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsCreateMax.json @@ -1,39 +1,48 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-12-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-12-01", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 5, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsCreateMin.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsCreateMin.json index cca181d831ee..b9c9fe160f3d 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsCreateMin.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsCreateMin.json @@ -1,34 +1,33 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-12-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-12-01", - "parameters": { - "properties": { - "state": "Disabled", - "emailAccountAdmins": true - } + "properties": { + "state": "Disabled", + "emailAccountAdmins": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageEndpoint": "" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageEndpoint": "" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsGet.json index d189ddd73a3f..4939ece1a0c6 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerSecurityAlertsGet.json @@ -1,26 +1,30 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "emailAddresses": [ "test@microsoft.com;user@microsoft.com" ], - "disabledAlerts": ["Access_Anomaly"], - "retentionDays": 0, - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforMySQL/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.DBforMySQL/servers/securityAlertPolicies", + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "test@microsoft.com;user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly" + ], + "retentionDays": 0, + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } } -} \ No newline at end of file + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerUpdate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerUpdate.json index cf7bf6844965..09623b8abe29 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerUpdate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ServerUpdate.json @@ -44,4 +44,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesCreateOrUpdate.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesCreateOrUpdate.json index e7baa8266bbd..9a4bfd76b984 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesCreateOrUpdate.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesCreateOrUpdate.json @@ -6,35 +6,35 @@ "virtualNetworkRuleName": "vnet-firewall-rule", "api-version": "2017-12-01", "parameters": { - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } } }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "202": {} + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesDelete.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesDelete.json index fb3336a3e4b5..0fa496b85696 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesDelete.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesDelete.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", - "resourceGroupName": "TestGroup", - "serverName": "vnet-test-svr", - "virtualNetworkRuleName": "vnet-firewall-rule", - "api-version": "2017-12-01" - }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "parameters": { + "subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff", + "resourceGroupName": "TestGroup", + "serverName": "vnet-test-svr", + "virtualNetworkRuleName": "vnet-firewall-rule", + "api-version": "2017-12-01" + }, + "responses": { + "200": { + "body": "" + }, + "202": { + "body": "" + }, + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesGet.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesGet.json index 50f18a6578e2..145aa65e22e4 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesGet.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesGet.json @@ -7,17 +7,17 @@ "api-version": "2017-12-01" }, "responses": { - "200": { - "body": { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } + "200": { + "body": { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesList.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesList.json index 459eed49d500..3bf5f1281229 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesList.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/VirtualNetworkRulesList.json @@ -7,31 +7,31 @@ "api-version": "2017-12-01" }, "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - }, - { - "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - ] - } + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + }, + { + "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.DBforMySQL/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/mysql.json b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/mysql.json index 384e97d91ba6..21a4680cb4ed 100644 --- a/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/mysql.json +++ b/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/mysql.json @@ -45,7 +45,7 @@ "$ref": "./examples/ServerCreate.json" }, "Create a database as a point in time restore": { - "$ref":"./examples/ServerCreatePointInTimeRestore.json" + "$ref": "./examples/ServerCreatePointInTimeRestore.json" }, "Create a server as a geo restore ": { "$ref": "./examples/ServerCreateGeoRestoreMode.json" @@ -293,7 +293,9 @@ ], "operationId": "Servers_Restart", "x-ms-examples": { - "ServerRestart": { "$ref": "./examples/ServerRestart.json" } + "ServerRestart": { + "$ref": "./examples/ServerRestart.json" + } }, "description": "Restarts a server.", "parameters": [ @@ -326,7 +328,7 @@ }, "x-ms-long-running-operation": true } - }, + }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/replicas": { "get": { "tags": [ @@ -1443,7 +1445,7 @@ "format": "int32", "description": "Max storage allowed for a server." }, - "storageAutogrow" : { + "storageAutogrow": { "type": "string", "description": "Enable Storage Auto Grow.", "enum": [ @@ -2270,7 +2272,7 @@ } }, "description": "An error response from the Batch service." - } + } }, "parameters": { "SubscriptionIdParameter": { @@ -2355,4 +2357,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/netapp/resource-manager/Microsoft.NetApp/preview/2017-08-15/examples/Accounts_Get.json b/specification/netapp/resource-manager/Microsoft.NetApp/preview/2017-08-15/examples/Accounts_Get.json index c953da8952cf..dd29b303c3d9 100644 --- a/specification/netapp/resource-manager/Microsoft.NetApp/preview/2017-08-15/examples/Accounts_Get.json +++ b/specification/netapp/resource-manager/Microsoft.NetApp/preview/2017-08-15/examples/Accounts_Get.json @@ -8,10 +8,10 @@ "responses": { "200": { "body": { - "location": "eastus", - "properties": { - "provisioningState": "Created" - } + "location": "eastus", + "properties": { + "provisioningState": "Created" + } } } } diff --git a/specification/netapp/resource-manager/Microsoft.NetApp/preview/2017-08-15/netapp.json b/specification/netapp/resource-manager/Microsoft.NetApp/preview/2017-08-15/netapp.json index 56849cb2517e..d0496da26ff7 100644 --- a/specification/netapp/resource-manager/Microsoft.NetApp/preview/2017-08-15/netapp.json +++ b/specification/netapp/resource-manager/Microsoft.NetApp/preview/2017-08-15/netapp.json @@ -1539,7 +1539,7 @@ "rules": { "type": "array", "items": { - "$ref": "#/definitions/exportPolicyRule" + "$ref": "#/definitions/exportPolicyRule" } } } @@ -1674,7 +1674,7 @@ "rules": { "type": "array", "items": { - "$ref": "#/definitions/exportPolicyRule" + "$ref": "#/definitions/exportPolicyRule" } } } @@ -2003,4 +2003,4 @@ "default": "2017-08-15" } } -} \ No newline at end of file +} diff --git a/specification/netapp/resource-manager/Microsoft.NetApp/stable/2019-05-01/examples/Accounts_Get.json b/specification/netapp/resource-manager/Microsoft.NetApp/stable/2019-05-01/examples/Accounts_Get.json index 09d61b067dc0..8d66e1d9a64b 100644 --- a/specification/netapp/resource-manager/Microsoft.NetApp/stable/2019-05-01/examples/Accounts_Get.json +++ b/specification/netapp/resource-manager/Microsoft.NetApp/stable/2019-05-01/examples/Accounts_Get.json @@ -8,10 +8,10 @@ "responses": { "200": { "body": { - "location": "eastus", - "properties": { - "provisioningState": "Created" - } + "location": "eastus", + "properties": { + "provisioningState": "Created" + } } } } diff --git a/specification/netapp/resource-manager/Microsoft.NetApp/stable/2019-05-01/netapp.json b/specification/netapp/resource-manager/Microsoft.NetApp/stable/2019-05-01/netapp.json index 62f9e7a7a6b6..ecae3bae0891 100644 --- a/specification/netapp/resource-manager/Microsoft.NetApp/stable/2019-05-01/netapp.json +++ b/specification/netapp/resource-manager/Microsoft.NetApp/stable/2019-05-01/netapp.json @@ -1642,7 +1642,7 @@ }, "exportPolicy": { "title": "exportPolicy", - "description": "Set of export policy rules", + "description": "Set of export policy rules", "properties": { "rules": { "title": "Export policy rule", @@ -1656,10 +1656,10 @@ }, "protocolTypes": { "title": "protocolTypes", - "description": "Set of protocol types", - "type": "array", + "description": "Set of protocol types", + "type": "array", "items": { - "type": "string" + "type": "string" }, "example": "['NFSv3', 'NFSv4']" }, @@ -1668,24 +1668,24 @@ "readOnly": true, "description": "Azure lifecycle management" }, - "snapshotId": { - "title": "Snapshot ID", - "type": "string", - "description": "UUID v4 used to identify the Snapshot", - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "maxLength": 36, - "minLength": 36, - "example": "9760acf5-4638-11e7-9bdb-020073ca3333" - }, - "baremetalTenantId": { - "title": "Baremetal Tenant ID", - "type": "string", - "readOnly": true, - "description": "Unique Baremetal Tenant Identifier.", - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "maxLength": 36, - "minLength": 36, - "example": "9560acf5-4e3a-12e7-9bdb-02007cca7779" + "snapshotId": { + "title": "Snapshot ID", + "type": "string", + "description": "UUID v4 used to identify the Snapshot", + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "maxLength": 36, + "minLength": 36, + "example": "9760acf5-4638-11e7-9bdb-020073ca3333" + }, + "baremetalTenantId": { + "title": "Baremetal Tenant ID", + "type": "string", + "readOnly": true, + "description": "Unique Baremetal Tenant Identifier.", + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "maxLength": 36, + "minLength": 36, + "example": "9560acf5-4e3a-12e7-9bdb-02007cca7779" }, "subnetId": { "type": "string", @@ -1693,9 +1693,9 @@ }, "mountTargets": { "title": "mountTargets", - "description": "List of mount targets", + "description": "List of mount targets", "items": { - "$ref": "#/definitions/mountTargetList" + "$ref": "#/definitions/mountTargetList" } } } @@ -2074,7 +2074,7 @@ "required": true, "type": "string", "x-ms-parameter-location": "method" - }, + }, "ResourceGroup": { "name": "resourceGroupName", "in": "path", @@ -2135,4 +2135,4 @@ "default": "2019-05-01" } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2014-09-01/notificationhubs.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2014-09-01/notificationhubs.json index 4197986d223b..576988c34dbd 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2014-09-01/notificationhubs.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2014-09-01/notificationhubs.json @@ -1773,4 +1773,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NHOperationsList.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NHOperationsList.json index b5fe90e25f3a..d2635ebab713 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NHOperationsList.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NHOperationsList.json @@ -244,4 +244,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleCreate.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleCreate.json index 84d19ba9971a..be888ff78c40 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleCreate.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleCreate.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleDelete.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleDelete.json index e86818c2347b..8409198d94d5 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleDelete.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleGet.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleGet.json index 4c291461aac0..2069998a2915 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleGet.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleGet.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleListAll.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleListAll.json index 74949466bb05..e29f2ae98b33 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleListAll.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleListAll.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleListKey.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleListKey.json index f5b04f9c6ae9..288825dbd4fc 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleListKey.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleListKey.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleRegenrateKey.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleRegenrateKey.json index be2d6daa5c4a..b3bfa4e432d7 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleRegenrateKey.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleRegenrateKey.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleUpdate.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleUpdate.json index 24dbdc12a059..0537d9156ec3 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleUpdate.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceAuthorizationRuleUpdate.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceCheckNameAvailability.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceCheckNameAvailability.json index 404417e9d9b4..766eeabae3e4 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceCheckNameAvailability.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceCheckNameAvailability.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceCreate.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceCreate.json index f4a97d74f754..456bb2bee1e8 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceCreate.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceCreate.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceDelete.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceDelete.json index 6b3fb662c4c2..d8d42990eac2 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceDelete.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceGet.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceGet.json index 68bf51348d1f..626282d2259b 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceGet.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceGet.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceList.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceList.json index 0aaeb2151247..58c2fdf581e5 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceList.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceList.json @@ -770,4 +770,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceListByResourceGroup.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceListByResourceGroup.json index a791caa3bee4..fbedd736ef70 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceListByResourceGroup.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceListByResourceGroup.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceUpdate.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceUpdate.json index be0099342fc8..e8940d545638 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceUpdate.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/Namespaces/NHNameSpaceUpdate.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleCreate.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleCreate.json index d18a966e0c69..7e5acb96fb2c 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleCreate.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleCreate.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleDelete.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleDelete.json index 9ef8936a3515..193fabdeb5b5 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleDelete.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleGet.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleGet.json index 244bc2963e3b..00c50dfcac95 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleGet.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleListAll.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleListAll.json index 50dacd68f559..f670fe22d912 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleListAll.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleListAll.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleListKey.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleListKey.json index d59024e1591c..e7b7cb9c6d69 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleListKey.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleListKey.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleRegenrateKey.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleRegenrateKey.json index 8c83650c1015..21e6929e5448 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleRegenrateKey.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleRegenrateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleUpdate.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleUpdate.json index f4efc20bd184..0f086b3a4492 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleUpdate.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubAuthorizationRuleUpdate.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubCheckNameAvailability.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubCheckNameAvailability.json index 3c74dbc0c57b..d46677888726 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubCheckNameAvailability.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubCheckNameAvailability.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubCreate.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubCreate.json index 759bf43b86df..a08629736870 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubCreate.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubCreate.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubDebugSend.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubDebugSend.json index 938171fc063c..1426c5ac8a83 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubDebugSend.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubDebugSend.json @@ -1,30 +1,30 @@ { + "parameters": { + "namespaceName": "nh-sdk-ns", + "resourceGroupName": "5ktrial", + "notificationHubName": "nh-sdk-hub", + "api-version": "2017-04-01", + "subscriptionId": "29cfa613-cbbc-4512-b1d6-1b3a92c7fa40", "parameters": { - "namespaceName": "nh-sdk-ns", - "resourceGroupName": "5ktrial", - "notificationHubName": "nh-sdk-hub", - "api-version": "2017-04-01", - "subscriptionId": "29cfa613-cbbc-4512-b1d6-1b3a92c7fa40", - "parameters": { - "data": { - "message": "Hello" - } - } - }, - "responses": { - "201": { - "body": { - "id": "/subscriptions/29cfa613-cbbc-4512-b1d6-1b3a92c7fa40/resourceGroups/sdkresourceGroup/providers/Microsoft.NotificationHubs/namespaces/nh-sdk-ns/notificationHubs/nh-sdk-hub", - "name": "nh-sdk-hub", - "type": "Microsoft.NotificationHubs/namespaces/notificationHubs", - "location": "South Central US", - "tags": null, - "properties": { - "success": 1, - "failure": 0, - "results": null - } - } + "data": { + "message": "Hello" + } + } + }, + "responses": { + "201": { + "body": { + "id": "/subscriptions/29cfa613-cbbc-4512-b1d6-1b3a92c7fa40/resourceGroups/sdkresourceGroup/providers/Microsoft.NotificationHubs/namespaces/nh-sdk-ns/notificationHubs/nh-sdk-hub", + "name": "nh-sdk-hub", + "type": "Microsoft.NotificationHubs/namespaces/notificationHubs", + "location": "South Central US", + "tags": null, + "properties": { + "success": 1, + "failure": 0, + "results": null } + } } -} \ No newline at end of file + } +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubDelete.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubDelete.json index 5ad65b1529a5..ff2b9e055832 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubDelete.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubDelete.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubGet.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubGet.json index 3d7eedffabc9..bcd44160c1cc 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubGet.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubGet.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubListByNameSpace.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubListByNameSpace.json index 40af498162f9..a59b5a97d822 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubListByNameSpace.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubListByNameSpace.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubPatch.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubPatch.json index fddb1ce919ef..f6dec910731b 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubPatch.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubPatch.json @@ -1,26 +1,25 @@ { - "parameters": { - "namespaceName": "nh-sdk-ns", - "resourceGroupName": "sdkresourceGroup", - "notificationHubName": "sdk-notificationHubs-8708", - "api-version": "2017-04-01", - "subscriptionId": "29cfa613-cbbc-4512-b1d6-1b3a92c7fa40", - "parameters": { - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/29cfa613-cbbc-4512-b1d6-1b3a92c7fa40/resourceGroups/sdkresourceGroup/providers/Microsoft.NotificationHubs/namespaces/nh-sdk-ns/notificationHubs/nh-sdk-hub", - "name": "nh-sdk-hub", - "type": "Microsoft.NotificationHubs/namespaces/notificationHubs", - "location": "South Central US", - "tags": null, - "properties": { - "registrationTtl": "10675199.02:48:05.4775807", - "authorizationRules": [] - } + "parameters": { + "namespaceName": "nh-sdk-ns", + "resourceGroupName": "sdkresourceGroup", + "notificationHubName": "sdk-notificationHubs-8708", + "api-version": "2017-04-01", + "subscriptionId": "29cfa613-cbbc-4512-b1d6-1b3a92c7fa40", + "parameters": {} + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/29cfa613-cbbc-4512-b1d6-1b3a92c7fa40/resourceGroups/sdkresourceGroup/providers/Microsoft.NotificationHubs/namespaces/nh-sdk-ns/notificationHubs/nh-sdk-hub", + "name": "nh-sdk-hub", + "type": "Microsoft.NotificationHubs/namespaces/notificationHubs", + "location": "South Central US", + "tags": null, + "properties": { + "registrationTtl": "10675199.02:48:05.4775807", + "authorizationRules": [] } } } - } \ No newline at end of file + } +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubPnsCredentials.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubPnsCredentials.json index 080b5b54c577..087ec49dd6a5 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubPnsCredentials.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubPnsCredentials.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubUpdate.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubUpdate.json index 7fff0cc3a6fb..e878df412f85 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubUpdate.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/examples/NotificationHubs/NotificationHubUpdate.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/notificationhubs.json b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/notificationhubs.json index 69e745a9ea1d..2236a73aff12 100644 --- a/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/notificationhubs.json +++ b/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/notificationhubs.json @@ -2358,4 +2358,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-get-cross-workspace-example.json b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-get-cross-workspace-example.json index 25d7021ba7de..e9bc6f418eca 100644 --- a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-get-cross-workspace-example.json +++ b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-get-cross-workspace-example.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-get-example.json b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-get-example.json index 6a7270b99638..ab188d44137a 100644 --- a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-get-example.json +++ b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-get-example.json @@ -158,4 +158,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-post-cross-workspace-example.json b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-post-cross-workspace-example.json index f9fd525c53f6..de83bdaba9c8 100644 --- a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-post-cross-workspace-example.json +++ b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-post-cross-workspace-example.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-post-example.json b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-post-example.json index f31fb44c76a1..5dc59c2698c0 100644 --- a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-post-example.json +++ b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/examples/oms-post-example.json @@ -156,4 +156,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/swagger.json b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/swagger.json index 5fabe7c69f1b..b43b41998b8f 100644 --- a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/swagger.json +++ b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2017-10-01/swagger.json @@ -388,4 +388,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/OperationalInsights.json b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/OperationalInsights.json index 70f61cdd1be8..286c4d57c86a 100644 --- a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/OperationalInsights.json +++ b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/OperationalInsights.json @@ -353,4 +353,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-get-cross-workspace-example.json b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-get-cross-workspace-example.json index 785cf83dc88b..d1e3647f86ef 100644 --- a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-get-cross-workspace-example.json +++ b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-get-cross-workspace-example.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-get-example.json b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-get-example.json index 2818b0bedbb0..5b4e6d426e57 100644 --- a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-get-example.json +++ b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-get-example.json @@ -155,4 +155,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-post-cross-workspace-example.json b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-post-cross-workspace-example.json index 930205a98196..20a06125bd66 100644 --- a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-post-cross-workspace-example.json +++ b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-post-cross-workspace-example.json @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-post-example.json b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-post-example.json index 002776cb4d86..57a53fa2a365 100644 --- a/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-post-example.json +++ b/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/stable/v1/examples/oms-post-example.json @@ -153,4 +153,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/OperationalInsights.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/OperationalInsights.json index cdf16680bba9..963a79523ec0 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/OperationalInsights.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/OperationalInsights.json @@ -40,7 +40,9 @@ "LinkedServices" ], "x-ms-examples": { - "LinkedServicesCreate": { "$ref": "./examples/LinkedServicesCreate.json" } + "LinkedServicesCreate": { + "$ref": "./examples/LinkedServicesCreate.json" + } }, "operationId": "LinkedServices_CreateOrUpdate", "description": "Create or update a linked service.", @@ -98,7 +100,9 @@ "LinkedServices" ], "x-ms-examples": { - "LinkedServicesDelete": { "$ref": "./examples/LinkedServicesDelete.json" } + "LinkedServicesDelete": { + "$ref": "./examples/LinkedServicesDelete.json" + } }, "operationId": "LinkedServices_Delete", "description": "Deletes a linked service instance.", @@ -141,7 +145,9 @@ "LinkedServices" ], "x-ms-examples": { - "LinkedServicesGet": { "$ref": "./examples/LinkedServicesGet.json" } + "LinkedServicesGet": { + "$ref": "./examples/LinkedServicesGet.json" + } }, "operationId": "LinkedServices_Get", "description": "Gets a linked service instance.", @@ -186,7 +192,9 @@ "LinkedServices" ], "x-ms-examples": { - "LinkedServicesListByWorkspace": { "$ref": "./examples/LinkedServicesListByWorkspace.json" } + "LinkedServicesListByWorkspace": { + "$ref": "./examples/LinkedServicesListByWorkspace.json" + } }, "operationId": "LinkedServices_ListByWorkspace", "description": "Gets the linked services instances in a workspace.", @@ -227,7 +235,9 @@ "DataSources" ], "x-ms-examples": { - "DataSourcesCreate": { "$ref": "./examples/DataSourcesCreate.json" } + "DataSourcesCreate": { + "$ref": "./examples/DataSourcesCreate.json" + } }, "operationId": "DataSources_CreateOrUpdate", "description": "Create or update a data source.", @@ -285,7 +295,9 @@ "DataSources" ], "x-ms-examples": { - "DataSourcesDelete": { "$ref": "./examples/DataSourcesDelete.json" } + "DataSourcesDelete": { + "$ref": "./examples/DataSourcesDelete.json" + } }, "operationId": "DataSources_Delete", "description": "Deletes a data source instance.", @@ -328,7 +340,9 @@ "DataSources" ], "x-ms-examples": { - "DataSourcesGet": { "$ref": "./examples/DataSourcesGet.json" } + "DataSourcesGet": { + "$ref": "./examples/DataSourcesGet.json" + } }, "operationId": "DataSources_Get", "description": "Gets a datasource instance.", @@ -373,7 +387,9 @@ "DataSources" ], "x-ms-examples": { - "DataSourcesListByWorkspace": { "$ref": "./examples/DataSourcesListByWorkspace.json" } + "DataSourcesListByWorkspace": { + "$ref": "./examples/DataSourcesListByWorkspace.json" + } }, "operationId": "DataSources_ListByWorkspace", "description": "Gets the first page of data source instances in a workspace with the link to the next page.", @@ -429,8 +445,10 @@ "Workspaces" ], "x-ms-examples": { - "IntelligencePacksDisable": { "$ref": "./examples/WorkspacesDisableIntelligencePack.json" } - }, + "IntelligencePacksDisable": { + "$ref": "./examples/WorkspacesDisableIntelligencePack.json" + } + }, "operationId": "Workspaces_DisableIntelligencePack", "description": "Disables an intelligence pack for a given workspace.", "parameters": [ @@ -471,8 +489,10 @@ "Workspaces" ], "x-ms-examples": { - "IntelligencePacksEnable": { "$ref": "./examples/WorkspacesEnableIntelligencePack.json" } - }, + "IntelligencePacksEnable": { + "$ref": "./examples/WorkspacesEnableIntelligencePack.json" + } + }, "operationId": "Workspaces_EnableIntelligencePack", "description": "Enables an intelligence pack for a given workspace.", "parameters": [ @@ -513,8 +533,10 @@ "Workspaces" ], "x-ms-examples": { - "IntelligencePacksList": { "$ref": "./examples/WorkspacesListIntelligencePacks.json" } - }, + "IntelligencePacksList": { + "$ref": "./examples/WorkspacesListIntelligencePacks.json" + } + }, "operationId": "Workspaces_ListIntelligencePacks", "description": "Lists all the intelligence packs possible and whether they are enabled or disabled for a given workspace.", "parameters": [ @@ -554,8 +576,10 @@ "Workspaces" ], "x-ms-examples": { - "SharedKeysList": { "$ref": "./examples/WorkspacesGetSharedKeys.json" } - }, + "SharedKeysList": { + "$ref": "./examples/WorkspacesGetSharedKeys.json" + } + }, "operationId": "Workspaces_GetSharedKeys", "description": "Gets the shared keys for a workspace.", "parameters": [ @@ -592,8 +616,10 @@ "Workspaces" ], "x-ms-examples": { - "UsagesList": { "$ref": "./examples/WorkspacesListUsages.json" } - }, + "UsagesList": { + "$ref": "./examples/WorkspacesListUsages.json" + } + }, "operationId": "Workspaces_ListUsages", "description": "Gets a list of usage metrics for a workspace.", "parameters": [ @@ -633,8 +659,10 @@ "Workspaces" ], "x-ms-examples": { - "WorkspacesListManagementGroups": { "$ref": "./examples/WorkspacesListManagementGroups.json" } - }, + "WorkspacesListManagementGroups": { + "$ref": "./examples/WorkspacesListManagementGroups.json" + } + }, "operationId": "Workspaces_ListManagementGroups", "description": "Gets a list of management groups connected to a workspace.", "parameters": [ @@ -674,8 +702,10 @@ "Workspaces" ], "x-ms-examples": { - "WorkspacesGet": { "$ref": "./examples/WorkspacesListByResourceGroup.json" } - }, + "WorkspacesGet": { + "$ref": "./examples/WorkspacesListByResourceGroup.json" + } + }, "operationId": "Workspaces_ListByResourceGroup", "description": "Gets workspaces in a resource group.", "parameters": [ @@ -708,8 +738,10 @@ "Workspaces" ], "x-ms-examples": { - "WorkspacesSubscriptionList": { "$ref": "./examples/WorkspacesSubscriptionList.json" } - }, + "WorkspacesSubscriptionList": { + "$ref": "./examples/WorkspacesSubscriptionList.json" + } + }, "operationId": "Workspaces_List", "description": "Gets the workspaces in a subscription.", "parameters": [ @@ -739,8 +771,10 @@ "Workspaces" ], "x-ms-examples": { - "WorkspacesCreate": { "$ref": "./examples/WorkspacesCreate.json" } - }, + "WorkspacesCreate": { + "$ref": "./examples/WorkspacesCreate.json" + } + }, "operationId": "Workspaces_CreateOrUpdate", "description": "Create or update a workspace.", "parameters": [ @@ -798,8 +832,10 @@ "Workspaces" ], "x-ms-examples": { - "WorkspacesDelete": { "$ref": "./examples/WorkspacesDelete.json" } - }, + "WorkspacesDelete": { + "$ref": "./examples/WorkspacesDelete.json" + } + }, "operationId": "Workspaces_Delete", "description": "Deletes a workspace instance.", "parameters": [ @@ -838,8 +874,10 @@ "Workspaces" ], "x-ms-examples": { - "WorkspaceGet": { "$ref": "./examples/WorkspacesGet.json" } - }, + "WorkspaceGet": { + "$ref": "./examples/WorkspacesGet.json" + } + }, "operationId": "Workspaces_Get", "description": "Gets a workspace instance.", "parameters": [ @@ -878,8 +916,10 @@ "Workspaces" ], "x-ms-examples": { - "WorkspacesPatch": { "$ref": "./examples/WorkspacesUpdate.json" } - }, + "WorkspacesPatch": { + "$ref": "./examples/WorkspacesUpdate.json" + } + }, "operationId": "Workspaces_Update", "description": "Updates a workspace.", "parameters": [ @@ -946,20 +986,20 @@ } } }, - "x-ms-pageable": { - "nextLinkName": "nextLink" + "x-ms-pageable": { + "nextLinkName": "nextLink" } } } }, "definitions": { - "OperationListResult": { + "OperationListResult": { "description": "Result of the request to list solution operations.", "properties": { - "value": { + "value": { "type": "array", "items": { - "$ref": "#/definitions/Operation" + "$ref": "#/definitions/Operation" }, "description": "List of solution operations supported by the OperationsManagement resource provider." }, @@ -969,34 +1009,34 @@ "description": "URL to get the next set of operation list results if there are any." } } - }, - "Operation": { + }, + "Operation": { "description": "Supported operation of OperationalInsights resource provider.", "properties": { - "name": { - "description": "Operation name: {provider}/{resource}/{operation}", + "name": { + "description": "Operation name: {provider}/{resource}/{operation}", + "type": "string" + }, + "display": { + "description": "Display metadata associated with the operation.", + "properties": { + "provider": { + "description": "Service provider: Microsoft OperationsManagement.", "type": "string" - }, - "display": { - "description": "Display metadata associated with the operation.", - "properties": { - "provider": { - "description": "Service provider: Microsoft OperationsManagement.", - "type": "string" - }, - "resource": { - "description": "Resource on which the operation is performed etc.", - "type": "string" - }, - "operation": { - "description": "Type of operation: get, read, delete, etc.", - "type": "string" - } - } + }, + "resource": { + "description": "Resource on which the operation is performed etc.", + "type": "string" + }, + "operation": { + "description": "Type of operation: get, read, delete, etc.", + "type": "string" + } } + } } - }, - "LinkedServiceProperties": { + }, + "LinkedServiceProperties": { "properties": { "resourceId": { "type": "string", @@ -1039,7 +1079,7 @@ }, "description": "The list linked service operation response." }, - "DataSourceKind":{ + "DataSourceKind": { "type": "string", "enum": [ "AzureActivityLog", @@ -1321,8 +1361,8 @@ "$ref": "#/definitions/Sku", "description": "The SKU of the workspace." }, - "retentionInDays":{ - "type":"integer", + "retentionInDays": { + "type": "integer", "format": "int32", "minimum": -1, "maximum": 730, @@ -1336,7 +1376,7 @@ "properties": { "x-ms-client-flatten": true, "$ref": "#/definitions/WorkspaceProperties", - "description":"Workspace properties." + "description": "Workspace properties." }, "eTag": { "type": "string", @@ -1444,15 +1484,15 @@ "description": "Client Api Version." }, "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "x-ms-parameter-location": "method", - "description": "The name of the resource group to get. The name is case insensitive.", - "pattern": "^[-\\w\\._\\(\\)]+$", - "minLength": 1, - "maxLength": 90 + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method", + "description": "The name of the resource group to get. The name is case insensitive.", + "pattern": "^[-\\w\\._\\(\\)]+$", + "minLength": 1, + "maxLength": 90 } } } diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesCreate.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesCreate.json index 16782cbcf5fc..b721ee89e088 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesCreate.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesCreate.json @@ -1,41 +1,41 @@ { - "parameters":{ - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"AzTest9724", - "dataSourceName":"AzTestDS774", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000", - "parameters":{ - "properties":{ - "LinkedResourceId":"/subscriptions/00000000-0000-0000-0000-00000000000/providers/microsoft.insights/eventtypes/management" - }, - "kind":"AzureActivityLog" - } - }, - "responses":{ - "200":{ - "body":{ - "kind":"AzureActivityLog", - "properties":{ - "linkedResourceId":"/subscriptions/00000000-0000-0000-0000-00000000000/providers/microsoft.insights/eventtypes/management" - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest5123/providers/Microsoft.OperationalInsights/workspaces/AzTest9724/datasources/AzTestDS774", - "eTag":"W/\"datetime'2017-10-01T08%3A01%3A21.2351243Z'\"", - "name":"AzTestDS774", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - } + "parameters": { + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "AzTest9724", + "dataSourceName": "AzTestDS774", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000", + "parameters": { + "properties": { + "LinkedResourceId": "/subscriptions/00000000-0000-0000-0000-00000000000/providers/microsoft.insights/eventtypes/management" }, - "201":{ - "body":{ - "kind":"AzureActivityLog", - "properties":{ - "linkedResourceId":"/subscriptions/00000000-0000-0000-0000-00000000000/providers/microsoft.insights/eventtypes/management" - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest5123/providers/Microsoft.OperationalInsights/workspaces/AzTest9724/datasources/AzTestDS774", - "eTag":"W/\"datetime'2017-10-01T08%3A01%3A21.2351243Z'\"", - "name":"AzTestDS774", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - } + "kind": "AzureActivityLog" + } + }, + "responses": { + "200": { + "body": { + "kind": "AzureActivityLog", + "properties": { + "linkedResourceId": "/subscriptions/00000000-0000-0000-0000-00000000000/providers/microsoft.insights/eventtypes/management" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest5123/providers/Microsoft.OperationalInsights/workspaces/AzTest9724/datasources/AzTestDS774", + "eTag": "W/\"datetime'2017-10-01T08%3A01%3A21.2351243Z'\"", + "name": "AzTestDS774", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + } + }, + "201": { + "body": { + "kind": "AzureActivityLog", + "properties": { + "linkedResourceId": "/subscriptions/00000000-0000-0000-0000-00000000000/providers/microsoft.insights/eventtypes/management" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest5123/providers/Microsoft.OperationalInsights/workspaces/AzTest9724/datasources/AzTestDS774", + "eTag": "W/\"datetime'2017-10-01T08%3A01%3A21.2351243Z'\"", + "name": "AzTestDS774", + "type": "Microsoft.OperationalInsights/workspaces/datasources" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesDelete.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesDelete.json index b18b2e0ddf5c..9d22393be020 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesDelete.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesDelete.json @@ -1,13 +1,13 @@ { - "parameters": { - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"AzTest9724", - "dataSourceName":"AzTestDS774", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{}, - "204":{} - } -} \ No newline at end of file + "parameters": { + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "AzTest9724", + "dataSourceName": "AzTestDS774", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesGet.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesGet.json index a78b69ddc2af..d57a838485b9 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesGet.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesGet.json @@ -1,23 +1,23 @@ { - "parameters":{ - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"AzTest9724", - "dataSourceName":"AzTestDS774", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "kind":"AzureActivityLog", - "properties":{ - "linkedResourceId":"/subscriptions/00000000-0000-0000-0000-00000000000/providers/microsoft.insights/eventtypes/management" - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest5123/providers/Microsoft.OperationalInsights/workspaces/AzTest9724/datasources/AzTestDS774", - "eTag":"W/\"datetime'2017-10-01T08%3A01%3A21.2351243Z'\"", - "name":"AzTestDS774", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - } + "parameters": { + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "AzTest9724", + "dataSourceName": "AzTestDS774", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "kind": "AzureActivityLog", + "properties": { + "linkedResourceId": "/subscriptions/00000000-0000-0000-0000-00000000000/providers/microsoft.insights/eventtypes/management" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest5123/providers/Microsoft.OperationalInsights/workspaces/AzTest9724/datasources/AzTestDS774", + "eTag": "W/\"datetime'2017-10-01T08%3A01%3A21.2351243Z'\"", + "name": "AzTestDS774", + "type": "Microsoft.OperationalInsights/workspaces/datasources" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesListByWorkspace.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesListByWorkspace.json index a436ad5bbec9..f0c814e85ac2 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesListByWorkspace.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/DataSourcesListByWorkspace.json @@ -1,3019 +1,3019 @@ { - "parameters":{ - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"AzTest9724", - "dataSourceName":"AzTestDS774", - "$filter":"kind='WindowsEvent'", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent14", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1011", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A08.5629323Z'\"", - "name":"AzTestDSWE1011", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent64", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1013", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A22.2533211Z'\"", - "name":"AzTestDSWE1013", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent202", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1020", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A04.4645698Z'\"", - "name":"AzTestDSWE1020", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent231", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1074", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A12.5871672Z'\"", - "name":"AzTestDSWE1074", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent86", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1117", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A28.9325389Z'\"", - "name":"AzTestDSWE1117", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent30", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1128", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A13.2185735Z'\"", - "name":"AzTestDSWE1128", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent66", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1176", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A22.7779289Z'\"", - "name":"AzTestDSWE1176", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent199", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1293", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A03.5114136Z'\"", - "name":"AzTestDSWE1293", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent102", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE134", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A33.6788897Z'\"", - "name":"AzTestDSWE134", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent111", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1352", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A36.2312139Z'\"", - "name":"AzTestDSWE1352", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent31", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1360", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A13.4685716Z'\"", - "name":"AzTestDSWE1360", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent53", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1382", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A19.2840543Z'\"", - "name":"AzTestDSWE1382", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent132", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1410", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A42.7070374Z'\"", - "name":"AzTestDSWE1410", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent211", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1417", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A06.8922838Z'\"", - "name":"AzTestDSWE1417", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent274", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1560", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A26.6932412Z'\"", - "name":"AzTestDSWE1560", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent212", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1618", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A07.1422661Z'\"", - "name":"AzTestDSWE1618", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent221", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1662", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A09.5980265Z'\"", - "name":"AzTestDSWE1662", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent121", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1675", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A39.6167744Z'\"", - "name":"AzTestDSWE1675", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent157", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE169", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A50.1064668Z'\"", - "name":"AzTestDSWE169", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent196", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1735", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A02.4954752Z'\"", - "name":"AzTestDSWE1735", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent12", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1742", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A08.0452997Z'\"", - "name":"AzTestDSWE1742", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent145", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1815", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A46.5966089Z'\"", - "name":"AzTestDSWE1815", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent69", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1828", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A23.6529754Z'\"", - "name":"AzTestDSWE1828", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent58", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE188", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A20.7216320Z'\"", - "name":"AzTestDSWE188", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent48", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1962", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A17.9341560Z'\"", - "name":"AzTestDSWE1962", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent246", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1997", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A17.3081821Z'\"", - "name":"AzTestDSWE1997", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent154", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2046", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A49.2918213Z'\"", - "name":"AzTestDSWE2046", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent165", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2056", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A52.4111189Z'\"", - "name":"AzTestDSWE2056", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent172", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2116", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A54.7598026Z'\"", - "name":"AzTestDSWE2116", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent9", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2142", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A07.2711237Z'\"", - "name":"AzTestDSWE2142", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent150", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE22", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A48.2064500Z'\"", - "name":"AzTestDSWE22", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent218", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2208", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A08.7849248Z'\"", - "name":"AzTestDSWE2208", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent161", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2221", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A51.3306230Z'\"", - "name":"AzTestDSWE2221", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent75", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2226", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A25.5991266Z'\"", - "name":"AzTestDSWE2226", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent38", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2231", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A15.3592513Z'\"", - "name":"AzTestDSWE2231", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent208", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2242", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A06.0641077Z'\"", - "name":"AzTestDSWE2242", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent228", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2263", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A11.7829226Z'\"", - "name":"AzTestDSWE2263", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent259", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2369", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A21.5874093Z'\"", - "name":"AzTestDSWE2369", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent210", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE240", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A06.6266574Z'\"", - "name":"AzTestDSWE240", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent265", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2423", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A23.4752361Z'\"", - "name":"AzTestDSWE2423", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent112", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2463", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A36.5611370Z'\"", - "name":"AzTestDSWE2463", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent32", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2499", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A13.7187131Z'\"", - "name":"AzTestDSWE2499", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent220", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2509", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A09.3324224Z'\"", - "name":"AzTestDSWE2509", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent87", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2541", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A29.2312540Z'\"", - "name":"AzTestDSWE2541", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent2", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2578", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A05.3117461Z'\"", - "name":"AzTestDSWE2578", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent119", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2619", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A38.5379572Z'\"", - "name":"AzTestDSWE2619", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent1", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE274", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A05.0735592Z'\"", - "name":"AzTestDSWE274", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent92", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2754", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A30.6297451Z'\"", - "name":"AzTestDSWE2754", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent205", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE281", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A05.2972963Z'\"", - "name":"AzTestDSWE281", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent101", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2818", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A33.3820072Z'\"", - "name":"AzTestDSWE2818", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent236", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2860", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A14.0876077Z'\"", - "name":"AzTestDSWE2860", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent93", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2867", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A30.9266089Z'\"", - "name":"AzTestDSWE2867", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent278", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2923", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A27.9342580Z'\"", - "name":"AzTestDSWE2923", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent138", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2979", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A44.4311007Z'\"", - "name":"AzTestDSWE2979", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent217", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3009", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A08.5349323Z'\"", - "name":"AzTestDSWE3009", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent269", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3033", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A24.9696296Z'\"", - "name":"AzTestDSWE3033", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent49", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3095", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A18.2006423Z'\"", - "name":"AzTestDSWE3095", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent118", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3114", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A38.2879169Z'\"", - "name":"AzTestDSWE3114", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent116", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3132", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A37.6889867Z'\"", - "name":"AzTestDSWE3132", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent185", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3147", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A58.9331954Z'\"", - "name":"AzTestDSWE3147", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent109", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3159", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A35.6843083Z'\"", - "name":"AzTestDSWE3159", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent46", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE317", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A17.4118415Z'\"", - "name":"AzTestDSWE317", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent107", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3175", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A35.0592573Z'\"", - "name":"AzTestDSWE3175", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent28", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3183", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A12.6247906Z'\"", - "name":"AzTestDSWE3183", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent237", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3217", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A14.4938899Z'\"", - "name":"AzTestDSWE3217", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent62", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3220", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A21.7373059Z'\"", - "name":"AzTestDSWE3220", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent51", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3228", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A18.7785353Z'\"", - "name":"AzTestDSWE3228", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent171", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3395", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A54.4936956Z'\"", - "name":"AzTestDSWE3395", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent63", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3416", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A22.0032694Z'\"", - "name":"AzTestDSWE3416", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent280", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3506", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A28.8251658Z'\"", - "name":"AzTestDSWE3506", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent23", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3517", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A11.2153209Z'\"", - "name":"AzTestDSWE3517", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent229", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3528", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A12.0402565Z'\"", - "name":"AzTestDSWE3528", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent136", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3530", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A43.8027590Z'\"", - "name":"AzTestDSWE3530", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent194", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3594", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A01.9173304Z'\"", - "name":"AzTestDSWE3594", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent191", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3615", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A00.8990889Z'\"", - "name":"AzTestDSWE3615", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent242", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3645", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A16.0877829Z'\"", - "name":"AzTestDSWE3645", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent11", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3676", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A07.8068460Z'\"", - "name":"AzTestDSWE3676", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent155", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3700", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A49.5439700Z'\"", - "name":"AzTestDSWE3700", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent117", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3738", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A38.0363694Z'\"", - "name":"AzTestDSWE3738", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent159", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3740", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A50.6390339Z'\"", - "name":"AzTestDSWE3740", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent95", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3754", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A31.5203823Z'\"", - "name":"AzTestDSWE3754", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent96", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3761", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A31.7860159Z'\"", - "name":"AzTestDSWE3761", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent56", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3787", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A20.0966078Z'\"", - "name":"AzTestDSWE3787", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent181", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3880", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A57.8394298Z'\"", - "name":"AzTestDSWE3880", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent160", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3887", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A51.0806178Z'\"", - "name":"AzTestDSWE3887", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent244", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3899", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A16.6987634Z'\"", - "name":"AzTestDSWE3899", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent127", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3928", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A41.4223363Z'\"", - "name":"AzTestDSWE3928", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent186", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4005", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A59.1831854Z'\"", - "name":"AzTestDSWE4005", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent288", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4021", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A31.5314824Z'\"", - "name":"AzTestDSWE4021", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent193", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4054", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A01.6667691Z'\"", - "name":"AzTestDSWE4054", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent133", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE406", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A42.9581303Z'\"", - "name":"AzTestDSWE406", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent88", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4128", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A29.4890798Z'\"", - "name":"AzTestDSWE4128", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent189", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4140", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A00.2051432Z'\"", - "name":"AzTestDSWE4140", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent183", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4209", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A58.3706603Z'\"", - "name":"AzTestDSWE4209", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent67", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4216", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A23.1240354Z'\"", - "name":"AzTestDSWE4216", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent294", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4240", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A33.5368097Z'\"", - "name":"AzTestDSWE4240", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent91", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4279", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A30.3641074Z'\"", - "name":"AzTestDSWE4279", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent273", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4289", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A26.3963554Z'\"", - "name":"AzTestDSWE4289", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent148", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4317", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A47.6751803Z'\"", - "name":"AzTestDSWE4317", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent4", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4324", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A05.8120517Z'\"", - "name":"AzTestDSWE4324", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent201", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4362", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A04.1208323Z'\"", - "name":"AzTestDSWE4362", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent13", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4416", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A08.3109506Z'\"", - "name":"AzTestDSWE4416", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent153", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4424", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A48.9744951Z'\"", - "name":"AzTestDSWE4424", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent52", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4466", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A19.0457713Z'\"", - "name":"AzTestDSWE4466", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent37", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4467", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A15.0936374Z'\"", - "name":"AzTestDSWE4467", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent129", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4503", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A41.9399246Z'\"", - "name":"AzTestDSWE4503", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent276", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4521", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A27.2714771Z'\"", - "name":"AzTestDSWE4521", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent79", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4530", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A26.7419933Z'\"", - "name":"AzTestDSWE4530", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent115", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4600", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A37.4227966Z'\"", - "name":"AzTestDSWE4600", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent135", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4644", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A43.5519204Z'\"", - "name":"AzTestDSWE4644", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent162", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4694", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A51.6431386Z'\"", - "name":"AzTestDSWE4694", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent5", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4715", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A06.0530002Z'\"", - "name":"AzTestDSWE4715", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent267", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE472", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A24.3989962Z'\"", - "name":"AzTestDSWE472", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent243", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4721", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A16.3706498Z'\"", - "name":"AzTestDSWE4721", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent295", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4734", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A33.8337155Z'\"", - "name":"AzTestDSWE4734", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent270", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4755", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A25.2712759Z'\"", - "name":"AzTestDSWE4755", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent81", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4779", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A27.5076680Z'\"", - "name":"AzTestDSWE4779", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent0", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4791", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A04.6828938Z'\"", - "name":"AzTestDSWE4791", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent170", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4798", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A54.0073520Z'\"", - "name":"AzTestDSWE4798", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent263", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE480", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A22.9077505Z'\"", - "name":"AzTestDSWE480", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent25", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4847", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A11.7028912Z'\"", - "name":"AzTestDSWE4847", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent204", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4876", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A04.9847854Z'\"", - "name":"AzTestDSWE4876", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent68", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4900", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A23.4029367Z'\"", - "name":"AzTestDSWE4900", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent105", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4918", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A34.5280091Z'\"", - "name":"AzTestDSWE4918", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent296", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4928", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A34.2882196Z'\"", - "name":"AzTestDSWE4928", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent293", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4930", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A33.2381803Z'\"", - "name":"AzTestDSWE4930", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent113", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4945", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A36.8423994Z'\"", - "name":"AzTestDSWE4945", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent15", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4967", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A08.9379456Z'\"", - "name":"AzTestDSWE4967", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent180", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4969", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A57.5893926Z'\"", - "name":"AzTestDSWE4969", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent54", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4983", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A19.5497139Z'\"", - "name":"AzTestDSWE4983", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent151", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5011", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A48.4588661Z'\"", - "name":"AzTestDSWE5011", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent290", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5082", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A32.2694295Z'\"", - "name":"AzTestDSWE5082", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent248", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5136", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A17.8863220Z'\"", - "name":"AzTestDSWE5136", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent206", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5141", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A05.5484906Z'\"", - "name":"AzTestDSWE5141", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent266", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5166", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A23.9283342Z'\"", - "name":"AzTestDSWE5166", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent282", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5207", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A29.4970655Z'\"", - "name":"AzTestDSWE5207", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent203", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5223", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A04.7146038Z'\"", - "name":"AzTestDSWE5223", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent20", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5233", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A10.3237629Z'\"", - "name":"AzTestDSWE5233", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent249", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5253", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A18.1831872Z'\"", - "name":"AzTestDSWE5253", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent286", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5255", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A30.9049829Z'\"", - "name":"AzTestDSWE5255", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent29", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5263", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A12.8904269Z'\"", - "name":"AzTestDSWE5263", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent255", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5351", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A20.4543884Z'\"", - "name":"AzTestDSWE5351", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent55", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5385", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A19.7997319Z'\"", - "name":"AzTestDSWE5385", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent89", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5394", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A29.7703365Z'\"", - "name":"AzTestDSWE5394", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent17", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE541", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A09.4692151Z'\"", - "name":"AzTestDSWE541", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent241", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5439", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A15.7994161Z'\"", - "name":"AzTestDSWE5439", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent223", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5460", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A10.3032105Z'\"", - "name":"AzTestDSWE5460", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent268", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5479", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A24.6802546Z'\"", - "name":"AzTestDSWE5479", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent192", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5483", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A01.1670463Z'\"", - "name":"AzTestDSWE5483", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent114", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5486", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A37.1393156Z'\"", - "name":"AzTestDSWE5486", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent126", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5554", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A41.1205470Z'\"", - "name":"AzTestDSWE5554", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent256", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5559", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A20.7200407Z'\"", - "name":"AzTestDSWE5559", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent50", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5585", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A18.4534330Z'\"", - "name":"AzTestDSWE5585", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent125", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE568", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A40.8861587Z'\"", - "name":"AzTestDSWE568", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent230", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5741", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A12.3059271Z'\"", - "name":"AzTestDSWE5741", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent120", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE58", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A39.0692471Z'\"", - "name":"AzTestDSWE58", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent44", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5810", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A16.9117573Z'\"", - "name":"AzTestDSWE5810", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent141", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5815", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A45.4055476Z'\"", - "name":"AzTestDSWE5815", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent173", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5858", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A55.0097893Z'\"", - "name":"AzTestDSWE5858", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent251", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5866", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A18.9931389Z'\"", - "name":"AzTestDSWE5866", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent187", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5888", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A59.4332080Z'\"", - "name":"AzTestDSWE5888", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent18", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5905", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A09.7599986Z'\"", - "name":"AzTestDSWE5905", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent224", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6027", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A10.6395291Z'\"", - "name":"AzTestDSWE6027", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent235", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE607", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A13.7282386Z'\"", - "name":"AzTestDSWE607", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent100", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6099", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A33.1319662Z'\"", - "name":"AzTestDSWE6099", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent6", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6122", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A06.3186640Z'\"", - "name":"AzTestDSWE6122", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent24", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6218", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A11.4528829Z'\"", - "name":"AzTestDSWE6218", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent149", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE622", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A47.9407875Z'\"", - "name":"AzTestDSWE622", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent209", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6222", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A06.3453921Z'\"", - "name":"AzTestDSWE6222", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent60", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6240", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A21.2372832Z'\"", - "name":"AzTestDSWE6240", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent216", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6251", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A08.2849036Z'\"", - "name":"AzTestDSWE6251", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent195", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6274", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A02.1829375Z'\"", - "name":"AzTestDSWE6274", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent98", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6296", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A32.3491070Z'\"", - "name":"AzTestDSWE6296", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent261", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6301", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A22.1811938Z'\"", - "name":"AzTestDSWE6301", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent7", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6404", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A06.7093003Z'\"", - "name":"AzTestDSWE6404", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent3", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6406", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A05.5617435Z'\"", - "name":"AzTestDSWE6406", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent123", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6432", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A40.2886854Z'\"", - "name":"AzTestDSWE6432", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent110", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6439", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A35.9811949Z'\"", - "name":"AzTestDSWE6439", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent233", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6451", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A13.1344490Z'\"", - "name":"AzTestDSWE6451", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent22", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6486", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A10.9653354Z'\"", - "name":"AzTestDSWE6486", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent19", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6505", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A10.0582011Z'\"", - "name":"AzTestDSWE6505", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent166", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6514", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A52.8955201Z'\"", - "name":"AzTestDSWE6514", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent225", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6518", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A10.9395226Z'\"", - "name":"AzTestDSWE6518", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent70", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6537", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A24.0123335Z'\"", - "name":"AzTestDSWE6537", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent179", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6547", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A57.3394082Z'\"", - "name":"AzTestDSWE6547", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent103", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6556", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A33.9457044Z'\"", - "name":"AzTestDSWE6556", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent234", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6718", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A13.4313542Z'\"", - "name":"AzTestDSWE6718", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent108", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6724", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A35.4186784Z'\"", - "name":"AzTestDSWE6724", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent27", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6741", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A12.3279180Z'\"", - "name":"AzTestDSWE6741", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent72", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6796", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A24.5764501Z'\"", - "name":"AzTestDSWE6796", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent299", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6826", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A35.2579899Z'\"", - "name":"AzTestDSWE6826", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent297", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6829", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A34.6319483Z'\"", - "name":"AzTestDSWE6829", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent85", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6893", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A28.5887776Z'\"", - "name":"AzTestDSWE6893", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent41", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6974", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A16.1249736Z'\"", - "name":"AzTestDSWE6974", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent279", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7008", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A28.3876585Z'\"", - "name":"AzTestDSWE7008", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent281", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7014", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A29.1220764Z'\"", - "name":"AzTestDSWE7014", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent272", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7068", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A26.0213457Z'\"", - "name":"AzTestDSWE7068", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent260", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7080", - "eTag":"W/\"datetime'2017-10-02T23%3A21%3A21.8686663Z'\"", - "name":"AzTestDSWE7080", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent124", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7166", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A40.5423724Z'\"", - "name":"AzTestDSWE7166", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - }, - { - "kind":"WindowsEvent", - "properties":{ - "eventLogName":"windowsEvent42", - "eventTypes":[ - { - "eventType":"Error" - } - ] - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7178", - "eTag":"W/\"datetime'2017-10-02T23%3A20%3A16.3906307Z'\"", - "name":"AzTestDSWE7178", - "type":"Microsoft.OperationalInsights/workspaces/datasources" - } - ], - "nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/dataSources?$filter=kind+eq+'WindowsEvent'&api-version=2015-11-01-preview&$skiptoken=AzTestDSWE7191" - } + "parameters": { + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "AzTest9724", + "dataSourceName": "AzTestDS774", + "$filter": "kind='WindowsEvent'", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent14", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1011", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A08.5629323Z'\"", + "name": "AzTestDSWE1011", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent64", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1013", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A22.2533211Z'\"", + "name": "AzTestDSWE1013", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent202", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1020", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A04.4645698Z'\"", + "name": "AzTestDSWE1020", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent231", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1074", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A12.5871672Z'\"", + "name": "AzTestDSWE1074", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent86", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1117", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A28.9325389Z'\"", + "name": "AzTestDSWE1117", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent30", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1128", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A13.2185735Z'\"", + "name": "AzTestDSWE1128", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent66", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1176", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A22.7779289Z'\"", + "name": "AzTestDSWE1176", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent199", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1293", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A03.5114136Z'\"", + "name": "AzTestDSWE1293", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent102", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE134", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A33.6788897Z'\"", + "name": "AzTestDSWE134", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent111", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1352", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A36.2312139Z'\"", + "name": "AzTestDSWE1352", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent31", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1360", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A13.4685716Z'\"", + "name": "AzTestDSWE1360", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent53", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1382", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A19.2840543Z'\"", + "name": "AzTestDSWE1382", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent132", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1410", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A42.7070374Z'\"", + "name": "AzTestDSWE1410", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent211", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1417", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A06.8922838Z'\"", + "name": "AzTestDSWE1417", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent274", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1560", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A26.6932412Z'\"", + "name": "AzTestDSWE1560", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent212", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1618", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A07.1422661Z'\"", + "name": "AzTestDSWE1618", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent221", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1662", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A09.5980265Z'\"", + "name": "AzTestDSWE1662", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent121", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1675", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A39.6167744Z'\"", + "name": "AzTestDSWE1675", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent157", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE169", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A50.1064668Z'\"", + "name": "AzTestDSWE169", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent196", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1735", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A02.4954752Z'\"", + "name": "AzTestDSWE1735", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent12", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1742", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A08.0452997Z'\"", + "name": "AzTestDSWE1742", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent145", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1815", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A46.5966089Z'\"", + "name": "AzTestDSWE1815", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent69", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1828", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A23.6529754Z'\"", + "name": "AzTestDSWE1828", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent58", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE188", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A20.7216320Z'\"", + "name": "AzTestDSWE188", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent48", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1962", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A17.9341560Z'\"", + "name": "AzTestDSWE1962", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent246", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE1997", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A17.3081821Z'\"", + "name": "AzTestDSWE1997", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent154", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2046", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A49.2918213Z'\"", + "name": "AzTestDSWE2046", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent165", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2056", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A52.4111189Z'\"", + "name": "AzTestDSWE2056", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent172", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2116", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A54.7598026Z'\"", + "name": "AzTestDSWE2116", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent9", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2142", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A07.2711237Z'\"", + "name": "AzTestDSWE2142", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent150", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE22", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A48.2064500Z'\"", + "name": "AzTestDSWE22", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent218", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2208", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A08.7849248Z'\"", + "name": "AzTestDSWE2208", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent161", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2221", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A51.3306230Z'\"", + "name": "AzTestDSWE2221", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent75", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2226", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A25.5991266Z'\"", + "name": "AzTestDSWE2226", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent38", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2231", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A15.3592513Z'\"", + "name": "AzTestDSWE2231", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent208", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2242", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A06.0641077Z'\"", + "name": "AzTestDSWE2242", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent228", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2263", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A11.7829226Z'\"", + "name": "AzTestDSWE2263", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent259", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2369", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A21.5874093Z'\"", + "name": "AzTestDSWE2369", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent210", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE240", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A06.6266574Z'\"", + "name": "AzTestDSWE240", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent265", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2423", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A23.4752361Z'\"", + "name": "AzTestDSWE2423", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent112", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2463", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A36.5611370Z'\"", + "name": "AzTestDSWE2463", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent32", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2499", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A13.7187131Z'\"", + "name": "AzTestDSWE2499", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent220", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2509", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A09.3324224Z'\"", + "name": "AzTestDSWE2509", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent87", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2541", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A29.2312540Z'\"", + "name": "AzTestDSWE2541", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent2", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2578", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A05.3117461Z'\"", + "name": "AzTestDSWE2578", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent119", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2619", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A38.5379572Z'\"", + "name": "AzTestDSWE2619", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent1", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE274", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A05.0735592Z'\"", + "name": "AzTestDSWE274", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent92", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2754", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A30.6297451Z'\"", + "name": "AzTestDSWE2754", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent205", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE281", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A05.2972963Z'\"", + "name": "AzTestDSWE281", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent101", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2818", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A33.3820072Z'\"", + "name": "AzTestDSWE2818", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent236", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2860", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A14.0876077Z'\"", + "name": "AzTestDSWE2860", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent93", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2867", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A30.9266089Z'\"", + "name": "AzTestDSWE2867", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent278", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2923", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A27.9342580Z'\"", + "name": "AzTestDSWE2923", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent138", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE2979", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A44.4311007Z'\"", + "name": "AzTestDSWE2979", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent217", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3009", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A08.5349323Z'\"", + "name": "AzTestDSWE3009", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent269", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3033", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A24.9696296Z'\"", + "name": "AzTestDSWE3033", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent49", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3095", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A18.2006423Z'\"", + "name": "AzTestDSWE3095", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent118", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3114", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A38.2879169Z'\"", + "name": "AzTestDSWE3114", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent116", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3132", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A37.6889867Z'\"", + "name": "AzTestDSWE3132", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent185", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3147", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A58.9331954Z'\"", + "name": "AzTestDSWE3147", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent109", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3159", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A35.6843083Z'\"", + "name": "AzTestDSWE3159", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent46", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE317", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A17.4118415Z'\"", + "name": "AzTestDSWE317", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent107", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3175", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A35.0592573Z'\"", + "name": "AzTestDSWE3175", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent28", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3183", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A12.6247906Z'\"", + "name": "AzTestDSWE3183", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent237", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3217", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A14.4938899Z'\"", + "name": "AzTestDSWE3217", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent62", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3220", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A21.7373059Z'\"", + "name": "AzTestDSWE3220", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent51", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3228", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A18.7785353Z'\"", + "name": "AzTestDSWE3228", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent171", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3395", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A54.4936956Z'\"", + "name": "AzTestDSWE3395", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent63", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3416", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A22.0032694Z'\"", + "name": "AzTestDSWE3416", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent280", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3506", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A28.8251658Z'\"", + "name": "AzTestDSWE3506", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent23", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3517", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A11.2153209Z'\"", + "name": "AzTestDSWE3517", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent229", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3528", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A12.0402565Z'\"", + "name": "AzTestDSWE3528", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent136", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3530", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A43.8027590Z'\"", + "name": "AzTestDSWE3530", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent194", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3594", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A01.9173304Z'\"", + "name": "AzTestDSWE3594", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent191", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3615", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A00.8990889Z'\"", + "name": "AzTestDSWE3615", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent242", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3645", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A16.0877829Z'\"", + "name": "AzTestDSWE3645", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent11", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3676", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A07.8068460Z'\"", + "name": "AzTestDSWE3676", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent155", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3700", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A49.5439700Z'\"", + "name": "AzTestDSWE3700", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent117", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3738", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A38.0363694Z'\"", + "name": "AzTestDSWE3738", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent159", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3740", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A50.6390339Z'\"", + "name": "AzTestDSWE3740", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent95", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3754", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A31.5203823Z'\"", + "name": "AzTestDSWE3754", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent96", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3761", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A31.7860159Z'\"", + "name": "AzTestDSWE3761", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent56", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3787", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A20.0966078Z'\"", + "name": "AzTestDSWE3787", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent181", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3880", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A57.8394298Z'\"", + "name": "AzTestDSWE3880", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent160", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3887", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A51.0806178Z'\"", + "name": "AzTestDSWE3887", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent244", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3899", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A16.6987634Z'\"", + "name": "AzTestDSWE3899", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent127", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE3928", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A41.4223363Z'\"", + "name": "AzTestDSWE3928", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent186", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4005", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A59.1831854Z'\"", + "name": "AzTestDSWE4005", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent288", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4021", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A31.5314824Z'\"", + "name": "AzTestDSWE4021", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent193", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4054", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A01.6667691Z'\"", + "name": "AzTestDSWE4054", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent133", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE406", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A42.9581303Z'\"", + "name": "AzTestDSWE406", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent88", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4128", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A29.4890798Z'\"", + "name": "AzTestDSWE4128", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent189", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4140", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A00.2051432Z'\"", + "name": "AzTestDSWE4140", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent183", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4209", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A58.3706603Z'\"", + "name": "AzTestDSWE4209", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent67", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4216", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A23.1240354Z'\"", + "name": "AzTestDSWE4216", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent294", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4240", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A33.5368097Z'\"", + "name": "AzTestDSWE4240", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent91", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4279", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A30.3641074Z'\"", + "name": "AzTestDSWE4279", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent273", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4289", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A26.3963554Z'\"", + "name": "AzTestDSWE4289", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent148", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4317", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A47.6751803Z'\"", + "name": "AzTestDSWE4317", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent4", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4324", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A05.8120517Z'\"", + "name": "AzTestDSWE4324", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent201", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4362", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A04.1208323Z'\"", + "name": "AzTestDSWE4362", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent13", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4416", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A08.3109506Z'\"", + "name": "AzTestDSWE4416", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent153", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4424", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A48.9744951Z'\"", + "name": "AzTestDSWE4424", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent52", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4466", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A19.0457713Z'\"", + "name": "AzTestDSWE4466", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent37", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4467", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A15.0936374Z'\"", + "name": "AzTestDSWE4467", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent129", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4503", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A41.9399246Z'\"", + "name": "AzTestDSWE4503", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent276", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4521", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A27.2714771Z'\"", + "name": "AzTestDSWE4521", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent79", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4530", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A26.7419933Z'\"", + "name": "AzTestDSWE4530", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent115", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4600", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A37.4227966Z'\"", + "name": "AzTestDSWE4600", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent135", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4644", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A43.5519204Z'\"", + "name": "AzTestDSWE4644", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent162", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4694", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A51.6431386Z'\"", + "name": "AzTestDSWE4694", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent5", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4715", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A06.0530002Z'\"", + "name": "AzTestDSWE4715", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent267", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE472", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A24.3989962Z'\"", + "name": "AzTestDSWE472", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent243", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4721", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A16.3706498Z'\"", + "name": "AzTestDSWE4721", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent295", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4734", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A33.8337155Z'\"", + "name": "AzTestDSWE4734", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent270", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4755", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A25.2712759Z'\"", + "name": "AzTestDSWE4755", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent81", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4779", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A27.5076680Z'\"", + "name": "AzTestDSWE4779", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent0", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4791", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A04.6828938Z'\"", + "name": "AzTestDSWE4791", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent170", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4798", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A54.0073520Z'\"", + "name": "AzTestDSWE4798", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent263", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE480", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A22.9077505Z'\"", + "name": "AzTestDSWE480", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent25", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4847", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A11.7028912Z'\"", + "name": "AzTestDSWE4847", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent204", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4876", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A04.9847854Z'\"", + "name": "AzTestDSWE4876", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent68", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4900", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A23.4029367Z'\"", + "name": "AzTestDSWE4900", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent105", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4918", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A34.5280091Z'\"", + "name": "AzTestDSWE4918", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent296", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4928", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A34.2882196Z'\"", + "name": "AzTestDSWE4928", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent293", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4930", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A33.2381803Z'\"", + "name": "AzTestDSWE4930", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent113", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4945", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A36.8423994Z'\"", + "name": "AzTestDSWE4945", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent15", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4967", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A08.9379456Z'\"", + "name": "AzTestDSWE4967", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent180", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4969", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A57.5893926Z'\"", + "name": "AzTestDSWE4969", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent54", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE4983", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A19.5497139Z'\"", + "name": "AzTestDSWE4983", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent151", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5011", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A48.4588661Z'\"", + "name": "AzTestDSWE5011", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent290", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5082", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A32.2694295Z'\"", + "name": "AzTestDSWE5082", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent248", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5136", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A17.8863220Z'\"", + "name": "AzTestDSWE5136", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent206", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5141", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A05.5484906Z'\"", + "name": "AzTestDSWE5141", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent266", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5166", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A23.9283342Z'\"", + "name": "AzTestDSWE5166", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent282", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5207", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A29.4970655Z'\"", + "name": "AzTestDSWE5207", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent203", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5223", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A04.7146038Z'\"", + "name": "AzTestDSWE5223", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent20", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5233", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A10.3237629Z'\"", + "name": "AzTestDSWE5233", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent249", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5253", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A18.1831872Z'\"", + "name": "AzTestDSWE5253", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent286", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5255", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A30.9049829Z'\"", + "name": "AzTestDSWE5255", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent29", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5263", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A12.8904269Z'\"", + "name": "AzTestDSWE5263", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent255", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5351", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A20.4543884Z'\"", + "name": "AzTestDSWE5351", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent55", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5385", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A19.7997319Z'\"", + "name": "AzTestDSWE5385", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent89", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5394", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A29.7703365Z'\"", + "name": "AzTestDSWE5394", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent17", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE541", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A09.4692151Z'\"", + "name": "AzTestDSWE541", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent241", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5439", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A15.7994161Z'\"", + "name": "AzTestDSWE5439", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent223", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5460", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A10.3032105Z'\"", + "name": "AzTestDSWE5460", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent268", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5479", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A24.6802546Z'\"", + "name": "AzTestDSWE5479", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent192", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5483", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A01.1670463Z'\"", + "name": "AzTestDSWE5483", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent114", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5486", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A37.1393156Z'\"", + "name": "AzTestDSWE5486", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent126", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5554", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A41.1205470Z'\"", + "name": "AzTestDSWE5554", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent256", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5559", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A20.7200407Z'\"", + "name": "AzTestDSWE5559", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent50", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5585", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A18.4534330Z'\"", + "name": "AzTestDSWE5585", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent125", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE568", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A40.8861587Z'\"", + "name": "AzTestDSWE568", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent230", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5741", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A12.3059271Z'\"", + "name": "AzTestDSWE5741", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent120", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE58", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A39.0692471Z'\"", + "name": "AzTestDSWE58", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent44", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5810", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A16.9117573Z'\"", + "name": "AzTestDSWE5810", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent141", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5815", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A45.4055476Z'\"", + "name": "AzTestDSWE5815", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent173", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5858", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A55.0097893Z'\"", + "name": "AzTestDSWE5858", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent251", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5866", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A18.9931389Z'\"", + "name": "AzTestDSWE5866", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent187", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5888", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A59.4332080Z'\"", + "name": "AzTestDSWE5888", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent18", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE5905", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A09.7599986Z'\"", + "name": "AzTestDSWE5905", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent224", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6027", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A10.6395291Z'\"", + "name": "AzTestDSWE6027", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent235", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE607", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A13.7282386Z'\"", + "name": "AzTestDSWE607", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent100", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6099", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A33.1319662Z'\"", + "name": "AzTestDSWE6099", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent6", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6122", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A06.3186640Z'\"", + "name": "AzTestDSWE6122", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent24", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6218", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A11.4528829Z'\"", + "name": "AzTestDSWE6218", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent149", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE622", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A47.9407875Z'\"", + "name": "AzTestDSWE622", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent209", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6222", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A06.3453921Z'\"", + "name": "AzTestDSWE6222", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent60", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6240", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A21.2372832Z'\"", + "name": "AzTestDSWE6240", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent216", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6251", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A08.2849036Z'\"", + "name": "AzTestDSWE6251", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent195", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6274", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A02.1829375Z'\"", + "name": "AzTestDSWE6274", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent98", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6296", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A32.3491070Z'\"", + "name": "AzTestDSWE6296", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent261", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6301", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A22.1811938Z'\"", + "name": "AzTestDSWE6301", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent7", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6404", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A06.7093003Z'\"", + "name": "AzTestDSWE6404", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent3", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6406", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A05.5617435Z'\"", + "name": "AzTestDSWE6406", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent123", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6432", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A40.2886854Z'\"", + "name": "AzTestDSWE6432", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent110", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6439", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A35.9811949Z'\"", + "name": "AzTestDSWE6439", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent233", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6451", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A13.1344490Z'\"", + "name": "AzTestDSWE6451", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent22", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6486", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A10.9653354Z'\"", + "name": "AzTestDSWE6486", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent19", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6505", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A10.0582011Z'\"", + "name": "AzTestDSWE6505", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent166", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6514", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A52.8955201Z'\"", + "name": "AzTestDSWE6514", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent225", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6518", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A10.9395226Z'\"", + "name": "AzTestDSWE6518", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent70", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6537", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A24.0123335Z'\"", + "name": "AzTestDSWE6537", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent179", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6547", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A57.3394082Z'\"", + "name": "AzTestDSWE6547", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent103", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6556", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A33.9457044Z'\"", + "name": "AzTestDSWE6556", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent234", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6718", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A13.4313542Z'\"", + "name": "AzTestDSWE6718", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent108", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6724", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A35.4186784Z'\"", + "name": "AzTestDSWE6724", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent27", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6741", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A12.3279180Z'\"", + "name": "AzTestDSWE6741", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent72", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6796", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A24.5764501Z'\"", + "name": "AzTestDSWE6796", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent299", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6826", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A35.2579899Z'\"", + "name": "AzTestDSWE6826", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent297", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6829", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A34.6319483Z'\"", + "name": "AzTestDSWE6829", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent85", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6893", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A28.5887776Z'\"", + "name": "AzTestDSWE6893", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent41", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE6974", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A16.1249736Z'\"", + "name": "AzTestDSWE6974", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent279", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7008", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A28.3876585Z'\"", + "name": "AzTestDSWE7008", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent281", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7014", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A29.1220764Z'\"", + "name": "AzTestDSWE7014", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent272", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7068", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A26.0213457Z'\"", + "name": "AzTestDSWE7068", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent260", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7080", + "eTag": "W/\"datetime'2017-10-02T23%3A21%3A21.8686663Z'\"", + "name": "AzTestDSWE7080", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent124", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7166", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A40.5423724Z'\"", + "name": "AzTestDSWE7166", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + }, + { + "kind": "WindowsEvent", + "properties": { + "eventLogName": "windowsEvent42", + "eventTypes": [ + { + "eventType": "Error" + } + ] + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/datasources/AzTestDSWE7178", + "eTag": "W/\"datetime'2017-10-02T23%3A20%3A16.3906307Z'\"", + "name": "AzTestDSWE7178", + "type": "Microsoft.OperationalInsights/workspaces/datasources" + } + ], + "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest7887/providers/Microsoft.OperationalInsights/workspaces/AzTest218/dataSources?$filter=kind+eq+'WindowsEvent'&api-version=2015-11-01-preview&$skiptoken=AzTestDSWE7191" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesCreate.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesCreate.json index d283ffb0bacd..4eb02a4ca184 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesCreate.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesCreate.json @@ -1,36 +1,36 @@ { - "parameters":{ - "resourceGroupName":"mms-eus", - "workspaceName":"TestLinkWS", - "linkedServiceName":"TestLinkWS/Automation", - "parameters":{ - "properties":{ - "resourceId":"/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/testAccount" - } - }, - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "resourceId":"/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/TestAccount" - }, - "id":"/subscriptions/00000000-0000-0000-0000-00000000000/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/testlinkws/linkedservices/automation", - "name":"TestLinkWS/Automation", - "type":"Microsoft.OperationalInsights/workspaces/linkedServices" - } - }, - "201":{ - "body":{ - "properties":{ - "resourceId":"/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/TestAccount" - }, - "id":"/subscriptions/00000000-0000-0000-0000-00000000000/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/testlinkws/linkedservices/automation", - "name":"TestLinkWS/Automation", - "type":"Microsoft.OperationalInsights/workspaces/linkedServices" - } + "parameters": { + "resourceGroupName": "mms-eus", + "workspaceName": "TestLinkWS", + "linkedServiceName": "TestLinkWS/Automation", + "parameters": { + "properties": { + "resourceId": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/testAccount" } - } -} \ No newline at end of file + }, + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "properties": { + "resourceId": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/TestAccount" + }, + "id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/testlinkws/linkedservices/automation", + "name": "TestLinkWS/Automation", + "type": "Microsoft.OperationalInsights/workspaces/linkedServices" + } + }, + "201": { + "body": { + "properties": { + "resourceId": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/TestAccount" + }, + "id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/testlinkws/linkedservices/automation", + "name": "TestLinkWS/Automation", + "type": "Microsoft.OperationalInsights/workspaces/linkedServices" + } + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesDelete.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesDelete.json index f4370a825464..2e150eba717c 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesDelete.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesGet.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesGet.json index 093fbee6bec3..4c049983aa13 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesGet.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesGet.json @@ -1,21 +1,21 @@ { - "parameters":{ - "resourceGroupName":"mms-eus", - "workspaceName":"TestLinkWS", - "linkedServiceName":"TestLinkWS/Automation", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "resourceId":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/TestAccount" - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/testlinkws/linkedservices/automation", - "name":"TestLinkWS/Automation", - "type":"Microsoft.OperationalInsights/workspaces/linkedServices" - } + "parameters": { + "resourceGroupName": "mms-eus", + "workspaceName": "TestLinkWS", + "linkedServiceName": "TestLinkWS/Automation", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "properties": { + "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/TestAccount" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/testlinkws/linkedservices/automation", + "name": "TestLinkWS/Automation", + "type": "Microsoft.OperationalInsights/workspaces/linkedServices" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesListByWorkspace.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesListByWorkspace.json index af7d524604d1..8b52403a4ec1 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesListByWorkspace.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/LinkedServicesListByWorkspace.json @@ -1,30 +1,30 @@ { - "parameters":{ - "resourceGroupName":"mms-eus", - "workspaceName":"TestLinkWS", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":[ - { - "properties":{ - "resourceId":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/TestAccount" - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/testlinkws/linkedservices/automation", - "name":"TestLinkWS/Automation", - "type":"Microsoft.OperationalInsights/workspaces/linkedServices" - }, - { - "properties":{ - "resourceId":"/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/TestAccount2" - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/testlinkws/linkedservices/automation", - "name":"TestLinkWS/Automation", - "type":"Microsoft.OperationalInsights/workspaces/linkedServices" - } - ] - } - } -} \ No newline at end of file + "parameters": { + "resourceGroupName": "mms-eus", + "workspaceName": "TestLinkWS", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": [ + { + "properties": { + "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/TestAccount" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/testlinkws/linkedservices/automation", + "name": "TestLinkWS/Automation", + "type": "Microsoft.OperationalInsights/workspaces/linkedServices" + }, + { + "properties": { + "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.Automation/automationAccounts/TestAccount2" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/testlinkws/linkedservices/automation", + "name": "TestLinkWS/Automation", + "type": "Microsoft.OperationalInsights/workspaces/linkedServices" + } + ] + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/OperationsList.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/OperationsList.json index dcae3a0690a0..be432f0f5e5b 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/OperationsList.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/OperationsList.json @@ -1,2273 +1,2251 @@ { - "parameters":{ - "api-version":"2015-11-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "name":"Microsoft.OperationalInsights/workspaces/write", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Workspace", - "operation":"Create Workspace", - "description":"Creates a new workspace or links to an existing workspace by providing the customer id from the existing workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Workspace", - "operation":"Get Workspace", - "description":"Gets an existing workspace" - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/delete", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Workspace", - "operation":"Delete Workspace", - "description":"Deletes a workspace. If the workspace was linked to an existing workspace at creation time then the workspace it was linked to is not deleted." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/generateregistrationcertificate/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Registration Certificate", - "operation":"Generates Registration Certificate for Workspace.", - "description":"Generates Registration Certificate for the workspace. This Certificate is used to connect Microsoft System Center Operation Manager to the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/write", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Storage Insight Configuration", - "operation":"Create Storage Configuration", - "description":"Creates a new storage configuration. These configurations are used to pull data from a location in an existing storage account." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Storage Insight Configuration", - "operation":"Get Storage Configuration", - "description":"Gets a storage configuration." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/delete", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Storage Insight Configuration", - "operation":"Delete Storage Configuration", - "description":"Deletes a storage configuration. This will stop Microsoft Operational Insights from reading data from the storage account." - } - }, - { - "name":"Microsoft.OperationalInsights/register/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Register", - "operation":"Register a subscription to a resource provider.", - "description":"Register a subscription to a resource provider." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/sharedKeys/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Shared Keys", - "operation":"List Workspace Shared Keys", - "description":"Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/sharedKeys/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Shared Keys", - "operation":"List Workspace Shared Keys", - "description":"Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/listKeys/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"List Keys", - "operation":"List Workspace Keys", - "description":"Retrieves the list keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/listKeys/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"List Keys", - "operation":"List Workspace Keys", - "description":"Retrieves the list keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/managementGroups/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Management Group", - "operation":"Get Management Groups for Workspace", - "description":"Gets the names and metadata for System Center Operations Manager management groups connected to this workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/usages/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Usage Metric", - "operation":"Get Usage Data for Workspace", - "description":"Gets usage data for a workspace including the amount of data read by the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/search/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Search", - "operation":"Search Workspace Data", - "description":"Executes a search query" - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/schema/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Search Schema", - "operation":"Get Search Schema", - "description":"Gets the search schema for the workspace. Search schema includes the exposed fields and their types." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/datasources/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Data Source", - "operation":"Get datasources under a workspace.", - "description":"Get datasources under a workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/datasources/write", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Data Source", - "operation":"Create/Update datasources under a workspace.", - "description":"Create/Update datasources under a workspace." - } - }, - { - - }, - { - - }, - { - - }, - { - - }, - { - "name":"Microsoft.OperationalInsights/workspaces/notificationSettings/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Notification Settings", - "operation":"Get Notification Settings", - "description":"Get the user's notification settings for the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/notificationSettings/write", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Notification Settings", - "operation":"Put Notification Settings", - "description":"Set the user's notification settings for the workspace." - } - }, - { - - }, - { - - }, - { - - }, - { - "name":"Microsoft.OperationalInsights/workspaces/configurationScopes/delete", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Configuration Scope", - "operation":"Delete Configuration Scope", - "description":"Delete Configuration Scope" - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/linkedServices/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Linked Services", - "operation":"Get linked services under given workspace.", - "description":"Get linked services under given workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/linkedServices/write", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Linked Services", - "operation":"Create/Update linked services under given workspace.", - "description":"Create/Update linked services under given workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/linkedServices/delete", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Linked Services", - "operation":"Delete linked services under given workspace.", - "description":"Delete linked services under given workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/intelligencepacks/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Intelligence Packs", - "operation":"List Intelligence Packs", - "description":"Lists all intelligence packs that are visible for a given worksapce and also lists whether the pack is enabled or disabled for that workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/intelligencepacks/enable/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Intelligence Packs", - "operation":"Enable Intelligence Pack", - "description":"Enables an intelligence pack for a given workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/intelligencepacks/disable/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Intelligence Packs", - "operation":"Disable Intelligence Pack", - "description":"Disables an intelligence pack for a given workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/analytics/query/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"analytics", - "operation":"Search using new engine.", - "description":"Search using new engine." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/analytics/query/schema/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"analytics", - "operation":"Get search schema V2.", - "description":"Get search schema V2." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/api/query/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"analytics", - "operation":"Search using new engine.", - "description":"Search using new engine." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/api/query/schema/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"analytics", - "operation":"Get search schema V2.", - "description":"Get search schema V2." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/purge/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"analytics", - "operation":"Delete specified data from workspace", - "description":"Delete specified data from workspace" - } - }, - { - "name":"Microsoft.OperationalInsights/linkTargets/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Unlinked Account", - "operation":"List Unlinked Accounts", - "description":"Lists existing accounts that are not associated with an Azure subscription. To link this Azure subscription to a workspace, use a customer id returned by this operation in the customer id property of the Create Workspace operation." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/metricDefinitions/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Metric Definitions", - "operation":"Metric Definition operation", - "description":"Get Metric Definitions under workspace" - }, - "properties":{ - "serviceSpecification":{ - "metricSpecifications":[ - { - "name":"Average_% Free Inodes", - "displayName":"Average_% Free Inodes", - "displayDescription":"Average_% Free Inodes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Free Space", - "displayName":"Average_% Free Space", - "displayDescription":"Average_% Free Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Used Inodes", - "displayName":"Average_% Used Inodes", - "displayDescription":"Average_% Used Inodes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Used Space", - "displayName":"Average_% Used Space", - "displayDescription":"Average_% Used Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Read Bytes/sec", - "displayName":"Average_Disk Read Bytes/sec", - "displayDescription":"Average_Disk Read Bytes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Reads/sec", - "displayName":"Average_Disk Reads/sec", - "displayDescription":"Average_Disk Reads/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Transfers/sec", - "displayName":"Average_Disk Transfers/sec", - "displayDescription":"Average_Disk Transfers/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Write Bytes/sec", - "displayName":"Average_Disk Write Bytes/sec", - "displayDescription":"Average_Disk Write Bytes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Writes/sec", - "displayName":"Average_Disk Writes/sec", - "displayDescription":"Average_Disk Writes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Free Megabytes", - "displayName":"Average_Free Megabytes", - "displayDescription":"Average_Free Megabytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Logical Disk Bytes/sec", - "displayName":"Average_Logical Disk Bytes/sec", - "displayDescription":"Average_Logical Disk Bytes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Available Memory", - "displayName":"Average_% Available Memory", - "displayDescription":"Average_% Available Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Available Swap Space", - "displayName":"Average_% Available Swap Space", - "displayDescription":"Average_% Available Swap Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Used Memory", - "displayName":"Average_% Used Memory", - "displayDescription":"Average_% Used Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Used Swap Space", - "displayName":"Average_% Used Swap Space", - "displayDescription":"Average_% Used Swap Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Available MBytes Memory", - "displayName":"Average_Available MBytes Memory", - "displayDescription":"Average_Available MBytes Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Available MBytes Swap", - "displayName":"Average_Available MBytes Swap", - "displayDescription":"Average_Available MBytes Swap", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Page Reads/sec", - "displayName":"Average_Page Reads/sec", - "displayDescription":"Average_Page Reads/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Page Writes/sec", - "displayName":"Average_Page Writes/sec", - "displayDescription":"Average_Page Writes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Pages/sec", - "displayName":"Average_Pages/sec", - "displayDescription":"Average_Pages/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Used MBytes Swap Space", - "displayName":"Average_Used MBytes Swap Space", - "displayDescription":"Average_Used MBytes Swap Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Used Memory MBytes", - "displayName":"Average_Used Memory MBytes", - "displayDescription":"Average_Used Memory MBytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Bytes Transmitted", - "displayName":"Average_Total Bytes Transmitted", - "displayDescription":"Average_Total Bytes Transmitted", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Bytes Received", - "displayName":"Average_Total Bytes Received", - "displayDescription":"Average_Total Bytes Received", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Bytes", - "displayName":"Average_Total Bytes", - "displayDescription":"Average_Total Bytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Packets Transmitted", - "displayName":"Average_Total Packets Transmitted", - "displayDescription":"Average_Total Packets Transmitted", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Packets Received", - "displayName":"Average_Total Packets Received", - "displayDescription":"Average_Total Packets Received", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Rx Errors", - "displayName":"Average_Total Rx Errors", - "displayDescription":"Average_Total Rx Errors", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Tx Errors", - "displayName":"Average_Total Tx Errors", - "displayDescription":"Average_Total Tx Errors", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Collisions", - "displayName":"Average_Total Collisions", - "displayDescription":"Average_Total Collisions", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Avg. Disk sec/Read", - "displayName":"Average_Avg. Disk sec/Read", - "displayDescription":"Average_Avg. Disk sec/Read", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Avg. Disk sec/Transfer", - "displayName":"Average_Avg. Disk sec/Transfer", - "displayDescription":"Average_Avg. Disk sec/Transfer", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Avg. Disk sec/Write", - "displayName":"Average_Avg. Disk sec/Write", - "displayDescription":"Average_Avg. Disk sec/Write", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Physical Disk Bytes/sec", - "displayName":"Average_Physical Disk Bytes/sec", - "displayDescription":"Average_Physical Disk Bytes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Pct Privileged Time", - "displayName":"Average_Pct Privileged Time", - "displayDescription":"Average_Pct Privileged Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Pct User Time", - "displayName":"Average_Pct User Time", - "displayDescription":"Average_Pct User Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Used Memory kBytes", - "displayName":"Average_Used Memory kBytes", - "displayDescription":"Average_Used Memory kBytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Virtual Shared Memory", - "displayName":"Average_Virtual Shared Memory", - "displayDescription":"Average_Virtual Shared Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% DPC Time", - "displayName":"Average_% DPC Time", - "displayDescription":"Average_% DPC Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Idle Time", - "displayName":"Average_% Idle Time", - "displayDescription":"Average_% Idle Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Interrupt Time", - "displayName":"Average_% Interrupt Time", - "displayDescription":"Average_% Interrupt Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% IO Wait Time", - "displayName":"Average_% IO Wait Time", - "displayDescription":"Average_% IO Wait Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Nice Time", - "displayName":"Average_% Nice Time", - "displayDescription":"Average_% Nice Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Privileged Time", - "displayName":"Average_% Privileged Time", - "displayDescription":"Average_% Privileged Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Processor Time", - "displayName":"Average_% Processor Time", - "displayDescription":"Average_% Processor Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% User Time", - "displayName":"Average_% User Time", - "displayDescription":"Average_% User Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Free Physical Memory", - "displayName":"Average_Free Physical Memory", - "displayDescription":"Average_Free Physical Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Free Space in Paging Files", - "displayName":"Average_Free Space in Paging Files", - "displayDescription":"Average_Free Space in Paging Files", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Free Virtual Memory", - "displayName":"Average_Free Virtual Memory", - "displayDescription":"Average_Free Virtual Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Processes", - "displayName":"Average_Processes", - "displayDescription":"Average_Processes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Size Stored In Paging Files", - "displayName":"Average_Size Stored In Paging Files", - "displayDescription":"Average_Size Stored In Paging Files", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - - }, - { - - }, - { - - }, - { - - }, - { - "name":"Average_Current Disk Queue Length", - "displayName":"Average_Current Disk Queue Length", - "displayDescription":"Average_Current Disk Queue Length", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Reads/sec", - "displayName":"Average_Disk Reads/sec", - "displayDescription":"Average_Disk Reads/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Transfers/sec", - "displayName":"Average_Disk Transfers/sec", - "displayDescription":"Average_Disk Transfers/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Writes/sec", - "displayName":"Average_Disk Writes/sec", - "displayDescription":"Average_Disk Writes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Free Megabytes", - "displayName":"Average_Free Megabytes", - "displayDescription":"Average_Free Megabytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Free Space", - "displayName":"Average_% Free Space", - "displayDescription":"Average_% Free Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Available MBytes", - "displayName":"Average_Available MBytes", - "displayDescription":"Average_Available MBytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Committed Bytes In Use", - "displayName":"Average_% Committed Bytes In Use", - "displayDescription":"Average_% Committed Bytes In Use", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Bytes Received/sec", - "displayName":"Average_Bytes Received/sec", - "displayDescription":"Average_Bytes Received/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Bytes Sent/sec", - "displayName":"Average_Bytes Sent/sec", - "displayDescription":"Average_Bytes Sent/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Bytes Total/sec", - "displayName":"Average_Bytes Total/sec", - "displayDescription":"Average_Bytes Total/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Processor Time", - "displayName":"Average_% Processor Time", - "displayDescription":"Average_% Processor Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Processor Queue Length", - "displayName":"Average_Processor Queue Length", - "displayDescription":"Average_Processor Queue Length", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Heartbeat", - "displayName":"Heartbeat", - "displayDescription":"Heartbeat", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"OSType", - "displayName":"OSType" - }, - { - "name":"Version", - "displayName":"Version" - }, - { - "name":"SourceComputerId", - "displayName":"SourceComputerId" - } - ] - }, - { - "name":"Update", - "displayName":"Update", - "displayDescription":"Update", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"Product", - "displayName":"Product" - }, - { - "name":"Classification", - "displayName":"Classification" - }, - { - "name":"UpdateState", - "displayName":"UpdateState" - }, - { - "name":"Optional", - "displayName":"Optional" - }, - { - "name":"Approved", - "displayName":"Approved" - } - ] - } - ] - } + "parameters": { + "api-version": "2015-11-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.OperationalInsights/workspaces/write", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Workspace", + "operation": "Create Workspace", + "description": "Creates a new workspace or links to an existing workspace by providing the customer id from the existing workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Workspace", + "operation": "Get Workspace", + "description": "Gets an existing workspace" + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/delete", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Workspace", + "operation": "Delete Workspace", + "description": "Deletes a workspace. If the workspace was linked to an existing workspace at creation time then the workspace it was linked to is not deleted." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/generateregistrationcertificate/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Registration Certificate", + "operation": "Generates Registration Certificate for Workspace.", + "description": "Generates Registration Certificate for the workspace. This Certificate is used to connect Microsoft System Center Operation Manager to the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/storageinsightconfigs/write", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Storage Insight Configuration", + "operation": "Create Storage Configuration", + "description": "Creates a new storage configuration. These configurations are used to pull data from a location in an existing storage account." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/storageinsightconfigs/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Storage Insight Configuration", + "operation": "Get Storage Configuration", + "description": "Gets a storage configuration." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/storageinsightconfigs/delete", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Storage Insight Configuration", + "operation": "Delete Storage Configuration", + "description": "Deletes a storage configuration. This will stop Microsoft Operational Insights from reading data from the storage account." + } + }, + { + "name": "Microsoft.OperationalInsights/register/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Register", + "operation": "Register a subscription to a resource provider.", + "description": "Register a subscription to a resource provider." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/sharedKeys/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Shared Keys", + "operation": "List Workspace Shared Keys", + "description": "Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/sharedKeys/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Shared Keys", + "operation": "List Workspace Shared Keys", + "description": "Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/listKeys/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "List Keys", + "operation": "List Workspace Keys", + "description": "Retrieves the list keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/listKeys/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "List Keys", + "operation": "List Workspace Keys", + "description": "Retrieves the list keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/managementGroups/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Management Group", + "operation": "Get Management Groups for Workspace", + "description": "Gets the names and metadata for System Center Operations Manager management groups connected to this workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/usages/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Usage Metric", + "operation": "Get Usage Data for Workspace", + "description": "Gets usage data for a workspace including the amount of data read by the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/search/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Search", + "operation": "Search Workspace Data", + "description": "Executes a search query" + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/schema/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Search Schema", + "operation": "Get Search Schema", + "description": "Gets the search schema for the workspace. Search schema includes the exposed fields and their types." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/datasources/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Data Source", + "operation": "Get datasources under a workspace.", + "description": "Get datasources under a workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/datasources/write", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Data Source", + "operation": "Create/Update datasources under a workspace.", + "description": "Create/Update datasources under a workspace." + } + }, + {}, + {}, + {}, + {}, + { + "name": "Microsoft.OperationalInsights/workspaces/notificationSettings/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Notification Settings", + "operation": "Get Notification Settings", + "description": "Get the user's notification settings for the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/notificationSettings/write", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Notification Settings", + "operation": "Put Notification Settings", + "description": "Set the user's notification settings for the workspace." + } + }, + {}, + {}, + {}, + { + "name": "Microsoft.OperationalInsights/workspaces/configurationScopes/delete", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Configuration Scope", + "operation": "Delete Configuration Scope", + "description": "Delete Configuration Scope" + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/linkedServices/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Linked Services", + "operation": "Get linked services under given workspace.", + "description": "Get linked services under given workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/linkedServices/write", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Linked Services", + "operation": "Create/Update linked services under given workspace.", + "description": "Create/Update linked services under given workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/linkedServices/delete", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Linked Services", + "operation": "Delete linked services under given workspace.", + "description": "Delete linked services under given workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/intelligencepacks/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Intelligence Packs", + "operation": "List Intelligence Packs", + "description": "Lists all intelligence packs that are visible for a given worksapce and also lists whether the pack is enabled or disabled for that workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/intelligencepacks/enable/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Intelligence Packs", + "operation": "Enable Intelligence Pack", + "description": "Enables an intelligence pack for a given workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/intelligencepacks/disable/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Intelligence Packs", + "operation": "Disable Intelligence Pack", + "description": "Disables an intelligence pack for a given workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/analytics/query/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "analytics", + "operation": "Search using new engine.", + "description": "Search using new engine." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/analytics/query/schema/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "analytics", + "operation": "Get search schema V2.", + "description": "Get search schema V2." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/api/query/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "analytics", + "operation": "Search using new engine.", + "description": "Search using new engine." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/api/query/schema/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "analytics", + "operation": "Get search schema V2.", + "description": "Get search schema V2." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/purge/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "analytics", + "operation": "Delete specified data from workspace", + "description": "Delete specified data from workspace" + } + }, + { + "name": "Microsoft.OperationalInsights/linkTargets/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Unlinked Account", + "operation": "List Unlinked Accounts", + "description": "Lists existing accounts that are not associated with an Azure subscription. To link this Azure subscription to a workspace, use a customer id returned by this operation in the customer id property of the Create Workspace operation." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/metricDefinitions/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Metric Definitions", + "operation": "Metric Definition operation", + "description": "Get Metric Definitions under workspace" + }, + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "Average_% Free Inodes", + "displayName": "Average_% Free Inodes", + "displayDescription": "Average_% Free Inodes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Free Space", + "displayName": "Average_% Free Space", + "displayDescription": "Average_% Free Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Used Inodes", + "displayName": "Average_% Used Inodes", + "displayDescription": "Average_% Used Inodes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Used Space", + "displayName": "Average_% Used Space", + "displayDescription": "Average_% Used Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Read Bytes/sec", + "displayName": "Average_Disk Read Bytes/sec", + "displayDescription": "Average_Disk Read Bytes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Reads/sec", + "displayName": "Average_Disk Reads/sec", + "displayDescription": "Average_Disk Reads/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Transfers/sec", + "displayName": "Average_Disk Transfers/sec", + "displayDescription": "Average_Disk Transfers/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Write Bytes/sec", + "displayName": "Average_Disk Write Bytes/sec", + "displayDescription": "Average_Disk Write Bytes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Writes/sec", + "displayName": "Average_Disk Writes/sec", + "displayDescription": "Average_Disk Writes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Free Megabytes", + "displayName": "Average_Free Megabytes", + "displayDescription": "Average_Free Megabytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Logical Disk Bytes/sec", + "displayName": "Average_Logical Disk Bytes/sec", + "displayDescription": "Average_Logical Disk Bytes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Available Memory", + "displayName": "Average_% Available Memory", + "displayDescription": "Average_% Available Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Available Swap Space", + "displayName": "Average_% Available Swap Space", + "displayDescription": "Average_% Available Swap Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Used Memory", + "displayName": "Average_% Used Memory", + "displayDescription": "Average_% Used Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Used Swap Space", + "displayName": "Average_% Used Swap Space", + "displayDescription": "Average_% Used Swap Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Available MBytes Memory", + "displayName": "Average_Available MBytes Memory", + "displayDescription": "Average_Available MBytes Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Available MBytes Swap", + "displayName": "Average_Available MBytes Swap", + "displayDescription": "Average_Available MBytes Swap", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Page Reads/sec", + "displayName": "Average_Page Reads/sec", + "displayDescription": "Average_Page Reads/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Page Writes/sec", + "displayName": "Average_Page Writes/sec", + "displayDescription": "Average_Page Writes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Pages/sec", + "displayName": "Average_Pages/sec", + "displayDescription": "Average_Pages/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Used MBytes Swap Space", + "displayName": "Average_Used MBytes Swap Space", + "displayDescription": "Average_Used MBytes Swap Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Used Memory MBytes", + "displayName": "Average_Used Memory MBytes", + "displayDescription": "Average_Used Memory MBytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Bytes Transmitted", + "displayName": "Average_Total Bytes Transmitted", + "displayDescription": "Average_Total Bytes Transmitted", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Bytes Received", + "displayName": "Average_Total Bytes Received", + "displayDescription": "Average_Total Bytes Received", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Bytes", + "displayName": "Average_Total Bytes", + "displayDescription": "Average_Total Bytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Packets Transmitted", + "displayName": "Average_Total Packets Transmitted", + "displayDescription": "Average_Total Packets Transmitted", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Packets Received", + "displayName": "Average_Total Packets Received", + "displayDescription": "Average_Total Packets Received", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Rx Errors", + "displayName": "Average_Total Rx Errors", + "displayDescription": "Average_Total Rx Errors", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Tx Errors", + "displayName": "Average_Total Tx Errors", + "displayDescription": "Average_Total Tx Errors", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Collisions", + "displayName": "Average_Total Collisions", + "displayDescription": "Average_Total Collisions", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Avg. Disk sec/Read", + "displayName": "Average_Avg. Disk sec/Read", + "displayDescription": "Average_Avg. Disk sec/Read", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Avg. Disk sec/Transfer", + "displayName": "Average_Avg. Disk sec/Transfer", + "displayDescription": "Average_Avg. Disk sec/Transfer", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Avg. Disk sec/Write", + "displayName": "Average_Avg. Disk sec/Write", + "displayDescription": "Average_Avg. Disk sec/Write", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Physical Disk Bytes/sec", + "displayName": "Average_Physical Disk Bytes/sec", + "displayDescription": "Average_Physical Disk Bytes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Pct Privileged Time", + "displayName": "Average_Pct Privileged Time", + "displayDescription": "Average_Pct Privileged Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Pct User Time", + "displayName": "Average_Pct User Time", + "displayDescription": "Average_Pct User Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Used Memory kBytes", + "displayName": "Average_Used Memory kBytes", + "displayDescription": "Average_Used Memory kBytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Virtual Shared Memory", + "displayName": "Average_Virtual Shared Memory", + "displayDescription": "Average_Virtual Shared Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% DPC Time", + "displayName": "Average_% DPC Time", + "displayDescription": "Average_% DPC Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Idle Time", + "displayName": "Average_% Idle Time", + "displayDescription": "Average_% Idle Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Interrupt Time", + "displayName": "Average_% Interrupt Time", + "displayDescription": "Average_% Interrupt Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% IO Wait Time", + "displayName": "Average_% IO Wait Time", + "displayDescription": "Average_% IO Wait Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Nice Time", + "displayName": "Average_% Nice Time", + "displayDescription": "Average_% Nice Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Privileged Time", + "displayName": "Average_% Privileged Time", + "displayDescription": "Average_% Privileged Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Processor Time", + "displayName": "Average_% Processor Time", + "displayDescription": "Average_% Processor Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% User Time", + "displayName": "Average_% User Time", + "displayDescription": "Average_% User Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Free Physical Memory", + "displayName": "Average_Free Physical Memory", + "displayDescription": "Average_Free Physical Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Free Space in Paging Files", + "displayName": "Average_Free Space in Paging Files", + "displayDescription": "Average_Free Space in Paging Files", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Free Virtual Memory", + "displayName": "Average_Free Virtual Memory", + "displayDescription": "Average_Free Virtual Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Processes", + "displayName": "Average_Processes", + "displayDescription": "Average_Processes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Size Stored In Paging Files", + "displayName": "Average_Size Stored In Paging Files", + "displayDescription": "Average_Size Stored In Paging Files", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + {}, + {}, + {}, + {}, + { + "name": "Average_Current Disk Queue Length", + "displayName": "Average_Current Disk Queue Length", + "displayDescription": "Average_Current Disk Queue Length", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Reads/sec", + "displayName": "Average_Disk Reads/sec", + "displayDescription": "Average_Disk Reads/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Transfers/sec", + "displayName": "Average_Disk Transfers/sec", + "displayDescription": "Average_Disk Transfers/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Writes/sec", + "displayName": "Average_Disk Writes/sec", + "displayDescription": "Average_Disk Writes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Free Megabytes", + "displayName": "Average_Free Megabytes", + "displayDescription": "Average_Free Megabytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Free Space", + "displayName": "Average_% Free Space", + "displayDescription": "Average_% Free Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Available MBytes", + "displayName": "Average_Available MBytes", + "displayDescription": "Average_Available MBytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Committed Bytes In Use", + "displayName": "Average_% Committed Bytes In Use", + "displayDescription": "Average_% Committed Bytes In Use", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Bytes Received/sec", + "displayName": "Average_Bytes Received/sec", + "displayDescription": "Average_Bytes Received/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Bytes Sent/sec", + "displayName": "Average_Bytes Sent/sec", + "displayDescription": "Average_Bytes Sent/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Bytes Total/sec", + "displayName": "Average_Bytes Total/sec", + "displayDescription": "Average_Bytes Total/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Processor Time", + "displayName": "Average_% Processor Time", + "displayDescription": "Average_% Processor Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Processor Queue Length", + "displayName": "Average_Processor Queue Length", + "displayDescription": "Average_Processor Queue Length", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Heartbeat", + "displayName": "Heartbeat", + "displayDescription": "Heartbeat", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "OSType", + "displayName": "OSType" + }, + { + "name": "Version", + "displayName": "Version" + }, + { + "name": "SourceComputerId", + "displayName": "SourceComputerId" + } + ] + }, + { + "name": "Update", + "displayName": "Update", + "displayDescription": "Update", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "Product", + "displayName": "Product" + }, + { + "name": "Classification", + "displayName": "Classification" + }, + { + "name": "UpdateState", + "displayName": "UpdateState" + }, + { + "name": "Optional", + "displayName": "Optional" + }, + { + "name": "Approved", + "displayName": "Approved" + } + ] } - } - ], - "nextLink": "" - } + ] + } + } + } + ], + "nextLink": "" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesCreate.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesCreate.json index 4b90643dc1d5..06857feb9c30 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesCreate.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesCreate.json @@ -1,64 +1,64 @@ { - "parameters":{ - "resourceGroupName":"oiautorest6685", - "workspaceName":"oiautorest6685", - "parameters":{ - "properties":{ - "sku":{ - "name":"PerNode" - }, - "retentionInDays":30 - }, - "location":"australiasoutheast", - "tags":{ - "tag1":"val1" - } + "parameters": { + "resourceGroupName": "oiautorest6685", + "workspaceName": "oiautorest6685", + "parameters": { + "properties": { + "sku": { + "name": "PerNode" + }, + "retentionInDays": 30 }, - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6685/providers/microsoft.operationalinsights/workspaces/aztest2170", - "name":"AzTest2170", - "type":"Microsoft.OperationalInsights/workspaces", - "location":"australiasoutheast", - "tags":{ - "tag1":"val1" - }, - "properties":{ - "source":"Azure", - "customerId":"bc089d7b-485c-4aff-a71e-c00f362d8d2f", - "portalUrl":"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f00000000-0000-0000-0000-000000000005%2fresourcegroups%2foiautorest6685%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest2170", - "provisioningState":"Creating", - "sku":{ - "name":"PerNode" - }, - "retentionInDays":30 - } - } - }, - "201":{ - "body":{ - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6685/providers/microsoft.operationalinsights/workspaces/aztest2170", - "name":"AzTest2170", - "type":"Microsoft.OperationalInsights/workspaces", - "location":"australiasoutheast", - "tags":{ - "tag1":"val1" - }, - "properties":{ - "source":"Azure", - "customerId":"bc089d7b-485c-4aff-a71e-c00f362d8d2f", - "portalUrl":"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f00000000-0000-0000-0000-000000000005%2fresourcegroups%2foiautorest6685%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest2170", - "provisioningState":"Creating", - "sku":{ - "name":"PerNode" - }, - "retentionInDays":30 - } - } - } + "location": "australiasoutheast", + "tags": { + "tag1": "val1" + } + }, + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6685/providers/microsoft.operationalinsights/workspaces/aztest2170", + "name": "AzTest2170", + "type": "Microsoft.OperationalInsights/workspaces", + "location": "australiasoutheast", + "tags": { + "tag1": "val1" + }, + "properties": { + "source": "Azure", + "customerId": "bc089d7b-485c-4aff-a71e-c00f362d8d2f", + "portalUrl": "https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f00000000-0000-0000-0000-000000000005%2fresourcegroups%2foiautorest6685%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest2170", + "provisioningState": "Creating", + "sku": { + "name": "PerNode" + }, + "retentionInDays": 30 + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6685/providers/microsoft.operationalinsights/workspaces/aztest2170", + "name": "AzTest2170", + "type": "Microsoft.OperationalInsights/workspaces", + "location": "australiasoutheast", + "tags": { + "tag1": "val1" + }, + "properties": { + "source": "Azure", + "customerId": "bc089d7b-485c-4aff-a71e-c00f362d8d2f", + "portalUrl": "https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f00000000-0000-0000-0000-000000000005%2fresourcegroups%2foiautorest6685%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest2170", + "provisioningState": "Creating", + "sku": { + "name": "PerNode" + }, + "retentionInDays": 30 + } + } + } + } } -} \ No newline at end of file diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesDelete.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesDelete.json index a03f1050634f..46142fbccc3d 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesDelete.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesDelete.json @@ -1,12 +1,12 @@ { - "parameters":{ - "resourceGroupName":"oiautorest6685", - "workspaceName":"oiautorest6685", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{}, - "204":{} - } -} \ No newline at end of file + "parameters": { + "resourceGroupName": "oiautorest6685", + "workspaceName": "oiautorest6685", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesDisableIntelligencePack.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesDisableIntelligencePack.json index 0d86ac3f0822..906404ea70a9 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesDisableIntelligencePack.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesDisableIntelligencePack.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesEnableIntelligencePack.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesEnableIntelligencePack.json index 0d86ac3f0822..906404ea70a9 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesEnableIntelligencePack.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesEnableIntelligencePack.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesGet.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesGet.json index 0be7ea53432b..2a4da9797355 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesGet.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesGet.json @@ -1,46 +1,46 @@ { - "parameters":{ - "resourceGroupName":"oiautorest6685", - "workspaceName":"oiautorest6685", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":[ - { - "properties":{ - "source":"Azure", - "customerId":"5b02755b-5bf4-430c-9487-45502a2a7e62", - "portalUrl":"https://eus.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f594038b5-1093-476e-a366-482775671c11%2fresourcegroups%2fcalbot-rg%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2ftestresourcelock", - "provisioningState":"Succeeded", - "sku":{ - "name":"free" - }, - "retentionInDays":7 - }, - "id":"/subscriptions/594038b5-1093-476e-a366-482775671c11/resourcegroups/calbot-rg/providers/microsoft.operationalinsights/workspaces/testresourcelock", - "name":"TestResourceLock", - "type":"Microsoft.OperationalInsights/workspaces", - "location":"eastus" + "parameters": { + "resourceGroupName": "oiautorest6685", + "workspaceName": "oiautorest6685", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": [ + { + "properties": { + "source": "Azure", + "customerId": "5b02755b-5bf4-430c-9487-45502a2a7e62", + "portalUrl": "https://eus.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f594038b5-1093-476e-a366-482775671c11%2fresourcegroups%2fcalbot-rg%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2ftestresourcelock", + "provisioningState": "Succeeded", + "sku": { + "name": "free" }, - { - "properties":{ - "source":"External", - "customerId":"4884a2fd-b08f-4aa6-bf16-5757df1093fe", - "portalUrl":"https://eus.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f594038b5-1093-476e-a366-482775671c11%2fresourcegroups%2fmms-eus%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2fsouthukws", - "provisioningState":"Succeeded", - "sku":{ - "name":"free" - }, - "retentionInDays":7 - }, - "id":"/subscriptions/594038b5-1093-476e-a366-482775671c11/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/southukws", - "name":"SouthUKWS", - "type":"Microsoft.OperationalInsights/workspaces", - "location":"East US" - } - ] - } - } -} \ No newline at end of file + "retentionInDays": 7 + }, + "id": "/subscriptions/594038b5-1093-476e-a366-482775671c11/resourcegroups/calbot-rg/providers/microsoft.operationalinsights/workspaces/testresourcelock", + "name": "TestResourceLock", + "type": "Microsoft.OperationalInsights/workspaces", + "location": "eastus" + }, + { + "properties": { + "source": "External", + "customerId": "4884a2fd-b08f-4aa6-bf16-5757df1093fe", + "portalUrl": "https://eus.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f594038b5-1093-476e-a366-482775671c11%2fresourcegroups%2fmms-eus%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2fsouthukws", + "provisioningState": "Succeeded", + "sku": { + "name": "free" + }, + "retentionInDays": 7 + }, + "id": "/subscriptions/594038b5-1093-476e-a366-482775671c11/resourcegroups/mms-eus/providers/microsoft.operationalinsights/workspaces/southukws", + "name": "SouthUKWS", + "type": "Microsoft.OperationalInsights/workspaces", + "location": "East US" + } + ] + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesGetSharedKeys.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesGetSharedKeys.json index 176c1aeef993..c6b621bb9f96 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesGetSharedKeys.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesGetSharedKeys.json @@ -1,16 +1,16 @@ { - "parameters":{ - "resourceGroupName":"rg1", - "workspaceName":"TestLinkWS", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "primarySharedKey":"BozLY1JnZbxu0jWUQSY8iRPEM8ObmpP8rW+8bUl3+HpDJI+n689SxXgTgU7k1qdxo/WugRLxechxbolAfHM5uA==", - "secondarySharedKey":"7tDt5W0JBrCQKtQA3igfFltLSzJeyr9LmuT+B/ibzd8cdC1neZ1ePOQLBx5NUzc0q2VUIK0cLhWNyFvo/hT8Ww==" - } + "parameters": { + "resourceGroupName": "rg1", + "workspaceName": "TestLinkWS", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "primarySharedKey": "BozLY1JnZbxu0jWUQSY8iRPEM8ObmpP8rW+8bUl3+HpDJI+n689SxXgTgU7k1qdxo/WugRLxechxbolAfHM5uA==", + "secondarySharedKey": "7tDt5W0JBrCQKtQA3igfFltLSzJeyr9LmuT+B/ibzd8cdC1neZ1ePOQLBx5NUzc0q2VUIK0cLhWNyFvo/hT8Ww==" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListByResourceGroup.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListByResourceGroup.json index 646fb88941e3..8e4fc83c4dda 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListByResourceGroup.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListByResourceGroup.json @@ -1,32 +1,32 @@ { - "parameters":{ - "resourceGroupName":"oiautorest6685", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":[ - { - "properties":{ - "source":"Azure", - "customerId":"bc089d7b-485c-4aff-a71e-c00f362d8d2f", - "portalUrl":"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f00000000-0000-0000-0000-000000000005%2fresourcegroups%2foiautorest6685%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest2170", - "provisioningState":"Succeeded", - "sku":{ - "name":"pernode" - }, - "retentionInDays":30 - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6685/providers/microsoft.operationalinsights/workspaces/aztest2170", - "name":"AzTest2170", - "type":"Microsoft.OperationalInsights/workspaces", - "location":"australiasoutheast", - "tags":{ - "tag1":"val1" - } - } - ] - } - } -} \ No newline at end of file + "parameters": { + "resourceGroupName": "oiautorest6685", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": [ + { + "properties": { + "source": "Azure", + "customerId": "bc089d7b-485c-4aff-a71e-c00f362d8d2f", + "portalUrl": "https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f00000000-0000-0000-0000-000000000005%2fresourcegroups%2foiautorest6685%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest2170", + "provisioningState": "Succeeded", + "sku": { + "name": "pernode" + }, + "retentionInDays": 30 + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6685/providers/microsoft.operationalinsights/workspaces/aztest2170", + "name": "AzTest2170", + "type": "Microsoft.OperationalInsights/workspaces", + "location": "australiasoutheast", + "tags": { + "tag1": "val1" + } + } + ] + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListIntelligencePacks.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListIntelligencePacks.json index 443f244f194b..a757125808f4 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListIntelligencePacks.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListIntelligencePacks.json @@ -1,244 +1,244 @@ { - "parameters":{ - "resourceGroupName":"rg1", - "workspaceName":"TestLinkWS", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":[ - { - "name":"CapacityPerformance", - "enabled":false, - "displayName":"Capacity and Performance" - }, - { - "name":"AzureWebAppsAnalytics", - "enabled":false, - "displayName":"Azure Web Apps Analytics (Preview)" - }, - { - "name":"Security", - "enabled":false, - "displayName":"Security and Audit" - }, - { - "name":"Updates", - "enabled":false, - "displayName":"Update Management" - }, - { - "name":"AntiMalware", - "enabled":false, - "displayName":"Antimalware Assessment" - }, - { - "name":"LogManagement", - "enabled":true, - "displayName":"Log Management" - }, - { - "name":"ChangeTracking", - "enabled":true, - "displayName":"Change Tracking" - }, - { - "name":"SQLAssessment", - "enabled":false, - "displayName":"SQL Assessment" - }, - { - "name":"SCOMAssessment", - "enabled":false, - "displayName":"System Center Operations Manager Assessment (Preview)" - }, - { - "name":"ServiceDesk", - "enabled":false, - "displayName":"IT Service Management Connector(Preview)" - }, - { - "name":"ADAssessment", - "enabled":false, - "displayName":"AD Assessment" - }, - { - "name":"AlertManagement", - "enabled":false, - "displayName":"Alert Management" - }, - { - "name":"AzureAutomation", - "enabled":false, - "displayName":"Azure Automation" - }, - { - "name":"WireData", - "enabled":false, - "displayName":"Wire Data" - }, - { - "name":"SiteRecovery", - "enabled":true, - "displayName":"Azure Site Recovery" - }, - { - "name":"Backup", - "enabled":false, - "displayName":"Backup" - }, - { - "name":"SurfaceHub", - "enabled":false, - "displayName":"Surface Hub" - }, - { - "name":"NetworkMonitoring", - "enabled":false, - "displayName":"Network Performance Monitor" - }, - { - "name":"Containers", - "enabled":false, - "displayName":"Container Monitoring Solution" - }, - { - "name":"ServiceMap", - "enabled":false, - "displayName":"Service Map" - }, - { - "name":"AzureNetworking", - "enabled":false, - "displayName":"Azure Networking Analytics (Deprecated)" - }, - { - "name":"ADReplication", - "enabled":false, - "displayName":"AD Replication Status" - }, - { - "name":"Office365", - "enabled":false, - "displayName":"Office 365 (Preview)" - }, - { - "name":"CompatibilityAssessment", - "enabled":false, - "displayName":"Upgrade Readiness" - }, - { - "name":"KeyVault", - "enabled":false, - "displayName":"Key Vault (Deprecated)" - }, - { - "name":"ServiceFabric", - "enabled":false, - "displayName":"Service Fabric" - }, - { - "name":"DnsAnalytics", - "enabled":false, - "displayName":"DNS Analytics (Preview)" - }, - { - "name":"ApplicationInsights", - "enabled":false, - "displayName":"Application Insights (Preview)" - }, - { - "name":"WireData2", - "enabled":false, - "displayName":"Wire Data 2.0" - }, - { - "name":"WaaSUpdateInsights", - "enabled":false, - "displayName":"Update Compliance (Preview)" - }, - { - "name":"AgentHealthAssessment", - "enabled":false, - "displayName":"Agent Health " - }, - { - "name":"AzureActivity", - "enabled":false, - "displayName":"Activity Log Analytics" - }, - { - "name":"HDInsight", - "enabled":false, - "displayName":"HDInsight HBase Monitoring (Preview)" - }, - { - "name":"HDInsightKafka", - "enabled":false, - "displayName":"HDInsight Kafka Monitoring" - }, - { - "name":"HDInsightSpark", - "enabled":false, - "displayName":"HDInsight Spark Monitoring" - }, - { - "name":"VMware", - "enabled":false, - "displayName":"VMware (Preview)" - }, - { - "name":"SecurityCenterFree", - "enabled":false, - "displayName":"Security Center Free – for Azure Resources only" - }, - { - "name":"LogicAppsManagement", - "enabled":false, - "displayName":"Logic Apps Management" - }, - { - "name":"LogicAppB2B", - "enabled":false, - "displayName":"Logic Apps B2B" - }, - { - "name":"AzureSQLAnalytics", - "enabled":false, - "displayName":"Azure SQL Analytics (Preview)" - }, - { - "name":"KeyVaultAnalytics", - "enabled":false, - "displayName":"Key Vault Analytics" - }, - { - "name":"AzureNSGAnalytics", - "enabled":false, - "displayName":"Azure Network Security Group Analytics" - }, - { - "name":"AzureAppGatewayAnalytics", - "enabled":false, - "displayName":"Azure Application Gateway Analytics" - }, - { - "name":"DeviceHealthProd", - "enabled":false, - "displayName":"Device Health (Preview)" - }, - { - "name":"WindowsDefenderATP", - "enabled":false, - "displayName":"Windows Defender ATP" - }, - { - "name":"ProcessInvestigator", - "enabled":false, - "displayName":"ProcessInvestigator" - } - ] - } - } -} \ No newline at end of file + "parameters": { + "resourceGroupName": "rg1", + "workspaceName": "TestLinkWS", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": [ + { + "name": "CapacityPerformance", + "enabled": false, + "displayName": "Capacity and Performance" + }, + { + "name": "AzureWebAppsAnalytics", + "enabled": false, + "displayName": "Azure Web Apps Analytics (Preview)" + }, + { + "name": "Security", + "enabled": false, + "displayName": "Security and Audit" + }, + { + "name": "Updates", + "enabled": false, + "displayName": "Update Management" + }, + { + "name": "AntiMalware", + "enabled": false, + "displayName": "Antimalware Assessment" + }, + { + "name": "LogManagement", + "enabled": true, + "displayName": "Log Management" + }, + { + "name": "ChangeTracking", + "enabled": true, + "displayName": "Change Tracking" + }, + { + "name": "SQLAssessment", + "enabled": false, + "displayName": "SQL Assessment" + }, + { + "name": "SCOMAssessment", + "enabled": false, + "displayName": "System Center Operations Manager Assessment (Preview)" + }, + { + "name": "ServiceDesk", + "enabled": false, + "displayName": "IT Service Management Connector(Preview)" + }, + { + "name": "ADAssessment", + "enabled": false, + "displayName": "AD Assessment" + }, + { + "name": "AlertManagement", + "enabled": false, + "displayName": "Alert Management" + }, + { + "name": "AzureAutomation", + "enabled": false, + "displayName": "Azure Automation" + }, + { + "name": "WireData", + "enabled": false, + "displayName": "Wire Data" + }, + { + "name": "SiteRecovery", + "enabled": true, + "displayName": "Azure Site Recovery" + }, + { + "name": "Backup", + "enabled": false, + "displayName": "Backup" + }, + { + "name": "SurfaceHub", + "enabled": false, + "displayName": "Surface Hub" + }, + { + "name": "NetworkMonitoring", + "enabled": false, + "displayName": "Network Performance Monitor" + }, + { + "name": "Containers", + "enabled": false, + "displayName": "Container Monitoring Solution" + }, + { + "name": "ServiceMap", + "enabled": false, + "displayName": "Service Map" + }, + { + "name": "AzureNetworking", + "enabled": false, + "displayName": "Azure Networking Analytics (Deprecated)" + }, + { + "name": "ADReplication", + "enabled": false, + "displayName": "AD Replication Status" + }, + { + "name": "Office365", + "enabled": false, + "displayName": "Office 365 (Preview)" + }, + { + "name": "CompatibilityAssessment", + "enabled": false, + "displayName": "Upgrade Readiness" + }, + { + "name": "KeyVault", + "enabled": false, + "displayName": "Key Vault (Deprecated)" + }, + { + "name": "ServiceFabric", + "enabled": false, + "displayName": "Service Fabric" + }, + { + "name": "DnsAnalytics", + "enabled": false, + "displayName": "DNS Analytics (Preview)" + }, + { + "name": "ApplicationInsights", + "enabled": false, + "displayName": "Application Insights (Preview)" + }, + { + "name": "WireData2", + "enabled": false, + "displayName": "Wire Data 2.0" + }, + { + "name": "WaaSUpdateInsights", + "enabled": false, + "displayName": "Update Compliance (Preview)" + }, + { + "name": "AgentHealthAssessment", + "enabled": false, + "displayName": "Agent Health " + }, + { + "name": "AzureActivity", + "enabled": false, + "displayName": "Activity Log Analytics" + }, + { + "name": "HDInsight", + "enabled": false, + "displayName": "HDInsight HBase Monitoring (Preview)" + }, + { + "name": "HDInsightKafka", + "enabled": false, + "displayName": "HDInsight Kafka Monitoring" + }, + { + "name": "HDInsightSpark", + "enabled": false, + "displayName": "HDInsight Spark Monitoring" + }, + { + "name": "VMware", + "enabled": false, + "displayName": "VMware (Preview)" + }, + { + "name": "SecurityCenterFree", + "enabled": false, + "displayName": "Security Center Free – for Azure Resources only" + }, + { + "name": "LogicAppsManagement", + "enabled": false, + "displayName": "Logic Apps Management" + }, + { + "name": "LogicAppB2B", + "enabled": false, + "displayName": "Logic Apps B2B" + }, + { + "name": "AzureSQLAnalytics", + "enabled": false, + "displayName": "Azure SQL Analytics (Preview)" + }, + { + "name": "KeyVaultAnalytics", + "enabled": false, + "displayName": "Key Vault Analytics" + }, + { + "name": "AzureNSGAnalytics", + "enabled": false, + "displayName": "Azure Network Security Group Analytics" + }, + { + "name": "AzureAppGatewayAnalytics", + "enabled": false, + "displayName": "Azure Application Gateway Analytics" + }, + { + "name": "DeviceHealthProd", + "enabled": false, + "displayName": "Device Health (Preview)" + }, + { + "name": "WindowsDefenderATP", + "enabled": false, + "displayName": "Windows Defender ATP" + }, + { + "name": "ProcessInvestigator", + "enabled": false, + "displayName": "ProcessInvestigator" + } + ] + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListManagementGroups.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListManagementGroups.json index c92b81f5e938..f61b4937aef0 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListManagementGroups.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListManagementGroups.json @@ -1,16 +1,15 @@ { - "parameters":{ - "resourceGroupName":"rg1", - "workspaceName":"TestLinkWS", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - ] - } + "parameters": { + "resourceGroupName": "rg1", + "workspaceName": "TestLinkWS", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "value": [] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListUsages.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListUsages.json index c243a18375a8..dd5348ca9aa3 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListUsages.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesListUsages.json @@ -1,27 +1,27 @@ { - "parameters":{ - "resourceGroupName":"rg1", - "workspaceName":"TestLinkWS", - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "name":{ - "value":"DataAnalyzed", - "localizedValue":"Data Analyzed" - }, - "unit":"Bytes", - "currentValue":0.0, - "limit":524288000.0, - "nextResetTime":"2017-10-03T00:00:00Z", - "quotaPeriod":"P1D" - } - ] - } + "parameters": { + "resourceGroupName": "rg1", + "workspaceName": "TestLinkWS", + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": { + "value": "DataAnalyzed", + "localizedValue": "Data Analyzed" + }, + "unit": "Bytes", + "currentValue": 0.0, + "limit": 524288000.0, + "nextResetTime": "2017-10-03T00:00:00Z", + "quotaPeriod": "P1D" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesSubscriptionList.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesSubscriptionList.json index 150b5e373d2a..a17011d767b6 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesSubscriptionList.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesSubscriptionList.json @@ -1,31 +1,31 @@ { - "parameters":{ - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":[ - { - "properties":{ - "source":"Azure", - "customerId":"bc089d7b-485c-4aff-a71e-c00f362d8d2f", - "portalUrl":"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f00000000-0000-0000-0000-000000000005%2fresourcegroups%2foiautorest6685%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest2170", - "provisioningState":"Succeeded", - "sku":{ - "name":"pernode" - }, - "retentionInDays":30 - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6685/providers/microsoft.operationalinsights/workspaces/aztest2170", - "name":"AzTest2170", - "type":"Microsoft.OperationalInsights/workspaces", - "location":"australiasoutheast", - "tags":{ - "tag1":"val1" - } - } - ] - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": [ + { + "properties": { + "source": "Azure", + "customerId": "bc089d7b-485c-4aff-a71e-c00f362d8d2f", + "portalUrl": "https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2f00000000-0000-0000-0000-000000000005%2fresourcegroups%2foiautorest6685%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest2170", + "provisioningState": "Succeeded", + "sku": { + "name": "pernode" + }, + "retentionInDays": 30 + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6685/providers/microsoft.operationalinsights/workspaces/aztest2170", + "name": "AzTest2170", + "type": "Microsoft.OperationalInsights/workspaces", + "location": "australiasoutheast", + "tags": { + "tag1": "val1" + } + } + ] + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesUpdate.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesUpdate.json index 3811b71e7e60..39e42f4a358b 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesUpdate.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/WorkspacesUpdate.json @@ -1,30 +1,30 @@ { - "parameters":{ - "resourceGroupName":"oiautorest6685", - "workspaceName":"oiautorest6685", - "parameters":{ - "properties":{ - "customerId":"6c576b6a-75d3-4ff9-bc23-28d524e52f5b" - }, - "location":"australiasoutheast" + "parameters": { + "resourceGroupName": "oiautorest6685", + "workspaceName": "oiautorest6685", + "parameters": { + "properties": { + "customerId": "6c576b6a-75d3-4ff9-bc23-28d524e52f5b" }, - "api-version":"2015-11-01-preview", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "sku":{ - "name":"PerNode" - }, - "retentionInDays":30 - }, - "location":"australiasoutheast", - "tags":{ - "tag1":"val1" - } - } + "location": "australiasoutheast" + }, + "api-version": "2015-11-01-preview", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "properties": { + "sku": { + "name": "PerNode" + }, + "retentionInDays": 30 + }, + "location": "australiasoutheast", + "tags": { + "tag1": "val1" + } } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/OperationalInsights.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/OperationalInsights.json index 49041f0ede1b..121ec71f1741 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/OperationalInsights.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/OperationalInsights.json @@ -40,7 +40,9 @@ "StorageInsights" ], "x-ms-examples": { - "StorageInsightsCreate": { "$ref": "./examples/StorageInsightsCreateOrUpdate.json" } + "StorageInsightsCreate": { + "$ref": "./examples/StorageInsightsCreateOrUpdate.json" + } }, "operationId": "StorageInsights_CreateOrUpdate", "description": "Create or update a storage insight.", @@ -94,7 +96,9 @@ "StorageInsights" ], "x-ms-examples": { - "StorageInsightsGet": { "$ref": "./examples/StorageInsightsGet.json" } + "StorageInsightsGet": { + "$ref": "./examples/StorageInsightsGet.json" + } }, "operationId": "StorageInsights_Get", "description": "Gets a storage insight instance.", @@ -133,7 +137,9 @@ "StorageInsights" ], "x-ms-examples": { - "StorageInsightsDelete": { "$ref": "./examples/StorageInsightsDelete.json" } + "StorageInsightsDelete": { + "$ref": "./examples/StorageInsightsDelete.json" + } }, "operationId": "StorageInsights_Delete", "description": "Deletes a storageInsightsConfigs resource", @@ -174,7 +180,9 @@ "StorageInsights" ], "x-ms-examples": { - "StorageInsightsList": { "$ref": "./examples/StorageInsightsListByWorkspace.json" } + "StorageInsightsList": { + "$ref": "./examples/StorageInsightsListByWorkspace.json" + } }, "operationId": "StorageInsights_ListByWorkspace", "description": "Lists the storage insight instances within a workspace", @@ -211,7 +219,9 @@ "Workspaces" ], "x-ms-examples": { - "LinkTargetsList": { "$ref": "./examples/WorkspacesListLinkTargets.json" } + "LinkTargetsList": { + "$ref": "./examples/WorkspacesListLinkTargets.json" + } }, "operationId": "Workspaces_ListLinkTargets", "description": "Get a list of workspaces which the current user has administrator privileges and are not associated with an Azure Subscription. The subscriptionId parameter in the Url is ignored.", @@ -242,7 +252,9 @@ "SavedSearches" ], "x-ms-examples": { - "SavedSearchesDelete": { "$ref": "./examples/WorkspacesDeleteSavedSearches.json" } + "SavedSearchesDelete": { + "$ref": "./examples/WorkspacesDeleteSavedSearches.json" + } }, "operationId": "SavedSearches_Delete", "description": "Deletes the specified saved search in a given workspace.", @@ -250,7 +262,7 @@ { "$ref": "#/parameters/SubscriptionIdParameter" }, - { + { "$ref": "#/parameters/ResourceGroupNameParameter" }, { @@ -278,7 +290,9 @@ "SavedSearches" ], "x-ms-examples": { - "SavedSearchCreateOrUpdate": { "$ref": "./examples/WorkspacesSavedSearchesCreateOrUpdate.json" } + "SavedSearchCreateOrUpdate": { + "$ref": "./examples/WorkspacesSavedSearchesCreateOrUpdate.json" + } }, "operationId": "SavedSearches_CreateOrUpdate", "description": "Creates or updates a saved search for a given workspace.", @@ -286,7 +300,7 @@ { "$ref": "#/parameters/SubscriptionIdParameter" }, - { + { "$ref": "#/parameters/ResourceGroupNameParameter" }, { @@ -301,7 +315,8 @@ }, { "$ref": "#/parameters/ApiVersionParameter" - }, { + }, + { "name": "parameters", "in": "body", "required": true, @@ -325,7 +340,9 @@ "SavedSearches" ], "x-ms-examples": { - "SavedSearchesGet": { "$ref": "./examples/WorkspacesSavedSearchesGet.json" } + "SavedSearchesGet": { + "$ref": "./examples/WorkspacesSavedSearchesGet.json" + } }, "operationId": "SavedSearches_Get", "description": "Gets the specified saved search for a given workspace.", @@ -333,7 +350,7 @@ { "$ref": "#/parameters/SubscriptionIdParameter" }, - { + { "$ref": "#/parameters/ResourceGroupNameParameter" }, { @@ -366,7 +383,9 @@ "SavedSearches" ], "x-ms-examples": { - "SavedSearchesList": { "$ref": "./examples/SavedSearchesListByWorkspace.json" } + "SavedSearchesList": { + "$ref": "./examples/SavedSearchesListByWorkspace.json" + } }, "operationId": "SavedSearches_ListByWorkspace", "description": "Gets the saved searches for a given Log Analytics Workspace", @@ -400,7 +419,9 @@ "SavedSearches" ], "x-ms-examples": { - "SaveSearchesListResults": { "$ref": "./examples/SavedSearchesGetResults.json" } + "SaveSearchesListResults": { + "$ref": "./examples/SavedSearchesGetResults.json" + } }, "operationId": "SavedSearches_GetResults", "description": "Gets the results from a saved search for a given workspace.", @@ -441,7 +462,9 @@ "Workspaces" ], "x-ms-examples": { - "WorkspacesGetSchema": { "$ref": "./examples/SavedSearchesGetSchema.json" } + "WorkspacesGetSchema": { + "$ref": "./examples/SavedSearchesGetSchema.json" + } }, "operationId": "Workspaces_GetSchema", "description": "Gets the schema for a given workspace.", @@ -475,7 +498,9 @@ "Workspaces" ], "x-ms-examples": { - "WorkspacesGetSearchResults": { "$ref": "./examples/WorkspacesGetSearchResults.json" } + "WorkspacesGetSearchResults": { + "$ref": "./examples/WorkspacesGetSearchResults.json" + } }, "operationId": "Workspaces_GetSearchResults", "description": "Submit a search for a given workspace. The response will contain an id to track the search. User can use the id to poll the search status and get the full search result later if the search takes long time to finish. ", @@ -522,7 +547,9 @@ "Workspaces" ], "x-ms-examples": { - "WorkspacesUpdateSearchResults": { "$ref": "./examples/WorkspacesUpdateSearchResults.json" } + "WorkspacesUpdateSearchResults": { + "$ref": "./examples/WorkspacesUpdateSearchResults.json" + } }, "operationId": "Workspaces_UpdateSearchResults", "description": "Gets updated search results for a given search query.", @@ -647,8 +674,10 @@ "Workspaces" ], "x-ms-examples": { - "SharedKeysList": { "$ref": "./examples/WorkspacesListKeys.json" } - }, + "SharedKeysList": { + "$ref": "./examples/WorkspacesListKeys.json" + } + }, "operationId": "Workspaces_ListKeys", "description": "Gets the shared keys for a Log Analytics Workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace.", "parameters": [ @@ -681,8 +710,10 @@ "Workspaces" ], "x-ms-examples": { - "RegenerateSharedKeys": { "$ref": "./examples/WorkspacesRegenerateSharedKeys.json" } - }, + "RegenerateSharedKeys": { + "$ref": "./examples/WorkspacesRegenerateSharedKeys.json" + } + }, "operationId": "Workspaces_RegenerateSharedKeys", "description": "Regenerates the shared keys for a Log Analytics Workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace.", "parameters": [ @@ -715,8 +746,10 @@ "Workspaces" ], "x-ms-examples": { - "DeleteGateways": { "$ref": "./examples/WorkspacesGatewaysDelete.json" } - }, + "DeleteGateways": { + "$ref": "./examples/WorkspacesGatewaysDelete.json" + } + }, "operationId": "Workspaces_DeleteGateways", "description": "Delete a Log Analytics gateway.", "parameters": [ @@ -749,7 +782,9 @@ "Operations" ], "x-ms-examples": { - "OperationsList": { "$ref": "./examples/OperationsList.json" } + "OperationsList": { + "$ref": "./examples/OperationsList.json" + } }, "operationId": "Operations_List", "description": "Lists all of the available OperationalInsights Rest API operations.", @@ -773,39 +808,39 @@ "OperationListResult": { "description": "Result of the request to list OperationalInsights operations.", "properties": { - "value": { + "value": { "type": "array", "items": { - "$ref": "#/definitions/Operation" + "$ref": "#/definitions/Operation" }, "description": "List of operations supported by the OperationalInsights resource provider." - } + } } }, "Operation": { "description": "Supported operation of OperationalInsights resource provider.", "properties": { - "name": { - "description": "Operation name: {provider}/{resource}/{operation}", + "name": { + "description": "Operation name: {provider}/{resource}/{operation}", + "type": "string" + }, + "display": { + "description": "Display metadata associated with the operation.", + "properties": { + "provider": { + "description": "Service provider: OperationalInsights.", "type": "string" - }, - "display": { - "description": "Display metadata associated with the operation.", - "properties": { - "provider": { - "description": "Service provider: OperationalInsights.", - "type": "string" - }, - "resource": { - "description": "Resource on which the operation is performed etc.", - "type": "string" - }, - "operation": { - "description": "Type of operation: get, read, delete, etc.", - "type": "string" - } - } + }, + "resource": { + "description": "Resource on which the operation is performed etc.", + "type": "string" + }, + "operation": { + "description": "Type of operation: get, read, delete, etc.", + "type": "string" + } } + } } }, "LinkTarget": { @@ -876,7 +911,7 @@ "description": "The tags attached to the saved search." } }, - "required":[ + "required": [ "category", "displayName", "query" @@ -1244,7 +1279,7 @@ "modelAsString": true } }, - "description":{ + "description": { "type": "string", "description": "Description of the state of the storage insight." } @@ -1486,15 +1521,15 @@ "description": "The client API version." }, "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "x-ms-parameter-location": "method", - "description": "The Resource Group name.", - "pattern": "^[-\\w\\._\\(\\)]+$", - "minLength": 1, - "maxLength": 90 + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method", + "description": "The Resource Group name.", + "pattern": "^[-\\w\\._\\(\\)]+$", + "minLength": 1, + "maxLength": 90 }, "WorkspaceNameParameter": { "name": "workspaceName", @@ -1531,4 +1566,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/OperationsList.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/OperationsList.json index 1a43aa663fc1..435e5877cbc3 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/OperationsList.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/OperationsList.json @@ -1,2270 +1,2248 @@ { - "parameters":{ - "api-version":"2015-03-02" - }, - "responses":{ - "200":{ - "body":[ - { - "name":"Microsoft.OperationalInsights/workspaces/write", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Workspace", - "operation":"Create Workspace", - "description":"Creates a new workspace or links to an existing workspace by providing the customer id from the existing workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Workspace", - "operation":"Get Workspace", - "description":"Gets an existing workspace" - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/delete", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Workspace", - "operation":"Delete Workspace", - "description":"Deletes a workspace. If the workspace was linked to an existing workspace at creation time then the workspace it was linked to is not deleted." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/generateregistrationcertificate/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Registration Certificate", - "operation":"Generates Registration Certificate for Workspace.", - "description":"Generates Registration Certificate for the workspace. This Certificate is used to connect Microsoft System Center Operation Manager to the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/write", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Storage Insight Configuration", - "operation":"Create Storage Configuration", - "description":"Creates a new storage configuration. These configurations are used to pull data from a location in an existing storage account." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Storage Insight Configuration", - "operation":"Get Storage Configuration", - "description":"Gets a storage configuration." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/delete", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Storage Insight Configuration", - "operation":"Delete Storage Configuration", - "description":"Deletes a storage configuration. This will stop Microsoft Operational Insights from reading data from the storage account." - } - }, - { - "name":"Microsoft.OperationalInsights/register/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Register", - "operation":"Register a subscription to a resource provider.", - "description":"Register a subscription to a resource provider." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/sharedKeys/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Shared Keys", - "operation":"List Workspace Shared Keys", - "description":"Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/sharedKeys/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Shared Keys", - "operation":"List Workspace Shared Keys", - "description":"Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/listKeys/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"List Keys", - "operation":"List Workspace Keys", - "description":"Retrieves the list keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/listKeys/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"List Keys", - "operation":"List Workspace Keys", - "description":"Retrieves the list keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/managementGroups/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Management Group", - "operation":"Get Management Groups for Workspace", - "description":"Gets the names and metadata for System Center Operations Manager management groups connected to this workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/usages/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Usage Metric", - "operation":"Get Usage Data for Workspace", - "description":"Gets usage data for a workspace including the amount of data read by the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/search/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Search", - "operation":"Search Workspace Data", - "description":"Executes a search query" - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/schema/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Search Schema", - "operation":"Get Search Schema", - "description":"Gets the search schema for the workspace. Search schema includes the exposed fields and their types." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/datasources/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Data Source", - "operation":"Get datasources under a workspace.", - "description":"Get datasources under a workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/datasources/write", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Data Source", - "operation":"Create/Update datasources under a workspace.", - "description":"Create/Update datasources under a workspace." - } - }, - { - - }, - { - - }, - { - - }, - { - - }, - { - "name":"Microsoft.OperationalInsights/workspaces/notificationSettings/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Notification Settings", - "operation":"Get Notification Settings", - "description":"Get the user's notification settings for the workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/notificationSettings/write", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Notification Settings", - "operation":"Put Notification Settings", - "description":"Set the user's notification settings for the workspace." - } - }, - { - - }, - { - - }, - { - - }, - { - "name":"Microsoft.OperationalInsights/workspaces/configurationScopes/delete", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Configuration Scope", - "operation":"Delete Configuration Scope", - "description":"Delete Configuration Scope" - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/linkedServices/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Linked Services", - "operation":"Get linked services under given workspace.", - "description":"Get linked services under given workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/linkedServices/write", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Linked Services", - "operation":"Create/Update linked services under given workspace.", - "description":"Create/Update linked services under given workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/linkedServices/delete", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Linked Services", - "operation":"Delete linked services under given workspace.", - "description":"Delete linked services under given workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/intelligencepacks/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Intelligence Packs", - "operation":"List Intelligence Packs", - "description":"Lists all intelligence packs that are visible for a given worksapce and also lists whether the pack is enabled or disabled for that workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/intelligencepacks/enable/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Intelligence Packs", - "operation":"Enable Intelligence Pack", - "description":"Enables an intelligence pack for a given workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/intelligencepacks/disable/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Intelligence Packs", - "operation":"Disable Intelligence Pack", - "description":"Disables an intelligence pack for a given workspace." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/analytics/query/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"analytics", - "operation":"Search using new engine.", - "description":"Search using new engine." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/analytics/query/schema/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"analytics", - "operation":"Get search schema V2.", - "description":"Get search schema V2." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/api/query/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"analytics", - "operation":"Search using new engine.", - "description":"Search using new engine." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/api/query/schema/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"analytics", - "operation":"Get search schema V2.", - "description":"Get search schema V2." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/purge/action", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"analytics", - "operation":"Delete specified data from workspace", - "description":"Delete specified data from workspace" - } - }, - { - "name":"Microsoft.OperationalInsights/linkTargets/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Unlinked Account", - "operation":"List Unlinked Accounts", - "description":"Lists existing accounts that are not associated with an Azure subscription. To link this Azure subscription to a workspace, use a customer id returned by this operation in the customer id property of the Create Workspace operation." - } - }, - { - "name":"Microsoft.OperationalInsights/workspaces/metricDefinitions/read", - "display":{ - "provider":"Microsoft Operational Insights", - "resource":"Metric Definitions", - "operation":"Metric Definition operation", - "description":"Get Metric Definitions under workspace" - }, - "properties":{ - "serviceSpecification":{ - "metricSpecifications":[ - { - "name":"Average_% Free Inodes", - "displayName":"Average_% Free Inodes", - "displayDescription":"Average_% Free Inodes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Free Space", - "displayName":"Average_% Free Space", - "displayDescription":"Average_% Free Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Used Inodes", - "displayName":"Average_% Used Inodes", - "displayDescription":"Average_% Used Inodes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Used Space", - "displayName":"Average_% Used Space", - "displayDescription":"Average_% Used Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Read Bytes/sec", - "displayName":"Average_Disk Read Bytes/sec", - "displayDescription":"Average_Disk Read Bytes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Reads/sec", - "displayName":"Average_Disk Reads/sec", - "displayDescription":"Average_Disk Reads/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Transfers/sec", - "displayName":"Average_Disk Transfers/sec", - "displayDescription":"Average_Disk Transfers/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Write Bytes/sec", - "displayName":"Average_Disk Write Bytes/sec", - "displayDescription":"Average_Disk Write Bytes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Writes/sec", - "displayName":"Average_Disk Writes/sec", - "displayDescription":"Average_Disk Writes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Free Megabytes", - "displayName":"Average_Free Megabytes", - "displayDescription":"Average_Free Megabytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Logical Disk Bytes/sec", - "displayName":"Average_Logical Disk Bytes/sec", - "displayDescription":"Average_Logical Disk Bytes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Available Memory", - "displayName":"Average_% Available Memory", - "displayDescription":"Average_% Available Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Available Swap Space", - "displayName":"Average_% Available Swap Space", - "displayDescription":"Average_% Available Swap Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Used Memory", - "displayName":"Average_% Used Memory", - "displayDescription":"Average_% Used Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Used Swap Space", - "displayName":"Average_% Used Swap Space", - "displayDescription":"Average_% Used Swap Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Available MBytes Memory", - "displayName":"Average_Available MBytes Memory", - "displayDescription":"Average_Available MBytes Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Available MBytes Swap", - "displayName":"Average_Available MBytes Swap", - "displayDescription":"Average_Available MBytes Swap", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Page Reads/sec", - "displayName":"Average_Page Reads/sec", - "displayDescription":"Average_Page Reads/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Page Writes/sec", - "displayName":"Average_Page Writes/sec", - "displayDescription":"Average_Page Writes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Pages/sec", - "displayName":"Average_Pages/sec", - "displayDescription":"Average_Pages/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Used MBytes Swap Space", - "displayName":"Average_Used MBytes Swap Space", - "displayDescription":"Average_Used MBytes Swap Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Used Memory MBytes", - "displayName":"Average_Used Memory MBytes", - "displayDescription":"Average_Used Memory MBytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Bytes Transmitted", - "displayName":"Average_Total Bytes Transmitted", - "displayDescription":"Average_Total Bytes Transmitted", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Bytes Received", - "displayName":"Average_Total Bytes Received", - "displayDescription":"Average_Total Bytes Received", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Bytes", - "displayName":"Average_Total Bytes", - "displayDescription":"Average_Total Bytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Packets Transmitted", - "displayName":"Average_Total Packets Transmitted", - "displayDescription":"Average_Total Packets Transmitted", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Packets Received", - "displayName":"Average_Total Packets Received", - "displayDescription":"Average_Total Packets Received", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Rx Errors", - "displayName":"Average_Total Rx Errors", - "displayDescription":"Average_Total Rx Errors", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Tx Errors", - "displayName":"Average_Total Tx Errors", - "displayDescription":"Average_Total Tx Errors", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Total Collisions", - "displayName":"Average_Total Collisions", - "displayDescription":"Average_Total Collisions", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Avg. Disk sec/Read", - "displayName":"Average_Avg. Disk sec/Read", - "displayDescription":"Average_Avg. Disk sec/Read", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Avg. Disk sec/Transfer", - "displayName":"Average_Avg. Disk sec/Transfer", - "displayDescription":"Average_Avg. Disk sec/Transfer", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Avg. Disk sec/Write", - "displayName":"Average_Avg. Disk sec/Write", - "displayDescription":"Average_Avg. Disk sec/Write", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Physical Disk Bytes/sec", - "displayName":"Average_Physical Disk Bytes/sec", - "displayDescription":"Average_Physical Disk Bytes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Pct Privileged Time", - "displayName":"Average_Pct Privileged Time", - "displayDescription":"Average_Pct Privileged Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Pct User Time", - "displayName":"Average_Pct User Time", - "displayDescription":"Average_Pct User Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Used Memory kBytes", - "displayName":"Average_Used Memory kBytes", - "displayDescription":"Average_Used Memory kBytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Virtual Shared Memory", - "displayName":"Average_Virtual Shared Memory", - "displayDescription":"Average_Virtual Shared Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% DPC Time", - "displayName":"Average_% DPC Time", - "displayDescription":"Average_% DPC Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Idle Time", - "displayName":"Average_% Idle Time", - "displayDescription":"Average_% Idle Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Interrupt Time", - "displayName":"Average_% Interrupt Time", - "displayDescription":"Average_% Interrupt Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% IO Wait Time", - "displayName":"Average_% IO Wait Time", - "displayDescription":"Average_% IO Wait Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Nice Time", - "displayName":"Average_% Nice Time", - "displayDescription":"Average_% Nice Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Privileged Time", - "displayName":"Average_% Privileged Time", - "displayDescription":"Average_% Privileged Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Processor Time", - "displayName":"Average_% Processor Time", - "displayDescription":"Average_% Processor Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% User Time", - "displayName":"Average_% User Time", - "displayDescription":"Average_% User Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Free Physical Memory", - "displayName":"Average_Free Physical Memory", - "displayDescription":"Average_Free Physical Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Free Space in Paging Files", - "displayName":"Average_Free Space in Paging Files", - "displayDescription":"Average_Free Space in Paging Files", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Free Virtual Memory", - "displayName":"Average_Free Virtual Memory", - "displayDescription":"Average_Free Virtual Memory", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Processes", - "displayName":"Average_Processes", - "displayDescription":"Average_Processes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Size Stored In Paging Files", - "displayName":"Average_Size Stored In Paging Files", - "displayDescription":"Average_Size Stored In Paging Files", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - - }, - { - - }, - { - - }, - { - - }, - { - "name":"Average_Current Disk Queue Length", - "displayName":"Average_Current Disk Queue Length", - "displayDescription":"Average_Current Disk Queue Length", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Reads/sec", - "displayName":"Average_Disk Reads/sec", - "displayDescription":"Average_Disk Reads/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Transfers/sec", - "displayName":"Average_Disk Transfers/sec", - "displayDescription":"Average_Disk Transfers/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Disk Writes/sec", - "displayName":"Average_Disk Writes/sec", - "displayDescription":"Average_Disk Writes/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Free Megabytes", - "displayName":"Average_Free Megabytes", - "displayDescription":"Average_Free Megabytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Free Space", - "displayName":"Average_% Free Space", - "displayDescription":"Average_% Free Space", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Available MBytes", - "displayName":"Average_Available MBytes", - "displayDescription":"Average_Available MBytes", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Committed Bytes In Use", - "displayName":"Average_% Committed Bytes In Use", - "displayDescription":"Average_% Committed Bytes In Use", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Bytes Received/sec", - "displayName":"Average_Bytes Received/sec", - "displayDescription":"Average_Bytes Received/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Bytes Sent/sec", - "displayName":"Average_Bytes Sent/sec", - "displayDescription":"Average_Bytes Sent/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Bytes Total/sec", - "displayName":"Average_Bytes Total/sec", - "displayDescription":"Average_Bytes Total/sec", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_% Processor Time", - "displayName":"Average_% Processor Time", - "displayDescription":"Average_% Processor Time", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Average_Processor Queue Length", - "displayName":"Average_Processor Queue Length", - "displayDescription":"Average_Processor Queue Length", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"ObjectName", - "displayName":"ObjectName" - }, - { - "name":"InstanceName", - "displayName":"InstanceName" - }, - { - "name":"CounterPath", - "displayName":"CounterPath" - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem" - } - ] - }, - { - "name":"Heartbeat", - "displayName":"Heartbeat", - "displayDescription":"Heartbeat", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"OSType", - "displayName":"OSType" - }, - { - "name":"Version", - "displayName":"Version" - }, - { - "name":"SourceComputerId", - "displayName":"SourceComputerId" - } - ] - }, - { - "name":"Update", - "displayName":"Update", - "displayDescription":"Update", - "unit":"Count", - "aggregationType":"Average", - "dimensions":[ - { - "name":"Computer", - "displayName":"Computer" - }, - { - "name":"Product", - "displayName":"Product" - }, - { - "name":"Classification", - "displayName":"Classification" - }, - { - "name":"UpdateState", - "displayName":"UpdateState" - }, - { - "name":"Optional", - "displayName":"Optional" - }, - { - "name":"Approved", - "displayName":"Approved" - } - ] - } - ] - } - } - } - ] - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2015-03-02" + }, + "responses": { + "200": { + "body": [ + { + "name": "Microsoft.OperationalInsights/workspaces/write", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Workspace", + "operation": "Create Workspace", + "description": "Creates a new workspace or links to an existing workspace by providing the customer id from the existing workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Workspace", + "operation": "Get Workspace", + "description": "Gets an existing workspace" + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/delete", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Workspace", + "operation": "Delete Workspace", + "description": "Deletes a workspace. If the workspace was linked to an existing workspace at creation time then the workspace it was linked to is not deleted." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/generateregistrationcertificate/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Registration Certificate", + "operation": "Generates Registration Certificate for Workspace.", + "description": "Generates Registration Certificate for the workspace. This Certificate is used to connect Microsoft System Center Operation Manager to the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/storageinsightconfigs/write", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Storage Insight Configuration", + "operation": "Create Storage Configuration", + "description": "Creates a new storage configuration. These configurations are used to pull data from a location in an existing storage account." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/storageinsightconfigs/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Storage Insight Configuration", + "operation": "Get Storage Configuration", + "description": "Gets a storage configuration." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/storageinsightconfigs/delete", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Storage Insight Configuration", + "operation": "Delete Storage Configuration", + "description": "Deletes a storage configuration. This will stop Microsoft Operational Insights from reading data from the storage account." + } + }, + { + "name": "Microsoft.OperationalInsights/register/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Register", + "operation": "Register a subscription to a resource provider.", + "description": "Register a subscription to a resource provider." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/sharedKeys/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Shared Keys", + "operation": "List Workspace Shared Keys", + "description": "Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/sharedKeys/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Shared Keys", + "operation": "List Workspace Shared Keys", + "description": "Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/listKeys/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "List Keys", + "operation": "List Workspace Keys", + "description": "Retrieves the list keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/listKeys/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "List Keys", + "operation": "List Workspace Keys", + "description": "Retrieves the list keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/managementGroups/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Management Group", + "operation": "Get Management Groups for Workspace", + "description": "Gets the names and metadata for System Center Operations Manager management groups connected to this workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/usages/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Usage Metric", + "operation": "Get Usage Data for Workspace", + "description": "Gets usage data for a workspace including the amount of data read by the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/search/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Search", + "operation": "Search Workspace Data", + "description": "Executes a search query" + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/schema/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Search Schema", + "operation": "Get Search Schema", + "description": "Gets the search schema for the workspace. Search schema includes the exposed fields and their types." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/datasources/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Data Source", + "operation": "Get datasources under a workspace.", + "description": "Get datasources under a workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/datasources/write", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Data Source", + "operation": "Create/Update datasources under a workspace.", + "description": "Create/Update datasources under a workspace." + } + }, + {}, + {}, + {}, + {}, + { + "name": "Microsoft.OperationalInsights/workspaces/notificationSettings/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Notification Settings", + "operation": "Get Notification Settings", + "description": "Get the user's notification settings for the workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/notificationSettings/write", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Notification Settings", + "operation": "Put Notification Settings", + "description": "Set the user's notification settings for the workspace." + } + }, + {}, + {}, + {}, + { + "name": "Microsoft.OperationalInsights/workspaces/configurationScopes/delete", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Configuration Scope", + "operation": "Delete Configuration Scope", + "description": "Delete Configuration Scope" + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/linkedServices/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Linked Services", + "operation": "Get linked services under given workspace.", + "description": "Get linked services under given workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/linkedServices/write", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Linked Services", + "operation": "Create/Update linked services under given workspace.", + "description": "Create/Update linked services under given workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/linkedServices/delete", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Linked Services", + "operation": "Delete linked services under given workspace.", + "description": "Delete linked services under given workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/intelligencepacks/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Intelligence Packs", + "operation": "List Intelligence Packs", + "description": "Lists all intelligence packs that are visible for a given worksapce and also lists whether the pack is enabled or disabled for that workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/intelligencepacks/enable/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Intelligence Packs", + "operation": "Enable Intelligence Pack", + "description": "Enables an intelligence pack for a given workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/intelligencepacks/disable/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Intelligence Packs", + "operation": "Disable Intelligence Pack", + "description": "Disables an intelligence pack for a given workspace." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/analytics/query/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "analytics", + "operation": "Search using new engine.", + "description": "Search using new engine." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/analytics/query/schema/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "analytics", + "operation": "Get search schema V2.", + "description": "Get search schema V2." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/api/query/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "analytics", + "operation": "Search using new engine.", + "description": "Search using new engine." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/api/query/schema/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "analytics", + "operation": "Get search schema V2.", + "description": "Get search schema V2." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/purge/action", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "analytics", + "operation": "Delete specified data from workspace", + "description": "Delete specified data from workspace" + } + }, + { + "name": "Microsoft.OperationalInsights/linkTargets/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Unlinked Account", + "operation": "List Unlinked Accounts", + "description": "Lists existing accounts that are not associated with an Azure subscription. To link this Azure subscription to a workspace, use a customer id returned by this operation in the customer id property of the Create Workspace operation." + } + }, + { + "name": "Microsoft.OperationalInsights/workspaces/metricDefinitions/read", + "display": { + "provider": "Microsoft Operational Insights", + "resource": "Metric Definitions", + "operation": "Metric Definition operation", + "description": "Get Metric Definitions under workspace" + }, + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "Average_% Free Inodes", + "displayName": "Average_% Free Inodes", + "displayDescription": "Average_% Free Inodes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Free Space", + "displayName": "Average_% Free Space", + "displayDescription": "Average_% Free Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Used Inodes", + "displayName": "Average_% Used Inodes", + "displayDescription": "Average_% Used Inodes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Used Space", + "displayName": "Average_% Used Space", + "displayDescription": "Average_% Used Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Read Bytes/sec", + "displayName": "Average_Disk Read Bytes/sec", + "displayDescription": "Average_Disk Read Bytes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Reads/sec", + "displayName": "Average_Disk Reads/sec", + "displayDescription": "Average_Disk Reads/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Transfers/sec", + "displayName": "Average_Disk Transfers/sec", + "displayDescription": "Average_Disk Transfers/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Write Bytes/sec", + "displayName": "Average_Disk Write Bytes/sec", + "displayDescription": "Average_Disk Write Bytes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Writes/sec", + "displayName": "Average_Disk Writes/sec", + "displayDescription": "Average_Disk Writes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Free Megabytes", + "displayName": "Average_Free Megabytes", + "displayDescription": "Average_Free Megabytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Logical Disk Bytes/sec", + "displayName": "Average_Logical Disk Bytes/sec", + "displayDescription": "Average_Logical Disk Bytes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Available Memory", + "displayName": "Average_% Available Memory", + "displayDescription": "Average_% Available Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Available Swap Space", + "displayName": "Average_% Available Swap Space", + "displayDescription": "Average_% Available Swap Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Used Memory", + "displayName": "Average_% Used Memory", + "displayDescription": "Average_% Used Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Used Swap Space", + "displayName": "Average_% Used Swap Space", + "displayDescription": "Average_% Used Swap Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Available MBytes Memory", + "displayName": "Average_Available MBytes Memory", + "displayDescription": "Average_Available MBytes Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Available MBytes Swap", + "displayName": "Average_Available MBytes Swap", + "displayDescription": "Average_Available MBytes Swap", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Page Reads/sec", + "displayName": "Average_Page Reads/sec", + "displayDescription": "Average_Page Reads/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Page Writes/sec", + "displayName": "Average_Page Writes/sec", + "displayDescription": "Average_Page Writes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Pages/sec", + "displayName": "Average_Pages/sec", + "displayDescription": "Average_Pages/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Used MBytes Swap Space", + "displayName": "Average_Used MBytes Swap Space", + "displayDescription": "Average_Used MBytes Swap Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Used Memory MBytes", + "displayName": "Average_Used Memory MBytes", + "displayDescription": "Average_Used Memory MBytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Bytes Transmitted", + "displayName": "Average_Total Bytes Transmitted", + "displayDescription": "Average_Total Bytes Transmitted", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Bytes Received", + "displayName": "Average_Total Bytes Received", + "displayDescription": "Average_Total Bytes Received", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Bytes", + "displayName": "Average_Total Bytes", + "displayDescription": "Average_Total Bytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Packets Transmitted", + "displayName": "Average_Total Packets Transmitted", + "displayDescription": "Average_Total Packets Transmitted", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Packets Received", + "displayName": "Average_Total Packets Received", + "displayDescription": "Average_Total Packets Received", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Rx Errors", + "displayName": "Average_Total Rx Errors", + "displayDescription": "Average_Total Rx Errors", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Tx Errors", + "displayName": "Average_Total Tx Errors", + "displayDescription": "Average_Total Tx Errors", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Total Collisions", + "displayName": "Average_Total Collisions", + "displayDescription": "Average_Total Collisions", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Avg. Disk sec/Read", + "displayName": "Average_Avg. Disk sec/Read", + "displayDescription": "Average_Avg. Disk sec/Read", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Avg. Disk sec/Transfer", + "displayName": "Average_Avg. Disk sec/Transfer", + "displayDescription": "Average_Avg. Disk sec/Transfer", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Avg. Disk sec/Write", + "displayName": "Average_Avg. Disk sec/Write", + "displayDescription": "Average_Avg. Disk sec/Write", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Physical Disk Bytes/sec", + "displayName": "Average_Physical Disk Bytes/sec", + "displayDescription": "Average_Physical Disk Bytes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Pct Privileged Time", + "displayName": "Average_Pct Privileged Time", + "displayDescription": "Average_Pct Privileged Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Pct User Time", + "displayName": "Average_Pct User Time", + "displayDescription": "Average_Pct User Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Used Memory kBytes", + "displayName": "Average_Used Memory kBytes", + "displayDescription": "Average_Used Memory kBytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Virtual Shared Memory", + "displayName": "Average_Virtual Shared Memory", + "displayDescription": "Average_Virtual Shared Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% DPC Time", + "displayName": "Average_% DPC Time", + "displayDescription": "Average_% DPC Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Idle Time", + "displayName": "Average_% Idle Time", + "displayDescription": "Average_% Idle Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Interrupt Time", + "displayName": "Average_% Interrupt Time", + "displayDescription": "Average_% Interrupt Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% IO Wait Time", + "displayName": "Average_% IO Wait Time", + "displayDescription": "Average_% IO Wait Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Nice Time", + "displayName": "Average_% Nice Time", + "displayDescription": "Average_% Nice Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Privileged Time", + "displayName": "Average_% Privileged Time", + "displayDescription": "Average_% Privileged Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Processor Time", + "displayName": "Average_% Processor Time", + "displayDescription": "Average_% Processor Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% User Time", + "displayName": "Average_% User Time", + "displayDescription": "Average_% User Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Free Physical Memory", + "displayName": "Average_Free Physical Memory", + "displayDescription": "Average_Free Physical Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Free Space in Paging Files", + "displayName": "Average_Free Space in Paging Files", + "displayDescription": "Average_Free Space in Paging Files", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Free Virtual Memory", + "displayName": "Average_Free Virtual Memory", + "displayDescription": "Average_Free Virtual Memory", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Processes", + "displayName": "Average_Processes", + "displayDescription": "Average_Processes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Size Stored In Paging Files", + "displayName": "Average_Size Stored In Paging Files", + "displayDescription": "Average_Size Stored In Paging Files", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + {}, + {}, + {}, + {}, + { + "name": "Average_Current Disk Queue Length", + "displayName": "Average_Current Disk Queue Length", + "displayDescription": "Average_Current Disk Queue Length", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Reads/sec", + "displayName": "Average_Disk Reads/sec", + "displayDescription": "Average_Disk Reads/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Transfers/sec", + "displayName": "Average_Disk Transfers/sec", + "displayDescription": "Average_Disk Transfers/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Disk Writes/sec", + "displayName": "Average_Disk Writes/sec", + "displayDescription": "Average_Disk Writes/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Free Megabytes", + "displayName": "Average_Free Megabytes", + "displayDescription": "Average_Free Megabytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Free Space", + "displayName": "Average_% Free Space", + "displayDescription": "Average_% Free Space", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Available MBytes", + "displayName": "Average_Available MBytes", + "displayDescription": "Average_Available MBytes", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Committed Bytes In Use", + "displayName": "Average_% Committed Bytes In Use", + "displayDescription": "Average_% Committed Bytes In Use", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Bytes Received/sec", + "displayName": "Average_Bytes Received/sec", + "displayDescription": "Average_Bytes Received/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Bytes Sent/sec", + "displayName": "Average_Bytes Sent/sec", + "displayDescription": "Average_Bytes Sent/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Bytes Total/sec", + "displayName": "Average_Bytes Total/sec", + "displayDescription": "Average_Bytes Total/sec", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_% Processor Time", + "displayName": "Average_% Processor Time", + "displayDescription": "Average_% Processor Time", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Average_Processor Queue Length", + "displayName": "Average_Processor Queue Length", + "displayDescription": "Average_Processor Queue Length", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "ObjectName", + "displayName": "ObjectName" + }, + { + "name": "InstanceName", + "displayName": "InstanceName" + }, + { + "name": "CounterPath", + "displayName": "CounterPath" + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem" + } + ] + }, + { + "name": "Heartbeat", + "displayName": "Heartbeat", + "displayDescription": "Heartbeat", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "OSType", + "displayName": "OSType" + }, + { + "name": "Version", + "displayName": "Version" + }, + { + "name": "SourceComputerId", + "displayName": "SourceComputerId" + } + ] + }, + { + "name": "Update", + "displayName": "Update", + "displayDescription": "Update", + "unit": "Count", + "aggregationType": "Average", + "dimensions": [ + { + "name": "Computer", + "displayName": "Computer" + }, + { + "name": "Product", + "displayName": "Product" + }, + { + "name": "Classification", + "displayName": "Classification" + }, + { + "name": "UpdateState", + "displayName": "UpdateState" + }, + { + "name": "Optional", + "displayName": "Optional" + }, + { + "name": "Approved", + "displayName": "Approved" + } + ] + } + ] + } + } + } + ] + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesGetResults.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesGetResults.json index a7c979c443db..5b6610341723 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesGetResults.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesGetResults.json @@ -1,39 +1,37 @@ { - "parameters":{ - "resourceGroupName":"mms-eus", - "workspaceName":"atlantisdemo", - "savedSearchName":"test", - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "id":"subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/atlantisdemo/search/06424b55-cd27-4d23-9c51-645d3370062c|2017-10-0223-15-30Z", - "metaData":{ - "resultType":"raw", - "total":0, - "requestId":"06424b55-cd27-4d23-9c51-645d3370062c|2017-10-0223-15-30Z", - "status":"Pending", - "coreSummaries":[ - { - "numberOfDocuments":0 - } - ], - "startTime":"2017-10-02T23:15:30.3363976Z", - "lastUpdated":"2017-10-02T23:15:30.3676472Z", - "eTag":"636425829303676472", - "sort":[ - { - "name":"TimeGenerated", - "order":"desc" - } - ] - }, - "value":[ - - ] - } + "parameters": { + "resourceGroupName": "mms-eus", + "workspaceName": "atlantisdemo", + "savedSearchName": "test", + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "id": "subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/atlantisdemo/search/06424b55-cd27-4d23-9c51-645d3370062c|2017-10-0223-15-30Z", + "metaData": { + "resultType": "raw", + "total": 0, + "requestId": "06424b55-cd27-4d23-9c51-645d3370062c|2017-10-0223-15-30Z", + "status": "Pending", + "coreSummaries": [ + { + "numberOfDocuments": 0 + } + ], + "startTime": "2017-10-02T23:15:30.3363976Z", + "lastUpdated": "2017-10-02T23:15:30.3676472Z", + "eTag": "636425829303676472", + "sort": [ + { + "name": "TimeGenerated", + "order": "desc" + } + ] + }, + "value": [] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesGetSchema.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesGetSchema.json index f9eec0099658..5fcb4830ff8d 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesGetSchema.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesGetSchema.json @@ -1,64 +1,64 @@ { - "parameters":{ - "resourceGroupName":"mms-eus", - "workspaceName":"atlantisdemo", - "api-version":"2015-03-02", - "parameters":{ - "top":25, - "query":"*" - }, - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "metadata":{ - "schema":{ - "name":"CloudOps", - "version":2 - }, - "resultType":"schema", - "requestTime":28 - }, - "value" : [ - { - "name":"TenantId", - "displayName":"TenantId", - "type":"Guid", - "indexed":true, - "stored":false, - "facet":false, - "ownerType":[ - "Alert", - "AzureActivity", - "AzureAudit", - "AzureMetrics", - "ComputerGroup", - "ETWEvent", - "Event", - "ExtraHopDBLogin", - "ExtraHopDBTransaction", - "ExtraHopDNSResponse", - "ExtraHopFTPResponse", - "ExtraHopHTTPTransaction", - "ExtraHopSMTPMessage", - "ExtraHopSYNScanDetect", - "ExtraHopTCPOpen", - "Heartbeat", - "Operation", - "Perf", - "ReservedAzureCommonFields", - "ReservedCommonFields", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent", - "Syslog", - "Usage", - "W3CIISLog" - ] - } - ] - } + "parameters": { + "resourceGroupName": "mms-eus", + "workspaceName": "atlantisdemo", + "api-version": "2015-03-02", + "parameters": { + "top": 25, + "query": "*" + }, + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "metadata": { + "schema": { + "name": "CloudOps", + "version": 2 + }, + "resultType": "schema", + "requestTime": 28 + }, + "value": [ + { + "name": "TenantId", + "displayName": "TenantId", + "type": "Guid", + "indexed": true, + "stored": false, + "facet": false, + "ownerType": [ + "Alert", + "AzureActivity", + "AzureAudit", + "AzureMetrics", + "ComputerGroup", + "ETWEvent", + "Event", + "ExtraHopDBLogin", + "ExtraHopDBTransaction", + "ExtraHopDNSResponse", + "ExtraHopFTPResponse", + "ExtraHopHTTPTransaction", + "ExtraHopSMTPMessage", + "ExtraHopSYNScanDetect", + "ExtraHopTCPOpen", + "Heartbeat", + "Operation", + "Perf", + "ReservedAzureCommonFields", + "ReservedCommonFields", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent", + "Syslog", + "Usage", + "W3CIISLog" + ] + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesListByWorkspace.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesListByWorkspace.json index aa101d7deb17..3cb8b4da4ec2 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesListByWorkspace.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/SavedSearchesListByWorkspace.json @@ -1,30 +1,30 @@ { - "parameters":{ - "resourceGroupName":"TestRG", - "workspaceName":"TestWS", - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":[ - { - "id":"subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/AtlantisDemo/savedSearches/test-new-saved-search-id-2015", - "eTag":"W/\"datetime'2017-10-02T23%3A15%3A41.0709875Z'\"", - "properties":{ - "Category":" Saved Search Test Category", - "DisplayName":"Create or Update Saved Search Test", - "Query":"* | measure Count() by Computer", - "Tags":[ - { - "Name":"Group", - "Value":"Computer" - } - ], - "Version":1 - } - } - ] - } - } -} \ No newline at end of file + "parameters": { + "resourceGroupName": "TestRG", + "workspaceName": "TestWS", + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": [ + { + "id": "subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/AtlantisDemo/savedSearches/test-new-saved-search-id-2015", + "eTag": "W/\"datetime'2017-10-02T23%3A15%3A41.0709875Z'\"", + "properties": { + "Category": " Saved Search Test Category", + "DisplayName": "Create or Update Saved Search Test", + "Query": "* | measure Count() by Computer", + "Tags": [ + { + "Name": "Group", + "Value": "Computer" + } + ], + "Version": 1 + } + } + ] + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsCreateOrUpdate.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsCreateOrUpdate.json index ceb5561cde34..bfc3beb8c2cc 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsCreateOrUpdate.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsCreateOrUpdate.json @@ -1,72 +1,72 @@ { - "parameters":{ - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"aztest5048", - "storageInsightName":"AzTestSI1110", - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000", - "parameters":{ - "properties":{ - "containers":[ - "wad-iis-logfiles" - ], - "tables":[ - "WADWindowsEventLogsTable", - "LinuxSyslogVer2v0" - ], - "storageAccount":{ - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest6987/providers/microsoft.storage/storageaccounts/AzTestFakeSA9945", - "key":"1234" - } - } + "parameters": { + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "aztest5048", + "storageInsightName": "AzTestSI1110", + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000", + "parameters": { + "properties": { + "containers": [ + "wad-iis-logfiles" + ], + "tables": [ + "WADWindowsEventLogsTable", + "LinuxSyslogVer2v0" + ], + "storageAccount": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest6987/providers/microsoft.storage/storageaccounts/AzTestFakeSA9945", + "key": "1234" + } } - }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "containers":[ - "wad-iis-logfiles" - ], - "tables":[ - "WADWindowsEventLogsTable", - "LinuxSyslogVer2v0" - ], - "storageAccount":{ - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest6987/providers/microsoft.storage/storageaccounts/AzTestFakeSA9945", - "key": "Storage Key" - }, - "status":{ - "state":"OK" - } - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6987/providers/microsoft.operationalinsights/workspaces/aztest5048/storageinsightconfigs/AzTestSI1110", - "name":"AzTestSI1110", - "type":"Microsoft.OperationalInsights/workspaces/storageinsightconfigs" - } - }, - "201":{ - "body":{ - "properties":{ - "containers":[ - "wad-iis-logfiles" - ], - "tables":[ - "WADWindowsEventLogsTable", - "LinuxSyslogVer2v0" - ], - "storageAccount":{ - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest6987/providers/microsoft.storage/storageaccounts/AzTestFakeSA9945", - "key": "Storage Key" - }, - "status":{ - "state":"OK" - } - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6987/providers/microsoft.operationalinsights/workspaces/aztest5048/storageinsightconfigs/AzTestSI1110", - "name":"AzTestSI1110", - "type":"Microsoft.OperationalInsights/workspaces/storageinsightconfigs" - } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "containers": [ + "wad-iis-logfiles" + ], + "tables": [ + "WADWindowsEventLogsTable", + "LinuxSyslogVer2v0" + ], + "storageAccount": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest6987/providers/microsoft.storage/storageaccounts/AzTestFakeSA9945", + "key": "Storage Key" + }, + "status": { + "state": "OK" + } + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6987/providers/microsoft.operationalinsights/workspaces/aztest5048/storageinsightconfigs/AzTestSI1110", + "name": "AzTestSI1110", + "type": "Microsoft.OperationalInsights/workspaces/storageinsightconfigs" } + }, + "201": { + "body": { + "properties": { + "containers": [ + "wad-iis-logfiles" + ], + "tables": [ + "WADWindowsEventLogsTable", + "LinuxSyslogVer2v0" + ], + "storageAccount": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest6987/providers/microsoft.storage/storageaccounts/AzTestFakeSA9945", + "key": "Storage Key" + }, + "status": { + "state": "OK" + } + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6987/providers/microsoft.operationalinsights/workspaces/aztest5048/storageinsightconfigs/AzTestSI1110", + "name": "AzTestSI1110", + "type": "Microsoft.OperationalInsights/workspaces/storageinsightconfigs" + } + } } -} \ No newline at end of file +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsDelete.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsDelete.json index 5c55f8d01f81..eacdf0e8d79e 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsDelete.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsDelete.json @@ -1,15 +1,13 @@ { - "parameters":{ - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"aztest5048", - "storageInsightName":"AzTestSI1110", - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - }, - "204":{ - } - } -} \ No newline at end of file + "parameters": { + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "aztest5048", + "storageInsightName": "AzTestSI1110", + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsGet.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsGet.json index 07a513231ba0..2069e5719526 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsGet.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsGet.json @@ -1,34 +1,34 @@ { - "parameters":{ - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"aztest5048", - "storageInsightName":"AzTestSI1110", - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "containers":[ - "wad-iis-logfiles" - ], - "tables":[ - "WADWindowsEventLogsTable", - "LinuxSyslogVer2v0" - ], - "storageAccount":{ - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest6987/providers/microsoft.storage/storageaccounts/AzTestFakeSA9945", - "key":"Storage Account Key" - }, - "status":{ - "state":"OK" - } - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6987/providers/microsoft.operationalinsights/workspaces/aztest5048/storageinsightconfigs/AzTestSI1110", - "name":"AzTestSI1110", - "type":"Microsoft.OperationalInsights/workspaces/storageinsightconfigs" - } + "parameters": { + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "aztest5048", + "storageInsightName": "AzTestSI1110", + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "properties": { + "containers": [ + "wad-iis-logfiles" + ], + "tables": [ + "WADWindowsEventLogsTable", + "LinuxSyslogVer2v0" + ], + "storageAccount": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest6987/providers/microsoft.storage/storageaccounts/AzTestFakeSA9945", + "key": "Storage Account Key" + }, + "status": { + "state": "OK" + } + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6987/providers/microsoft.operationalinsights/workspaces/aztest5048/storageinsightconfigs/AzTestSI1110", + "name": "AzTestSI1110", + "type": "Microsoft.OperationalInsights/workspaces/storageinsightconfigs" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsListByWorkspace.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsListByWorkspace.json index b16445c6d0e3..18faa9e19ec7 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsListByWorkspace.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/StorageInsightsListByWorkspace.json @@ -1,34 +1,34 @@ { - "parameters":{ - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"aztest5048", - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":[ - { - "properties":{ - "containers":[ - "wad-iis-logfiles" - ], - "tables":[ - "WADWindowsEventLogsTable", - "LinuxSyslogVer2v0" - ], - "storageAccount":{ - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest6987/providers/microsoft.storage/storageaccounts/AzTestFakeSA9945" - }, - "status":{ - "state":"OK" - } - }, - "id":"/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6987/providers/microsoft.operationalinsights/workspaces/aztest5048/storageinsightconfigs/AzTestSI1110", - "name":"AzTestSI1110", - "type":"Microsoft.OperationalInsights/workspaces/storageinsightconfigs" + "parameters": { + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "aztest5048", + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": [ + { + "properties": { + "containers": [ + "wad-iis-logfiles" + ], + "tables": [ + "WADWindowsEventLogsTable", + "LinuxSyslogVer2v0" + ], + "storageAccount": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/OIAutoRest6987/providers/microsoft.storage/storageaccounts/AzTestFakeSA9945" + }, + "status": { + "state": "OK" } - ] - } - } -} \ No newline at end of file + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000005/resourcegroups/oiautorest6987/providers/microsoft.operationalinsights/workspaces/aztest5048/storageinsightconfigs/AzTestSI1110", + "name": "AzTestSI1110", + "type": "Microsoft.OperationalInsights/workspaces/storageinsightconfigs" + } + ] + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesDeleteSavedSearches.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesDeleteSavedSearches.json index d123d61f1ab2..e9cff933e7d9 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesDeleteSavedSearches.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesDeleteSavedSearches.json @@ -1,12 +1,12 @@ { - "parameters":{ - "resourceGroupName":"TestRG", - "workspaceName":"TestWS", - "savedSearchName":"SavedSearchName", - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{} - } -} \ No newline at end of file + "parameters": { + "resourceGroupName": "TestRG", + "workspaceName": "TestWS", + "savedSearchName": "SavedSearchName", + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": {} + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesGatewaysDelete.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesGatewaysDelete.json index 340a389ea117..b6811a472e63 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesGatewaysDelete.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesGatewaysDelete.json @@ -1,13 +1,12 @@ { - "parameters":{ - "subscriptionId":"00000000-0000-0000-0000-00000000000", - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"aztest5048", - "gatewayId":"00000000-0000-0000-0000-00000000000", - "api-version":"2015-03-02" - }, - "responses":{ - "200":{ - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-00000000000", + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "aztest5048", + "gatewayId": "00000000-0000-0000-0000-00000000000", + "api-version": "2015-03-02" + }, + "responses": { + "200": {} + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesGetSearchResults.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesGetSearchResults.json index 5b177ca02b8d..41810053ee85 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesGetSearchResults.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesGetSearchResults.json @@ -1,4920 +1,4918 @@ { - "parameters":{ - "resourceGroupName":"mms-eus", - "workspaceName":"atlantisdemo", - "api-version":"2015-03-02", - "parameters":{ - "top":25, - "query":"*" - }, - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "metaData":{ - "schema":{ - "name":"CloudOps", - "version":2 - }, - "resultType":"schema", - "requestTime":28 - }, - "value":[ - { - "name":"TenantId", - "displayName":"TenantId", - "type":"Guid", - "indexed":true, - "stored":false, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "Alert", - "AzureActivity", - "AzureAudit", - "AzureMetrics", - "ComputerGroup", - "ETWEvent", - "Event", - "ExtraHopDBLogin", - "ExtraHopDBTransaction", - "ExtraHopDNSResponse", - "ExtraHopFTPResponse", - "ExtraHopHTTPTransaction", - "ExtraHopSMTPMessage", - "ExtraHopSYNScanDetect", - "ExtraHopTCPOpen", - "Heartbeat", - "Operation", - "Perf", - "ReservedAzureCommonFields", - "ReservedCommonFields", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent", - "Syslog", - "Usage", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"MG", - "displayName":"MG", - "type":"Guid", - "indexed":true, - "stored":true, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "Alert", - "Event", - "Heartbeat", - "Operation", - "Perf", - "Syslog", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"SourceSystem", - "displayName":"SourceSystem", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert", - "AzureActivity", - "AzureAudit", - "AzureMetrics", - "ComputerGroup", - "ETWEvent", - "Event", - "ExtraHopDBLogin", - "ExtraHopDBTransaction", - "ExtraHopDNSResponse", - "ExtraHopFTPResponse", - "ExtraHopHTTPTransaction", - "ExtraHopSMTPMessage", - "ExtraHopSYNScanDetect", - "ExtraHopTCPOpen", - "Heartbeat", - "Operation", - "Perf", - "ReservedAzureCommonFields", - "ReservedCommonFields", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent", - "Syslog", - "Usage", - "W3CIISLog" - ], - "extraction":null, - "common":true - }, - { - "name":"Description", - "displayName":"Description", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"TimeGenerated", - "displayName":"TimeGenerated", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Alert", - "AzureActivity", - "AzureAudit", - "AzureMetrics", - "ComputerGroup", - "ETWEvent", - "Event", - "ExtraHopDBLogin", - "ExtraHopDBTransaction", - "ExtraHopDNSResponse", - "ExtraHopFTPResponse", - "ExtraHopHTTPTransaction", - "ExtraHopSMTPMessage", - "ExtraHopSYNScanDetect", - "ExtraHopTCPOpen", - "Heartbeat", - "Operation", - "Perf", - "ReservedAzureCommonFields", - "ReservedCommonFields", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent", - "Syslog", - "Usage", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"Computer", - "displayName":"Computer", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert", - "ComputerGroup", - "ETWEvent", - "Event", - "Heartbeat", - "Operation", - "Perf", - "ReservedCommonFields", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent", - "Syslog", - "Usage", - "W3CIISLog" - ], - "extraction":null, - "common":true - }, - { - "name":"HelpLink", - "displayName":"HelpLink", - "type":"Uri", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Operation" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertName", - "displayName":"AlertName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertDescription", - "displayName":"AlertDescription", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertState", - "displayName":"AlertState", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"PriorityNumber", - "displayName":"PriorityNumber", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"HostName", - "displayName":"HostName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert", - "Syslog" - ], - "extraction":null, - "common":false - }, - { - "name":"StateType", - "displayName":"StateType", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertSeverity", - "displayName":"AlertSeverity", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"SourceDisplayName", - "displayName":"SourceDisplayName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"QueryExecutionStartTime", - "displayName":"QueryExecutionStartTime", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"QueryExecutionEndTime", - "displayName":"QueryExecutionEndTime", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Query", - "displayName":"Query", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"RemediationJobId", - "displayName":"RemediationJobId", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"RemediationRunbookName", - "displayName":"RemediationRunbookName", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertRuleId", - "displayName":"AlertRuleId", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertRuleInstanceId", - "displayName":"AlertRuleInstanceId", - "type":"Guid", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ThresholdOperator", - "displayName":"ThresholdOperator", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ThresholdValue", - "displayName":"ThresholdValue", - "type":"Int", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"LinkToSearchResults", - "displayName":"LinkToSearchResults", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ServiceDeskConnectionName", - "displayName":"ServiceDeskConnectionName", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ServiceDeskId", - "displayName":"ServiceDeskId", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ServiceDeskWorkItemLink", - "displayName":"ServiceDeskWorkItemLink", - "type":"Uri", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ServiceDeskWorkItemType", - "displayName":"ServiceDeskWorkItemType", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ResourceId", - "displayName":"ResourceId", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert", - "AzureActivity", - "AzureMetrics", - "Heartbeat", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"ResourceType", - "displayName":"ResourceType", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert", - "Heartbeat", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"ResourceValue", - "displayName":"ResourceValue", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"RootObjectName", - "displayName":"RootObjectName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ObjectDisplayName", - "displayName":"ObjectDisplayName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertPriority", - "displayName":"AlertPriority", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"SourceFullName", - "displayName":"SourceFullName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertId", - "displayName":"AlertId", - "type":"Guid", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"RepeatCount", - "displayName":"RepeatCount", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ResolvedBy", - "displayName":"ResolvedBy", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"LastModifiedBy", - "displayName":"LastModifiedBy", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"TimeRaised", - "displayName":"TimeRaised", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"TimeResolved", - "displayName":"TimeResolved", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"TimeLastModified", - "displayName":"TimeLastModified", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertContext", - "displayName":"AlertContext", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"TicketId", - "displayName":"TicketId", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Custom1", - "displayName":"Custom1", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Custom2", - "displayName":"Custom2", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Custom3", - "displayName":"Custom3", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Custom4", - "displayName":"Custom4", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Custom5", - "displayName":"Custom5", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Custom6", - "displayName":"Custom6", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Custom7", - "displayName":"Custom7", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Custom8", - "displayName":"Custom8", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Custom9", - "displayName":"Custom9", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Custom10", - "displayName":"Custom10", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ManagementGroupName", - "displayName":"ManagementGroupName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert", - "Event", - "Heartbeat", - "Operation", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertUniqueId", - "displayName":"AlertUniqueId", - "type":"Guid", - "indexed":false, - "stored":true, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertTypeDescription", - "displayName":"AlertTypeDescription", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertTypeNumber", - "displayName":"AlertTypeNumber", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertError", - "displayName":"AlertError", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"StatusDescription", - "displayName":"StatusDescription", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertStatus", - "displayName":"AlertStatus", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"TriggerId", - "displayName":"TriggerId", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Url", - "displayName":"Url", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ValueDescription", - "displayName":"ValueDescription", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"AlertValue", - "displayName":"AlertValue", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Comments", - "displayName":"Comments", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"TemplateId", - "displayName":"TemplateId", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"FlagsDescription", - "displayName":"FlagsDescription", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Flags", - "displayName":"Flags", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ValueFlagsDescription", - "displayName":"ValueFlagsDescription", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ValueFlags", - "displayName":"ValueFlags", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"Expression", - "displayName":"Expression", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Alert" - ], - "extraction":null, - "common":false - }, - { - "name":"ApplicationName", - "displayName":"ApplicationName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"OperationName", - "displayName":"OperationName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureActivity", - "AzureMetrics", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"Role", - "displayName":"Role", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "Event", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"RoleInstance", - "displayName":"RoleInstance", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"csUserAgent", - "displayName":"csUserAgent", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"ApplicationTypeVersion", - "displayName":"ApplicationTypeVersion", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "ServiceFabricOperationalEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"sPort", - "displayName":"sPort", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"ResponseCode", - "displayName":"ResponseCode", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopHTTPTransaction" - ], - "extraction":null, - "common":false - }, - { - "name":"OperationVersion", - "displayName":"OperationVersion", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"Category", - "displayName":"Category", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureActivity", - "AzureMetrics", - "Heartbeat", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"ResultType", - "displayName":"ResultType", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"ResultSignature", - "displayName":"ResultSignature", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"ResultDescription", - "displayName":"ResultDescription", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"DurationMs", - "displayName":"DurationMs", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"CallerIpAddress", - "displayName":"CallerIpAddress", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity", - "AzureMetrics" - ], - "extraction":null, - "common":false - }, - { - "name":"CorrelationId", - "displayName":"CorrelationId", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity", - "AzureMetrics", - "Operation", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"Resource", - "displayName":"Resource", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureActivity", - "AzureMetrics", - "Heartbeat", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"ResourceGroup", - "displayName":"ResourceGroup", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity", - "AzureMetrics", - "Heartbeat", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"ResourceProvider", - "displayName":"ResourceProvider", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity", - "AzureMetrics", - "Heartbeat", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"SubscriptionId", - "displayName":"SubscriptionId", - "type":"Guid", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity", - "AzureMetrics", - "Heartbeat", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"RunbookName_s", - "displayName":"RunbookName_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"JobId_g", - "displayName":"JobId_g", - "type":"Guid", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"Caller_s", - "displayName":"Caller_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"StreamType_s", - "displayName":"StreamType_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"RemoteIPCountry", - "displayName":"RemoteIPCountry", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics", - "Heartbeat", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"RemoteIPLatitude", - "displayName":"RemoteIPLatitude", - "type":"Float", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "Heartbeat", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"RemoteIPLongitude", - "displayName":"RemoteIPLongitude", - "type":"Float", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "Heartbeat", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"MaliciousIP", - "displayName":"MaliciousIP", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"IndicatorThreatType", - "displayName":"IndicatorThreatType", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"TLPLevel", - "displayName":"TLPLevel", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"Confidence", - "displayName":"Confidence", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"Severity", - "displayName":"Severity", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics", - "ReservedCommonFields", - "W3CIISLog" - ], - "extraction":null, - "common":true - }, - { - "name":"FirstReportedDateTime", - "displayName":"FirstReportedDateTime", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"LastReportedDateTime", - "displayName":"LastReportedDateTime", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"IsActive", - "displayName":"IsActive", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "AzureMetrics", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"ReportReferenceLink", - "displayName":"ReportReferenceLink", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "AzureMetrics", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"AdditionalInformation", - "displayName":"AdditionalInformation", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "AzureMetrics", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"Level", - "displayName":"Level", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureActivity", - "ETWEvent", - "ReservedCommonFields", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":true - }, - { - "name":"ActivityStatus", - "displayName":"ActivityStatus", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureActivity" - ], - "extraction":null, - "common":false - }, - { - "name":"ActivitySubstatus", - "displayName":"ActivitySubstatus", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity" - ], - "extraction":null, - "common":false - }, - { - "name":"Caller", - "displayName":"Caller", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureActivity" - ], - "extraction":null, - "common":false - }, - { - "name":"HTTPRequest", - "displayName":"HTTPRequest", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity" - ], - "extraction":null, - "common":false - }, - { - "name":"Properties", - "displayName":"Properties", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity" - ], - "extraction":null, - "common":false - }, - { - "name":"EventSubmissionTimestamp", - "displayName":"EventSubmissionTimestamp", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity" - ], - "extraction":null, - "common":false - }, - { - "name":"Authorization", - "displayName":"Authorization", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity" - ], - "extraction":null, - "common":false - }, - { - "name":"OperationId", - "displayName":"OperationId", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "AzureActivity" - ], - "extraction":null, - "common":false - }, - { - "name":"EventDataId", - "displayName":"EventDataId", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "AzureActivity", - "AzureAudit" - ], - "extraction":null, - "common":false - }, - { - "name":"MetricName", - "displayName":"MetricName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics" - ], - "extraction":null, - "common":false - }, - { - "name":"Total", - "displayName":"Total", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics" - ], - "extraction":null, - "common":false - }, - { - "name":"Count", - "displayName":"Count", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics" - ], - "extraction":null, - "common":false - }, - { - "name":"Maximum", - "displayName":"Maximum", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics" - ], - "extraction":null, - "common":false - }, - { - "name":"Minimum", - "displayName":"Minimum", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics" - ], - "extraction":null, - "common":false - }, - { - "name":"AverageValue", - "displayName":"Average", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics" - ], - "extraction":null, - "common":false - }, - { - "name":"TimeGrain", - "displayName":"TimeGrain", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics" - ], - "extraction":null, - "common":false - }, - { - "name":"UnitName", - "displayName":"UnitName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "AzureMetrics" - ], - "extraction":null, - "common":false - }, - { - "name":"SourceIP", - "displayName":"SourceIP", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"ProcessName", - "displayName":"ProcessName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Syslog" - ], - "extraction":null, - "common":false - }, - { - "name":"ProcessID", - "displayName":"ProcessID", - "type":"Int", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Syslog" - ], - "extraction":null, - "common":false - }, - { - "name":"FilePath", - "displayName":"FilePath", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ExtraHopFTPResponse" - ], - "extraction":null, - "common":false - }, - { - "name":"Message", - "displayName":"Message", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "Event", - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"StartTime", - "displayName":"StartTime", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"EndTime", - "displayName":"EndTime", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"Version", - "displayName":"Version", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Heartbeat" - ], - "extraction":null, - "common":false - }, - { - "name":"Group", - "displayName":"Group", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ComputerGroup" - ], - "extraction":null, - "common":false - }, - { - "name":"GroupId", - "displayName":"GroupId", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ComputerGroup" - ], - "extraction":null, - "common":false - }, - { - "name":"GroupSourceName", - "displayName":"GroupSourceName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ComputerGroup" - ], - "extraction":null, - "common":false - }, - { - "name":"GroupSource", - "displayName":"GroupSource", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ComputerGroup" - ], - "extraction":null, - "common":false - }, - { - "name":"GroupFullName", - "displayName":"GroupFullName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ComputerGroup" - ], - "extraction":null, - "common":false - }, - { - "name":"SourceComputerId", - "displayName":"SourceComputerId", - "type":"Guid", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Heartbeat", - "Operation" - ], - "extraction":null, - "common":false - }, - { - "name":"EventId", - "displayName":"EventId", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"QueryType", - "displayName":"QueryType", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDNSResponse" - ], - "extraction":null, - "common":false - }, - { - "name":"PartitionKey", - "displayName":"PartitionKey", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"ProviderGuid", - "displayName":"ProviderGuid", - "type":"Guid", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"EventSourceName", - "displayName":"EventSourceName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"Pid", - "displayName":"Pid", - "type":"Int", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"Tid", - "displayName":"Tid", - "type":"Int", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"OpcodeName", - "displayName":"OpcodeName", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"KeywordName", - "displayName":"KeywordName", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"TaskName", - "displayName":"TaskName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"ChannelName", - "displayName":"ChannelName", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"RowKey", - "displayName":"RowKey", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"AzureDeploymentID", - "displayName":"AzureDeploymentID", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "Event", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent", - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"EventMessage", - "displayName":"EventMessage", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ETWEvent", - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"Source", - "displayName":"Source", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Event" - ], - "extraction":null, - "common":false - }, - { - "name":"EventLog", - "displayName":"EventLog", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Event" - ], - "extraction":null, - "common":false - }, - { - "name":"EventCategory", - "displayName":"EventCategory", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Event" - ], - "extraction":null, - "common":false - }, - { - "name":"EventLevel", - "displayName":"EventLevel", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Event" - ], - "extraction":null, - "common":false - }, - { - "name":"EventLevelName", - "displayName":"EventLevelName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Event" - ], - "extraction":null, - "common":false - }, - { - "name":"UserName", - "displayName":"UserName", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Event" - ], - "extraction":null, - "common":false - }, - { - "name":"ParameterXml", - "displayName":"ParameterXml", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Event" - ], - "extraction":null, - "common":false - }, - { - "name":"EventData", - "displayName":"EventData", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Event" - ], - "extraction":null, - "common":false - }, - { - "name":"EventID", - "displayName":"EventID", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Event" - ], - "extraction":null, - "common":false - }, - { - "name":"RenderedDescription", - "displayName":"RenderedDescription", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Event" - ], - "extraction":null, - "common":false - }, - { - "name":"SourceLocation", - "displayName":"SourceLocation", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBLogin", - "ExtraHopDBTransaction", - "ExtraHopDNSResponse", - "ExtraHopFTPResponse", - "ExtraHopHTTPTransaction", - "ExtraHopSMTPMessage", - "ExtraHopSYNScanDetect", - "ExtraHopTCPOpen" - ], - "extraction":null, - "common":false - }, - { - "name":"DestinationAddress", - "displayName":"DestinationAddress", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBLogin", - "ExtraHopDBTransaction", - "ExtraHopDNSResponse", - "ExtraHopFTPResponse", - "ExtraHopHTTPTransaction", - "ExtraHopSMTPMessage", - "ExtraHopTCPOpen" - ], - "extraction":null, - "common":false - }, - { - "name":"User", - "displayName":"User", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBLogin", - "ExtraHopDBTransaction", - "ExtraHopFTPResponse" - ], - "extraction":null, - "common":false - }, - { - "name":"Method", - "displayName":"Method", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBTransaction", - "ExtraHopFTPResponse", - "ExtraHopHTTPTransaction" - ], - "extraction":null, - "common":false - }, - { - "name":"DestinationPortNumber", - "displayName":"DestinationPortNumber", - "type":"Int", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBTransaction", - "ExtraHopHTTPTransaction", - "ExtraHopTCPOpen" - ], - "extraction":null, - "common":false - }, - { - "name":"SourcePortNumber", - "displayName":"SourcePortNumber", - "type":"Int", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBTransaction", - "ExtraHopHTTPTransaction", - "ExtraHopTCPOpen" - ], - "extraction":null, - "common":false - }, - { - "name":"Duration_ms", - "displayName":"Duration_ms", - "type":"Double", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBTransaction", - "ExtraHopHTTPTransaction" - ], - "extraction":null, - "common":false - }, - { - "name":"ResponseTTLB_ms", - "displayName":"ResponseTTLB_ms", - "type":"Double", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBTransaction", - "ExtraHopHTTPTransaction" - ], - "extraction":null, - "common":false - }, - { - "name":"HOPName", - "displayName":"HOPName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBTransaction", - "ExtraHopHTTPTransaction" - ], - "extraction":null, - "common":false - }, - { - "name":"QueryString", - "displayName":"QueryString", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBTransaction", - "ExtraHopDNSResponse" - ], - "extraction":null, - "common":false - }, - { - "name":"DBErrorCode", - "displayName":"DBErrorCode", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBTransaction" - ], - "extraction":null, - "common":false - }, - { - "name":"DataCenter", - "displayName":"DataCenter", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDBTransaction", - "ExtraHopHTTPTransaction" - ], - "extraction":null, - "common":false - }, - { - "name":"QueryResult", - "displayName":"QueryResult", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopDNSResponse" - ], - "extraction":null, - "common":false - }, - { - "name":"StatusCode", - "displayName":"StatusCode", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopFTPResponse" - ], - "extraction":null, - "common":false - }, - { - "name":"URIString", - "displayName":"URIString", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopHTTPTransaction" - ], - "extraction":null, - "common":false - }, - { - "name":"Recipient", - "displayName":"Recipient", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopSMTPMessage" - ], - "extraction":null, - "common":false - }, - { - "name":"SenderName", - "displayName":"SenderName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopSMTPMessage" - ], - "extraction":null, - "common":false - }, - { - "name":"AttachmentFileSize", - "displayName":"AttachmentFileSize", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopSMTPMessage" - ], - "extraction":null, - "common":false - }, - { - "name":"SYNSENT_NEWCONNESTAB", - "displayName":"SYNSENT_NEWCONNESTAB", - "type":"Float", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopSYNScanDetect" - ], - "extraction":null, - "common":false - }, - { - "name":"PeerListSize", - "displayName":"PeerListSize", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ExtraHopSYNScanDetect" - ], - "extraction":null, - "common":false - }, - { - "name":"ComputerIP", - "displayName":"ComputerIP", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Heartbeat" - ], - "extraction":null, - "common":false - }, - { - "name":"OSType", - "displayName":"OSType", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Heartbeat" - ], - "extraction":null, - "common":false - }, - { - "name":"OSName", - "displayName":"OSName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Heartbeat" - ], - "extraction":null, - "common":false - }, - { - "name":"OSMajorVersion", - "displayName":"OSMajorVersion", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Heartbeat" - ], - "extraction":null, - "common":false - }, - { - "name":"OSMinorVersion", - "displayName":"OSMinorVersion", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Heartbeat" - ], - "extraction":null, - "common":false - }, - { - "name":"SCAgentChannel", - "displayName":"SCAgentChannel", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Heartbeat" - ], - "extraction":null, - "common":false - }, - { - "name":"IsGatewayInstalled", - "displayName":"IsGatewayInstalled", - "type":"Bool", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Heartbeat" - ], - "extraction":null, - "common":false - }, - { - "name":"ComputerEnvironment", - "displayName":"ComputerEnvironment", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Heartbeat" - ], - "extraction":null, - "common":false - }, - { - "name":"Solutions", - "displayName":"Solutions", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Heartbeat" - ], - "extraction":null, - "common":false - }, - { - "name":"ClientInfo_s", - "displayName":"ClientInfo_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"RequestUri_s", - "displayName":"RequestUri_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"Id_s", - "displayName":"Id_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"HttpStatusCode_d", - "displayName":"HttpStatusCode_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"InstanceId_s", - "displayName":"InstanceId_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"ClientIP_s", - "displayName":"ClientIP_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"ClientPort_d", - "displayName":"ClientPort_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"HttpMethod_s", - "displayName":"HttpMethod_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"RequestQuery_s", - "displayName":"RequestQuery_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"UserAgent_s", - "displayName":"UserAgent_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"HttpStatus_d", - "displayName":"HttpStatus_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"HttpVersion_s", - "displayName":"HttpVersion_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"ReceivedBytes_d", - "displayName":"ReceivedBytes_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"SentBytes_d", - "displayName":"SentBytes_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"TimeTaken_d", - "displayName":"TimeTaken_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"SslEnabled_s", - "displayName":"SslEnabled_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"HealthyHostCount_d", - "displayName":"HealthyHostCount_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"UnHealthyHostCount_d", - "displayName":"UnHealthyHostCount_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"RequestCount_d", - "displayName":"RequestCount_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"Latency_d", - "displayName":"Latency_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"FailedRequestCount_d", - "displayName":"FailedRequestCount_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"Throughput_d", - "displayName":"Throughput_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"VnetResourceGuid_s", - "displayName":"VnetResourceGuid_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"SubnetPrefix_s", - "displayName":"SubnetPrefix_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"MacAddress_s", - "displayName":"MacAddress_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"RuleName_s", - "displayName":"RuleName_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"Direction_s", - "displayName":"Direction_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"Priority_d", - "displayName":"Priority_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"Type_s", - "displayName":"Type_s", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"MatchedConnections_d", - "displayName":"MatchedConnections_d", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedAzureCommonFields" - ], - "extraction":null, - "common":false - }, - { - "name":"OperationStatus", - "displayName":"OperationStatus", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Operation" - ], - "extraction":null, - "common":false - }, - { - "name":"Detail", - "displayName":"Detail", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Operation" - ], - "extraction":null, - "common":false - }, - { - "name":"OperationCategory", - "displayName":"OperationCategory", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Operation" - ], - "extraction":null, - "common":false - }, - { - "name":"Solution", - "displayName":"Solution", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Operation", - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"OperationKey", - "displayName":"OperationKey", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Operation" - ], - "extraction":null, - "common":false - }, - { - "name":"ErrorId", - "displayName":"ErrorId", - "type":"String", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Operation" - ], - "extraction":null, - "common":false - }, - { - "name":"ObjectName", - "displayName":"ObjectName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"CounterName", - "displayName":"CounterName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"InstanceName", - "displayName":"InstanceName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"Average", - "displayName":"CounterValue", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"CounterPath", - "displayName":"CounterPath", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"Min", - "displayName":"Min", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"Max", - "displayName":"Max", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"SampleCount", - "displayName":"SampleCount", - "type":"Int", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"BucketStartTime", - "displayName":"BucketStartTime", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"BucketEndTime", - "displayName":"BucketEndTime", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"StandardDeviation", - "displayName":"StandardDeviation", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Perf" - ], - "extraction":null, - "common":false - }, - { - "name":"IPAddress", - "displayName":"IPAddress", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"CallerIPAddress", - "displayName":"CallerIPAddress", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ReservedCommonFields" - ], - "extraction":null, - "common":true - }, - { - "name":"ServiceName", - "displayName":"ServiceName", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"StorageAccount", - "displayName":"StorageAccount", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"ApplicationTypeName", - "displayName":"ApplicationTypeName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"UpgradeDomains", - "displayName":"UpgradeDomains", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricOperationalEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"ServiceTypeName", - "displayName":"ServiceTypeName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"PartitionId", - "displayName":"PartitionId", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricOperationalEvent", - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"ActorType", - "displayName":"ActorType", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"ActorId", - "displayName":"ActorId", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"ActorIdKind", - "displayName":"ActorIdKind", - "type":"Int", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"IsStateful", - "displayName":"IsStateful", - "type":"Bool", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"ReplicaOrInstanceId", - "displayName":"ReplicaOrInstanceId", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"NodeName", - "displayName":"NodeName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"NodeId", - "displayName":"NodeId", - "type":"Guid", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"CountOfWaitingMethodCalls", - "displayName":"CountOfWaitingMethodCalls", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"MethodName", - "displayName":"MethodName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"MethodSignature", - "displayName":"MethodSignature", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"MethodExecutionTimeTicks", - "displayName":"MethodExecutionTimeTicks", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"Exception", - "displayName":"Exception", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"SaveStateExecutionTimeTicks", - "displayName":"SaveStateExecutionTimeTicks", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"ReplicaId", - "displayName":"ReplicaId", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableActorEvent", - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"SlowCancellationTimeMillis", - "displayName":"SlowCancellationTimeMillis", - "type":"Double", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"WasCanceled", - "displayName":"WasCanceled", - "type":"Bool", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"ActualCancellationTimeMillis", - "displayName":"ActualCancellationTimeMillis", - "type":"Double", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"InstanceId", - "displayName":"InstanceId", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "ServiceFabricReliableServiceEvent" - ], - "extraction":null, - "common":false - }, - { - "name":"EventTime", - "displayName":"EventTime", - "type":"DateTime", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "Syslog" - ], - "extraction":null, - "common":false - }, - { - "name":"Facility", - "displayName":"Facility", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Syslog" - ], - "extraction":null, - "common":false - }, - { - "name":"SeverityLevel", - "displayName":"SeverityLevel", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Syslog" - ], - "extraction":null, - "common":false - }, - { - "name":"SyslogMessage", - "displayName":"SyslogMessage", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Syslog" - ], - "extraction":null, - "common":false - }, - { - "name":"HostIP", - "displayName":"HostIP", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "Syslog" - ], - "extraction":null, - "common":false - }, - { - "name":"ResourceUri", - "displayName":"ResourceUri", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"LinkedResourceUri", - "displayName":"LinkedResourceUri", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"DataType", - "displayName":"DataType", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"BatchesWithinSla", - "displayName":"BatchesWithinSla", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"BatchesOutsideSla", - "displayName":"BatchesOutsideSla", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"BatchesCapped", - "displayName":"BatchesCapped", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"TotalBatches", - "displayName":"TotalBatches", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"AvgLatencyInSeconds", - "displayName":"AvgLatencyInSeconds", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"Quantity", - "displayName":"Quantity", - "type":"Double", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"QuantityUnit", - "displayName":"QuantityUnit", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"IsBillable", - "displayName":"IsBillable", - "type":"Bool", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"MeterId", - "displayName":"MeterId", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"LinkedMeterId", - "displayName":"LinkedMeterId", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "Usage" - ], - "extraction":null, - "common":false - }, - { - "name":"FileUri", - "displayName":"FileUri", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"FileOffset", - "displayName":"FileOffset", - "type":"Int", - "indexed":false, - "stored":true, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"Date", - "displayName":"Date", - "type":"String", - "indexed":false, - "stored":false, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"Time", - "displayName":"Time", - "type":"String", - "indexed":false, - "stored":false, - "facet":false, - "hidden":true, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"sSiteName", - "displayName":"sSiteName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"sComputerName", - "displayName":"sComputerName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":true, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"sIP", - "displayName":"sIP", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"csMethod", - "displayName":"csMethod", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"csUriStem", - "displayName":"csUriStem", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"csUriQuery", - "displayName":"csUriQuery", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"csUserName", - "displayName":"csUserName", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"cIP", - "displayName":"cIP", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"csVersion", - "displayName":"csVersion", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"csCookie", - "displayName":"csCookie", - "type":"String", - "indexed":false, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"csReferer", - "displayName":"csReferer", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"csHost", - "displayName":"csHost", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"scStatus", - "displayName":"scStatus", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":true, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"scSubStatus", - "displayName":"scSubStatus", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"scWin32Status", - "displayName":"scWin32Status", - "type":"String", - "indexed":true, - "stored":true, - "facet":true, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"scBytes", - "displayName":"scBytes", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"csBytes", - "displayName":"csBytes", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":false, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"TimeTaken", - "displayName":"TimeTaken", - "type":"BigInt", - "indexed":true, - "stored":true, - "facet":false, - "hidden":false, - "display":true, - "ownerType":[ - "W3CIISLog" - ], - "extraction":null, - "common":false - }, - { - "name":"Type", - "displayName":"Type", - "type":"string", - "indexed":true, - "stored":true, - "facet":true, - "hidden":true, - "display":true, - "ownerType":null, - "extraction":null, - "common":false - }, - { - "name":"id", - "displayName":null, - "type":"uuid", - "indexed":true, - "stored":true, - "facet":false, - "hidden":true, - "display":false, - "ownerType":null, - "extraction":null, - "common":false - } - ] - } - }, - "202":{ - + "parameters": { + "resourceGroupName": "mms-eus", + "workspaceName": "atlantisdemo", + "api-version": "2015-03-02", + "parameters": { + "top": 25, + "query": "*" + }, + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "metaData": { + "schema": { + "name": "CloudOps", + "version": 2 + }, + "resultType": "schema", + "requestTime": 28 + }, + "value": [ + { + "name": "TenantId", + "displayName": "TenantId", + "type": "Guid", + "indexed": true, + "stored": false, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "Alert", + "AzureActivity", + "AzureAudit", + "AzureMetrics", + "ComputerGroup", + "ETWEvent", + "Event", + "ExtraHopDBLogin", + "ExtraHopDBTransaction", + "ExtraHopDNSResponse", + "ExtraHopFTPResponse", + "ExtraHopHTTPTransaction", + "ExtraHopSMTPMessage", + "ExtraHopSYNScanDetect", + "ExtraHopTCPOpen", + "Heartbeat", + "Operation", + "Perf", + "ReservedAzureCommonFields", + "ReservedCommonFields", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent", + "Syslog", + "Usage", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "MG", + "displayName": "MG", + "type": "Guid", + "indexed": true, + "stored": true, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "Alert", + "Event", + "Heartbeat", + "Operation", + "Perf", + "Syslog", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "SourceSystem", + "displayName": "SourceSystem", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert", + "AzureActivity", + "AzureAudit", + "AzureMetrics", + "ComputerGroup", + "ETWEvent", + "Event", + "ExtraHopDBLogin", + "ExtraHopDBTransaction", + "ExtraHopDNSResponse", + "ExtraHopFTPResponse", + "ExtraHopHTTPTransaction", + "ExtraHopSMTPMessage", + "ExtraHopSYNScanDetect", + "ExtraHopTCPOpen", + "Heartbeat", + "Operation", + "Perf", + "ReservedAzureCommonFields", + "ReservedCommonFields", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent", + "Syslog", + "Usage", + "W3CIISLog" + ], + "extraction": null, + "common": true + }, + { + "name": "Description", + "displayName": "Description", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "TimeGenerated", + "displayName": "TimeGenerated", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Alert", + "AzureActivity", + "AzureAudit", + "AzureMetrics", + "ComputerGroup", + "ETWEvent", + "Event", + "ExtraHopDBLogin", + "ExtraHopDBTransaction", + "ExtraHopDNSResponse", + "ExtraHopFTPResponse", + "ExtraHopHTTPTransaction", + "ExtraHopSMTPMessage", + "ExtraHopSYNScanDetect", + "ExtraHopTCPOpen", + "Heartbeat", + "Operation", + "Perf", + "ReservedAzureCommonFields", + "ReservedCommonFields", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent", + "Syslog", + "Usage", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "Computer", + "displayName": "Computer", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert", + "ComputerGroup", + "ETWEvent", + "Event", + "Heartbeat", + "Operation", + "Perf", + "ReservedCommonFields", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent", + "Syslog", + "Usage", + "W3CIISLog" + ], + "extraction": null, + "common": true + }, + { + "name": "HelpLink", + "displayName": "HelpLink", + "type": "Uri", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Operation" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertName", + "displayName": "AlertName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertDescription", + "displayName": "AlertDescription", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertState", + "displayName": "AlertState", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "PriorityNumber", + "displayName": "PriorityNumber", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "HostName", + "displayName": "HostName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert", + "Syslog" + ], + "extraction": null, + "common": false + }, + { + "name": "StateType", + "displayName": "StateType", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertSeverity", + "displayName": "AlertSeverity", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "SourceDisplayName", + "displayName": "SourceDisplayName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "QueryExecutionStartTime", + "displayName": "QueryExecutionStartTime", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "QueryExecutionEndTime", + "displayName": "QueryExecutionEndTime", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Query", + "displayName": "Query", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "RemediationJobId", + "displayName": "RemediationJobId", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "RemediationRunbookName", + "displayName": "RemediationRunbookName", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertRuleId", + "displayName": "AlertRuleId", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertRuleInstanceId", + "displayName": "AlertRuleInstanceId", + "type": "Guid", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ThresholdOperator", + "displayName": "ThresholdOperator", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ThresholdValue", + "displayName": "ThresholdValue", + "type": "Int", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "LinkToSearchResults", + "displayName": "LinkToSearchResults", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ServiceDeskConnectionName", + "displayName": "ServiceDeskConnectionName", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ServiceDeskId", + "displayName": "ServiceDeskId", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ServiceDeskWorkItemLink", + "displayName": "ServiceDeskWorkItemLink", + "type": "Uri", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ServiceDeskWorkItemType", + "displayName": "ServiceDeskWorkItemType", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ResourceId", + "displayName": "ResourceId", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert", + "AzureActivity", + "AzureMetrics", + "Heartbeat", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "ResourceType", + "displayName": "ResourceType", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert", + "Heartbeat", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "ResourceValue", + "displayName": "ResourceValue", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "RootObjectName", + "displayName": "RootObjectName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ObjectDisplayName", + "displayName": "ObjectDisplayName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertPriority", + "displayName": "AlertPriority", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "SourceFullName", + "displayName": "SourceFullName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertId", + "displayName": "AlertId", + "type": "Guid", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "RepeatCount", + "displayName": "RepeatCount", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ResolvedBy", + "displayName": "ResolvedBy", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "LastModifiedBy", + "displayName": "LastModifiedBy", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "TimeRaised", + "displayName": "TimeRaised", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "TimeResolved", + "displayName": "TimeResolved", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "TimeLastModified", + "displayName": "TimeLastModified", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertContext", + "displayName": "AlertContext", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "TicketId", + "displayName": "TicketId", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Custom1", + "displayName": "Custom1", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Custom2", + "displayName": "Custom2", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Custom3", + "displayName": "Custom3", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Custom4", + "displayName": "Custom4", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Custom5", + "displayName": "Custom5", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Custom6", + "displayName": "Custom6", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Custom7", + "displayName": "Custom7", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Custom8", + "displayName": "Custom8", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Custom9", + "displayName": "Custom9", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Custom10", + "displayName": "Custom10", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ManagementGroupName", + "displayName": "ManagementGroupName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert", + "Event", + "Heartbeat", + "Operation", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertUniqueId", + "displayName": "AlertUniqueId", + "type": "Guid", + "indexed": false, + "stored": true, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertTypeDescription", + "displayName": "AlertTypeDescription", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertTypeNumber", + "displayName": "AlertTypeNumber", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertError", + "displayName": "AlertError", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "StatusDescription", + "displayName": "StatusDescription", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertStatus", + "displayName": "AlertStatus", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "TriggerId", + "displayName": "TriggerId", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Url", + "displayName": "Url", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ValueDescription", + "displayName": "ValueDescription", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "AlertValue", + "displayName": "AlertValue", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Comments", + "displayName": "Comments", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "TemplateId", + "displayName": "TemplateId", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "FlagsDescription", + "displayName": "FlagsDescription", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Flags", + "displayName": "Flags", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ValueFlagsDescription", + "displayName": "ValueFlagsDescription", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ValueFlags", + "displayName": "ValueFlags", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "Expression", + "displayName": "Expression", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Alert" + ], + "extraction": null, + "common": false + }, + { + "name": "ApplicationName", + "displayName": "ApplicationName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "OperationName", + "displayName": "OperationName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureActivity", + "AzureMetrics", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "Role", + "displayName": "Role", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "Event", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "RoleInstance", + "displayName": "RoleInstance", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "csUserAgent", + "displayName": "csUserAgent", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "ApplicationTypeVersion", + "displayName": "ApplicationTypeVersion", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "ServiceFabricOperationalEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "sPort", + "displayName": "sPort", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "ResponseCode", + "displayName": "ResponseCode", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopHTTPTransaction" + ], + "extraction": null, + "common": false + }, + { + "name": "OperationVersion", + "displayName": "OperationVersion", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "Category", + "displayName": "Category", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureActivity", + "AzureMetrics", + "Heartbeat", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "ResultType", + "displayName": "ResultType", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "ResultSignature", + "displayName": "ResultSignature", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "ResultDescription", + "displayName": "ResultDescription", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "DurationMs", + "displayName": "DurationMs", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "CallerIpAddress", + "displayName": "CallerIpAddress", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity", + "AzureMetrics" + ], + "extraction": null, + "common": false + }, + { + "name": "CorrelationId", + "displayName": "CorrelationId", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity", + "AzureMetrics", + "Operation", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "Resource", + "displayName": "Resource", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureActivity", + "AzureMetrics", + "Heartbeat", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "ResourceGroup", + "displayName": "ResourceGroup", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity", + "AzureMetrics", + "Heartbeat", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "ResourceProvider", + "displayName": "ResourceProvider", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity", + "AzureMetrics", + "Heartbeat", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "SubscriptionId", + "displayName": "SubscriptionId", + "type": "Guid", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity", + "AzureMetrics", + "Heartbeat", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "RunbookName_s", + "displayName": "RunbookName_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "JobId_g", + "displayName": "JobId_g", + "type": "Guid", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "Caller_s", + "displayName": "Caller_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "StreamType_s", + "displayName": "StreamType_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "RemoteIPCountry", + "displayName": "RemoteIPCountry", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics", + "Heartbeat", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "RemoteIPLatitude", + "displayName": "RemoteIPLatitude", + "type": "Float", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "Heartbeat", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "RemoteIPLongitude", + "displayName": "RemoteIPLongitude", + "type": "Float", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "Heartbeat", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "MaliciousIP", + "displayName": "MaliciousIP", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "IndicatorThreatType", + "displayName": "IndicatorThreatType", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "TLPLevel", + "displayName": "TLPLevel", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "Confidence", + "displayName": "Confidence", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "Severity", + "displayName": "Severity", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics", + "ReservedCommonFields", + "W3CIISLog" + ], + "extraction": null, + "common": true + }, + { + "name": "FirstReportedDateTime", + "displayName": "FirstReportedDateTime", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "LastReportedDateTime", + "displayName": "LastReportedDateTime", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "IsActive", + "displayName": "IsActive", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "AzureMetrics", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "ReportReferenceLink", + "displayName": "ReportReferenceLink", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "AzureMetrics", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "AdditionalInformation", + "displayName": "AdditionalInformation", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "AzureMetrics", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "Level", + "displayName": "Level", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureActivity", + "ETWEvent", + "ReservedCommonFields", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": true + }, + { + "name": "ActivityStatus", + "displayName": "ActivityStatus", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureActivity" + ], + "extraction": null, + "common": false + }, + { + "name": "ActivitySubstatus", + "displayName": "ActivitySubstatus", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity" + ], + "extraction": null, + "common": false + }, + { + "name": "Caller", + "displayName": "Caller", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureActivity" + ], + "extraction": null, + "common": false + }, + { + "name": "HTTPRequest", + "displayName": "HTTPRequest", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity" + ], + "extraction": null, + "common": false + }, + { + "name": "Properties", + "displayName": "Properties", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity" + ], + "extraction": null, + "common": false + }, + { + "name": "EventSubmissionTimestamp", + "displayName": "EventSubmissionTimestamp", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity" + ], + "extraction": null, + "common": false + }, + { + "name": "Authorization", + "displayName": "Authorization", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity" + ], + "extraction": null, + "common": false + }, + { + "name": "OperationId", + "displayName": "OperationId", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "AzureActivity" + ], + "extraction": null, + "common": false + }, + { + "name": "EventDataId", + "displayName": "EventDataId", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "AzureActivity", + "AzureAudit" + ], + "extraction": null, + "common": false + }, + { + "name": "MetricName", + "displayName": "MetricName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics" + ], + "extraction": null, + "common": false + }, + { + "name": "Total", + "displayName": "Total", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics" + ], + "extraction": null, + "common": false + }, + { + "name": "Count", + "displayName": "Count", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics" + ], + "extraction": null, + "common": false + }, + { + "name": "Maximum", + "displayName": "Maximum", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics" + ], + "extraction": null, + "common": false + }, + { + "name": "Minimum", + "displayName": "Minimum", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics" + ], + "extraction": null, + "common": false + }, + { + "name": "AverageValue", + "displayName": "Average", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics" + ], + "extraction": null, + "common": false + }, + { + "name": "TimeGrain", + "displayName": "TimeGrain", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics" + ], + "extraction": null, + "common": false + }, + { + "name": "UnitName", + "displayName": "UnitName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "AzureMetrics" + ], + "extraction": null, + "common": false + }, + { + "name": "SourceIP", + "displayName": "SourceIP", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "ProcessName", + "displayName": "ProcessName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Syslog" + ], + "extraction": null, + "common": false + }, + { + "name": "ProcessID", + "displayName": "ProcessID", + "type": "Int", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Syslog" + ], + "extraction": null, + "common": false + }, + { + "name": "FilePath", + "displayName": "FilePath", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ExtraHopFTPResponse" + ], + "extraction": null, + "common": false + }, + { + "name": "Message", + "displayName": "Message", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "Event", + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "StartTime", + "displayName": "StartTime", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "EndTime", + "displayName": "EndTime", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "Version", + "displayName": "Version", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Heartbeat" + ], + "extraction": null, + "common": false + }, + { + "name": "Group", + "displayName": "Group", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ComputerGroup" + ], + "extraction": null, + "common": false + }, + { + "name": "GroupId", + "displayName": "GroupId", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ComputerGroup" + ], + "extraction": null, + "common": false + }, + { + "name": "GroupSourceName", + "displayName": "GroupSourceName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ComputerGroup" + ], + "extraction": null, + "common": false + }, + { + "name": "GroupSource", + "displayName": "GroupSource", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ComputerGroup" + ], + "extraction": null, + "common": false + }, + { + "name": "GroupFullName", + "displayName": "GroupFullName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ComputerGroup" + ], + "extraction": null, + "common": false + }, + { + "name": "SourceComputerId", + "displayName": "SourceComputerId", + "type": "Guid", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Heartbeat", + "Operation" + ], + "extraction": null, + "common": false + }, + { + "name": "EventId", + "displayName": "EventId", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "QueryType", + "displayName": "QueryType", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDNSResponse" + ], + "extraction": null, + "common": false + }, + { + "name": "PartitionKey", + "displayName": "PartitionKey", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "ProviderGuid", + "displayName": "ProviderGuid", + "type": "Guid", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "EventSourceName", + "displayName": "EventSourceName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "Pid", + "displayName": "Pid", + "type": "Int", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "Tid", + "displayName": "Tid", + "type": "Int", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "OpcodeName", + "displayName": "OpcodeName", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "KeywordName", + "displayName": "KeywordName", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "TaskName", + "displayName": "TaskName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "ChannelName", + "displayName": "ChannelName", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "RowKey", + "displayName": "RowKey", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "AzureDeploymentID", + "displayName": "AzureDeploymentID", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "Event", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent", + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "EventMessage", + "displayName": "EventMessage", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ETWEvent", + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "Source", + "displayName": "Source", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Event" + ], + "extraction": null, + "common": false + }, + { + "name": "EventLog", + "displayName": "EventLog", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Event" + ], + "extraction": null, + "common": false + }, + { + "name": "EventCategory", + "displayName": "EventCategory", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Event" + ], + "extraction": null, + "common": false + }, + { + "name": "EventLevel", + "displayName": "EventLevel", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Event" + ], + "extraction": null, + "common": false + }, + { + "name": "EventLevelName", + "displayName": "EventLevelName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Event" + ], + "extraction": null, + "common": false + }, + { + "name": "UserName", + "displayName": "UserName", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Event" + ], + "extraction": null, + "common": false + }, + { + "name": "ParameterXml", + "displayName": "ParameterXml", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Event" + ], + "extraction": null, + "common": false + }, + { + "name": "EventData", + "displayName": "EventData", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Event" + ], + "extraction": null, + "common": false + }, + { + "name": "EventID", + "displayName": "EventID", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Event" + ], + "extraction": null, + "common": false + }, + { + "name": "RenderedDescription", + "displayName": "RenderedDescription", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Event" + ], + "extraction": null, + "common": false + }, + { + "name": "SourceLocation", + "displayName": "SourceLocation", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBLogin", + "ExtraHopDBTransaction", + "ExtraHopDNSResponse", + "ExtraHopFTPResponse", + "ExtraHopHTTPTransaction", + "ExtraHopSMTPMessage", + "ExtraHopSYNScanDetect", + "ExtraHopTCPOpen" + ], + "extraction": null, + "common": false + }, + { + "name": "DestinationAddress", + "displayName": "DestinationAddress", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBLogin", + "ExtraHopDBTransaction", + "ExtraHopDNSResponse", + "ExtraHopFTPResponse", + "ExtraHopHTTPTransaction", + "ExtraHopSMTPMessage", + "ExtraHopTCPOpen" + ], + "extraction": null, + "common": false + }, + { + "name": "User", + "displayName": "User", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBLogin", + "ExtraHopDBTransaction", + "ExtraHopFTPResponse" + ], + "extraction": null, + "common": false + }, + { + "name": "Method", + "displayName": "Method", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBTransaction", + "ExtraHopFTPResponse", + "ExtraHopHTTPTransaction" + ], + "extraction": null, + "common": false + }, + { + "name": "DestinationPortNumber", + "displayName": "DestinationPortNumber", + "type": "Int", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBTransaction", + "ExtraHopHTTPTransaction", + "ExtraHopTCPOpen" + ], + "extraction": null, + "common": false + }, + { + "name": "SourcePortNumber", + "displayName": "SourcePortNumber", + "type": "Int", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBTransaction", + "ExtraHopHTTPTransaction", + "ExtraHopTCPOpen" + ], + "extraction": null, + "common": false + }, + { + "name": "Duration_ms", + "displayName": "Duration_ms", + "type": "Double", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBTransaction", + "ExtraHopHTTPTransaction" + ], + "extraction": null, + "common": false + }, + { + "name": "ResponseTTLB_ms", + "displayName": "ResponseTTLB_ms", + "type": "Double", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBTransaction", + "ExtraHopHTTPTransaction" + ], + "extraction": null, + "common": false + }, + { + "name": "HOPName", + "displayName": "HOPName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBTransaction", + "ExtraHopHTTPTransaction" + ], + "extraction": null, + "common": false + }, + { + "name": "QueryString", + "displayName": "QueryString", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBTransaction", + "ExtraHopDNSResponse" + ], + "extraction": null, + "common": false + }, + { + "name": "DBErrorCode", + "displayName": "DBErrorCode", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBTransaction" + ], + "extraction": null, + "common": false + }, + { + "name": "DataCenter", + "displayName": "DataCenter", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDBTransaction", + "ExtraHopHTTPTransaction" + ], + "extraction": null, + "common": false + }, + { + "name": "QueryResult", + "displayName": "QueryResult", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopDNSResponse" + ], + "extraction": null, + "common": false + }, + { + "name": "StatusCode", + "displayName": "StatusCode", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopFTPResponse" + ], + "extraction": null, + "common": false + }, + { + "name": "URIString", + "displayName": "URIString", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopHTTPTransaction" + ], + "extraction": null, + "common": false + }, + { + "name": "Recipient", + "displayName": "Recipient", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopSMTPMessage" + ], + "extraction": null, + "common": false + }, + { + "name": "SenderName", + "displayName": "SenderName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopSMTPMessage" + ], + "extraction": null, + "common": false + }, + { + "name": "AttachmentFileSize", + "displayName": "AttachmentFileSize", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopSMTPMessage" + ], + "extraction": null, + "common": false + }, + { + "name": "SYNSENT_NEWCONNESTAB", + "displayName": "SYNSENT_NEWCONNESTAB", + "type": "Float", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopSYNScanDetect" + ], + "extraction": null, + "common": false + }, + { + "name": "PeerListSize", + "displayName": "PeerListSize", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ExtraHopSYNScanDetect" + ], + "extraction": null, + "common": false + }, + { + "name": "ComputerIP", + "displayName": "ComputerIP", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Heartbeat" + ], + "extraction": null, + "common": false + }, + { + "name": "OSType", + "displayName": "OSType", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Heartbeat" + ], + "extraction": null, + "common": false + }, + { + "name": "OSName", + "displayName": "OSName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Heartbeat" + ], + "extraction": null, + "common": false + }, + { + "name": "OSMajorVersion", + "displayName": "OSMajorVersion", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Heartbeat" + ], + "extraction": null, + "common": false + }, + { + "name": "OSMinorVersion", + "displayName": "OSMinorVersion", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Heartbeat" + ], + "extraction": null, + "common": false + }, + { + "name": "SCAgentChannel", + "displayName": "SCAgentChannel", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Heartbeat" + ], + "extraction": null, + "common": false + }, + { + "name": "IsGatewayInstalled", + "displayName": "IsGatewayInstalled", + "type": "Bool", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Heartbeat" + ], + "extraction": null, + "common": false + }, + { + "name": "ComputerEnvironment", + "displayName": "ComputerEnvironment", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Heartbeat" + ], + "extraction": null, + "common": false + }, + { + "name": "Solutions", + "displayName": "Solutions", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Heartbeat" + ], + "extraction": null, + "common": false + }, + { + "name": "ClientInfo_s", + "displayName": "ClientInfo_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "RequestUri_s", + "displayName": "RequestUri_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "Id_s", + "displayName": "Id_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "HttpStatusCode_d", + "displayName": "HttpStatusCode_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "InstanceId_s", + "displayName": "InstanceId_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "ClientIP_s", + "displayName": "ClientIP_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "ClientPort_d", + "displayName": "ClientPort_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "HttpMethod_s", + "displayName": "HttpMethod_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "RequestQuery_s", + "displayName": "RequestQuery_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "UserAgent_s", + "displayName": "UserAgent_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "HttpStatus_d", + "displayName": "HttpStatus_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "HttpVersion_s", + "displayName": "HttpVersion_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "ReceivedBytes_d", + "displayName": "ReceivedBytes_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "SentBytes_d", + "displayName": "SentBytes_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "TimeTaken_d", + "displayName": "TimeTaken_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "SslEnabled_s", + "displayName": "SslEnabled_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "HealthyHostCount_d", + "displayName": "HealthyHostCount_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "UnHealthyHostCount_d", + "displayName": "UnHealthyHostCount_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "RequestCount_d", + "displayName": "RequestCount_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "Latency_d", + "displayName": "Latency_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "FailedRequestCount_d", + "displayName": "FailedRequestCount_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "Throughput_d", + "displayName": "Throughput_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "VnetResourceGuid_s", + "displayName": "VnetResourceGuid_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "SubnetPrefix_s", + "displayName": "SubnetPrefix_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "MacAddress_s", + "displayName": "MacAddress_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "RuleName_s", + "displayName": "RuleName_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "Direction_s", + "displayName": "Direction_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "Priority_d", + "displayName": "Priority_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "Type_s", + "displayName": "Type_s", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "MatchedConnections_d", + "displayName": "MatchedConnections_d", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedAzureCommonFields" + ], + "extraction": null, + "common": false + }, + { + "name": "OperationStatus", + "displayName": "OperationStatus", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Operation" + ], + "extraction": null, + "common": false + }, + { + "name": "Detail", + "displayName": "Detail", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Operation" + ], + "extraction": null, + "common": false + }, + { + "name": "OperationCategory", + "displayName": "OperationCategory", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Operation" + ], + "extraction": null, + "common": false + }, + { + "name": "Solution", + "displayName": "Solution", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Operation", + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "OperationKey", + "displayName": "OperationKey", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Operation" + ], + "extraction": null, + "common": false + }, + { + "name": "ErrorId", + "displayName": "ErrorId", + "type": "String", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Operation" + ], + "extraction": null, + "common": false + }, + { + "name": "ObjectName", + "displayName": "ObjectName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "CounterName", + "displayName": "CounterName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "InstanceName", + "displayName": "InstanceName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "Average", + "displayName": "CounterValue", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "CounterPath", + "displayName": "CounterPath", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "Min", + "displayName": "Min", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "Max", + "displayName": "Max", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "SampleCount", + "displayName": "SampleCount", + "type": "Int", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "BucketStartTime", + "displayName": "BucketStartTime", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "BucketEndTime", + "displayName": "BucketEndTime", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "StandardDeviation", + "displayName": "StandardDeviation", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Perf" + ], + "extraction": null, + "common": false + }, + { + "name": "IPAddress", + "displayName": "IPAddress", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "CallerIPAddress", + "displayName": "CallerIPAddress", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ReservedCommonFields" + ], + "extraction": null, + "common": true + }, + { + "name": "ServiceName", + "displayName": "ServiceName", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "StorageAccount", + "displayName": "StorageAccount", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "ApplicationTypeName", + "displayName": "ApplicationTypeName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "UpgradeDomains", + "displayName": "UpgradeDomains", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricOperationalEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "ServiceTypeName", + "displayName": "ServiceTypeName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "PartitionId", + "displayName": "PartitionId", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricOperationalEvent", + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "ActorType", + "displayName": "ActorType", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "ActorId", + "displayName": "ActorId", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "ActorIdKind", + "displayName": "ActorIdKind", + "type": "Int", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "IsStateful", + "displayName": "IsStateful", + "type": "Bool", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "ReplicaOrInstanceId", + "displayName": "ReplicaOrInstanceId", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "NodeName", + "displayName": "NodeName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "NodeId", + "displayName": "NodeId", + "type": "Guid", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "CountOfWaitingMethodCalls", + "displayName": "CountOfWaitingMethodCalls", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "MethodName", + "displayName": "MethodName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "MethodSignature", + "displayName": "MethodSignature", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "MethodExecutionTimeTicks", + "displayName": "MethodExecutionTimeTicks", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "Exception", + "displayName": "Exception", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "SaveStateExecutionTimeTicks", + "displayName": "SaveStateExecutionTimeTicks", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "ReplicaId", + "displayName": "ReplicaId", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableActorEvent", + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "SlowCancellationTimeMillis", + "displayName": "SlowCancellationTimeMillis", + "type": "Double", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "WasCanceled", + "displayName": "WasCanceled", + "type": "Bool", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "ActualCancellationTimeMillis", + "displayName": "ActualCancellationTimeMillis", + "type": "Double", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "InstanceId", + "displayName": "InstanceId", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "ServiceFabricReliableServiceEvent" + ], + "extraction": null, + "common": false + }, + { + "name": "EventTime", + "displayName": "EventTime", + "type": "DateTime", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "Syslog" + ], + "extraction": null, + "common": false + }, + { + "name": "Facility", + "displayName": "Facility", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Syslog" + ], + "extraction": null, + "common": false + }, + { + "name": "SeverityLevel", + "displayName": "SeverityLevel", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Syslog" + ], + "extraction": null, + "common": false + }, + { + "name": "SyslogMessage", + "displayName": "SyslogMessage", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Syslog" + ], + "extraction": null, + "common": false + }, + { + "name": "HostIP", + "displayName": "HostIP", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "Syslog" + ], + "extraction": null, + "common": false + }, + { + "name": "ResourceUri", + "displayName": "ResourceUri", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "LinkedResourceUri", + "displayName": "LinkedResourceUri", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "DataType", + "displayName": "DataType", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "BatchesWithinSla", + "displayName": "BatchesWithinSla", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "BatchesOutsideSla", + "displayName": "BatchesOutsideSla", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "BatchesCapped", + "displayName": "BatchesCapped", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "TotalBatches", + "displayName": "TotalBatches", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "AvgLatencyInSeconds", + "displayName": "AvgLatencyInSeconds", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "Quantity", + "displayName": "Quantity", + "type": "Double", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "QuantityUnit", + "displayName": "QuantityUnit", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "IsBillable", + "displayName": "IsBillable", + "type": "Bool", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "MeterId", + "displayName": "MeterId", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "LinkedMeterId", + "displayName": "LinkedMeterId", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "Usage" + ], + "extraction": null, + "common": false + }, + { + "name": "FileUri", + "displayName": "FileUri", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "FileOffset", + "displayName": "FileOffset", + "type": "Int", + "indexed": false, + "stored": true, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "Date", + "displayName": "Date", + "type": "String", + "indexed": false, + "stored": false, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "Time", + "displayName": "Time", + "type": "String", + "indexed": false, + "stored": false, + "facet": false, + "hidden": true, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "sSiteName", + "displayName": "sSiteName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "sComputerName", + "displayName": "sComputerName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": true, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "sIP", + "displayName": "sIP", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "csMethod", + "displayName": "csMethod", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "csUriStem", + "displayName": "csUriStem", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "csUriQuery", + "displayName": "csUriQuery", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "csUserName", + "displayName": "csUserName", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "cIP", + "displayName": "cIP", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "csVersion", + "displayName": "csVersion", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "csCookie", + "displayName": "csCookie", + "type": "String", + "indexed": false, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "csReferer", + "displayName": "csReferer", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "csHost", + "displayName": "csHost", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "scStatus", + "displayName": "scStatus", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": true, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "scSubStatus", + "displayName": "scSubStatus", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "scWin32Status", + "displayName": "scWin32Status", + "type": "String", + "indexed": true, + "stored": true, + "facet": true, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "scBytes", + "displayName": "scBytes", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "csBytes", + "displayName": "csBytes", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": false, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "TimeTaken", + "displayName": "TimeTaken", + "type": "BigInt", + "indexed": true, + "stored": true, + "facet": false, + "hidden": false, + "display": true, + "ownerType": [ + "W3CIISLog" + ], + "extraction": null, + "common": false + }, + { + "name": "Type", + "displayName": "Type", + "type": "string", + "indexed": true, + "stored": true, + "facet": true, + "hidden": true, + "display": true, + "ownerType": null, + "extraction": null, + "common": false + }, + { + "name": "id", + "displayName": null, + "type": "uuid", + "indexed": true, + "stored": true, + "facet": false, + "hidden": true, + "display": false, + "ownerType": null, + "extraction": null, + "common": false + } + ] } - } -} \ No newline at end of file + }, + "202": {} + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesListKeys.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesListKeys.json index 373a7249270d..3d3d4abbf47c 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesListKeys.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesListKeys.json @@ -1,16 +1,16 @@ { - "parameters":{ - "resourceGroupName":"rg1", - "workspaceName":"workspace1", - "api-version":"2015-03-20", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "primarySharedKey":"BozLY1JnZbxu0jWUQSY8iRPEM8ObmpP8rW+8bUl3+HpDJI+n689SxXgTgU7k1qdxo/WugRLxechxbolAfHM5uA==", - "secondarySharedKey":"7tDt5W0JBrCQKtQA3igfFltLSzJeyr9LmuT+B/ibzd8cdC1neZ1ePOQLBx5NUzc0q2VUIK0cLhWNyFvo/hT8Ww==" - } + "parameters": { + "resourceGroupName": "rg1", + "workspaceName": "workspace1", + "api-version": "2015-03-20", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "primarySharedKey": "BozLY1JnZbxu0jWUQSY8iRPEM8ObmpP8rW+8bUl3+HpDJI+n689SxXgTgU7k1qdxo/WugRLxechxbolAfHM5uA==", + "secondarySharedKey": "7tDt5W0JBrCQKtQA3igfFltLSzJeyr9LmuT+B/ibzd8cdC1neZ1ePOQLBx5NUzc0q2VUIK0cLhWNyFvo/hT8Ww==" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesListLinkTargets.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesListLinkTargets.json index 180eb17cc185..b1f5bbe82ca4 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesListLinkTargets.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesListLinkTargets.json @@ -1,18 +1,18 @@ { - "parameters":{ - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":[ - { - "customerId": "customer id", - "accountName": "name", - "workspaceName": "workspaceName", - "location": "East US" - } - ] - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": [ + { + "customerId": "customer id", + "accountName": "name", + "workspaceName": "workspaceName", + "location": "East US" + } + ] + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesPurge.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesPurge.json index 38d77936e96c..3b045ae18bec 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesPurge.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesPurge.json @@ -1,29 +1,28 @@ { - "parameters": { - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"aztest5048", - "api-version":"2015-03-20", - "subscriptionId":"00000000-0000-0000-0000-00000000000", - "body": { - "table": "Heartbeat", - "filters": [ - { - "column": "TimeGenerated", - "operator": ">", - "value": "2017-09-01T00:00:00" - } - ] - } - }, - "responses": { - "202": { - "headers": { - "x-ms-status-location": "https://management.azure.com/subscriptions/b96161de-b34a-480f-7343-59b099299283/resourceGroups/example/providers/microsoft.operationalinsights/workspaces/test/operations/purge-970318e7-b859-4edb-8903-83b1b54d0b74?api-version=2015-03-20" - }, - "body": { - "operationId": "7d7cf277-9113-4ab3-8359-d0364b74d01d" - } + "parameters": { + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "aztest5048", + "api-version": "2015-03-20", + "subscriptionId": "00000000-0000-0000-0000-00000000000", + "body": { + "table": "Heartbeat", + "filters": [ + { + "column": "TimeGenerated", + "operator": ">", + "value": "2017-09-01T00:00:00" } + ] + } + }, + "responses": { + "202": { + "headers": { + "x-ms-status-location": "https://management.azure.com/subscriptions/b96161de-b34a-480f-7343-59b099299283/resourceGroups/example/providers/microsoft.operationalinsights/workspaces/test/operations/purge-970318e7-b859-4edb-8903-83b1b54d0b74?api-version=2015-03-20" + }, + "body": { + "operationId": "7d7cf277-9113-4ab3-8359-d0364b74d01d" + } } + } } - \ No newline at end of file diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesPurgeOperation.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesPurgeOperation.json index 5575ca5b2bf0..221b46a2c940 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesPurgeOperation.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesPurgeOperation.json @@ -1,16 +1,16 @@ { - "parameters": { - "resourceGroupName":"OIAutoRest5123", - "workspaceName":"aztest5048", - "api-version":"2015-03-20", - "subscriptionId":"00000000-0000-0000-0000-00000000000", - "purgeId": "purge-970318e7-b859-4edb-8903-83b1b54d0b74" - }, - "responses": { - "200": { - "body": { - "status": "completed" - } - } + "parameters": { + "resourceGroupName": "OIAutoRest5123", + "workspaceName": "aztest5048", + "api-version": "2015-03-20", + "subscriptionId": "00000000-0000-0000-0000-00000000000", + "purgeId": "purge-970318e7-b859-4edb-8903-83b1b54d0b74" + }, + "responses": { + "200": { + "body": { + "status": "completed" + } } -} \ No newline at end of file + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesRegenerateSharedKeys.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesRegenerateSharedKeys.json index 5a88e82d4c76..3d3d4abbf47c 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesRegenerateSharedKeys.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesRegenerateSharedKeys.json @@ -1,16 +1,16 @@ { - "parameters":{ - "resourceGroupName":"rg1", - "workspaceName":"workspace1", - "api-version":"2015-03-20", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "primarySharedKey":"BozLY1JnZbxu0jWUQSY8iRPEM8ObmpP8rW+8bUl3+HpDJI+n689SxXgTgU7k1qdxo/WugRLxechxbolAfHM5uA==", - "secondarySharedKey":"7tDt5W0JBrCQKtQA3igfFltLSzJeyr9LmuT+B/ibzd8cdC1neZ1ePOQLBx5NUzc0q2VUIK0cLhWNyFvo/hT8Ww==" - } - } + "parameters": { + "resourceGroupName": "rg1", + "workspaceName": "workspace1", + "api-version": "2015-03-20", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "primarySharedKey": "BozLY1JnZbxu0jWUQSY8iRPEM8ObmpP8rW+8bUl3+HpDJI+n689SxXgTgU7k1qdxo/WugRLxechxbolAfHM5uA==", + "secondarySharedKey": "7tDt5W0JBrCQKtQA3igfFltLSzJeyr9LmuT+B/ibzd8cdC1neZ1ePOQLBx5NUzc0q2VUIK0cLhWNyFvo/hT8Ww==" + } } - } \ No newline at end of file + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesSavedSearchesCreateOrUpdate.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesSavedSearchesCreateOrUpdate.json index d4caf4d325c0..a3407cd461f8 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesSavedSearchesCreateOrUpdate.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesSavedSearchesCreateOrUpdate.json @@ -1,37 +1,37 @@ { - "parameters":{ - "resourceGroupName":"TestRG", - "workspaceName":"TestWS", - "savedSearchName":"SavedSearchName", - "parameters": { - "properties": { - "category":"category", - "displayName":"Create or Update Saved Search Test", - "query":"*", - "version":1, - "tags":[ - { - "name":"Group", - "value":"Computer" - } - ] - } - }, - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "id":"subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/AtlantisDemo/savedSearches/test-new-saved-search-id-2015", - "eTag":"W/\"datetime'2017-10-02T23%3A15%3A41.0709875Z'\"", - "properties":{ - "category":" Saved Search Test Category", - "displayName":"Create or Update Saved Search Test", - "query":"* | measure Count() by Computer", - "version":1 - } - } + "parameters": { + "resourceGroupName": "TestRG", + "workspaceName": "TestWS", + "savedSearchName": "SavedSearchName", + "parameters": { + "properties": { + "category": "category", + "displayName": "Create or Update Saved Search Test", + "query": "*", + "version": 1, + "tags": [ + { + "name": "Group", + "value": "Computer" + } + ] } - } -} \ No newline at end of file + }, + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "id": "subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/AtlantisDemo/savedSearches/test-new-saved-search-id-2015", + "eTag": "W/\"datetime'2017-10-02T23%3A15%3A41.0709875Z'\"", + "properties": { + "category": " Saved Search Test Category", + "displayName": "Create or Update Saved Search Test", + "query": "* | measure Count() by Computer", + "version": 1 + } + } + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesSavedSearchesGet.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesSavedSearchesGet.json index ab7f4ae25c02..f9742335f2c8 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesSavedSearchesGet.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesSavedSearchesGet.json @@ -1,23 +1,23 @@ { - "parameters":{ - "resourceGroupName":"TestRG", - "workspaceName":"TestWS", - "savedSearchName":"SavedSearchName", - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ - "body":{ - "id":"subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/AtlantisDemo/savedSearches/test-new-saved-search-id-2015", - "eTag":"W/\"datetime'2017-10-02T23%3A15%3A41.0709875Z'\"", - "properties":{ - "category":" Saved Search Test Category", - "displayName":"Create or Update Saved Search Test", - "query":"* | measure Count() by Computer", - "version":1 - } - } + "parameters": { + "resourceGroupName": "TestRG", + "workspaceName": "TestWS", + "savedSearchName": "SavedSearchName", + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": { + "body": { + "id": "subscriptions/00000000-0000-0000-0000-000000000005/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/AtlantisDemo/savedSearches/test-new-saved-search-id-2015", + "eTag": "W/\"datetime'2017-10-02T23%3A15%3A41.0709875Z'\"", + "properties": { + "category": " Saved Search Test Category", + "displayName": "Create or Update Saved Search Test", + "query": "* | measure Count() by Computer", + "version": 1 + } } - } -} \ No newline at end of file + } + } +} diff --git a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesUpdateSearchResults.json b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesUpdateSearchResults.json index 9545af9a3189..80522c9b7b02 100644 --- a/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesUpdateSearchResults.json +++ b/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2015-03-20/examples/WorkspacesUpdateSearchResults.json @@ -1,12 +1,12 @@ { - "parameters":{ - "resourceGroupName":"TestRG", - "workspaceName":"TestWS", - "id":"SavedSearchName", - "api-version":"2015-03-02", - "subscriptionId":"00000000-0000-0000-0000-00000000000" - }, - "responses":{ - "200":{ } + "parameters": { + "resourceGroupName": "TestRG", + "workspaceName": "TestWS", + "id": "SavedSearchName", + "api-version": "2015-03-02", + "subscriptionId": "00000000-0000-0000-0000-00000000000" + }, + "responses": { + "200": {} + } } -} \ No newline at end of file diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/OperationsManagement.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/OperationsManagement.json index e13969168e7d..afc11c1b1d9c 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/OperationsManagement.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/OperationsManagement.json @@ -1,1059 +1,1089 @@ { - "swagger": "2.0", - "info": { - "title": "Azure Log Analytics - Operations Management", - "description": "Azure Log Analytics API reference for Solution.", - "version": "2015-11-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Azure Log Analytics - Operations Management", + "description": "Azure Log Analytics API reference for Solution.", + "version": "2015-11-01-preview" + }, + "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}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}": { + "put": { + "tags": [ + "Solution" + ], + "x-ms-examples": { + "SolutionCreate": { + "$ref": "./examples/SolutionCreate.json" + } + }, + "x-ms-long-running-operation": true, + "operationId": "Solutions_CreateOrUpdate", + "summary": "Create/Update Solution.", + "description": "Creates or updates the Solution.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SolutionNameParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/Solution" + }, + "description": "The parameters required to create OMS Solution." + } + ], + "responses": { + "201": { + "description": "Created response definition.", + "schema": { + "$ref": "#/definitions/Solution" } + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" + }, + "description": "Error response definition." + } } - }, - "paths": { - "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}": { - "put": { - "tags": [ - "Solution" - ], - "x-ms-examples": { - "SolutionCreate": { "$ref": "./examples/SolutionCreate.json" } - }, - "x-ms-long-running-operation": true, - "operationId": "Solutions_CreateOrUpdate", - "summary": "Create/Update Solution.", - "description": "Creates or updates the Solution.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SolutionNameParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/Solution" - }, - "description": "The parameters required to create OMS Solution." - } - ], - "responses": { - "201": { - "description": "Created response definition.", - "schema": { - "$ref": "#/definitions/Solution" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + }, + "patch": { + "tags": [ + "Solution" + ], + "x-ms-examples": { + "SolutionUpdate": { + "$ref": "./examples/SolutionUpdate.json" + } + }, + "x-ms-long-running-operation": true, + "operationId": "Solutions_Update", + "summary": "Patch a Solution.", + "description": "Patch a Solution. Only updating tags supported.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SolutionNameParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionPatch" }, - "patch": { - "tags": [ - "Solution" - ], - "x-ms-examples": { - "SolutionUpdate": { "$ref": "./examples/SolutionUpdate.json" } - }, - "x-ms-long-running-operation": true, - "operationId": "Solutions_Update", - "summary": "Patch a Solution.", - "description": "Patch a Solution. Only updating tags supported.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SolutionNameParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SolutionPatch" - }, - "description": "The parameters required to patch a Solution." - } - ], - "responses": { - "200": { - "description": "Patch succeeded.", - "schema": { - "$ref": "#/definitions/Solution" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + "description": "The parameters required to patch a Solution." + } + ], + "responses": { + "200": { + "description": "Patch succeeded.", + "schema": { + "$ref": "#/definitions/Solution" + } + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" }, - "delete": { - "tags": [ - "Solution" - ], - "x-ms-examples": { - "SolutionDelete": { "$ref": "./examples/SolutionDelete.json" } - }, - "x-ms-long-running-operation": true, - "operationId": "Solutions_Delete", - "summary": "Deletes the solution", - "description": "Deletes the solution in the subscription.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/SolutionNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK response definition." - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + "description": "Error response definition." + } + } + }, + "delete": { + "tags": [ + "Solution" + ], + "x-ms-examples": { + "SolutionDelete": { + "$ref": "./examples/SolutionDelete.json" + } + }, + "x-ms-long-running-operation": true, + "operationId": "Solutions_Delete", + "summary": "Deletes the solution", + "description": "Deletes the solution in the subscription.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/SolutionNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK response definition." + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" }, - "get": { - "tags": [ - "Solution" - ], - "operationId": "Solutions_Get", - "x-ms-examples": { - "SolutionGet": { "$ref": "./examples/SolutionGet.json" } - }, - "summary": "Retrieve solution.", - "description": "Retrieves the user solution.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/SolutionNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK response definition.", - "schema": { - "$ref": "#/definitions/Solution" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } - } + "description": "Error response definition." + } + } + }, + "get": { + "tags": [ + "Solution" + ], + "operationId": "Solutions_Get", + "x-ms-examples": { + "SolutionGet": { + "$ref": "./examples/SolutionGet.json" + } }, - "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions": { - "get": { - "tags": [ - "Solution" - ], - "operationId": "Solutions_ListByResourceGroup", - "x-ms-examples": { - "SolutionList": { "$ref": "./examples/SolutionList.json" } - }, - "summary": "Retrieves the solution list for the subscription", - "description": "Retrieves the solution list. It will retrieve both first party and third party solutions", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK response definition.", - "schema": { - "$ref": "#/definitions/SolutionPropertiesList" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + "summary": "Retrieve solution.", + "description": "Retrieves the user solution.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/SolutionNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK response definition.", + "schema": { + "$ref": "#/definitions/Solution" } + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" + }, + "description": "Error response definition." + } + } + } + }, + "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions": { + "get": { + "tags": [ + "Solution" + ], + "operationId": "Solutions_ListByResourceGroup", + "x-ms-examples": { + "SolutionList": { + "$ref": "./examples/SolutionList.json" + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/solutions": { - "get": { - "tags": [ - "Solution" - ], - "operationId": "Solutions_ListBySubscription", - "x-ms-examples": { - "SolutionList": { "$ref": "./examples/SolutionListForSubscription.json" } - }, - "summary": "Retrieves the solution list for the subscription", - "description": "Retrieves the solution list. It will retrieve both first party and third party solutions", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK response definition.", - "schema": { - "$ref": "#/definitions/SolutionPropertiesList" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + "summary": "Retrieves the solution list for the subscription", + "description": "Retrieves the solution list. It will retrieve both first party and third party solutions", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK response definition.", + "schema": { + "$ref": "#/definitions/SolutionPropertiesList" } + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" + }, + "description": "Error response definition." + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/solutions": { + "get": { + "tags": [ + "Solution" + ], + "operationId": "Solutions_ListBySubscription", + "x-ms-examples": { + "SolutionList": { + "$ref": "./examples/SolutionListForSubscription.json" + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementAssociations": { - "get": { - "tags": [ - "ManagementAssociation" - ], - "operationId": "ManagementAssociations_ListBySubscription", - "x-ms-examples": { - "SolutionList": { "$ref": "./examples/ManagementAssociationListForSubscription.json" } - }, - "summary": "Retrieves the ManagementAssociations list for the subscription", - "description": "Retrieves the ManagementAssociations list.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK response definition.", - "schema": { - "$ref": "#/definitions/ManagementAssociationPropertiesList" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + "summary": "Retrieves the solution list for the subscription", + "description": "Retrieves the solution list. It will retrieve both first party and third party solutions", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK response definition.", + "schema": { + "$ref": "#/definitions/SolutionPropertiesList" } - }, - "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}": { - "put": { - "tags": [ - "ManagementAssociation" - ], - "x-ms-examples": { - "SolutionCreate": { "$ref": "./examples/ManagementAssociationCreate.json" } - }, - "operationId": "ManagementAssociations_CreateOrUpdate", - "summary": "Create/Update ManagementAssociation.", - "description": "Creates or updates the ManagementAssociation.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/ProviderNameParameter" - }, - { - "$ref": "#/parameters/ResourceTypeParameter" - }, - { - "$ref": "#/parameters/ResourceNameParameter" - }, - { - "$ref": "#/parameters/ManagementAssociationNameParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ManagementAssociation" - }, - "description": "The parameters required to create ManagementAssociation extension." - } - ], - "responses": { - "200": { - "description": "OK response definition.", - "schema": { - "$ref": "#/definitions/ManagementAssociation" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } - }, - "delete": { - "tags": [ - "ManagementAssociation" - ], - "x-ms-examples": { - "SolutionDelete": { "$ref": "./examples/ManagementAssociationDelete.json" } - }, - "operationId": "ManagementAssociations_Delete", - "summary": "Deletes the ManagementAssociation", - "description": "Deletes the ManagementAssociation in the subscription.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ProviderNameParameter" - }, - { - "$ref": "#/parameters/ResourceTypeParameter" - }, - { - "$ref": "#/parameters/ResourceNameParameter" - }, - { - "$ref": "#/parameters/ManagementAssociationNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK response definition." - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" }, - "get": { - "tags": [ - "ManagementAssociation" - ], - "operationId": "ManagementAssociations_Get", - "x-ms-examples": { - "SolutionGet": { "$ref": "./examples/ManagementAssociationGet.json" } - }, - "summary": "Retrieve ManagementAssociation.", - "description": "Retrieves the user ManagementAssociation.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ProviderNameParameter" - }, - { - "$ref": "#/parameters/ResourceTypeParameter" - }, - { - "$ref": "#/parameters/ResourceNameParameter" - }, - { - "$ref": "#/parameters/ManagementAssociationNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK response definition.", - "schema": { - "$ref": "#/definitions/ManagementAssociation" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } - } + "description": "Error response definition." + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementAssociations": { + "get": { + "tags": [ + "ManagementAssociation" + ], + "operationId": "ManagementAssociations_ListBySubscription", + "x-ms-examples": { + "SolutionList": { + "$ref": "./examples/ManagementAssociationListForSubscription.json" + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementConfigurations": { - "get": { - "tags": [ - "ManagementConfiguration" - ], - "operationId": "ManagementConfigurations_ListBySubscription", - "x-ms-examples": { - "SolutionList": { "$ref": "./examples/ManagementConfigurationListForSubscription.json" } - }, - "summary": "Retrieves the ManagementConfigurations list for the subscription", - "description": "Retrieves the ManagementConfigurations list.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK response definition.", - "schema": { - "$ref": "#/definitions/ManagementConfigurationPropertiesList" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + "summary": "Retrieves the ManagementAssociations list for the subscription", + "description": "Retrieves the ManagementAssociations list.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK response definition.", + "schema": { + "$ref": "#/definitions/ManagementAssociationPropertiesList" } - }, - "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}": { - "put": { - "tags": [ - "ManagementConfiguration" - ], - "x-ms-examples": { - "ManagementConfigurationCreate": { "$ref": "./examples/ManagementConfigurationCreate.json" } - }, - "operationId": "ManagementConfigurations_CreateOrUpdate", - "summary": "Create/Update ManagementConfiguration.", - "description": "Creates or updates the ManagementConfiguration.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/ManagementConfigurationNameParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ManagementConfiguration" - }, - "description": "The parameters required to create OMS Solution." - } - ], - "responses": { - "200": { - "description": "OK response definition.", - "schema": { - "$ref": "#/definitions/ManagementConfiguration" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" }, - "delete": { - "tags": [ - "ManagementConfiguration" - ], - "x-ms-examples": { - "ManagementConfigurationDelete": { "$ref": "./examples/ManagementConfigurationDelete.json" } - }, - "operationId": "ManagementConfigurations_Delete", - "summary": "Deletes the ManagementConfiguration", - "description": "Deletes the ManagementConfiguration in the subscription.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ManagementConfigurationNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK response definition." - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + "description": "Error response definition." + } + } + } + }, + "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}": { + "put": { + "tags": [ + "ManagementAssociation" + ], + "x-ms-examples": { + "SolutionCreate": { + "$ref": "./examples/ManagementAssociationCreate.json" + } + }, + "operationId": "ManagementAssociations_CreateOrUpdate", + "summary": "Create/Update ManagementAssociation.", + "description": "Creates or updates the ManagementAssociation.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/ProviderNameParameter" + }, + { + "$ref": "#/parameters/ResourceTypeParameter" + }, + { + "$ref": "#/parameters/ResourceNameParameter" + }, + { + "$ref": "#/parameters/ManagementAssociationNameParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ManagementAssociation" }, - "get": { - "tags": [ - "ManagementConfiguration" - ], - "operationId": "ManagementConfigurations_Get", - "x-ms-examples": { - "SolutionGet": { "$ref": "./examples/ManagementConfigurationGet.json" } - }, - "summary": "Retrieve ManagementConfiguration.", - "description": "Retrieves the user ManagementConfiguration.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ManagementConfigurationNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK response definition.", - "schema": { - "$ref": "#/definitions/ManagementConfiguration" - } - }, - "default": { - "schema": { - "$ref": "#/definitions/CodeMessageError" - }, - "description": "Error response definition." - } - } + "description": "The parameters required to create ManagementAssociation extension." + } + ], + "responses": { + "200": { + "description": "OK response definition.", + "schema": { + "$ref": "#/definitions/ManagementAssociation" } + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" + }, + "description": "Error response definition." + } + } + }, + "delete": { + "tags": [ + "ManagementAssociation" + ], + "x-ms-examples": { + "SolutionDelete": { + "$ref": "./examples/ManagementAssociationDelete.json" + } }, - "/providers/Microsoft.OperationsManagement/operations":{ - "get": { - "tags": [ - "Operations" - ], - "description": "Lists all of the available OperationsManagement Rest API operations.", - "operationId": "Operations_List", - "x-ms-examples": { - "OperationsList": { "$ref": "./examples/OperationsList.json" } - }, - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "OK. The request has succeeded.", - "schema": { - "$ref": "#/definitions/OperationListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "operationId": "ManagementAssociations_Delete", + "summary": "Deletes the ManagementAssociation", + "description": "Deletes the ManagementAssociation in the subscription.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ProviderNameParameter" + }, + { + "$ref": "#/parameters/ResourceTypeParameter" + }, + { + "$ref": "#/parameters/ResourceNameParameter" + }, + { + "$ref": "#/parameters/ManagementAssociationNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK response definition." + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" + }, + "description": "Error response definition." + } + } + }, + "get": { + "tags": [ + "ManagementAssociation" + ], + "operationId": "ManagementAssociations_Get", + "x-ms-examples": { + "SolutionGet": { + "$ref": "./examples/ManagementAssociationGet.json" + } + }, + "summary": "Retrieve ManagementAssociation.", + "description": "Retrieves the user ManagementAssociation.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ProviderNameParameter" + }, + { + "$ref": "#/parameters/ResourceTypeParameter" + }, + { + "$ref": "#/parameters/ResourceNameParameter" + }, + { + "$ref": "#/parameters/ManagementAssociationNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK response definition.", + "schema": { + "$ref": "#/definitions/ManagementAssociation" } + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" + }, + "description": "Error response definition." + } } + } }, - "definitions": { - "OperationListResult": { - "description": "Result of the request to list solution operations.", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/Operation" - }, - "description": "List of solution operations supported by the OperationsManagement resource provider." - } - } + "/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementConfigurations": { + "get": { + "tags": [ + "ManagementConfiguration" + ], + "operationId": "ManagementConfigurations_ListBySubscription", + "x-ms-examples": { + "SolutionList": { + "$ref": "./examples/ManagementConfigurationListForSubscription.json" + } }, - "Operation": { - "description": "Supported operation of OperationsManagement resource provider.", - "properties": { - "name": { - "description": "Operation name: {provider}/{resource}/{operation}", - "type": "string" - }, - "display": { - "description": "Display metadata associated with the operation.", - "properties": { - "provider": { - "description": "Service provider: Microsoft OperationsManagement.", - "type": "string" - }, - "resource": { - "description": "Resource on which the operation is performed etc.", - "type": "string" - }, - "operation": { - "description": "Type of operation: get, read, delete, etc.", - "type": "string" - } - } - } + "summary": "Retrieves the ManagementConfigurations list for the subscription", + "description": "Retrieves the ManagementConfigurations list.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK response definition.", + "schema": { + "$ref": "#/definitions/ManagementConfigurationPropertiesList" } - }, - "SolutionProperties": { - "description": "Solution properties supported by the OperationsManagement resource provider.", - "properties": { - "workspaceResourceId": { - "type": "string", - "description": "The azure resourceId for the workspace where the solution will be deployed/enabled." - }, - "provisioningState": { - "type": "string", - "description": "The provisioning state for the solution.", - "readOnly": true - }, - "containedResources": { - "type": "array", - "items":{ - "type":"string", - "description":"the azure resourceId of the resource." - }, - "description": "The azure resources that will be contained within the solutions. They will be locked and gets deleted automatically when the solution is deleted." - }, - "referencedResources": { - "type": "array", - "items":{ - "type":"string", - "description":"the azure resourceId of the resource." - }, - "description": "The resources that will be referenced from this solution. Deleting any of those solution out of band will break the solution." - } + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" }, - "required": [ - "workspaceResourceId" - ], - "x-ms-azure-resource": true + "description": "Error response definition." + } + } + } + }, + "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}": { + "put": { + "tags": [ + "ManagementConfiguration" + ], + "x-ms-examples": { + "ManagementConfigurationCreate": { + "$ref": "./examples/ManagementConfigurationCreate.json" + } }, - "ManagementAssociationProperties": { - "description": "ManagementAssociation properties supported by the OperationsManagement resource provider.", - "properties": { - "applicationId": { - "type": "string", - "description": "The applicationId of the appliance for this association." - } + "operationId": "ManagementConfigurations_CreateOrUpdate", + "summary": "Create/Update ManagementConfiguration.", + "description": "Creates or updates the ManagementConfiguration.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/ManagementConfigurationNameParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ManagementConfiguration" + }, + "description": "The parameters required to create OMS Solution." + } + ], + "responses": { + "200": { + "description": "OK response definition.", + "schema": { + "$ref": "#/definitions/ManagementConfiguration" + } + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" }, - "required": [ - "applicationId" - ], - "x-ms-azure-resource": true + "description": "Error response definition." + } + } + }, + "delete": { + "tags": [ + "ManagementConfiguration" + ], + "x-ms-examples": { + "ManagementConfigurationDelete": { + "$ref": "./examples/ManagementConfigurationDelete.json" + } }, - "ManagementConfigurationProperties": { - "description": "ManagementConfiguration properties supported by the OperationsManagement resource provider.", - "properties": { - "applicationId": { - "type": "string", - "description": "The applicationId of the appliance for this Management." - }, - "parentResourceType": { - "type": "string", - "description": "The type of the parent resource." - }, - "parameters":{ - "type":"array", - "items":{ - "$ref":"#/definitions/ArmTemplateParameter" - }, - "description":"Parameters to run the ARM template" - }, - "provisioningState":{ - "readOnly": true, - "type":"string", - "description":"The provisioning state for the ManagementConfiguration." - }, - "template":{ - "type":"object", - "description": "The Json object containing the ARM template to deploy" - } + "operationId": "ManagementConfigurations_Delete", + "summary": "Deletes the ManagementConfiguration", + "description": "Deletes the ManagementConfiguration in the subscription.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ManagementConfigurationNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK response definition." + }, + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" }, - "required": [ - "parameters", - "parentResourceType", - "template" - ], - "x-ms-azure-resource": true + "description": "Error response definition." + } + } + }, + "get": { + "tags": [ + "ManagementConfiguration" + ], + "operationId": "ManagementConfigurations_Get", + "x-ms-examples": { + "SolutionGet": { + "$ref": "./examples/ManagementConfigurationGet.json" + } }, - "SolutionPropertiesList":{ - "properties":{ - "value":{ - "type":"array", - "items":{ - "$ref":"#/definitions/Solution" - }, - "description":"List of solution properties within the subscription." + "summary": "Retrieve ManagementConfiguration.", + "description": "Retrieves the user ManagementConfiguration.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ManagementConfigurationNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK response definition.", + "schema": { + "$ref": "#/definitions/ManagementConfiguration" } }, - "description":"the list of solution response" + "default": { + "schema": { + "$ref": "#/definitions/CodeMessageError" + }, + "description": "Error response definition." + } + } + } + }, + "/providers/Microsoft.OperationsManagement/operations": { + "get": { + "tags": [ + "Operations" + ], + "description": "Lists all of the available OperationsManagement Rest API operations.", + "operationId": "Operations_List", + "x-ms-examples": { + "OperationsList": { + "$ref": "./examples/OperationsList.json" + } }, - "ManagementAssociationPropertiesList":{ - "properties":{ - "value":{ - "type":"array", - "items":{ - "$ref":"#/definitions/ManagementAssociation" - }, - "description":"List of Management Association properties within the subscription." + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK. The request has succeeded.", + "schema": { + "$ref": "#/definitions/OperationListResult" } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + } + }, + "definitions": { + "OperationListResult": { + "description": "Result of the request to list solution operations.", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/Operation" }, - "description":"the list of ManagementAssociation response" + "description": "List of solution operations supported by the OperationsManagement resource provider." + } + } + }, + "Operation": { + "description": "Supported operation of OperationsManagement resource provider.", + "properties": { + "name": { + "description": "Operation name: {provider}/{resource}/{operation}", + "type": "string" }, - "ManagementConfigurationPropertiesList":{ - "properties":{ - "value":{ - "type":"array", - "items":{ - "$ref":"#/definitions/ManagementConfiguration" - }, - "description":"List of Management Configuration properties within the subscription." + "display": { + "description": "Display metadata associated with the operation.", + "properties": { + "provider": { + "description": "Service provider: Microsoft OperationsManagement.", + "type": "string" + }, + "resource": { + "description": "Resource on which the operation is performed etc.", + "type": "string" + }, + "operation": { + "description": "Type of operation: get, read, delete, etc.", + "type": "string" } + } + } + } + }, + "SolutionProperties": { + "description": "Solution properties supported by the OperationsManagement resource provider.", + "properties": { + "workspaceResourceId": { + "type": "string", + "description": "The azure resourceId for the workspace where the solution will be deployed/enabled." + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state for the solution.", + "readOnly": true + }, + "containedResources": { + "type": "array", + "items": { + "type": "string", + "description": "the azure resourceId of the resource." }, - "description":"the list of ManagementConfiguration response" + "description": "The azure resources that will be contained within the solutions. They will be locked and gets deleted automatically when the solution is deleted." }, - "SolutionPlan":{ - "description": "Plan for solution object supported by the OperationsManagement resource provider.", - "properties":{ - "name":{ - "type":"string", - "description":"name of the solution to be created. For Microsoft published solution it should be in the format of solutionType(workspaceName). SolutionType part is case sensitive. For third party solution, it can be anything." - }, - "publisher": { - "type":"string", - "description": "Publisher name. For gallery solution, it is Microsoft." - }, - "promotionCode":{ - "type":"string", - "description":"promotionCode, Not really used now, can you left as empty" - }, - "product":{ - "type":"string", - "description":"name of the solution to enabled/add. For Microsoft published gallery solution it should be in the format of OMSGallery/. This is case sensitive" - } - } + "referencedResources": { + "type": "array", + "items": { + "type": "string", + "description": "the azure resourceId of the resource." + }, + "description": "The resources that will be referenced from this solution. Deleting any of those solution out of band will break the solution." + } + }, + "required": [ + "workspaceResourceId" + ], + "x-ms-azure-resource": true + }, + "ManagementAssociationProperties": { + "description": "ManagementAssociation properties supported by the OperationsManagement resource provider.", + "properties": { + "applicationId": { + "type": "string", + "description": "The applicationId of the appliance for this association." + } + }, + "required": [ + "applicationId" + ], + "x-ms-azure-resource": true + }, + "ManagementConfigurationProperties": { + "description": "ManagementConfiguration properties supported by the OperationsManagement resource provider.", + "properties": { + "applicationId": { + "type": "string", + "description": "The applicationId of the appliance for this Management." }, - "Solution": { - "properties": { - "id": { - "readOnly": true, - "type": "string", - "description": "Resource ID." - }, - "name": { - "readOnly": true, - "type": "string", - "description": "Resource name." - }, - "type": { - "readOnly": true, - "type": "string", - "description": "Resource type." - }, - "location": { - "type": "string", - "description": "Resource location" - }, - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - }, - "plan":{ - "description": "Plan for solution object supported by the OperationsManagement resource provider.", - "$ref":"#/definitions/SolutionPlan" - }, - "properties": { - "description": "Properties for solution object supported by the OperationsManagement resource provider.", - "$ref": "#/definitions/SolutionProperties" - } - }, - "description": "The container for solution.", - "x-ms-azure-resource": true + "parentResourceType": { + "type": "string", + "description": "The type of the parent resource." }, - "SolutionPatch": { - "properties": { - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - } - }, - "description": "The properties of a Solution that can be patched.", - "x-ms-azure-resource": true + "parameters": { + "type": "array", + "items": { + "$ref": "#/definitions/ArmTemplateParameter" + }, + "description": "Parameters to run the ARM template" }, - "ManagementAssociation": { - "properties": { - "id": { - "readOnly": true, - "type": "string", - "description": "Resource ID." - }, - "name": { - "readOnly": true, - "type": "string", - "description": "Resource name." - }, - "type": { - "readOnly": true, - "type": "string", - "description": "Resource type." - }, - "location": { - "type": "string", - "description": "Resource location" - }, - "properties": { - "description": "Properties for ManagementAssociation object supported by the OperationsManagement resource provider.", - "$ref": "#/definitions/ManagementAssociationProperties" - } - }, - "description": "The container for solution.", - "x-ms-azure-resource": true + "provisioningState": { + "readOnly": true, + "type": "string", + "description": "The provisioning state for the ManagementConfiguration." }, - "ManagementConfiguration": { - "properties": { - "id": { - "readOnly": true, - "type": "string", - "description": "Resource ID." - }, - "name": { - "readOnly": true, - "type": "string", - "description": "Resource name." - }, - "type": { - "readOnly": true, - "type": "string", - "description": "Resource type." - }, - "location": { - "type": "string", - "description": "Resource location" - }, - "properties": { - "description": "Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.", - "$ref": "#/definitions/ManagementConfigurationProperties" - } - }, - "description": "The container for solution.", - "x-ms-azure-resource": true + "template": { + "type": "object", + "description": "The Json object containing the ARM template to deploy" + } + }, + "required": [ + "parameters", + "parentResourceType", + "template" + ], + "x-ms-azure-resource": true + }, + "SolutionPropertiesList": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/Solution" + }, + "description": "List of solution properties within the subscription." + } + }, + "description": "the list of solution response" + }, + "ManagementAssociationPropertiesList": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ManagementAssociation" + }, + "description": "List of Management Association properties within the subscription." + } + }, + "description": "the list of ManagementAssociation response" + }, + "ManagementConfigurationPropertiesList": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ManagementConfiguration" + }, + "description": "List of Management Configuration properties within the subscription." + } + }, + "description": "the list of ManagementConfiguration response" + }, + "SolutionPlan": { + "description": "Plan for solution object supported by the OperationsManagement resource provider.", + "properties": { + "name": { + "type": "string", + "description": "name of the solution to be created. For Microsoft published solution it should be in the format of solutionType(workspaceName). SolutionType part is case sensitive. For third party solution, it can be anything." }, - "ArmTemplateParameter":{ - "description": "Parameter to pass to ARM template", - "properties":{ - "name":{ - "type":"string", - "description":"name of the parameter." - }, - "value":{ - "type":"string", - "description":"value for the parameter. In Jtoken " - } - } + "publisher": { + "type": "string", + "description": "Publisher name. For gallery solution, it is Microsoft." }, - "CodeMessageError": { - "properties": { - "error": { - "type": "object", - "properties": { - "code": { - "type": "string", - "description": "The error type." - }, - "message": { - "type": "string", - "description": "The error message." - } - }, - "description": "The error details for a failed request." - } - }, - "description": "The error body contract." + "promotionCode": { + "type": "string", + "description": "promotionCode, Not really used now, can you left as empty" + }, + "product": { + "type": "string", + "description": "name of the solution to enabled/add. For Microsoft published gallery solution it should be in the format of OMSGallery/. This is case sensitive" } + } }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." + "Solution": { + "properties": { + "id": { + "readOnly": true, + "type": "string", + "description": "Resource ID." }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." + "name": { + "readOnly": true, + "type": "string", + "description": "Resource name." }, - "ResourceGroupNameParameter": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "x-ms-parameter-location": "method", - "description": "The name of the resource group to get. The name is case insensitive.", - "pattern": "^[-\\w\\._\\(\\)]+$", - "minLength": 1, - "maxLength": 90 + "type": { + "readOnly": true, + "type": "string", + "description": "Resource type." }, - "SolutionNameParameter": { - "x-ms-parameter-location":"method", - "name": "solutionName", - "in": "path", - "required": true, - "type": "string", - "description": "User Solution Name." + "location": { + "type": "string", + "description": "Resource location" }, - "ManagementAssociationNameParameter": { - "x-ms-parameter-location":"method", - "name": "managementAssociationName", - "in": "path", - "required": true, - "type": "string", - "description": "User ManagementAssociation Name." + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" }, - "ManagementConfigurationNameParameter": { - "x-ms-parameter-location":"method", - "name": "managementConfigurationName", - "in": "path", - "required": true, - "type": "string", - "description": "User Management Configuration Name." + "plan": { + "description": "Plan for solution object supported by the OperationsManagement resource provider.", + "$ref": "#/definitions/SolutionPlan" }, - "ProviderNameParameter": { - "name": "providerName", - "in": "path", - "required": true, - "type": "string", - "description": "Provider name for the parent resource.", - "x-ms-parameter-location": "client" + "properties": { + "description": "Properties for solution object supported by the OperationsManagement resource provider.", + "$ref": "#/definitions/SolutionProperties" + } + }, + "description": "The container for solution.", + "x-ms-azure-resource": true + }, + "SolutionPatch": { + "properties": { + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + } + }, + "description": "The properties of a Solution that can be patched.", + "x-ms-azure-resource": true + }, + "ManagementAssociation": { + "properties": { + "id": { + "readOnly": true, + "type": "string", + "description": "Resource ID." }, - "ResourceTypeParameter": { - "name": "resourceType", - "in": "path", - "required": true, - "type": "string", - "description": "Resource type for the parent resource", - "x-ms-parameter-location": "client" + "name": { + "readOnly": true, + "type": "string", + "description": "Resource name." }, - "ResourceNameParameter": { - "name": "resourceName", - "in": "path", - "required": true, - "type": "string", - "description": "Parent resource name.", - "x-ms-parameter-location": "client" + "type": { + "readOnly": true, + "type": "string", + "description": "Resource type." + }, + "location": { + "type": "string", + "description": "Resource location" + }, + "properties": { + "description": "Properties for ManagementAssociation object supported by the OperationsManagement resource provider.", + "$ref": "#/definitions/ManagementAssociationProperties" + } + }, + "description": "The container for solution.", + "x-ms-azure-resource": true + }, + "ManagementConfiguration": { + "properties": { + "id": { + "readOnly": true, + "type": "string", + "description": "Resource ID." + }, + "name": { + "readOnly": true, + "type": "string", + "description": "Resource name." + }, + "type": { + "readOnly": true, + "type": "string", + "description": "Resource type." + }, + "location": { + "type": "string", + "description": "Resource location" + }, + "properties": { + "description": "Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.", + "$ref": "#/definitions/ManagementConfigurationProperties" + } + }, + "description": "The container for solution.", + "x-ms-azure-resource": true + }, + "ArmTemplateParameter": { + "description": "Parameter to pass to ARM template", + "properties": { + "name": { + "type": "string", + "description": "name of the parameter." + }, + "value": { + "type": "string", + "description": "value for the parameter. In Jtoken " + } + } + }, + "CodeMessageError": { + "properties": { + "error": { + "type": "object", + "properties": { + "code": { + "type": "string", + "description": "The error type." + }, + "message": { + "type": "string", + "description": "The error message." + } + }, + "description": "The error details for a failed request." } + }, + "description": "The error body contract." + } + }, + "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "required": true, + "type": "string", + "description": "Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." + }, + "ResourceGroupNameParameter": { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method", + "description": "The name of the resource group to get. The name is case insensitive.", + "pattern": "^[-\\w\\._\\(\\)]+$", + "minLength": 1, + "maxLength": 90 + }, + "SolutionNameParameter": { + "x-ms-parameter-location": "method", + "name": "solutionName", + "in": "path", + "required": true, + "type": "string", + "description": "User Solution Name." + }, + "ManagementAssociationNameParameter": { + "x-ms-parameter-location": "method", + "name": "managementAssociationName", + "in": "path", + "required": true, + "type": "string", + "description": "User ManagementAssociation Name." + }, + "ManagementConfigurationNameParameter": { + "x-ms-parameter-location": "method", + "name": "managementConfigurationName", + "in": "path", + "required": true, + "type": "string", + "description": "User Management Configuration Name." + }, + "ProviderNameParameter": { + "name": "providerName", + "in": "path", + "required": true, + "type": "string", + "description": "Provider name for the parent resource.", + "x-ms-parameter-location": "client" + }, + "ResourceTypeParameter": { + "name": "resourceType", + "in": "path", + "required": true, + "type": "string", + "description": "Resource type for the parent resource", + "x-ms-parameter-location": "client" + }, + "ResourceNameParameter": { + "name": "resourceName", + "in": "path", + "required": true, + "type": "string", + "description": "Parent resource name.", + "x-ms-parameter-location": "client" } -} \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationCreate.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationCreate.json index 7622290e5b63..09f7fb994ecf 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationCreate.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationCreate.json @@ -1,30 +1,30 @@ { - "parameters":{ - "managementAssociationName":"managementAssociation1", - "resourceGroupName":"rg1", - "providerName":"providerName", - "resourceType":"resourceType", - "resourceName":"resourceName", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid", - "parameters":{ - "location":"East US", - "properties":{ - "applicationId":"/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1" - } - } - }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationalInsights/workspaces/ws1/Microsoft.OperationsManagement/ManagementAssociations/managementAssociation1", - "location":"East US", - "name":"managementAssociation1", - "type":"Microsoft.OperationsManagement/ManagementAssociations", - "properties":{ - "applicationId":"/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1" - } - } + "parameters": { + "managementAssociationName": "managementAssociation1", + "resourceGroupName": "rg1", + "providerName": "providerName", + "resourceType": "resourceType", + "resourceName": "resourceName", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid", + "parameters": { + "location": "East US", + "properties": { + "applicationId": "/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationalInsights/workspaces/ws1/Microsoft.OperationsManagement/ManagementAssociations/managementAssociation1", + "location": "East US", + "name": "managementAssociation1", + "type": "Microsoft.OperationsManagement/ManagementAssociations", + "properties": { + "applicationId": "/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1" } + } } -} \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationDelete.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationDelete.json index 0be788b09147..c31ae32602bd 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationDelete.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationDelete.json @@ -1,16 +1,16 @@ { - "parameters":{ - "solutionName":"ManagementAssociation1", - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid", - "providerName":"providerName", - "resourceType":"resourceType", - "resourceName":"resourceName", - "managementAssociationName":"managementAssociationName", - "managementConfigurationName":"managementConfigurationName" - }, - "responses":{ - "200":{} - } -} \ No newline at end of file + "parameters": { + "solutionName": "ManagementAssociation1", + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid", + "providerName": "providerName", + "resourceType": "resourceType", + "resourceName": "resourceName", + "managementAssociationName": "managementAssociationName", + "managementConfigurationName": "managementConfigurationName" + }, + "responses": { + "200": {} + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationGet.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationGet.json index b2f6d6518c7b..aa995eff669d 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationGet.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationGet.json @@ -1,24 +1,24 @@ - { - "parameters":{ - "managementAssociationName":"managementAssociation1", - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid", - "providerName":"providerName", - "resourceType":"resourceType", - "resourceName":"resourceName" - }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationalInsights/workspaces/ws1/Microsoft.OperationsManagement/ManagementAssociations/managementAssociation1", - "location":"East US", - "name":"managementAssociation1", - "type":"Microsoft.OperationsManagement/ManagementAssociations", - "properties":{ - "applicationId":"/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1" - } - } +{ + "parameters": { + "managementAssociationName": "managementAssociation1", + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid", + "providerName": "providerName", + "resourceType": "resourceType", + "resourceName": "resourceName" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationalInsights/workspaces/ws1/Microsoft.OperationsManagement/ManagementAssociations/managementAssociation1", + "location": "East US", + "name": "managementAssociation1", + "type": "Microsoft.OperationsManagement/ManagementAssociations", + "properties": { + "applicationId": "/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1" } + } } - } \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationList.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationList.json index 119014355564..d9bca85f8c02 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationList.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationList.json @@ -1,25 +1,24 @@ - { - "parameters":{ - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id":"/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationalInsights/workspaces/ws1/Microsoft.OperationsManagement/ManagementAssociations/managementAssociation1", - "location":"East US", - "name":"managementAssociation1", - "type":"Microsoft.OperationsManagement/ManagementAssociations", - "properties":{ - "applicationId":"/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1" - } - - } - ] +{ + "parameters": { + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationalInsights/workspaces/ws1/Microsoft.OperationsManagement/ManagementAssociations/managementAssociation1", + "location": "East US", + "name": "managementAssociation1", + "type": "Microsoft.OperationsManagement/ManagementAssociations", + "properties": { + "applicationId": "/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1" } - } + } + ] + } } - } \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationListForSubscription.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationListForSubscription.json index 8fb7e8ce96ab..cb8dfd7c1070 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationListForSubscription.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementAssociationListForSubscription.json @@ -1,18 +1,18 @@ { - "parameters": { - "api-version": "2015-11-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": [ - { - "id": "subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationalInsights/workspaces/ws1/Microsoft.OperationsManagement/ManagementAssociations/managementAssociation1", - "location": "East US", - "name": "managementAssociation1", - "type": "Microsoft.OperationsManagement/ManagementAssociations" - } - ] + "parameters": { + "api-version": "2015-11-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": [ + { + "id": "subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationalInsights/workspaces/ws1/Microsoft.OperationsManagement/ManagementAssociations/managementAssociation1", + "location": "East US", + "name": "managementAssociation1", + "type": "Microsoft.OperationsManagement/ManagementAssociations" } + ] } -} \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationCreate.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationCreate.json index ac7812f62b11..13af45b1a37b 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationCreate.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationCreate.json @@ -1,21 +1,21 @@ { - "parameters":{ - "managementConfigurationName":"managementConfiguration1", - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid", - "parameters":{ - "location":"East US" - } - }, - "responses":{ - "200":{ - "body":{ - "id":"subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationsManagement/ManagementConfigurations/managementConfiguration1", - "location":"East US", - "name":"managementConfiguration1", - "type":"Microsoft.OperationsManagement/ManagementConfigurations" - } - } + "parameters": { + "managementConfigurationName": "managementConfiguration1", + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid", + "parameters": { + "location": "East US" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "id": "subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationsManagement/ManagementConfigurations/managementConfiguration1", + "location": "East US", + "name": "managementConfiguration1", + "type": "Microsoft.OperationsManagement/ManagementConfigurations" + } + } + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationDelete.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationDelete.json index 081c04bf7103..c92aece9c36b 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationDelete.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationDelete.json @@ -1,12 +1,12 @@ { - "parameters":{ - "solutionName":"managementConfiguration1", - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid", - "managementConfigurationName":"managementConfigurationName" - }, - "responses":{ - "200":{} - } -} \ No newline at end of file + "parameters": { + "solutionName": "managementConfiguration1", + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid", + "managementConfigurationName": "managementConfigurationName" + }, + "responses": { + "200": {} + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationGet.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationGet.json index ef45687bab0f..97c12c4edfa3 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationGet.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationGet.json @@ -1,20 +1,19 @@ - { - "parameters":{ - "solutionName":"managementConfiguration1", - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid", - "managementConfigurationName":"managementConfigurationName" - }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/ManagementConfigurations/managementConfiguration1", - "location":"East US", - "name":"managementConfiguration1", - "type":"Microsoft.OperationsManagement/ManagementConfigurations" - - } - } +{ + "parameters": { + "solutionName": "managementConfiguration1", + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid", + "managementConfigurationName": "managementConfigurationName" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/ManagementConfigurations/managementConfiguration1", + "location": "East US", + "name": "managementConfiguration1", + "type": "Microsoft.OperationsManagement/ManagementConfigurations" + } } - } \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationList.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationList.json index 11742f3a00bb..50b75b993d49 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationList.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationList.json @@ -1,65 +1,65 @@ - { - "parameters":{ - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id":"/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/ManagementConfigurations/managementConfiguration1", - "location":"East US", - "name":"managementConfiguration1", - "type":"Microsoft.OperationsManagement/ManagementConfiguration", - "properties":{ - "applicationId":"/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/managementConfiguration1", - "parentResourceType":"Microsoft.OperationalInsights/workspaces", - "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", - "contentVersion": "1.0.0.0", - "parameters": { - "parentResourceName": { - "type": "string" - }, - "managementConfigurationName": { - "type": "string" - }, - "jsonobject": { - "type": "object" - } - }, - "resources": [ - { - "apiVersion": "2015-11-01-preview", - "name": "[concat(parameters('parentResourceName'), '/', parameters('managementConfigurationName'), '-', parameters('jsonobject').displayName)]", - "type": "Microsoft.OperationalInsights/workspaces/savedsearches", - "dependsOn": [], - "properties": { - "ETag": "*", - "Category": "A-Templated", - "DisplayName": "[parameters('jsonobject').displayName]", - "Query": "[parameters('jsonobject').query]", - "Version": 1 - } - } - ], - "outputs": {} - }, - "parameters": [ - { - "name": "jsonobject", - "value": { - "displayName": "abcde", - "query": "hello" - } - } - ] - } +{ + "parameters": { + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/ManagementConfigurations/managementConfiguration1", + "location": "East US", + "name": "managementConfiguration1", + "type": "Microsoft.OperationsManagement/ManagementConfiguration", + "properties": { + "applicationId": "/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/managementConfiguration1", + "parentResourceType": "Microsoft.OperationalInsights/workspaces", + "template": { + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "contentVersion": "1.0.0.0", + "parameters": { + "parentResourceName": { + "type": "string" + }, + "managementConfigurationName": { + "type": "string" + }, + "jsonobject": { + "type": "object" + } + }, + "resources": [ + { + "apiVersion": "2015-11-01-preview", + "name": "[concat(parameters('parentResourceName'), '/', parameters('managementConfigurationName'), '-', parameters('jsonobject').displayName)]", + "type": "Microsoft.OperationalInsights/workspaces/savedsearches", + "dependsOn": [], + "properties": { + "ETag": "*", + "Category": "A-Templated", + "DisplayName": "[parameters('jsonobject').displayName]", + "Query": "[parameters('jsonobject').query]", + "Version": 1 } - ] + } + ], + "outputs": {} + }, + "parameters": [ + { + "name": "jsonobject", + "value": { + "displayName": "abcde", + "query": "hello" + } + } + ] } - } + } + ] + } } - } \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationListForSubscription.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationListForSubscription.json index e34d08e9501f..c27d7b1eabcb 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationListForSubscription.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationListForSubscription.json @@ -1,62 +1,62 @@ - { - "parameters":{ - "api-version":"2015-11-01-preview", - "subscriptionId":"subid" - }, - "responses":{ - "200":{ - "body": [ - { - "id":"/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/ManagementConfiguration/managementConfiguration1", - "location":"East US", - "name":"managementConfiguration1", - "type":"Microsoft.OperationsManagement/ManagementConfigurations", - "properties":{ - "applicationId":"/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/managementConfiguration1", - "parentResourceType":"Microsoft.OperationalInsights/workspaces", - "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", - "contentVersion": "1.0.0.0", - "parameters": { - "parentResourceName": { - "type": "string" - }, - "managementConfigurationName": { - "type": "string" - }, - "jsonobject": { - "type": "object" - } - }, - "resources": [ - { - "apiVersion": "2015-11-01-preview", - "name": "[concat(parameters('parentResourceName'), '/', parameters('managementConfigurationName'), '-', parameters('jsonobject').displayName)]", - "type": "Microsoft.OperationalInsights/workspaces/savedsearches", - "dependsOn": [], - "properties": { - "ETag": "*", - "Category": "A-Templated", - "DisplayName": "[parameters('jsonobject').displayName]", - "Query": "[parameters('jsonobject').query]", - "Version": 1 - } - } - ], - "outputs": {} - }, - "parameters": [ - { - "name": "jsonobject", - "value": { - "displayName": "abcde", - "query": "hello" - } - } - ] - } - } +{ + "parameters": { + "api-version": "2015-11-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/ManagementConfiguration/managementConfiguration1", + "location": "East US", + "name": "managementConfiguration1", + "type": "Microsoft.OperationsManagement/ManagementConfigurations", + "properties": { + "applicationId": "/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/managementConfiguration1", + "parentResourceType": "Microsoft.OperationalInsights/workspaces", + "template": { + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "contentVersion": "1.0.0.0", + "parameters": { + "parentResourceName": { + "type": "string" + }, + "managementConfigurationName": { + "type": "string" + }, + "jsonobject": { + "type": "object" + } + }, + "resources": [ + { + "apiVersion": "2015-11-01-preview", + "name": "[concat(parameters('parentResourceName'), '/', parameters('managementConfigurationName'), '-', parameters('jsonobject').displayName)]", + "type": "Microsoft.OperationalInsights/workspaces/savedsearches", + "dependsOn": [], + "properties": { + "ETag": "*", + "Category": "A-Templated", + "DisplayName": "[parameters('jsonobject').displayName]", + "Query": "[parameters('jsonobject').query]", + "Version": 1 + } + } + ], + "outputs": {} + }, + "parameters": [ + { + "name": "jsonobject", + "value": { + "displayName": "abcde", + "query": "hello" + } + } ] + } } + ] } - } \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/OperationsList.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/OperationsList.json index 81833005cb82..7e3726a85e74 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/OperationsList.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/OperationsList.json @@ -5,43 +5,43 @@ "responses": { "200": { "body": [ - { - "name": "Microsoft.OperationsManagement/solutions/write", - "display": { - "provider": "Microsoft Operations Management", - "resource": "Solutions", - "operation": "Create new OMS solution", - "description": "Create new OMS solution" - } - }, - { - "name": "Microsoft.OperationsManagement/solutions/read", - "display": { - "provider": "Microsoft Operations Management", - "resource": "Solutions", - "operation": "Get existing OMS solution", - "description": "Get exiting OMS solution" - } - }, - { - "name": "Microsoft.OperationsManagement/solutions/delete", - "display": { - "provider": "Microsoft Operations Management", - "resource": "Solutions", - "operation": "Delete existing OMS solution", - "description": "Delete existing OMS solution" - } - }, - { - "name": "Microsoft.OperationsManagement/register/action", - "display": { - "provider": "Microsoft Operations Management", - "resource": "Register", - "operation": "Register a subscription to a resource provider.", - "description": "Register a subscription to a resource provider." - } + { + "name": "Microsoft.OperationsManagement/solutions/write", + "display": { + "provider": "Microsoft Operations Management", + "resource": "Solutions", + "operation": "Create new OMS solution", + "description": "Create new OMS solution" } - ] + }, + { + "name": "Microsoft.OperationsManagement/solutions/read", + "display": { + "provider": "Microsoft Operations Management", + "resource": "Solutions", + "operation": "Get existing OMS solution", + "description": "Get exiting OMS solution" + } + }, + { + "name": "Microsoft.OperationsManagement/solutions/delete", + "display": { + "provider": "Microsoft Operations Management", + "resource": "Solutions", + "operation": "Delete existing OMS solution", + "description": "Delete existing OMS solution" + } + }, + { + "name": "Microsoft.OperationsManagement/register/action", + "display": { + "provider": "Microsoft Operations Management", + "resource": "Register", + "operation": "Register a subscription to a resource provider.", + "description": "Register a subscription to a resource provider." + } + } + ] } } -} \ No newline at end of file +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionCreate.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionCreate.json index aeef13d17956..323a71b9332f 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionCreate.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionCreate.json @@ -1,56 +1,56 @@ { - "parameters":{ - "solutionName":"solution1", - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid", - "parameters":{ - "location":"East US", - "properties":{ - "workspaceResourceId":"/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", - "containedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" - ], - "referencedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" - ] - }, - "plan":{ - "name":"name1", - "product":"product1", - "publisher":"publisher1", - "promotionCode":"promocode1" - } - } - }, - "responses":{ - "201":{ - "body":{ - "id":"subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationsManagement/solutions/solution1", - "location":"East US", - "name":"solution1", - "type":"Microsoft.OperationsManagement/solution", - "properties":{ - "provisioningState": "Succeeded", - "workspaceResourceId":"/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", - "containedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" - ], - "referencedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" - ] - }, - "plan":{ - "name":"name1", - "publisher":"publisher1", - "promotionCode":"promocode1", - "product":"product1" - } - } + "parameters": { + "solutionName": "solution1", + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid", + "parameters": { + "location": "East US", + "properties": { + "workspaceResourceId": "/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", + "containedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" + ], + "referencedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" + ] + }, + "plan": { + "name": "name1", + "product": "product1", + "publisher": "publisher1", + "promotionCode": "promocode1" + } + } + }, + "responses": { + "201": { + "body": { + "id": "subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationsManagement/solutions/solution1", + "location": "East US", + "name": "solution1", + "type": "Microsoft.OperationsManagement/solution", + "properties": { + "provisioningState": "Succeeded", + "workspaceResourceId": "/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", + "containedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" + ], + "referencedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" + ] + }, + "plan": { + "name": "name1", + "publisher": "publisher1", + "promotionCode": "promocode1", + "product": "product1" } + } } -} \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionDelete.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionDelete.json index 706cdc35f789..6abb914ad4a7 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionDelete.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionDelete.json @@ -1,11 +1,11 @@ { - "parameters":{ - "solutionName":"solution1", - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid" - }, - "responses":{ - "200":{} - } -} \ No newline at end of file + "parameters": { + "solutionName": "solution1", + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": {} + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionGet.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionGet.json index 361e2ba2dbf5..994402a6b09a 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionGet.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionGet.json @@ -1,36 +1,36 @@ - { - "parameters":{ - "solutionName":"solution1", - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid" - }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/solutions/solution1", - "location":"East US", - "name":"solution1", - "type":"Microsoft.OperationsManagement/solutions", - "properties":{ - "provisioningState": "Succeeded", - "workspaceResourceId":"/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", - "containedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" - ], - "referencedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" - ] - }, - "plan":{ - "name":"name1", - "publisher":"publisher1", - "promotionCode":"promocode1", - "product":"product1" - } - } +{ + "parameters": { + "solutionName": "solution1", + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/solutions/solution1", + "location": "East US", + "name": "solution1", + "type": "Microsoft.OperationsManagement/solutions", + "properties": { + "provisioningState": "Succeeded", + "workspaceResourceId": "/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", + "containedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" + ], + "referencedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" + ] + }, + "plan": { + "name": "name1", + "publisher": "publisher1", + "promotionCode": "promocode1", + "product": "product1" } + } } - } \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionList.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionList.json index 381bf8e21f9f..83308db730ab 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionList.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionList.json @@ -1,39 +1,39 @@ - { - "parameters":{ - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id":"/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/solutions/solution1", - "location":"East US", - "name":"solution1", - "type":"Microsoft.OperationsManagement/solutions", - "properties":{ - "provisioningState": "Succeeded", - "workspaceResourceId":"/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", - "containedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" - ], - "referencedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" - ] - }, - "plan":{ - "name":"name1", - "publisher":"publisher1", - "promotionCode":"promocode1", - "product":"product1" - } - } - ] +{ + "parameters": { + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/solutions/solution1", + "location": "East US", + "name": "solution1", + "type": "Microsoft.OperationsManagement/solutions", + "properties": { + "provisioningState": "Succeeded", + "workspaceResourceId": "/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", + "containedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" + ], + "referencedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" + ] + }, + "plan": { + "name": "name1", + "publisher": "publisher1", + "promotionCode": "promocode1", + "product": "product1" } - } + } + ] + } } - } \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionListForSubscription.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionListForSubscription.json index c5229fb613cc..f25c3f165c40 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionListForSubscription.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionListForSubscription.json @@ -1,38 +1,38 @@ - { - "parameters":{ - "api-version":"2015-11-01-preview", - "subscriptionId":"subid" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id":"/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/solutions/solution1", - "location":"East US", - "name":"solution1", - "type":"Microsoft.OperationsManagement/solutions", - "properties":{ - "provisioningState": "Succeeded", - "workspaceResourceId":"/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", - "containedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" - ], - "referencedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" - ] - }, - "plan":{ - "name":"name1", - "publisher":"publisher1", - "promotionCode":"promocode1", - "product":"product1" - } - } - ] +{ + "parameters": { + "api-version": "2015-11-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.OperationsManagement/solutions/solution1", + "location": "East US", + "name": "solution1", + "type": "Microsoft.OperationsManagement/solutions", + "properties": { + "provisioningState": "Succeeded", + "workspaceResourceId": "/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", + "containedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" + ], + "referencedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" + ] + }, + "plan": { + "name": "name1", + "publisher": "publisher1", + "promotionCode": "promocode1", + "product": "product1" } - } + } + ] + } } - } \ No newline at end of file + } +} diff --git a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionUpdate.json b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionUpdate.json index 1455e17f0343..bd75972a19e8 100644 --- a/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionUpdate.json +++ b/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/SolutionUpdate.json @@ -1,46 +1,46 @@ { - "parameters":{ - "solutionName":"solution1", - "resourceGroupName":"rg1", - "api-version":"2015-11-01-preview", - "subscriptionId":"subid", - "parameters":{ - "tags": { - "Environment": "Test", - "Dept": "IT" - } - } - }, - "responses":{ - "200":{ - "body":{ - "id":"subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationsManagement/solutions/solution1", - "location":"East US", - "name":"solution1", - "type":"Microsoft.OperationsManagement/solution", - "properties":{ - "provisioningState": "Succeeded", - "workspaceResourceId":"/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", - "containedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" - ], - "referencedResources":[ - "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", - "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" - ] - }, - "plan":{ - "name":"name1", - "publisher":"publisher1", - "promotionCode":"promocode1", - "product":"product1" - }, - "tags": { - "Environment": "Test", - "Dept": "IT" - } - } + "parameters": { + "solutionName": "solution1", + "resourceGroupName": "rg1", + "api-version": "2015-11-01-preview", + "subscriptionId": "subid", + "parameters": { + "tags": { + "Environment": "Test", + "Dept": "IT" + } + } + }, + "responses": { + "200": { + "body": { + "id": "subscriptions/subid/resourcegroups/rg1/providers/Microsoft.OperationsManagement/solutions/solution1", + "location": "East US", + "name": "solution1", + "type": "Microsoft.OperationsManagement/solution", + "properties": { + "provisioningState": "Succeeded", + "workspaceResourceId": "/subscriptions/sub2/resourceGroups/rg2/providers/Microsoft.OperationalInsights/workspaces/ws1", + "containedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource1", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource2" + ], + "referencedResources": [ + "/subscriptions/sub2/resourceGroups/rg2/providers/provider1/resources/resource2", + "/subscriptions/sub2/resourceGroups/rg2/providers/provider2/resources/resource3" + ] + }, + "plan": { + "name": "name1", + "publisher": "publisher1", + "promotionCode": "promocode1", + "product": "product1" + }, + "tags": { + "Environment": "Test", + "Dept": "IT" } + } } -} \ No newline at end of file + } +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndAggregateOnly.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndAggregateOnly.json index 19fdfe3892a1..080f495d98ed 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndAggregateOnly.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndAggregateOnly.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json index 0f6f72e9a190..bea979bd4e18 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json index b26724d30dde..4c32292d05d3 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndMultipleGroups.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndMultipleGroups.json index fa7245208b18..8e430279583a 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndMultipleGroups.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_FilterAndMultipleGroups.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryManagementGroupScope.json index b1f067647e55..2d6d634a5f89 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryManagementGroupScope.json @@ -215,4 +215,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryNestedResourceScope.json index 108398679652..64ddbce20227 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryNestedResourceScope.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryResourceGroupScope.json index de3ef8f85c41..161e144225e0 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyEventsResource": "default", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2017-08-09-preview" }, "responses": { @@ -215,4 +215,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryResourceScope.json index 4b2a308e07fc..5c09ca2cb17a 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QueryResourceScope.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json index 2afdac243708..361ef24672c1 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json index db6d9b7e4766..35a8a5e7ce2c 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionScope.json index 1391d87459ed..c04d545cd0a1 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_QuerySubscriptionScope.json @@ -214,4 +214,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json index a92381298268..3e293614ac05 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndAggregateOnly.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndAggregateOnly.json index ba77d538455c..6b575c0de1d4 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndAggregateOnly.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndAggregateOnly.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json index 08ad43bf0cd9..441a24f40e70 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json @@ -6,7 +6,7 @@ "$from": "2018-02-05T18:00:00Z", "$filter": "IsCompliant eq false and (PolicyDefinitionAction eq 'audit' or PolicyDefinitionAction eq 'deny')", "$apply": "groupby((PolicyAssignmentId, PolicyDefinitionId, PolicyDefinitionAction, ResourceId), aggregate($count as NumAuditDenyNonComplianceRecords))", - "$orderby": "NumAuditDenyNonComplianceRecords desc", + "$orderby": "NumAuditDenyNonComplianceRecords desc", "$top": 2 }, "responses": { @@ -65,4 +65,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json index 20c1afea661d..600502646e67 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndMultipleGroups.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndMultipleGroups.json index 637bee4487e5..2bb7c23f1221 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndMultipleGroups.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_FilterAndMultipleGroups.json @@ -120,4 +120,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_ListOperations.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_ListOperations.json index d5a2b53cb332..ddf1f237fc01 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_ListOperations.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_ListOperations.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryManagementGroupScope.json index b8fd01144798..b2108b58f0d8 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryManagementGroupScope.json @@ -201,4 +201,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryNestedResourceScope.json index 472b013ee782..4e5ae94a1d4f 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryNestedResourceScope.json @@ -200,4 +200,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryResourceGroupScope.json index db139dfd14f8..0211bf24bbd7 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyStatesResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2017-08-09-preview" }, "responses": { @@ -201,4 +201,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryResourceScope.json index 8271ca16056d..7d491681ad82 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QueryResourceScope.json @@ -200,4 +200,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json index e2a800113ec3..be719a34c81b 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json @@ -200,4 +200,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json index 78f90110965d..5a6de0c149be 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json @@ -200,4 +200,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionScope.json index d2c4bc025675..1a0e1bb082e3 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_QuerySubscriptionScope.json @@ -200,4 +200,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_TimeRangeSortSelectTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_TimeRangeSortSelectTop.json index 14ebadc58bf9..0e1b4283742c 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_TimeRangeSortSelectTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/examples/PolicyStates_TimeRangeSortSelectTop.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/policyEvents.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/policyEvents.json index 2b1dcc6b3740..96326ef6f47c 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/policyEvents.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/policyEvents.json @@ -84,7 +84,9 @@ } }, "x-ms-examples": { - "Query at management group scope": { "$ref": "./examples/PolicyEvents_QueryManagementGroupScope.json" } + "Query at management group scope": { + "$ref": "./examples/PolicyEvents_QueryManagementGroupScope.json" + } } } }, @@ -139,12 +141,24 @@ } }, "x-ms-examples": { - "Query at subscription scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionScope.json" }, - "Time range; sort, select and limit": { "$ref": "./examples/PolicyEvents_TimeRangeSortSelectTop.json" }, - "Filter and group with aggregate": { "$ref": "./examples/PolicyEvents_FilterAndGroupByWithAggregate.json" }, - "Filter and group without aggregate": { "$ref": "./examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json" }, - "Filter and aggregate only": { "$ref": "./examples/PolicyEvents_FilterAndAggregateOnly.json" }, - "Filter and multiple groups": { "$ref": "./examples/PolicyEvents_FilterAndMultipleGroups.json" } + "Query at subscription scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionScope.json" + }, + "Time range; sort, select and limit": { + "$ref": "./examples/PolicyEvents_TimeRangeSortSelectTop.json" + }, + "Filter and group with aggregate": { + "$ref": "./examples/PolicyEvents_FilterAndGroupByWithAggregate.json" + }, + "Filter and group without aggregate": { + "$ref": "./examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json" + }, + "Filter and aggregate only": { + "$ref": "./examples/PolicyEvents_FilterAndAggregateOnly.json" + }, + "Filter and multiple groups": { + "$ref": "./examples/PolicyEvents_FilterAndMultipleGroups.json" + } } } }, @@ -202,7 +216,9 @@ } }, "x-ms-examples": { - "Query at resource group scope": { "$ref": "./examples/PolicyEvents_QueryResourceGroupScope.json" } + "Query at resource group scope": { + "$ref": "./examples/PolicyEvents_QueryResourceGroupScope.json" + } } } }, @@ -257,10 +273,18 @@ } }, "x-ms-examples": { - "Query at resource scope": { "$ref": "./examples/PolicyEvents_QueryResourceScope.json" }, - "Query at subscription level resource scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json" }, - "Query at nested resource scope": { "$ref": "./examples/PolicyEvents_QueryNestedResourceScope.json" }, - "Query at subscription level nested resource scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json" } + "Query at resource scope": { + "$ref": "./examples/PolicyEvents_QueryResourceScope.json" + }, + "Query at subscription level resource scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json" + }, + "Query at nested resource scope": { + "$ref": "./examples/PolicyEvents_QueryNestedResourceScope.json" + }, + "Query at subscription level nested resource scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json" + } } } } @@ -411,7 +435,7 @@ "description": "Query result rows, each representing a policy event record.", "type": "array", "items": { - "description": "Query result row.", + "description": "Query result row.", "type": "array", "items": { "description": "Each column of the query result row." @@ -436,7 +460,7 @@ "description": "Data type of the column.", "type": "string" } - } + } }, "QueryFailure": { "description": "Error response.", @@ -610,4 +634,4 @@ "x-ms-client-name": "Apply" } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/policyStates.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/policyStates.json index 5703f2a417e1..c6381cb84eb2 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/policyStates.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-08-09-preview/policyStates.json @@ -84,7 +84,9 @@ } }, "x-ms-examples": { - "Query latest at management group scope": { "$ref": "./examples/PolicyStates_QueryManagementGroupScope.json" } + "Query latest at management group scope": { + "$ref": "./examples/PolicyStates_QueryManagementGroupScope.json" + } } } }, @@ -139,12 +141,24 @@ } }, "x-ms-examples": { - "Query latest at subscription scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionScope.json" }, - "Time range; sort, select and limit": { "$ref": "./examples/PolicyStates_TimeRangeSortSelectTop.json" }, - "Filter and group with aggregate": { "$ref": "./examples/PolicyStates_FilterAndGroupByWithAggregate.json" }, - "Filter and group without aggregate": { "$ref": "./examples/PolicyStates_FilterAndGroupByWithoutAggregate.json" }, - "Filter and aggregate only": { "$ref": "./examples/PolicyStates_FilterAndAggregateOnly.json" }, - "Filter and multiple groups": { "$ref": "./examples/PolicyStates_FilterAndMultipleGroups.json" } + "Query latest at subscription scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionScope.json" + }, + "Time range; sort, select and limit": { + "$ref": "./examples/PolicyStates_TimeRangeSortSelectTop.json" + }, + "Filter and group with aggregate": { + "$ref": "./examples/PolicyStates_FilterAndGroupByWithAggregate.json" + }, + "Filter and group without aggregate": { + "$ref": "./examples/PolicyStates_FilterAndGroupByWithoutAggregate.json" + }, + "Filter and aggregate only": { + "$ref": "./examples/PolicyStates_FilterAndAggregateOnly.json" + }, + "Filter and multiple groups": { + "$ref": "./examples/PolicyStates_FilterAndMultipleGroups.json" + } } } }, @@ -202,7 +216,9 @@ } }, "x-ms-examples": { - "Query latest at resource group scope": { "$ref": "./examples/PolicyStates_QueryResourceGroupScope.json" } + "Query latest at resource group scope": { + "$ref": "./examples/PolicyStates_QueryResourceGroupScope.json" + } } } }, @@ -257,10 +273,18 @@ } }, "x-ms-examples": { - "Query all policy states at resource scope": { "$ref": "./examples/PolicyStates_QueryResourceScope.json" }, - "Query all policy states at subscription level resource scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelResourceScope.json" }, - "Query all policy states at nested resource scope": { "$ref": "./examples/PolicyStates_QueryNestedResourceScope.json" }, - "Query all policy states at subscription level nested resource scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json" } + "Query all policy states at resource scope": { + "$ref": "./examples/PolicyStates_QueryResourceScope.json" + }, + "Query all policy states at subscription level resource scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelResourceScope.json" + }, + "Query all policy states at nested resource scope": { + "$ref": "./examples/PolicyStates_QueryNestedResourceScope.json" + }, + "Query all policy states at subscription level nested resource scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json" + } } } }, @@ -288,7 +312,9 @@ } }, "x-ms-examples": { - "List operations": { "$ref": "./examples/PolicyStates_ListOperations.json" } + "List operations": { + "$ref": "./examples/PolicyStates_ListOperations.json" + } } } } @@ -431,7 +457,7 @@ "description": "Query result rows, each representing a policy state record.", "type": "array", "items": { - "description": "Query result row.", + "description": "Query result row.", "type": "array", "items": { "description": "Each column of the query result row." @@ -456,7 +482,7 @@ "description": "Data type of the column.", "type": "string" } - } + } }, "QueryFailure": { "description": "Error response.", @@ -677,4 +703,4 @@ "x-ms-client-name": "Apply" } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndAggregateOnly.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndAggregateOnly.json index 0ca1a4b02617..f9287993f216 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndAggregateOnly.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndAggregateOnly.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json index 77d555367519..0626349ed417 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json index 3d88615e5f30..9ea73c34941e 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndMultipleGroups.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndMultipleGroups.json index a4d6f148c8f3..f0c3e25cbdec 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndMultipleGroups.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_FilterAndMultipleGroups.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_GetMetadata.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_GetMetadata.json index 46af2d35d0da..5d1fb26610ec 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_GetMetadata.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_GetMetadata.json @@ -1,6 +1,6 @@ { "parameters": { - "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", + "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", "api-version": "2017-10-17-preview" }, "responses": { @@ -11,4 +11,4 @@ "body": " Org.OData.Capabilities.V1.ConformanceLevelType/Minimal application/json;odata.metadata=minimal;IEEE754Compatible=false;odata.streaming=true application/json;odata.metadata=none;IEEE754Compatible=false;odata.streaming=true " } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryManagementGroupScope.json index 0d6f25644a88..f74c50eda8bf 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryManagementGroupScope.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryNestedResourceScope.json index aafd6dee8bc2..efdee749f550 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryNestedResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryResourceGroupScope.json index 86ca4e519e5a..172c08a1003a 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyEventsResource": "default", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2017-10-17-preview" }, "responses": { @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryResourceScope.json index 78bee2e47c43..2c1e88e196e1 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QueryResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json index dc3723aff046..f22c55656fbc 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json index 08c4d91c6f27..bd7a0fd4f478 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionScope.json index 20ad429a16c3..b86d5e25e82a 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_QuerySubscriptionScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json index 761a5f9ec917..2d44d5f45108 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndAggregateOnly.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndAggregateOnly.json index 9a77705b9f87..5bbea899ec5d 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndAggregateOnly.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndAggregateOnly.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json index 4a5653af6f3b..b909dd8c9312 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json @@ -6,7 +6,7 @@ "$from": "2018-02-05T18:00:00Z", "$filter": "IsCompliant eq false and (PolicyDefinitionAction eq 'audit' or PolicyDefinitionAction eq 'deny')", "$apply": "groupby((PolicyAssignmentId, PolicyDefinitionId, PolicyDefinitionAction, ResourceId), aggregate($count as NumAuditDenyNonComplianceRecords))", - "$orderby": "NumAuditDenyNonComplianceRecords desc", + "$orderby": "NumAuditDenyNonComplianceRecords desc", "$top": 2 }, "responses": { @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json index 91fb36d5f795..6cc2b32c348a 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndMultipleGroups.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndMultipleGroups.json index 5486bac2abd0..b97bd3c718f5 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndMultipleGroups.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_FilterAndMultipleGroups.json @@ -108,4 +108,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_GetMetadata.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_GetMetadata.json index 45f6e3b5c72f..fa7a7ba8dd72 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_GetMetadata.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_GetMetadata.json @@ -1,6 +1,6 @@ { "parameters": { - "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", + "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", "api-version": "2017-10-17-preview" }, "responses": { @@ -11,4 +11,4 @@ "body": " Org.OData.Capabilities.V1.ConformanceLevelType/Minimal application/json;odata.metadata=minimal;IEEE754Compatible=false;odata.streaming=true application/json;odata.metadata=none;IEEE754Compatible=false;odata.streaming=true " } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_ListOperations.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_ListOperations.json index 7dfa6867003f..d92a9e40bcf8 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_ListOperations.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_ListOperations.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryManagementGroupScope.json index c14cf9a26164..056f90186abe 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryManagementGroupScope.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryNestedResourceScope.json index dbc832842cc8..edd479e4c1cc 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryNestedResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryResourceGroupScope.json index a0b163fc24e9..5e2d9f295d2f 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyStatesResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2017-10-17-preview" }, "responses": { @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryResourceScope.json index 73ded1e6be65..5ed1a700ca7d 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QueryResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json index e38d715199ef..576fd8712c44 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json index 52f7ef267b0f..43c7d7368139 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionScope.json index b0f0aa96c8a1..84f023c0c4a2 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_QuerySubscriptionScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_TimeRangeSortSelectTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_TimeRangeSortSelectTop.json index cc5cc28b89d1..9cc4e6079eb1 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_TimeRangeSortSelectTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/examples/PolicyStates_TimeRangeSortSelectTop.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/policyEvents.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/policyEvents.json index 4fd235df9bbe..aa5b43bebfef 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/policyEvents.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/policyEvents.json @@ -84,7 +84,9 @@ } }, "x-ms-examples": { - "Query at management group scope": { "$ref": "./examples/PolicyEvents_QueryManagementGroupScope.json" } + "Query at management group scope": { + "$ref": "./examples/PolicyEvents_QueryManagementGroupScope.json" + } } } }, @@ -139,12 +141,24 @@ } }, "x-ms-examples": { - "Query at subscription scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionScope.json" }, - "Time range; sort, select and limit": { "$ref": "./examples/PolicyEvents_TimeRangeSortSelectTop.json" }, - "Filter and group with aggregate": { "$ref": "./examples/PolicyEvents_FilterAndGroupByWithAggregate.json" }, - "Filter and group without aggregate": { "$ref": "./examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json" }, - "Filter and aggregate only": { "$ref": "./examples/PolicyEvents_FilterAndAggregateOnly.json" }, - "Filter and multiple groups": { "$ref": "./examples/PolicyEvents_FilterAndMultipleGroups.json" } + "Query at subscription scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionScope.json" + }, + "Time range; sort, select and limit": { + "$ref": "./examples/PolicyEvents_TimeRangeSortSelectTop.json" + }, + "Filter and group with aggregate": { + "$ref": "./examples/PolicyEvents_FilterAndGroupByWithAggregate.json" + }, + "Filter and group without aggregate": { + "$ref": "./examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json" + }, + "Filter and aggregate only": { + "$ref": "./examples/PolicyEvents_FilterAndAggregateOnly.json" + }, + "Filter and multiple groups": { + "$ref": "./examples/PolicyEvents_FilterAndMultipleGroups.json" + } } } }, @@ -202,7 +216,9 @@ } }, "x-ms-examples": { - "Query at resource group scope": { "$ref": "./examples/PolicyEvents_QueryResourceGroupScope.json" } + "Query at resource group scope": { + "$ref": "./examples/PolicyEvents_QueryResourceGroupScope.json" + } } } }, @@ -257,10 +273,18 @@ } }, "x-ms-examples": { - "Query at resource scope": { "$ref": "./examples/PolicyEvents_QueryResourceScope.json" }, - "Query at subscription level resource scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json" }, - "Query at nested resource scope": { "$ref": "./examples/PolicyEvents_QueryNestedResourceScope.json" }, - "Query at subscription level nested resource scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json" } + "Query at resource scope": { + "$ref": "./examples/PolicyEvents_QueryResourceScope.json" + }, + "Query at subscription level resource scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json" + }, + "Query at nested resource scope": { + "$ref": "./examples/PolicyEvents_QueryNestedResourceScope.json" + }, + "Query at subscription level nested resource scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json" + } } } }, @@ -294,10 +318,12 @@ } }, "x-ms-examples": { - "Get metadata": { "$ref": "./examples/PolicyEvents_GetMetadata.json" } + "Get metadata": { + "$ref": "./examples/PolicyEvents_GetMetadata.json" + } } - } - } + } + } }, "definitions": { "PolicyEventsQueryResults": { @@ -633,4 +659,4 @@ "x-ms-client-name": "Apply" } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/policyStates.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/policyStates.json index a9510214bb1a..3322b8b1b15d 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/policyStates.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-10-17-preview/policyStates.json @@ -84,7 +84,9 @@ } }, "x-ms-examples": { - "Query latest at management group scope": { "$ref": "./examples/PolicyStates_QueryManagementGroupScope.json" } + "Query latest at management group scope": { + "$ref": "./examples/PolicyStates_QueryManagementGroupScope.json" + } } } }, @@ -139,12 +141,24 @@ } }, "x-ms-examples": { - "Query latest at subscription scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionScope.json" }, - "Time range; sort, select and limit": { "$ref": "./examples/PolicyStates_TimeRangeSortSelectTop.json" }, - "Filter and group with aggregate": { "$ref": "./examples/PolicyStates_FilterAndGroupByWithAggregate.json" }, - "Filter and group without aggregate": { "$ref": "./examples/PolicyStates_FilterAndGroupByWithoutAggregate.json" }, - "Filter and aggregate only": { "$ref": "./examples/PolicyStates_FilterAndAggregateOnly.json" }, - "Filter and multiple groups": { "$ref": "./examples/PolicyStates_FilterAndMultipleGroups.json" } + "Query latest at subscription scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionScope.json" + }, + "Time range; sort, select and limit": { + "$ref": "./examples/PolicyStates_TimeRangeSortSelectTop.json" + }, + "Filter and group with aggregate": { + "$ref": "./examples/PolicyStates_FilterAndGroupByWithAggregate.json" + }, + "Filter and group without aggregate": { + "$ref": "./examples/PolicyStates_FilterAndGroupByWithoutAggregate.json" + }, + "Filter and aggregate only": { + "$ref": "./examples/PolicyStates_FilterAndAggregateOnly.json" + }, + "Filter and multiple groups": { + "$ref": "./examples/PolicyStates_FilterAndMultipleGroups.json" + } } } }, @@ -202,7 +216,9 @@ } }, "x-ms-examples": { - "Query latest at resource group scope": { "$ref": "./examples/PolicyStates_QueryResourceGroupScope.json" } + "Query latest at resource group scope": { + "$ref": "./examples/PolicyStates_QueryResourceGroupScope.json" + } } } }, @@ -257,10 +273,18 @@ } }, "x-ms-examples": { - "Query all policy states at resource scope": { "$ref": "./examples/PolicyStates_QueryResourceScope.json" }, - "Query all policy states at subscription level resource scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelResourceScope.json" }, - "Query all policy states at nested resource scope": { "$ref": "./examples/PolicyStates_QueryNestedResourceScope.json" }, - "Query all policy states at subscription level nested resource scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json" } + "Query all policy states at resource scope": { + "$ref": "./examples/PolicyStates_QueryResourceScope.json" + }, + "Query all policy states at subscription level resource scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelResourceScope.json" + }, + "Query all policy states at nested resource scope": { + "$ref": "./examples/PolicyStates_QueryNestedResourceScope.json" + }, + "Query all policy states at subscription level nested resource scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json" + } } } }, @@ -288,7 +312,9 @@ } }, "x-ms-examples": { - "List operations": { "$ref": "./examples/PolicyStates_ListOperations.json" } + "List operations": { + "$ref": "./examples/PolicyStates_ListOperations.json" + } } } }, @@ -322,9 +348,11 @@ } }, "x-ms-examples": { - "Get metadata": { "$ref": "./examples/PolicyStates_GetMetadata.json" } + "Get metadata": { + "$ref": "./examples/PolicyStates_GetMetadata.json" + } } - } + } } }, "definitions": { @@ -706,4 +734,4 @@ "x-ms-client-name": "Apply" } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndAggregateOnly.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndAggregateOnly.json index a3062e9db16e..748d489a3080 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndAggregateOnly.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndAggregateOnly.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json index 022ab140f937..a4789d0c6f44 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndGroupByWithAggregate.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json index ba318c2e7c0a..d77a98dbbf85 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndMultipleGroups.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndMultipleGroups.json index 8c838724c7a9..53c0f3fa05ac 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndMultipleGroups.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_FilterAndMultipleGroups.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_GetMetadata.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_GetMetadata.json index 4fd89e615525..aee4220ba17e 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_GetMetadata.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_GetMetadata.json @@ -1,6 +1,6 @@ { "parameters": { - "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", + "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", "api-version": "2017-12-12-preview" }, "responses": { @@ -11,4 +11,4 @@ "body": " Org.OData.Capabilities.V1.ConformanceLevelType/Minimal application/json;odata.metadata=minimal;IEEE754Compatible=false;odata.streaming=true application/json;odata.metadata=none;IEEE754Compatible=false;odata.streaming=true " } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryManagementGroupScope.json index f8bb22eaf682..c5048016855a 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryManagementGroupScope.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryNestedResourceScope.json index 402bddb8261c..498c651458f3 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryNestedResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json index 8d2fa1415698..1cc59cdabd02 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json @@ -79,4 +79,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceGroupScope.json index 2d88893fb7fc..4587bced2bac 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyEventsResource": "default", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2017-12-12-preview" }, "responses": { @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceScope.json index 373699893a2d..66dd9560c0dc 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QueryResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json index c052cf688275..605dcf5393b5 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json index f9e2e62aed51..cb7c761d61fd 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json index c6c7aa9644c2..4eabcf6b414d 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json index 26b417ffb39e..ae2bbed0b465 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json index ab03f9b6dbcb..7261bbad6dd6 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionScope.json index f086b99c01e0..bb982632da73 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_QuerySubscriptionScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json index f29e6fe38555..c707350c9526 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyEvents_TimeRangeSortSelectTop.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndAggregateOnly.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndAggregateOnly.json index 41cbee61578d..4621c4790a3b 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndAggregateOnly.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndAggregateOnly.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json index b2a9330e4602..101ed7cbd2e2 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json @@ -6,7 +6,7 @@ "$from": "2018-02-05T18:00:00Z", "$filter": "IsCompliant eq false and (PolicyDefinitionAction eq 'audit' or PolicyDefinitionAction eq 'deny')", "$apply": "groupby((PolicyAssignmentId, PolicyDefinitionId, PolicyDefinitionAction, ResourceId), aggregate($count as NumAuditDenyNonComplianceRecords))", - "$orderby": "NumAuditDenyNonComplianceRecords desc", + "$orderby": "NumAuditDenyNonComplianceRecords desc", "$top": 2 }, "responses": { @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json index 66b1d4313104..5c18b994cc9a 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndMultipleGroups.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndMultipleGroups.json index 99670597c2c8..558c989210c5 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndMultipleGroups.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_FilterAndMultipleGroups.json @@ -108,4 +108,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_GetMetadata.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_GetMetadata.json index fb8f8c3e2620..45a4e964c011 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_GetMetadata.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_GetMetadata.json @@ -1,6 +1,6 @@ { "parameters": { - "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", + "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", "api-version": "2017-12-12-preview" }, "responses": { @@ -11,4 +11,4 @@ "body": " Org.OData.Capabilities.V1.ConformanceLevelType/Minimal application/json;odata.metadata=minimal;IEEE754Compatible=false;odata.streaming=true application/json;odata.metadata=none;IEEE754Compatible=false;odata.streaming=true " } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_ListOperations.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_ListOperations.json index e06c8f28ae86..5748e2171ccd 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_ListOperations.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_ListOperations.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryManagementGroupScope.json index efe90a0008d0..101024b4e421 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryManagementGroupScope.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryNestedResourceScope.json index f726792ab748..01e320f7a6a1 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryNestedResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json index 40bab8a3e9d5..0444622917a7 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json @@ -75,4 +75,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceGroupScope.json index 8ff86a37b152..90530f5930a7 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyStatesResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2017-12-12-preview" }, "responses": { @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceScope.json index 94d1121594e6..71dad938952b 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QueryResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json index f30599819154..a72fef261198 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json index f95cc04233bb..a8f2e49db989 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json index e7628e99e314..0f51425e8c1f 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json index 61a473d612c6..22ed627848e8 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json index 7c841710898e..ec95e0a32de1 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionScope.json index 8ddcc6ffcab3..88a63a0f5bd7 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_QuerySubscriptionScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeManagementGroupScope.json index 1aacf3df0b2a..afe18645adf7 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeManagementGroupScope.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json index 09f4625afaba..008735589b93 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceGroupScope.json index 147569e8323f..a0ebd225d786 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyStatesSummaryResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2017-12-12-preview" }, "responses": { @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceScope.json index 4721644012fb..644357a6f495 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeResourceScope.json @@ -331,4 +331,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json index 827514a8d3cd..c3347bd7ba15 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json index 11c50f5e2540..46d441f52e99 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json @@ -103,4 +103,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json index 6b609fed669d..e8b1afe37d58 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionScope.json index 34e5a0c99b89..baed33b54d6d 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_SummarizeSubscriptionScope.json @@ -3,7 +3,7 @@ "policyStatesSummaryResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", "api-version": "2017-12-12-preview", - "$top": 5 + "$top": 5 }, "responses": { "200": { @@ -137,4 +137,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_TimeRangeSortSelectTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_TimeRangeSortSelectTop.json index 9d9e4f61d44f..224d9c5f5c2a 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_TimeRangeSortSelectTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/examples/PolicyStates_TimeRangeSortSelectTop.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/policyEvents.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/policyEvents.json index c2a35fee0074..1adc69d726e7 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/policyEvents.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/policyEvents.json @@ -84,7 +84,9 @@ } }, "x-ms-examples": { - "Query at management group scope": { "$ref": "./examples/PolicyEvents_QueryManagementGroupScope.json" } + "Query at management group scope": { + "$ref": "./examples/PolicyEvents_QueryManagementGroupScope.json" + } } } }, @@ -139,12 +141,24 @@ } }, "x-ms-examples": { - "Query at subscription scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionScope.json" }, - "Time range; sort, select and limit": { "$ref": "./examples/PolicyEvents_TimeRangeSortSelectTop.json" }, - "Filter and group with aggregate": { "$ref": "./examples/PolicyEvents_FilterAndGroupByWithAggregate.json" }, - "Filter and group without aggregate": { "$ref": "./examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json" }, - "Filter and aggregate only": { "$ref": "./examples/PolicyEvents_FilterAndAggregateOnly.json" }, - "Filter and multiple groups": { "$ref": "./examples/PolicyEvents_FilterAndMultipleGroups.json" } + "Query at subscription scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionScope.json" + }, + "Time range; sort, select and limit": { + "$ref": "./examples/PolicyEvents_TimeRangeSortSelectTop.json" + }, + "Filter and group with aggregate": { + "$ref": "./examples/PolicyEvents_FilterAndGroupByWithAggregate.json" + }, + "Filter and group without aggregate": { + "$ref": "./examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json" + }, + "Filter and aggregate only": { + "$ref": "./examples/PolicyEvents_FilterAndAggregateOnly.json" + }, + "Filter and multiple groups": { + "$ref": "./examples/PolicyEvents_FilterAndMultipleGroups.json" + } } } }, @@ -202,7 +216,9 @@ } }, "x-ms-examples": { - "Query at resource group scope": { "$ref": "./examples/PolicyEvents_QueryResourceGroupScope.json" } + "Query at resource group scope": { + "$ref": "./examples/PolicyEvents_QueryResourceGroupScope.json" + } } } }, @@ -257,10 +273,18 @@ } }, "x-ms-examples": { - "Query at resource scope": { "$ref": "./examples/PolicyEvents_QueryResourceScope.json" }, - "Query at subscription level resource scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json" }, - "Query at nested resource scope": { "$ref": "./examples/PolicyEvents_QueryNestedResourceScope.json" }, - "Query at subscription level nested resource scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json" } + "Query at resource scope": { + "$ref": "./examples/PolicyEvents_QueryResourceScope.json" + }, + "Query at subscription level resource scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json" + }, + "Query at nested resource scope": { + "$ref": "./examples/PolicyEvents_QueryNestedResourceScope.json" + }, + "Query at subscription level nested resource scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json" + } } } }, @@ -321,7 +345,9 @@ } }, "x-ms-examples": { - "Query at subscription level policy set definition scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json" } + "Query at subscription level policy set definition scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json" + } } } }, @@ -382,7 +408,9 @@ } }, "x-ms-examples": { - "Query at subscription level policy definition scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json" } + "Query at subscription level policy definition scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json" + } } } }, @@ -443,7 +471,9 @@ } }, "x-ms-examples": { - "Query at subscription level policy assignment scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json" } + "Query at subscription level policy assignment scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json" + } } } }, @@ -507,7 +537,9 @@ } }, "x-ms-examples": { - "Query at resource group level policy assignment scope": { "$ref": "./examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json" } + "Query at resource group level policy assignment scope": { + "$ref": "./examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json" + } } } }, @@ -541,10 +573,12 @@ } }, "x-ms-examples": { - "Get metadata": { "$ref": "./examples/PolicyEvents_GetMetadata.json" } + "Get metadata": { + "$ref": "./examples/PolicyEvents_GetMetadata.json" + } } - } - } + } + } }, "definitions": { "PolicyEventsQueryResults": { @@ -915,4 +949,4 @@ "x-ms-client-name": "Apply" } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/policyStates.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/policyStates.json index 82c78fd4803d..f9802bfe8c16 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/policyStates.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2017-12-12-preview/policyStates.json @@ -84,7 +84,9 @@ } }, "x-ms-examples": { - "Query latest at management group scope": { "$ref": "./examples/PolicyStates_QueryManagementGroupScope.json" } + "Query latest at management group scope": { + "$ref": "./examples/PolicyStates_QueryManagementGroupScope.json" + } } } }, @@ -133,7 +135,9 @@ } }, "x-ms-examples": { - "Summarize at management group scope": { "$ref": "./examples/PolicyStates_SummarizeManagementGroupScope.json" } + "Summarize at management group scope": { + "$ref": "./examples/PolicyStates_SummarizeManagementGroupScope.json" + } } } }, @@ -188,12 +192,24 @@ } }, "x-ms-examples": { - "Query latest at subscription scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionScope.json" }, - "Time range; sort, select and limit": { "$ref": "./examples/PolicyStates_TimeRangeSortSelectTop.json" }, - "Filter and group with aggregate": { "$ref": "./examples/PolicyStates_FilterAndGroupByWithAggregate.json" }, - "Filter and group without aggregate": { "$ref": "./examples/PolicyStates_FilterAndGroupByWithoutAggregate.json" }, - "Filter and aggregate only": { "$ref": "./examples/PolicyStates_FilterAndAggregateOnly.json" }, - "Filter and multiple groups": { "$ref": "./examples/PolicyStates_FilterAndMultipleGroups.json" } + "Query latest at subscription scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionScope.json" + }, + "Time range; sort, select and limit": { + "$ref": "./examples/PolicyStates_TimeRangeSortSelectTop.json" + }, + "Filter and group with aggregate": { + "$ref": "./examples/PolicyStates_FilterAndGroupByWithAggregate.json" + }, + "Filter and group without aggregate": { + "$ref": "./examples/PolicyStates_FilterAndGroupByWithoutAggregate.json" + }, + "Filter and aggregate only": { + "$ref": "./examples/PolicyStates_FilterAndAggregateOnly.json" + }, + "Filter and multiple groups": { + "$ref": "./examples/PolicyStates_FilterAndMultipleGroups.json" + } } } }, @@ -239,7 +255,9 @@ } }, "x-ms-examples": { - "Summarize at subscription scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionScope.json" } + "Summarize at subscription scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionScope.json" + } } } }, @@ -297,7 +315,9 @@ } }, "x-ms-examples": { - "Query latest at resource group scope": { "$ref": "./examples/PolicyStates_QueryResourceGroupScope.json" } + "Query latest at resource group scope": { + "$ref": "./examples/PolicyStates_QueryResourceGroupScope.json" + } } } }, @@ -346,7 +366,9 @@ } }, "x-ms-examples": { - "Summarize at resource group scope": { "$ref": "./examples/PolicyStates_SummarizeResourceGroupScope.json" } + "Summarize at resource group scope": { + "$ref": "./examples/PolicyStates_SummarizeResourceGroupScope.json" + } } } }, @@ -401,10 +423,18 @@ } }, "x-ms-examples": { - "Query all policy states at resource scope": { "$ref": "./examples/PolicyStates_QueryResourceScope.json" }, - "Query all policy states at subscription level resource scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelResourceScope.json" }, - "Query all policy states at nested resource scope": { "$ref": "./examples/PolicyStates_QueryNestedResourceScope.json" }, - "Query all policy states at subscription level nested resource scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json" } + "Query all policy states at resource scope": { + "$ref": "./examples/PolicyStates_QueryResourceScope.json" + }, + "Query all policy states at subscription level resource scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelResourceScope.json" + }, + "Query all policy states at nested resource scope": { + "$ref": "./examples/PolicyStates_QueryNestedResourceScope.json" + }, + "Query all policy states at subscription level nested resource scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json" + } } } }, @@ -450,7 +480,9 @@ } }, "x-ms-examples": { - "Summarize at resource scope": { "$ref": "./examples/PolicyStates_SummarizeResourceScope.json" } + "Summarize at resource scope": { + "$ref": "./examples/PolicyStates_SummarizeResourceScope.json" + } } } }, @@ -511,7 +543,9 @@ } }, "x-ms-examples": { - "Query latest at subscription level policy set definition scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json" } + "Query latest at subscription level policy set definition scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json" + } } } }, @@ -563,7 +597,9 @@ } }, "x-ms-examples": { - "Summarize at policy set definition scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json" } + "Summarize at policy set definition scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json" + } } } }, @@ -624,7 +660,9 @@ } }, "x-ms-examples": { - "Query latest at subscription level policy definition scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json" } + "Query latest at subscription level policy definition scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json" + } } } }, @@ -676,7 +714,9 @@ } }, "x-ms-examples": { - "Summarize at policy definition scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json" } + "Summarize at policy definition scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json" + } } } }, @@ -737,7 +777,9 @@ } }, "x-ms-examples": { - "Query latest at subscription level policy assignment scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json" } + "Query latest at subscription level policy assignment scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json" + } } } }, @@ -789,7 +831,9 @@ } }, "x-ms-examples": { - "Summarize at policy assignment scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json" } + "Summarize at policy assignment scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json" + } } } }, @@ -853,7 +897,9 @@ } }, "x-ms-examples": { - "Query latest at resource group level policy assignment scope": { "$ref": "./examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json" } + "Query latest at resource group level policy assignment scope": { + "$ref": "./examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json" + } } } }, @@ -908,7 +954,9 @@ } }, "x-ms-examples": { - "Summarize at policy assignment scope": { "$ref": "./examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json" } + "Summarize at policy assignment scope": { + "$ref": "./examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json" + } } } }, @@ -936,7 +984,9 @@ } }, "x-ms-examples": { - "List operations": { "$ref": "./examples/PolicyStates_ListOperations.json" } + "List operations": { + "$ref": "./examples/PolicyStates_ListOperations.json" + } } } }, @@ -970,9 +1020,11 @@ } }, "x-ms-examples": { - "Get metadata": { "$ref": "./examples/PolicyStates_GetMetadata.json" } + "Get metadata": { + "$ref": "./examples/PolicyStates_GetMetadata.json" + } } - } + } } }, "definitions": { @@ -1223,7 +1275,7 @@ "description": "Non-compliance summary for the policy definition.", "$ref": "#/definitions/SummaryResults" } - } + } }, "QueryFailure": { "description": "Error response.", @@ -1509,4 +1561,4 @@ "x-ms-client-name": "Apply" } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndAggregateOnly.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndAggregateOnly.json index 4fcc6ac51319..a68531eebdeb 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndAggregateOnly.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndAggregateOnly.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json index 11574b7afa35..1a772a52ef25 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndGroupByWithAggregate.json @@ -6,7 +6,7 @@ "$from": "2018-02-05T18:00:00Z", "$filter": "IsCompliant eq false and (PolicyDefinitionAction eq 'audit' or PolicyDefinitionAction eq 'deny')", "$apply": "groupby((PolicyAssignmentId, PolicyDefinitionId, PolicyDefinitionAction, ResourceId), aggregate($count as NumAuditDenyNonComplianceRecords))", - "$orderby": "NumAuditDenyNonComplianceRecords desc", + "$orderby": "NumAuditDenyNonComplianceRecords desc", "$top": 2 }, "responses": { @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json index 57ab2cf53a13..1fd046568eda 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndMultipleGroups.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndMultipleGroups.json index 72b7f24e1c09..6ff103d3ccd6 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndMultipleGroups.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_FilterAndMultipleGroups.json @@ -108,4 +108,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_GetMetadata.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_GetMetadata.json index 243f3ef67de0..e2837c4133e6 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_GetMetadata.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_GetMetadata.json @@ -1,6 +1,6 @@ { "parameters": { - "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", + "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", "api-version": "2018-07-01-preview" }, "responses": { @@ -11,4 +11,4 @@ "body": " Org.OData.Capabilities.V1.ConformanceLevelType/Minimal application/json;odata.metadata=minimal;IEEE754Compatible=false;odata.streaming=true application/json;odata.metadata=none;IEEE754Compatible=false;odata.streaming=true " } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_ListOperations.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_ListOperations.json index fde95b67be92..950c5a69df10 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_ListOperations.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_ListOperations.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryManagementGroupScope.json index f42b7d750123..f4247ec6a32a 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryManagementGroupScope.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryNestedResourceScope.json index 7c41461ed920..f81a3a190324 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryNestedResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json index 64dd190c3361..e689951eb6b2 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json @@ -75,4 +75,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceGroupScope.json index ce9eb2692a22..f517199f2061 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyStatesResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2018-07-01-preview" }, "responses": { @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceScope.json index f70fdf4a8563..1028e62ce338 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceScopeExpandPolicyEvaluationDetails.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceScopeExpandPolicyEvaluationDetails.json index f0dea990f1d9..668bcdc87ed5 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceScopeExpandPolicyEvaluationDetails.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QueryResourceScopeExpandPolicyEvaluationDetails.json @@ -111,4 +111,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json index 637963528da3..d2df10b60eaf 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json index c8f4789aa3b1..f1e9bd7987bb 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json index f64b514f299e..63921a3d3594 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json index 5b2734f5ca0e..73d403483e1b 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json index fc4d370ddf7d..a2bea701ebd6 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionScope.json index 44c5cce101bc..38b55d98aa9c 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_QuerySubscriptionScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeManagementGroupScope.json index 1af9f1f5d331..2b8dfb806b91 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeManagementGroupScope.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json index 6de6b2c7ba44..87c4deff59d1 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceGroupScope.json index 40e5acdb8cd8..7d1ee5a0b4bd 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyStatesSummaryResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2018-07-01-preview" }, "responses": { @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceScope.json index 4dd9b0ebc4bb..11789fdee99b 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeResourceScope.json @@ -350,4 +350,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json index ceb06b37a1c0..43de911c1884 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json index adf0fff51c2a..352d533489db 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json @@ -107,4 +107,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json index 62de2e9ba540..339a40fb42d8 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionScope.json index df8b17e9016e..fd81b915d1e9 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_SummarizeSubscriptionScope.json @@ -3,7 +3,7 @@ "policyStatesSummaryResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", "api-version": "2018-07-01-preview", - "$top": 5 + "$top": 5 }, "responses": { "200": { @@ -144,4 +144,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_TimeRangeSortSelectTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_TimeRangeSortSelectTop.json index 67daad9e9a5d..83fd0197d830 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_TimeRangeSortSelectTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyStates_TimeRangeSortSelectTop.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryManagementGroupScope.json index 96e788c245b7..87e364ab179c 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryManagementGroupScope.json @@ -26,7 +26,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-03-09T00:00:00.0000000Z" + "deploymentTime": "2018-03-09T00:00:00.0000000Z" }, "lastModifiedBy": { "policyDetails": { @@ -35,7 +35,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-04-09T00:00:00.0000000Z" + "deploymentTime": "2018-04-09T00:00:00.0000000Z" }, "lastUpdateUtc": "2018-08-09T20:40:17.3585243Z" }, diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryManagementGroupScopeWithFilterAndTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryManagementGroupScopeWithFilterAndTop.json index 1ff3cb7b3702..387921bb458f 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryManagementGroupScopeWithFilterAndTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryManagementGroupScopeWithFilterAndTop.json @@ -28,7 +28,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-03-09T00:00:00.0000000Z" + "deploymentTime": "2018-03-09T00:00:00.0000000Z" }, "lastModifiedBy": { "policyDetails": { @@ -37,7 +37,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-04-09T00:00:00.0000000Z" + "deploymentTime": "2018-04-09T00:00:00.0000000Z" }, "lastUpdateUtc": "2018-08-09T20:40:17.3585243Z" } diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceGroupScope.json index 970eb5c8e595..e3c5551ab27e 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceGroupScope.json @@ -26,7 +26,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-03-09T00:00:00.0000000Z" + "deploymentTime": "2018-03-09T00:00:00.0000000Z" }, "lastModifiedBy": { "policyDetails": { @@ -35,7 +35,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-04-09T00:00:00.0000000Z" + "deploymentTime": "2018-04-09T00:00:00.0000000Z" }, "lastUpdateUtc": "2018-08-09T20:40:17.3585243Z" }, diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceGroupScopeWithFilterAndTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceGroupScopeWithFilterAndTop.json index 984d420fe97a..19d5e9b56701 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceGroupScopeWithFilterAndTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceGroupScopeWithFilterAndTop.json @@ -28,7 +28,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-03-09T00:00:00.0000000Z" + "deploymentTime": "2018-03-09T00:00:00.0000000Z" }, "lastModifiedBy": { "policyDetails": { @@ -37,7 +37,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-04-09T00:00:00.0000000Z" + "deploymentTime": "2018-04-09T00:00:00.0000000Z" }, "lastUpdateUtc": "2018-08-09T20:40:17.3585243Z" } diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceScope.json index 5c1eca9e90fe..e0ff862926a6 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceScope.json @@ -25,7 +25,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-03-09T00:00:00.0000000Z" + "deploymentTime": "2018-03-09T00:00:00.0000000Z" }, "lastModifiedBy": { "policyDetails": { @@ -34,7 +34,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-04-09T00:00:00.0000000Z" + "deploymentTime": "2018-04-09T00:00:00.0000000Z" }, "lastUpdateUtc": "2018-08-09T20:40:17.3585243Z" }, diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceScopeWithFilterAndTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceScopeWithFilterAndTop.json index 11a4ecc335f6..6d4dafdfef62 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceScopeWithFilterAndTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QueryResourceScopeWithFilterAndTop.json @@ -27,7 +27,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-03-09T00:00:00.0000000Z" + "deploymentTime": "2018-03-09T00:00:00.0000000Z" }, "lastModifiedBy": { "policyDetails": { @@ -36,7 +36,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-04-09T00:00:00.0000000Z" + "deploymentTime": "2018-04-09T00:00:00.0000000Z" }, "lastUpdateUtc": "2018-08-09T20:40:17.3585243Z" } diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QuerySubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QuerySubscriptionScope.json index cefd0c5eb5c4..fa5eba324113 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QuerySubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QuerySubscriptionScope.json @@ -25,7 +25,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-03-09T00:00:00.0000000Z" + "deploymentTime": "2018-03-09T00:00:00.0000000Z" }, "lastModifiedBy": { "policyDetails": { @@ -34,7 +34,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-04-09T00:00:00.0000000Z" + "deploymentTime": "2018-04-09T00:00:00.0000000Z" }, "lastUpdateUtc": "2018-08-09T20:40:17.3585243Z" }, diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QuerySubscriptionScopeWithFilterAndTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QuerySubscriptionScopeWithFilterAndTop.json index 2be5370c44c1..429738cfce2d 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QuerySubscriptionScopeWithFilterAndTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/PolicyTrackedResources_QuerySubscriptionScopeWithFilterAndTop.json @@ -27,7 +27,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-03-09T00:00:00.0000000Z" + "deploymentTime": "2018-03-09T00:00:00.0000000Z" }, "lastModifiedBy": { "policyDetails": { @@ -36,7 +36,7 @@ "policyAssignmentScope": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/" }, "deploymentId": "/subscriptions/fff8dfdb-fff3-fff0-fff4-fffdcbe6b2ef/resourceGroups/myResourceGroup/providers/Microsoft.Resources/deployments/deploymentName", - "deploymentTime" : "2018-04-09T00:00:00.0000000Z" + "deploymentTime": "2018-04-09T00:00:00.0000000Z" }, "lastUpdateUtc": "2018-08-09T20:40:17.3585243Z" } diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelManagementGroupScope.json index c958b66cca0f..1a91f4870ff0 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelManagementGroupScope.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelResourceGroupScope.json index 4865929064aa..9821b0f20ef7 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelResourceGroupScope.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelResourceScope.json index d72a6d4b80a3..15365bf34e42 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelResourceScope.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelSubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelSubscriptionScope.json index 029d77cb99b2..ede958105db4 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelSubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CancelSubscriptionScope.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateManagementGroupScope.json index b1f2f5f29705..871a4c149be5 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateManagementGroupScope.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateResourceGroupScope.json index 1a3efa1037fe..bd53989fe21d 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateResourceGroupScope.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateResourceScope.json index d68e3a8d64cc..b1931292e2e5 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateResourceScope.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateSubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateSubscriptionScope.json index f8194dfe1e46..cfa3489b97fb 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateSubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateSubscriptionScope.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateSubscriptionScope_AllProperties.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateSubscriptionScope_AllProperties.json index 188d818aebd7..3effd3c82572 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateSubscriptionScope_AllProperties.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_CreateSubscriptionScope_AllProperties.json @@ -8,7 +8,10 @@ "policyAssignmentId": "/subscriptions/35ee058e-5fa0-414c-8145-3ebb8d09b6e2/providers/microsoft.authorization/policyassignments/b101830944f246d8a14088c5", "policyDefinitionReferenceId": "8c8fa9e4", "filters": { - "locations": [ "eastus", "westus" ] + "locations": [ + "eastus", + "westus" + ] } } } @@ -55,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteManagementGroupScope.json index 309e6bdb7fb9..c7ef3c6ecef6 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteManagementGroupScope.json @@ -29,4 +29,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteResourceGroupScope.json index f2b8de9896af..91b9347067ec 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteResourceGroupScope.json @@ -29,4 +29,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteResourceScope.json index 480c1d20d378..b2d6551a72a0 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteResourceScope.json @@ -28,4 +28,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteSubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteSubscriptionScope.json index 942ee796b0f2..0cdcf72e371d 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteSubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_DeleteSubscriptionScope.json @@ -28,4 +28,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetManagementGroupScope.json index f3baa0284f02..a45d6dbf1ddf 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetManagementGroupScope.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetResourceGroupScope.json index fd4aeb18ee21..b32edd5b4e30 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetResourceGroupScope.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetResourceScope.json index 7d06b9744bf4..ecce21c29da3 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetResourceScope.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetSubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetSubscriptionScope.json index ad8e7c1eaf43..cd5364f1f40f 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetSubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_GetSubscriptionScope.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsManagementGroupScope.json index df8b9019ec12..c8ceb25e2623 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsManagementGroupScope.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsResourceGroupScope.json index 781ee9cd14f7..582744fa3f9e 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsResourceGroupScope.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsResourceScope.json index dc40b3fdb262..26f978cf289b 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsResourceScope.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsSubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsSubscriptionScope.json index 09f428def157..85b18f0db59b 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsSubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListDeploymentsSubscriptionScope.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListManagementGroupScope.json index 4541e980e521..78666dca8a2b 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListManagementGroupScope.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListManagementGroupScope_WithQuery.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListManagementGroupScope_WithQuery.json index 6a8cce04f503..3c8887e4faaf 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListManagementGroupScope_WithQuery.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListManagementGroupScope_WithQuery.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceGroupScope.json index c11218e52e20..3d7bd418dc70 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceGroupScope.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceGroupScope_WithQuery.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceGroupScope_WithQuery.json index 4b1597020c7d..bcbc62ea4aa2 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceGroupScope_WithQuery.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceGroupScope_WithQuery.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceScope.json index cfa56d8da787..e31d7a8ef655 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceScope.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceScope_WithQuery.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceScope_WithQuery.json index 7803d73a56b3..6bcd17bbee29 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceScope_WithQuery.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListResourceScope_WithQuery.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListSubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListSubscriptionScope.json index 56a668de8138..da064a079292 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListSubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListSubscriptionScope.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListSubscriptionScope_WithQuery.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListSubscriptionScope_WithQuery.json index d93935e57972..45215f3b6121 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListSubscriptionScope_WithQuery.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/examples/Remediations_ListSubscriptionScope_WithQuery.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/policyStates.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/policyStates.json index c0f69efd6a21..6592e3709b40 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/policyStates.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/preview/2018-07-01-preview/policyStates.json @@ -84,7 +84,9 @@ } }, "x-ms-examples": { - "Query latest at management group scope": { "$ref": "./examples/PolicyStates_QueryManagementGroupScope.json" } + "Query latest at management group scope": { + "$ref": "./examples/PolicyStates_QueryManagementGroupScope.json" + } } } }, @@ -133,7 +135,9 @@ } }, "x-ms-examples": { - "Summarize at management group scope": { "$ref": "./examples/PolicyStates_SummarizeManagementGroupScope.json" } + "Summarize at management group scope": { + "$ref": "./examples/PolicyStates_SummarizeManagementGroupScope.json" + } } } }, @@ -188,12 +192,24 @@ } }, "x-ms-examples": { - "Query latest at subscription scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionScope.json" }, - "Time range; sort, select and limit": { "$ref": "./examples/PolicyStates_TimeRangeSortSelectTop.json" }, - "Filter and group with aggregate": { "$ref": "./examples/PolicyStates_FilterAndGroupByWithAggregate.json" }, - "Filter and group without aggregate": { "$ref": "./examples/PolicyStates_FilterAndGroupByWithoutAggregate.json" }, - "Filter and aggregate only": { "$ref": "./examples/PolicyStates_FilterAndAggregateOnly.json" }, - "Filter and multiple groups": { "$ref": "./examples/PolicyStates_FilterAndMultipleGroups.json" } + "Query latest at subscription scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionScope.json" + }, + "Time range; sort, select and limit": { + "$ref": "./examples/PolicyStates_TimeRangeSortSelectTop.json" + }, + "Filter and group with aggregate": { + "$ref": "./examples/PolicyStates_FilterAndGroupByWithAggregate.json" + }, + "Filter and group without aggregate": { + "$ref": "./examples/PolicyStates_FilterAndGroupByWithoutAggregate.json" + }, + "Filter and aggregate only": { + "$ref": "./examples/PolicyStates_FilterAndAggregateOnly.json" + }, + "Filter and multiple groups": { + "$ref": "./examples/PolicyStates_FilterAndMultipleGroups.json" + } } } }, @@ -239,7 +255,9 @@ } }, "x-ms-examples": { - "Summarize at subscription scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionScope.json" } + "Summarize at subscription scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionScope.json" + } } } }, @@ -297,7 +315,9 @@ } }, "x-ms-examples": { - "Query latest at resource group scope": { "$ref": "./examples/PolicyStates_QueryResourceGroupScope.json" } + "Query latest at resource group scope": { + "$ref": "./examples/PolicyStates_QueryResourceGroupScope.json" + } } } }, @@ -346,7 +366,9 @@ } }, "x-ms-examples": { - "Summarize at resource group scope": { "$ref": "./examples/PolicyStates_SummarizeResourceGroupScope.json" } + "Summarize at resource group scope": { + "$ref": "./examples/PolicyStates_SummarizeResourceGroupScope.json" + } } } }, @@ -404,11 +426,21 @@ } }, "x-ms-examples": { - "Query all policy states at resource scope": { "$ref": "./examples/PolicyStates_QueryResourceScope.json" }, - "Query all policy states at subscription level resource scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelResourceScope.json" }, - "Query all policy states at nested resource scope": { "$ref": "./examples/PolicyStates_QueryNestedResourceScope.json" }, - "Query all policy states at subscription level nested resource scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json" }, - "Query all policy states at resource scope and expand policyEvaluationDetails": { "$ref": "./examples/PolicyStates_QueryResourceScopeExpandPolicyEvaluationDetails.json" } + "Query all policy states at resource scope": { + "$ref": "./examples/PolicyStates_QueryResourceScope.json" + }, + "Query all policy states at subscription level resource scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelResourceScope.json" + }, + "Query all policy states at nested resource scope": { + "$ref": "./examples/PolicyStates_QueryNestedResourceScope.json" + }, + "Query all policy states at subscription level nested resource scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json" + }, + "Query all policy states at resource scope and expand policyEvaluationDetails": { + "$ref": "./examples/PolicyStates_QueryResourceScopeExpandPolicyEvaluationDetails.json" + } } } }, @@ -454,7 +486,9 @@ } }, "x-ms-examples": { - "Summarize at resource scope": { "$ref": "./examples/PolicyStates_SummarizeResourceScope.json" } + "Summarize at resource scope": { + "$ref": "./examples/PolicyStates_SummarizeResourceScope.json" + } } } }, @@ -515,7 +549,9 @@ } }, "x-ms-examples": { - "Query latest at subscription level policy set definition scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json" } + "Query latest at subscription level policy set definition scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json" + } } } }, @@ -567,7 +603,9 @@ } }, "x-ms-examples": { - "Summarize at policy set definition scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json" } + "Summarize at policy set definition scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json" + } } } }, @@ -628,7 +666,9 @@ } }, "x-ms-examples": { - "Query latest at subscription level policy definition scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json" } + "Query latest at subscription level policy definition scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json" + } } } }, @@ -680,7 +720,9 @@ } }, "x-ms-examples": { - "Summarize at policy definition scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json" } + "Summarize at policy definition scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json" + } } } }, @@ -741,7 +783,9 @@ } }, "x-ms-examples": { - "Query latest at subscription level policy assignment scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json" } + "Query latest at subscription level policy assignment scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json" + } } } }, @@ -793,7 +837,9 @@ } }, "x-ms-examples": { - "Summarize at policy assignment scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json" } + "Summarize at policy assignment scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json" + } } } }, @@ -857,7 +903,9 @@ } }, "x-ms-examples": { - "Query latest at resource group level policy assignment scope": { "$ref": "./examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json" } + "Query latest at resource group level policy assignment scope": { + "$ref": "./examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json" + } } } }, @@ -912,7 +960,9 @@ } }, "x-ms-examples": { - "Summarize at policy assignment scope": { "$ref": "./examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json" } + "Summarize at policy assignment scope": { + "$ref": "./examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json" + } } } }, @@ -940,7 +990,9 @@ } }, "x-ms-examples": { - "List operations": { "$ref": "./examples/PolicyStates_ListOperations.json" } + "List operations": { + "$ref": "./examples/PolicyStates_ListOperations.json" + } } } }, @@ -974,9 +1026,11 @@ } }, "x-ms-examples": { - "Get metadata": { "$ref": "./examples/PolicyStates_GetMetadata.json" } + "Get metadata": { + "$ref": "./examples/PolicyStates_GetMetadata.json" + } } - } + } } }, "definitions": { @@ -1302,7 +1356,7 @@ "description": "Non-compliance summary for the policy definition.", "$ref": "#/definitions/SummaryResults" } - } + } }, "QueryFailure": { "description": "Error response.", diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndAggregateOnly.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndAggregateOnly.json index 8b5cc236719d..ae23f073897c 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndAggregateOnly.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndAggregateOnly.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndGroupByWithAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndGroupByWithAggregate.json index 16618e4868b8..16efc9d2a082 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndGroupByWithAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndGroupByWithAggregate.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json index 6370096a16e7..032198531203 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndMultipleGroups.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndMultipleGroups.json index c190cd03142a..27d725469029 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndMultipleGroups.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_FilterAndMultipleGroups.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_GetMetadata.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_GetMetadata.json index c5381fca820f..b5b1bf768aca 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_GetMetadata.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_GetMetadata.json @@ -1,6 +1,6 @@ { "parameters": { - "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", + "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", "api-version": "2018-04-04" }, "responses": { @@ -11,4 +11,4 @@ "body": " Org.OData.Capabilities.V1.ConformanceLevelType/Minimal application/json;odata.metadata=minimal;IEEE754Compatible=false;odata.streaming=true application/json;odata.metadata=none;IEEE754Compatible=false;odata.streaming=true " } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryManagementGroupScope.json index fe44b168e00f..b4f45dfebde4 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryManagementGroupScope.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryNestedResourceScope.json index c8a2587d1b82..78f00e7e0a80 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryNestedResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json index 3766209f5302..d1fc5cdedb30 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json @@ -79,4 +79,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceGroupScope.json index e962da5f8f7f..5b329a8944b5 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyEventsResource": "default", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2018-04-04" }, "responses": { @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceScope.json index 1f8d6fe87ed5..740d2ba97599 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QueryResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json index af3ee0c37e9b..0be1a9dc6269 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json index 92eaaf9a078a..abd0ac1ec5a4 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json index 5bee2b1a4bd2..7973ed984a00 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json index 3333b97b9501..310a47520b15 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json index da9f3b5f2c69..3b6b20aa3b88 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionScope.json index 02a7e0717373..dcaeecd7200f 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_QuerySubscriptionScope.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_TimeRangeSortSelectTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_TimeRangeSortSelectTop.json index 19057ff379e7..aaa60998ec0f 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_TimeRangeSortSelectTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyEvents_TimeRangeSortSelectTop.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndAggregateOnly.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndAggregateOnly.json index 5ab51d0fd6b3..23df59e975a4 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndAggregateOnly.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndAggregateOnly.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndGroupByWithAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndGroupByWithAggregate.json index a8985871a7dc..3d571f0c8541 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndGroupByWithAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndGroupByWithAggregate.json @@ -6,7 +6,7 @@ "$from": "2018-02-05T18:00:00Z", "$filter": "IsCompliant eq false and (PolicyDefinitionAction eq 'audit' or PolicyDefinitionAction eq 'deny')", "$apply": "groupby((PolicyAssignmentId, PolicyDefinitionId, PolicyDefinitionAction, ResourceId), aggregate($count as NumAuditDenyNonComplianceRecords))", - "$orderby": "NumAuditDenyNonComplianceRecords desc", + "$orderby": "NumAuditDenyNonComplianceRecords desc", "$top": 2 }, "responses": { @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json index d61146f55217..9591388cb757 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndGroupByWithoutAggregate.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndMultipleGroups.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndMultipleGroups.json index 9f25dd8d9510..39f3f48ad1c3 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndMultipleGroups.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_FilterAndMultipleGroups.json @@ -108,4 +108,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_GetMetadata.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_GetMetadata.json index fba219cbdcb1..d820f3412205 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_GetMetadata.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_GetMetadata.json @@ -1,6 +1,6 @@ { "parameters": { - "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", + "scope": "subscriptions/fffedd8f-ffff-fffd-fffd-fffed2f84852", "api-version": "2018-04-04" }, "responses": { @@ -11,4 +11,4 @@ "body": " Org.OData.Capabilities.V1.ConformanceLevelType/Minimal application/json;odata.metadata=minimal;IEEE754Compatible=false;odata.streaming=true application/json;odata.metadata=none;IEEE754Compatible=false;odata.streaming=true " } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_ListOperations.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_ListOperations.json index 8431a6befb87..4d199f10cb8e 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_ListOperations.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_ListOperations.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryManagementGroupScope.json index dc042b116e5e..12af15a2b628 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryManagementGroupScope.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryNestedResourceScope.json index 6354ddfb8a34..d37f62831c64 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryNestedResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json index 174e26c9d1a8..be222ea06017 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json @@ -75,4 +75,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceGroupScope.json index fda20c725442..910acc089f3b 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyStatesResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2018-04-04" }, "responses": { @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceScope.json index e7646dd87290..1383612f88b6 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QueryResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json index c3165182eec1..602cdfff2e1e 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json index 76cc1d373709..457f5e6b1082 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json index 9ae0f212bd91..1a7ec3d1ff1b 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json index 050510d33dbc..0dba71eecbcf 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json index e950bb95094e..c93bff5ab961 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionLevelResourceScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionScope.json index 7774b7f1634d..57174b3d5a1f 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_QuerySubscriptionScope.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeManagementGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeManagementGroupScope.json index bc91c8f4a56e..067e942d4cfc 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeManagementGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeManagementGroupScope.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json index aa7bbba3f852..42e09c44845e 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceGroupScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceGroupScope.json index 07dd94bc9cd2..7bdcd7b65fe3 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceGroupScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceGroupScope.json @@ -2,7 +2,7 @@ "parameters": { "policyStatesSummaryResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", - "resourceGroupName": "myResourceGroup", + "resourceGroupName": "myResourceGroup", "api-version": "2018-04-04" }, "responses": { @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceScope.json index dd2e48eeba06..79e9d89f1b16 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeResourceScope.json @@ -350,4 +350,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json index 5878fd961f79..1d8a503acb99 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json index 3b3e5df89bc9..8b0a244add2f 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json @@ -107,4 +107,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json index 5c9d8d75e049..3045b3f6d650 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionScope.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionScope.json index 2ebda940dcc8..f90fd9f077f4 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionScope.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_SummarizeSubscriptionScope.json @@ -3,7 +3,7 @@ "policyStatesSummaryResource": "latest", "subscriptionId": "fffedd8f-ffff-fffd-fffd-fffed2f84852", "api-version": "2018-04-04", - "$top": 5 + "$top": 5 }, "responses": { "200": { @@ -144,4 +144,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_TimeRangeSortSelectTop.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_TimeRangeSortSelectTop.json index a048ec95f4fc..fcbf86fb07e3 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_TimeRangeSortSelectTop.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/examples/PolicyStates_TimeRangeSortSelectTop.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/policyEvents.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/policyEvents.json index b694c4943495..6f2779cb49b9 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/policyEvents.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/policyEvents.json @@ -84,7 +84,9 @@ } }, "x-ms-examples": { - "Query at management group scope": { "$ref": "./examples/PolicyEvents_QueryManagementGroupScope.json" } + "Query at management group scope": { + "$ref": "./examples/PolicyEvents_QueryManagementGroupScope.json" + } } } }, @@ -139,12 +141,24 @@ } }, "x-ms-examples": { - "Query at subscription scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionScope.json" }, - "Time range; sort, select and limit": { "$ref": "./examples/PolicyEvents_TimeRangeSortSelectTop.json" }, - "Filter and group with aggregate": { "$ref": "./examples/PolicyEvents_FilterAndGroupByWithAggregate.json" }, - "Filter and group without aggregate": { "$ref": "./examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json" }, - "Filter and aggregate only": { "$ref": "./examples/PolicyEvents_FilterAndAggregateOnly.json" }, - "Filter and multiple groups": { "$ref": "./examples/PolicyEvents_FilterAndMultipleGroups.json" } + "Query at subscription scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionScope.json" + }, + "Time range; sort, select and limit": { + "$ref": "./examples/PolicyEvents_TimeRangeSortSelectTop.json" + }, + "Filter and group with aggregate": { + "$ref": "./examples/PolicyEvents_FilterAndGroupByWithAggregate.json" + }, + "Filter and group without aggregate": { + "$ref": "./examples/PolicyEvents_FilterAndGroupByWithoutAggregate.json" + }, + "Filter and aggregate only": { + "$ref": "./examples/PolicyEvents_FilterAndAggregateOnly.json" + }, + "Filter and multiple groups": { + "$ref": "./examples/PolicyEvents_FilterAndMultipleGroups.json" + } } } }, @@ -202,7 +216,9 @@ } }, "x-ms-examples": { - "Query at resource group scope": { "$ref": "./examples/PolicyEvents_QueryResourceGroupScope.json" } + "Query at resource group scope": { + "$ref": "./examples/PolicyEvents_QueryResourceGroupScope.json" + } } } }, @@ -257,10 +273,18 @@ } }, "x-ms-examples": { - "Query at resource scope": { "$ref": "./examples/PolicyEvents_QueryResourceScope.json" }, - "Query at subscription level resource scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json" }, - "Query at nested resource scope": { "$ref": "./examples/PolicyEvents_QueryNestedResourceScope.json" }, - "Query at subscription level nested resource scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json" } + "Query at resource scope": { + "$ref": "./examples/PolicyEvents_QueryResourceScope.json" + }, + "Query at subscription level resource scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelResourceScope.json" + }, + "Query at nested resource scope": { + "$ref": "./examples/PolicyEvents_QueryNestedResourceScope.json" + }, + "Query at subscription level nested resource scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelNestedResourceScope.json" + } } } }, @@ -321,7 +345,9 @@ } }, "x-ms-examples": { - "Query at subscription level policy set definition scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json" } + "Query at subscription level policy set definition scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicySetDefinitionScope.json" + } } } }, @@ -382,7 +408,9 @@ } }, "x-ms-examples": { - "Query at subscription level policy definition scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json" } + "Query at subscription level policy definition scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicyDefinitionScope.json" + } } } }, @@ -443,7 +471,9 @@ } }, "x-ms-examples": { - "Query at subscription level policy assignment scope": { "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json" } + "Query at subscription level policy assignment scope": { + "$ref": "./examples/PolicyEvents_QuerySubscriptionLevelPolicyAssignmentScope.json" + } } } }, @@ -507,7 +537,9 @@ } }, "x-ms-examples": { - "Query at resource group level policy assignment scope": { "$ref": "./examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json" } + "Query at resource group level policy assignment scope": { + "$ref": "./examples/PolicyEvents_QueryResourceGroupLevelPolicyAssignmentScope.json" + } } } }, @@ -541,10 +573,12 @@ } }, "x-ms-examples": { - "Get metadata": { "$ref": "./examples/PolicyEvents_GetMetadata.json" } + "Get metadata": { + "$ref": "./examples/PolicyEvents_GetMetadata.json" + } } - } - } + } + } }, "definitions": { "PolicyEventsQueryResults": { @@ -917,4 +951,4 @@ "x-ms-client-name": "Apply" } } -} \ No newline at end of file +} diff --git a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/policyStates.json b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/policyStates.json index 0dd9bbf3332b..6a881ac0578a 100644 --- a/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/policyStates.json +++ b/specification/policyinsights/resource-manager/Microsoft.PolicyInsights/stable/2018-04-04/policyStates.json @@ -84,7 +84,9 @@ } }, "x-ms-examples": { - "Query latest at management group scope": { "$ref": "./examples/PolicyStates_QueryManagementGroupScope.json" } + "Query latest at management group scope": { + "$ref": "./examples/PolicyStates_QueryManagementGroupScope.json" + } } } }, @@ -133,7 +135,9 @@ } }, "x-ms-examples": { - "Summarize at management group scope": { "$ref": "./examples/PolicyStates_SummarizeManagementGroupScope.json" } + "Summarize at management group scope": { + "$ref": "./examples/PolicyStates_SummarizeManagementGroupScope.json" + } } } }, @@ -188,12 +192,24 @@ } }, "x-ms-examples": { - "Query latest at subscription scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionScope.json" }, - "Time range; sort, select and limit": { "$ref": "./examples/PolicyStates_TimeRangeSortSelectTop.json" }, - "Filter and group with aggregate": { "$ref": "./examples/PolicyStates_FilterAndGroupByWithAggregate.json" }, - "Filter and group without aggregate": { "$ref": "./examples/PolicyStates_FilterAndGroupByWithoutAggregate.json" }, - "Filter and aggregate only": { "$ref": "./examples/PolicyStates_FilterAndAggregateOnly.json" }, - "Filter and multiple groups": { "$ref": "./examples/PolicyStates_FilterAndMultipleGroups.json" } + "Query latest at subscription scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionScope.json" + }, + "Time range; sort, select and limit": { + "$ref": "./examples/PolicyStates_TimeRangeSortSelectTop.json" + }, + "Filter and group with aggregate": { + "$ref": "./examples/PolicyStates_FilterAndGroupByWithAggregate.json" + }, + "Filter and group without aggregate": { + "$ref": "./examples/PolicyStates_FilterAndGroupByWithoutAggregate.json" + }, + "Filter and aggregate only": { + "$ref": "./examples/PolicyStates_FilterAndAggregateOnly.json" + }, + "Filter and multiple groups": { + "$ref": "./examples/PolicyStates_FilterAndMultipleGroups.json" + } } } }, @@ -239,7 +255,9 @@ } }, "x-ms-examples": { - "Summarize at subscription scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionScope.json" } + "Summarize at subscription scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionScope.json" + } } } }, @@ -297,7 +315,9 @@ } }, "x-ms-examples": { - "Query latest at resource group scope": { "$ref": "./examples/PolicyStates_QueryResourceGroupScope.json" } + "Query latest at resource group scope": { + "$ref": "./examples/PolicyStates_QueryResourceGroupScope.json" + } } } }, @@ -346,7 +366,9 @@ } }, "x-ms-examples": { - "Summarize at resource group scope": { "$ref": "./examples/PolicyStates_SummarizeResourceGroupScope.json" } + "Summarize at resource group scope": { + "$ref": "./examples/PolicyStates_SummarizeResourceGroupScope.json" + } } } }, @@ -401,10 +423,18 @@ } }, "x-ms-examples": { - "Query all policy states at resource scope": { "$ref": "./examples/PolicyStates_QueryResourceScope.json" }, - "Query all policy states at subscription level resource scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelResourceScope.json" }, - "Query all policy states at nested resource scope": { "$ref": "./examples/PolicyStates_QueryNestedResourceScope.json" }, - "Query all policy states at subscription level nested resource scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json" } + "Query all policy states at resource scope": { + "$ref": "./examples/PolicyStates_QueryResourceScope.json" + }, + "Query all policy states at subscription level resource scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelResourceScope.json" + }, + "Query all policy states at nested resource scope": { + "$ref": "./examples/PolicyStates_QueryNestedResourceScope.json" + }, + "Query all policy states at subscription level nested resource scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelNestedResourceScope.json" + } } } }, @@ -450,7 +480,9 @@ } }, "x-ms-examples": { - "Summarize at resource scope": { "$ref": "./examples/PolicyStates_SummarizeResourceScope.json" } + "Summarize at resource scope": { + "$ref": "./examples/PolicyStates_SummarizeResourceScope.json" + } } } }, @@ -511,7 +543,9 @@ } }, "x-ms-examples": { - "Query latest at subscription level policy set definition scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json" } + "Query latest at subscription level policy set definition scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicySetDefinitionScope.json" + } } } }, @@ -563,7 +597,9 @@ } }, "x-ms-examples": { - "Summarize at policy set definition scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json" } + "Summarize at policy set definition scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicySetDefinitionScope.json" + } } } }, @@ -624,7 +660,9 @@ } }, "x-ms-examples": { - "Query latest at subscription level policy definition scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json" } + "Query latest at subscription level policy definition scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyDefinitionScope.json" + } } } }, @@ -676,7 +714,9 @@ } }, "x-ms-examples": { - "Summarize at policy definition scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json" } + "Summarize at policy definition scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyDefinitionScope.json" + } } } }, @@ -737,7 +777,9 @@ } }, "x-ms-examples": { - "Query latest at subscription level policy assignment scope": { "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json" } + "Query latest at subscription level policy assignment scope": { + "$ref": "./examples/PolicyStates_QuerySubscriptionLevelPolicyAssignmentScope.json" + } } } }, @@ -789,7 +831,9 @@ } }, "x-ms-examples": { - "Summarize at policy assignment scope": { "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json" } + "Summarize at policy assignment scope": { + "$ref": "./examples/PolicyStates_SummarizeSubscriptionLevelPolicyAssignmentScope.json" + } } } }, @@ -853,7 +897,9 @@ } }, "x-ms-examples": { - "Query latest at resource group level policy assignment scope": { "$ref": "./examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json" } + "Query latest at resource group level policy assignment scope": { + "$ref": "./examples/PolicyStates_QueryResourceGroupLevelPolicyAssignmentScope.json" + } } } }, @@ -908,7 +954,9 @@ } }, "x-ms-examples": { - "Summarize at policy assignment scope": { "$ref": "./examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json" } + "Summarize at policy assignment scope": { + "$ref": "./examples/PolicyStates_SummarizeResourceGroupLevelPolicyAssignmentScope.json" + } } } }, @@ -936,7 +984,9 @@ } }, "x-ms-examples": { - "List operations": { "$ref": "./examples/PolicyStates_ListOperations.json" } + "List operations": { + "$ref": "./examples/PolicyStates_ListOperations.json" + } } } }, @@ -970,9 +1020,11 @@ } }, "x-ms-examples": { - "Get metadata": { "$ref": "./examples/PolicyStates_GetMetadata.json" } + "Get metadata": { + "$ref": "./examples/PolicyStates_GetMetadata.json" + } } - } + } } }, "definitions": { @@ -1227,7 +1279,7 @@ "description": "Non-compliance summary for the policy definition.", "$ref": "#/definitions/SummaryResults" } - } + } }, "QueryFailure": { "description": "Error response.", @@ -1515,4 +1567,4 @@ "x-ms-client-name": "Apply" } } -} \ No newline at end of file +} diff --git a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/checkNameAvailability.json b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/checkNameAvailability.json index 091912186b27..2b3b36b98e16 100644 --- a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/checkNameAvailability.json +++ b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/checkNameAvailability.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/createCapacity.json b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/createCapacity.json index 92a1fb37856f..abcbb166a4d4 100644 --- a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/createCapacity.json +++ b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/createCapacity.json @@ -6,19 +6,19 @@ "api-version": "2017-10-01", "capacityParameters": { "sku": { - "name": "A1", - "tier": "PBIE_Azure" + "name": "A1", + "tier": "PBIE_Azure" }, "tags": { - "testKey": "testValue" + "testKey": "testValue" }, "location": "West US", "properties": { "administration": { - "members": [ - "azsdktest@microsoft.com", - "azsdktest2@microsoft.com" - ] + "members": [ + "azsdktest@microsoft.com", + "azsdktest2@microsoft.com" + ] }, "provisioningState": "Preparing", "state": "Preparing" diff --git a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/getCapacity.json b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/getCapacity.json index 21580ee84069..dd3a3963161d 100644 --- a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/getCapacity.json +++ b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/getCapacity.json @@ -22,11 +22,10 @@ "state": "Provisioning" }, "sku": { - "name": "A1", + "name": "A1", "tier": "PBIE_Azure" }, - "tags": { - } + "tags": {} } } } diff --git a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/listSKUsForExisting.json b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/listSKUsForExisting.json index 1e0787266ddf..6b6c95a16fc9 100644 --- a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/listSKUsForExisting.json +++ b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/listSKUsForExisting.json @@ -12,26 +12,26 @@ "value": [ { "sku": { - "name": "A2", - "tier": "PBIE_Azure" + "name": "A2", + "tier": "PBIE_Azure" } }, { "sku": { - "name": "A3", - "tier": "PBIE_Azure" + "name": "A3", + "tier": "PBIE_Azure" } }, { "sku": { - "name": "A4", - "tier": "PBIE_Azure" + "name": "A4", + "tier": "PBIE_Azure" } }, { "sku": { - "name": "A5", - "tier": "PBIE_Azure" + "name": "A5", + "tier": "PBIE_Azure" } }, { diff --git a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/updateCapacity.json b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/updateCapacity.json index 6fe6c3bab64f..a93064185eb5 100644 --- a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/updateCapacity.json +++ b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/examples/updateCapacity.json @@ -6,18 +6,18 @@ "api-version": "2017-10-01", "capacityUpdateParameters": { "sku": { - "name": "A1", - "tier": "PBIE_Azure" + "name": "A1", + "tier": "PBIE_Azure" }, "tags": { - "testKey": "testValue" + "testKey": "testValue" }, "properties": { "administration": { - "members": [ - "azsdktest@microsoft.com", - "azsdktest2@microsoft.com" - ] + "members": [ + "azsdktest@microsoft.com", + "azsdktest2@microsoft.com" + ] } } } diff --git a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/powerbidedicated.json b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/powerbidedicated.json index d278616f6dbc..30006a1b2c5d 100644 --- a/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/powerbidedicated.json +++ b/specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/stable/2017-10-01/powerbidedicated.json @@ -9,7 +9,9 @@ } }, "host": "management.azure.com", - "schemes": [ "https" ], + "schemes": [ + "https" + ], "consumes": [ "application/json" ], @@ -39,9 +41,13 @@ "get": { "description": "Gets details about the specified dedicated capacity.", "x-ms-examples": { - "Get details of a capacity": { "$ref": "./examples/getCapacity.json" } + "Get details of a capacity": { + "$ref": "./examples/getCapacity.json" + } }, - "tags": [ "Capacities" ], + "tags": [ + "Capacities" + ], "operationId": "Capacities_GetDetails", "parameters": [ { @@ -67,16 +73,22 @@ "responses": { "200": { "description": "OK. The operation was successful.", - "schema": { "$ref": "#/definitions/DedicatedCapacity" } + "schema": { + "$ref": "#/definitions/DedicatedCapacity" + } } } }, "put": { "description": "Provisions the specified Dedicated capacity based on the configuration specified in the request.", "x-ms-examples": { - "Create capacity": { "$ref": "./examples/createCapacity.json" } + "Create capacity": { + "$ref": "./examples/createCapacity.json" + } }, - "tags": [ "Capacities" ], + "tags": [ + "Capacities" + ], "operationId": "Capacities_Create", "parameters": [ { @@ -96,7 +108,9 @@ "name": "capacityParameters", "in": "body", "required": true, - "schema": { "$ref": "#/definitions/DedicatedCapacity" }, + "schema": { + "$ref": "#/definitions/DedicatedCapacity" + }, "description": "Contains the information used to provision the Dedicated capacity." }, { @@ -105,16 +119,19 @@ { "$ref": "#/parameters/SubscriptionIdParameter" } - ], "responses": { "200": { "description": "OK. The operation completed successfully.", - "schema": { "$ref": "#/definitions/DedicatedCapacity" } + "schema": { + "$ref": "#/definitions/DedicatedCapacity" + } }, "201": { "description": "InProgress. The operation is still in progress.", - "schema": { "$ref": "#/definitions/DedicatedCapacity" } + "schema": { + "$ref": "#/definitions/DedicatedCapacity" + } } }, "x-ms-long-running-operation": true @@ -122,9 +139,13 @@ "delete": { "description": "Deletes the specified Dedicated capacity.", "x-ms-examples": { - "Get details of a capacity": { "$ref": "./examples/deleteCapacity.json" } + "Get details of a capacity": { + "$ref": "./examples/deleteCapacity.json" + } }, - "tags": [ "Capacities" ], + "tags": [ + "Capacities" + ], "operationId": "Capacities_Delete", "parameters": [ { @@ -163,9 +184,13 @@ "patch": { "description": "Updates the current state of the specified Dedicated capacity.", "x-ms-examples": { - "Update capacity parameters": { "$ref": "./examples/updateCapacity.json" } + "Update capacity parameters": { + "$ref": "./examples/updateCapacity.json" + } }, - "tags": [ "Capacities" ], + "tags": [ + "Capacities" + ], "operationId": "Capacities_Update", "parameters": [ { @@ -185,7 +210,9 @@ "name": "capacityUpdateParameters", "in": "body", "required": true, - "schema": { "$ref": "#/definitions/DedicatedCapacityUpdateParameters" }, + "schema": { + "$ref": "#/definitions/DedicatedCapacityUpdateParameters" + }, "description": "Request object that contains the updated information for the capacity." }, { @@ -198,11 +225,15 @@ "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/DedicatedCapacity" } + "schema": { + "$ref": "#/definitions/DedicatedCapacity" + } }, "202": { "description": "Accepted", - "schema": { "$ref": "#/definitions/DedicatedCapacity" } + "schema": { + "$ref": "#/definitions/DedicatedCapacity" + } } }, "x-ms-long-running-operation": true @@ -212,9 +243,13 @@ "post": { "description": "Suspends operation of the specified dedicated capacity instance.", "x-ms-examples": { - "Suspend capacity": { "$ref": "./examples/suspendCapacity.json" } + "Suspend capacity": { + "$ref": "./examples/suspendCapacity.json" + } }, - "tags": [ "Capacities" ], + "tags": [ + "Capacities" + ], "operationId": "Capacities_Suspend", "parameters": [ { @@ -252,9 +287,13 @@ "post": { "description": "Resumes operation of the specified Dedicated capacity instance.", "x-ms-examples": { - "Get details of a capacity": { "$ref": "./examples/resumeCapacity.json" } + "Get details of a capacity": { + "$ref": "./examples/resumeCapacity.json" + } }, - "tags": [ "Capacities" ], + "tags": [ + "Capacities" + ], "operationId": "Capacities_Resume", "parameters": [ { @@ -292,9 +331,13 @@ "get": { "description": "Gets all the Dedicated capacities for the given resource group.", "x-ms-examples": { - "List capacities in resource group": { "$ref": "./examples/listCapacitiesInResourceGroup.json" } + "List capacities in resource group": { + "$ref": "./examples/listCapacitiesInResourceGroup.json" + } }, - "tags": [ "Capacities" ], + "tags": [ + "Capacities" + ], "operationId": "Capacities_ListByResourceGroup", "parameters": [ { @@ -310,7 +353,9 @@ "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/DedicatedCapacities" } + "schema": { + "$ref": "#/definitions/DedicatedCapacities" + } } }, "x-ms-pageable": { @@ -322,9 +367,13 @@ "get": { "description": "Lists all the Dedicated capacities for the given subscription.", "x-ms-examples": { - "Get details of a capacity": { "$ref": "./examples/listCapacitiesInSubscription.json" } + "Get details of a capacity": { + "$ref": "./examples/listCapacitiesInSubscription.json" + } }, - "tags": [ "Capacities" ], + "tags": [ + "Capacities" + ], "operationId": "Capacities_List", "parameters": [ { @@ -337,7 +386,9 @@ "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/DedicatedCapacities" } + "schema": { + "$ref": "#/definitions/DedicatedCapacities" + } } }, "x-ms-pageable": { @@ -349,7 +400,9 @@ "get": { "description": "Lists eligible SKUs for PowerBI Dedicated resource provider.", "x-ms-examples": { - "List eligible SKUs for a new capacity": { "$ref": "./examples/listSKUsForNew.json" } + "List eligible SKUs for a new capacity": { + "$ref": "./examples/listSKUsForNew.json" + } }, "operationId": "Capacities_ListSkus", "parameters": [ @@ -363,7 +416,9 @@ "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/SkuEnumerationForNewResourceResult" } + "schema": { + "$ref": "#/definitions/SkuEnumerationForNewResourceResult" + } } } } @@ -372,9 +427,13 @@ "get": { "description": "Lists eligible SKUs for a PowerBI Dedicated resource.", "x-ms-examples": { - "List eligible SKUs for an existing capacity": { "$ref": "./examples/listSKUsForExisting.json" } + "List eligible SKUs for an existing capacity": { + "$ref": "./examples/listSKUsForExisting.json" + } }, - "tags": [ "Capacities" ], + "tags": [ + "Capacities" + ], "operationId": "Capacities_ListSkusForCapacity", "parameters": [ { @@ -400,7 +459,9 @@ "responses": { "200": { "description": "OK", - "schema": { "$ref": "#/definitions/SkuEnumerationForExistingResourceResult" } + "schema": { + "$ref": "#/definitions/SkuEnumerationForExistingResourceResult" + } } } } @@ -437,50 +498,51 @@ } }, "/subscriptions/{subscriptionId}/providers/Microsoft.PowerBIDedicated/locations/{location}/checkNameAvailability": { - "post": { - "x-ms-examples": { - "Check name availability of a capacity": { "$ref": "./examples/checkNameAvailability.json" } - }, - "tags": [ - "Capacities" - ], - "operationId": "Capacities_CheckNameAvailability", - "description": "Check the name availability in the target location.", - "parameters": [ - { - "name": "location", - "in": "path", - "required": true, - "type": "string", - "description": "The region name which the operation will lookup into." + "post": { + "x-ms-examples": { + "Check name availability of a capacity": { + "$ref": "./examples/checkNameAvailability.json" + } }, - { - "name": "capacityParameters", - "in": "body", - "required": true, - "schema": + "tags": [ + "Capacities" + ], + "operationId": "Capacities_CheckNameAvailability", + "description": "Check the name availability in the target location.", + "parameters": [ { - "$ref": "#/definitions/CheckCapacityNameAvailabilityParameters" + "name": "location", + "in": "path", + "required": true, + "type": "string", + "description": "The region name which the operation will lookup into." }, - "description": "The name of the capacity." - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK. The request has succeeded.", - "schema": { - "$ref": "#/definitions/CheckCapacityNameAvailabilityResult" + { + "name": "capacityParameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/CheckCapacityNameAvailabilityParameters" + }, + "description": "The name of the capacity." + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK. The request has succeeded.", + "schema": { + "$ref": "#/definitions/CheckCapacityNameAvailabilityResult" + } } } } } - } }, "definitions": { "OperationListResult": { @@ -561,7 +623,9 @@ }, "tags": { "type": "object", - "additionalProperties": { "type": "string" }, + "additionalProperties": { + "type": "string" + }, "description": "Key-value pairs of additional resource provisioning properties." } }, @@ -593,7 +657,9 @@ "properties": { "value": { "type": "array", - "items": { "$ref": "#/definitions/DedicatedCapacity" }, + "items": { + "$ref": "#/definitions/DedicatedCapacity" + }, "description": "An array of Dedicated capacities resources." } }, @@ -611,7 +677,9 @@ }, "tags": { "type": "object", - "additionalProperties": { "type": "string" }, + "additionalProperties": { + "type": "string" + }, "description": "Key-value pairs of additional provisioning properties." }, "properties": { @@ -732,7 +800,9 @@ "properties": { "value": { "type": "array", - "items": { "$ref": "#/definitions/ResourceSku" }, + "items": { + "$ref": "#/definitions/ResourceSku" + }, "description": "The collection of available SKUs for new resources" } } @@ -743,7 +813,9 @@ "properties": { "value": { "type": "array", - "items": { "$ref": "#/definitions/SkuDetailsForExistingResource" }, + "items": { + "$ref": "#/definitions/SkuDetailsForExistingResource" + }, "description": "The collection of available SKUs for existing resources" } } diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/CheckNameAvailability_Available.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/CheckNameAvailability_Available.json index 90f35f7f2540..c64c434b3667 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/CheckNameAvailability_Available.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/CheckNameAvailability_Available.json @@ -1,19 +1,19 @@ { - "parameters":{ - "subscriptionId":"77777777-b0c6-47a2-b37c-d8e65a629c18", - "resourceGroupName":"resGroupFoo", - "api-version": "2016-06-01", - "location":"westus", - "input":{ - "name":"swaggerExample", - "type": "Microsoft.RecoveryServices/Vaults" - } - }, - "responses":{ - "200":{ - "body":{ - "nameAvailable": true - } - } + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "resourceGroupName": "resGroupFoo", + "api-version": "2016-06-01", + "location": "westus", + "input": { + "name": "swaggerExample", + "type": "Microsoft.RecoveryServices/Vaults" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": true + } + } + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/CheckNameAvailability_NotAvailable.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/CheckNameAvailability_NotAvailable.json index 8f4920378705..75accdbed16c 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/CheckNameAvailability_NotAvailable.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/CheckNameAvailability_NotAvailable.json @@ -1,21 +1,21 @@ { - "parameters":{ - "subscriptionId":"77777777-b0c6-47a2-b37c-d8e65a629c18", - "resourceGroupName":"resGroupBar", - "api-version": "2016-06-01", - "location":"westus", - "input":{ - "name":"swaggerExample2", - "type": "Microsoft.RecoveryServices/Vaults" - } - }, - "responses":{ - "200":{ - "body":{ - "nameAvailable": false, - "reason": "AlreadyExists", - "message": "Resource already exists with the same name." - } - } + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "resourceGroupName": "resGroupBar", + "api-version": "2016-06-01", + "location": "westus", + "input": { + "name": "swaggerExample2", + "type": "Microsoft.RecoveryServices/Vaults" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": false, + "reason": "AlreadyExists", + "message": "Resource already exists with the same name." + } + } + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/DeleteRegisteredIdentities.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/DeleteRegisteredIdentities.json index 76fabc1aae4d..21e8fcd46a15 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/DeleteRegisteredIdentities.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/DeleteRegisteredIdentities.json @@ -1,14 +1,14 @@ { - "parameters":{ - "subscriptionId": "77777777-d41f-4550-9f70-7708a3a2283b", - "resourceGroupName": "BCDRIbzRG", - "vaultName": "BCDRIbzVault", - "identityName": "dpmcontainer01", - "api-version": "2016-06-01" - }, - "responses":{ - "204":{ - "body": "" - } + "parameters": { + "subscriptionId": "77777777-d41f-4550-9f70-7708a3a2283b", + "resourceGroupName": "BCDRIbzRG", + "vaultName": "BCDRIbzVault", + "identityName": "dpmcontainer01", + "api-version": "2016-06-01" + }, + "responses": { + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/DeleteVault.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/DeleteVault.json index bd8768f2e501..34113f549015 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/DeleteVault.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/DeleteVault.json @@ -1,13 +1,13 @@ { - "parameters":{ - "subscriptionId":"77777777-b0c6-47a2-b37c-d8e65a629c18", - "resourceGroupName":"Default-RecoveryServices-ResourceGroup", - "vaultName":"swaggerExample", - "api-version": "2016-06-01" - }, - "responses":{ - "200":{ - "body": "" - } + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "resourceGroupName": "Default-RecoveryServices-ResourceGroup", + "vaultName": "swaggerExample", + "api-version": "2016-06-01" + }, + "responses": { + "200": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/GETVault.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/GETVault.json index 7171912a999e..501c08fe4a58 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/GETVault.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/GETVault.json @@ -1,28 +1,28 @@ { - "parameters":{ - "subscriptionId":"77777777-b0c6-47a2-b37c-d8e65a629c18", - "resourceGroupName":"Default-RecoveryServices-ResourceGroup", - "vaultName":"swaggerExample", - "api-version": "2016-06-01" - }, - "responses":{ - "200":{ - "body":{ - "location": "westus", - "name": "swaggerExample", - "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", - "tags": { - "TestUpdatedKey": "TestUpdatedValue" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - } + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "resourceGroupName": "Default-RecoveryServices-ResourceGroup", + "vaultName": "swaggerExample", + "api-version": "2016-06-01" + }, + "responses": { + "200": { + "body": { + "location": "westus", + "name": "swaggerExample", + "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", + "tags": { + "TestUpdatedKey": "TestUpdatedValue" + }, + "properties": { + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/GETVaultExtendedInfo.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/GETVaultExtendedInfo.json index 1c882d517651..d4215eb9e750 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/GETVaultExtendedInfo.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/GETVaultExtendedInfo.json @@ -1,22 +1,22 @@ { - "parameters":{ - "subscriptionId":"77777777-b0c6-47a2-b37c-d8e65a629c18", - "resourceGroupName":"Default-RecoveryServices-ResourceGroup", - "vaultName":"swaggerExample", - "api-version": "2016-06-01" - }, - "responses":{ - "200":{ - "body":{ - "name": "vaultExtendedInfo", - "eTag": "f0d0260b-b92d-4458-ba0a-32c6cdabacb7", - "properties": { - "integrityKey": "J09wzS27fnJ+Wjot7xO5wA==", - "algorithm": "None" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample/extendedInformation/vaultExtendedInfo", - "type": "Microsoft.RecoveryServices/vaults/extendedInformation" - } - } + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "resourceGroupName": "Default-RecoveryServices-ResourceGroup", + "vaultName": "swaggerExample", + "api-version": "2016-06-01" + }, + "responses": { + "200": { + "body": { + "name": "vaultExtendedInfo", + "eTag": "f0d0260b-b92d-4458-ba0a-32c6cdabacb7", + "properties": { + "integrityKey": "J09wzS27fnJ+Wjot7xO5wA==", + "algorithm": "None" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample/extendedInformation/vaultExtendedInfo", + "type": "Microsoft.RecoveryServices/vaults/extendedInformation" + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListBySubscriptionIds.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListBySubscriptionIds.json index 248546f47a6f..3232105a9b60 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListBySubscriptionIds.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListBySubscriptionIds.json @@ -1,62 +1,62 @@ { - "parameters":{ - "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", - "api-version": "2016-06-01" - }, - "responses":{ - "200":{ - "body": { - "value": [ - { - "location": "westus", - "name": "patchtest", - "eTag": "W/\"datetime'2017-11-22T11%3A05%3A19.907Z'\"", - "tags": { - "Love": "India" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/patchtest", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - }, - { - "location": "westus", - "name": "swaggerExample", - "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", - "tags": { - "TestUpdatedKey": "TestUpdatedValue" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/HelloWorld/providers/Microsoft.RecoveryServices/vaults/swaggerExample", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - }, - { - "location": "westus", - "name": "today1", - "eTag": "W/\"datetime'2017-11-21T10%3A52%3A19.633Z'\"", - "tags": { - "TestUpdatedKey": "TestUpdatedValue" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/HelloWorld/providers/Microsoft.RecoveryServices/vaults/today1", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - } - ] + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "api-version": "2016-06-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "location": "westus", + "name": "patchtest", + "eTag": "W/\"datetime'2017-11-22T11%3A05%3A19.907Z'\"", + "tags": { + "Love": "India" + }, + "properties": { + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/patchtest", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" } - } + }, + { + "location": "westus", + "name": "swaggerExample", + "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", + "tags": { + "TestUpdatedKey": "TestUpdatedValue" + }, + "properties": { + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/HelloWorld/providers/Microsoft.RecoveryServices/vaults/swaggerExample", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" + } + }, + { + "location": "westus", + "name": "today1", + "eTag": "W/\"datetime'2017-11-21T10%3A52%3A19.633Z'\"", + "tags": { + "TestUpdatedKey": "TestUpdatedValue" + }, + "properties": { + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/HelloWorld/providers/Microsoft.RecoveryServices/vaults/today1", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListOperations.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListOperations.json index 3098310024e4..fe75830900ea 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListOperations.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListOperations.json @@ -1,462 +1,463 @@ { - "parameters": { - "api-version": "2016-06-01" - }, - "responses": { - "200": { - "body": { - "value": [{ - "name": "microsoft.recoveryservices/vaults/usages/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Vault Usage", - "operation": "Recovery Services Vault usage details.", - "description": "Returns usage details for a Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupUsageSummaries/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Usages Summaries", - "operation": "Recovery Services Protected Items and Protected Servers usage summaries details.", - "description": "Returns summaries for Protected Items and Protected Servers for a Recovery Services ." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/storageConfig/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Vault Storage Config", - "operation": "Get Resource Storage Config", - "description": "Returns Storage Configuration for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/storageConfig/write", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Vault Storage Config", - "operation": "Write Resource Storage Config", - "description": "Updates Storage Configuration for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupconfig/vaultconfig/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Vault Config", - "operation": "Get Resource Config", - "description": "Returns Configuration for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupconfig/vaultconfig/write", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Vault Config", - "operation": "Update Resource Config", - "description": "Updates Configuration for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/tokenInfo/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Token Info", - "operation": "Get Vault Token Info", - "description": "Returns token information for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupSecurityPIN/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "SecurityPINInfo", - "operation": "Get Security PIN Info", - "description": "Returns Security PIN Information for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupManagementMetaData/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Management Metadata", - "operation": "Get Backup Management Metadata", - "description": "Returns Backup Management Metadata for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupOperationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Operation Results", - "operation": "Get Backup Operation Result", - "description": "Returns Backup Operation Result for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupOperations/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Operation Status", - "operation": "Get Backup Operation Status", - "description": "Returns Backup Operation Status for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupJobs/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Jobs", - "operation": "Get Jobs", - "description": "Returns all Job Objects" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupJobs/cancel/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Jobs", - "operation": "Cancel Jobs", - "description": "Cancel the Job" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupJobsExport/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Export Backup Jobs", - "operation": "Export Jobs", - "description": "Export Jobs" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupJobs/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Jobs Operation Results", - "operation": "Get Job Operation Result", - "description": "Returns the Result of Job Operation." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupJobsExport/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Export Backup Jobs Operation Results", - "operation": "Get Export Job Operation Result", - "description": "Returns the Result of Export Job Operation." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Recovery Points", - "operation": "Get Recovery Points", - "description": "Get Recovery Points for Protected Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Recovery Points", - "operation": "Restore Recovery Points", - "description": "Restore Recovery Points for Protected Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Recovery Points", - "operation": "Provision Instant Item Recovery for Protected Item", - "description": "Provision Instant Item Recovery for Protected Item" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Recovery Points", - "operation": "Revoke Instant Item Recovery for Protected Item", - "description": "Revoke Instant Item Recovery for Protected Item" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPolicies/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Policies", - "operation": "Get Protection Policy", - "description": "Returns all Protection Policies" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPolicies/write", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Policies", - "operation": "Create Protection Policy", - "description": "Creates Protection Policy" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPolicies/delete", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Policies", - "operation": "Delete Protection Policy", - "description": "Delete a Protection Policy" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPolicies/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Policy Operation Results", - "operation": "Get Policy Operation Results", - "description": "Get Results of Policy Operation." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPolicies/operationsStatus/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Policy Operation Status", - "operation": "Get Policy Operation Status", - "description": "Get Status of Policy Operation." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Items", - "operation": "Get Protected Item Details", - "description": "Returns object details of the Protected Item" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupProtectedItems/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Items", - "operation": "Get All Protected Items", - "description": "Returns the list of all Protected Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/write", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Items", - "operation": "Create Backup Protected Item", - "description": "Create a backup Protected Item" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/delete", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Items", - "operation": "Delete Protected Items", - "description": "Deletes Protected Item" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Item Operation Results", - "operation": "Get Protected Items Operation Results", - "description": "Gets Result of Operation Performed on Protected Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Item Operation Status", - "operation": "Get Protected Items operation status", - "description": "Returns the status of Operation performed on Protected Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/backup/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Items", - "operation": "Backup Protected Item", - "description": "Performs Backup for Protected Item." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupProtectableItems/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Protectable Items", - "operation": "Get Protectable Items", - "description": "Returns list of all Protectable Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/refreshContainers/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Refresh Containers", - "operation": "Refresh container", - "description": "Refreshes the container list" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Refresh Containers Operation Results", - "operation": "Get Operation Results", - "description": "Returns status of the operation" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupProtectionContainers/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Protection Containers", - "operation": "Get Containers In Subscription", - "description": "Returns all containers belonging to the subscription" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protection Containers", - "operation": "Get Registered Container", - "description": "Returns all registered containers" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protection Containers Operation Results", - "operation": "Get Container Operation Results", - "description": "Gets result of Operation performed on Protection Container." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupEngines", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Engines", - "operation": "List of backup management servers.", - "description": "Returns all the backup management servers registered with vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupStatus", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Status", - "operation": "Check Backup Status for Vault", - "description": "Check Backup Status for Recovery Services Vaults" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPreValidateProtection", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "PreValidate Protection", - "operation": "Pre Validate Enable Protection", - "description": "" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupValidateFeatures", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Validate Features", - "operation": "Validate Features", - "description": "Validate Features" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/backupProtectionIntent/write", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protection Intent", - "operation": "Create backup Protection Intent", - "description": "Create a backup Protection Intent" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/{fabricName}/protectionContainers/{containerName}/items/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Workload Items", - "operation": "Get all items in a container", - "description": "Get all items in a container" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/inquire/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protection Containers Inquire", - "operation": "Get all items in a container", - "description": "Get all items in a container" - }, - "origin": "user" - } - ] - } - } + "parameters": { + "api-version": "2016-06-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "microsoft.recoveryservices/vaults/usages/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Vault Usage", + "operation": "Recovery Services Vault usage details.", + "description": "Returns usage details for a Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupUsageSummaries/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Usages Summaries", + "operation": "Recovery Services Protected Items and Protected Servers usage summaries details.", + "description": "Returns summaries for Protected Items and Protected Servers for a Recovery Services ." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/storageConfig/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Vault Storage Config", + "operation": "Get Resource Storage Config", + "description": "Returns Storage Configuration for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/storageConfig/write", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Vault Storage Config", + "operation": "Write Resource Storage Config", + "description": "Updates Storage Configuration for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupconfig/vaultconfig/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Vault Config", + "operation": "Get Resource Config", + "description": "Returns Configuration for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupconfig/vaultconfig/write", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Vault Config", + "operation": "Update Resource Config", + "description": "Updates Configuration for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/tokenInfo/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Token Info", + "operation": "Get Vault Token Info", + "description": "Returns token information for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupSecurityPIN/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "SecurityPINInfo", + "operation": "Get Security PIN Info", + "description": "Returns Security PIN Information for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupManagementMetaData/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Management Metadata", + "operation": "Get Backup Management Metadata", + "description": "Returns Backup Management Metadata for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupOperationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Operation Results", + "operation": "Get Backup Operation Result", + "description": "Returns Backup Operation Result for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupOperations/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Operation Status", + "operation": "Get Backup Operation Status", + "description": "Returns Backup Operation Status for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupJobs/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Jobs", + "operation": "Get Jobs", + "description": "Returns all Job Objects" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupJobs/cancel/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Jobs", + "operation": "Cancel Jobs", + "description": "Cancel the Job" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupJobsExport/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Export Backup Jobs", + "operation": "Export Jobs", + "description": "Export Jobs" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupJobs/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Jobs Operation Results", + "operation": "Get Job Operation Result", + "description": "Returns the Result of Job Operation." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupJobsExport/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Export Backup Jobs Operation Results", + "operation": "Get Export Job Operation Result", + "description": "Returns the Result of Export Job Operation." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Recovery Points", + "operation": "Get Recovery Points", + "description": "Get Recovery Points for Protected Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Recovery Points", + "operation": "Restore Recovery Points", + "description": "Restore Recovery Points for Protected Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Recovery Points", + "operation": "Provision Instant Item Recovery for Protected Item", + "description": "Provision Instant Item Recovery for Protected Item" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Recovery Points", + "operation": "Revoke Instant Item Recovery for Protected Item", + "description": "Revoke Instant Item Recovery for Protected Item" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPolicies/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Policies", + "operation": "Get Protection Policy", + "description": "Returns all Protection Policies" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPolicies/write", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Policies", + "operation": "Create Protection Policy", + "description": "Creates Protection Policy" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPolicies/delete", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Policies", + "operation": "Delete Protection Policy", + "description": "Delete a Protection Policy" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPolicies/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Policy Operation Results", + "operation": "Get Policy Operation Results", + "description": "Get Results of Policy Operation." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPolicies/operationsStatus/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Policy Operation Status", + "operation": "Get Policy Operation Status", + "description": "Get Status of Policy Operation." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Items", + "operation": "Get Protected Item Details", + "description": "Returns object details of the Protected Item" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupProtectedItems/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Items", + "operation": "Get All Protected Items", + "description": "Returns the list of all Protected Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/write", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Items", + "operation": "Create Backup Protected Item", + "description": "Create a backup Protected Item" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/delete", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Items", + "operation": "Delete Protected Items", + "description": "Deletes Protected Item" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Item Operation Results", + "operation": "Get Protected Items Operation Results", + "description": "Gets Result of Operation Performed on Protected Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Item Operation Status", + "operation": "Get Protected Items operation status", + "description": "Returns the status of Operation performed on Protected Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/backup/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Items", + "operation": "Backup Protected Item", + "description": "Performs Backup for Protected Item." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupProtectableItems/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Protectable Items", + "operation": "Get Protectable Items", + "description": "Returns list of all Protectable Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/refreshContainers/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Refresh Containers", + "operation": "Refresh container", + "description": "Refreshes the container list" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Refresh Containers Operation Results", + "operation": "Get Operation Results", + "description": "Returns status of the operation" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupProtectionContainers/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Protection Containers", + "operation": "Get Containers In Subscription", + "description": "Returns all containers belonging to the subscription" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protection Containers", + "operation": "Get Registered Container", + "description": "Returns all registered containers" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protection Containers Operation Results", + "operation": "Get Container Operation Results", + "description": "Gets result of Operation performed on Protection Container." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupEngines", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Engines", + "operation": "List of backup management servers.", + "description": "Returns all the backup management servers registered with vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupStatus", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Status", + "operation": "Check Backup Status for Vault", + "description": "Check Backup Status for Recovery Services Vaults" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPreValidateProtection", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "PreValidate Protection", + "operation": "Pre Validate Enable Protection", + "description": "" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupValidateFeatures", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Validate Features", + "operation": "Validate Features", + "description": "Validate Features" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/backupProtectionIntent/write", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protection Intent", + "operation": "Create backup Protection Intent", + "description": "Create a backup Protection Intent" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/{fabricName}/protectionContainers/{containerName}/items/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Workload Items", + "operation": "Get all items in a container", + "description": "Get all items in a container" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/inquire/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protection Containers Inquire", + "operation": "Get all items in a container", + "description": "Get all items in a container" + }, + "origin": "user" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListReplicationUsages.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListReplicationUsages.json index 611446c5abd2..042fbeff37d8 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListReplicationUsages.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListReplicationUsages.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListResources.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListResources.json index 5e2d51cde54e..c251bac9f538 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListResources.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListResources.json @@ -1,63 +1,63 @@ { - "parameters": { - "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", - "resourceGroupName": "Default-RecoveryServices-ResourceGroup", - "api-version": "2016-06-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "location": "westus", - "name": "patchtest", - "eTag": "W/\"datetime'2017-11-22T11%3A05%3A19.907Z'\"", - "tags": { - "Love": "India" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/patchtest", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - }, - { - "location": "westus", - "name": "swaggerExample", - "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", - "tags": { - "TestUpdatedKey": "TestUpdatedValue" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - }, - { - "location": "westus", - "name": "today1", - "eTag": "W/\"datetime'2017-11-21T10%3A52%3A19.633Z'\"", - "tags": { - "TestUpdatedKey": "TestUpdatedValue" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/today1", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - } - ] + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "resourceGroupName": "Default-RecoveryServices-ResourceGroup", + "api-version": "2016-06-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "location": "westus", + "name": "patchtest", + "eTag": "W/\"datetime'2017-11-22T11%3A05%3A19.907Z'\"", + "tags": { + "Love": "India" + }, + "properties": { + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/patchtest", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" } - } + }, + { + "location": "westus", + "name": "swaggerExample", + "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", + "tags": { + "TestUpdatedKey": "TestUpdatedValue" + }, + "properties": { + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" + } + }, + { + "location": "westus", + "name": "today1", + "eTag": "W/\"datetime'2017-11-21T10%3A52%3A19.633Z'\"", + "tags": { + "TestUpdatedKey": "TestUpdatedValue" + }, + "properties": { + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/today1", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListUsages.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListUsages.json index 3208f5cabeca..d761b95603fa 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListUsages.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/ListUsages.json @@ -1,180 +1,180 @@ { - "parameters":{ - "subscriptionId":"77777777-b0c6-47a2-b37c-d8e65a629c18", - "resourceGroupName":"Default-RecoveryServices-ResourceGroup", - "vaultName":"swaggerExample", - "api-version": "2016-06-01" + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "resourceGroupName": "Default-RecoveryServices-ResourceGroup", + "vaultName": "swaggerExample", + "api-version": "2016-06-01" }, - "responses":{ - "200":{ - "body":{ - "value": [ - { - "unit": "Count", - "currentValue": 6, - "limit": -1, - "name": { - "value": "MABContainersCount", - "localizedValue": "Backup management servers" - } - }, - { - "unit": "Count", - "currentValue": 3, - "limit": -1, - "name": { - "value": "ProtectedItemCount", - "localizedValue": "Backup items/Azure virtual machine backup" - } - }, - { - "unit": "Count", - "currentValue": 0, - "limit": -1, - "name": { - "value": "ProtectedItemCriticalCount", - "localizedValue": "Critical" - } - }, - { - "unit": "Count", - "currentValue": 0, - "limit": -1, - "name": { - "value": "ProtectedItemWarningCount", - "localizedValue": "Warning" - } - }, - { - "unit": "Count", - "currentValue": 0, - "limit": -1, - "name": { - "value": "IaaSVMProtectedItemCount", - "localizedValue": "Azure Virtual Machines" - } - }, - { - "unit": "Count", - "currentValue": 0, - "limit": -1, - "name": { - "value": "IaaSVMProtectedItemCriticalCount", - "localizedValue": "Critical" - } - }, - { - "unit": "Count", - "currentValue": 0, - "limit": -1, - "name": { - "value": "IaaSVMProtectedItemWarningCount", - "localizedValue": "Warning" - } - }, - { - "unit": "Count", - "currentValue": 0, - "limit": -1, - "name": { - "value": "MABProtectedItemCount", - "localizedValue": "File-Folders" - } - }, - { - "unit": "Count", - "currentValue": 1, - "limit": -1, - "name": { - "value": "DPMProtectedItemCount", - "localizedValue": "DPM Protected Items Count" - } - }, - { - "unit": "Count", - "currentValue": 2, - "limit": -1, - "name": { - "value": "AzureBackupServerProtectedItemCount", - "localizedValue": "Azure Backup Server Protected Items Count" - } - }, - { - "unit": "Count", - "quotaPeriod": "P1D", - "currentValue": 0, - "limit": -1, - "name": { - "value": "InProgressJobsCount", - "localizedValue": "In progress" - } - }, - { - "unit": "Count", - "quotaPeriod": "P1D", - "currentValue": 0, - "limit": -1, - "name": { - "value": "FailedJobsCount", - "localizedValue": "Failed" - } - }, - { - "unit": "Bytes", - "currentValue": 117007930, - "limit": -1, - "name": { - "value": "GRSStorageUsage", - "localizedValue": "Cloud - GRS" - } - }, - { - "unit": "Bytes", - "currentValue": 0, - "limit": -1, - "name": { - "value": "LRSStorageUsage", - "localizedValue": "Cloud - LRS" - } - }, - { - "unit": "Count", - "currentValue": 5, - "limit": -1, - "name": { - "value": "ManagedInstances", - "localizedValue": "Protected Instances" - } - }, - { - "unit": "Bytes", - "currentValue": 0, - "limit": -1, - "name": { - "value": "GRSDedupStorageUsage", - "localizedValue": "Dedup - GRS" - } - }, - { - "unit": "Bytes", - "currentValue": 0, - "limit": -1, - "name": { - "value": "LRSDedupStorageUsage", - "localizedValue": "Dedup - LRS" - } - }, - { - "unit": "Bytes", - "currentValue": 117851553792, - "limit": -1, - "name": { - "value": "UsedDiskSize", - "localizedValue": "Backup Engines' Disk Used" - } - } - ] + "responses": { + "200": { + "body": { + "value": [ + { + "unit": "Count", + "currentValue": 6, + "limit": -1, + "name": { + "value": "MABContainersCount", + "localizedValue": "Backup management servers" + } + }, + { + "unit": "Count", + "currentValue": 3, + "limit": -1, + "name": { + "value": "ProtectedItemCount", + "localizedValue": "Backup items/Azure virtual machine backup" + } + }, + { + "unit": "Count", + "currentValue": 0, + "limit": -1, + "name": { + "value": "ProtectedItemCriticalCount", + "localizedValue": "Critical" + } + }, + { + "unit": "Count", + "currentValue": 0, + "limit": -1, + "name": { + "value": "ProtectedItemWarningCount", + "localizedValue": "Warning" + } + }, + { + "unit": "Count", + "currentValue": 0, + "limit": -1, + "name": { + "value": "IaaSVMProtectedItemCount", + "localizedValue": "Azure Virtual Machines" + } + }, + { + "unit": "Count", + "currentValue": 0, + "limit": -1, + "name": { + "value": "IaaSVMProtectedItemCriticalCount", + "localizedValue": "Critical" + } + }, + { + "unit": "Count", + "currentValue": 0, + "limit": -1, + "name": { + "value": "IaaSVMProtectedItemWarningCount", + "localizedValue": "Warning" + } + }, + { + "unit": "Count", + "currentValue": 0, + "limit": -1, + "name": { + "value": "MABProtectedItemCount", + "localizedValue": "File-Folders" + } + }, + { + "unit": "Count", + "currentValue": 1, + "limit": -1, + "name": { + "value": "DPMProtectedItemCount", + "localizedValue": "DPM Protected Items Count" + } + }, + { + "unit": "Count", + "currentValue": 2, + "limit": -1, + "name": { + "value": "AzureBackupServerProtectedItemCount", + "localizedValue": "Azure Backup Server Protected Items Count" + } + }, + { + "unit": "Count", + "quotaPeriod": "P1D", + "currentValue": 0, + "limit": -1, + "name": { + "value": "InProgressJobsCount", + "localizedValue": "In progress" + } + }, + { + "unit": "Count", + "quotaPeriod": "P1D", + "currentValue": 0, + "limit": -1, + "name": { + "value": "FailedJobsCount", + "localizedValue": "Failed" + } + }, + { + "unit": "Bytes", + "currentValue": 117007930, + "limit": -1, + "name": { + "value": "GRSStorageUsage", + "localizedValue": "Cloud - GRS" + } + }, + { + "unit": "Bytes", + "currentValue": 0, + "limit": -1, + "name": { + "value": "LRSStorageUsage", + "localizedValue": "Cloud - LRS" + } + }, + { + "unit": "Count", + "currentValue": 5, + "limit": -1, + "name": { + "value": "ManagedInstances", + "localizedValue": "Protected Instances" + } + }, + { + "unit": "Bytes", + "currentValue": 0, + "limit": -1, + "name": { + "value": "GRSDedupStorageUsage", + "localizedValue": "Dedup - GRS" + } + }, + { + "unit": "Bytes", + "currentValue": 0, + "limit": -1, + "name": { + "value": "LRSDedupStorageUsage", + "localizedValue": "Dedup - LRS" + } + }, + { + "unit": "Bytes", + "currentValue": 117851553792, + "limit": -1, + "name": { + "value": "UsedDiskSize", + "localizedValue": "Backup Engines' Disk Used" + } } + ] } + } } -} \ No newline at end of file +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PATCHVault.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PATCHVault.json index f1440dfe7d5f..3ffee5174e80 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PATCHVault.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PATCHVault.json @@ -1,51 +1,51 @@ { - "parameters":{ - "subscriptionId":"77777777-b0c6-47a2-b37c-d8e65a629c18", - "resourceGroupName":"HelloWorld", - "vaultName":"swaggerExample", - "api-version": "2016-06-01", - "vault":{ - "tags": { - "PatchKey": "PatchKeyUpdated" - } + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "resourceGroupName": "HelloWorld", + "vaultName": "swaggerExample", + "api-version": "2016-06-01", + "vault": { + "tags": { + "PatchKey": "PatchKeyUpdated" + } + } + }, + "responses": { + "200": { + "body": { + "location": "westus", + "name": "swaggerExample", + "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", + "tags": { + "PatchKey": "PatchKeyUpdated" + }, + "properties": { + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/HelloWorld/providers/Microsoft.RecoveryServices/vaults/swaggerExample", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" } + } }, - "responses":{ - "200":{ - "body":{ - "location": "westus", - "name": "swaggerExample", - "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", - "tags": { - "PatchKey": "PatchKeyUpdated" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/HelloWorld/providers/Microsoft.RecoveryServices/vaults/swaggerExample", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - } + "201": { + "body": { + "location": "westus", + "name": "swaggerExample", + "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", + "tags": { + "PatchKey": "PatchKeyUpdated" + }, + "properties": { + "provisioningState": "Succeeded" }, - "201":{ - "body":{ - "location": "westus", - "name": "swaggerExample", - "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", - "tags": { - "PatchKey": "PatchKeyUpdated" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/HelloWorld/providers/Microsoft.RecoveryServices/vaults/swaggerExample", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - } + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/HelloWorld/providers/Microsoft.RecoveryServices/vaults/swaggerExample", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PUTVault.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PUTVault.json index a5cee42b0aff..d2a9dca8334c 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PUTVault.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PUTVault.json @@ -1,53 +1,53 @@ { - "parameters":{ - "subscriptionId":"77777777-b0c6-47a2-b37c-d8e65a629c18", - "resourceGroupName":"Default-RecoveryServices-ResourceGroup", - "vaultName":"swaggerExample", - "api-version": "2016-06-01", - "vault":{ - "properties": {}, - "sku": { - "name": "Standard" - }, - "location": "West US" + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "resourceGroupName": "Default-RecoveryServices-ResourceGroup", + "vaultName": "swaggerExample", + "api-version": "2016-06-01", + "vault": { + "properties": {}, + "sku": { + "name": "Standard" + }, + "location": "West US" + } + }, + "responses": { + "200": { + "body": { + "location": "westus", + "name": "swaggerExample", + "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", + "tags": { + "TestUpdatedKey": "TestUpdatedValue" + }, + "properties": { + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" } + } }, - "responses":{ - "200":{ - "body":{ - "location": "westus", - "name": "swaggerExample", - "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", - "tags": { - "TestUpdatedKey": "TestUpdatedValue" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - } + "201": { + "body": { + "location": "westus", + "name": "swaggerExample", + "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", + "tags": { + "TestUpdatedKey": "TestUpdatedValue" + }, + "properties": { + "provisioningState": "Succeeded" }, - "201":{ - "body":{ - "location": "westus", - "name": "swaggerExample", - "eTag": "W/\"datetime'2017-12-15T12%3A36%3A51.68Z'\"", - "tags": { - "TestUpdatedKey": "TestUpdatedValue" - }, - "properties": { - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample", - "type": "Microsoft.RecoveryServices/vaults", - "sku": { - "name": "Standard" - } - } + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample", + "type": "Microsoft.RecoveryServices/vaults", + "sku": { + "name": "Standard" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PUTVaultCred.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PUTVaultCred.json index 2be2b8f86ce1..5871ab1ad58a 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PUTVaultCred.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/PUTVaultCred.json @@ -1,40 +1,40 @@ { - "parameters": { - "subscriptionId": "77777777-d41f-4550-9f70-7708a3a2283b", - "resourceGroupName": "BCDRIbzRG", - "vaultName": "BCDRIbzVault", - "certificateName": "BCDRIbzVault77777777-d41f-4550-9f70-7708a3a2283b-12-18-2017-vaultcredentials", - "api-version": "2016-06-01", - "certificateRequest": { - "properties": { - "authType": "AAD", - "certificate": "MTTC3TCCAcWgAwIBAgIQEj9h+ZLlXK9KrqZX9UkAnzANBgkqhkiG9w0BAQUFADAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTE3MTIxODA5MTc1M1oXDTE3MTIyMzA5Mjc1M1owHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK773/eZZ69RbZZAT05r9MjUxu9y1L1Pn1EgPk62IPJyHlO3OZA922eSBahhP4bgmFljN4LVReqQ5eT/wqO0Zhc+yFkUy4U4RdbQLeUZt2W7yy9XLXgVvqeYDgsjg/QhHetgHArQBW+tlQq5+zPdU7zchI4rbShSJrWhLrZFWiOyFPsuAE4joUQHNlRifdCTsBGKk8HRCY3j1S3c4bfEn3zxlrvrXXssRuW5mJM95rMk0tskoRxXSCi6i9bnlki2Cs9mpVMmBFeofs41KwzlWU0TgpdD8s1QEdvfGB5NbByfetPX7MfJaTBeHZEGbv/Iq8l72u8sPBoOhcaH7qDE/mECAwEAAaMXMBUwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBAILfgHluye1Q+WelhgWhpBBdIq2C0btfV8eFsZaTlBUrM0fwpxQSlAWc2oYHVMQI4A5iUjbDOY35O4yc+TnWKDBKf+laqDP+yos4aiUPuadGUZfvDk7kuw7xeECs64JpHAIEKdRHFW9rD3gwG+nIWaDnEL/7rTyhL3kXrRW2MSUAL8g3GX8Z45c+MQY0jmASIqWdhGn1vpAGyA9mKkzsqg7FXjg8GZb24tGl5Ky85+ip4dkBfXinDD8WwaGyjhGGK97ErvNmN36qly/H0H1Qngiovg1FbHDmkcFO5QclnEJsFFmcO2CcHp5Fqh2wXn5O1cQaxCIRTpQ/uXRpDjl2wKs=" - } - } - }, - "responses": { - "200": { - "body": { - "name": "BCDRIbzVault77777777-d41f-4550-9f70-7708a3a2283b-12-18-2017-vaultcredentials", - "type": "Microsoft.RecoveryServices/vaults/certificates", - "id": "/Subscriptions/77777777-d41f-4550-9f70-7708a3a2283b/resourceGroups/BCDRIbzRG/providers/Microsoft.RecoveryServices/vaults/BCDRIbzVault/certificates/BCDRIbzVault77777777-d41f-4550-9f70-7708a3a2283b-12-18-2017-vaultcredentials", - "properties": { - "authType": "AzureActiveDirectory", - "certificate": "MTTC3TCCAcWgAwIBAgIQEj9h+ZLlXK9KrqZX9UkAnzANBgkqhkiG9w0BAQUFADAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTE3MTIxODA5MTc1M1oXDTE3MTIyMzA5Mjc1M1owHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK773/eZZ69RbZZAT05r9MjUxu9y1L1Pn1EgPk62IPJyHlO3OZA922eSBahhP4bgmFljN4LVReqQ5eT/wqO0Zhc+yFkUy4U4RdbQLeUZt2W7yy9XLXgVvqeYDgsjg/QhHetgHArQBW+tlQq5+zPdU7zchI4rbShSJrWhLrZFWiOyFPsuAE4joUQHNlRifdCTsBGKk8HRCY3j1S3c4bfEn3zxlrvrXXssRuW5mJM95rMk0tskoRxXSCi6i9bnlki2Cs9mpVMmBFeofs41KwzlWU0TgpdD8s1QEdvfGB5NbByfetPX7Mf JaTBeHZEGbv/Iq8l72u8sPBoOhcaH7qDE/mECAwEAAaMXMBUwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBAILfgHluye1Q+WelhgWhpBBdIq2C0btfV8eFsZaTlBUrM0fwpxQSlAWc2oYHVMQI4A5iUjbDOY35O4yc+TnWKDBKf+laqDP+yos4aiUPuadGUZfvDk7kuw7xeECs64JpHAIEKdRHFW9rD3gwG+nIWaDnEL/7rTyhL3kXrRW2MSUAL8g3GX8Z45c+MQY0jmASIqWdhGn1vpAGyA9mKkzsqg7FXjg8GZb24tGl5Ky85+ip4dkBfXinDD8WwaGyjhGGK97ErvNmN36qly/H0H1Qngiovg1FbHDmkcFO5QclnEJsFFmcO2CcHp5Fqh2wXn5O1cQaxCIRTpQ/uXRpDjl2wKs=", - "resourceId": 8726350008099341699, - "aadAuthority": "https://login.windows.net", - "aadTenantId": "9b0c2069-2eba-489f-95f4-eca15cb602ab", - "servicePrincipalClientId": "4932d0bd-b5f9-4659-94a0-7ab02d918933", - "servicePrincipalObjectId": "2d60221e-cef5-4e13-ba66-b33701a533bb", - "azureManagementEndpointAudience": "https://ppe1-id1.wus.wabppe.obs-test.com/restapi/", - "subject": "CN=Windows Azure Tools", - "validFrom": "2017-12-18T14:47:53+05:30", - "validTo": "2017-12-23T14:57:53+05:30", - "thumbprint": "019FE9BAD18A5A09A5CA53B593AF66331F3054AF", - "friendlyName": "", - "issuer": "CN=Windows Azure Tools" - } - } + "parameters": { + "subscriptionId": "77777777-d41f-4550-9f70-7708a3a2283b", + "resourceGroupName": "BCDRIbzRG", + "vaultName": "BCDRIbzVault", + "certificateName": "BCDRIbzVault77777777-d41f-4550-9f70-7708a3a2283b-12-18-2017-vaultcredentials", + "api-version": "2016-06-01", + "certificateRequest": { + "properties": { + "authType": "AAD", + "certificate": "MTTC3TCCAcWgAwIBAgIQEj9h+ZLlXK9KrqZX9UkAnzANBgkqhkiG9w0BAQUFADAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTE3MTIxODA5MTc1M1oXDTE3MTIyMzA5Mjc1M1owHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK773/eZZ69RbZZAT05r9MjUxu9y1L1Pn1EgPk62IPJyHlO3OZA922eSBahhP4bgmFljN4LVReqQ5eT/wqO0Zhc+yFkUy4U4RdbQLeUZt2W7yy9XLXgVvqeYDgsjg/QhHetgHArQBW+tlQq5+zPdU7zchI4rbShSJrWhLrZFWiOyFPsuAE4joUQHNlRifdCTsBGKk8HRCY3j1S3c4bfEn3zxlrvrXXssRuW5mJM95rMk0tskoRxXSCi6i9bnlki2Cs9mpVMmBFeofs41KwzlWU0TgpdD8s1QEdvfGB5NbByfetPX7MfJaTBeHZEGbv/Iq8l72u8sPBoOhcaH7qDE/mECAwEAAaMXMBUwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBAILfgHluye1Q+WelhgWhpBBdIq2C0btfV8eFsZaTlBUrM0fwpxQSlAWc2oYHVMQI4A5iUjbDOY35O4yc+TnWKDBKf+laqDP+yos4aiUPuadGUZfvDk7kuw7xeECs64JpHAIEKdRHFW9rD3gwG+nIWaDnEL/7rTyhL3kXrRW2MSUAL8g3GX8Z45c+MQY0jmASIqWdhGn1vpAGyA9mKkzsqg7FXjg8GZb24tGl5Ky85+ip4dkBfXinDD8WwaGyjhGGK97ErvNmN36qly/H0H1Qngiovg1FbHDmkcFO5QclnEJsFFmcO2CcHp5Fqh2wXn5O1cQaxCIRTpQ/uXRpDjl2wKs=" + } + } + }, + "responses": { + "200": { + "body": { + "name": "BCDRIbzVault77777777-d41f-4550-9f70-7708a3a2283b-12-18-2017-vaultcredentials", + "type": "Microsoft.RecoveryServices/vaults/certificates", + "id": "/Subscriptions/77777777-d41f-4550-9f70-7708a3a2283b/resourceGroups/BCDRIbzRG/providers/Microsoft.RecoveryServices/vaults/BCDRIbzVault/certificates/BCDRIbzVault77777777-d41f-4550-9f70-7708a3a2283b-12-18-2017-vaultcredentials", + "properties": { + "authType": "AzureActiveDirectory", + "certificate": "MTTC3TCCAcWgAwIBAgIQEj9h+ZLlXK9KrqZX9UkAnzANBgkqhkiG9w0BAQUFADAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTE3MTIxODA5MTc1M1oXDTE3MTIyMzA5Mjc1M1owHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK773/eZZ69RbZZAT05r9MjUxu9y1L1Pn1EgPk62IPJyHlO3OZA922eSBahhP4bgmFljN4LVReqQ5eT/wqO0Zhc+yFkUy4U4RdbQLeUZt2W7yy9XLXgVvqeYDgsjg/QhHetgHArQBW+tlQq5+zPdU7zchI4rbShSJrWhLrZFWiOyFPsuAE4joUQHNlRifdCTsBGKk8HRCY3j1S3c4bfEn3zxlrvrXXssRuW5mJM95rMk0tskoRxXSCi6i9bnlki2Cs9mpVMmBFeofs41KwzlWU0TgpdD8s1QEdvfGB5NbByfetPX7Mf JaTBeHZEGbv/Iq8l72u8sPBoOhcaH7qDE/mECAwEAAaMXMBUwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBAILfgHluye1Q+WelhgWhpBBdIq2C0btfV8eFsZaTlBUrM0fwpxQSlAWc2oYHVMQI4A5iUjbDOY35O4yc+TnWKDBKf+laqDP+yos4aiUPuadGUZfvDk7kuw7xeECs64JpHAIEKdRHFW9rD3gwG+nIWaDnEL/7rTyhL3kXrRW2MSUAL8g3GX8Z45c+MQY0jmASIqWdhGn1vpAGyA9mKkzsqg7FXjg8GZb24tGl5Ky85+ip4dkBfXinDD8WwaGyjhGGK97ErvNmN36qly/H0H1Qngiovg1FbHDmkcFO5QclnEJsFFmcO2CcHp5Fqh2wXn5O1cQaxCIRTpQ/uXRpDjl2wKs=", + "resourceId": 8726350008099341699, + "aadAuthority": "https://login.windows.net", + "aadTenantId": "9b0c2069-2eba-489f-95f4-eca15cb602ab", + "servicePrincipalClientId": "4932d0bd-b5f9-4659-94a0-7ab02d918933", + "servicePrincipalObjectId": "2d60221e-cef5-4e13-ba66-b33701a533bb", + "azureManagementEndpointAudience": "https://ppe1-id1.wus.wabppe.obs-test.com/restapi/", + "subject": "CN=Windows Azure Tools", + "validFrom": "2017-12-18T14:47:53+05:30", + "validTo": "2017-12-23T14:57:53+05:30", + "thumbprint": "019FE9BAD18A5A09A5CA53B593AF66331F3054AF", + "friendlyName": "", + "issuer": "CN=Windows Azure Tools" } + } } + } } diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/UpdateVaultExtendedInfo.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/UpdateVaultExtendedInfo.json index b437bc34f233..cb2150642019 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/UpdateVaultExtendedInfo.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/examples/UpdateVaultExtendedInfo.json @@ -1,28 +1,28 @@ { - "parameters":{ - "subscriptionId":"77777777-b0c6-47a2-b37c-d8e65a629c18", - "resourceGroupName":"Default-RecoveryServices-ResourceGroup", - "vaultName":"swaggerExample", - "api-version": "2016-06-01", - "resourceResourceExtendedInfoDetails":{ - "properties":{ - "integrityKey": "J99wzS27fmJ+Wjot7xO5wA==", - "algorithm": "None" - } - } - }, - "responses":{ - "200":{ - "body":{ - "name": "vaultExtendedInfo", - "eTag": "f0d0260b-b92d-4458-ba0a-32c6cdabacb7", - "properties": { - "integrityKey": "J99wzS27fmJ+Wjot7xO5wA==", - "algorithm": "None" - }, - "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample/extendedInformation/vaultExtendedInfo", - "type": "Microsoft.RecoveryServices/vaults/extendedInformation" - } - } + "parameters": { + "subscriptionId": "77777777-b0c6-47a2-b37c-d8e65a629c18", + "resourceGroupName": "Default-RecoveryServices-ResourceGroup", + "vaultName": "swaggerExample", + "api-version": "2016-06-01", + "resourceResourceExtendedInfoDetails": { + "properties": { + "integrityKey": "J99wzS27fmJ+Wjot7xO5wA==", + "algorithm": "None" + } } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "name": "vaultExtendedInfo", + "eTag": "f0d0260b-b92d-4458-ba0a-32c6cdabacb7", + "properties": { + "integrityKey": "J99wzS27fmJ+Wjot7xO5wA==", + "algorithm": "None" + }, + "id": "/subscriptions/77777777-b0c6-47a2-b37c-d8e65a629c18/resourceGroups/Default-RecoveryServices-ResourceGroup/providers/Microsoft.RecoveryServices/vaults/swaggerExample/extendedInformation/vaultExtendedInfo", + "type": "Microsoft.RecoveryServices/vaults/extendedInformation" + } + } + } +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/registeredidentities.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/registeredidentities.json index d0643713b4d0..8a7f7386e601 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/registeredidentities.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/registeredidentities.json @@ -365,4 +365,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/replicationusages.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/replicationusages.json index a7b1a3fc220a..1d3c5f287130 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/replicationusages.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/replicationusages.json @@ -121,7 +121,7 @@ }, "jobsSummary": { "$ref": "#/definitions/JobsSummary", - "description": "Summary of the replication jobs data for this vault." + "description": "Summary of the replication jobs data for this vault." }, "protectedItemCount": { "description": "Number of replication protected items for this vault.", @@ -205,4 +205,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/vaults.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/vaults.json index 7b2d44ac0cd6..fba28afd72a3 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/vaults.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/vaults.json @@ -982,4 +982,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/vaultusages.json b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/vaultusages.json index 924beddeba40..2e9f19ea499b 100644 --- a/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/vaultusages.json +++ b/specification/recoveryservices/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/vaultusages.json @@ -186,4 +186,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/recoveryservicesbackup.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/recoveryservicesbackup.json index 27d809edb5a5..b3ff1484e97e 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/recoveryservicesbackup.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/recoveryservicesbackup.json @@ -4484,4 +4484,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/registeredIdentities.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/registeredIdentities.json index f2f692e15a67..5bb2f0b9f052 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/registeredIdentities.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-06-01/registeredIdentities.json @@ -55,8 +55,7 @@ } } }, - "definitions": { - }, + "definitions": {}, "parameters": { "SubscriptionId": { "name": "subscriptionId", @@ -107,4 +106,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ListOperations.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ListOperations.json index 4d965a2cfaf9..f4b077d336d0 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ListOperations.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ListOperations.json @@ -1,462 +1,463 @@ { - "parameters": { - "api-version": "2016-08-10" - }, - "responses": { - "200": { - "body": { - "value": [{ - "name": "microsoft.recoveryservices/vaults/usages/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Vault Usage", - "operation": "Recovery Services Vault usage details.", - "description": "Returns usage details for a Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupUsageSummaries/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Usages Summaries", - "operation": "Recovery Services Protected Items and Protected Servers usage summaries details.", - "description": "Returns summaries for Protected Items and Protected Servers for a Recovery Services ." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/storageConfig/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Vault Storage Config", - "operation": "Get Resource Storage Config", - "description": "Returns Storage Configuration for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/storageConfig/write", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Vault Storage Config", - "operation": "Write Resource Storage Config", - "description": "Updates Storage Configuration for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupconfig/vaultconfig/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Vault Config", - "operation": "Get Resource Config", - "description": "Returns Configuration for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupconfig/vaultconfig/write", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Vault Config", - "operation": "Update Resource Config", - "description": "Updates Configuration for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/tokenInfo/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Token Info", - "operation": "Get Vault Token Info", - "description": "Returns token information for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupSecurityPIN/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "SecurityPINInfo", - "operation": "Get Security PIN Info", - "description": "Returns Security PIN Information for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupManagementMetaData/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Management Metadata", - "operation": "Get Backup Management Metadata", - "description": "Returns Backup Management Metadata for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupOperationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Operation Results", - "operation": "Get Backup Operation Result", - "description": "Returns Backup Operation Result for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupOperations/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Operation Status", - "operation": "Get Backup Operation Status", - "description": "Returns Backup Operation Status for Recovery Services Vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupJobs/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Jobs", - "operation": "Get Jobs", - "description": "Returns all Job Objects" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupJobs/cancel/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Jobs", - "operation": "Cancel Jobs", - "description": "Cancel the Job" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupJobsExport/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Export Backup Jobs", - "operation": "Export Jobs", - "description": "Export Jobs" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupJobs/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Jobs Operation Results", - "operation": "Get Job Operation Result", - "description": "Returns the Result of Job Operation." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupJobsExport/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Export Backup Jobs Operation Results", - "operation": "Get Export Job Operation Result", - "description": "Returns the Result of Export Job Operation." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Recovery Points", - "operation": "Get Recovery Points", - "description": "Get Recovery Points for Protected Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Recovery Points", - "operation": "Restore Recovery Points", - "description": "Restore Recovery Points for Protected Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Recovery Points", - "operation": "Provision Instant Item Recovery for Protected Item", - "description": "Provision Instant Item Recovery for Protected Item" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Recovery Points", - "operation": "Revoke Instant Item Recovery for Protected Item", - "description": "Revoke Instant Item Recovery for Protected Item" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPolicies/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Policies", - "operation": "Get Protection Policy", - "description": "Returns all Protection Policies" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPolicies/write", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Policies", - "operation": "Create Protection Policy", - "description": "Creates Protection Policy" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPolicies/delete", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Policies", - "operation": "Delete Protection Policy", - "description": "Delete a Protection Policy" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPolicies/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Policy Operation Results", - "operation": "Get Policy Operation Results", - "description": "Get Results of Policy Operation." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPolicies/operationsStatus/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Policy Operation Status", - "operation": "Get Policy Operation Status", - "description": "Get Status of Policy Operation." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Items", - "operation": "Get Protected Item Details", - "description": "Returns object details of the Protected Item" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupProtectedItems/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Items", - "operation": "Get All Protected Items", - "description": "Returns the list of all Protected Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/write", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Items", - "operation": "Create Backup Protected Item", - "description": "Create a backup Protected Item" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/delete", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Items", - "operation": "Delete Protected Items", - "description": "Deletes Protected Item" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Item Operation Results", - "operation": "Get Protected Items Operation Results", - "description": "Gets Result of Operation Performed on Protected Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Item Operation Status", - "operation": "Get Protected Items operation status", - "description": "Returns the status of Operation performed on Protected Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/backup/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protected Items", - "operation": "Backup Protected Item", - "description": "Performs Backup for Protected Item." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupProtectableItems/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Protectable Items", - "operation": "Get Protectable Items", - "description": "Returns list of all Protectable Items." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/refreshContainers/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Refresh Containers", - "operation": "Refresh container", - "description": "Refreshes the container list" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Refresh Containers Operation Results", - "operation": "Get Operation Results", - "description": "Returns status of the operation" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupProtectionContainers/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Protection Containers", - "operation": "Get Containers In Subscription", - "description": "Returns all containers belonging to the subscription" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protection Containers", - "operation": "Get Registered Container", - "description": "Returns all registered containers" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/operationResults/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protection Containers Operation Results", - "operation": "Get Container Operation Results", - "description": "Gets result of Operation performed on Protection Container." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupEngines", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Engines", - "operation": "List of backup management servers.", - "description": "Returns all the backup management servers registered with vault." - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupStatus", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Backup Status", - "operation": "Check Backup Status for Vault", - "description": "Check Backup Status for Recovery Services Vaults" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupPreValidateProtection", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "PreValidate Protection", - "operation": "Pre Validate Enable Protection", - "description": "" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupValidateFeatures", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Validate Features", - "operation": "Validate Features", - "description": "Validate Features" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/backupProtectionIntent/write", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protection Intent", - "operation": "Create backup Protection Intent", - "description": "Create a backup Protection Intent" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/{fabricName}/protectionContainers/{containerName}/items/read", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Workload Items", - "operation": "Get all items in a container", - "description": "Get all items in a container" - }, - "origin": "user" - }, - { - "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/inquire/action", - "display": { - "provider": "microsoft.recoveryservices", - "resource": "Protection Containers Inquire", - "operation": "Get all items in a container", - "description": "Get all items in a container" - }, - "origin": "user" - } - ] - } - } + "parameters": { + "api-version": "2016-08-10" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "microsoft.recoveryservices/vaults/usages/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Vault Usage", + "operation": "Recovery Services Vault usage details.", + "description": "Returns usage details for a Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupUsageSummaries/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Usages Summaries", + "operation": "Recovery Services Protected Items and Protected Servers usage summaries details.", + "description": "Returns summaries for Protected Items and Protected Servers for a Recovery Services ." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/storageConfig/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Vault Storage Config", + "operation": "Get Resource Storage Config", + "description": "Returns Storage Configuration for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/storageConfig/write", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Vault Storage Config", + "operation": "Write Resource Storage Config", + "description": "Updates Storage Configuration for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupconfig/vaultconfig/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Vault Config", + "operation": "Get Resource Config", + "description": "Returns Configuration for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupconfig/vaultconfig/write", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Vault Config", + "operation": "Update Resource Config", + "description": "Updates Configuration for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/tokenInfo/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Token Info", + "operation": "Get Vault Token Info", + "description": "Returns token information for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupSecurityPIN/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "SecurityPINInfo", + "operation": "Get Security PIN Info", + "description": "Returns Security PIN Information for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupManagementMetaData/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Management Metadata", + "operation": "Get Backup Management Metadata", + "description": "Returns Backup Management Metadata for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupOperationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Operation Results", + "operation": "Get Backup Operation Result", + "description": "Returns Backup Operation Result for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupOperations/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Operation Status", + "operation": "Get Backup Operation Status", + "description": "Returns Backup Operation Status for Recovery Services Vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupJobs/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Jobs", + "operation": "Get Jobs", + "description": "Returns all Job Objects" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupJobs/cancel/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Jobs", + "operation": "Cancel Jobs", + "description": "Cancel the Job" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupJobsExport/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Export Backup Jobs", + "operation": "Export Jobs", + "description": "Export Jobs" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupJobs/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Jobs Operation Results", + "operation": "Get Job Operation Result", + "description": "Returns the Result of Job Operation." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupJobsExport/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Export Backup Jobs Operation Results", + "operation": "Get Export Job Operation Result", + "description": "Returns the Result of Export Job Operation." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Recovery Points", + "operation": "Get Recovery Points", + "description": "Get Recovery Points for Protected Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Recovery Points", + "operation": "Restore Recovery Points", + "description": "Restore Recovery Points for Protected Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Recovery Points", + "operation": "Provision Instant Item Recovery for Protected Item", + "description": "Provision Instant Item Recovery for Protected Item" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Recovery Points", + "operation": "Revoke Instant Item Recovery for Protected Item", + "description": "Revoke Instant Item Recovery for Protected Item" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPolicies/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Policies", + "operation": "Get Protection Policy", + "description": "Returns all Protection Policies" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPolicies/write", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Policies", + "operation": "Create Protection Policy", + "description": "Creates Protection Policy" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPolicies/delete", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Policies", + "operation": "Delete Protection Policy", + "description": "Delete a Protection Policy" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPolicies/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Policy Operation Results", + "operation": "Get Policy Operation Results", + "description": "Get Results of Policy Operation." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPolicies/operationsStatus/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Policy Operation Status", + "operation": "Get Policy Operation Status", + "description": "Get Status of Policy Operation." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Items", + "operation": "Get Protected Item Details", + "description": "Returns object details of the Protected Item" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupProtectedItems/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Items", + "operation": "Get All Protected Items", + "description": "Returns the list of all Protected Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/write", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Items", + "operation": "Create Backup Protected Item", + "description": "Create a backup Protected Item" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/delete", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Items", + "operation": "Delete Protected Items", + "description": "Deletes Protected Item" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Item Operation Results", + "operation": "Get Protected Items Operation Results", + "description": "Gets Result of Operation Performed on Protected Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Item Operation Status", + "operation": "Get Protected Items operation status", + "description": "Returns the status of Operation performed on Protected Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/protectedItems/backup/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protected Items", + "operation": "Backup Protected Item", + "description": "Performs Backup for Protected Item." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupProtectableItems/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Protectable Items", + "operation": "Get Protectable Items", + "description": "Returns list of all Protectable Items." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/refreshContainers/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Refresh Containers", + "operation": "Refresh container", + "description": "Refreshes the container list" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Refresh Containers Operation Results", + "operation": "Get Operation Results", + "description": "Returns status of the operation" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupProtectionContainers/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Protection Containers", + "operation": "Get Containers In Subscription", + "description": "Returns all containers belonging to the subscription" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protection Containers", + "operation": "Get Registered Container", + "description": "Returns all registered containers" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/operationResults/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protection Containers Operation Results", + "operation": "Get Container Operation Results", + "description": "Gets result of Operation performed on Protection Container." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupEngines", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Engines", + "operation": "List of backup management servers.", + "description": "Returns all the backup management servers registered with vault." + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupStatus", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Backup Status", + "operation": "Check Backup Status for Vault", + "description": "Check Backup Status for Recovery Services Vaults" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupPreValidateProtection", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "PreValidate Protection", + "operation": "Pre Validate Enable Protection", + "description": "" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupValidateFeatures", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Validate Features", + "operation": "Validate Features", + "description": "Validate Features" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/backupProtectionIntent/write", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protection Intent", + "operation": "Create backup Protection Intent", + "description": "Create a backup Protection Intent" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/{fabricName}/protectionContainers/{containerName}/items/read", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Workload Items", + "operation": "Get all items in a container", + "description": "Get all items in a container" + }, + "origin": "user" + }, + { + "name": "microsoft.recoveryservices/vaults/backupFabrics/protectionContainers/inquire/action", + "display": { + "provider": "microsoft.recoveryservices", + "resource": "Protection Containers Inquire", + "operation": "Get all items in a container", + "description": "Get all items in a container" + }, + "origin": "user" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/operations.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/operations.json index 543b6c97cda4..38de1d826c68 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/operations.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/operations.json @@ -181,4 +181,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/bms.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/bms.json index 5bd52620e350..36d4e241e8ff 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/bms.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/bms.json @@ -6840,4 +6840,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/BackupProtectableItems_List.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/BackupProtectableItems_List.json index 0174649c13d7..3083c1f00dd6 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/BackupProtectableItems_List.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/BackupProtectableItems_List.json @@ -1,32 +1,32 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "api-version": "2016-06-01", - "$filter": "backupManagementType eq 'AzureIaasVM'" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm-rg;iaasvm-1/protectableItems/VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", - "name": "VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems", - "properties": { - "friendlyName": "iaasvm-1", - "virtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1", - "protectionState": "NotProtected", - "protectableItemType": "Microsoft.ClassicCompute/virtualMachines", - "backupManagementType": "AzureIaasVM", - "workloadType": "VM", - "containerName": "iaasvmcontainer;iaasvm-rg;iaasvm-1", - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1" - } - } - ] + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "api-version": "2016-06-01", + "$filter": "backupManagementType eq 'AzureIaasVM'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm-rg;iaasvm-1/protectableItems/VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", + "name": "VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems", + "properties": { + "friendlyName": "iaasvm-1", + "virtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1", + "protectionState": "NotProtected", + "protectableItemType": "Microsoft.ClassicCompute/virtualMachines", + "backupManagementType": "AzureIaasVM", + "workloadType": "VM", + "containerName": "iaasvmcontainer;iaasvm-rg;iaasvm-1", + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ClassicCompute_ProtectedItem_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ClassicCompute_ProtectedItem_Get.json index 65308045dd57..c1dfd15bc518 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ClassicCompute_ProtectedItem_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ClassicCompute_ProtectedItem_Get.json @@ -1,38 +1,38 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "PythonSDKBackupTestRg", - "vaultName": "PySDKBackupTestRsVault", - "fabricName": "Azure", - "containerName": "iaasvmcontainer;iaasvmcontainer;iaasvm-rg;iaasvm-1", - "protectedItemName": "vm;iaasvmcontainer;iaasvm-rg;iaasvm-1", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm-rg;iaasvm-1/protectedItems/VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", - "name": "VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems", - "properties": { - "friendlyName": "iaasvm-1", - "virtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1", - "protectionStatus": "Healthy", - "protectionState": "Protected", - "healthStatus": "Passed", - "lastBackupStatus": "Completed", - "lastBackupTime": "2018-01-22T12:25:32.048723Z", - "protectedItemDataId": "636482643132986882", - "protectedItemType": "Microsoft.ClassicCompute/virtualMachines", - "backupManagementType": "AzureIaasVM", - "workloadType": "VM", - "containerName": "iaasvmcontainer;iaasvm-rg;iaasvm-1", - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1", - "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupPolicies/testPolicy1", - "lastRecoveryPoint": "2017-11-22T12:25:32.048723Z" - } - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "PythonSDKBackupTestRg", + "vaultName": "PySDKBackupTestRsVault", + "fabricName": "Azure", + "containerName": "iaasvmcontainer;iaasvmcontainer;iaasvm-rg;iaasvm-1", + "protectedItemName": "vm;iaasvmcontainer;iaasvm-rg;iaasvm-1", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm-rg;iaasvm-1/protectedItems/VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", + "name": "VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems", + "properties": { + "friendlyName": "iaasvm-1", + "virtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1", + "protectionStatus": "Healthy", + "protectionState": "Protected", + "healthStatus": "Passed", + "lastBackupStatus": "Completed", + "lastBackupTime": "2018-01-22T12:25:32.048723Z", + "protectedItemDataId": "636482643132986882", + "protectedItemType": "Microsoft.ClassicCompute/virtualMachines", + "backupManagementType": "AzureIaasVM", + "workloadType": "VM", + "containerName": "iaasvmcontainer;iaasvm-rg;iaasvm-1", + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1", + "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupPolicies/testPolicy1", + "lastRecoveryPoint": "2017-11-22T12:25:32.048723Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Compute_ProtectedItem_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Compute_ProtectedItem_Get.json index c0723d0e5547..208c7be624ee 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Compute_ProtectedItem_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Compute_ProtectedItem_Get.json @@ -1,38 +1,38 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "PythonSDKBackupTestRg", - "vaultName": "PySDKBackupTestRsVault", - "fabricName": "Azure", - "containerName": "iaasvmcontainer;iaasvmcontainerv2;iaasvm-rg;iaasvm-1", - "protectedItemName": "vm;iaasvmcontainerv2;iaasvm-rg;iaasvm-1", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm-rg;iaasvm-1/protectedItems/VM;iaasvmcontainerv2;iaasvm-rg;iaasvm-1", - "name": "VM;iaasvmcontainerv2;iaasvm-rg;iaasvm-1", - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems", - "properties": { - "friendlyName": "iaasvm-1", - "virtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.Compute/virtualMachines/iaasvm-1", - "protectionStatus": "Healthy", - "protectionState": "Protected", - "healthStatus": "Passed", - "lastBackupStatus": "Completed", - "lastBackupTime": "2018-01-22T12:25:32.048723Z", - "protectedItemDataId": "636482643132986882", - "protectedItemType": "Microsoft.Compute/virtualMachines", - "backupManagementType": "AzureIaasVM", - "workloadType": "VM", - "containerName": "iaasvmcontainerv2;iaasvm-rg;iaasvm-1", - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.Compute/virtualMachines/iaasvm-1", - "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupPolicies/testPolicy1", - "lastRecoveryPoint": "2017-11-22T12:25:32.048723Z" - } - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "PythonSDKBackupTestRg", + "vaultName": "PySDKBackupTestRsVault", + "fabricName": "Azure", + "containerName": "iaasvmcontainer;iaasvmcontainerv2;iaasvm-rg;iaasvm-1", + "protectedItemName": "vm;iaasvmcontainerv2;iaasvm-rg;iaasvm-1", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm-rg;iaasvm-1/protectedItems/VM;iaasvmcontainerv2;iaasvm-rg;iaasvm-1", + "name": "VM;iaasvmcontainerv2;iaasvm-rg;iaasvm-1", + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems", + "properties": { + "friendlyName": "iaasvm-1", + "virtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.Compute/virtualMachines/iaasvm-1", + "protectionStatus": "Healthy", + "protectionState": "Protected", + "healthStatus": "Passed", + "lastBackupStatus": "Completed", + "lastBackupTime": "2018-01-22T12:25:32.048723Z", + "protectedItemDataId": "636482643132986882", + "protectedItemType": "Microsoft.Compute/virtualMachines", + "backupManagementType": "AzureIaasVM", + "workloadType": "VM", + "containerName": "iaasvmcontainerv2;iaasvm-rg;iaasvm-1", + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.Compute/virtualMachines/iaasvm-1", + "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupPolicies/testPolicy1", + "lastRecoveryPoint": "2017-11-22T12:25:32.048723Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ConfigureProtection.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ConfigureProtection.json index b99c2a74ba2e..1a3477c5549f 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ConfigureProtection.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ConfigureProtection.json @@ -1,28 +1,28 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "fabricName": "Azure", + "containerName": "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", + "protectedItemName": "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", + "api-version": "2016-12-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "fabricName": "Azure", - "containerName": "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", - "protectedItemName": "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", - "api-version": "2016-12-01", - "parameters": { - "properties": { - "protectedItemType": "Microsoft.Compute/virtualMachines", - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy" - } - } - }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": {} - } + "properties": { + "protectedItemType": "Microsoft.Compute/virtualMachines", + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy" + } } -} \ No newline at end of file + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": {} + } + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectedItemOperationResults.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectedItemOperationResults.json index 576cbb12a519..88bdbaae23ea 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectedItemOperationResults.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectedItemOperationResults.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "fabricName": "Azure", - "containerName": "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", - "protectedItemName": "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", - "operationId": "00000000-0000-0000-0000-000000000000", - "api-version": "2016-12-01" - }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": {} - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "fabricName": "Azure", + "containerName": "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", + "protectedItemName": "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", + "operationId": "00000000-0000-0000-0000-000000000000", + "api-version": "2016-12-01" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectedItemOperationStatus.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectedItemOperationStatus.json index ab46b68e3e7e..a8bb0fc1f636 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectedItemOperationStatus.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectedItemOperationStatus.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "fabricName": "Azure", - "containerName": "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", - "protectedItemName": "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", - "operationId": "00000000-0000-0000-0000-000000000000", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "00000000-0000-0000-0000-000000000000", - "name": "00000000-0000-0000-0000-000000000000", - "status": "Succeeded", - "startTime": "2017-10-29T06:04:18.207325Z", - "endTime": "2017-10-29T06:04:18.207325Z", - "properties": { - "objectType": "OperationStatusJobExtendedInfo", - "jobId": "00000000-0000-0000-0000-000000000000" - } - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "fabricName": "Azure", + "containerName": "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", + "protectedItemName": "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", + "operationId": "00000000-0000-0000-0000-000000000000", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "00000000-0000-0000-0000-000000000000", + "name": "00000000-0000-0000-0000-000000000000", + "status": "Succeeded", + "startTime": "2017-10-29T06:04:18.207325Z", + "endTime": "2017-10-29T06:04:18.207325Z", + "properties": { + "objectType": "OperationStatusJobExtendedInfo", + "jobId": "00000000-0000-0000-0000-000000000000" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_CreateOrUpdate_Complex.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_CreateOrUpdate_Complex.json index 54fd76d0b2b5..8e3a5d14ce9c 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_CreateOrUpdate_Complex.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_CreateOrUpdate_Complex.json @@ -1,182 +1,182 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "policyName": "testPolicy1", + "api-version": "2016-06-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "policyName": "testPolicy1", - "api-version": "2016-06-01", - "parameters": { - "properties": { - "backupManagementType": "AzureIaasVM", - "timeZone": "Pacific Standard Time", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Weekly", - "scheduleRunTimes": [ - "2018-01-24T10:00:00Z" - ], - "scheduleRunDays": [ - "Monday", - "Wednesday", - "Thursday" - ] - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "weeklySchedule": { - "daysOfTheWeek": [ - "Monday", - "Wednesday", - "Thursday" - ], - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Weeks" - } - }, - "monthlySchedule": { - "retentionScheduleFormatType": "Weekly", - "retentionScheduleWeekly": { - "daysOfTheWeek": [ - "Wednesday", - "Thursday" - ], - "weeksOfTheMonth": [ - "First", - "Third" - ] - }, - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 2, - "durationType": "Months" - } - }, - "yearlySchedule": { - "retentionScheduleFormatType": "Weekly", - "monthsOfYear": [ - "February", - "November" - ], - "retentionScheduleWeekly": { - "daysOfTheWeek": [ - "Monday", - "Thursday" - ], - "weeksOfTheMonth": [ - "Fourth" - ] - }, - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 4, - "durationType": "Years" - } - } - } + "properties": { + "backupManagementType": "AzureIaasVM", + "timeZone": "Pacific Standard Time", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Weekly", + "scheduleRunTimes": [ + "2018-01-24T10:00:00Z" + ], + "scheduleRunDays": [ + "Monday", + "Wednesday", + "Thursday" + ] + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "weeklySchedule": { + "daysOfTheWeek": [ + "Monday", + "Wednesday", + "Thursday" + ], + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Weeks" } - } - }, - "responses": { - "200": { - "body": { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", - "name": "testPolicy1", - "type": "Microsoft.RecoveryServices/vaults/backupPolicies", - "properties": { - "backupManagementType": "AzureIaasVM", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Weekly", - "scheduleRunDays": [ - "Monday", - "Wednesday", - "Thursday" - ], - "scheduleRunTimes": [ - "2018-01-24T10:00:00Z" - ], - "scheduleWeeklyFrequency": 0 - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "weeklySchedule": { - "daysOfTheWeek": [ - "Monday", - "Wednesday", - "Thursday" - ], - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Weeks" - } - }, - "monthlySchedule": { - "retentionScheduleFormatType": "Weekly", - "retentionScheduleWeekly": { - "daysOfTheWeek": [ - "Wednesday", - "Thursday" - ], - "weeksOfTheMonth": [ - "First", - "Third" - ] - }, - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 2, - "durationType": "Months" - } - }, - "yearlySchedule": { - "retentionScheduleFormatType": "Weekly", - "monthsOfYear": [ - "February", - "November" - ], - "retentionScheduleWeekly": { - "daysOfTheWeek": [ - "Monday", - "Thursday" - ], - "weeksOfTheMonth": [ - "Fourth" - ] - }, - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 4, - "durationType": "Years" - } - } - }, - "timeZone": "Pacific Standard Time", - "protectedItemsCount": 0 - } + }, + "monthlySchedule": { + "retentionScheduleFormatType": "Weekly", + "retentionScheduleWeekly": { + "daysOfTheWeek": [ + "Wednesday", + "Thursday" + ], + "weeksOfTheMonth": [ + "First", + "Third" + ] + }, + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 2, + "durationType": "Months" } - }, - "202": { - "headers": { - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operations/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", - "Retry-After": 60 + }, + "yearlySchedule": { + "retentionScheduleFormatType": "Weekly", + "monthsOfYear": [ + "February", + "November" + ], + "retentionScheduleWeekly": { + "daysOfTheWeek": [ + "Monday", + "Thursday" + ], + "weeksOfTheMonth": [ + "Fourth" + ] + }, + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 4, + "durationType": "Years" + } + } + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", + "name": "testPolicy1", + "type": "Microsoft.RecoveryServices/vaults/backupPolicies", + "properties": { + "backupManagementType": "AzureIaasVM", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Weekly", + "scheduleRunDays": [ + "Monday", + "Wednesday", + "Thursday" + ], + "scheduleRunTimes": [ + "2018-01-24T10:00:00Z" + ], + "scheduleWeeklyFrequency": 0 + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "weeklySchedule": { + "daysOfTheWeek": [ + "Monday", + "Wednesday", + "Thursday" + ], + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Weeks" + } }, - "body": {} + "monthlySchedule": { + "retentionScheduleFormatType": "Weekly", + "retentionScheduleWeekly": { + "daysOfTheWeek": [ + "Wednesday", + "Thursday" + ], + "weeksOfTheMonth": [ + "First", + "Third" + ] + }, + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 2, + "durationType": "Months" + } + }, + "yearlySchedule": { + "retentionScheduleFormatType": "Weekly", + "monthsOfYear": [ + "February", + "November" + ], + "retentionScheduleWeekly": { + "daysOfTheWeek": [ + "Monday", + "Thursday" + ], + "weeksOfTheMonth": [ + "Fourth" + ] + }, + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 4, + "durationType": "Years" + } + } + }, + "timeZone": "Pacific Standard Time", + "protectedItemsCount": 0 } + } + }, + "202": { + "headers": { + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operations/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", + "Retry-After": 60 + }, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_CreateOrUpdate_Simple.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_CreateOrUpdate_Simple.json index 204fc3a0e718..6ee8e3077c80 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_CreateOrUpdate_Simple.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_CreateOrUpdate_Simple.json @@ -1,76 +1,76 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "policyName": "testPolicy1", + "api-version": "2016-06-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "policyName": "testPolicy1", - "api-version": "2016-06-01", - "parameters": { - "properties": { - "backupManagementType": "AzureIaasVM", - "timeZone": "Pacific Standard Time", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", - "scheduleRunTimes": [ - "2018-01-24T02:00:00Z" - ] - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": { - "retentionTimes": [ - "2018-01-24T02:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Days" - } - } - } + "properties": { + "backupManagementType": "AzureIaasVM", + "timeZone": "Pacific Standard Time", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", + "scheduleRunTimes": [ + "2018-01-24T02:00:00Z" + ] + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": { + "retentionTimes": [ + "2018-01-24T02:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Days" } + } } - }, - "responses": { - "200": { - "body": { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", - "name": "testPolicy1", - "type": "Microsoft.RecoveryServices/vaults/backupPolicies", - "properties": { - "backupManagementType": "AzureIaasVM", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", - "scheduleRunTimes": [ - "2018-01-24T02:00:00Z" - ], - "scheduleWeeklyFrequency": 0 - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": { - "retentionTimes": [ - "2018-01-24T02:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Days" - } - } - }, - "timeZone": "Pacific Standard Time", - "protectedItemsCount": 0 - } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", + "name": "testPolicy1", + "type": "Microsoft.RecoveryServices/vaults/backupPolicies", + "properties": { + "backupManagementType": "AzureIaasVM", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", + "scheduleRunTimes": [ + "2018-01-24T02:00:00Z" + ], + "scheduleWeeklyFrequency": 0 + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": { + "retentionTimes": [ + "2018-01-24T02:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Days" + } } - }, - "202": { - "headers": { - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operations/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", - "Retry-After": 60 - }, - "body": {} + }, + "timeZone": "Pacific Standard Time", + "protectedItemsCount": 0 } + } + }, + "202": { + "headers": { + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operations/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", + "Retry-After": 60 + }, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_Delete.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_Delete.json index b8d69f978276..100f5dad2936 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_Delete.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_Delete.json @@ -1,14 +1,14 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "policyName": "testPolicy1", - "api-version": "2016-06-01" - }, - "responses": { - "200": { - "body": {} - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "policyName": "testPolicy1", + "api-version": "2016-06-01" + }, + "responses": { + "200": { + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_Get.json index 42c2c507d70a..6a698287fb6a 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicies_Get.json @@ -1,43 +1,43 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "policyName": "testPolicy1", - "api-version": "2016-06-01" - }, - "responses": { - "200": { - "body": { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", - "name": "testPolicy1", - "type": "Microsoft.RecoveryServices/vaults/backupPolicies", - "properties": { - "backupManagementType": "AzureIaasVM", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", - "scheduleRunTimes": [ - "2018-01-24T02:00:00Z" - ], - "scheduleWeeklyFrequency": 0 - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": { - "retentionTimes": [ - "2018-01-24T02:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Days" - } - } - }, - "timeZone": "Pacific Standard Time", - "protectedItemsCount": 0 - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "policyName": "testPolicy1", + "api-version": "2016-06-01" + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", + "name": "testPolicy1", + "type": "Microsoft.RecoveryServices/vaults/backupPolicies", + "properties": { + "backupManagementType": "AzureIaasVM", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", + "scheduleRunTimes": [ + "2018-01-24T02:00:00Z" + ], + "scheduleWeeklyFrequency": 0 + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": { + "retentionTimes": [ + "2018-01-24T02:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Days" + } } + }, + "timeZone": "Pacific Standard Time", + "protectedItemsCount": 0 } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicyOperationResults_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicyOperationResults_Get.json index 09d3e895a218..a3dbfc71880a 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicyOperationResults_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicyOperationResults_Get.json @@ -1,44 +1,44 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "policyName": "testPolicy1", - "operationId": "00000000-0000-0000-0000-000000000000", - "api-version": "2016-06-01" - }, - "responses": { - "200": { - "body": { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", - "name": "testPolicy1", - "type": "Microsoft.RecoveryServices/vaults/backupPolicies", - "properties": { - "backupManagementType": "AzureIaasVM", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", - "scheduleRunTimes": [ - "2018-01-24T02:00:00Z" - ], - "scheduleWeeklyFrequency": 0 - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": { - "retentionTimes": [ - "2018-01-24T02:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Days" - } - } - }, - "timeZone": "Pacific Standard Time", - "protectedItemsCount": 1 - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "policyName": "testPolicy1", + "operationId": "00000000-0000-0000-0000-000000000000", + "api-version": "2016-06-01" + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", + "name": "testPolicy1", + "type": "Microsoft.RecoveryServices/vaults/backupPolicies", + "properties": { + "backupManagementType": "AzureIaasVM", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", + "scheduleRunTimes": [ + "2018-01-24T02:00:00Z" + ], + "scheduleWeeklyFrequency": 0 + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": { + "retentionTimes": [ + "2018-01-24T02:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Days" + } } + }, + "timeZone": "Pacific Standard Time", + "protectedItemsCount": 1 } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicyOperationStatuses_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicyOperationStatuses_Get.json index e0a10121c762..5dc4ee72c7f2 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicyOperationStatuses_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/ProtectionPolicyOperationStatuses_Get.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "policyName": "testPolicy1", - "operationId": "00000000-0000-0000-0000-000000000000", - "api-version": "2016-06-01" - }, - "responses": { - "200": { - "body": { - "id": "00000000-0000-0000-0000-000000000000", - "name": "GetProtectionPolicyOperationStatus", - "status": "Succeeded", - "startTime": "2018-01-24T12:57:32.1142968Z", - "endTime": "2018-01-24T12:57:32.1142968Z", - "properties": { - "objectType": "OperationStatusJobsExtendedInfo", - "jobIds": [ - "00000000-0000-0000-0000-000000000000" - ], - "failedJobsError": {} - } - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "policyName": "testPolicy1", + "operationId": "00000000-0000-0000-0000-000000000000", + "api-version": "2016-06-01" + }, + "responses": { + "200": { + "body": { + "id": "00000000-0000-0000-0000-000000000000", + "name": "GetProtectionPolicyOperationStatus", + "status": "Succeeded", + "startTime": "2018-01-24T12:57:32.1142968Z", + "endTime": "2018-01-24T12:57:32.1142968Z", + "properties": { + "objectType": "OperationStatusJobsExtendedInfo", + "jobIds": [ + "00000000-0000-0000-0000-000000000000" + ], + "failedJobsError": {} } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Provision_Ilr.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Provision_Ilr.json index 628989cbe826..1bc3dbc0b737 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Provision_Ilr.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Provision_Ilr.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "PythonSDKBackupTestRg", + "vaultName": "PySDKBackupTestRsVault", + "fabricName": "Azure", + "containerName": "iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", + "protectedItemName": "vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", + "api-version": "2016-12-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "PythonSDKBackupTestRg", - "vaultName": "PySDKBackupTestRsVault", - "fabricName": "Azure", - "containerName": "iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", - "protectedItemName": "vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", - "api-version": "2016-12-01", - "parameters": { - "properties": { - "initiatorName": "Hello World", - "recoveryPointId": "38823086363464", - "renewExistingRegistration": true, - "virtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pysdktestrg/providers/Microsoft.Compute/virtualMachines/pysdktestv2vm1", - "objectType": "IaasVMILRRegistrationRequest" - } - } - }, - "responses": { - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/protectedItems/vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/protectedItems/vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": {} - } + "properties": { + "initiatorName": "Hello World", + "recoveryPointId": "38823086363464", + "renewExistingRegistration": true, + "virtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pysdktestrg/providers/Microsoft.Compute/virtualMachines/pysdktestv2vm1", + "objectType": "IaasVMILRRegistrationRequest" + } } -} \ No newline at end of file + }, + "responses": { + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/protectedItems/vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/protectedItems/vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": {} + } + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/RecoveryPoints_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/RecoveryPoints_Get.json index 2e50b69963dc..3775558d6cf8 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/RecoveryPoints_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/RecoveryPoints_Get.json @@ -1,39 +1,39 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "rshhtestmdvmrg", - "vaultName": "rshvault", - "fabricName": "Azure", - "containerName": "IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall", - "protectedItemName": "VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall", - "recoveryPointId": "26083826328862", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rshhtestmdvmrg/providers/Microsoft.RecoveryServices/vaults/rshvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/protectedItems/VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/recoveryPoints/26083826328862", - "name": "26083826328862", - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints", - "properties": { - "objectType": "IaasVMRecoveryPoint", - "recoveryPointType": "CrashConsistent", - "recoveryPointTime": "2017-11-22T22:32:46.6088472Z", - "recoveryPointAdditionalInfo": "", - "sourceVMStorageType": "NormalStorage", - "isSourceVMEncrypted": false, - "isInstantIlrSessionActive": false, - "recoveryPointTierDetails": [ - { - "type": 2, - "status": 1 - } - ], - "isManagedVirtualMachine": true, - "virtualMachineSize": "Standard_D1", - "originalStorageAccountOption": false - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rshhtestmdvmrg", + "vaultName": "rshvault", + "fabricName": "Azure", + "containerName": "IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall", + "protectedItemName": "VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall", + "recoveryPointId": "26083826328862", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rshhtestmdvmrg/providers/Microsoft.RecoveryServices/vaults/rshvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/protectedItems/VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/recoveryPoints/26083826328862", + "name": "26083826328862", + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints", + "properties": { + "objectType": "IaasVMRecoveryPoint", + "recoveryPointType": "CrashConsistent", + "recoveryPointTime": "2017-11-22T22:32:46.6088472Z", + "recoveryPointAdditionalInfo": "", + "sourceVMStorageType": "NormalStorage", + "isSourceVMEncrypted": false, + "isInstantIlrSessionActive": false, + "recoveryPointTierDetails": [ + { + "type": 2, + "status": 1 } + ], + "isManagedVirtualMachine": true, + "virtualMachineSize": "Standard_D1", + "originalStorageAccountOption": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/RecoveryPoints_List.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/RecoveryPoints_List.json index 0004f3af7822..578daecf2191 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/RecoveryPoints_List.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/RecoveryPoints_List.json @@ -1,71 +1,71 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "rshhtestmdvmrg", - "vaultName": "rshvault", - "fabricName": "Azure", - "containerName": "IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall", - "protectedItemName": "VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "body": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rshhtestmdvmrg/providers/Microsoft.RecoveryServices/vaults/rshvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/protectedItems/VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/recoveryPoints/22244821112382", - "name": "22244821112382", - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints", - "properties": { - "objectType": "IaasVMRecoveryPoint", - "recoveryPointType": "CrashConsistent", - "recoveryPointTime": "2017-12-21T22:48:25.4353958Z", - "recoveryPointAdditionalInfo": "", - "sourceVMStorageType": "NormalStorage", - "isSourceVMEncrypted": false, - "isInstantIlrSessionActive": false, - "recoveryPointTierDetails": [ - { - "type": 1, - "status": 1 - }, - { - "type": 2, - "status": 1 - } - ], - "isManagedVirtualMachine": true, - "virtualMachineSize": "Standard_D1", - "originalStorageAccountOption": false - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rshhtestmdvmrg/providers/Microsoft.RecoveryServices/vaults/rshvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/protectedItems/VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/recoveryPoints/24977149827250", - "name": "24977149827250", - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints", - "properties": { - "objectType": "IaasVMRecoveryPoint", - "recoveryPointType": "CrashConsistent", - "recoveryPointTime": "2017-12-20T22:49:44.3317945Z", - "recoveryPointAdditionalInfo": "", - "sourceVMStorageType": "NormalStorage", - "isSourceVMEncrypted": false, - "isInstantIlrSessionActive": false, - "recoveryPointTierDetails": [ - { - "type": 1, - "status": 1 - }, - { - "type": 2, - "status": 1 - } - ], - "isManagedVirtualMachine": true, - "virtualMachineSize": "Standard_D1", - "originalStorageAccountOption": false - } - } - ] + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rshhtestmdvmrg", + "vaultName": "rshvault", + "fabricName": "Azure", + "containerName": "IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall", + "protectedItemName": "VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "body": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rshhtestmdvmrg/providers/Microsoft.RecoveryServices/vaults/rshvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/protectedItems/VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/recoveryPoints/22244821112382", + "name": "22244821112382", + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints", + "properties": { + "objectType": "IaasVMRecoveryPoint", + "recoveryPointType": "CrashConsistent", + "recoveryPointTime": "2017-12-21T22:48:25.4353958Z", + "recoveryPointAdditionalInfo": "", + "sourceVMStorageType": "NormalStorage", + "isSourceVMEncrypted": false, + "isInstantIlrSessionActive": false, + "recoveryPointTierDetails": [ + { + "type": 1, + "status": 1 + }, + { + "type": 2, + "status": 1 + } + ], + "isManagedVirtualMachine": true, + "virtualMachineSize": "Standard_D1", + "originalStorageAccountOption": false + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rshhtestmdvmrg/providers/Microsoft.RecoveryServices/vaults/rshvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/protectedItems/VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall/recoveryPoints/24977149827250", + "name": "24977149827250", + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints", + "properties": { + "objectType": "IaasVMRecoveryPoint", + "recoveryPointType": "CrashConsistent", + "recoveryPointTime": "2017-12-20T22:49:44.3317945Z", + "recoveryPointAdditionalInfo": "", + "sourceVMStorageType": "NormalStorage", + "isSourceVMEncrypted": false, + "isInstantIlrSessionActive": false, + "recoveryPointTierDetails": [ + { + "type": 1, + "status": 1 + }, + { + "type": 2, + "status": 1 + } + ], + "isManagedVirtualMachine": true, + "virtualMachineSize": "Standard_D1", + "originalStorageAccountOption": false + } } + ] } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Revoke_Ilr.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Revoke_Ilr.json index 3387f4e52591..9803a3e5c8dd 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Revoke_Ilr.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/Revoke_Ilr.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "PythonSDKBackupTestRg", - "vaultName": "PySDKBackupTestRsVault", - "fabricName": "Azure", - "containerName": "iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", - "protectedItemName": "vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", - "api-version": "2016-12-01" - }, - "responses": { - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/protectedItems/vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/protectedItems/vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": {} - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "PythonSDKBackupTestRg", + "vaultName": "PySDKBackupTestRsVault", + "fabricName": "Azure", + "containerName": "iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", + "protectedItemName": "vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", + "api-version": "2016-12-01" + }, + "responses": { + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/protectedItems/vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/protectedItems/vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/TriggerRestore_ALR.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/TriggerRestore_ALR.json index 691c0dc47b8f..da034008d277 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/TriggerRestore_ALR.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/TriggerRestore_ALR.json @@ -1,41 +1,41 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "netsdktestrg", + "vaultName": "testVault", + "fabricName": "Azure", + "containerName": "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", + "protectedItemName": "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", + "recoveryPointId": "348916168024334", + "api-version": "2016-12-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "netsdktestrg", - "vaultName": "testVault", - "fabricName": "Azure", - "containerName": "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", - "protectedItemName": "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1", + "properties": { + "objectType": "IaasVMRestoreRequest", "recoveryPointId": "348916168024334", - "api-version": "2016-12-01", - "parameters": { - "properties": { - "objectType": "IaasVMRestoreRequest", - "recoveryPointId": "348916168024334", - "recoveryType": "AlternateLocation", - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1", - "targetVirtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg2/providers/Microsoft.Compute/virtualmachines/RSMDALRVM981435", - "targetResourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg2", - "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.Storage/storageAccounts/testingAccount", - "virtualNetworkId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.Network/virtualNetworks/testNet", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.Network/virtualNetworks/testNet/subnets/default", - "region": "southeastasia", - "createNewCloudService": false, - "originalStorageAccountOption": false, - "encryptionDetails": { - "encryptionEnabled": false - } + "recoveryType": "AlternateLocation", + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1", + "targetVirtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg2/providers/Microsoft.Compute/virtualmachines/RSMDALRVM981435", + "targetResourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg2", + "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.Storage/storageAccounts/testingAccount", + "virtualNetworkId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.Network/virtualNetworks/testNet", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.Network/virtualNetworks/testNet/subnets/default", + "region": "southeastasia", + "createNewCloudService": false, + "originalStorageAccountOption": false, + "encryptionDetails": { + "encryptionEnabled": false } } - }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/vm;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/vm;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", - "Retry-After": 60 - }, - "body": {} - } } -} \ No newline at end of file + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/vm;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/vm;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", + "Retry-After": 60 + }, + "body": {} + } + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/TriggerRestore_RestoreDisks.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/TriggerRestore_RestoreDisks.json index 3b879f071cb4..278449a92cea 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/TriggerRestore_RestoreDisks.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/TriggerRestore_RestoreDisks.json @@ -10,7 +10,7 @@ "api-version": "2016-12-01", "parameters": { "properties": { - "objectType": "IaasVMRestoreRequest", + "objectType": "IaasVMRestoreRequest", "recoveryPointId": "348916168024334", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1", @@ -24,14 +24,14 @@ } } }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasVMContainerV2;netsdktestrg;netvmtestv2vm1/protectedItems/vm;iaasVMContainerV2;netsdktestrg;netvmtestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasVMContainerV2;netsdktestrg;netvmtestv2vm1/protectedItems/vm;iaasVMContainerV2;netsdktestrg;netvmtestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": {} - } + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasVMContainerV2;netsdktestrg;netvmtestv2vm1/protectedItems/vm;iaasVMContainerV2;netsdktestrg;netvmtestv2vm1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasVMContainerV2;netsdktestrg;netvmtestv2vm1/protectedItems/vm;iaasVMContainerV2;netsdktestrg;netvmtestv2vm1/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectableContainers_List.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectableContainers_List.json index c71aee44cb3f..9e1f0b3dc5d2 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectableContainers_List.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectableContainers_List.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "vaultName": "testvault", - "fabricName": "Azure", - "api-version": "2017-07-01", - "$filter": "backupManagementType eq 'AzureStorage' and workloadType eq 'AzureFileShare'" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectableContainers/StorageContainer;storage;test-rg;teststorage", - "name": "StorageContainer;storage;test-rg;testst", - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers", - "properties": { - "friendlyName": "teststorage", - "backupManagementType": "AzureStorage", - "protectableContainerType": "StorageContainer", - "healthStatus": "Healthy", - "containerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Storage/storageAccounts/teststorage" - } - }, - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;test-rg;teststorage", - "name": "StorageContainer;ClassicStorage;test-rg;teststorage", - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers", - "properties": { - "friendlyName": "teststorage", - "backupManagementType": "AzureStorage", - "protectableContainerType": "StorageContainer", - "healthStatus": "Healthy", - "containerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.ClassicStorage/storageAccounts/teststorage" - } - } - ] + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "vaultName": "testvault", + "fabricName": "Azure", + "api-version": "2017-07-01", + "$filter": "backupManagementType eq 'AzureStorage' and workloadType eq 'AzureFileShare'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectableContainers/StorageContainer;storage;test-rg;teststorage", + "name": "StorageContainer;storage;test-rg;testst", + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers", + "properties": { + "friendlyName": "teststorage", + "backupManagementType": "AzureStorage", + "protectableContainerType": "StorageContainer", + "healthStatus": "Healthy", + "containerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Storage/storageAccounts/teststorage" } - } + }, + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;test-rg;teststorage", + "name": "StorageContainer;ClassicStorage;test-rg;teststorage", + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers", + "properties": { + "friendlyName": "teststorage", + "backupManagementType": "AzureStorage", + "protectableContainerType": "StorageContainer", + "healthStatus": "Healthy", + "containerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.ClassicStorage/storageAccounts/teststorage" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Inquire.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Inquire.json index 6d847ab29f93..82136aa80d63 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Inquire.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Inquire.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "test-rg", - "vaultName": "testvault", - "fabricName": "Azure", - "containerName": "storagecontainer;Storage;test-rg;teststorage", - "api-version": "2017-07-01" - }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectionContainers/storagecontainer;Storage;test-rg;teststorage/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectionContainers/storagecontainer;Storage;test-rg;teststorage/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": {} - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "test-rg", + "vaultName": "testvault", + "fabricName": "Azure", + "containerName": "storagecontainer;Storage;test-rg;teststorage", + "api-version": "2017-07-01" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectionContainers/storagecontainer;Storage;test-rg;teststorage/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectionContainers/storagecontainer;Storage;test-rg;teststorage/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Inquire_Result.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Inquire_Result.json index 7088f33d918f..bcbf20b86c58 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Inquire_Result.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Inquire_Result.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "test-rg", - "vaultName": "testvault", - "fabricName": "Azure", - "containerName": "storagecontainer;Storage;test-rg;teststorage", - "operationId": "00000000-0000-0000-0000-000000000000", - "api-version": "2017-07-01" - }, - "responses": { - "204": { - "headers": {}, - "body": {} - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "test-rg", + "vaultName": "testvault", + "fabricName": "Azure", + "containerName": "storagecontainer;Storage;test-rg;teststorage", + "operationId": "00000000-0000-0000-0000-000000000000", + "api-version": "2017-07-01" + }, + "responses": { + "204": { + "headers": {}, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Register.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Register.json index 9090de3a0851..db0d943d1f68 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Register.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureStorage/ProtectionContainers_Register.json @@ -1,28 +1,28 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "test-rg", + "vaultName": "testvault", + "fabricName": "Azure", + "containerName": "storagecontainer;Storage;test-rg;teststorage", + "api-version": "2017-07-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "test-rg", - "vaultName": "testvault", - "fabricName": "Azure", - "containerName": "storagecontainer;Storage;test-rg;teststorage", - "api-version": "2017-07-01", - "parameters": { - "properties": { - "friendlyName": "teststorage", - "backupManagementType": "AzureStorage", - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Storage/storageAccounts/teststorage", - "containerType": "StorageContainer" - } - } - }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectionContainers/storagecontainer;Storage;test-rg;teststorage/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectionContainers/storagecontainer;Storage;test-rg;teststorage/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", - "Retry-After": 60 - }, - "body": {} - } + "properties": { + "friendlyName": "teststorage", + "backupManagementType": "AzureStorage", + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Storage/storageAccounts/teststorage", + "containerType": "StorageContainer" + } } -} \ No newline at end of file + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectionContainers/storagecontainer;Storage;test-rg;teststorage/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.RecoveryServices/vaults/testvault/backupFabrics/Azure/protectionContainers/storagecontainer;Storage;test-rg;teststorage/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", + "Retry-After": 60 + }, + "body": {} + } + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json index a2fb4b3635d5..21436acb8333 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json @@ -1,52 +1,52 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "testRg", - "vaultName": "testVault", - "api-version": "2016-12-01", - "$filter": "backupManagementType eq 'AzureWorkload'", - "backupFabrics": "Azure", - "protectionContainers": "VMAppContainer;Compute;testRG;testSQL" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "backupManagementType": "AzureWorkload", - "dataDirectoryPaths": [ - { - "type": "Data", - "path": "F:\\Data\\", - "logicalName": null - }, - { - "type": "Log", - "path": "F:\\Log\\", - "logicalName": null - } - ], - "name": null, - "id": null, - "status": { - "name": null, - "displayName": null, - "infoText": null, - "severity": null, - "operationState": null - }, - "type": null, - "location": null, - "friendlyName": "MSSQLSERVER", - "resourceGroup": null, - "resourceName": null, - "subscriptionId": null, - "providerName": null, - "resourceType": null - } - ], - "nextLink": null - } - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testRg", + "vaultName": "testVault", + "api-version": "2016-12-01", + "$filter": "backupManagementType eq 'AzureWorkload'", + "backupFabrics": "Azure", + "protectionContainers": "VMAppContainer;Compute;testRG;testSQL" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "backupManagementType": "AzureWorkload", + "dataDirectoryPaths": [ + { + "type": "Data", + "path": "F:\\Data\\", + "logicalName": null + }, + { + "type": "Log", + "path": "F:\\Log\\", + "logicalName": null + } + ], + "name": null, + "id": null, + "status": { + "name": null, + "displayName": null, + "infoText": null, + "severity": null, + "operationState": null + }, + "type": null, + "location": null, + "friendlyName": "MSSQLSERVER", + "resourceGroup": null, + "resourceName": null, + "subscriptionId": null, + "providerName": null, + "resourceType": null + } + ], + "nextLink": null + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_Get.json index 167edab5153f..c04f0350024b 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_Get.json @@ -1,74 +1,74 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "testRg", - "vaultName": "testVault", - "api-version": "2016-12-01", - "protectionContainers": "VMAppContainer;Compute;testRG;testSQL", - "backupFabrics": "Azure", - "$filter": "backupManagementType eq 'AzureWorkload'" - }, - "responses": { - "200": { - "body": { - "resultArray": [ - { - "hostServerName": "testsql", - "backupReadiness": "Success", - "backupReadinessText": "Ready", - "registrationStatus": "Registered", - "details": "14 DB(s) Found", - "nodeList": [], - "inquiryInfo": { - "status": "Success", - "errorDetails": { - "errorCode": "Success", - "errorString": "Not Available", - "recommendations": [ - "Not Available" - ] - }, - "workloadInquiryDetails": [ - { - "type": "sql", - "itemCount": 14, - "inquiryValidation": { - "status": "Success", - "errorDetails": { - "errorCode": "Success", - "errorString": "Not Available", - "recommendations": [ - "Not Available" - ] - } - } - } - ] - }, - "inquiryErrorDetails": null, - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.Compute/virtualMachines/testSQL", - "sourceResourceRG": "testRG", - "backupManagementType": "AzureWorkload", - "workloadType": null, - "containerType": "VMAppContainer", - "containerId": null, - "containerName": null, - "name": "VMAppContainer;Compute;testRG;testSQL", - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;testRG;testSQL", - "status": null, - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers", - "location": null, - "friendlyName": "testSQL", - "resourceGroup": "testRg", - "resourceName": "testVault", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "providerName": "Microsoft.RecoveryServices", - "resourceType": "vaults" + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testRg", + "vaultName": "testVault", + "api-version": "2016-12-01", + "protectionContainers": "VMAppContainer;Compute;testRG;testSQL", + "backupFabrics": "Azure", + "$filter": "backupManagementType eq 'AzureWorkload'" + }, + "responses": { + "200": { + "body": { + "resultArray": [ + { + "hostServerName": "testsql", + "backupReadiness": "Success", + "backupReadinessText": "Ready", + "registrationStatus": "Registered", + "details": "14 DB(s) Found", + "nodeList": [], + "inquiryInfo": { + "status": "Success", + "errorDetails": { + "errorCode": "Success", + "errorString": "Not Available", + "recommendations": [ + "Not Available" + ] + }, + "workloadInquiryDetails": [ + { + "type": "sql", + "itemCount": 14, + "inquiryValidation": { + "status": "Success", + "errorDetails": { + "errorCode": "Success", + "errorString": "Not Available", + "recommendations": [ + "Not Available" + ] } - ], - "totalCount": 0, - "continuationToken": null - } - } + } + } + ] + }, + "inquiryErrorDetails": null, + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.Compute/virtualMachines/testSQL", + "sourceResourceRG": "testRG", + "backupManagementType": "AzureWorkload", + "workloadType": null, + "containerType": "VMAppContainer", + "containerId": null, + "containerName": null, + "name": "VMAppContainer;Compute;testRG;testSQL", + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;testRG;testSQL", + "status": null, + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers", + "location": null, + "friendlyName": "testSQL", + "resourceGroup": "testRg", + "resourceName": "testVault", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "providerName": "Microsoft.RecoveryServices", + "resourceType": "vaults" + } + ], + "totalCount": 0, + "continuationToken": null + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_List.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_List.json index 0e161879a745..5358ddbc289f 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_List.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_List.json @@ -1,73 +1,73 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "testRg", - "vaultName": "testVault", - "api-version": "2016-12-01", - "backupFabrics": "Azure", - "$filter": "backupManagementType eq 'AzureWorkload'" - }, - "responses": { - "200": { - "body": { - "resultArray": [ - { - "hostServerName": "testsql", - "backupReadiness": "Success", - "backupReadinessText": "Ready", - "registrationStatus": "Registered", - "details": "14 DB(s) Found", - "nodeList": [], - "inquiryInfo": { - "status": "Success", - "errorDetails": { - "errorCode": "Success", - "errorString": "Not Available", - "recommendations": [ - "Not Available" - ] - }, - "workloadInquiryDetails": [ - { - "type": "sql", - "itemCount": 14, - "inquiryValidation": { - "status": "Success", - "errorDetails": { - "errorCode": "Success", - "errorString": "Not Available", - "recommendations": [ - "Not Available" - ] - } - } - } - ] - }, - "inquiryErrorDetails": null, - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.Compute/virtualMachines/testSQL", - "sourceResourceRG": "testRG", - "backupManagementType": "AzureWorkload", - "workloadType": null, - "containerType": "VMAppContainer", - "containerId": null, - "containerName": null, - "name": "VMAppContainer;Compute;testRG;testSQL", - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;testRG;testSQL", - "status": null, - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers", - "location": null, - "friendlyName": "testSQL", - "resourceGroup": "testRg", - "resourceName": "testVault", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "providerName": "Microsoft.RecoveryServices", - "resourceType": "vaults" + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testRg", + "vaultName": "testVault", + "api-version": "2016-12-01", + "backupFabrics": "Azure", + "$filter": "backupManagementType eq 'AzureWorkload'" + }, + "responses": { + "200": { + "body": { + "resultArray": [ + { + "hostServerName": "testsql", + "backupReadiness": "Success", + "backupReadinessText": "Ready", + "registrationStatus": "Registered", + "details": "14 DB(s) Found", + "nodeList": [], + "inquiryInfo": { + "status": "Success", + "errorDetails": { + "errorCode": "Success", + "errorString": "Not Available", + "recommendations": [ + "Not Available" + ] + }, + "workloadInquiryDetails": [ + { + "type": "sql", + "itemCount": 14, + "inquiryValidation": { + "status": "Success", + "errorDetails": { + "errorCode": "Success", + "errorString": "Not Available", + "recommendations": [ + "Not Available" + ] } - ], - "totalCount": 0, - "continuationToken": null - } - } + } + } + ] + }, + "inquiryErrorDetails": null, + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.Compute/virtualMachines/testSQL", + "sourceResourceRG": "testRG", + "backupManagementType": "AzureWorkload", + "workloadType": null, + "containerType": "VMAppContainer", + "containerId": null, + "containerName": null, + "name": "VMAppContainer;Compute;testRG;testSQL", + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;testRG;testSQL", + "status": null, + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers", + "location": null, + "friendlyName": "testSQL", + "resourceGroup": "testRg", + "resourceName": "testVault", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "providerName": "Microsoft.RecoveryServices", + "resourceType": "vaults" + } + ], + "totalCount": 0, + "continuationToken": null + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_Unregister.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_Unregister.json index 5fc473533894..ef10c5172b3b 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_Unregister.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionContainers_Unregister.json @@ -1,33 +1,33 @@ { - "parameters": { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testRg", + "vaultName": "testVault", + "api-version": "2016-12-01", + "backupFabrics": "Azure", + "protectionContainers": "VMAppContainer;Compute;testRG;testSQL" + }, + "responses": { + "200": { + "body": { + "name": "testVault", + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.RecoveryServices/vaults/testVault/backupOperationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "status": { + "name": null, + "displayName": null, + "infoText": null, + "severity": null, + "operationState": "InProgress" + }, + "type": null, + "location": null, + "friendlyName": "testVault", + "resourceGroup": "testRg", + "resourceName": "testVault", "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "testRg", - "vaultName": "testVault", - "api-version": "2016-12-01", - "backupFabrics": "Azure", - "protectionContainers": "VMAppContainer;Compute;testRG;testSQL" - }, - "responses": { - "200": { - "body": { - "name": "testVault", - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.RecoveryServices/vaults/testVault/backupOperationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "status": { - "name": null, - "displayName": null, - "infoText": null, - "severity": null, - "operationState": "InProgress" - }, - "type": null, - "location": null, - "friendlyName": "testVault", - "resourceGroup": "testRg", - "resourceName": "testVault", - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "providerName": "Microsoft.RecoveryServices", - "resourceType": "vaults" - } - } + "providerName": "Microsoft.RecoveryServices", + "resourceType": "vaults" + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionPolicies_CreateOrUpdate_Complex.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionPolicies_CreateOrUpdate_Complex.json index e2228c79b624..c74895f84166 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionPolicies_CreateOrUpdate_Complex.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/ProtectionPolicies_CreateOrUpdate_Complex.json @@ -1,261 +1,261 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "policyName": "testPolicy1", + "api-version": "2016-06-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "policyName": "testPolicy1", - "api-version": "2016-06-01", - "parameters": { - "properties": { - "backupManagementType": "AzureWorkload", - "workLoadType": "SQLDataBase", - "settings": { - "timeZone": "Pacific Standard Time", - "issqlcompression": false + "properties": { + "backupManagementType": "AzureWorkload", + "workLoadType": "SQLDataBase", + "settings": { + "timeZone": "Pacific Standard Time", + "issqlcompression": false + }, + "subProtectionPolicy": [ + { + "policyType": "Full", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Weekly", + "scheduleRunTimes": [ + "2018-01-24T10:00:00Z" + ], + "scheduleRunDays": [ + "Sunday", + "Tuesday" + ] + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "weeklySchedule": { + "daysOfTheWeek": [ + "Sunday", + "Tuesday" + ], + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 2, + "durationType": "Weeks" + } + }, + "monthlySchedule": { + "retentionScheduleFormatType": "Weekly", + "retentionScheduleWeekly": { + "daysOfTheWeek": [ + "Sunday" + ], + "weeksOfTheMonth": [ + "Second" + ] }, - "subProtectionPolicy": [ - { - "policyType": "Full", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Weekly", - "scheduleRunTimes": [ - "2018-01-24T10:00:00Z" - ], - "scheduleRunDays": [ - "Sunday", - "Tuesday" - ] - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "weeklySchedule": { - "daysOfTheWeek": [ - "Sunday", - "Tuesday" - ], - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 2, - "durationType": "Weeks" - } - }, - "monthlySchedule": { - "retentionScheduleFormatType": "Weekly", - "retentionScheduleWeekly": { - "daysOfTheWeek": [ - "Sunday" - ], - "weeksOfTheMonth": [ - "Second" - ] - }, - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Months" - } - }, - "yearlySchedule": { - "retentionScheduleFormatType": "Weekly", - "monthsOfYear": [ - "January", - "June", - "December" - ], - "retentionScheduleWeekly": { - "daysOfTheWeek": [ - "Sunday" - ], - "weeksOfTheMonth": [ - "Last" - ] - }, - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Years" - } - } - } - }, - { - "policyType": "Differential", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Weekly", - "scheduleRunTimes": [ - "2018-01-24T10:00:00Z" - ], - "scheduleRunDays": [ - "Friday" - ] - }, - "retentionPolicy": { - "retentionPolicyType": "SimpleRetentionPolicy", - "retentionDuration": { - "count": 8, - "durationType": "Days" - } - } - }, - { - "policyType": "Log", - "schedulePolicy": { - "schedulePolicyType": "LogSchedulePolicy", - "scheduleFrequencyInMins": 60 - }, - "retentionPolicy": { - "retentionPolicyType": "SimpleRetentionPolicy", - "retentionDuration": { - "count": 7, - "durationType": "Days" - } - } - } - ] + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Months" + } + }, + "yearlySchedule": { + "retentionScheduleFormatType": "Weekly", + "monthsOfYear": [ + "January", + "June", + "December" + ], + "retentionScheduleWeekly": { + "daysOfTheWeek": [ + "Sunday" + ], + "weeksOfTheMonth": [ + "Last" + ] + }, + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Years" + } + } } - } - }, - "responses": { - "200": { - "body": { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", - "name": "testPolicy1", - "type": "Microsoft.RecoveryServices/vaults/backupPolicies", - "properties": { - "backupManagementType": "AzureWorkload", - "workLoadType": "SQLDataBase", - "settings": { - "timeZone": "Pacific Standard Time", - "issqlcompression": false - }, - "subProtectionPolicy": [ - { - "policyType": "Full", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Weekly", - "scheduleRunDays": [ - "Sunday", - "Tuesday" - ], - "scheduleRunTimes": [ - "2018-01-24T10:00:00Z" - ], - "scheduleWeeklyFrequency": 0 - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "weeklySchedule": { - "daysOfTheWeek": [ - "Sunday", - "Tuesday" - ], - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 2, - "durationType": "Weeks" - } - }, - "monthlySchedule": { - "retentionScheduleFormatType": "Weekly", - "retentionScheduleWeekly": { - "daysOfTheWeek": [ - "Sunday" - ], - "weeksOfTheMonth": [ - "Second" - ] - }, - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Months" - } - }, - "yearlySchedule": { - "retentionScheduleFormatType": "Weekly", - "monthsOfYear": [ - "January", - "June", - "December" - ], - "retentionScheduleWeekly": { - "daysOfTheWeek": [ - "Sunday" - ], - "weeksOfTheMonth": [ - "Last" - ] - }, - "retentionTimes": [ - "2018-01-24T10:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Years" - } - } - } - }, - { - "policyType": "Differential", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Weekly", - "scheduleRunDays": [ - "Friday" - ], - "scheduleRunTimes": [ - "2018-01-24T10:00:00Z" - ], - "scheduleWeeklyFrequency": 0 - }, - "retentionPolicy": { - "retentionPolicyType": "SimpleRetentionPolicy", - "retentionDuration": { - "count": 8, - "durationType": "Days" - } - } - }, - { - "policyType": "Log", - "schedulePolicy": { - "schedulePolicyType": "LogSchedulePolicy", - "scheduleFrequencyInMins": 60 - }, - "retentionPolicy": { - "retentionPolicyType": "SimpleRetentionPolicy", - "retentionDuration": { - "count": 7, - "durationType": "Days" - } - } - } + }, + { + "policyType": "Differential", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Weekly", + "scheduleRunTimes": [ + "2018-01-24T10:00:00Z" + ], + "scheduleRunDays": [ + "Friday" + ] + }, + "retentionPolicy": { + "retentionPolicyType": "SimpleRetentionPolicy", + "retentionDuration": { + "count": 8, + "durationType": "Days" + } + } + }, + { + "policyType": "Log", + "schedulePolicy": { + "schedulePolicyType": "LogSchedulePolicy", + "scheduleFrequencyInMins": 60 + }, + "retentionPolicy": { + "retentionPolicyType": "SimpleRetentionPolicy", + "retentionDuration": { + "count": 7, + "durationType": "Days" + } + } + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", + "name": "testPolicy1", + "type": "Microsoft.RecoveryServices/vaults/backupPolicies", + "properties": { + "backupManagementType": "AzureWorkload", + "workLoadType": "SQLDataBase", + "settings": { + "timeZone": "Pacific Standard Time", + "issqlcompression": false + }, + "subProtectionPolicy": [ + { + "policyType": "Full", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Weekly", + "scheduleRunDays": [ + "Sunday", + "Tuesday" + ], + "scheduleRunTimes": [ + "2018-01-24T10:00:00Z" + ], + "scheduleWeeklyFrequency": 0 + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "weeklySchedule": { + "daysOfTheWeek": [ + "Sunday", + "Tuesday" + ], + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 2, + "durationType": "Weeks" + } + }, + "monthlySchedule": { + "retentionScheduleFormatType": "Weekly", + "retentionScheduleWeekly": { + "daysOfTheWeek": [ + "Sunday" + ], + "weeksOfTheMonth": [ + "Second" + ] + }, + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Months" + } + }, + "yearlySchedule": { + "retentionScheduleFormatType": "Weekly", + "monthsOfYear": [ + "January", + "June", + "December" + ], + "retentionScheduleWeekly": { + "daysOfTheWeek": [ + "Sunday" ], - "protectedItemsCount": 0 + "weeksOfTheMonth": [ + "Last" + ] + }, + "retentionTimes": [ + "2018-01-24T10:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Years" + } } - } - }, - "202": { - "headers": { - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operations/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", - "Retry-After": 60 + } }, - "body": {} + { + "policyType": "Differential", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Weekly", + "scheduleRunDays": [ + "Friday" + ], + "scheduleRunTimes": [ + "2018-01-24T10:00:00Z" + ], + "scheduleWeeklyFrequency": 0 + }, + "retentionPolicy": { + "retentionPolicyType": "SimpleRetentionPolicy", + "retentionDuration": { + "count": 8, + "durationType": "Days" + } + } + }, + { + "policyType": "Log", + "schedulePolicy": { + "schedulePolicyType": "LogSchedulePolicy", + "scheduleFrequencyInMins": 60 + }, + "retentionPolicy": { + "retentionPolicyType": "SimpleRetentionPolicy", + "retentionDuration": { + "count": 7, + "durationType": "Days" + } + } + } + ], + "protectedItemsCount": 0 } + } + }, + "202": { + "headers": { + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1/operations/00000000-0000-0000-0000-000000000000?api-version=2016-06-01", + "Retry-After": 60 + }, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupResourceVaultConfigs_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupResourceVaultConfigs_Get.json index 0721b809f1e0..fcb899e0736e 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupResourceVaultConfigs_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupResourceVaultConfigs_Get.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "SwaggerTest", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/SwaggerTest/backupconfig/vaultconfig", - "name": "vaultconfig", - "type": "Microsoft.RecoveryServices/vaults/backupconfig", - "properties": { - "enhancedSecurityState": "Enabled" - } - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "SwaggerTest", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/SwaggerTest/backupconfig/vaultconfig", + "name": "vaultconfig", + "type": "Microsoft.RecoveryServices/vaults/backupconfig", + "properties": { + "enhancedSecurityState": "Enabled" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupResourceVaultConfigs_Patch.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupResourceVaultConfigs_Patch.json index 5d29d3ca4939..3b3c17c9d583 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupResourceVaultConfigs_Patch.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupResourceVaultConfigs_Patch.json @@ -1,25 +1,25 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "SwaggerTest", + "api-version": "2016-12-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "SwaggerTest", - "api-version": "2016-12-01", - "parameters": { - "properties": { - "enhancedSecurityState": "Enabled" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/SwaggerTest/backupconfig/vaultconfig", - "name": "vaultconfig", - "type": "Microsoft.RecoveryServices/vaults/backupconfig", - "properties": { - "enhancedSecurityState": "Enabled" - } - } + "properties": { + "enhancedSecurityState": "Enabled" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/SwaggerTest/backupconfig/vaultconfig", + "name": "vaultconfig", + "type": "Microsoft.RecoveryServices/vaults/backupconfig", + "properties": { + "enhancedSecurityState": "Enabled" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupSecurityPin_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupSecurityPin_Get.json index 6f6cedcb1d36..f0a6200ec052 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupSecurityPin_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupSecurityPin_Get.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "SwaggerTest", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "body": { - "token": "200432", - "expiryTimeInUtcTicks": 636495150137443121, - "securityPIN": "200432" - } - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "SwaggerTest", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "body": { + "token": "200432", + "expiryTimeInUtcTicks": 636495150137443121, + "securityPIN": "200432" + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Get.json index b5cb409e9db9..a22ef9d6df43 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Get.json @@ -1,23 +1,23 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "PythonSDKBackupTestRg", - "vaultName": "PySDKBackupTestRsVault", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupstorageconfig/vaultstorageconfig", - "name": "vaultstorageconfig", - "type": "Microsoft.RecoveryServices/vaults/backupstorageconfig", - "properties": { - "storageModelType": "GeoRedundant", - "storageType": "GeoRedundant", - "storageTypeState": "Locked" - } - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "PythonSDKBackupTestRg", + "vaultName": "PySDKBackupTestRsVault", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupstorageconfig/vaultstorageconfig", + "name": "vaultstorageconfig", + "type": "Microsoft.RecoveryServices/vaults/backupstorageconfig", + "properties": { + "storageModelType": "GeoRedundant", + "storageType": "GeoRedundant", + "storageTypeState": "Locked" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Patch.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Patch.json index 31f994191f35..6c2f64461d51 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Patch.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Patch.json @@ -1,20 +1,20 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "PythonSDKBackupTestRg", + "vaultName": "PySDKBackupTestRsVault", + "api-version": "2016-12-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "PythonSDKBackupTestRg", - "vaultName": "PySDKBackupTestRsVault", - "api-version": "2016-12-01", - "parameters": { - "properties": { - "storageType": "LocallyRedundant", - "storageTypeState": "Unlocked" - } - } - }, - "responses": { - "204": { - "headers": {}, - "body": null - } + "properties": { + "storageType": "LocallyRedundant", + "storageTypeState": "Unlocked" + } } -} \ No newline at end of file + }, + "responses": { + "204": { + "headers": {}, + "body": null + } + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Put.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Put.json index 7adaa9e34cfb..57052c87328e 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Put.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/BackupStorageConfig_Put.json @@ -1,31 +1,31 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "PythonSDKBackupTestRg", + "vaultName": "PySDKBackupTestRsVault", + "api-version": "2016-12-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "PythonSDKBackupTestRg", - "vaultName": "PySDKBackupTestRsVault", - "api-version": "2016-12-01", - "parameters": { - "properties": { - "storageType": "LocallyRedundant", - "storageTypeState": "Unlocked" - } - } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupstorageconfig/vaultstorageconfig", - "name": "vaultstorageconfig", - "type": "Microsoft.RecoveryServices/vaults/backupstorageconfig", - "properties": { - "storageModelType": "LocallyRedundant", - "storageType": "LocallyRedundant", - "dedupState": "Disabled", - "xcoolState": "Disabled", - "storageTypeState": "Unlocked" - } - } + "properties": { + "storageType": "LocallyRedundant", + "storageTypeState": "Unlocked" + } + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupstorageconfig/vaultstorageconfig", + "name": "vaultstorageconfig", + "type": "Microsoft.RecoveryServices/vaults/backupstorageconfig", + "properties": { + "storageModelType": "LocallyRedundant", + "storageType": "LocallyRedundant", + "dedupState": "Disabled", + "xcoolState": "Disabled", + "storageTypeState": "Unlocked" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/CancelJobOperationResult.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/CancelJobOperationResult.json index 25b7250ef94e..11670993ed03 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/CancelJobOperationResult.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/CancelJobOperationResult.json @@ -1,16 +1,16 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "jobName": "00000000-0000-0000-0000-000000000000", - "operationId": "00000000-0000-0000-0000-000000000000", - "api-version": "2017-07-01" - }, - "responses": { - "204": { - "headers": {}, - "body": {} - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "jobName": "00000000-0000-0000-0000-000000000000", + "operationId": "00000000-0000-0000-0000-000000000000", + "api-version": "2017-07-01" + }, + "responses": { + "204": { + "headers": {}, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete.json index 6434eef94b95..29830f783e60 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "PythonSDKBackupTestRg", - "vaultName": "PySDKBackupTestRsVault", - "fabricName": "Azure", - "containerName": "iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", - "protectedItemName": "vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", - "api-version": "2016-12-01" - }, - "responses": { - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupOperations/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupOperationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": {} - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "PythonSDKBackupTestRg", + "vaultName": "PySDKBackupTestRsVault", + "fabricName": "Azure", + "containerName": "iaasvmcontainer;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", + "protectedItemName": "vm;iaasvmcontainerv2;pysdktestrg;pysdktestv2vm1", + "api-version": "2016-12-01" + }, + "responses": { + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupOperations/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupOperationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete_OperationResult.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete_OperationResult.json index 0cc2c93ab587..1d760ef30774 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete_OperationResult.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete_OperationResult.json @@ -1,19 +1,19 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "PythonSDKBackupTestRg", - "vaultName": "PySDKBackupTestRsVault", - "operationId": "00000000-0000-0000-0000-000000000000", - "api-version": "2016-12-01" - }, - "responses": { - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupOperations/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupOperationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": null - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "PythonSDKBackupTestRg", + "vaultName": "PySDKBackupTestRsVault", + "operationId": "00000000-0000-0000-0000-000000000000", + "api-version": "2016-12-01" + }, + "responses": { + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupOperations/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupOperationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete_OperationStatus.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete_OperationStatus.json index 1ff5ed0ee182..6abc0b369163 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete_OperationStatus.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/ProtectedItem_Delete_OperationStatus.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "PythonSDKBackupTestRg", - "vaultName": "PySDKBackupTestRsVault", - "operationId": "00000000-0000-0000-0000-000000000000", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "00000000-0000-0000-0000-000000000000", - "name": "00000000-0000-0000-0000-000000000000", - "status": "InProgress", - "startTime": "2017-08-03T06:52:53.886027Z", - "endTime": "0001-01-01T00:00:00" - } - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "PythonSDKBackupTestRg", + "vaultName": "PySDKBackupTestRsVault", + "operationId": "00000000-0000-0000-0000-000000000000", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "00000000-0000-0000-0000-000000000000", + "name": "00000000-0000-0000-0000-000000000000", + "status": "InProgress", + "startTime": "2017-08-03T06:52:53.886027Z", + "endTime": "0001-01-01T00:00:00" + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/RefreshContainers.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/RefreshContainers.json index ef41f6d124d0..bdaaa03bbbe8 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/RefreshContainers.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/RefreshContainers.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "fabricName": "Azure", - "api-version": "2016-12-01" - }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": {} - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "fabricName": "Azure", + "api-version": "2016-12-01" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/RefreshContainers_OperationResults.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/RefreshContainers_OperationResults.json index 6f166c68b87f..b5079bd4b8d2 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/RefreshContainers_OperationResults.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/RefreshContainers_OperationResults.json @@ -1,23 +1,23 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "fabricName": "Azure", - "operationId": "00000000-0000-0000-0000-000000000000", - "api-version": "2016-12-01" + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "fabricName": "Azure", + "operationId": "00000000-0000-0000-0000-000000000000", + "api-version": "2016-12-01" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": null }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupFabrics/Azure/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": null - }, - "204": { - "headers": {}, - "body": null - } + "204": { + "headers": {}, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/TriggerBackup_Post.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/TriggerBackup_Post.json index 470fcf0e23c1..d23d42996022 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/TriggerBackup_Post.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/TriggerBackup_Post.json @@ -1,26 +1,26 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "linuxRsVaultRG", + "vaultName": "linuxRsVault", + "fabricName": "Azure", + "containerName": "IaasVMContainer;iaasvmcontainerv2;testrg;v1win2012r", + "protectedItemName": "VM;iaasvmcontainerv2;testrg;v1win2012r", + "api-version": "2016-12-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "linuxRsVaultRG", - "vaultName": "linuxRsVault", - "fabricName": "Azure", - "containerName": "IaasVMContainer;iaasvmcontainerv2;testrg;v1win2012r", - "protectedItemName": "VM;iaasvmcontainerv2;testrg;v1win2012r", - "api-version": "2016-12-01", - "parameters": { - "properties": { - "objectType": "IaasVMBackupRequest" - } - } - }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linuxRsVaultRG/providers/Microsoft.RecoveryServices/vaults/linuxRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;testrg;v1win2012r/protectedItems/VM;iaasvmcontainer;testrg;v1win2012r/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linuxRsVaultRG/providers/Microsoft.RecoveryServices/vaults/linuxRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;testrg;v1win2012r/protectedItems/VM;iaasvmcontainer;testrg;v1win2012r/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", - "Retry-After": 60 - }, - "body": {} - } + "properties": { + "objectType": "IaasVMBackupRequest" + } } -} \ No newline at end of file + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linuxRsVaultRG/providers/Microsoft.RecoveryServices/vaults/linuxRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;testrg;v1win2012r/protectedItems/VM;iaasvmcontainer;testrg;v1win2012r/operationResults/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Azure-AsyncOperation": "https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linuxRsVaultRG/providers/Microsoft.RecoveryServices/vaults/linuxRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;testrg;v1win2012r/protectedItems/VM;iaasvmcontainer;testrg;v1win2012r/operationsStatus/00000000-0000-0000-0000-000000000000?api-version=2016-12-01", + "Retry-After": 60 + }, + "body": {} + } + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/TriggerCancelJob.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/TriggerCancelJob.json index ba3a2b2c7242..632419d5f18e 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/TriggerCancelJob.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Common/TriggerCancelJob.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "jobName": "00000000-0000-0000-0000-000000000000", - "api-version": "2017-07-01" - }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", - "Retry-After": 60 - }, - "body": {} - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "jobName": "00000000-0000-0000-0000-000000000000", + "api-version": "2017-07-01" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", + "Retry-After": 60 + }, + "body": {} } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Dpm/BackupEngines_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Dpm/BackupEngines_Get.json index 8af1364bae5d..fad29f7158b0 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Dpm/BackupEngines_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Dpm/BackupEngines_Get.json @@ -1,35 +1,35 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "testRG", - "vaultName": "testVault", - "backupEngineName": "testServer", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "body": { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.RecoveryServices/vaults/testVault/backupEngines/testServer", - "name": "testServer", - "type": "Microsoft.RecoveryServices/vaults/backupEngines", - "properties": { - "backupEngineType": "DpmBackupEngine", - "dpmVersion": "5.1.348.0", - "isDpmUpgradeAvailable": false, - "azureBackupAgentVersion": "2.0.9532.0", - "isAzureBackupAgentUpgradeAvailable": false, - "registrationStatus": "Registered", - "backupEngineState": "Active", - "friendlyName": "testServer", - "extendedInfo": { - "protectedItemsCount": 35, - "protectedServersCount": 21, - "diskCount": 5, - "availableDiskSpace": 50, - "usedDiskSpace": 20 - } - } - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testRG", + "vaultName": "testVault", + "backupEngineName": "testServer", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.RecoveryServices/vaults/testVault/backupEngines/testServer", + "name": "testServer", + "type": "Microsoft.RecoveryServices/vaults/backupEngines", + "properties": { + "backupEngineType": "DpmBackupEngine", + "dpmVersion": "5.1.348.0", + "isDpmUpgradeAvailable": false, + "azureBackupAgentVersion": "2.0.9532.0", + "isAzureBackupAgentUpgradeAvailable": false, + "registrationStatus": "Registered", + "backupEngineState": "Active", + "friendlyName": "testServer", + "extendedInfo": { + "protectedItemsCount": 35, + "protectedServersCount": 21, + "diskCount": 5, + "availableDiskSpace": 50, + "usedDiskSpace": 20 + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Dpm/BackupEngines_List.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Dpm/BackupEngines_List.json index bb9b2a235a90..a75e9709e14b 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Dpm/BackupEngines_List.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/Dpm/BackupEngines_List.json @@ -1,60 +1,60 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "testRG", - "vaultName": "testVault", - "api-version": "2016-12-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.RecoveryServices/vaults/testVault/backupEngines/testServer1", - "name": "testServer1", - "type": "Microsoft.RecoveryServices/vaults/backupEngines", - "properties": { - "backupEngineType": "DpmBackupEngine", - "dpmVersion": "5.1.348.0", - "isDpmUpgradeAvailable": false, - "azureBackupAgentVersion": "2.0.9532.0", - "isAzureBackupAgentUpgradeAvailable": false, - "registrationStatus": "Registered", - "backupEngineState": "Active", - "friendlyName": "testServer1", - "extendedInfo": { - "protectedItemsCount": 35, - "protectedServersCount": 21, - "diskCount": 5, - "availableDiskSpace": 50, - "usedDiskSpace": 20 - } - } - }, - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.RecoveryServices/vaults/testVault/backupEngines/testServer5", - "name": "testServer5", - "type": "Microsoft.RecoveryServices/vaults/backupEngines", - "properties": { - "backupEngineType": "DpmBackupEngine", - "dpmVersion": "5.1.348.0", - "isDpmUpgradeAvailable": false, - "azureBackupAgentVersion": "2.0.9530.0", - "isAzureBackupAgentUpgradeAvailable": false, - "registrationStatus": "Registered", - "backupEngineState": "Active", - "friendlyName": "testServer5", - "extendedInfo": { - "protectedItemsCount": 35, - "protectedServersCount": 21, - "diskCount": 5, - "availableDiskSpace": 50, - "usedDiskSpace": 20 - } - } - } - ] + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testRG", + "vaultName": "testVault", + "api-version": "2016-12-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.RecoveryServices/vaults/testVault/backupEngines/testServer1", + "name": "testServer1", + "type": "Microsoft.RecoveryServices/vaults/backupEngines", + "properties": { + "backupEngineType": "DpmBackupEngine", + "dpmVersion": "5.1.348.0", + "isDpmUpgradeAvailable": false, + "azureBackupAgentVersion": "2.0.9532.0", + "isAzureBackupAgentUpgradeAvailable": false, + "registrationStatus": "Registered", + "backupEngineState": "Active", + "friendlyName": "testServer1", + "extendedInfo": { + "protectedItemsCount": 35, + "protectedServersCount": 21, + "diskCount": 5, + "availableDiskSpace": 50, + "usedDiskSpace": 20 + } } - } + }, + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.RecoveryServices/vaults/testVault/backupEngines/testServer5", + "name": "testServer5", + "type": "Microsoft.RecoveryServices/vaults/backupEngines", + "properties": { + "backupEngineType": "DpmBackupEngine", + "dpmVersion": "5.1.348.0", + "isDpmUpgradeAvailable": false, + "azureBackupAgentVersion": "2.0.9530.0", + "isAzureBackupAgentUpgradeAvailable": false, + "registrationStatus": "Registered", + "backupEngineState": "Active", + "friendlyName": "testServer5", + "extendedInfo": { + "protectedItemsCount": 35, + "protectedServersCount": 21, + "diskCount": 5, + "availableDiskSpace": 50, + "usedDiskSpace": 20 + } + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/bms.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/bms.json index 913497bcd5de..6f1943c144d0 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/bms.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/bms.json @@ -4534,4 +4534,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupFeature_Validate.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupFeature_Validate.json index 82d4aeffd753..28be066e4b51 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupFeature_Validate.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupFeature_Validate.json @@ -1,19 +1,19 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "azureRegion": "southeastasia", + "api-version": "2017-07-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "azureRegion": "southeastasia", - "api-version": "2017-07-01", - "parameters": { - "featureType": "AzureVMResourceBackup", - "vmSize": "Basic_A0", - "vmSku": "Premium" - } - }, - "responses": { - "200": { - "body": { - "supportStatus": "DefaultOFF" - } - } + "featureType": "AzureVMResourceBackup", + "vmSize": "Basic_A0", + "vmSku": "Premium" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "supportStatus": "DefaultOFF" + } + } + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupPolicies_List.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupPolicies_List.json index 98c4302a01bc..34c612508a99 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupPolicies_List.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupPolicies_List.json @@ -1,76 +1,76 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "api-version": "2017-07-01", - "$filter": "backupManagementType eq 'AzureIaasVM'" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy", - "name": "DefaultPolicy", - "type": "Microsoft.RecoveryServices/vaults/backupPolicies", - "properties": { - "backupManagementType": "AzureIaasVM", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", - "scheduleRunTimes": [ - "2017-12-05T19:00:00Z" - ], - "scheduleWeeklyFrequency": 0 - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": { - "retentionTimes": [ - "2017-12-05T19:00:00Z" - ], - "retentionDuration": { - "count": 30, - "durationType": "Days" - } - } - }, - "protectedItemsCount": 0 - } - }, - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", - "name": "testPolicy1", - "type": "Microsoft.RecoveryServices/vaults/backupPolicies", - "properties": { - "backupManagementType": "AzureIaasVM", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", - "scheduleRunTimes": [ - "2018-01-24T02:00:00Z" - ], - "scheduleWeeklyFrequency": 0 - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": { - "retentionTimes": [ - "2018-01-24T02:00:00Z" - ], - "retentionDuration": { - "count": 1, - "durationType": "Days" - } - } - }, - "timeZone": "Pacific Standard Time", - "protectedItemsCount": 0 - } - } - ] + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "api-version": "2017-07-01", + "$filter": "backupManagementType eq 'AzureIaasVM'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy", + "name": "DefaultPolicy", + "type": "Microsoft.RecoveryServices/vaults/backupPolicies", + "properties": { + "backupManagementType": "AzureIaasVM", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", + "scheduleRunTimes": [ + "2017-12-05T19:00:00Z" + ], + "scheduleWeeklyFrequency": 0 + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": { + "retentionTimes": [ + "2017-12-05T19:00:00Z" + ], + "retentionDuration": { + "count": 30, + "durationType": "Days" + } + } + }, + "protectedItemsCount": 0 } - } + }, + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", + "name": "testPolicy1", + "type": "Microsoft.RecoveryServices/vaults/backupPolicies", + "properties": { + "backupManagementType": "AzureIaasVM", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", + "scheduleRunTimes": [ + "2018-01-24T02:00:00Z" + ], + "scheduleWeeklyFrequency": 0 + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": { + "retentionTimes": [ + "2018-01-24T02:00:00Z" + ], + "retentionDuration": { + "count": 1, + "durationType": "Days" + } + } + }, + "timeZone": "Pacific Standard Time", + "protectedItemsCount": 0 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupProtectedItems_List.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupProtectedItems_List.json index 7354bf7b189d..fc6f16f2f740 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupProtectedItems_List.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/BackupProtectedItems_List.json @@ -1,39 +1,39 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "api-version": "2017-07-01", - "$filter": "backupManagementType eq 'AzureIaasVM' and itemType eq 'VM'" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm-rg;iaasvm-1/protectedItems/VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", - "name": "VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", - "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems", - "properties": { - "friendlyName": "iaasvm-1", - "virtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1", - "protectionStatus": "Healthy", - "protectionState": "Protected", - "healthStatus": "Passed", - "lastBackupStatus": "Completed", - "lastBackupTime": "2018-01-22T12:25:32.048723Z", - "protectedItemDataId": "636482643132986882", - "protectedItemType": "Microsoft.ClassicCompute/virtualMachines", - "backupManagementType": "AzureIaasVM", - "workloadType": "VM", - "containerName": "iaasvmcontainer;iaasvm-rg;iaasvm-1", - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", - "lastRecoveryPoint": "2017-11-22T12:25:32.048723Z" - } - } - ] + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "api-version": "2017-07-01", + "$filter": "backupManagementType eq 'AzureIaasVM' and itemType eq 'VM'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm-rg;iaasvm-1/protectedItems/VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", + "name": "VM;iaasvmcontainer;iaasvm-rg;iaasvm-1", + "type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems", + "properties": { + "friendlyName": "iaasvm-1", + "virtualMachineId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1", + "protectionStatus": "Healthy", + "protectionState": "Protected", + "healthStatus": "Passed", + "lastBackupStatus": "Completed", + "lastBackupTime": "2018-01-22T12:25:32.048723Z", + "protectedItemDataId": "636482643132986882", + "protectedItemType": "Microsoft.ClassicCompute/virtualMachines", + "backupManagementType": "AzureIaasVM", + "workloadType": "VM", + "containerName": "iaasvmcontainer;iaasvm-rg;iaasvm-1", + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/providers/Microsoft.ClassicCompute/virtualMachines/iaasvm-1", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/testPolicy1", + "lastRecoveryPoint": "2017-11-22T12:25:32.048723Z" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/GetBackupStatus.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/GetBackupStatus.json index c37237ed1ee7..97b68a9d0513 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/GetBackupStatus.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/GetBackupStatus.json @@ -1,25 +1,25 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "azureRegion": "southeastasia", + "api-version": "2017-07-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "azureRegion": "southeastasia", - "api-version": "2017-07-01", - "parameters": { - "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.Compute/VirtualMachines/testVm", - "resourceType": "VM" - } - }, - "responses": { - "200": { - "body": { - "protectionStatus": "Protected", - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.RecoveryServices/Vaults/testVault", - "fabricName": "Azure", - "containerName": "iaasvmcontainer;iaasvmcontainerv2;testRg;testVm", - "protectedItemName": "vm;iaasvmcontainerv2;testRg;testVm", - "policyName": "myPolicy", - "errorCode": "Success", - "errorMessage": "ErrorMessage" - } - } + "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.Compute/VirtualMachines/testVm", + "resourceType": "VM" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "protectionStatus": "Protected", + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.RecoveryServices/Vaults/testVault", + "fabricName": "Azure", + "containerName": "iaasvmcontainer;iaasvmcontainerv2;testRg;testVm", + "protectedItemName": "vm;iaasvmcontainerv2;testRg;testVm", + "policyName": "myPolicy", + "errorCode": "Success", + "errorMessage": "ErrorMessage" + } + } + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ProtectionIntent_CreateOrUpdate.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ProtectionIntent_CreateOrUpdate.json index 219a4ac3a7c0..b92e7b3da2ce 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ProtectionIntent_CreateOrUpdate.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ProtectionIntent_CreateOrUpdate.json @@ -1,33 +1,33 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "myRG", + "vaultName": "myVault", + "fabricName": "Azure", + "intentObjectName": "vm;iaasvmcontainerv2;chamsrgtest;chamscandel", + "api-version": "2017-07-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "myRG", - "vaultName": "myVault", - "fabricName": "Azure", - "intentObjectName": "vm;iaasvmcontainerv2;chamsrgtest;chamscandel", - "api-version": "2017-07-01", - "parameters": { - "properties": { - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chamsrgtest/providers/Microsoft.Compute/virtualMachines/chamscandel", - "protectionIntentItemType": "AzureResourceItem", - "friendlyName": "oneboxTestVmIntent", - "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.RecoveryServices/vaults/myVault/backupPolicies/myPolicy" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.RecoveryServices/vaults/myVault/backupFabrics/Azure/backupProtectionIntent/vm;iaasvmcontainerv2;chamsrgtest;chamscandel", - "name": "vm;iaasvmcontainerv2;chamsrgtest;chamscandel", - "type": "Microsoft.RecoveryServices/vaults/backupProtectionIntent", - "properties": { - "friendlyName": "", - "backupManagementType": "AzureIaasVM", - "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.RecoveryServices/vaults/myVault/backupPolicies/myPolicy", - "protectionState": "Protected" - } - } + "properties": { + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chamsrgtest/providers/Microsoft.Compute/virtualMachines/chamscandel", + "protectionIntentItemType": "AzureResourceItem", + "friendlyName": "oneboxTestVmIntent", + "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.RecoveryServices/vaults/myVault/backupPolicies/myPolicy" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.RecoveryServices/vaults/myVault/backupFabrics/Azure/backupProtectionIntent/vm;iaasvmcontainerv2;chamsrgtest;chamscandel", + "name": "vm;iaasvmcontainerv2;chamsrgtest;chamscandel", + "type": "Microsoft.RecoveryServices/vaults/backupProtectionIntent", + "properties": { + "friendlyName": "", + "backupManagementType": "AzureIaasVM", + "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.RecoveryServices/vaults/myVault/backupPolicies/myPolicy", + "protectionState": "Protected" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ProtectionIntent_Validate.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ProtectionIntent_Validate.json index 786708c58978..f02e0c6a04a3 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ProtectionIntent_Validate.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ProtectionIntent_Validate.json @@ -1,25 +1,25 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "azureRegion": "southeastasia", + "api-version": "2017-07-01", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "azureRegion": "southeastasia", - "api-version": "2017-07-01", - "parameters": { - "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arunaupgrade/providers/Microsoft.Compute/VirtualMachines/upgrade1", - "resourceType": "VM", - "vaultId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.RecoveryServices/Vaults/myVault", - "properties": "" - } - }, - "responses": { - "200": { - "body": { - "status": "Failed", - "errorCode": "VirtualMachineAlreadyProtected", - "errorMessage": "Virtual machine with same name and same resource group is already protected. Please select `Disable' choice above for backup and go to backup item corresponding to this VM in the vault", - "recommendation": "Please do not enable protection again.", - "containerName": "iaasvmcontainer;iaasvmcontainerv2;arunaupgrade;upgrade1", - "protectedItemName": "vm;iaasvmcontainerv2;arunaupgrade;upgrade1" - } - } + "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arunaupgrade/providers/Microsoft.Compute/VirtualMachines/upgrade1", + "resourceType": "VM", + "vaultId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.RecoveryServices/Vaults/myVault", + "properties": "" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "status": "Failed", + "errorCode": "VirtualMachineAlreadyProtected", + "errorMessage": "Virtual machine with same name and same resource group is already protected. Please select `Disable' choice above for backup and go to backup item corresponding to this VM in the vault", + "recommendation": "Please do not enable protection again.", + "containerName": "iaasvmcontainer;iaasvmcontainerv2;arunaupgrade;upgrade1", + "protectedItemName": "vm;iaasvmcontainerv2;arunaupgrade;upgrade1" + } + } + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ValidateOperation_RestoreDisk.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ValidateOperation_RestoreDisk.json index 2ea2e631b773..4e4623565cb9 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ValidateOperation_RestoreDisk.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureIaasVm/ValidateOperation_RestoreDisk.json @@ -27,8 +27,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "validateOperationResponse": { "validationResults": [ @@ -44,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupPolicies_List.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupPolicies_List.json index 3b5aa09916b8..08fbccd94854 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupPolicies_List.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupPolicies_List.json @@ -1,70 +1,70 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "api-version": "2017-07-01", - "$filter": "backupManagementType eq 'AzureWorkload'" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/HourlyLogBackup", - "name": "HourlyLogBackup", - "type": "Microsoft.RecoveryServices/vaults/backupPolicies", - "properties": { - "backupManagementType": "AzureWorkload", - "workLoadType": "SQLDataBase", - "settings": { - "timeZone": "UTC", - "issqlcompression": false - }, - "subProtectionPolicy": [ - { - "policyType": "Full", - "schedulePolicy": { - "schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", - "scheduleRunTimes": [ - "2017-12-05T19:00:00Z" - ], - "scheduleWeeklyFrequency": 0 - }, - "retentionPolicy": { - "retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": { - "retentionTimes": [ - "2017-12-05T19:00:00Z" - ], - "retentionDuration": { - "count": 30, - "durationType": "Days" - } - } - } - }, - { - "policyType": "Log", - "schedulePolicy": { - "schedulePolicyType": "LogSchedulePolicy", - "scheduleFrequencyInMins": 60 - }, - "retentionPolicy": { - "retentionPolicyType": "SimpleRetentionPolicy", - "retentionDuration": { - "count": 30, - "durationType": "Days" - } - } - } - ], - "protectedItemsCount": 0 - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "api-version": "2017-07-01", + "$filter": "backupManagementType eq 'AzureWorkload'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/HourlyLogBackup", + "name": "HourlyLogBackup", + "type": "Microsoft.RecoveryServices/vaults/backupPolicies", + "properties": { + "backupManagementType": "AzureWorkload", + "workLoadType": "SQLDataBase", + "settings": { + "timeZone": "UTC", + "issqlcompression": false + }, + "subProtectionPolicy": [ + { + "policyType": "Full", + "schedulePolicy": { + "schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", + "scheduleRunTimes": [ + "2017-12-05T19:00:00Z" + ], + "scheduleWeeklyFrequency": 0 + }, + "retentionPolicy": { + "retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": { + "retentionTimes": [ + "2017-12-05T19:00:00Z" + ], + "retentionDuration": { + "count": 30, + "durationType": "Days" + } } - ] + } + }, + { + "policyType": "Log", + "schedulePolicy": { + "schedulePolicyType": "LogSchedulePolicy", + "scheduleFrequencyInMins": 60 + }, + "retentionPolicy": { + "retentionPolicyType": "SimpleRetentionPolicy", + "retentionDuration": { + "count": 30, + "durationType": "Days" + } + } + } + ], + "protectedItemsCount": 0 } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_Delete.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_Delete.json index 342acd3a12b3..b8a3c35185f6 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_Delete.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_Delete.json @@ -6,13 +6,11 @@ "fabricName": "Azure", "intentObjectName": "249D9B07-D2EF-4202-AA64-65F35418564E", "api-version": "2017-07-01", - "parameters": { - } + "parameters": {} }, "responses": { "204": { - "body": { - } + "body": {} } } } diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_Get.json index ee00ca1bc974..6b9e73023d1c 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_Get.json @@ -6,8 +6,7 @@ "fabricName": "Azure", "intentObjectName": "249D9B07-D2EF-4202-AA64-65F35418564E", "api-version": "2017-07-01", - "parameters": { - } + "parameters": {} }, "responses": { "200": { diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_List.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_List.json index 745dab0c6c54..c0b952d484d6 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_List.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/AzureWorkload/BackupProtectionIntent_List.json @@ -4,8 +4,7 @@ "resourceGroupName": "myRG", "vaultName": "myVault", "api-version": "2017-07-01", - "parameters": { - } + "parameters": {} }, "responses": { "200": { @@ -24,4 +23,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/BackupProtectedItem_UsageSummary_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/BackupProtectedItem_UsageSummary_Get.json index 1ce7ecd13d9b..fa3f011c32d8 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/BackupProtectedItem_UsageSummary_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/BackupProtectedItem_UsageSummary_Get.json @@ -1,62 +1,62 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "testRG", - "vaultName": "testVault", - "api-version": "2017-07-01", - "$filter": "type eq 'BackupProtectedItemCountSummary'" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "unit": "Count", - "currentValue": 7, - "limit": -1, - "name": { - "value": "AzureIaasVM", - "localizedValue": "Azure Virtual Machine" - } - }, - { - "unit": "Count", - "currentValue": 3, - "limit": -1, - "name": { - "value": "MAB", - "localizedValue": "Azure Backup Agent" - } - }, - { - "unit": "Count", - "currentValue": 1, - "limit": -1, - "name": { - "value": "AzureBackupServer", - "localizedValue": "Azure Backup Server" - } - }, - { - "unit": "Count", - "currentValue": 2, - "limit": -1, - "name": { - "value": "AzureStorage", - "localizedValue": "Azure Storage (Azure Files)" - } - }, - { - "unit": "Count", - "currentValue": 2, - "limit": -1, - "name": { - "value": "AzureWorkload", - "localizedValue": "SQL in Azure VM" - } - } - ] + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testRG", + "vaultName": "testVault", + "api-version": "2017-07-01", + "$filter": "type eq 'BackupProtectedItemCountSummary'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "unit": "Count", + "currentValue": 7, + "limit": -1, + "name": { + "value": "AzureIaasVM", + "localizedValue": "Azure Virtual Machine" } - } + }, + { + "unit": "Count", + "currentValue": 3, + "limit": -1, + "name": { + "value": "MAB", + "localizedValue": "Azure Backup Agent" + } + }, + { + "unit": "Count", + "currentValue": 1, + "limit": -1, + "name": { + "value": "AzureBackupServer", + "localizedValue": "Azure Backup Server" + } + }, + { + "unit": "Count", + "currentValue": 2, + "limit": -1, + "name": { + "value": "AzureStorage", + "localizedValue": "Azure Storage (Azure Files)" + } + }, + { + "unit": "Count", + "currentValue": 2, + "limit": -1, + "name": { + "value": "AzureWorkload", + "localizedValue": "SQL in Azure VM" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/BackupProtectionContainers_UsageSummary_Get.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/BackupProtectionContainers_UsageSummary_Get.json index 1d3eb436c2c2..b13a75b4ddcc 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/BackupProtectionContainers_UsageSummary_Get.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/BackupProtectionContainers_UsageSummary_Get.json @@ -1,44 +1,44 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "testRG", - "vaultName": "testVault", - "api-version": "2017-07-01", - "$filter": "type eq 'BackupProtectionContainerCountSummary'" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "unit": "Count", - "currentValue": 2, - "limit": -1, - "name": { - "value": "AzureBackupServer", - "localizedValue": "Azure Backup Server" - } - }, - { - "unit": "Count", - "currentValue": 3, - "limit": -1, - "name": { - "value": "MAB", - "localizedValue": "Azure Backup Agent" - } - }, - { - "unit": "Count", - "currentValue": 1, - "limit": -1, - "name": { - "value": "AzureWorkload", - "localizedValue": "SQL in Azure VM" - } - } - ] + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testRG", + "vaultName": "testVault", + "api-version": "2017-07-01", + "$filter": "type eq 'BackupProtectionContainerCountSummary'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "unit": "Count", + "currentValue": 2, + "limit": -1, + "name": { + "value": "AzureBackupServer", + "localizedValue": "Azure Backup Server" } - } + }, + { + "unit": "Count", + "currentValue": 3, + "limit": -1, + "name": { + "value": "MAB", + "localizedValue": "Azure Backup Agent" + } + }, + { + "unit": "Count", + "currentValue": 1, + "limit": -1, + "name": { + "value": "AzureWorkload", + "localizedValue": "SQL in Azure VM" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ExportJobsOperationResult.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ExportJobsOperationResult.json index 8f822f3971ad..658857ed4bfe 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ExportJobsOperationResult.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ExportJobsOperationResult.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "operationId": "00000000-0000-0000-0000-000000000000", - "api-version": "2017-07-01" + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "operationId": "00000000-0000-0000-0000-000000000000", + "api-version": "2017-07-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "operation": { + "objectType": "ExportJobsOperationResultInfo", + "blobUrl": "https://azureblob.blob.core.windows.net/reportcontainer/exportjobsreportc00000000-0000-0000-0000-000000000000", + "blobSasKey": "?sv=2014-02-14&sr=b&sig=&st=2017-11-29T07%3A53%3A34Z&se=2017-11-29T08%3A03%3A34Z&sp=r" + }, + "headers": {} + } }, - "responses": { - "200": { - "headers": {}, - "body": { - "operation": { - "objectType": "ExportJobsOperationResultInfo", - "blobUrl": "https://azureblob.blob.core.windows.net/reportcontainer/exportjobsreportc00000000-0000-0000-0000-000000000000", - "blobSasKey": "?sv=2014-02-14&sr=b&sig=&st=2017-11-29T07%3A53%3A34Z&se=2017-11-29T08%3A03%3A34Z&sp=r" - }, - "headers": {} - } + "202": { + "headers": { + "Retry-After": 60, + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01" + }, + "body": { + "operation": { + "objectType": "ExportJobsOperationResultInfo" }, - "202": { - "headers": { - "Retry-After": 60, - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01" - }, - "body": { - "operation": { - "objectType": "ExportJobsOperationResultInfo" - }, - "headers": { - "Location": [ - "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01" - ], - "Retry-After": [ - "60" - ] - } - } + "headers": { + "Location": [ + "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01" + ], + "Retry-After": [ + "60" + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/GetJobDetails.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/GetJobDetails.json index d300b927db96..b6ce62c4e69d 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/GetJobDetails.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/GetJobDetails.json @@ -1,46 +1,46 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "jobName": "00000000-0000-0000-0000-000000000000", - "api-version": "2017-07-01" - }, - "responses": { - "200": { - "body": { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", - "name": "00000000-0000-0000-0000-000000000000", - "type": "Microsoft.RecoveryServices/vaults/backupJobs", - "properties": { - "jobType": "AzureIaaSVMJob", - "duration": "PT9.8782791S", - "virtualMachineVersion": "Compute", - "extendedInfo": { - "tasksList": [ - { - "taskId": "Take Snapshot", - "duration": "PT0S", - "status": "InProgress" - }, - { - "taskId": "Transfer data to vault", - "duration": "PT0S", - "status": "NotStarted" - } - ], - "propertyBag": { - "VM Name": "testvm" - } - }, - "entityFriendlyName": "testvm", - "backupManagementType": "AzureIaasVM", - "operation": "Backup", - "status": "InProgress", - "startTime": "2017-08-03T05:31:07.014604Z", - "activityId": "00000000-0000-0000-0000-000000000000" - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "jobName": "00000000-0000-0000-0000-000000000000", + "api-version": "2017-07-01" + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", + "name": "00000000-0000-0000-0000-000000000000", + "type": "Microsoft.RecoveryServices/vaults/backupJobs", + "properties": { + "jobType": "AzureIaaSVMJob", + "duration": "PT9.8782791S", + "virtualMachineVersion": "Compute", + "extendedInfo": { + "tasksList": [ + { + "taskId": "Take Snapshot", + "duration": "PT0S", + "status": "InProgress" + }, + { + "taskId": "Transfer data to vault", + "duration": "PT0S", + "status": "NotStarted" + } + ], + "propertyBag": { + "VM Name": "testvm" } + }, + "entityFriendlyName": "testvm", + "backupManagementType": "AzureIaasVM", + "operation": "Backup", + "status": "InProgress", + "startTime": "2017-08-03T05:31:07.014604Z", + "activityId": "00000000-0000-0000-0000-000000000000" } + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobs.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobs.json index 8e93628c7c6d..78d9a70b88f3 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobs.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobs.json @@ -1,49 +1,49 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "api-version": "2017-07-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", - "name": "00000000-0000-0000-0000-000000000000", - "type": "Microsoft.RecoveryServices/vaults/backupJobs", - "properties": { - "jobType": "AzureIaaSVMJob", - "duration": "PT12.4272909S", - "virtualMachineVersion": "Compute", - "entityFriendlyName": "testvm", - "backupManagementType": "AzureIaasVM", - "operation": "Backup", - "status": "InProgress", - "startTime": "2017-08-03T05:31:07.014604Z", - "activityId": "00000000-0000-0000-0000-000000000000" - } - }, - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", - "name": "00000000-0000-0000-0000-000000000000", - "type": "Microsoft.RecoveryServices/vaults/backupJobs", - "properties": { - "jobType": "AzureIaaSVMJob", - "duration": "PT31.3066291S", - "virtualMachineVersion": "Compute", - "entityFriendlyName": "testvm", - "backupManagementType": "AzureIaasVM", - "operation": "ConfigureBackup", - "status": "Completed", - "startTime": "2017-08-03T05:30:32.4487085Z", - "endTime": "2017-08-03T05:31:03.7553376Z", - "activityId": "00000000-0000-0000-0000-000000000000" - } - } - ] + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "api-version": "2017-07-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", + "name": "00000000-0000-0000-0000-000000000000", + "type": "Microsoft.RecoveryServices/vaults/backupJobs", + "properties": { + "jobType": "AzureIaaSVMJob", + "duration": "PT12.4272909S", + "virtualMachineVersion": "Compute", + "entityFriendlyName": "testvm", + "backupManagementType": "AzureIaasVM", + "operation": "Backup", + "status": "InProgress", + "startTime": "2017-08-03T05:31:07.014604Z", + "activityId": "00000000-0000-0000-0000-000000000000" } - } + }, + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", + "name": "00000000-0000-0000-0000-000000000000", + "type": "Microsoft.RecoveryServices/vaults/backupJobs", + "properties": { + "jobType": "AzureIaaSVMJob", + "duration": "PT31.3066291S", + "virtualMachineVersion": "Compute", + "entityFriendlyName": "testvm", + "backupManagementType": "AzureIaasVM", + "operation": "ConfigureBackup", + "status": "Completed", + "startTime": "2017-08-03T05:30:32.4487085Z", + "endTime": "2017-08-03T05:31:03.7553376Z", + "activityId": "00000000-0000-0000-0000-000000000000" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobsWithAllSupportedFilters.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobsWithAllSupportedFilters.json index 1395fa3a45c4..bd6bdf4a9147 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobsWithAllSupportedFilters.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobsWithAllSupportedFilters.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "api-version": "2017-07-01", - "$filter": "startTime eq '2016-01-01 00:00:00 AM' and endTime eq '2017-11-29 00:00:00 AM' and operation eq 'Backup' and backupManagementType eq 'AzureIaasVM' and status eq 'InProgress'" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", - "name": "00000000-0000-0000-0000-000000000000", - "type": "Microsoft.RecoveryServices/vaults/backupJobs", - "properties": { - "jobType": "AzureIaaSVMJob", - "duration": "PT12.4272909S", - "virtualMachineVersion": "Compute", - "entityFriendlyName": "testvm", - "backupManagementType": "AzureIaasVM", - "operation": "Backup", - "status": "InProgress", - "startTime": "2017-08-03T05:31:07.014604Z", - "activityId": "00000000-0000-0000-0000-000000000000" - } - } - ] + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "api-version": "2017-07-01", + "$filter": "startTime eq '2016-01-01 00:00:00 AM' and endTime eq '2017-11-29 00:00:00 AM' and operation eq 'Backup' and backupManagementType eq 'AzureIaasVM' and status eq 'InProgress'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", + "name": "00000000-0000-0000-0000-000000000000", + "type": "Microsoft.RecoveryServices/vaults/backupJobs", + "properties": { + "jobType": "AzureIaaSVMJob", + "duration": "PT12.4272909S", + "virtualMachineVersion": "Compute", + "entityFriendlyName": "testvm", + "backupManagementType": "AzureIaasVM", + "operation": "Backup", + "status": "InProgress", + "startTime": "2017-08-03T05:31:07.014604Z", + "activityId": "00000000-0000-0000-0000-000000000000" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobsWithStartTimeAndEndTimeFilters.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobsWithStartTimeAndEndTimeFilters.json index 007c752611d8..dd7bdd1125d6 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobsWithStartTimeAndEndTimeFilters.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/ListJobsWithStartTimeAndEndTimeFilters.json @@ -1,51 +1,51 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "api-version": "2017-07-01", - "$filter": "startTime eq '2016-01-01 00:00:00 AM' and endTime eq '2017-11-29 00:00:00 AM'" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", - "name": "00000000-0000-0000-0000-000000000000", - "type": "Microsoft.RecoveryServices/vaults/backupJobs", - "properties": { - "jobType": "AzureIaaSVMJob", - "duration": "PT12.4272909S", - "virtualMachineVersion": "Compute", - "entityFriendlyName": "testvm", - "backupManagementType": "AzureIaasVM", - "operation": "Backup", - "status": "InProgress", - "startTime": "2017-08-03T05:31:07.014604Z", - "activityId": "00000000-0000-0000-0000-000000000000" - } - }, - { - "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", - "name": "00000000-0000-0000-0000-000000000000", - "type": "Microsoft.RecoveryServices/vaults/backupJobs", - "properties": { - "jobType": "AzureIaaSVMJob", - "duration": "PT31.3066291S", - "virtualMachineVersion": "Compute", - "entityFriendlyName": "testvm", - "backupManagementType": "AzureIaasVM", - "operation": "ConfigureBackup", - "status": "Completed", - "startTime": "2017-08-03T05:30:32.4487085Z", - "endTime": "2017-08-03T05:31:03.7553376Z", - "activityId": "00000000-0000-0000-0000-000000000000" - } - } - ], - "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs?api-version=2017-07-01&%24filter=startTime+eq+%272016-01-01+00%3a00%3a00+AM%27+and+endTime+eq+%272017-11-29+00%3a00%3a00+AM%27&%24skiptoken=%3c%3fxml+version%3d%221.0%22+encoding%3d%22utf-16%22%3f%3e%0d%0a%3cContinuationToken%3e%0d%0a++%3cContinuationToken%3e%0d%0a++++%3cVersion%3e2.0%3c%2fVersion%3e%0d%0a++++%3cType%3eTable%3c%2fType%3e%0d%0a++++%3cNextPartitionKey%3e1!28!NzI5MTk0OTM1MDkwNjEwODQzMA--%3c%2fNextPartitionKey%3e%0d%0a++++%3cNextRowKey%3e1!108!am9ic3N0YXJ0dGltZWluZGV4XzBfMjUxODkxNDYzNTI2NjE5Nzg5OF8wXzYwOWZkM2JmLTU4MzctNDFkYi1iMjExLTY1MzliNDNlZjM1OA--%3c%2fNextRowKey%3e%0d%0a++++%3cTargetLocation%3ePrimary%3c%2fTargetLocation%3e%0d%0a++%3c%2fContinuationToken%3e%0d%0a%3c%2fContinuationToken%3e" + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "api-version": "2017-07-01", + "$filter": "startTime eq '2016-01-01 00:00:00 AM' and endTime eq '2017-11-29 00:00:00 AM'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", + "name": "00000000-0000-0000-0000-000000000000", + "type": "Microsoft.RecoveryServices/vaults/backupJobs", + "properties": { + "jobType": "AzureIaaSVMJob", + "duration": "PT12.4272909S", + "virtualMachineVersion": "Compute", + "entityFriendlyName": "testvm", + "backupManagementType": "AzureIaasVM", + "operation": "Backup", + "status": "InProgress", + "startTime": "2017-08-03T05:31:07.014604Z", + "activityId": "00000000-0000-0000-0000-000000000000" } - } + }, + { + "id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/00000000-0000-0000-0000-000000000000", + "name": "00000000-0000-0000-0000-000000000000", + "type": "Microsoft.RecoveryServices/vaults/backupJobs", + "properties": { + "jobType": "AzureIaaSVMJob", + "duration": "PT31.3066291S", + "virtualMachineVersion": "Compute", + "entityFriendlyName": "testvm", + "backupManagementType": "AzureIaasVM", + "operation": "ConfigureBackup", + "status": "Completed", + "startTime": "2017-08-03T05:30:32.4487085Z", + "endTime": "2017-08-03T05:31:03.7553376Z", + "activityId": "00000000-0000-0000-0000-000000000000" + } + } + ], + "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs?api-version=2017-07-01&%24filter=startTime+eq+%272016-01-01+00%3a00%3a00+AM%27+and+endTime+eq+%272017-11-29+00%3a00%3a00+AM%27&%24skiptoken=%3c%3fxml+version%3d%221.0%22+encoding%3d%22utf-16%22%3f%3e%0d%0a%3cContinuationToken%3e%0d%0a++%3cContinuationToken%3e%0d%0a++++%3cVersion%3e2.0%3c%2fVersion%3e%0d%0a++++%3cType%3eTable%3c%2fType%3e%0d%0a++++%3cNextPartitionKey%3e1!28!NzI5MTk0OTM1MDkwNjEwODQzMA--%3c%2fNextPartitionKey%3e%0d%0a++++%3cNextRowKey%3e1!108!am9ic3N0YXJ0dGltZWluZGV4XzBfMjUxODkxNDYzNTI2NjE5Nzg5OF8wXzYwOWZkM2JmLTU4MzctNDFkYi1iMjExLTY1MzliNDNlZjM1OA--%3c%2fNextRowKey%3e%0d%0a++++%3cTargetLocation%3ePrimary%3c%2fTargetLocation%3e%0d%0a++%3c%2fContinuationToken%3e%0d%0a%3c%2fContinuationToken%3e" + } } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/TriggerExportJobs.json b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/TriggerExportJobs.json index 95d02c7cef50..84beb4d22918 100644 --- a/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/TriggerExportJobs.json +++ b/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2017-07-01/examples/Common/TriggerExportJobs.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "SwaggerTestRg", - "vaultName": "NetSDKTestRsVault", - "api-version": "2017-07-01" - }, - "responses": { - "202": { - "headers": { - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", - "Retry-After": 60 - }, - "body": null - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "SwaggerTestRg", + "vaultName": "NetSDKTestRsVault", + "api-version": "2017-07-01" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupJobs/operationResults/00000000-0000-0000-0000-000000000000?api-version=2017-07-01", + "Retry-After": 60 + }, + "body": null } -} \ No newline at end of file + } +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/Operations_List.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/Operations_List.json index b7c90c9f1d13..77961a673303 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/Operations_List.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/Operations_List.json @@ -1222,4 +1222,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationEvents_Get.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationEvents_Get.json index fae82590a3bc..10b1b0b5a9b4 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationEvents_Get.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationEvents_Get.json @@ -10,8 +10,8 @@ "200": { "body": { "type": "Microsoft.RecoveryServices/vaults/replicationEvents", - "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationEvents/VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", - "name": "VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationEvents/VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", + "name": "VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", "properties": { "eventCode": "d9a07b07-c7b5-49ca-ab6c-6926596dfe47", "description": "Virtual machine health is OK", diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_CheckConsistency.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_CheckConsistency.json index 6c6a8f5bdca5..a88c6ddd679d 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_CheckConsistency.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_CheckConsistency.json @@ -30,7 +30,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Create.json index 0c5f833d39c3..35202748529c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Create.json @@ -37,7 +37,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Delete.json index 281a86b008a2..8b2b7f860e11 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Delete.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_List.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_List.json index 929b1dd248d4..1a6004f85363 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_List.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_List.json @@ -35,4 +35,3 @@ } } } - diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_MigrateToAad.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_MigrateToAad.json index 4af4b22e9a50..8b2b7f860e11 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_MigrateToAad.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_MigrateToAad.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Purge.json index 281a86b008a2..8b2b7f860e11 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_Purge.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_ReassociateGateway.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_ReassociateGateway.json index dea16b909d28..b6c1affdd832 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_ReassociateGateway.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_ReassociateGateway.json @@ -42,7 +42,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_RenewCertificate.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_RenewCertificate.json index 4726a176df20..4aed1aeeeba7 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_RenewCertificate.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationFabrics_RenewCertificate.json @@ -35,7 +35,6 @@ } } }, - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Cancel.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Cancel.json index 59c9fd66be64..4ce988f0e17d 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Cancel.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Cancel.json @@ -53,7 +53,6 @@ "startTime": "2017-05-03T06:16:06.3235186Z" } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Export.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Export.json index 0ebb8450b97f..ccd717277b16 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Export.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Export.json @@ -41,7 +41,6 @@ "endTime": "2017-05-04T14:33:43Z" } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Restart.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Restart.json index a68a62ef9218..ec9d12bafc34 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Restart.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Restart.json @@ -51,7 +51,6 @@ "endTime": "2017-05-03T10:45:14Z" } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Resume.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Resume.json index 98d2c1edf923..bbae778b1c3f 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Resume.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationJobs_Resume.json @@ -74,7 +74,6 @@ "endTime": "2017-04-25T09:59:12.0452175Z" } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Create.json index c29540938ddf..4644493df108 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Create.json @@ -38,7 +38,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Delete.json index f8cf07ca175d..6acc67e82c68 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Delete.json @@ -9,9 +9,7 @@ "networkMappingName": "corpe2amap" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Update.json index 438f055b630d..c54dbd1528a3 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationNetworkMappings_Update.json @@ -38,7 +38,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Create.json index df5cb4639091..9690ab6bab79 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Create.json @@ -27,7 +27,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Delete.json index 0ea87be5a958..9320e18d1410 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Delete.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Update.json index 6a0a73b35696..51e82ed0febb 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationPolicies_Update.json @@ -27,7 +27,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectableItems_ListByReplicationProtectionContainers.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectableItems_ListByReplicationProtectionContainers.json index 56e107ce8596..17ef8189b411 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectableItems_ListByReplicationProtectionContainers.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectableItems_ListByReplicationProtectionContainers.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json index 791036f8adee..37078f9f2584 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json @@ -62,7 +62,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Create.json index d5a29e0935cb..f6e3995610d1 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Create.json @@ -60,7 +60,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Delete.json index e75d5d7ec7ee..14705271deac 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Delete.json @@ -16,9 +16,7 @@ } }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_FailoverCommit.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_FailoverCommit.json index 900531d50bed..3a69d9f5a82b 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_FailoverCommit.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_FailoverCommit.json @@ -8,52 +8,51 @@ "resourceGroupName": "resourceGroupPS1", "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, - "responses": { - "200": { - "body": { - "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", - "name": "f8491e4f-817a-40dd-a90c-af773978c75b", - "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", - "properties": { - "friendlyName": "vm1", - "protectedItemType": "HyperVVirtualMachine", - "protectableItemId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectableItems/f8491e4f-817a-40dd-a90c-af773978c75b", - "recoveryServicesProviderId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/241641e6-ee7b-4ee4-8141-821fadda43fa", - "primaryFabricFriendlyName": "cloud1", - "recoveryFabricFriendlyName": "Microsoft Azure", - "recoveryFabricId": "Microsoft Azure", - "primaryProtectionContainerFriendlyName": "cloud1", - "recoveryProtectionContainerFriendlyName": "Microsoft Azure", - "protectionState": "PlannedFailoverStatesBegin", - "protectionStateDescription": "Planned failover committed", - "activeLocation": "Recovery", - "testFailoverState": "MarkedForDeletion", - "testFailoverStateDescription": "Cleaning up test environment", - "allowedOperations": [ - "CompleteMigration", - "DisableProtection", - "Failback" - ], - "replicationHealth": "Normal", - "replicationHealthErrors": [], - "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/protectionprofile1", - "policyFriendlyName": "protectionprofile1", - "lastSuccessfulFailoverTime": "2017-04-26T06:37:23.1578655Z", - "lastSuccessfulTestFailoverTime": "2017-04-25T09:57:57.0357829Z", - "currentScenario": { - "scenarioName": "None", - "jobId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", - "startTime": "1753-01-01T01:01:01Z" - }, - "failoverRecoveryPointId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b/recoveryPoints/b22134ea-620c-474b-9fa5-3c1cb47708e3", - "providerSpecificDetails": { - "instanceType": "HyperVReplicaAzure" - }, - "recoveryContainerId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478" - } + "responses": { + "200": { + "body": { + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", + "name": "f8491e4f-817a-40dd-a90c-af773978c75b", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", + "properties": { + "friendlyName": "vm1", + "protectedItemType": "HyperVVirtualMachine", + "protectableItemId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectableItems/f8491e4f-817a-40dd-a90c-af773978c75b", + "recoveryServicesProviderId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/241641e6-ee7b-4ee4-8141-821fadda43fa", + "primaryFabricFriendlyName": "cloud1", + "recoveryFabricFriendlyName": "Microsoft Azure", + "recoveryFabricId": "Microsoft Azure", + "primaryProtectionContainerFriendlyName": "cloud1", + "recoveryProtectionContainerFriendlyName": "Microsoft Azure", + "protectionState": "PlannedFailoverStatesBegin", + "protectionStateDescription": "Planned failover committed", + "activeLocation": "Recovery", + "testFailoverState": "MarkedForDeletion", + "testFailoverStateDescription": "Cleaning up test environment", + "allowedOperations": [ + "CompleteMigration", + "DisableProtection", + "Failback" + ], + "replicationHealth": "Normal", + "replicationHealthErrors": [], + "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/protectionprofile1", + "policyFriendlyName": "protectionprofile1", + "lastSuccessfulFailoverTime": "2017-04-26T06:37:23.1578655Z", + "lastSuccessfulTestFailoverTime": "2017-04-25T09:57:57.0357829Z", + "currentScenario": { + "scenarioName": "None", + "jobId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", + "startTime": "1753-01-01T01:01:01Z" + }, + "failoverRecoveryPointId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b/recoveryPoints/b22134ea-620c-474b-9fa5-3c1cb47708e3", + "providerSpecificDetails": { + "instanceType": "HyperVReplicaAzure" + }, + "recoveryContainerId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478" } - }, - "202": { } - } + }, + "202": {} } +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_PlannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_PlannedFailover.json index f744553f4c80..91c58718e4e9 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_PlannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_PlannedFailover.json @@ -62,7 +62,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Purge.json index 32ef355236f4..57f3eb5af186 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Purge.json @@ -9,9 +9,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_RepairReplication.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_RepairReplication.json index be7faaa6fa7f..0e1a2a1d32f3 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_RepairReplication.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_RepairReplication.json @@ -51,7 +51,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Reprotect.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Reprotect.json index 8b1a77833e32..3060a3dc842b 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Reprotect.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Reprotect.json @@ -62,7 +62,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_TestFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_TestFailover.json index efc59c989891..0309b120b38a 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_TestFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_TestFailover.json @@ -60,7 +60,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json index e6821f867813..15f88ce71e0c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json @@ -59,7 +59,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_UnplannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_UnplannedFailover.json index 2115402f8906..495055d91785 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_UnplannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_UnplannedFailover.json @@ -63,7 +63,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Update.json index 341cb06369c9..efb0be665ece 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_Update.json @@ -69,7 +69,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_UpdateMobilityService.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_UpdateMobilityService.json index 4fb08b4c10d3..9196e8459402 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_UpdateMobilityService.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectedItems_UpdateMobilityService.json @@ -55,7 +55,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Create.json index c2b42fa48f85..9ad3d6661a22 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Create.json @@ -35,7 +35,6 @@ } } }, - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Delete.json index 85fe8bc006a5..02fe1e637428 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Delete.json @@ -14,9 +14,7 @@ } }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Get.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Get.json index b853c01dd409..76f9a254e3ba 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Get.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Get.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_ListByReplicationProtectionContainers.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_ListByReplicationProtectionContainers.json index a6d8a8393372..fff6a4338368 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_ListByReplicationProtectionContainers.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_ListByReplicationProtectionContainers.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Purge.json index ee5169b39f4b..0b93a3d87ae6 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainerMappings_Purge.json @@ -9,9 +9,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_Create.json index ff0a6ea8d8e8..d96b4238b53f 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_Create.json @@ -32,7 +32,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_Delete.json index 1a3d668cc860..2347bb6df10f 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_Delete.json @@ -8,9 +8,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json index 7944fe575b09..8ff7e75a943e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json @@ -30,7 +30,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_SwitchProtection.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_SwitchProtection.json index a489d1e12792..3b94cef4371b 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_SwitchProtection.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationProtectionContainers_SwitchProtection.json @@ -31,7 +31,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Create.json index b71ade6d24b9..b56346028459 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Create.json @@ -75,7 +75,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Delete.json index f2f15af52620..73ba8c61b449 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Delete.json @@ -7,9 +7,7 @@ "recoveryPlanName": "RPtest1" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_FailoverCommit.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_FailoverCommit.json index c15bc12633a0..dc8276028dba 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_FailoverCommit.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_FailoverCommit.json @@ -75,7 +75,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_PlannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_PlannedFailover.json index 5f84751df348..f5329d7f05e9 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_PlannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_PlannedFailover.json @@ -86,7 +86,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Reprotect.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Reprotect.json index 562012f5fbcb..ace4b3e3fc9b 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Reprotect.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Reprotect.json @@ -75,7 +75,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_TestFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_TestFailover.json index 118ec17630e9..d01d013cee58 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_TestFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_TestFailover.json @@ -83,7 +83,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json index 49f47d937d37..5c384cc21a7b 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json @@ -80,7 +80,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json index 0fa1d5239162..252e1f8e9891 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json @@ -87,7 +87,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Update.json index d575416a8586..535b834ba794 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryPlans_Update.json @@ -106,7 +106,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_Delete.json index aadc9ed63890..50f315f8ddf4 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_Delete.json @@ -8,9 +8,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_Purge.json index aadc9ed63890..50f315f8ddf4 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_Purge.json @@ -8,9 +8,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json index 6cf199e33525..31172559016c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json @@ -29,7 +29,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationStorageClassificationMappings_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationStorageClassificationMappings_Create.json index b3af0c72d9a8..c0807ce2b184 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationStorageClassificationMappings_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationStorageClassificationMappings_Create.json @@ -24,7 +24,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationStorageClassificationMappings_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationStorageClassificationMappings_Delete.json index d269a325183e..41c3e62be482 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationStorageClassificationMappings_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationStorageClassificationMappings_Delete.json @@ -9,9 +9,7 @@ "subscriptionId": "9112a37f-0f3e-46ec-9c00-060c6edca071" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationVaultHealth_Get.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationVaultHealth_Get.json index 14f9a44f0769..e7151baba30e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationVaultHealth_Get.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationVaultHealth_Get.json @@ -12,25 +12,27 @@ "type": "Microsoft.RecoveryServices/vaults/replicationVaultHealth", "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultHealth/Default", "properties": { - "vaultErrors": [], + "vaultErrors": [], "protectedItemsHealth": { "resourceCount": 6, - "issues": [{ - "summaryCode": "10008", - "category": "Replication", - "severity": "Error", - "summaryMessage": "RPO Throttled", - "affectedResourceType": "replicationProtectedItems", - "affectedResourceSubtype": "", - "affectedResourceCorrelationIds": [ - "c183865e-6077-46f2-a3b1-deb0f4f4650a", - "c183865e-6077-46f2-a3b1-ceb0a4c3751e" - ] - }] + "issues": [ + { + "summaryCode": "10008", + "category": "Replication", + "severity": "Error", + "summaryMessage": "RPO Throttled", + "affectedResourceType": "replicationProtectedItems", + "affectedResourceSubtype": "", + "affectedResourceCorrelationIds": [ + "c183865e-6077-46f2-a3b1-deb0f4f4650a", + "c183865e-6077-46f2-a3b1-ceb0a4c3751e" + ] + } + ] }, - "fabricsHealth": { + "fabricsHealth": { "resourceCount": 1, - "issues": [] + "issues": [] } } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Create.json index b3e3bd65bcab..b3f8bf5cdf45 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Create.json @@ -34,7 +34,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Delete.json index 6c924e08f98f..ace1b0dbfc72 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Delete.json @@ -8,9 +8,7 @@ "subscriptionId": "7c943c1b-5122-4097-90c8-861411bdd574" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Update.json index c5677dffeffb..ada8d495a32a 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2016-08-10/examples/ReplicationvCenters_Update.json @@ -30,7 +30,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationEvents_Get.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationEvents_Get.json index e985e881d1e6..42cede36677e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationEvents_Get.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationEvents_Get.json @@ -10,8 +10,8 @@ "200": { "body": { "type": "Microsoft.RecoveryServices/vaults/replicationEvents", - "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationEvents/VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", - "name": "VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationEvents/VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", + "name": "VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", "properties": { "eventCode": "d9a07b07-c7b5-49ca-ab6c-6926596dfe47", "description": "Virtual machine health is OK", diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_CheckConsistency.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_CheckConsistency.json index 71823b6186a1..955935c50967 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_CheckConsistency.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_CheckConsistency.json @@ -30,7 +30,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Create.json index c3bc2e02ba40..8989a6fb91c1 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Create.json @@ -37,7 +37,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Delete.json index 74c2f9916779..ac3225063e65 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Delete.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_List.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_List.json index 47a132dddb28..5ca561422d8a 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_List.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_List.json @@ -35,4 +35,3 @@ } } } - diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_MigrateToAad.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_MigrateToAad.json index 74c2f9916779..ac3225063e65 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_MigrateToAad.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_MigrateToAad.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Purge.json index 74c2f9916779..ac3225063e65 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_Purge.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_ReassociateGateway.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_ReassociateGateway.json index d904e7b5594f..e0c0466c32ba 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_ReassociateGateway.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_ReassociateGateway.json @@ -42,7 +42,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_RenewCertificate.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_RenewCertificate.json index 8d013e65e4fe..06e7bf04c430 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_RenewCertificate.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationFabrics_RenewCertificate.json @@ -35,7 +35,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Cancel.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Cancel.json index f59bef7d934b..858156913740 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Cancel.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Cancel.json @@ -47,7 +47,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Export.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Export.json index ed6de8b50c36..10825bba6117 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Export.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Export.json @@ -38,7 +38,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Restart.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Restart.json index 00a0de9a95ec..a1c3b333b841 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Restart.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Restart.json @@ -48,7 +48,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Resume.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Resume.json index 55a030fff129..065fdadb6abc 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Resume.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationJobs_Resume.json @@ -71,7 +71,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Create.json index 70c5deab9141..fd1a7e49c65a 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Create.json @@ -48,7 +48,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Delete.json index 570f5b20e3a6..76a956077540 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Delete.json @@ -9,9 +9,7 @@ "subscriptionId": "cb53d0c3-bd59-4721-89bc-06916a9147ef" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Migrate.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Migrate.json index c2822dd85a3a..d7df2cbeeb58 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Migrate.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Migrate.json @@ -47,7 +47,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_TestMigrate.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_TestMigrate.json index 4f8c750843ea..76940f415b44 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_TestMigrate.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_TestMigrate.json @@ -47,7 +47,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_TestMigrateCleanup.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_TestMigrateCleanup.json index c361c8060fd3..c58e8845447e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_TestMigrateCleanup.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_TestMigrateCleanup.json @@ -45,7 +45,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Update.json index 404d0e0f77cc..ac1b359a84a4 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationMigrationItems_Update.json @@ -47,7 +47,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Create.json index 7d63512ed867..f15356448c2e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Create.json @@ -38,7 +38,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Delete.json index b91fb410d946..a1aec532b30e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Delete.json @@ -9,9 +9,7 @@ "networkMappingName": "corpe2amap" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Update.json index 5e699552557a..b19597e61336 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationNetworkMappings_Update.json @@ -38,7 +38,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Create.json index 749bbe6b5685..e19c0c9ed180 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Create.json @@ -27,7 +27,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Delete.json index e841b2c466cc..2c67bb6e424e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Delete.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Update.json index 407bf8a52898..fcb9f40b21e4 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationPolicies_Update.json @@ -27,7 +27,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json index 6dbccd5f951d..4899374b4e34 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json @@ -61,7 +61,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Create.json index 34395060a6d8..5693e34cd5ec 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Create.json @@ -59,7 +59,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Delete.json index a8c1b23e1944..22219f3cb9bd 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Delete.json @@ -16,9 +16,7 @@ } }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_FailoverCommit.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_FailoverCommit.json index 62b1cec83c0a..348cf43d4b89 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_FailoverCommit.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_FailoverCommit.json @@ -8,51 +8,50 @@ "resourceGroupName": "resourceGroupPS1", "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, - "responses": { - "200": { - "body": { - "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", - "name": "f8491e4f-817a-40dd-a90c-af773978c75b", - "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", - "properties": { - "friendlyName": "vm1", - "protectedItemType": "HyperVVirtualMachine", - "protectableItemId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectableItems/f8491e4f-817a-40dd-a90c-af773978c75b", - "recoveryServicesProviderId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/241641e6-ee7b-4ee4-8141-821fadda43fa", - "primaryFabricFriendlyName": "cloud1", - "recoveryFabricFriendlyName": "Microsoft Azure", - "recoveryFabricId": "Microsoft Azure", - "primaryProtectionContainerFriendlyName": "cloud1", - "recoveryProtectionContainerFriendlyName": "Microsoft Azure", - "protectionState": "PlannedFailoverStatesBegin", - "protectionStateDescription": "Planned failover committed", - "activeLocation": "Recovery", - "testFailoverState": "MarkedForDeletion", - "testFailoverStateDescription": "Cleaning up test environment", - "allowedOperations": [ - "CompleteMigration", - "DisableProtection", - "Failback" - ], - "replicationHealth": "Normal", - "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/protectionprofile1", - "policyFriendlyName": "protectionprofile1", - "lastSuccessfulFailoverTime": "2017-04-26T06:37:23.1578655Z", - "lastSuccessfulTestFailoverTime": "2017-04-25T09:57:57.0357829Z", - "currentScenario": { - "scenarioName": "None", - "jobId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", - "startTime": "1753-01-01T01:01:01Z" - }, - "failoverRecoveryPointId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b/recoveryPoints/b22134ea-620c-474b-9fa5-3c1cb47708e3", - "providerSpecificDetails": { - "instanceType": "HyperVReplicaAzure" - }, - "recoveryContainerId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478" - } + "responses": { + "200": { + "body": { + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", + "name": "f8491e4f-817a-40dd-a90c-af773978c75b", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", + "properties": { + "friendlyName": "vm1", + "protectedItemType": "HyperVVirtualMachine", + "protectableItemId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectableItems/f8491e4f-817a-40dd-a90c-af773978c75b", + "recoveryServicesProviderId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/241641e6-ee7b-4ee4-8141-821fadda43fa", + "primaryFabricFriendlyName": "cloud1", + "recoveryFabricFriendlyName": "Microsoft Azure", + "recoveryFabricId": "Microsoft Azure", + "primaryProtectionContainerFriendlyName": "cloud1", + "recoveryProtectionContainerFriendlyName": "Microsoft Azure", + "protectionState": "PlannedFailoverStatesBegin", + "protectionStateDescription": "Planned failover committed", + "activeLocation": "Recovery", + "testFailoverState": "MarkedForDeletion", + "testFailoverStateDescription": "Cleaning up test environment", + "allowedOperations": [ + "CompleteMigration", + "DisableProtection", + "Failback" + ], + "replicationHealth": "Normal", + "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/protectionprofile1", + "policyFriendlyName": "protectionprofile1", + "lastSuccessfulFailoverTime": "2017-04-26T06:37:23.1578655Z", + "lastSuccessfulTestFailoverTime": "2017-04-25T09:57:57.0357829Z", + "currentScenario": { + "scenarioName": "None", + "jobId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", + "startTime": "1753-01-01T01:01:01Z" + }, + "failoverRecoveryPointId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b/recoveryPoints/b22134ea-620c-474b-9fa5-3c1cb47708e3", + "providerSpecificDetails": { + "instanceType": "HyperVReplicaAzure" + }, + "recoveryContainerId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478" } - }, - "202": { } - } + }, + "202": {} } +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_PlannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_PlannedFailover.json index 1ea52d8ebc83..4abc1ecb2a20 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_PlannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_PlannedFailover.json @@ -61,7 +61,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Purge.json index 16c887d4880c..5e4a0e8033be 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Purge.json @@ -9,9 +9,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_RepairReplication.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_RepairReplication.json index ac86282e782a..cc0a56bb7a28 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_RepairReplication.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_RepairReplication.json @@ -50,7 +50,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Reprotect.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Reprotect.json index 600165568b94..0141695f2457 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Reprotect.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Reprotect.json @@ -61,7 +61,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_TestFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_TestFailover.json index 746bec8842e5..b3ea5beb9bb1 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_TestFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_TestFailover.json @@ -59,7 +59,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json index 7944066d0f73..c4a246eac5ab 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json @@ -58,7 +58,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_UnplannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_UnplannedFailover.json index 4ddf509a3c5b..0166e4d7ee07 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_UnplannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_UnplannedFailover.json @@ -62,7 +62,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Update.json index b6e8b63b1887..53b2a4d921f8 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_Update.json @@ -68,7 +68,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_UpdateMobilityService.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_UpdateMobilityService.json index feb8f5e7909b..3896657955af 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_UpdateMobilityService.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectedItems_UpdateMobilityService.json @@ -54,7 +54,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Create.json index cf205dad4080..3d8de1ad10cc 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Create.json @@ -35,7 +35,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Delete.json index c2619e182a1b..0595b29f086d 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Delete.json @@ -14,9 +14,7 @@ } }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Purge.json index 84350a519127..ca3515242a39 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Purge.json @@ -9,9 +9,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Update.json index 7d54c8a39070..67825845ecc4 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainerMappings_Update.json @@ -1,53 +1,49 @@ { - "parameters":{ - "mappingName":"cloud1protectionprofile1", - "protectionContainerName":"cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", - "fabricName":"cloud1", - "api-version":"2018-01-10", - "resourceName":"vault1", - "resourceGroupName":"resourceGroupPS1", - "subscriptionId":"c183865e-6077-46f2-a3b1-deb0f4f4650a", - "updateInput":{ - "properties":{ - "providerSpecificInput":{ - "instanceType":"A2A", - "agentAutoUpdateStatus":"Enabled", - "automationAccountArmId":"/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/automationrg1/providers/Microsoft.Automation/automationAccounts/automationaccount1" - } - } + "parameters": { + "mappingName": "cloud1protectionprofile1", + "protectionContainerName": "cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", + "fabricName": "cloud1", + "api-version": "2018-01-10", + "resourceName": "vault1", + "resourceGroupName": "resourceGroupPS1", + "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a", + "updateInput": { + "properties": { + "providerSpecificInput": { + "instanceType": "A2A", + "agentAutoUpdateStatus": "Enabled", + "automationAccountArmId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/automationrg1/providers/Microsoft.Automation/automationAccounts/automationaccount1" + } } - }, - "responses":{ - "200":{ - "body":{ - "id":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectionContainerMappings/cloud1protectionprofile1", - "name":"cloud1protectionprofile1", - "type":"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings", - "properties":{ - "targetProtectionContainerId":"Microsoft Azure", - "targetProtectionContainerFriendlyName":"Microsoft Azure", - "health":"Normal", - "healthErrorDetails":[ - - ], - "policyId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/protectionprofile1", - "state":"Paired", - "sourceProtectionContainerFriendlyName":"cloud1", - "sourceFabricFriendlyName":"cloud1", - "targetFabricFriendlyName":"Microsoft Azure", - "policyFriendlyName":"protectionprofile1", - "providerSpecificDetails":{ - "instanceType":"A2A", - "agentAutoUpdateStatus":"Enabled", - "automationAccountArmId":"/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/automationrg1/providers/Microsoft.Automation/automationAccounts/automationaccount1", - "scheduleName":"cloud1protectionprofile1_a85ea38f-62a8-471b-93cc-69b74fd9578c", - "jobScheduleName":"ffd503ec-5f88-4b58-97c8-841466e7aa47" - } - } - } - }, - "202":{ - + } + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectionContainerMappings/cloud1protectionprofile1", + "name": "cloud1protectionprofile1", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings", + "properties": { + "targetProtectionContainerId": "Microsoft Azure", + "targetProtectionContainerFriendlyName": "Microsoft Azure", + "health": "Normal", + "healthErrorDetails": [], + "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/protectionprofile1", + "state": "Paired", + "sourceProtectionContainerFriendlyName": "cloud1", + "sourceFabricFriendlyName": "cloud1", + "targetFabricFriendlyName": "Microsoft Azure", + "policyFriendlyName": "protectionprofile1", + "providerSpecificDetails": { + "instanceType": "A2A", + "agentAutoUpdateStatus": "Enabled", + "automationAccountArmId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/automationrg1/providers/Microsoft.Automation/automationAccounts/automationaccount1", + "scheduleName": "cloud1protectionprofile1_a85ea38f-62a8-471b-93cc-69b74fd9578c", + "jobScheduleName": "ffd503ec-5f88-4b58-97c8-841466e7aa47" + } + } } - } -} \ No newline at end of file + }, + "202": {} + } +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_Create.json index 16edf4a5150a..9eec90887c5c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_Create.json @@ -32,7 +32,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_Delete.json index d770870e8e2e..bf5f46c43546 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_Delete.json @@ -8,9 +8,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json index 366ee0d91f9c..f7a582e0da4c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json @@ -30,7 +30,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_SwitchProtection.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_SwitchProtection.json index 410964935533..c0f512143d0c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_SwitchProtection.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationProtectionContainers_SwitchProtection.json @@ -31,7 +31,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Create.json index e76737b870ef..41f460eb3e23 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Create.json @@ -75,7 +75,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Delete.json index 1ab55bc98cd7..61496e3a1904 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Delete.json @@ -7,9 +7,7 @@ "recoveryPlanName": "RPtest1" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_FailoverCommit.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_FailoverCommit.json index f4dbbb281c14..99c0d80fac5e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_FailoverCommit.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_FailoverCommit.json @@ -75,7 +75,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_PlannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_PlannedFailover.json index e6033946270f..cf9439993141 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_PlannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_PlannedFailover.json @@ -86,7 +86,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Reprotect.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Reprotect.json index 3bdffbb10379..ac651295adfe 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Reprotect.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Reprotect.json @@ -75,7 +75,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_TestFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_TestFailover.json index 2f9202a0bf83..056ae9ec7916 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_TestFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_TestFailover.json @@ -83,7 +83,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json index 55655b019f2d..abb07c75274c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json @@ -80,7 +80,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json index be38a77acd84..4a89ed98b2ba 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json @@ -87,7 +87,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Update.json index f459cc6cea87..353aa6bfb8b5 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryPlans_Update.json @@ -106,7 +106,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Create.json index 9500aafc02e5..b35668061ffb 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Create.json @@ -48,7 +48,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Delete.json index 4954000a8b36..9dc0f21097d4 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Delete.json @@ -8,9 +8,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Purge.json index 4954000a8b36..9dc0f21097d4 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_Purge.json @@ -8,9 +8,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json index ce1f0629f280..b5ba32f42af2 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json @@ -29,7 +29,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationStorageClassificationMappings_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationStorageClassificationMappings_Create.json index 38bae67d650c..a044be7dffa4 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationStorageClassificationMappings_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationStorageClassificationMappings_Create.json @@ -24,7 +24,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationStorageClassificationMappings_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationStorageClassificationMappings_Delete.json index ab824363846e..ac3df716046c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationStorageClassificationMappings_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationStorageClassificationMappings_Delete.json @@ -9,9 +9,7 @@ "subscriptionId": "9112a37f-0f3e-46ec-9c00-060c6edca071" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationVaultHealth_Get.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationVaultHealth_Get.json index 0724af543630..3afc0817059a 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationVaultHealth_Get.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationVaultHealth_Get.json @@ -12,25 +12,27 @@ "type": "Microsoft.RecoveryServices/vaults/replicationVaultHealth", "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultHealth/Default", "properties": { - "vaultErrors": [], + "vaultErrors": [], "protectedItemsHealth": { "resourceCount": 6, - "issues": [{ - "summaryCode": "10008", - "category": "Replication", - "severity": "Error", - "summaryMessage": "RPO Throttled", - "affectedResourceType": "replicationProtectedItems", - "affectedResourceSubtype": "", - "affectedResourceCorrelationIds": [ - "c183865e-6077-46f2-a3b1-deb0f4f4650a", - "c183865e-6077-46f2-a3b1-ceb0a4c3751e" - ] - }] + "issues": [ + { + "summaryCode": "10008", + "category": "Replication", + "severity": "Error", + "summaryMessage": "RPO Throttled", + "affectedResourceType": "replicationProtectedItems", + "affectedResourceSubtype": "", + "affectedResourceCorrelationIds": [ + "c183865e-6077-46f2-a3b1-deb0f4f4650a", + "c183865e-6077-46f2-a3b1-ceb0a4c3751e" + ] + } + ] }, - "fabricsHealth": { + "fabricsHealth": { "resourceCount": 1, - "issues": [] + "issues": [] } } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationVaultHealth_Refresh.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationVaultHealth_Refresh.json index cc81a60ee9e2..6fe5e1663634 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationVaultHealth_Refresh.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationVaultHealth_Refresh.json @@ -12,19 +12,18 @@ "type": "Microsoft.RecoveryServices/vaults/replicationVaultHealth", "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultHealth/Default", "properties": { - "vaultErrors": [ ], + "vaultErrors": [], "protectedItemsHealth": { "resourceCount": 2, - "issues": [ ] + "issues": [] }, "fabricsHealth": { "resourceCount": 1, - "issues": [ ] + "issues": [] } } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Create.json index 623c8d36fe9d..065d680cc7a6 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Create.json @@ -34,7 +34,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Delete.json index b55cfd915a0d..f224a8f3aeb0 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Delete.json @@ -8,9 +8,7 @@ "subscriptionId": "7c943c1b-5122-4097-90c8-861411bdd574" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Update.json index 9a4567ef28d0..6c9428f8635f 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/ReplicationvCenters_Update.json @@ -30,7 +30,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/TargetComputeSizes_ListByReplicationProtectedItems.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/TargetComputeSizes_ListByReplicationProtectedItems.json index 58a98bb1008b..cbd780f7a2a8 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/TargetComputeSizes_ListByReplicationProtectedItems.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/examples/TargetComputeSizes_ListByReplicationProtectedItems.json @@ -11,39 +11,39 @@ "responses": { "200": { "body": { - "value": [ - { - "id": "/Subscriptions/6808dbbc-98c7-431f-a1b1-9580902423b7/resourceGroups/avraiMgDiskVaultRG/providers/Microsoft.RecoveryServices/vaults/avraiMgDiskVault/replicationFabrics/asr-a2a-default-centraluseuap/replicationProtectionContainers/asr-a2a-default-centraluseuap-container/replicationProtectedItems/468c912d-b1ab-4ea2-97eb-4b5095155db2/targetComputeSizes/Basic_A0", - "name": "Basic_A0", - "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/targetComputeSizes", - "properties": { - "name": "Basic_A0", - "friendlyName": "Basic_A0", - "cpuCoresCount": 1, - "memoryInGB": 0.75, - "maxDataDiskCount": 1, - "maxNicsCount": 2, - "errors": null, - "highIopsSupported": "NotSupported" - } - }, - { - "id": "/Subscriptions/6808dbbc-98c7-431f-a1b1-9580902423b7/resourceGroups/avraiMgDiskVaultRG/providers/Microsoft.RecoveryServices/vaults/avraiMgDiskVault/replicationFabrics/asr-a2a-default-centraluseuap/replicationProtectionContainers/asr-a2a-default-centraluseuap-container/replicationProtectedItems/468c912d-b1ab-4ea2-97eb-4b5095155db2/targetComputeSizes/Standard_A0", - "name": "Standard_A0", - "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/targetComputeSizes", - "properties": { - "name": "Standard_A0", - "friendlyName": "Standard_A0", - "cpuCoresCount": 1, - "memoryInGB": 0.75, - "maxDataDiskCount": 1, - "maxNicsCount": 2, - "errors": null, - "highIopsSupported": "NotSupported" - } - } - ], - "nextLink": null + "value": [ + { + "id": "/Subscriptions/6808dbbc-98c7-431f-a1b1-9580902423b7/resourceGroups/avraiMgDiskVaultRG/providers/Microsoft.RecoveryServices/vaults/avraiMgDiskVault/replicationFabrics/asr-a2a-default-centraluseuap/replicationProtectionContainers/asr-a2a-default-centraluseuap-container/replicationProtectedItems/468c912d-b1ab-4ea2-97eb-4b5095155db2/targetComputeSizes/Basic_A0", + "name": "Basic_A0", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/targetComputeSizes", + "properties": { + "name": "Basic_A0", + "friendlyName": "Basic_A0", + "cpuCoresCount": 1, + "memoryInGB": 0.75, + "maxDataDiskCount": 1, + "maxNicsCount": 2, + "errors": null, + "highIopsSupported": "NotSupported" + } + }, + { + "id": "/Subscriptions/6808dbbc-98c7-431f-a1b1-9580902423b7/resourceGroups/avraiMgDiskVaultRG/providers/Microsoft.RecoveryServices/vaults/avraiMgDiskVault/replicationFabrics/asr-a2a-default-centraluseuap/replicationProtectionContainers/asr-a2a-default-centraluseuap-container/replicationProtectedItems/468c912d-b1ab-4ea2-97eb-4b5095155db2/targetComputeSizes/Standard_A0", + "name": "Standard_A0", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/targetComputeSizes", + "properties": { + "name": "Standard_A0", + "friendlyName": "Standard_A0", + "cpuCoresCount": 1, + "memoryInGB": 0.75, + "maxDataDiskCount": 1, + "maxNicsCount": 2, + "errors": null, + "highIopsSupported": "NotSupported" + } + } + ], + "nextLink": null } } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/service.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/service.json index 464ff28f2ac8..a3aa88b0b87a 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/service.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-01-10/service.json @@ -16868,4 +16868,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationEvents_Get.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationEvents_Get.json index 4f7b49d55c97..fd13c0cf1fa7 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationEvents_Get.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationEvents_Get.json @@ -10,8 +10,8 @@ "200": { "body": { "type": "Microsoft.RecoveryServices/vaults/replicationEvents", - "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationEvents/VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", - "name": "VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationEvents/VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", + "name": "VmMonitoringEvent;9091989947769704276_516de684-0079-48f7-b44b-882923268654", "properties": { "eventCode": "d9a07b07-c7b5-49ca-ab6c-6926596dfe47", "description": "Virtual machine health is OK", diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_CheckConsistency.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_CheckConsistency.json index 7728759a80b1..64ca70e71dd0 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_CheckConsistency.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_CheckConsistency.json @@ -30,7 +30,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Create.json index b453520e9a29..1b000d82d16e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Create.json @@ -37,7 +37,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Delete.json index 026920e0ece9..e676596b00ea 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Delete.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_List.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_List.json index 5bf1902b7cee..e9720e5a8b97 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_List.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_List.json @@ -35,4 +35,3 @@ } } } - diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_MigrateToAad.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_MigrateToAad.json index 026920e0ece9..e676596b00ea 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_MigrateToAad.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_MigrateToAad.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Purge.json index 026920e0ece9..e676596b00ea 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_Purge.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_ReassociateGateway.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_ReassociateGateway.json index 0ac3dbea642a..a1723f8dc754 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_ReassociateGateway.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_ReassociateGateway.json @@ -42,7 +42,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_RenewCertificate.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_RenewCertificate.json index 89c9da9c0746..028b399895d7 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_RenewCertificate.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationFabrics_RenewCertificate.json @@ -35,7 +35,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Cancel.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Cancel.json index 1e099ec8b49c..f7ed29d8df48 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Cancel.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Cancel.json @@ -47,7 +47,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Export.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Export.json index 31cbd4e32853..44032994ea51 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Export.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Export.json @@ -38,7 +38,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Restart.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Restart.json index 41f37765e1ba..83de09b6de3f 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Restart.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Restart.json @@ -48,7 +48,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Resume.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Resume.json index 7f14ca411566..c35b2cdd4623 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Resume.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationJobs_Resume.json @@ -71,7 +71,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Create.json index b673466c828b..d1b5609c2242 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Create.json @@ -48,7 +48,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Delete.json index ff93cbe60018..eb36a8e6fb7d 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Delete.json @@ -9,9 +9,7 @@ "subscriptionId": "cb53d0c3-bd59-4721-89bc-06916a9147ef" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Migrate.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Migrate.json index 293173c37eed..b36b287644a0 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Migrate.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Migrate.json @@ -47,7 +47,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_TestMigrate.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_TestMigrate.json index 9a4f14c1f133..c51000eb5348 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_TestMigrate.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_TestMigrate.json @@ -47,7 +47,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_TestMigrateCleanup.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_TestMigrateCleanup.json index 26806c66d541..3b389c57601d 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_TestMigrateCleanup.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_TestMigrateCleanup.json @@ -45,7 +45,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Update.json index 00c34121dba5..95f02b5be20c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationMigrationItems_Update.json @@ -47,7 +47,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Create.json index b8cd3345f3f1..e9b95bba3754 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Create.json @@ -38,7 +38,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Delete.json index 14eb06ec03a1..b7b4489373ca 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Delete.json @@ -9,9 +9,7 @@ "networkMappingName": "corpe2amap" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Update.json index 8ba2fa67741b..0c04650454f2 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationNetworkMappings_Update.json @@ -38,7 +38,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Create.json index e25e14f8d103..8669171ec13d 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Create.json @@ -27,7 +27,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Delete.json index 3d5fd793f1e0..874295e9a916 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Delete.json @@ -7,9 +7,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Update.json index d2897cb85a20..e14e301bc508 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationPolicies_Update.json @@ -27,7 +27,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_AddDisks.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_AddDisks.json index 2cd6c54b2f37..69a5201b6fec 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_AddDisks.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_AddDisks.json @@ -1,76 +1,73 @@ { - "parameters":{ - "api-version":"2018-07-10", - "replicatedProtectedItemName":"f8491e4f-817a-40dd-a90c-af773978c75b", - "protectionContainerName":"cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", - "fabricName":"cloud1", - "resourceName":"vault1", - "resourceGroupName":"resourceGroupPS1", - "subscriptionId":"c183865e-6077-46f2-a3b1-deb0f4f4650a", - "addDisksInput":{ - "properties":{ - "providerSpecificDetails": { - "instanceType":"A2A", - "vmDisks": [ - { - "diskUri" : "https://vmstorage.blob.core.windows.net/vhds/datadisk1.vhd", - "recoveryAureStorageAccountId" : "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourcegroups/recoveryResource/providers/Microsoft.Storage/storageAccounts/recoverystorage", - "primaryStagingAzureStorageAccountId" : "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourcegroups/primaryResource/providers/Microsoft.Storage/storageAccounts/vmcachestorage" - } - ] - } - } - } - }, - "responses":{ - "200":{ - "body":{ - "id":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", - "name":"f8491e4f-817a-40dd-a90c-af773978c75b", - "type":"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", - "properties":{ - "friendlyName":"f8491e4f-817a-40dd-a90c-af773978c75b", - "protectedItemType":"", - "protectableItemId":null, - "recoveryServicesProviderId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/6d2940f9-4c34-5989-9f56-1243a6e76ecf", - "primaryFabricFriendlyName":"cloud1", - "primaryFabricProvider":"AzureFabric", - "recoveryFabricFriendlyName":"cloud2", - "recoveryFabricId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2", - "primaryProtectionContainerFriendlyName":"cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", - "recoveryProtectionContainerFriendlyName":"cloud_81224fc6-f326-5d35-96de-fbf51efb3188", - "protectionState":"Protected", - "protectionStateDescription":"Protected", - "activeLocation":"Primary", - "testFailoverState":"None", - "testFailoverStateDescription":"None", - "allowedOperations":[ - "RepairReplication", - "UnplannedFailover", - "DisableProtection", - "TestFailover" - ], - "replicationHealth":"Normal", - "failoverHealth":"Normal", - "healthErrors":[ - - ], - "policyId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/A2APolicy", - "policyFriendlyName":"A2APolicy", - "currentScenario":{ - "scenarioName":"None", - "jobId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", - "startTime":"1752-12-31T19:31:01Z" - }, - "failoverRecoveryPointId":null, - "providerSpecificDetails":{ - "instanceType":"A2A" - }, - "recoveryContainerId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2/replicationProtectionContainers/cloud_81224fc6-f326-5d35-96de-fbf51efb3188" + "parameters": { + "api-version": "2018-07-10", + "replicatedProtectedItemName": "f8491e4f-817a-40dd-a90c-af773978c75b", + "protectionContainerName": "cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", + "fabricName": "cloud1", + "resourceName": "vault1", + "resourceGroupName": "resourceGroupPS1", + "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a", + "addDisksInput": { + "properties": { + "providerSpecificDetails": { + "instanceType": "A2A", + "vmDisks": [ + { + "diskUri": "https://vmstorage.blob.core.windows.net/vhds/datadisk1.vhd", + "recoveryAureStorageAccountId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourcegroups/recoveryResource/providers/Microsoft.Storage/storageAccounts/recoverystorage", + "primaryStagingAzureStorageAccountId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourcegroups/primaryResource/providers/Microsoft.Storage/storageAccounts/vmcachestorage" } - } - }, - "202":{ + ] + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", + "name": "f8491e4f-817a-40dd-a90c-af773978c75b", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", + "properties": { + "friendlyName": "f8491e4f-817a-40dd-a90c-af773978c75b", + "protectedItemType": "", + "protectableItemId": null, + "recoveryServicesProviderId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/6d2940f9-4c34-5989-9f56-1243a6e76ecf", + "primaryFabricFriendlyName": "cloud1", + "primaryFabricProvider": "AzureFabric", + "recoveryFabricFriendlyName": "cloud2", + "recoveryFabricId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2", + "primaryProtectionContainerFriendlyName": "cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", + "recoveryProtectionContainerFriendlyName": "cloud_81224fc6-f326-5d35-96de-fbf51efb3188", + "protectionState": "Protected", + "protectionStateDescription": "Protected", + "activeLocation": "Primary", + "testFailoverState": "None", + "testFailoverStateDescription": "None", + "allowedOperations": [ + "RepairReplication", + "UnplannedFailover", + "DisableProtection", + "TestFailover" + ], + "replicationHealth": "Normal", + "failoverHealth": "Normal", + "healthErrors": [], + "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/A2APolicy", + "policyFriendlyName": "A2APolicy", + "currentScenario": { + "scenarioName": "None", + "jobId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", + "startTime": "1752-12-31T19:31:01Z" + }, + "failoverRecoveryPointId": null, + "providerSpecificDetails": { + "instanceType": "A2A" + }, + "recoveryContainerId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2/replicationProtectionContainers/cloud_81224fc6-f326-5d35-96de-fbf51efb3188" + } } - } -} \ No newline at end of file + }, + "202": {} + } +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json index b564bb98c941..805e134a731e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_ApplyRecoveryPoint.json @@ -61,7 +61,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Create.json index ada42f71fe2f..aa3bd1194cbd 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Create.json @@ -59,7 +59,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Delete.json index 08fc06c0f551..816800a4d6c8 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Delete.json @@ -16,9 +16,7 @@ } }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_FailoverCommit.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_FailoverCommit.json index 2c6cb95edf2c..2e756e392df2 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_FailoverCommit.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_FailoverCommit.json @@ -8,51 +8,50 @@ "resourceGroupName": "resourceGroupPS1", "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, - "responses": { - "200": { - "body": { - "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", - "name": "f8491e4f-817a-40dd-a90c-af773978c75b", - "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", - "properties": { - "friendlyName": "vm1", - "protectedItemType": "HyperVVirtualMachine", - "protectableItemId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectableItems/f8491e4f-817a-40dd-a90c-af773978c75b", - "recoveryServicesProviderId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/241641e6-ee7b-4ee4-8141-821fadda43fa", - "primaryFabricFriendlyName": "cloud1", - "recoveryFabricFriendlyName": "Microsoft Azure", - "recoveryFabricId": "Microsoft Azure", - "primaryProtectionContainerFriendlyName": "cloud1", - "recoveryProtectionContainerFriendlyName": "Microsoft Azure", - "protectionState": "PlannedFailoverStatesBegin", - "protectionStateDescription": "Planned failover committed", - "activeLocation": "Recovery", - "testFailoverState": "MarkedForDeletion", - "testFailoverStateDescription": "Cleaning up test environment", - "allowedOperations": [ - "CompleteMigration", - "DisableProtection", - "Failback" - ], - "replicationHealth": "Normal", - "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/protectionprofile1", - "policyFriendlyName": "protectionprofile1", - "lastSuccessfulFailoverTime": "2017-04-26T06:37:23.1578655Z", - "lastSuccessfulTestFailoverTime": "2017-04-25T09:57:57.0357829Z", - "currentScenario": { - "scenarioName": "None", - "jobId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", - "startTime": "1753-01-01T01:01:01Z" - }, - "failoverRecoveryPointId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b/recoveryPoints/b22134ea-620c-474b-9fa5-3c1cb47708e3", - "providerSpecificDetails": { - "instanceType": "HyperVReplicaAzure" - }, - "recoveryContainerId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478" - } + "responses": { + "200": { + "body": { + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", + "name": "f8491e4f-817a-40dd-a90c-af773978c75b", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", + "properties": { + "friendlyName": "vm1", + "protectedItemType": "HyperVVirtualMachine", + "protectableItemId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectableItems/f8491e4f-817a-40dd-a90c-af773978c75b", + "recoveryServicesProviderId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/241641e6-ee7b-4ee4-8141-821fadda43fa", + "primaryFabricFriendlyName": "cloud1", + "recoveryFabricFriendlyName": "Microsoft Azure", + "recoveryFabricId": "Microsoft Azure", + "primaryProtectionContainerFriendlyName": "cloud1", + "recoveryProtectionContainerFriendlyName": "Microsoft Azure", + "protectionState": "PlannedFailoverStatesBegin", + "protectionStateDescription": "Planned failover committed", + "activeLocation": "Recovery", + "testFailoverState": "MarkedForDeletion", + "testFailoverStateDescription": "Cleaning up test environment", + "allowedOperations": [ + "CompleteMigration", + "DisableProtection", + "Failback" + ], + "replicationHealth": "Normal", + "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/protectionprofile1", + "policyFriendlyName": "protectionprofile1", + "lastSuccessfulFailoverTime": "2017-04-26T06:37:23.1578655Z", + "lastSuccessfulTestFailoverTime": "2017-04-25T09:57:57.0357829Z", + "currentScenario": { + "scenarioName": "None", + "jobId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", + "startTime": "1753-01-01T01:01:01Z" + }, + "failoverRecoveryPointId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b/recoveryPoints/b22134ea-620c-474b-9fa5-3c1cb47708e3", + "providerSpecificDetails": { + "instanceType": "HyperVReplicaAzure" + }, + "recoveryContainerId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478" } - }, - "202": { } - } + }, + "202": {} } +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_PlannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_PlannedFailover.json index db733a0a567e..603f1a736efe 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_PlannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_PlannedFailover.json @@ -61,7 +61,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Purge.json index 4c3a77b28d9d..2db6935b661d 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Purge.json @@ -9,9 +9,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_RemoveDisks.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_RemoveDisks.json index 7042b7b1fc82..0eec02a4c48a 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_RemoveDisks.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_RemoveDisks.json @@ -1,72 +1,69 @@ { - "parameters":{ - "api-version":"2018-07-10", - "replicatedProtectedItemName":"f8491e4f-817a-40dd-a90c-af773978c75b", - "protectionContainerName":"cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", - "fabricName":"cloud1", - "resourceName":"vault1", - "resourceGroupName":"resourceGroupPS1", - "subscriptionId":"c183865e-6077-46f2-a3b1-deb0f4f4650a", - "removeDisksInput":{ - "properties":{ - "providerSpecificDetails":{ - "instanceType": "A2A", - "vmDisksUris": [ - "https://vmstorage.blob.core.windows.net/vhds/datadisk1.vhd" - ] - } - } + "parameters": { + "api-version": "2018-07-10", + "replicatedProtectedItemName": "f8491e4f-817a-40dd-a90c-af773978c75b", + "protectionContainerName": "cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", + "fabricName": "cloud1", + "resourceName": "vault1", + "resourceGroupName": "resourceGroupPS1", + "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a", + "removeDisksInput": { + "properties": { + "providerSpecificDetails": { + "instanceType": "A2A", + "vmDisksUris": [ + "https://vmstorage.blob.core.windows.net/vhds/datadisk1.vhd" + ] + } } - }, - "responses":{ - "200":{ - "body":{ - "id":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", - "name":"f8491e4f-817a-40dd-a90c-af773978c75b", - "type":"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", - "properties":{ - "friendlyName":"f8491e4f-817a-40dd-a90c-af773978c75b", - "protectedItemType":"", - "protectableItemId":null, - "recoveryServicesProviderId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/6d2940f9-4c34-5989-9f56-1243a6e76ecf", - "primaryFabricFriendlyName":"cloud1", - "primaryFabricProvider":"AzureFabric", - "recoveryFabricFriendlyName":"cloud2", - "recoveryFabricId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2", - "primaryProtectionContainerFriendlyName":"cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", - "recoveryProtectionContainerFriendlyName":"cloud_81224fc6-f326-5d35-96de-fbf51efb3188", - "protectionState":"Protected", - "protectionStateDescription":"Protected", - "activeLocation":"Primary", - "testFailoverState":"None", - "testFailoverStateDescription":"None", - "allowedOperations":[ - "RepairReplication", - "UnplannedFailover", - "DisableProtection", - "TestFailover" - ], - "replicationHealth":"Normal", - "failoverHealth":"Normal", - "healthErrors":[ - - ], - "policyId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/A2APolicy", - "policyFriendlyName":"A2APolicy", - "currentScenario":{ - "scenarioName":"None", - "jobId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", - "startTime":"1752-12-31T19:31:01Z" - }, - "failoverRecoveryPointId":null, - "providerSpecificDetails":{ - "instanceType":"A2A" - }, - "recoveryContainerId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2/replicationProtectionContainers/cloud_81224fc6-f326-5d35-96de-fbf51efb3188" - } - } - }, - "202":{ + } + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", + "name": "f8491e4f-817a-40dd-a90c-af773978c75b", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", + "properties": { + "friendlyName": "f8491e4f-817a-40dd-a90c-af773978c75b", + "protectedItemType": "", + "protectableItemId": null, + "recoveryServicesProviderId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/6d2940f9-4c34-5989-9f56-1243a6e76ecf", + "primaryFabricFriendlyName": "cloud1", + "primaryFabricProvider": "AzureFabric", + "recoveryFabricFriendlyName": "cloud2", + "recoveryFabricId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2", + "primaryProtectionContainerFriendlyName": "cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", + "recoveryProtectionContainerFriendlyName": "cloud_81224fc6-f326-5d35-96de-fbf51efb3188", + "protectionState": "Protected", + "protectionStateDescription": "Protected", + "activeLocation": "Primary", + "testFailoverState": "None", + "testFailoverStateDescription": "None", + "allowedOperations": [ + "RepairReplication", + "UnplannedFailover", + "DisableProtection", + "TestFailover" + ], + "replicationHealth": "Normal", + "failoverHealth": "Normal", + "healthErrors": [], + "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/A2APolicy", + "policyFriendlyName": "A2APolicy", + "currentScenario": { + "scenarioName": "None", + "jobId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", + "startTime": "1752-12-31T19:31:01Z" + }, + "failoverRecoveryPointId": null, + "providerSpecificDetails": { + "instanceType": "A2A" + }, + "recoveryContainerId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2/replicationProtectionContainers/cloud_81224fc6-f326-5d35-96de-fbf51efb3188" + } } - } -} \ No newline at end of file + }, + "202": {} + } +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_RepairReplication.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_RepairReplication.json index 3bd01792047b..f50854d7dccb 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_RepairReplication.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_RepairReplication.json @@ -50,7 +50,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Reprotect.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Reprotect.json index a8f1bcf24ee5..ca2d3d03eaa7 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Reprotect.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Reprotect.json @@ -61,7 +61,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_ResolveHealthErrors.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_ResolveHealthErrors.json index a1be4ed56187..919d0eeb4ca0 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_ResolveHealthErrors.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_ResolveHealthErrors.json @@ -1,71 +1,68 @@ { - "parameters":{ - "api-version":"2018-07-10", - "replicatedProtectedItemName":"f8491e4f-817a-40dd-a90c-af773978c75b", - "protectionContainerName":"cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", - "fabricName":"cloud1", - "resourceName":"vault1", - "resourceGroupName":"resourceGroupPS1", - "subscriptionId":"c183865e-6077-46f2-a3b1-deb0f4f4650a", - "resolveHealthInput":{ - "properties":{ - "healthErrors":[ - { - "healthErrorId":"3:8020" - } - ] - } + "parameters": { + "api-version": "2018-07-10", + "replicatedProtectedItemName": "f8491e4f-817a-40dd-a90c-af773978c75b", + "protectionContainerName": "cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", + "fabricName": "cloud1", + "resourceName": "vault1", + "resourceGroupName": "resourceGroupPS1", + "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a", + "resolveHealthInput": { + "properties": { + "healthErrors": [ + { + "healthErrorId": "3:8020" + } + ] } - }, - "responses":{ - "200":{ - "body":{ - "id":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", - "name":"f8491e4f-817a-40dd-a90c-af773978c75b", - "type":"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", - "properties":{ - "friendlyName":"f8491e4f-817a-40dd-a90c-af773978c75b", - "protectedItemType":"", - "protectableItemId":null, - "recoveryServicesProviderId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/6d2940f9-4c34-5989-9f56-1243a6e76ecf", - "primaryFabricFriendlyName":"cloud1", - "primaryFabricProvider":"AzureFabric", - "recoveryFabricFriendlyName":"cloud2", - "recoveryFabricId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2", - "primaryProtectionContainerFriendlyName":"cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", - "recoveryProtectionContainerFriendlyName":"cloud_81224fc6-f326-5d35-96de-fbf51efb3188", - "protectionState":"Protected", - "protectionStateDescription":"Protected", - "activeLocation":"Primary", - "testFailoverState":"None", - "testFailoverStateDescription":"None", - "allowedOperations":[ - "RepairReplication", - "UnplannedFailover", - "DisableProtection", - "TestFailover" - ], - "replicationHealth":"Normal", - "failoverHealth":"Normal", - "healthErrors":[ - - ], - "policyId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/A2APolicy", - "policyFriendlyName":"A2APolicy", - "currentScenario":{ - "scenarioName":"None", - "jobId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", - "startTime":"1752-12-31T19:31:01Z" - }, - "failoverRecoveryPointId":null, - "providerSpecificDetails":{ - "instanceType":"A2A" - }, - "recoveryContainerId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2/replicationProtectionContainers/cloud_81224fc6-f326-5d35-96de-fbf51efb3188" - } - } - }, - "202":{ + } + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectedItems/f8491e4f-817a-40dd-a90c-af773978c75b", + "name": "f8491e4f-817a-40dd-a90c-af773978c75b", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems", + "properties": { + "friendlyName": "f8491e4f-817a-40dd-a90c-af773978c75b", + "protectedItemType": "", + "protectableItemId": null, + "recoveryServicesProviderId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationRecoveryServicesProviders/6d2940f9-4c34-5989-9f56-1243a6e76ecf", + "primaryFabricFriendlyName": "cloud1", + "primaryFabricProvider": "AzureFabric", + "recoveryFabricFriendlyName": "cloud2", + "recoveryFabricId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2", + "primaryProtectionContainerFriendlyName": "cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", + "recoveryProtectionContainerFriendlyName": "cloud_81224fc6-f326-5d35-96de-fbf51efb3188", + "protectionState": "Protected", + "protectionStateDescription": "Protected", + "activeLocation": "Primary", + "testFailoverState": "None", + "testFailoverStateDescription": "None", + "allowedOperations": [ + "RepairReplication", + "UnplannedFailover", + "DisableProtection", + "TestFailover" + ], + "replicationHealth": "Normal", + "failoverHealth": "Normal", + "healthErrors": [], + "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/A2APolicy", + "policyFriendlyName": "A2APolicy", + "currentScenario": { + "scenarioName": "None", + "jobId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationJobs/None", + "startTime": "1752-12-31T19:31:01Z" + }, + "failoverRecoveryPointId": null, + "providerSpecificDetails": { + "instanceType": "A2A" + }, + "recoveryContainerId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud2/replicationProtectionContainers/cloud_81224fc6-f326-5d35-96de-fbf51efb3188" + } } - } -} \ No newline at end of file + }, + "202": {} + } +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_TestFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_TestFailover.json index 9e15d9e3b0e2..5b4623c5dd28 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_TestFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_TestFailover.json @@ -59,7 +59,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json index 4c8b11143131..a047df751b97 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_TestFailoverCleanup.json @@ -58,7 +58,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_UnplannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_UnplannedFailover.json index 11204d5f4eb4..d68d773e5f72 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_UnplannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_UnplannedFailover.json @@ -62,7 +62,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Update.json index 10ba7ff6890e..004c696515e6 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_Update.json @@ -68,7 +68,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_UpdateMobilityService.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_UpdateMobilityService.json index 9c73d9640cb3..e619178dff64 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_UpdateMobilityService.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectedItems_UpdateMobilityService.json @@ -54,7 +54,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Create.json index 9f6aafc7e058..e9388a3f9b8e 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Create.json @@ -35,7 +35,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Delete.json index 2d3a5f17b7de..56e8ef0ac082 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Delete.json @@ -14,9 +14,7 @@ } }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Purge.json index ebaa5fffaf0f..8cd18142a24d 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Purge.json @@ -9,9 +9,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Update.json index d7f3887574ef..40d4e41d1267 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainerMappings_Update.json @@ -1,53 +1,49 @@ { - "parameters":{ - "mappingName":"cloud1protectionprofile1", - "protectionContainerName":"cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", - "fabricName":"cloud1", - "api-version":"2018-07-10", - "resourceName":"vault1", - "resourceGroupName":"resourceGroupPS1", - "subscriptionId":"c183865e-6077-46f2-a3b1-deb0f4f4650a", - "updateInput":{ - "properties":{ - "providerSpecificInput":{ - "instanceType":"A2A", - "agentAutoUpdateStatus":"Enabled", - "automationAccountArmId":"/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/automationrg1/providers/Microsoft.Automation/automationAccounts/automationaccount1" - } - } + "parameters": { + "mappingName": "cloud1protectionprofile1", + "protectionContainerName": "cloud_6d224fc6-f326-5d35-96de-fbf51efb3179", + "fabricName": "cloud1", + "api-version": "2018-07-10", + "resourceName": "vault1", + "resourceGroupName": "resourceGroupPS1", + "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a", + "updateInput": { + "properties": { + "providerSpecificInput": { + "instanceType": "A2A", + "agentAutoUpdateStatus": "Enabled", + "automationAccountArmId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/automationrg1/providers/Microsoft.Automation/automationAccounts/automationaccount1" + } } - }, - "responses":{ - "200":{ - "body":{ - "id":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectionContainerMappings/cloud1protectionprofile1", - "name":"cloud1protectionprofile1", - "type":"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings", - "properties":{ - "targetProtectionContainerId":"Microsoft Azure", - "targetProtectionContainerFriendlyName":"Microsoft Azure", - "health":"Normal", - "healthErrorDetails":[ - - ], - "policyId":"/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/protectionprofile1", - "state":"Paired", - "sourceProtectionContainerFriendlyName":"cloud1", - "sourceFabricFriendlyName":"cloud1", - "targetFabricFriendlyName":"Microsoft Azure", - "policyFriendlyName":"protectionprofile1", - "providerSpecificDetails":{ - "instanceType":"A2A", - "agentAutoUpdateStatus":"Enabled", - "automationAccountArmId":"/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/automationrg1/providers/Microsoft.Automation/automationAccounts/automationaccount1", - "scheduleName":"cloud1protectionprofile1_a85ea38f-62a8-471b-93cc-69b74fd9578c", - "jobScheduleName":"ffd503ec-5f88-4b58-97c8-841466e7aa47" - } - } - } - }, - "202":{ - + } + }, + "responses": { + "200": { + "body": { + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1/replicationProtectionContainers/cloud_6d224fc6-f326-5d35-96de-fbf51efb3179/replicationProtectionContainerMappings/cloud1protectionprofile1", + "name": "cloud1protectionprofile1", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings", + "properties": { + "targetProtectionContainerId": "Microsoft Azure", + "targetProtectionContainerFriendlyName": "Microsoft Azure", + "health": "Normal", + "healthErrorDetails": [], + "policyId": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationPolicies/protectionprofile1", + "state": "Paired", + "sourceProtectionContainerFriendlyName": "cloud1", + "sourceFabricFriendlyName": "cloud1", + "targetFabricFriendlyName": "Microsoft Azure", + "policyFriendlyName": "protectionprofile1", + "providerSpecificDetails": { + "instanceType": "A2A", + "agentAutoUpdateStatus": "Enabled", + "automationAccountArmId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/automationrg1/providers/Microsoft.Automation/automationAccounts/automationaccount1", + "scheduleName": "cloud1protectionprofile1_a85ea38f-62a8-471b-93cc-69b74fd9578c", + "jobScheduleName": "ffd503ec-5f88-4b58-97c8-841466e7aa47" + } + } } - } -} \ No newline at end of file + }, + "202": {} + } +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_Create.json index 841fec8f7132..279ed6ceb1f6 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_Create.json @@ -32,7 +32,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_Delete.json index fb64ed3a4e10..e5a087b71218 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_Delete.json @@ -8,9 +8,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json index 973e0d9390a7..1d30c532f726 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_DiscoverProtectableItem.json @@ -30,7 +30,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_SwitchProtection.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_SwitchProtection.json index f40f3efcf2d8..3aeff17f61d6 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_SwitchProtection.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationProtectionContainers_SwitchProtection.json @@ -31,7 +31,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Create.json index f3e74efc9d94..fc281aca916c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Create.json @@ -75,7 +75,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Delete.json index 9fff805f29c9..bc4e8273caad 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Delete.json @@ -7,9 +7,7 @@ "recoveryPlanName": "RPtest1" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_FailoverCommit.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_FailoverCommit.json index 3cffe220cbf0..be58aeff2e17 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_FailoverCommit.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_FailoverCommit.json @@ -75,7 +75,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_PlannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_PlannedFailover.json index 8614a61d52a3..b053674439f6 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_PlannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_PlannedFailover.json @@ -86,7 +86,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Reprotect.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Reprotect.json index 8fe60dcc3c5b..6c7672217ec3 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Reprotect.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Reprotect.json @@ -75,7 +75,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_TestFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_TestFailover.json index aab7efcd2b3f..20fa7700f0e1 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_TestFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_TestFailover.json @@ -83,7 +83,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json index e5d2f45276f2..b09525f1fb31 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_TestFailoverCleanup.json @@ -80,7 +80,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json index 83956d50ca0c..8f2f93e80bb9 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_UnplannedFailover.json @@ -87,7 +87,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Update.json index ee607340acaf..270fc5807804 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryPlans_Update.json @@ -106,7 +106,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Create.json index 7b9d43930a2c..79766f38d37c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Create.json @@ -48,7 +48,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Delete.json index 65ce9cb6b812..294676588a56 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Delete.json @@ -8,9 +8,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Purge.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Purge.json index 65ce9cb6b812..294676588a56 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Purge.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_Purge.json @@ -8,9 +8,7 @@ "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json index ef5e62ab662b..f3a3efab2b93 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationRecoveryServicesProviders_RefreshProvider.json @@ -29,7 +29,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationStorageClassificationMappings_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationStorageClassificationMappings_Create.json index 29ec7ebe753c..7322edcd4772 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationStorageClassificationMappings_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationStorageClassificationMappings_Create.json @@ -24,7 +24,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationStorageClassificationMappings_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationStorageClassificationMappings_Delete.json index 698d1a55cfe8..118dccafc404 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationStorageClassificationMappings_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationStorageClassificationMappings_Delete.json @@ -9,9 +9,7 @@ "subscriptionId": "9112a37f-0f3e-46ec-9c00-060c6edca071" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultHealth_Get.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultHealth_Get.json index d22fdb7e6701..07b00de96dcc 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultHealth_Get.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultHealth_Get.json @@ -12,25 +12,27 @@ "type": "Microsoft.RecoveryServices/vaults/replicationVaultHealth", "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultHealth/Default", "properties": { - "vaultErrors": [], + "vaultErrors": [], "protectedItemsHealth": { "resourceCount": 6, - "issues": [{ - "summaryCode": "10008", - "category": "Replication", - "severity": "Error", - "summaryMessage": "RPO Throttled", - "affectedResourceType": "replicationProtectedItems", - "affectedResourceSubtype": "", - "affectedResourceCorrelationIds": [ - "c183865e-6077-46f2-a3b1-deb0f4f4650a", - "c183865e-6077-46f2-a3b1-ceb0a4c3751e" - ] - }] + "issues": [ + { + "summaryCode": "10008", + "category": "Replication", + "severity": "Error", + "summaryMessage": "RPO Throttled", + "affectedResourceType": "replicationProtectedItems", + "affectedResourceSubtype": "", + "affectedResourceCorrelationIds": [ + "c183865e-6077-46f2-a3b1-deb0f4f4650a", + "c183865e-6077-46f2-a3b1-ceb0a4c3751e" + ] + } + ] }, - "fabricsHealth": { + "fabricsHealth": { "resourceCount": 1, - "issues": [] + "issues": [] } } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultHealth_Refresh.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultHealth_Refresh.json index 048bd58a8348..475629fa3cf1 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultHealth_Refresh.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultHealth_Refresh.json @@ -12,19 +12,18 @@ "type": "Microsoft.RecoveryServices/vaults/replicationVaultHealth", "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultHealth/Default", "properties": { - "vaultErrors": [ ], + "vaultErrors": [], "protectedItemsHealth": { "resourceCount": 2, - "issues": [ ] + "issues": [] }, "fabricsHealth": { "resourceCount": 1, - "issues": [ ] + "issues": [] } } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_Create.json index 6ce2cbe37010..460776435739 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_Create.json @@ -14,13 +14,13 @@ "responses": { "200": { "body": { - "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultSettings/default", - "name": "default", - "type": "Microsoft.RecoveryServices/vaults/replicationVaultSettings", - "properties": { - "migrationSolutionId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.Migrate/MigrateProjects/resourceGroupPS1-MigrateProject/Solutions/Servers-Migration-ServerMigration" - } - } + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultSettings/default", + "name": "default", + "type": "Microsoft.RecoveryServices/vaults/replicationVaultSettings", + "properties": { + "migrationSolutionId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.Migrate/MigrateProjects/resourceGroupPS1-MigrateProject/Solutions/Servers-Migration-ServerMigration" + } + } } } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_Get.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_Get.json index fbc985c065cd..687803a9b291 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_Get.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_Get.json @@ -9,13 +9,13 @@ "responses": { "200": { "body": { - "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultSettings/default", - "name": "default", - "type": "Microsoft.RecoveryServices/vaults/replicationVaultSettings", - "properties": { - "migrationSolutionId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.Migrate/MigrateProjects/resourceGroupPS1-MigrateProject/Solutions/Servers-Migration-ServerMigration" - } - } + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultSettings/default", + "name": "default", + "type": "Microsoft.RecoveryServices/vaults/replicationVaultSettings", + "properties": { + "migrationSolutionId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.Migrate/MigrateProjects/resourceGroupPS1-MigrateProject/Solutions/Servers-Migration-ServerMigration" + } + } } } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_List.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_List.json index d021610a4d5b..c2e558a1f95f 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_List.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationVaultSetting_List.json @@ -8,18 +8,18 @@ "responses": { "200": { "body": { - "value": [ - { - "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultSettings/default", - "name": "default", - "type": "Microsoft.RecoveryServices/vaults/replicationVaultSettings", - "properties": { - "migrationSolutionId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.Migrate/MigrateProjects/resourceGroupPS1-MigrateProject/Solutions/Servers-Migration-ServerMigration" - } - } - ], - "nextLink": null - } + "value": [ + { + "id": "/Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationVaultSettings/default", + "name": "default", + "type": "Microsoft.RecoveryServices/vaults/replicationVaultSettings", + "properties": { + "migrationSolutionId": "/subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.Migrate/MigrateProjects/resourceGroupPS1-MigrateProject/Solutions/Servers-Migration-ServerMigration" + } + } + ], + "nextLink": null + } } } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Create.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Create.json index c15109d5be39..4b00ae43b7c0 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Create.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Create.json @@ -34,7 +34,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Delete.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Delete.json index 451d5bb8b342..388adc711f67 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Delete.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Delete.json @@ -8,9 +8,7 @@ "subscriptionId": "7c943c1b-5122-4097-90c8-861411bdd574" }, "responses": { - "202": { - }, - "204": { - } + "202": {}, + "204": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Update.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Update.json index 6d59052fdcb6..0ab0e651fb1c 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Update.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/ReplicationvCenters_Update.json @@ -30,7 +30,6 @@ } } }, - "202": { - } + "202": {} } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/SupportedOperatingSystems_Get.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/SupportedOperatingSystems_Get.json index e4e48b6a1812..d4d1f930ea9f 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/SupportedOperatingSystems_Get.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/SupportedOperatingSystems_Get.json @@ -1,45 +1,45 @@ -{ - "parameters":{ - "api-version":"2018-07-10", - "resourceName":"vault1", - "resourceGroupName":"resourceGroupPS1", - "subscriptionId":"c183865e-6077-46f2-a3b1-deb0f4f4650a" - }, - "responses":{ - "200":{ - "body":{ - "name":"Default", - "type":"Microsoft.RecoveryServices/vaults/replicationSupportedOperatingSystems", - "id":"/Subscriptions/bc403605-c2b0-43dd-abe9-0162124b1ee1/resourceGroups/oneBoxRG/providers/Microsoft.RecoveryServices/vaults/oneBoxRSVault/replicationSupportedOperatingSystems/Default", - "properties":{ - "supportedOsList":[ - { - "instanceType":"A2A", - "supportedOs":[ - { - "osName":"centos", - "osType":"linux", - "osVersions":[ - { - "version":"6.0" - } - ] - }, - { - "osName":"Windows Server 2008 R2 Datacenter", - "osType":"windows", - "osVersions":[ - { - "version":"6.1", - "servicePack":"1" - } - ] - } - ] - } - ] +{ + "parameters": { + "api-version": "2018-07-10", + "resourceName": "vault1", + "resourceGroupName": "resourceGroupPS1", + "subscriptionId": "c183865e-6077-46f2-a3b1-deb0f4f4650a" + }, + "responses": { + "200": { + "body": { + "name": "Default", + "type": "Microsoft.RecoveryServices/vaults/replicationSupportedOperatingSystems", + "id": "/Subscriptions/bc403605-c2b0-43dd-abe9-0162124b1ee1/resourceGroups/oneBoxRG/providers/Microsoft.RecoveryServices/vaults/oneBoxRSVault/replicationSupportedOperatingSystems/Default", + "properties": { + "supportedOsList": [ + { + "instanceType": "A2A", + "supportedOs": [ + { + "osName": "centos", + "osType": "linux", + "osVersions": [ + { + "version": "6.0" + } + ] + }, + { + "osName": "Windows Server 2008 R2 Datacenter", + "osType": "windows", + "osVersions": [ + { + "version": "6.1", + "servicePack": "1" + } + ] + } + ] } - } + ] + } } - } -} \ No newline at end of file + } + } +} diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/TargetComputeSizes_ListByReplicationProtectedItems.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/TargetComputeSizes_ListByReplicationProtectedItems.json index d7e18579ebed..d8a2c12eb4f0 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/TargetComputeSizes_ListByReplicationProtectedItems.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/examples/TargetComputeSizes_ListByReplicationProtectedItems.json @@ -11,39 +11,39 @@ "responses": { "200": { "body": { - "value": [ - { - "id": "/Subscriptions/6808dbbc-98c7-431f-a1b1-9580902423b7/resourceGroups/avraiMgDiskVaultRG/providers/Microsoft.RecoveryServices/vaults/avraiMgDiskVault/replicationFabrics/asr-a2a-default-centraluseuap/replicationProtectionContainers/asr-a2a-default-centraluseuap-container/replicationProtectedItems/468c912d-b1ab-4ea2-97eb-4b5095155db2/targetComputeSizes/Basic_A0", - "name": "Basic_A0", - "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/targetComputeSizes", - "properties": { - "name": "Basic_A0", - "friendlyName": "Basic_A0", - "cpuCoresCount": 1, - "memoryInGB": 0.75, - "maxDataDiskCount": 1, - "maxNicsCount": 2, - "errors": null, - "highIopsSupported": "NotSupported" - } - }, - { - "id": "/Subscriptions/6808dbbc-98c7-431f-a1b1-9580902423b7/resourceGroups/avraiMgDiskVaultRG/providers/Microsoft.RecoveryServices/vaults/avraiMgDiskVault/replicationFabrics/asr-a2a-default-centraluseuap/replicationProtectionContainers/asr-a2a-default-centraluseuap-container/replicationProtectedItems/468c912d-b1ab-4ea2-97eb-4b5095155db2/targetComputeSizes/Standard_A0", - "name": "Standard_A0", - "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/targetComputeSizes", - "properties": { - "name": "Standard_A0", - "friendlyName": "Standard_A0", - "cpuCoresCount": 1, - "memoryInGB": 0.75, - "maxDataDiskCount": 1, - "maxNicsCount": 2, - "errors": null, - "highIopsSupported": "NotSupported" - } - } - ], - "nextLink": null + "value": [ + { + "id": "/Subscriptions/6808dbbc-98c7-431f-a1b1-9580902423b7/resourceGroups/avraiMgDiskVaultRG/providers/Microsoft.RecoveryServices/vaults/avraiMgDiskVault/replicationFabrics/asr-a2a-default-centraluseuap/replicationProtectionContainers/asr-a2a-default-centraluseuap-container/replicationProtectedItems/468c912d-b1ab-4ea2-97eb-4b5095155db2/targetComputeSizes/Basic_A0", + "name": "Basic_A0", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/targetComputeSizes", + "properties": { + "name": "Basic_A0", + "friendlyName": "Basic_A0", + "cpuCoresCount": 1, + "memoryInGB": 0.75, + "maxDataDiskCount": 1, + "maxNicsCount": 2, + "errors": null, + "highIopsSupported": "NotSupported" + } + }, + { + "id": "/Subscriptions/6808dbbc-98c7-431f-a1b1-9580902423b7/resourceGroups/avraiMgDiskVaultRG/providers/Microsoft.RecoveryServices/vaults/avraiMgDiskVault/replicationFabrics/asr-a2a-default-centraluseuap/replicationProtectionContainers/asr-a2a-default-centraluseuap-container/replicationProtectedItems/468c912d-b1ab-4ea2-97eb-4b5095155db2/targetComputeSizes/Standard_A0", + "name": "Standard_A0", + "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/targetComputeSizes", + "properties": { + "name": "Standard_A0", + "friendlyName": "Standard_A0", + "cpuCoresCount": 1, + "memoryInGB": 0.75, + "maxDataDiskCount": 1, + "maxNicsCount": 2, + "errors": null, + "highIopsSupported": "NotSupported" + } + } + ], + "nextLink": null } } } diff --git a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/service.json b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/service.json index 1772989e8933..2d995dc049cc 100644 --- a/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/service.json +++ b/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2018-07-10/service.json @@ -2814,7 +2814,7 @@ } ], "responses": { - "200": { + "200": { "description": "OK", "schema": { "$ref": "#/definitions/ReplicationProtectedItem" @@ -3316,7 +3316,7 @@ } ], "responses": { - "200": { + "200": { "description": "OK", "schema": { "$ref": "#/definitions/ReplicationProtectedItem" @@ -3535,7 +3535,7 @@ } ], "responses": { - "200": { + "200": { "description": "OK", "schema": { "$ref": "#/definitions/ReplicationProtectedItem" @@ -6990,7 +6990,7 @@ } } }, - "/Subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationSupportedOperatingSystems": { + "/Subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationSupportedOperatingSystems": { "get": { "tags": [ "SupportedOperatingSystems" @@ -7853,7 +7853,7 @@ }, "x-ms-discriminator-value": "A2A" }, - "A2ARemoveDisksInput": { + "A2ARemoveDisksInput": { "description": "A2A remove disk(s) input.", "type": "object", "allOf": [ @@ -7923,7 +7923,7 @@ "$ref": "#/definitions/A2AProtectedDiskDetails" } }, - "unprotectedDisks": { + "unprotectedDisks": { "description": "The list of unprotected disks.", "type": "array", "items": { @@ -8140,7 +8140,7 @@ }, "x-ms-discriminator-value": "A2A" }, - "A2AUnprotectedDiskDetails": { + "A2AUnprotectedDiskDetails": { "description": "A2A unprotected disk details.", "type": "object", "properties": { @@ -8151,7 +8151,7 @@ } } }, - "A2AUpdateContainerMappingInput": { + "A2AUpdateContainerMappingInput": { "description": "A2A update protection container mapping.", "type": "object", "allOf": [ @@ -8276,7 +8276,7 @@ } } }, - "AddDisksInput": { + "AddDisksInput": { "description": "Input for add disk(s) operation.", "type": "object", "properties": { @@ -9789,12 +9789,12 @@ "description": "ID of the entity.", "type": "string" }, - "errorId": { + "errorId": { "description": "The health error unique id.", "type": "string" }, "customerResolvability": { - "description": "Value indicating whether the health error is customer resolvable.", + "description": "Value indicating whether the health error is customer resolvable.", "enum": [ "Allowed", "NotAllowed" @@ -13361,7 +13361,6 @@ }, "productType": { "description": "Product type.", - "type": "string" }, "osEdition": { @@ -14935,7 +14934,7 @@ } } }, - "RemoveDisksInput": { + "RemoveDisksInput": { "description": "Input for remove disk(s) operation.", "type": "object", "properties": { @@ -15226,7 +15225,7 @@ }, "discriminator": "instanceType" }, - "ResolveHealthError": { + "ResolveHealthError": { "description": "Resolve health errors input properties.", "type": "object", "properties": { diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleCreate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleCreate.json index faee6698ad73..76168eac0d28 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleCreate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleCreate.json @@ -12,7 +12,6 @@ "Listen", "Send" ] - } } }, @@ -31,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleListKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleListKey.json index 64480c3a7581..ecd0634700e7 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleListKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleListKey.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleRegenrateKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleRegenrateKey.json index 38319e598b60..bb69f542d198 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleRegenrateKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAuthorizationRuleRegenrateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleDelete.json index b9fae0665d1b..f58d45f1d8f0 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleGet.json index 772f8d6ce665..82ce70c5208e 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleGet.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleListAll.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleListAll.json index f3eab363c1bf..1b81494bf0ff 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleListAll.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayAutorizationRuleListAll.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayDelete.json index 028d53f3846d..cfe4b54308f9 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayGet.json index e0d157f0dc1c..ade3b2036e93 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayGet.json @@ -25,4 +25,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleCreate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleCreate.json index d25a74f3da7e..8491803043f9 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleCreate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleCreate.json @@ -12,7 +12,6 @@ "Listen", "Send" ] - } } }, @@ -31,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleListKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleListKey.json index 29fb81b86d0e..e5c51d388d5b 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleListKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleListKey.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleRegenrateKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleRegenrateKey.json index e8b4ffd93aaa..1039ef29e129 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleRegenrateKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAuthorizationRuleRegenrateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleDelete.json index 4b0c326c8b7d..22a6b75f1c64 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleGet.json index f10f920dbff6..6bddac73dffa 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleGet.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleListAll.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleListAll.json index 129ef8a93c0a..0fcfd3757bc0 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleListAll.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionAutorizationRuleListAll.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionCreate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionCreate.json index 0f0eafa2855c..6673eaf5044d 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionCreate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionCreate.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionGet.json index c41e791ecde1..6d4d0c8f1504 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionGet.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionListAll.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionListAll.json index fb2ed1b55f64..9acd3696e91f 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionListAll.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridConnectionListAll.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridconnectionDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridconnectionDelete.json index 45f02984f927..2871aa50a657 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridconnectionDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayHybridconnectionDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayListAll.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayListAll.json index a20d2398ffba..03cbd0c673df 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayListAll.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayListAll.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleCreate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleCreate.json index e6fb46af758b..4524104d6106 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleCreate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleCreate.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleListKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleListKey.json index 246d7de0cb81..1750e12e1a93 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleListKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleListKey.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleRegenrateKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleRegenrateKey.json index dea0ada4fa88..6204bfd10d11 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleRegenrateKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAuthorizationRuleRegenrateKey.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleDelete.json index 871d53984472..26fc5dadf2dd 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleGet.json index d8fd1d0bcf0e..c06ab0233f71 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleGet.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleListAll.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleListAll.json index 9f1463809b32..b00fa547187d 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleListAll.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceAutorizationRuleListAll.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceCheckNameAvailability.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceCheckNameAvailability.json index a2494a5b967a..9e1d2e6e2828 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceCheckNameAvailability.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceCheckNameAvailability.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceCreate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceCreate.json index 5ba8439b0c7d..2d6c38f8323c 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceCreate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceCreate.json @@ -39,4 +39,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceDelete.json index cb9a9ed717d1..32b5b84b8d23 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceGet.json index 2f8e5a451d65..67d52946f75a 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceListByResourceGroup.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceListByResourceGroup.json index de64ebbc357e..e4aaa0dea27a 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceListByResourceGroup.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceListByResourceGroup.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceListBySubscription.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceListBySubscription.json index fe6cf5a2f032..28a6c91e67ee 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceListBySubscription.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayNameSpaceListBySubscription.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayOperations_List.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayOperations_List.json index ddf2f6a8c80f..676b2a529ee3 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayOperations_List.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayOperations_List.json @@ -190,4 +190,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/relay.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/relay.json index 7493cc0f1d6e..72bf984d982d 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/relay.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/relay.json @@ -4,7 +4,9 @@ "title": "Relay API", "description": "Use these API to manage Azure Relay resources through Azure Resources Manager.", "version": "2016-07-01", - "x-ms-code-generation-settings": { "name": "RelayManagementClient" } + "x-ms-code-generation-settings": { + "name": "RelayManagementClient" + } }, "host": "management.azure.com", "schemes": [ @@ -42,7 +44,9 @@ ], "operationId": "Operations_List", "x-ms-examples": { - "RelayOperationsList": { "$ref": "./examples/RelayOperations_List.json" } + "RelayOperationsList": { + "$ref": "./examples/RelayOperations_List.json" + } }, "description": "Lists all of the available Relay REST API operations.", "parameters": [ @@ -76,7 +80,9 @@ ], "operationId": "Namespaces_CheckNameAvailability", "x-ms-examples": { - "RelayCheckNameAvailability": { "$ref": "./examples/RelayNameSpaceCheckNameAvailability.json" } + "RelayCheckNameAvailability": { + "$ref": "./examples/RelayNameSpaceCheckNameAvailability.json" + } }, "description": "Check the give namespace name availability.", "parameters": [ @@ -113,7 +119,9 @@ ], "operationId": "Namespaces_List", "x-ms-examples": { - "RelayNameSpaceListBySubscription": { "$ref": "./examples/RelayNameSpaceListBySubscription.json" } + "RelayNameSpaceListBySubscription": { + "$ref": "./examples/RelayNameSpaceListBySubscription.json" + } }, "description": "Lists all the available namespaces within the subscription irrespective of the resourceGroups.", "parameters": [ @@ -150,7 +158,9 @@ ], "operationId": "Namespaces_ListByResourceGroup", "x-ms-examples": { - "RelayNameSpaceListByResourceGroup": { "$ref": "./examples/RelayNameSpaceListByResourceGroup.json" } + "RelayNameSpaceListByResourceGroup": { + "$ref": "./examples/RelayNameSpaceListByResourceGroup.json" + } }, "description": "Lists all the available namespaces within the ResourceGroup.", "parameters": [ @@ -188,15 +198,13 @@ "tags": [ "Namespaces" ], - "operationId": "Namespaces_CreateOrUpdate", "x-ms-examples": { - - "RelayNamespaceCreate": { "$ref": "./examples/RelayNameSpaceCreate.json" } + "RelayNamespaceCreate": { + "$ref": "./examples/RelayNameSpaceCreate.json" + } }, - "description": "Create Azure Relay namespace.", - "parameters": [ { "$ref": "#/parameters/resourceGroupNameParameter" @@ -245,7 +253,9 @@ ], "operationId": "Namespaces_Delete", "x-ms-examples": { - "RelayNameSpaceDelete": { "$ref": "./examples/RelayNameSpaceDelete.json" } + "RelayNameSpaceDelete": { + "$ref": "./examples/RelayNameSpaceDelete.json" + } }, "description": "Deletes an existing namespace. This operation also removes all associated resources under the namespace.", "parameters": [ @@ -285,19 +295,17 @@ "tags": [ "Namespaces" ], - "operationId": "Namespaces_Get", "x-ms-examples": { - - "RelayNameSpaceGet": { "$ref": "./examples/RelayNameSpaceGet.json" } + "RelayNameSpaceGet": { + "$ref": "./examples/RelayNameSpaceGet.json" + } }, - "description": "Returns the description for the specified namespace.", "parameters": [ { "$ref": "#/parameters/resourceGroupNameParameter" }, - { "$ref": "#/parameters/namespaceNameParameter" }, @@ -369,7 +377,9 @@ ], "operationId": "Namespaces_ListAuthorizationRules", "x-ms-examples": { - "RelayNameSpaceAutorizationRuleListAll": { "$ref": "./examples/RelayNameSpaceAutorizationRuleListAll.json" } + "RelayNameSpaceAutorizationRuleListAll": { + "$ref": "./examples/RelayNameSpaceAutorizationRuleListAll.json" + } }, "description": "Authorization rules for a namespace.", "parameters": [ @@ -410,7 +420,9 @@ ], "operationId": "Namespaces_ListPostAuthorizationRules", "x-ms-examples": { - "RelayNameSpaceAutorizationRuleListAll": { "$ref": "./examples/RelayNameSpaceAutorizationRuleListAll.json" } + "RelayNameSpaceAutorizationRuleListAll": { + "$ref": "./examples/RelayNameSpaceAutorizationRuleListAll.json" + } }, "description": "Authorization rules for a namespace.", "parameters": [ @@ -453,7 +465,9 @@ ], "operationId": "Namespaces_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "RelayNameSpaceAuthorizationRuleCreate": { "$ref": "./examples/RelayNameSpaceAuthorizationRuleCreate.json" } + "RelayNameSpaceAuthorizationRuleCreate": { + "$ref": "./examples/RelayNameSpaceAuthorizationRuleCreate.json" + } }, "description": "Creates or Updates an authorization rule for a namespace", "parameters": [ @@ -503,7 +517,9 @@ ], "operationId": "Namespaces_DeleteAuthorizationRule", "x-ms-examples": { - "RelayNameSpaceAutorizationRuleDelete": { "$ref": "./examples/RelayNameSpaceAutorizationRuleDelete.json" } + "RelayNameSpaceAutorizationRuleDelete": { + "$ref": "./examples/RelayNameSpaceAutorizationRuleDelete.json" + } }, "description": "Deletes a namespace authorization rule", "parameters": [ @@ -544,7 +560,9 @@ ], "operationId": "Namespaces_GetAuthorizationRule", "x-ms-examples": { - "RelayNameSpaceAutorizationRuleGet": { "$ref": "./examples/RelayNameSpaceAutorizationRuleGet.json" } + "RelayNameSpaceAutorizationRuleGet": { + "$ref": "./examples/RelayNameSpaceAutorizationRuleGet.json" + } }, "description": "Authorization rule for a namespace by name.", "parameters": [ @@ -585,7 +603,9 @@ ], "operationId": "Namespaces_PostAuthorizationRule", "x-ms-examples": { - "RelayNameSpaceAutorizationRuleGet": { "$ref": "./examples/RelayNameSpaceAutorizationRuleGet.json" } + "RelayNameSpaceAutorizationRuleGet": { + "$ref": "./examples/RelayNameSpaceAutorizationRuleGet.json" + } }, "description": "Authorization rule for a namespace by name.", "parameters": [ @@ -628,7 +648,9 @@ ], "operationId": "Namespaces_ListKeys", "x-ms-examples": { - "RelayNameSpaceAuthorizationRuleListKey": { "$ref": "./examples/RelayNameSpaceAuthorizationRuleListKey.json" } + "RelayNameSpaceAuthorizationRuleListKey": { + "$ref": "./examples/RelayNameSpaceAuthorizationRuleListKey.json" + } }, "description": "Primary and Secondary ConnectionStrings to the namespace ", "parameters": [ @@ -671,7 +693,9 @@ ], "operationId": "Namespaces_RegenerateKeys", "x-ms-examples": { - "RelayNameSpaceAuthorizationRuleRegenrateKey": { "$ref": "./examples/RelayNameSpaceAuthorizationRuleRegenrateKey.json" } + "RelayNameSpaceAuthorizationRuleRegenrateKey": { + "$ref": "./examples/RelayNameSpaceAuthorizationRuleRegenrateKey.json" + } }, "description": "Regenerates the Primary or Secondary ConnectionStrings to the namespace ", "parameters": [ @@ -723,7 +747,9 @@ ], "operationId": "HybridConnections_ListByNamespace", "x-ms-examples": { - "RelayHybridConnectionListAll": { "$ref": "./examples/RelayHybridConnectionListAll.json" } + "RelayHybridConnectionListAll": { + "$ref": "./examples/RelayHybridConnectionListAll.json" + } }, "description": "Lists the HybridConnection within the namespace.", "parameters": [ @@ -766,7 +792,9 @@ ], "operationId": "HybridConnections_CreateOrUpdate", "x-ms-examples": { - "RelayHybridConnectionCreate": { "$ref": "./examples/RelayHybridConnectionCreate.json" } + "RelayHybridConnectionCreate": { + "$ref": "./examples/RelayHybridConnectionCreate.json" + } }, "description": "Creates or Updates a service HybridConnection. This operation is idempotent.", "parameters": [ @@ -816,7 +844,9 @@ ], "operationId": "HybridConnections_Delete", "x-ms-examples": { - "RelayHybridconnectionDelete": { "$ref": "./examples/RelayHybridconnectionDelete.json" } + "RelayHybridconnectionDelete": { + "$ref": "./examples/RelayHybridconnectionDelete.json" + } }, "description": "Deletes a HybridConnection .", "parameters": [ @@ -857,7 +887,9 @@ ], "operationId": "HybridConnections_Get", "x-ms-examples": { - "RelayHybridConnectionGet": { "$ref": "./examples/RelayHybridConnectionGet.json" } + "RelayHybridConnectionGet": { + "$ref": "./examples/RelayHybridConnectionGet.json" + } }, "description": "Returns the description for the specified HybridConnection.", "parameters": [ @@ -900,7 +932,9 @@ ], "operationId": "HybridConnections_ListAuthorizationRules", "x-ms-examples": { - "RelayHybridConnectionAutorizationRuleListAll": { "$ref": "./examples/RelayHybridConnectionAutorizationRuleListAll.json" } + "RelayHybridConnectionAutorizationRuleListAll": { + "$ref": "./examples/RelayHybridConnectionAutorizationRuleListAll.json" + } }, "description": "Authorization rules for a HybridConnection.", "parameters": [ @@ -938,7 +972,9 @@ ], "operationId": "HybridConnections_ListPostAuthorizationRules", "x-ms-examples": { - "RelayHybridConnectionAutorizationRuleListAll": { "$ref": "./examples/RelayHybridConnectionAutorizationRuleListAll.json" } + "RelayHybridConnectionAutorizationRuleListAll": { + "$ref": "./examples/RelayHybridConnectionAutorizationRuleListAll.json" + } }, "description": "Authorization rules for a HybridConnection.", "parameters": [ @@ -978,7 +1014,9 @@ ], "operationId": "HybridConnections_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "RelayHybridConnectionAuthorizationRuleCreate": { "$ref": "./examples/RelayHybridConnectionAuthorizationRuleCreate.json" } + "RelayHybridConnectionAuthorizationRuleCreate": { + "$ref": "./examples/RelayHybridConnectionAuthorizationRuleCreate.json" + } }, "description": "Creates or Updates an authorization rule for a HybridConnection", "parameters": [ @@ -1031,7 +1069,9 @@ ], "operationId": "HybridConnections_DeleteAuthorizationRule", "x-ms-examples": { - "RelayHybridConnectionAutorizationRuleDelete": { "$ref": "./examples/RelayHybridConnectionAutorizationRuleDelete.json" } + "RelayHybridConnectionAutorizationRuleDelete": { + "$ref": "./examples/RelayHybridConnectionAutorizationRuleDelete.json" + } }, "description": "Deletes a HybridConnection authorization rule", "parameters": [ @@ -1075,7 +1115,9 @@ ], "operationId": "HybridConnections_GetAuthorizationRule", "x-ms-examples": { - "RelayHybridConnectionAutorizationRuleGet": { "$ref": "./examples/RelayHybridConnectionAutorizationRuleGet.json" } + "RelayHybridConnectionAutorizationRuleGet": { + "$ref": "./examples/RelayHybridConnectionAutorizationRuleGet.json" + } }, "description": "HybridConnection authorizationRule for a HybridConnection by name.", "parameters": [ @@ -1119,7 +1161,9 @@ ], "operationId": "HybridConnections_PostAuthorizationRule", "x-ms-examples": { - "RelayHybridConnectionAutorizationRuleGet": { "$ref": "./examples/RelayHybridConnectionAutorizationRuleGet.json" } + "RelayHybridConnectionAutorizationRuleGet": { + "$ref": "./examples/RelayHybridConnectionAutorizationRuleGet.json" + } }, "description": "HybridConnection authorizationRule for a HybridConnection by name.", "parameters": [ @@ -1165,7 +1209,9 @@ ], "operationId": "HybridConnections_ListKeys", "x-ms-examples": { - "RelayHybridConnectionAuthorizationRuleListKey": { "$ref": "./examples/RelayHybridConnectionAuthorizationRuleListKey.json" } + "RelayHybridConnectionAuthorizationRuleListKey": { + "$ref": "./examples/RelayHybridConnectionAuthorizationRuleListKey.json" + } }, "description": "Primary and Secondary ConnectionStrings to the HybridConnection.", "parameters": [ @@ -1211,7 +1257,9 @@ ], "operationId": "HybridConnections_RegenerateKeys", "x-ms-examples": { - "RelayHybridConnectionAuthorizationRuleRegenrateKey": { "$ref": "./examples/RelayHybridConnectionAuthorizationRuleRegenrateKey.json" } + "RelayHybridConnectionAuthorizationRuleRegenrateKey": { + "$ref": "./examples/RelayHybridConnectionAuthorizationRuleRegenrateKey.json" + } }, "description": "Regenerates the Primary or Secondary ConnectionStrings to the HybridConnection", "parameters": [ @@ -1266,7 +1314,9 @@ ], "operationId": "WCFRelays_ListByNamespace", "x-ms-examples": { - "RelayListAll": { "$ref": "./examples/RelayListAll.json" } + "RelayListAll": { + "$ref": "./examples/RelayListAll.json" + } }, "description": "Lists the WCFRelays within the namespace.", "parameters": [ @@ -1309,7 +1359,9 @@ ], "operationId": "WCFRelays_CreateOrUpdate", "x-ms-examples": { - "RelayCreate": { "$ref": "./examples/RelayCreate.json" } + "RelayCreate": { + "$ref": "./examples/RelayCreate.json" + } }, "description": "Creates or Updates a WCFRelay. This operation is idempotent.", "parameters": [ @@ -1359,7 +1411,9 @@ ], "operationId": "WCFRelays_Delete", "x-ms-examples": { - "RelayDelete": { "$ref": "./examples/RelayDelete.json" } + "RelayDelete": { + "$ref": "./examples/RelayDelete.json" + } }, "description": "Deletes a WCFRelays .", "parameters": [ @@ -1400,7 +1454,9 @@ ], "operationId": "WCFRelays_Get", "x-ms-examples": { - "RelayGet": { "$ref": "./examples/RelayGet.json" } + "RelayGet": { + "$ref": "./examples/RelayGet.json" + } }, "description": "Returns the description for the specified WCFRelays.", "parameters": [ @@ -1446,7 +1502,9 @@ ], "operationId": "WCFRelays_ListAuthorizationRules", "x-ms-examples": { - "RelayAutorizationRuleListAll": { "$ref": "./examples/RelayAutorizationRuleListAll.json" } + "RelayAutorizationRuleListAll": { + "$ref": "./examples/RelayAutorizationRuleListAll.json" + } }, "description": "Authorization rules for a WCFRelays.", "parameters": [ @@ -1484,7 +1542,9 @@ ], "operationId": "WCFRelays_ListPostAuthorizationRules", "x-ms-examples": { - "RelayAutorizationRuleListAll": { "$ref": "./examples/RelayAutorizationRuleListAll.json" } + "RelayAutorizationRuleListAll": { + "$ref": "./examples/RelayAutorizationRuleListAll.json" + } }, "description": "Authorization rules for a WCFRelays.", "parameters": [ @@ -1524,7 +1584,9 @@ ], "operationId": "WCFRelays_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "RelayAuthorizationRuleCreate": { "$ref": "./examples/RelayAuthorizationRuleCreate.json" } + "RelayAuthorizationRuleCreate": { + "$ref": "./examples/RelayAuthorizationRuleCreate.json" + } }, "description": "Creates or Updates an authorization rule for a WCFRelays", "parameters": [ @@ -1577,7 +1639,9 @@ ], "operationId": "WCFRelays_DeleteAuthorizationRule", "x-ms-examples": { - "RelayAutorizationRuleDelete": { "$ref": "./examples/RelayAutorizationRuleDelete.json" } + "RelayAutorizationRuleDelete": { + "$ref": "./examples/RelayAutorizationRuleDelete.json" + } }, "description": "Deletes a WCFRelays authorization rule", "parameters": [ @@ -1621,7 +1685,9 @@ ], "operationId": "WCFRelays_GetAuthorizationRule", "x-ms-examples": { - "RelayAutorizationRuleGet": { "$ref": "./examples/RelayAutorizationRuleGet.json" } + "RelayAutorizationRuleGet": { + "$ref": "./examples/RelayAutorizationRuleGet.json" + } }, "description": "Get authorizationRule for a WCFRelays by name.", "parameters": [ @@ -1665,7 +1731,9 @@ ], "operationId": "WCFRelays_PostAuthorizationRule", "x-ms-examples": { - "RelayAutorizationRuleGet": { "$ref": "./examples/RelayAutorizationRuleGet.json" } + "RelayAutorizationRuleGet": { + "$ref": "./examples/RelayAutorizationRuleGet.json" + } }, "description": "Get authorizationRule for a WCFRelays by name.", "parameters": [ @@ -1711,7 +1779,9 @@ ], "operationId": "WCFRelays_ListKeys", "x-ms-examples": { - "RelayAuthorizationRuleListKey.json": { "$ref": "./examples/RelayAuthorizationRuleListKey.json" } + "RelayAuthorizationRuleListKey.json": { + "$ref": "./examples/RelayAuthorizationRuleListKey.json" + } }, "description": "Primary and Secondary ConnectionStrings to the WCFRelays.", "parameters": [ @@ -1757,7 +1827,9 @@ ], "operationId": "WCFRelays_RegenerateKeys", "x-ms-examples": { - "RelayAuthorizationRuleRegenrateKey.json": { "$ref": "./examples/RelayAuthorizationRuleRegenrateKey.json" } + "RelayAuthorizationRuleRegenrateKey.json": { + "$ref": "./examples/RelayAuthorizationRuleRegenrateKey.json" + } }, "description": "Regenerates the Primary or Secondary ConnectionStrings to the WCFRelays", "parameters": [ diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleCreate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleCreate.json index 442b8ea04890..f50ef45393b7 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleCreate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleCreate.json @@ -12,7 +12,6 @@ "Listen", "Send" ] - } } }, @@ -31,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleListKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleListKey.json index 22f22e962316..95c59b056bd7 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleListKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleListKey.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleRegenrateKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleRegenrateKey.json index be3dfa59645c..81d157aaf440 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleRegenrateKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAuthorizationRuleRegenrateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleDelete.json index 0ad48c8cbe85..c19d96fac7e6 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleGet.json index bee862e7e62a..3433c826ba74 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleGet.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleListAll.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleListAll.json index d979a2d74ab1..6c88ea4c4045 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleListAll.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionAutorizationRuleListAll.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionCreate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionCreate.json index 9d4178676b65..ae4c50f32918 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionCreate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionCreate.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionGet.json index 288e8bcff209..43892ca683f6 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionGet.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionListAll.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionListAll.json index c2937625e0d9..a6aad2c99fb0 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionListAll.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridConnectionListAll.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridconnectionDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridconnectionDelete.json index 7c8d850e548b..22b09c44db8c 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridconnectionDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/HybridConnection/RelayHybridconnectionDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleCreate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleCreate.json index 47e26244c3cd..2a41fbeb467c 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleCreate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleCreate.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleListKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleListKey.json index 220c45a74a39..4b9a381fee34 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleListKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleListKey.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleRegenrateKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleRegenrateKey.json index a22a4028a068..4e5851e3e45e 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleRegenrateKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleRegenrateKey.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleDelete.json index ee4ea51959ab..3a69853d14dd 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleGet.json index 4e8680cc41d8..6b59482fec96 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleGet.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleListAll.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleListAll.json index b7dc1c91a264..6bbd4b02dbbc 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleListAll.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAutorizationRuleListAll.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceCheckNameAvailability.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceCheckNameAvailability.json index 9a254108020a..ceb1912fe6be 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceCheckNameAvailability.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceCheckNameAvailability.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceCreate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceCreate.json index 7ba7782c86c8..c803c0865b9c 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceCreate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceCreate.json @@ -39,4 +39,4 @@ }, "201": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceDelete.json index bd8ce077e2e9..8deb65615e9c 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceGet.json index 2db00be339df..3bcac2adbd87 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceListByResourceGroup.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceListByResourceGroup.json index 11b8f787276f..b33e12227bf4 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceListByResourceGroup.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceListByResourceGroup.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceListBySubscription.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceListBySubscription.json index dfdfb73f2d5e..322e170db494 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceListBySubscription.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceListBySubscription.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceUpdate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceUpdate.json index 56b383c1ea70..d5d987b16fb9 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceUpdate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceUpdate.json @@ -4,14 +4,14 @@ "resourceGroupName": "RG-eg", "api-version": "2017-04-01", "subscriptionId": "8c246e6a-cbc6-4a87-aff1-d6a886f376ef", - "parameters": { + "parameters": { "tags": { - "tag3": "value3", - "tag4": "value4", - "tag5": "value5", - "tag6": "value6" - } - } + "tag3": "value3", + "tag4": "value4", + "tag5": "value5", + "tag6": "value6" + } + } }, "responses": { "200": { @@ -34,4 +34,4 @@ }, "201": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleCreate.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleCreate.json index 56411b59c5bc..b5162bcfef9e 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleCreate.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleCreate.json @@ -12,7 +12,6 @@ "Listen", "Send" ] - } } }, @@ -31,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleListKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleListKey.json index 140d12a728e5..fb5487220bb4 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleListKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleListKey.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleRegenrateKey.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleRegenrateKey.json index d1537f2ba830..adde593a3e90 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleRegenrateKey.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAuthorizationRuleRegenrateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleDelete.json index 06703b2c862a..4b446a35d7b3 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleGet.json index 377dfeeaa108..9257cb20a82b 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleGet.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleListAll.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleListAll.json index 3ddf16a98e86..3b309955f972 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleListAll.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayAutorizationRuleListAll.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayDelete.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayDelete.json index db238637e986..637e76adb181 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayDelete.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayGet.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayGet.json index 830360d03abb..d656c3244e50 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayGet.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayGet.json @@ -25,4 +25,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayListAll.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayListAll.json index d2af130b6b88..b764d71c1355 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayListAll.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/Relay/RelayListAll.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/RelayOperations_List.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/RelayOperations_List.json index f5f148cca236..f9714234c175 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/RelayOperations_List.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/RelayOperations_List.json @@ -190,4 +190,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/relay.json b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/relay.json index 4370429d17f4..7279af590f73 100644 --- a/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/relay.json +++ b/specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/relay.json @@ -4,7 +4,9 @@ "title": "Relay API", "description": "Use these API to manage Azure Relay resources through Azure Resource Manager.", "version": "2017-04-01", - "x-ms-code-generation-settings": { "name": "RelayManagementClient" } + "x-ms-code-generation-settings": { + "name": "RelayManagementClient" + } }, "host": "management.azure.com", "schemes": [ @@ -42,7 +44,9 @@ ], "operationId": "Operations_List", "x-ms-examples": { - "RelayOperationsList": { "$ref": "./examples/RelayOperations_List.json" } + "RelayOperationsList": { + "$ref": "./examples/RelayOperations_List.json" + } }, "description": "Lists all available Relay REST API operations.", "parameters": [ @@ -76,7 +80,9 @@ ], "operationId": "Namespaces_CheckNameAvailability", "x-ms-examples": { - "RelayCheckNameAvailability": { "$ref": "./examples/NameSpaces/RelayNameSpaceCheckNameAvailability.json" } + "RelayCheckNameAvailability": { + "$ref": "./examples/NameSpaces/RelayNameSpaceCheckNameAvailability.json" + } }, "description": "Check the specified namespace name availability.", "parameters": [ @@ -119,7 +125,9 @@ ], "operationId": "Namespaces_List", "x-ms-examples": { - "RelayNameSpaceListBySubscription": { "$ref": "./examples/NameSpaces/RelayNameSpaceListBySubscription.json" } + "RelayNameSpaceListBySubscription": { + "$ref": "./examples/NameSpaces/RelayNameSpaceListBySubscription.json" + } }, "description": "Lists all the available namespaces within the subscription regardless of the resourceGroups.", "parameters": [ @@ -156,7 +164,9 @@ ], "operationId": "Namespaces_ListByResourceGroup", "x-ms-examples": { - "RelayNameSpaceListByResourceGroup": { "$ref": "./examples/NameSpaces/RelayNameSpaceListByResourceGroup.json" } + "RelayNameSpaceListByResourceGroup": { + "$ref": "./examples/NameSpaces/RelayNameSpaceListByResourceGroup.json" + } }, "description": "Lists all the available namespaces within the ResourceGroup.", "parameters": [ @@ -194,15 +204,13 @@ "tags": [ "Namespaces" ], - "operationId": "Namespaces_CreateOrUpdate", "x-ms-examples": { - - "RelayNamespaceCreate": { "$ref": "./examples/NameSpaces/RelayNameSpaceCreate.json" } + "RelayNamespaceCreate": { + "$ref": "./examples/NameSpaces/RelayNameSpaceCreate.json" + } }, - "description": "Create Azure Relay namespace.", - "parameters": [ { "$ref": "#/parameters/resourceGroupNameParameter" @@ -254,7 +262,9 @@ ], "operationId": "Namespaces_Delete", "x-ms-examples": { - "RelayNameSpaceDelete": { "$ref": "./examples/NameSpaces/RelayNameSpaceDelete.json" } + "RelayNameSpaceDelete": { + "$ref": "./examples/NameSpaces/RelayNameSpaceDelete.json" + } }, "description": "Deletes an existing namespace. This operation also removes all associated resources under the namespace.", "parameters": [ @@ -294,19 +304,17 @@ "tags": [ "Namespaces" ], - "operationId": "Namespaces_Get", "x-ms-examples": { - - "RelayNameSpaceGet": { "$ref": "./examples/NameSpaces/RelayNameSpaceGet.json" } + "RelayNameSpaceGet": { + "$ref": "./examples/NameSpaces/RelayNameSpaceGet.json" + } }, - "description": "Returns the description for the specified namespace.", "parameters": [ { "$ref": "#/parameters/resourceGroupNameParameter" }, - { "$ref": "#/parameters/namespaceNameParameter" }, @@ -338,7 +346,9 @@ ], "operationId": "Namespaces_Update", "x-ms-examples": { - "RelayNameSpaceUpdate": { "$ref": "./examples/NameSpaces/RelayNameSpaceUpdate.json" } + "RelayNameSpaceUpdate": { + "$ref": "./examples/NameSpaces/RelayNameSpaceUpdate.json" + } }, "description": "Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "parameters": [ @@ -393,7 +403,9 @@ ], "operationId": "Namespaces_ListAuthorizationRules", "x-ms-examples": { - "RelayNameSpaceAutorizationRuleListAll": { "$ref": "./examples/NameSpaces/RelayNameSpaceAutorizationRuleListAll.json" } + "RelayNameSpaceAutorizationRuleListAll": { + "$ref": "./examples/NameSpaces/RelayNameSpaceAutorizationRuleListAll.json" + } }, "description": "Authorization rules for a namespace.", "parameters": [ @@ -436,7 +448,9 @@ ], "operationId": "Namespaces_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "RelayNameSpaceAuthorizationRuleCreate": { "$ref": "./examples/NameSpaces/RelayNameSpaceAuthorizationRuleCreate.json" } + "RelayNameSpaceAuthorizationRuleCreate": { + "$ref": "./examples/NameSpaces/RelayNameSpaceAuthorizationRuleCreate.json" + } }, "description": "Creates or updates an authorization rule for a namespace.", "parameters": [ @@ -486,7 +500,9 @@ ], "operationId": "Namespaces_DeleteAuthorizationRule", "x-ms-examples": { - "RelayNameSpaceAutorizationRuleDelete": { "$ref": "./examples/NameSpaces/RelayNameSpaceAutorizationRuleDelete.json" } + "RelayNameSpaceAutorizationRuleDelete": { + "$ref": "./examples/NameSpaces/RelayNameSpaceAutorizationRuleDelete.json" + } }, "description": "Deletes a namespace authorization rule.", "parameters": [ @@ -527,7 +543,9 @@ ], "operationId": "Namespaces_GetAuthorizationRule", "x-ms-examples": { - "RelayNameSpaceAutorizationRuleGet": { "$ref": "./examples/NameSpaces/RelayNameSpaceAutorizationRuleGet.json" } + "RelayNameSpaceAutorizationRuleGet": { + "$ref": "./examples/NameSpaces/RelayNameSpaceAutorizationRuleGet.json" + } }, "description": "Authorization rule for a namespace by name.", "parameters": [ @@ -570,7 +588,9 @@ ], "operationId": "Namespaces_ListKeys", "x-ms-examples": { - "RelayNameSpaceAuthorizationRuleListKey": { "$ref": "./examples/NameSpaces/RelayNameSpaceAuthorizationRuleListKey.json" } + "RelayNameSpaceAuthorizationRuleListKey": { + "$ref": "./examples/NameSpaces/RelayNameSpaceAuthorizationRuleListKey.json" + } }, "description": "Primary and secondary connection strings to the namespace.", "parameters": [ @@ -613,7 +633,9 @@ ], "operationId": "Namespaces_RegenerateKeys", "x-ms-examples": { - "RelayNameSpaceAuthorizationRuleRegenrateKey": { "$ref": "./examples/NameSpaces/RelayNameSpaceAuthorizationRuleRegenrateKey.json" } + "RelayNameSpaceAuthorizationRuleRegenrateKey": { + "$ref": "./examples/NameSpaces/RelayNameSpaceAuthorizationRuleRegenrateKey.json" + } }, "description": "Regenerates the primary or secondary connection strings to the namespace.", "parameters": [ @@ -665,7 +687,9 @@ ], "operationId": "HybridConnections_ListByNamespace", "x-ms-examples": { - "RelayHybridConnectionListAll": { "$ref": "./examples/HybridConnection/RelayHybridConnectionListAll.json" } + "RelayHybridConnectionListAll": { + "$ref": "./examples/HybridConnection/RelayHybridConnectionListAll.json" + } }, "description": "Lists the hybrid connection within the namespace.", "parameters": [ @@ -708,7 +732,9 @@ ], "operationId": "HybridConnections_CreateOrUpdate", "x-ms-examples": { - "RelayHybridConnectionCreate": { "$ref": "./examples/HybridConnection/RelayHybridConnectionCreate.json" } + "RelayHybridConnectionCreate": { + "$ref": "./examples/HybridConnection/RelayHybridConnectionCreate.json" + } }, "description": "Creates or updates a service hybrid connection. This operation is idempotent.", "parameters": [ @@ -758,7 +784,9 @@ ], "operationId": "HybridConnections_Delete", "x-ms-examples": { - "RelayHybridconnectionDelete": { "$ref": "./examples/HybridConnection/RelayHybridconnectionDelete.json" } + "RelayHybridconnectionDelete": { + "$ref": "./examples/HybridConnection/RelayHybridconnectionDelete.json" + } }, "description": "Deletes a hybrid connection.", "parameters": [ @@ -799,7 +827,9 @@ ], "operationId": "HybridConnections_Get", "x-ms-examples": { - "RelayHybridConnectionGet": { "$ref": "./examples/HybridConnection/RelayHybridConnectionGet.json" } + "RelayHybridConnectionGet": { + "$ref": "./examples/HybridConnection/RelayHybridConnectionGet.json" + } }, "description": "Returns the description for the specified hybrid connection.", "parameters": [ @@ -842,7 +872,9 @@ ], "operationId": "HybridConnections_ListAuthorizationRules", "x-ms-examples": { - "RelayHybridConnectionAutorizationRuleListAll": { "$ref": "./examples/HybridConnection/RelayHybridConnectionAutorizationRuleListAll.json" } + "RelayHybridConnectionAutorizationRuleListAll": { + "$ref": "./examples/HybridConnection/RelayHybridConnectionAutorizationRuleListAll.json" + } }, "description": "Authorization rules for a hybrid connection.", "parameters": [ @@ -888,7 +920,9 @@ ], "operationId": "HybridConnections_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "RelayHybridConnectionAuthorizationRuleCreate": { "$ref": "./examples/HybridConnection/RelayHybridConnectionAuthorizationRuleCreate.json" } + "RelayHybridConnectionAuthorizationRuleCreate": { + "$ref": "./examples/HybridConnection/RelayHybridConnectionAuthorizationRuleCreate.json" + } }, "description": "Creates or updates an authorization rule for a hybrid connection.", "parameters": [ @@ -941,7 +975,9 @@ ], "operationId": "HybridConnections_DeleteAuthorizationRule", "x-ms-examples": { - "RelayHybridConnectionAutorizationRuleDelete": { "$ref": "./examples/HybridConnection/RelayHybridConnectionAutorizationRuleDelete.json" } + "RelayHybridConnectionAutorizationRuleDelete": { + "$ref": "./examples/HybridConnection/RelayHybridConnectionAutorizationRuleDelete.json" + } }, "description": "Deletes a hybrid connection authorization rule.", "parameters": [ @@ -985,7 +1021,9 @@ ], "operationId": "HybridConnections_GetAuthorizationRule", "x-ms-examples": { - "RelayHybridConnectionAutorizationRuleGet": { "$ref": "./examples/HybridConnection/RelayHybridConnectionAutorizationRuleGet.json" } + "RelayHybridConnectionAutorizationRuleGet": { + "$ref": "./examples/HybridConnection/RelayHybridConnectionAutorizationRuleGet.json" + } }, "description": "Hybrid connection authorization rule for a hybrid connection by name.", "parameters": [ @@ -1031,7 +1069,9 @@ ], "operationId": "HybridConnections_ListKeys", "x-ms-examples": { - "RelayHybridConnectionAuthorizationRuleListKey": { "$ref": "./examples/HybridConnection/RelayHybridConnectionAuthorizationRuleListKey.json" } + "RelayHybridConnectionAuthorizationRuleListKey": { + "$ref": "./examples/HybridConnection/RelayHybridConnectionAuthorizationRuleListKey.json" + } }, "description": "Primary and secondary connection strings to the hybrid connection.", "parameters": [ @@ -1077,7 +1117,9 @@ ], "operationId": "HybridConnections_RegenerateKeys", "x-ms-examples": { - "RelayHybridConnectionAuthorizationRuleRegenrateKey": { "$ref": "./examples/HybridConnection/RelayHybridConnectionAuthorizationRuleRegenrateKey.json" } + "RelayHybridConnectionAuthorizationRuleRegenrateKey": { + "$ref": "./examples/HybridConnection/RelayHybridConnectionAuthorizationRuleRegenrateKey.json" + } }, "description": "Regenerates the primary or secondary connection strings to the hybrid connection.", "parameters": [ @@ -1132,7 +1174,9 @@ ], "operationId": "WCFRelays_ListByNamespace", "x-ms-examples": { - "RelayListAll": { "$ref": "./examples/Relay/RelayListAll.json" } + "RelayListAll": { + "$ref": "./examples/Relay/RelayListAll.json" + } }, "description": "Lists the WCF relays within the namespace.", "parameters": [ @@ -1175,7 +1219,9 @@ ], "operationId": "WCFRelays_CreateOrUpdate", "x-ms-examples": { - "RelayCreate": { "$ref": "./examples/Relay/RelayCreate.json" } + "RelayCreate": { + "$ref": "./examples/Relay/RelayCreate.json" + } }, "description": "Creates or updates a WCF relay. This operation is idempotent.", "parameters": [ @@ -1225,7 +1271,9 @@ ], "operationId": "WCFRelays_Delete", "x-ms-examples": { - "RelayDelete": { "$ref": "./examples/Relay/RelayDelete.json" } + "RelayDelete": { + "$ref": "./examples/Relay/RelayDelete.json" + } }, "description": "Deletes a WCF relay.", "parameters": [ @@ -1266,7 +1314,9 @@ ], "operationId": "WCFRelays_Get", "x-ms-examples": { - "RelayGet": { "$ref": "./examples/Relay/RelayGet.json" } + "RelayGet": { + "$ref": "./examples/Relay/RelayGet.json" + } }, "description": "Returns the description for the specified WCF relay.", "parameters": [ @@ -1312,7 +1362,9 @@ ], "operationId": "WCFRelays_ListAuthorizationRules", "x-ms-examples": { - "RelayAutorizationRuleListAll": { "$ref": "./examples/Relay/RelayAutorizationRuleListAll.json" } + "RelayAutorizationRuleListAll": { + "$ref": "./examples/Relay/RelayAutorizationRuleListAll.json" + } }, "description": "Authorization rules for a WCF relay.", "parameters": [ @@ -1352,7 +1404,9 @@ ], "operationId": "WCFRelays_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "RelayAuthorizationRuleCreate": { "$ref": "./examples/Relay/RelayAuthorizationRuleCreate.json" } + "RelayAuthorizationRuleCreate": { + "$ref": "./examples/Relay/RelayAuthorizationRuleCreate.json" + } }, "description": "Creates or updates an authorization rule for a WCF relay.", "parameters": [ @@ -1405,7 +1459,9 @@ ], "operationId": "WCFRelays_DeleteAuthorizationRule", "x-ms-examples": { - "RelayAutorizationRuleDelete": { "$ref": "./examples/Relay/RelayAutorizationRuleDelete.json" } + "RelayAutorizationRuleDelete": { + "$ref": "./examples/Relay/RelayAutorizationRuleDelete.json" + } }, "description": "Deletes a WCF relay authorization rule.", "parameters": [ @@ -1449,7 +1505,9 @@ ], "operationId": "WCFRelays_GetAuthorizationRule", "x-ms-examples": { - "RelayAutorizationRuleGet": { "$ref": "./examples/Relay/RelayAutorizationRuleGet.json" } + "RelayAutorizationRuleGet": { + "$ref": "./examples/Relay/RelayAutorizationRuleGet.json" + } }, "description": "Get authorizationRule for a WCF relay by name.", "parameters": [ @@ -1495,7 +1553,9 @@ ], "operationId": "WCFRelays_ListKeys", "x-ms-examples": { - "RelayAuthorizationRuleListKey.json": { "$ref": "./examples/Relay/RelayAuthorizationRuleListKey.json" } + "RelayAuthorizationRuleListKey.json": { + "$ref": "./examples/Relay/RelayAuthorizationRuleListKey.json" + } }, "description": "Primary and secondary connection strings to the WCF relay.", "parameters": [ @@ -1541,7 +1601,9 @@ ], "operationId": "WCFRelays_RegenerateKeys", "x-ms-examples": { - "RelayAuthorizationRuleRegenrateKey.json": { "$ref": "./examples/Relay/RelayAuthorizationRuleRegenrateKey.json" } + "RelayAuthorizationRuleRegenrateKey.json": { + "$ref": "./examples/Relay/RelayAuthorizationRuleRegenrateKey.json" + } }, "description": "Regenerates the primary or secondary connection strings to the WCF relay.", "parameters": [ @@ -2203,4 +2265,4 @@ "description": "The relay name." } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetAppliedReservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetAppliedReservations.json index 532bb9b87375..92a00d31b3ba 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetAppliedReservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetAppliedReservations.json @@ -11,22 +11,24 @@ "name": "default", "properties": { "reservationOrderIds": { - "value": ["/providers/Microsoft.Capacity/reservationorders/e1eccf0b-2db4-4e84-97e7-98b50e9d46f7", - "/providers/Microsoft.Capacity/reservationorders/741a32eb-6158-4cee-9642-a0243ae79fac", - "/providers/Microsoft.Capacity/reservationorders/e061223d-fcff-4d10-bd49-56a740cfb96a", - "/providers/Microsoft.Capacity/reservationorders/2eeb7234-970e-4663-b60b-85241b515901", - "/providers/Microsoft.Capacity/reservationorders/9db2f4c5-b1c5-42a8-bd79-ee56cdde2c7f", - "/providers/Microsoft.Capacity/reservationorders/5da7a877-6d6e-44af-8880-ed3f533bf928", - "/providers/Microsoft.Capacity/reservationorders/f65b0d0a-f945-4105-821c-d00bc8bacde8", - "/providers/Microsoft.Capacity/reservationorders/51304124-e477-4b07-b9fa-03b05c8b924b", - "/providers/Microsoft.Capacity/reservationorders/f5409b98-8a42-4dc6-be0a-cc59bef4d0db", - "/providers/Microsoft.Capacity/reservationorders/a495550a-80a4-46f8-8843-34d4df46f9a6", - "/providers/Microsoft.Capacity/reservationorders/1a966e18-c272-4ce1-a0c2-d4e1039023c3", - "/providers/Microsoft.Capacity/reservationorders/939310b4-f9de-4645-9569-ab5b6cfe958e", - "/providers/Microsoft.Capacity/reservationorders/4193a889-7c3b-44dc-8b7b-bfd7aad6c723"] + "value": [ + "/providers/Microsoft.Capacity/reservationorders/e1eccf0b-2db4-4e84-97e7-98b50e9d46f7", + "/providers/Microsoft.Capacity/reservationorders/741a32eb-6158-4cee-9642-a0243ae79fac", + "/providers/Microsoft.Capacity/reservationorders/e061223d-fcff-4d10-bd49-56a740cfb96a", + "/providers/Microsoft.Capacity/reservationorders/2eeb7234-970e-4663-b60b-85241b515901", + "/providers/Microsoft.Capacity/reservationorders/9db2f4c5-b1c5-42a8-bd79-ee56cdde2c7f", + "/providers/Microsoft.Capacity/reservationorders/5da7a877-6d6e-44af-8880-ed3f533bf928", + "/providers/Microsoft.Capacity/reservationorders/f65b0d0a-f945-4105-821c-d00bc8bacde8", + "/providers/Microsoft.Capacity/reservationorders/51304124-e477-4b07-b9fa-03b05c8b924b", + "/providers/Microsoft.Capacity/reservationorders/f5409b98-8a42-4dc6-be0a-cc59bef4d0db", + "/providers/Microsoft.Capacity/reservationorders/a495550a-80a4-46f8-8843-34d4df46f9a6", + "/providers/Microsoft.Capacity/reservationorders/1a966e18-c272-4ce1-a0c2-d4e1039023c3", + "/providers/Microsoft.Capacity/reservationorders/939310b4-f9de-4645-9569-ab5b6cfe958e", + "/providers/Microsoft.Capacity/reservationorders/4193a889-7c3b-44dc-8b7b-bfd7aad6c723" + ] } } } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetCatalog.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetCatalog.json index 510a98533c34..d56466537ef2 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetCatalog.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetCatalog.json @@ -8,131 +8,131 @@ "responses": { "200": { "body": [ - { - "resourceType": "VirtualMachines", - "name": "Standard_DS5_v2", - "terms": [ - "P1Y", - "P3Y" - ], - "locations": [ - "eastus" - ], - "skuProperties": [ - { - "name": "Cores", - "value": "16" - }, - { - "name": "ProductTitle", - "value": "DSv2 Series, DS5" - }, - { - "name": "ProductShortName", - "value": "DSv2 Series" - }, - { - "name": "SKUName", - "value": "DS5 v2" - }, - { - "name": "MeterId", - "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" - } - ], - "restrictions": [] - }, - { - "resourceType": "VirtualMachines", - "name": "Standard_D1", - "terms": [ - "P1Y", - "P3Y" - ], - "locations": [ - "eastus" - ], - "skuProperties": [ - { - "name": "Cores", - "value": "1" - }, - { - "name": "ProductTitle", - "value": "D Series, D1" - }, - { - "name": "ProductShortName", - "value": "D Series" - }, - { - "name": "SKUName", - "value": "D1" - }, - { - "name": "MeterId", - "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" - } - ], - "restrictions": [ - { - "type": "Term", - "values": [ - "P1Y" - ], - "reasonCode": "NotAvailableForSubscription" - }, - { - "type": "Term", - "values": [ - "P3Y" - ], - "reasonCode": "NotAvailableForSubscription" - } - ] - }, - { - "resourceType": "VirtualMachines", - "name": "Standard_F2", - "terms": [ - "P1Y", - "P3Y" - ], - "locations": [ - "eastus" - ], - "skuProperties": [ - { - "name": "Cores", - "value": "2" - }, - { - "name": "ProductTitle", - "value": "F Series, F2" - }, - { - "name": "ProductShortName", - "value": "F Series" - }, - { - "name": "SKUName", - "value": "F2" - }, - { - "name": "MeterId", - "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" - } - ], - "restrictions": [ - { - "type": "Location", - "values": [ - "eastus" - ], - "reasonCode": "NotAvailableForSubscription" - } - ] - } + { + "resourceType": "VirtualMachines", + "name": "Standard_DS5_v2", + "terms": [ + "P1Y", + "P3Y" + ], + "locations": [ + "eastus" + ], + "skuProperties": [ + { + "name": "Cores", + "value": "16" + }, + { + "name": "ProductTitle", + "value": "DSv2 Series, DS5" + }, + { + "name": "ProductShortName", + "value": "DSv2 Series" + }, + { + "name": "SKUName", + "value": "DS5 v2" + }, + { + "name": "MeterId", + "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" + } + ], + "restrictions": [] + }, + { + "resourceType": "VirtualMachines", + "name": "Standard_D1", + "terms": [ + "P1Y", + "P3Y" + ], + "locations": [ + "eastus" + ], + "skuProperties": [ + { + "name": "Cores", + "value": "1" + }, + { + "name": "ProductTitle", + "value": "D Series, D1" + }, + { + "name": "ProductShortName", + "value": "D Series" + }, + { + "name": "SKUName", + "value": "D1" + }, + { + "name": "MeterId", + "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" + } + ], + "restrictions": [ + { + "type": "Term", + "values": [ + "P1Y" + ], + "reasonCode": "NotAvailableForSubscription" + }, + { + "type": "Term", + "values": [ + "P3Y" + ], + "reasonCode": "NotAvailableForSubscription" + } + ] + }, + { + "resourceType": "VirtualMachines", + "name": "Standard_F2", + "terms": [ + "P1Y", + "P3Y" + ], + "locations": [ + "eastus" + ], + "skuProperties": [ + { + "name": "Cores", + "value": "2" + }, + { + "name": "ProductTitle", + "value": "F Series, F2" + }, + { + "name": "ProductShortName", + "value": "F Series" + }, + { + "name": "SKUName", + "value": "F2" + }, + { + "name": "MeterId", + "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" + } + ], + "restrictions": [ + { + "type": "Location", + "values": [ + "eastus" + ], + "reasonCode": "NotAvailableForSubscription" + } + ] + } ] } } diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetOperations.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetOperations.json index fda153ecb9f5..ae0c88a3db77 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetOperations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetOperations.json @@ -100,4 +100,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationDetails.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationDetails.json index e0bf03027d2b..c186e6163b0c 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationDetails.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationDetails.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationOrderDetails.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationOrderDetails.json index 94b626777fff..e047cc2488c0 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationOrderDetails.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationOrderDetails.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationOrders.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationOrders.json index 5b592379574f..38bc4756170e 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationOrders.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationOrders.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationRevisions.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationRevisions.json index a5e54e7eb437..1f8c6e343e0a 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationRevisions.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservationRevisions.json @@ -137,4 +137,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservations.json index e9b8b143be15..31760d2881c1 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/GetReservations.json @@ -147,4 +147,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/MergeReservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/MergeReservations.json index 3bff75d5b14c..efcab0724b59 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/MergeReservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/MergeReservations.json @@ -3,7 +3,7 @@ "api-version": "2018-06-01", "reservationOrderId": "276e7ae4-84d0-4da6-ab4b-d6b94f3557da", "body": { - "properties" : { + "properties": { "sources": [ "/providers/Microsoft.Capacity/reservationOrders/c0565a8a-4491-4e77-b07b-5e6d66718e1c/reservations/cea04232-932e-47db-acb5-e29a945ecc73", "/providers/Microsoft.Capacity/reservationOrders/c0565a8a-4491-4e77-b07b-5e6d66718e1c/reservations/5bf54dc7-dacd-4f46-a16b-7b78f4a59799" @@ -117,8 +117,8 @@ } ] }, - "202" : { + "202": { "body": "" } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/SplitReservation.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/SplitReservation.json index 7143885c917d..c5daae4af77b 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/SplitReservation.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/SplitReservation.json @@ -108,8 +108,8 @@ } ] }, - "202" : { + "202": { "body": "" } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/UpdateReservation.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/UpdateReservation.json index dcab173ae0dd..0447a109d142 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/UpdateReservation.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/examples/UpdateReservation.json @@ -4,7 +4,7 @@ "reservationOrderId": "276e7ae4-84d0-4da6-ab4b-d6b94f3557da", "reservationId": "6ef59113-3482-40da-8d79-787f823e34bc", "parameters": { - "properties" : { + "properties": { "appliedScopeType": "Shared", "instanceFlexibility": "Off" } @@ -45,4 +45,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/reservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/reservations.json index dcc7cf11bcfc..9afdd0af9a91 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/reservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2018-06-01/reservations.json @@ -1,1223 +1,1223 @@ { - "swagger": "2.0", - "info": { - "title": "Azure Reservation API", - "description": "This API describe Azure Reservation", - "version": "2018-06-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "produces": [ - "application/json" - ], - "consumes": [ - "application/json" - ], - "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" + "swagger": "2.0", + "info": { + "title": "Azure Reservation API", + "description": "This API describe Azure Reservation", + "version": "2018-06-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "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.Capacity/catalogs": { + "get": { + "summary": "Get the regions and skus that are available for RI purchase for the specified Azure subscription.", + "operationId": "GetCatalog", + "x-ms-examples": { + "Catalog": { + "$ref": "./examples/GetCatalog.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ReservedResourceTypeIdParameter" + }, + { + "$ref": "#/parameters/LocationIdParameter" + } + ], + "tags": [ + "Catalog" + ], + "responses": { + "200": { + "description": "List of available resources", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/Catalog" + } } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" + } + } } + } }, - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/catalogs": { - "get": { - "summary": "Get the regions and skus that are available for RI purchase for the specified Azure subscription.", - "operationId": "GetCatalog", - "x-ms-examples": { - "Catalog": { - "$ref": "./examples/GetCatalog.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ReservedResourceTypeIdParameter" - }, - { - "$ref": "#/parameters/LocationIdParameter" - } - ], - "tags": [ - "Catalog" - ], - "responses": { - "200": { - "description": "List of available resources", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/Catalog" - } - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } - } + "/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/appliedReservations": { + "get": { + "summary": "Get list of applicable `Reservation`s.", + "description": "Get applicable `Reservation`s that are applied to this subscription.", + "operationId": "GetAppliedReservationList", + "x-ms-examples": { + "AppliedReservationList": { + "$ref": "./examples/GetAppliedReservations.json" + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/appliedReservations": { - "get": { - "summary": "Get list of applicable `Reservation`s.", - "description": "Get applicable `Reservation`s that are applied to this subscription.", - "operationId": "GetAppliedReservationList", - "x-ms-examples": { - "AppliedReservationList": { - "$ref": "./examples/GetAppliedReservations.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "tags": [ - "AppliedReservation" - ], - "responses": { - "200": { - "description": "Applicable `Reservation`s.", - "schema": { - "$ref": "#/definitions/AppliedReservations" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + } + ], + "tags": [ + "AppliedReservation" + ], + "responses": { + "200": { + "description": "Applicable `Reservation`s.", + "schema": { + "$ref": "#/definitions/AppliedReservations" } - }, - "/providers/Microsoft.Capacity/reservationOrders": { - "get": { - "summary": "Get all `ReservationOrder`s.", - "description": "List of all the `ReservationOrder`s that the user has access to in the current tenant.", - "operationId": "ReservationOrder_List", - "x-ms-examples": { - "ReservationOrderList": { - "$ref": "./examples/GetReservationOrders.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Reservation" - ], - "responses": { - "200": { - "description": "List of `ReservationOrder`s", - "schema": { - "$ref": "#/definitions/ReservationOrderList" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders": { + "get": { + "summary": "Get all `ReservationOrder`s.", + "description": "List of all the `ReservationOrder`s that the user has access to in the current tenant.", + "operationId": "ReservationOrder_List", + "x-ms-examples": { + "ReservationOrderList": { + "$ref": "./examples/GetReservationOrders.json" + } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}": { - "get": { - "summary": "Get a specific `ReservationOrder`.", - "description": "Get the details of the `ReservationOrder`.", - "operationId": "ReservationOrder_Get", - "x-ms-examples": { - "GetReservation": { - "$ref": "./examples/GetReservationOrderDetails.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Reservation" - ], - "responses": { - "200": { - "description": "Get the details of the `ReservationOrder`.", - "schema": { - "$ref": "#/definitions/ReservationOrderResponse" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } - } + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/split": { - "post": { - "summary": "Split the `Reservation`.", - "description": "Split a `Reservation` into two `Reservation`s with specified quantity distribution.\n", - "operationId": "Reservation_Split", - "x-ms-examples": { - "Split": { - "$ref": "./examples/SplitReservation.json" - } - }, - "x-ms-long-running-operation": true, - "parameters": [ - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SplitParameter" - } - ], - "tags": [ - "Reservation, Split" - ], - "responses": { - "200": { - "description": "List of `Reservation`s created after the split operation.", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/ReservationResponse" - } - } - }, - "202": { - "description": "The request is accepted and is being processed" - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "List of `ReservationOrder`s", + "schema": { + "$ref": "#/definitions/ReservationOrderList" } - }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/merge": { - "post": { - "summary": "Merges two `Reservation`s.", - "description": "Merge the specified `Reservation`s into a new `Reservation`. The two `Reservation`s being merged must have same properties.", - "operationId": "Reservation_Merge", - "x-ms-examples": { - "Merge": { - "$ref": "./examples/MergeReservations.json" - } - }, - "x-ms-long-running-operation": true, - "parameters": [ - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/MergeParameter" - } - ], - "tags": [ - "Reservation, Merge" - ], - "responses": { - "200": { - "description": "Returns the `Reservation` created after the merge.", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/ReservationResponse" - } - } - }, - "202": { - "description": "The request is accepted and is being processed" - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}": { + "get": { + "summary": "Get a specific `ReservationOrder`.", + "description": "Get the details of the `ReservationOrder`.", + "operationId": "ReservationOrder_Get", + "x-ms-examples": { + "GetReservation": { + "$ref": "./examples/GetReservationOrderDetails.json" + } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations": { - "get": { - "summary": "Get `Reservation`s in a given reservation Order", - "description": "List `Reservation`s within a single `ReservationOrder`.", - "operationId": "Reservation_List", - "x-ms-examples": { - "ReservationList": { - "$ref": "./examples/GetReservations.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "parameters": [ - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Reservation" - ], - "responses": { - "200": { - "description": "List `Reservation`s within a single `ReservationOrder`.", - "schema": { - "$ref": "#/definitions/ReservationList" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "Get the details of the `ReservationOrder`.", + "schema": { + "$ref": "#/definitions/ReservationOrderResponse" } - }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}": { - "get": { - "summary": "Get `Reservation` details.", - "description": "Get specific `Reservation` details.", - "operationId": "Reservation_Get", - "x-ms-examples": { - "GetReservation": { - "$ref": "./examples/GetReservationDetails.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ReservationIdParameter" - }, - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Reservation" - ], - "responses": { - "200": { - "description": "Get `Reservation` details.", - "schema": { - "$ref": "#/definitions/ReservationResponse" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } - }, - "patch": { - "summary": "Updates a `Reservation`.", - "description": "Updates the applied scopes of the `Reservation`.", - "operationId": "Reservation_Update", - "x-ms-examples": { - "PatchReservation": { - "$ref": "./examples/UpdateReservation.json" - } - }, - "x-ms-long-running-operation": true, - "parameters": [ - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ReservationIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/PatchParameter" - } - ], - "tags": [ - "Reservation", - "ApplyScope" - ], - "responses": { - "200": { - "description": "Returns the updated `Reservation`.", - "schema": { - "$ref": "#/definitions/ReservationResponse" - } - }, - "202": { - "description": "The request is accepted and is being processed" - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/split": { + "post": { + "summary": "Split the `Reservation`.", + "description": "Split a `Reservation` into two `Reservation`s with specified quantity distribution.\n", + "operationId": "Reservation_Split", + "x-ms-examples": { + "Split": { + "$ref": "./examples/SplitReservation.json" + } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}/revisions": { - "get": { - "summary": "Get `Reservation` revisions.", - "description": "List of all the revisions for the `Reservation`.\n", - "operationId": "Reservation_ListRevisions", - "x-ms-examples": { - "ReservationRevisions": { - "$ref": "./examples/GetReservationRevisions.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "parameters": [ - { - "$ref": "#/parameters/ReservationIdParameter" - }, - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Reservation" - ], - "responses": { - "200": { - "description": "List of all the revisions for the `Reservation`.", - "schema": { - "$ref": "#/definitions/ReservationList" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + "x-ms-long-running-operation": true, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SplitParameter" + } + ], + "tags": [ + "Reservation, Split" + ], + "responses": { + "200": { + "description": "List of `Reservation`s created after the split operation.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" + } } - }, - "/providers/Microsoft.Capacity/operations": { - "get": { - "summary": "Get operations.", - "description": "List all the operations.", - "operationId": "Operation_List", - "x-ms-examples": { - "GetOperations": { - "$ref": "./examples/GetOperations.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Operation" - ], - "responses": { - "200": { - "description": "List all the operations.", - "schema": { - "$ref": "#/definitions/OperationList" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + }, + "202": { + "description": "The request is accepted and is being processed" + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } } + } }, - "definitions": { - "ReservationStatusCode": { - "type": "string", - "enum": [ - "None", - "Pending", - "Active", - "PurchaseError", - "PaymentInstrumentError", - "Split", - "Merged", - "Expired", - "Succeeded" - ], - "x-ms-enum": { - "name": "ReservationStatusCode", - "modelAsString": true - } + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/merge": { + "post": { + "summary": "Merges two `Reservation`s.", + "description": "Merge the specified `Reservation`s into a new `Reservation`. The two `Reservation`s being merged must have same properties.", + "operationId": "Reservation_Merge", + "x-ms-examples": { + "Merge": { + "$ref": "./examples/MergeReservations.json" + } }, - "ErrorResponseCode": { - "type": "string", - "enum": [ - "NotSpecified", - "InternalServerError", - "ServerTimeout", - "AuthorizationFailed", - "BadRequest", - "ClientCertificateThumbprintNotSet", - "InvalidRequestContent", - "OperationFailed", - "HttpMethodNotSupported", - "InvalidRequestUri", - "MissingTenantId", - "InvalidTenantId", - "InvalidReservationOrderId", - "InvalidReservationId", - "ReservationIdNotInReservationOrder", - "ReservationOrderNotFound", - "InvalidSubscriptionId", - "InvalidAccessToken", - "InvalidLocationId", - "UnauthenticatedRequestsThrottled", - "InvalidHealthCheckType", - "Forbidden", - "BillingScopeIdCannotBeChanged", - "AppliedScopesNotAssociatedWithCommerceAccount", - "PatchValuesSameAsExisting", - "RoleAssignmentCreationFailed", - "ReservationOrderCreationFailed", - "ReservationOrderNotEnabled", - "CapacityUpdateScopesFailed", - "UnsupportedReservationTerm", - "ReservationOrderIdAlreadyExists", - "RiskCheckFailed", - "CreateQuoteFailed", - "ActivateQuoteFailed", - "NonsupportedAccountId", - "PaymentInstrumentNotFound", - "MissingAppliedScopesForSingle", - "NoValidReservationsToReRate", - "ReRateOnlyAllowedForEA", - "OperationCannotBePerformedInCurrentState", - "InvalidSingleAppliedScopesCount", - "InvalidFulfillmentRequestParameters", - "NotSupportedCountry", - "InvalidRefundQuantity", - "PurchaseError", - "BillingCustomerInputError", - "BillingPaymentInstrumentSoftError", - "BillingPaymentInstrumentHardError", - "BillingTransientError", - "BillingError", - "FulfillmentConfigurationError", - "FulfillmentOutOfStockError", - "FulfillmentTransientError", - "FulfillmentError", - "CalculatePriceFailed" - ], - "x-ms-enum": { - "name": "ErrorResponseCode", - "modelAsString": true + "x-ms-long-running-operation": true, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/MergeParameter" + } + ], + "tags": [ + "Reservation, Merge" + ], + "responses": { + "200": { + "description": "Returns the `Reservation` created after the merge.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" + } + } + }, + "202": { + "description": "The request is accepted and is being processed" + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations": { + "get": { + "summary": "Get `Reservation`s in a given reservation Order", + "description": "List `Reservation`s within a single `ReservationOrder`.", + "operationId": "Reservation_List", + "x-ms-examples": { + "ReservationList": { + "$ref": "./examples/GetReservations.json" + } }, - "SkuName": { - "type": "object", - "properties": { - "name": { - "type": "string" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "List `Reservation`s within a single `ReservationOrder`.", + "schema": { + "$ref": "#/definitions/ReservationList" + } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}": { + "get": { + "summary": "Get `Reservation` details.", + "description": "Get specific `Reservation` details.", + "operationId": "Reservation_Get", + "x-ms-examples": { + "GetReservation": { + "$ref": "./examples/GetReservationDetails.json" + } }, - "Catalog": { - "type": "object", - "properties": { - "resourceType": { - "type": "string", - "description": "The type of resource the SKU applies to.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of SKU", - "readOnly": true - }, - "terms": { - "type": "array", - "readOnly": true, - "description": "Available reservation terms for this resource", - "items": { - "$ref": "#/definitions/ReservationTerm" - } - }, - "locations": { - "type": "array", - "readOnly": true, - "items": { - "type": "string", - "description": "The set of locations that the SKU is available. If not specified, the SKU is available in all locations." - } - }, - "skuProperties": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SkuProperty" - } - }, - "restrictions": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SkuRestriction" - } - } + "parameters": [ + { + "$ref": "#/parameters/ReservationIdParameter" + }, + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "Get `Reservation` details.", + "schema": { + "$ref": "#/definitions/ReservationResponse" + } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + }, + "patch": { + "summary": "Updates a `Reservation`.", + "description": "Updates the applied scopes of the `Reservation`.", + "operationId": "Reservation_Update", + "x-ms-examples": { + "PatchReservation": { + "$ref": "./examples/UpdateReservation.json" + } }, - "SkuProperty": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "An invariant to describe the feature." - }, - "value": { - "type": "string", - "description": "An invariant if the feature is measured by quantity." - } + "x-ms-long-running-operation": true, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ReservationIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/PatchParameter" + } + ], + "tags": [ + "Reservation", + "ApplyScope" + ], + "responses": { + "200": { + "description": "Returns the updated `Reservation`.", + "schema": { + "$ref": "#/definitions/ReservationResponse" + } + }, + "202": { + "description": "The request is accepted and is being processed" + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}/revisions": { + "get": { + "summary": "Get `Reservation` revisions.", + "description": "List of all the revisions for the `Reservation`.\n", + "operationId": "Reservation_ListRevisions", + "x-ms-examples": { + "ReservationRevisions": { + "$ref": "./examples/GetReservationRevisions.json" + } }, - "SkuRestriction": { - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of restrictions." - }, - "values": { - "type": "array", - "items": { - "type": "string" - }, - "description": "The value of restrictions. If the restriction type is set to location. This would be different locations where the SKU is restricted." - }, - "reasonCode": { - "type": "string", - "description": "The reason for restriction." - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "parameters": [ + { + "$ref": "#/parameters/ReservationIdParameter" + }, + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "List of all the revisions for the `Reservation`.", + "schema": { + "$ref": "#/definitions/ReservationList" + } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/operations": { + "get": { + "summary": "Get operations.", + "description": "List all the operations.", + "operationId": "Operation_List", + "x-ms-examples": { + "GetOperations": { + "$ref": "./examples/GetOperations.json" + } }, - "ReservationOrderResponse": { - "type": "object", - "x-ms-azure-resource": true, - "properties": { - "etag": { - "type": "integer" - }, - "id": { - "type": "string", - "readOnly": true, - "description": "Identifier of the reservation" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Name of the reservation" - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ReservationOrderProperties" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Type of resource. \"Microsoft.Capacity/reservations\"" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Operation" + ], + "responses": { + "200": { + "description": "List all the operations.", + "schema": { + "$ref": "#/definitions/OperationList" + } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + } + }, + "definitions": { + "ReservationStatusCode": { + "type": "string", + "enum": [ + "None", + "Pending", + "Active", + "PurchaseError", + "PaymentInstrumentError", + "Split", + "Merged", + "Expired", + "Succeeded" + ], + "x-ms-enum": { + "name": "ReservationStatusCode", + "modelAsString": true + } + }, + "ErrorResponseCode": { + "type": "string", + "enum": [ + "NotSpecified", + "InternalServerError", + "ServerTimeout", + "AuthorizationFailed", + "BadRequest", + "ClientCertificateThumbprintNotSet", + "InvalidRequestContent", + "OperationFailed", + "HttpMethodNotSupported", + "InvalidRequestUri", + "MissingTenantId", + "InvalidTenantId", + "InvalidReservationOrderId", + "InvalidReservationId", + "ReservationIdNotInReservationOrder", + "ReservationOrderNotFound", + "InvalidSubscriptionId", + "InvalidAccessToken", + "InvalidLocationId", + "UnauthenticatedRequestsThrottled", + "InvalidHealthCheckType", + "Forbidden", + "BillingScopeIdCannotBeChanged", + "AppliedScopesNotAssociatedWithCommerceAccount", + "PatchValuesSameAsExisting", + "RoleAssignmentCreationFailed", + "ReservationOrderCreationFailed", + "ReservationOrderNotEnabled", + "CapacityUpdateScopesFailed", + "UnsupportedReservationTerm", + "ReservationOrderIdAlreadyExists", + "RiskCheckFailed", + "CreateQuoteFailed", + "ActivateQuoteFailed", + "NonsupportedAccountId", + "PaymentInstrumentNotFound", + "MissingAppliedScopesForSingle", + "NoValidReservationsToReRate", + "ReRateOnlyAllowedForEA", + "OperationCannotBePerformedInCurrentState", + "InvalidSingleAppliedScopesCount", + "InvalidFulfillmentRequestParameters", + "NotSupportedCountry", + "InvalidRefundQuantity", + "PurchaseError", + "BillingCustomerInputError", + "BillingPaymentInstrumentSoftError", + "BillingPaymentInstrumentHardError", + "BillingTransientError", + "BillingError", + "FulfillmentConfigurationError", + "FulfillmentOutOfStockError", + "FulfillmentTransientError", + "FulfillmentError", + "CalculatePriceFailed" + ], + "x-ms-enum": { + "name": "ErrorResponseCode", + "modelAsString": true + } + }, + "SkuName": { + "type": "object", + "properties": { + "name": { + "type": "string" + } + } + }, + "Catalog": { + "type": "object", + "properties": { + "resourceType": { + "type": "string", + "description": "The type of resource the SKU applies to.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "The name of SKU", + "readOnly": true + }, + "terms": { + "type": "array", + "readOnly": true, + "description": "Available reservation terms for this resource", + "items": { + "$ref": "#/definitions/ReservationTerm" + } }, - "ReservationTerm": { + "locations": { + "type": "array", + "readOnly": true, + "items": { "type": "string", - "description": "Represent the term of Reservation.", - "enum": [ - "P1Y", - "P3Y" - ], - "x-ms-enum": { - "name": "ReservationTerm", - "modelAsString": true - } + "description": "The set of locations that the SKU is available. If not specified, the SKU is available in all locations." + } }, - "ReservationOrderProperties": { - "type": "object", - "properties": { - "displayName": { - "type": "string", - "description": "Friendly name for user to easily identified the reservation." - }, - "requestDateTime": { - "type": "string", - "format": "date-time", - "description": "This is the DateTime when the reservation was initially requested for purchase." - }, - "createdDateTime": { - "type": "string", - "format": "date-time", - "description": "This is the DateTime when the reservation was created." - }, - "expiryDate": { - "type": "string", - "format": "date", - "description": "This is the date when the Reservation will expire." - }, - "originalQuantity": { - "type": "integer", - "format": "int32", - "description": "Total Quantity of the SKUs purchased in the Reservation." - }, - "term": { - "$ref": "#/definitions/ReservationTerm" - }, - "provisioningState": { - "type": "string", - "description": "Current state of the reservation." - }, - "reservations": { - "type": "array", - "items": { - "$ref": "#/definitions/ReservationResponse" - } - } - } + "skuProperties": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/SkuProperty" + } }, - "ReservationResponse": { - "type": "object", - "x-ms-azure-resource": true, - "properties": { - "location": { - "type": "string", - "readOnly": true, - "description": "The Azure Region where the reserved resource lives." - }, - "etag": { - "type": "integer" - }, - "id": { - "type": "string", - "readOnly": true, - "description": "Identifier of the reservation" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Name of the reservation" - }, - "sku": { - "$ref": "#/definitions/SkuName" - }, - "properties": { - "$ref": "#/definitions/ReservationProperties" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Type of resource. \"Microsoft.Capacity/reservationOrders/reservations\"" - } - } + "restrictions": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/SkuRestriction" + } + } + } + }, + "SkuProperty": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "An invariant to describe the feature." }, - "ReservationProperties": { - "type": "object", - "properties": { - "reservedResourceType": { - "$ref": "#/definitions/ReservedResourceType" - }, - "instanceFlexibility": { - "$ref": "#/definitions/InstanceFlexibility" - }, - "displayName": { - "type": "string", - "description": "Friendly name for user to easily identify the reservation" - }, - "appliedScopes": { - "$ref": "#/definitions/AppliedScopes" - }, - "appliedScopeType": { - "$ref": "#/definitions/AppliedScopeType" - }, - "quantity": { - "type": "integer", - "format": "int32", - "description": "Quantity of the SKUs that are part of the Reservation." - }, - "provisioningState": { - "type": "string", - "description": "Current state of the reservation." - }, - "effectiveDateTime": { - "type": "string", - "format": "date-time", - "description": "DateTime of the Reservation starting when this version is effective from." - }, - "lastUpdatedDateTime": { - "type": "string", - "format": "date-time", - "description": "DateTime of the last time the Reservation was updated.", - "readOnly": true - }, - "expiryDate": { - "type": "string", - "format": "date", - "description": "This is the date when the Reservation will expire." - }, - "skuDescription": { - "type": "string", - "description": "Description of the SKU in english." - }, - "extendedStatusInfo": { - "$ref": "#/definitions/ExtendedStatusInfo" - }, - "splitProperties": { - "$ref": "#/definitions/ReservationSplitProperties" - }, - "mergeProperties": { - "$ref": "#/definitions/ReservationMergeProperties" - } - } + "value": { + "type": "string", + "description": "An invariant if the feature is measured by quantity." + } + } + }, + "SkuRestriction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of restrictions." }, - "ReservationSplitProperties": { - "type": "object", - "properties": { - "splitDestinations": { - "type": "array", - "items": { - "type": "string" - }, - "description": "List of destination Resource Id that are created due to split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - }, - "splitSource": { - "type": "string", - "description": "Resource Id of the Reservation from which this is split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - } - } + "values": { + "type": "array", + "items": { + "type": "string" + }, + "description": "The value of restrictions. If the restriction type is set to location. This would be different locations where the SKU is restricted." }, - "ReservationMergeProperties": { - "type": "object", - "properties": { - "mergeDestination": { - "type": "string", - "description": "Reservation Resource Id Created due to the merge. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - }, - "mergeSources": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Resource Ids of the Source Reservation's merged to form this Reservation. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - } - } + "reasonCode": { + "type": "string", + "description": "The reason for restriction." + } + } + }, + "ReservationOrderResponse": { + "type": "object", + "x-ms-azure-resource": true, + "properties": { + "etag": { + "type": "integer" }, - "PatchProperties": { - "type": "object", - "properties": { - "appliedScopeType": { - "$ref": "#/definitions/AppliedScopeType" - }, - "appliedScopes": { - "$ref": "#/definitions/AppliedScopes" - }, - "instanceFlexibility": { - "$ref": "#/definitions/InstanceFlexibility" - }, - "name": { - "description": "Name of the Reservation", - "type": "string" - } - } + "id": { + "type": "string", + "readOnly": true, + "description": "Identifier of the reservation" }, - "SplitProperties": { - "type": "object", - "properties": { - "quantities": { - "type": "array", - "description": "List of the quantities in the new reservations to create.", - "items": { - "type": "integer", - "minItems": 2, - "maxItems": 2 - } - }, - "reservationId": { - "type": "string", - "description": "Resource id of the reservation to be split. Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - } - } + "name": { + "type": "string", + "readOnly": true, + "description": "Name of the reservation" }, - "MergeProperties": { - "type": "object", - "properties": { - "sources": { - "type": "array", - "description": "Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}", - "items": { - "type": "string" - } - } - } + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ReservationOrderProperties" }, - "MergeRequest": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/MergeProperties" - } - } + "type": { + "type": "string", + "readOnly": true, + "description": "Type of resource. \"Microsoft.Capacity/reservations\"" + } + } + }, + "ReservationTerm": { + "type": "string", + "description": "Represent the term of Reservation.", + "enum": [ + "P1Y", + "P3Y" + ], + "x-ms-enum": { + "name": "ReservationTerm", + "modelAsString": true + } + }, + "ReservationOrderProperties": { + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Friendly name for user to easily identified the reservation." }, - "Patch": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/PatchProperties" - } - } + "requestDateTime": { + "type": "string", + "format": "date-time", + "description": "This is the DateTime when the reservation was initially requested for purchase." }, - "SplitRequest": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SplitProperties" - } - } + "createdDateTime": { + "type": "string", + "format": "date-time", + "description": "This is the DateTime when the reservation was created." }, - "Error": { - "type": "object", - "properties": { - "error": { - "$ref": "#/definitions/ExtendedErrorInfo" - } - } + "expiryDate": { + "type": "string", + "format": "date", + "description": "This is the date when the Reservation will expire." }, - "ExtendedErrorInfo": { - "type": "object", - "properties": { - "code": { - "$ref": "#/definitions/ErrorResponseCode" - }, - "message": { - "type": "string" - } - } + "originalQuantity": { + "type": "integer", + "format": "int32", + "description": "Total Quantity of the SKUs purchased in the Reservation." }, - "ExtendedStatusInfo": { - "type": "object", - "properties": { - "statusCode": { - "$ref": "#/definitions/ReservationStatusCode" - }, - "message": { - "type": "string", - "description": "The message giving detailed information about the status code." - } - } + "term": { + "$ref": "#/definitions/ReservationTerm" }, - "ReservationOrderList": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ReservationOrderResponse" - } - }, - "nextLink": { - "type": "string", - "description": "Url to get the next page of reservationOrders." - } - } + "provisioningState": { + "type": "string", + "description": "Current state of the reservation." }, - "ReservationList": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ReservationResponse" - } - }, - "nextLink": { - "type": "string", - "description": "Url to get the next page of reservations." - } - } + "reservations": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" + } + } + } + }, + "ReservationResponse": { + "type": "object", + "x-ms-azure-resource": true, + "properties": { + "location": { + "type": "string", + "readOnly": true, + "description": "The Azure Region where the reserved resource lives." }, - "AppliedReservations": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "Identifier of the applied reservations", - "readOnly": true - }, - "name": { - "type": "string", - "description": "Name of resource", - "readOnly": true - }, - "type": { - "type": "string", - "description": "Type of resource. \"Microsoft.Capacity/AppliedReservations\"", - "readOnly": true - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/AppliedReservationsProperties" - } - } + "etag": { + "type": "integer" }, - "AppliedReservationsProperties": { - "type": "object", - "properties": { - "reservationOrderIds": { - "$ref": "#/definitions/AppliedReservationList" - } - } + "id": { + "type": "string", + "readOnly": true, + "description": "Identifier of the reservation" }, - "AppliedReservationList": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "type": "string", - "description": "Reservation resource Id. \"/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}\"" - } - }, - "nextLink": { - "type": "string", - "description": "Url to get the next page of reservations" - } - } + "name": { + "type": "string", + "readOnly": true, + "description": "Name of the reservation" }, - "OperationList": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/OperationResponse" - } - }, - "nextLink": { - "type": "string", - "description": "Url to get the next page of items." - } - } + "sku": { + "$ref": "#/definitions/SkuName" }, - "OperationResponse": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "display": { - "$ref": "#/definitions/OperationDisplay" - }, - "origin": { - "type": "string" - } - } + "properties": { + "$ref": "#/definitions/ReservationProperties" }, - "OperationDisplay": { - "type": "object", - "properties": { - "provider": { - "type": "string" - }, - "resource": { - "type": "string" - }, - "operation": { - "type": "string" - }, - "description": { - "type": "string" - } - } + "type": { + "type": "string", + "readOnly": true, + "description": "Type of resource. \"Microsoft.Capacity/reservationOrders/reservations\"" + } + } + }, + "ReservationProperties": { + "type": "object", + "properties": { + "reservedResourceType": { + "$ref": "#/definitions/ReservedResourceType" }, - "InstanceFlexibility": { - "type": "string", - "description": "Allows reservation discount to be applied across skus within the same Autofit group. Not all skus support instance size flexibility.", - "enum": [ - "On", - "Off", - "NotSupported" - ], - "x-ms-enum": { - "name": "InstanceFlexibility", - "modelAsString": true - } + "instanceFlexibility": { + "$ref": "#/definitions/InstanceFlexibility" }, - "AppliedScopeType": { - "type": "string", - "description": "Type of the Applied Scope.", - "enum": [ - "Single", - "Shared" - ], - "x-ms-enum": { - "name": "AppliedScopeType", - "modelAsString": true - } + "displayName": { + "type": "string", + "description": "Friendly name for user to easily identify the reservation" }, - "AppliedScopes": { - "type": "array", - "description": "List of the subscriptions that the benefit will be applied. Do not specify if AppliedScopeType is Shared.", - "items": { - "type": "string", - "minItems": 1, - "maxItems": 1 - } + "appliedScopes": { + "$ref": "#/definitions/AppliedScopes" }, - "ReservedResourceType": { - "type": "string", - "description": "The type of the resource that is being reserved.", - "enum": [ - "VirtualMachines", - "SqlDatabases", - "SuseLinux", - "CosmosDb", - "RedHat" - ], - "x-ms-enum": { - "name": "ReservedResourceType", - "modelAsString": true - } + "appliedScopeType": { + "$ref": "#/definitions/AppliedScopeType" + }, + "quantity": { + "type": "integer", + "format": "int32", + "description": "Quantity of the SKUs that are part of the Reservation." + }, + "provisioningState": { + "type": "string", + "description": "Current state of the reservation." + }, + "effectiveDateTime": { + "type": "string", + "format": "date-time", + "description": "DateTime of the Reservation starting when this version is effective from." + }, + "lastUpdatedDateTime": { + "type": "string", + "format": "date-time", + "description": "DateTime of the last time the Reservation was updated.", + "readOnly": true + }, + "expiryDate": { + "type": "string", + "format": "date", + "description": "This is the date when the Reservation will expire." + }, + "skuDescription": { + "type": "string", + "description": "Description of the SKU in english." + }, + "extendedStatusInfo": { + "$ref": "#/definitions/ExtendedStatusInfo" + }, + "splitProperties": { + "$ref": "#/definitions/ReservationSplitProperties" + }, + "mergeProperties": { + "$ref": "#/definitions/ReservationMergeProperties" } + } }, - "parameters": { - "ReservationIdParameter": { - "name": "reservationId", - "x-ms-parameter-location": "method", - "in": "path", - "required": true, - "type": "string", - "description": "Id of the Reservation Item" - }, - "MergeParameter": { - "name": "body", - "x-ms-parameter-location": "method", - "in": "body", - "required": true, - "description": "Information needed for commercial request for a reservation", - "schema": { - "$ref": "#/definitions/MergeRequest" - } + "ReservationSplitProperties": { + "type": "object", + "properties": { + "splitDestinations": { + "type": "array", + "items": { + "type": "string" + }, + "description": "List of destination Resource Id that are created due to split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" }, - "PatchParameter": { - "name": "parameters", - "x-ms-parameter-location": "method", - "in": "body", - "required": true, - "description": "Information needed to patch a reservation item", - "schema": { - "$ref": "#/definitions/Patch" - } + "splitSource": { + "type": "string", + "description": "Resource Id of the Reservation from which this is split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + } + } + }, + "ReservationMergeProperties": { + "type": "object", + "properties": { + "mergeDestination": { + "type": "string", + "description": "Reservation Resource Id Created due to the merge. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" }, - "SplitParameter": { - "name": "body", - "x-ms-parameter-location": "method", - "in": "body", - "required": true, - "description": "Information needed to Split a reservation item", - "schema": { - "$ref": "#/definitions/SplitRequest" - } + "mergeSources": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Resource Ids of the Source Reservation's merged to form this Reservation. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + } + } + }, + "PatchProperties": { + "type": "object", + "properties": { + "appliedScopeType": { + "$ref": "#/definitions/AppliedScopeType" + }, + "appliedScopes": { + "$ref": "#/definitions/AppliedScopes" }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "Supported version.", - "required": true, + "instanceFlexibility": { + "$ref": "#/definitions/InstanceFlexibility" + }, + "name": { + "description": "Name of the Reservation", + "type": "string" + } + } + }, + "SplitProperties": { + "type": "object", + "properties": { + "quantities": { + "type": "array", + "description": "List of the quantities in the new reservations to create.", + "items": { + "type": "integer", + "minItems": 2, + "maxItems": 2 + } + }, + "reservationId": { + "type": "string", + "description": "Resource id of the reservation to be split. Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + } + } + }, + "MergeProperties": { + "type": "object", + "properties": { + "sources": { + "type": "array", + "description": "Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}", + "items": { "type": "string" + } + } + } + }, + "MergeRequest": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/MergeProperties" + } + } + }, + "Patch": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/PatchProperties" + } + } + }, + "SplitRequest": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SplitProperties" + } + } + }, + "Error": { + "type": "object", + "properties": { + "error": { + "$ref": "#/definitions/ExtendedErrorInfo" + } + } + }, + "ExtendedErrorInfo": { + "type": "object", + "properties": { + "code": { + "$ref": "#/definitions/ErrorResponseCode" }, - "SubscriptionIdParameter": { - "name": "subscriptionId", - "x-ms-parameter-location": "method", - "in": "path", - "required": true, - "type": "string", - "description": "Id of the subscription" + "message": { + "type": "string" + } + } + }, + "ExtendedStatusInfo": { + "type": "object", + "properties": { + "statusCode": { + "$ref": "#/definitions/ReservationStatusCode" }, - "ReservedResourceTypeIdParameter": { - "name": "reservedResourceType", - "x-ms-parameter-location": "method", - "in": "query", - "required": true, - "type": "string", - "description": "The type of the resource for which the skus should be provided." + "message": { + "type": "string", + "description": "The message giving detailed information about the status code." + } + } + }, + "ReservationOrderList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationOrderResponse" + } }, - "LocationIdParameter": { - "name": "location", - "x-ms-parameter-location": "method", - "in": "query", - "required": false, - "type": "string", - "description": "Filters the skus based on the location specified in this parameter. This can be an azure region or global" + "nextLink": { + "type": "string", + "description": "Url to get the next page of reservationOrders." + } + } + }, + "ReservationList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" + } + }, + "nextLink": { + "type": "string", + "description": "Url to get the next page of reservations." + } + } + }, + "AppliedReservations": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Identifier of the applied reservations", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Name of resource", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Type of resource. \"Microsoft.Capacity/AppliedReservations\"", + "readOnly": true }, - "ReservationOrderIdParameter": { - "name": "reservationOrderId", - "x-ms-parameter-location": "method", - "in": "path", - "required": true, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/AppliedReservationsProperties" + } + } + }, + "AppliedReservationsProperties": { + "type": "object", + "properties": { + "reservationOrderIds": { + "$ref": "#/definitions/AppliedReservationList" + } + } + }, + "AppliedReservationList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { "type": "string", - "description": "Order Id of the reservation\n" + "description": "Reservation resource Id. \"/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}\"" + } + }, + "nextLink": { + "type": "string", + "description": "Url to get the next page of reservations" + } + } + }, + "OperationList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/OperationResponse" + } + }, + "nextLink": { + "type": "string", + "description": "Url to get the next page of items." + } + } + }, + "OperationResponse": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "display": { + "$ref": "#/definitions/OperationDisplay" + }, + "origin": { + "type": "string" } + } + }, + "OperationDisplay": { + "type": "object", + "properties": { + "provider": { + "type": "string" + }, + "resource": { + "type": "string" + }, + "operation": { + "type": "string" + }, + "description": { + "type": "string" + } + } + }, + "InstanceFlexibility": { + "type": "string", + "description": "Allows reservation discount to be applied across skus within the same Autofit group. Not all skus support instance size flexibility.", + "enum": [ + "On", + "Off", + "NotSupported" + ], + "x-ms-enum": { + "name": "InstanceFlexibility", + "modelAsString": true + } + }, + "AppliedScopeType": { + "type": "string", + "description": "Type of the Applied Scope.", + "enum": [ + "Single", + "Shared" + ], + "x-ms-enum": { + "name": "AppliedScopeType", + "modelAsString": true + } + }, + "AppliedScopes": { + "type": "array", + "description": "List of the subscriptions that the benefit will be applied. Do not specify if AppliedScopeType is Shared.", + "items": { + "type": "string", + "minItems": 1, + "maxItems": 1 + } + }, + "ReservedResourceType": { + "type": "string", + "description": "The type of the resource that is being reserved.", + "enum": [ + "VirtualMachines", + "SqlDatabases", + "SuseLinux", + "CosmosDb", + "RedHat" + ], + "x-ms-enum": { + "name": "ReservedResourceType", + "modelAsString": true + } + } + }, + "parameters": { + "ReservationIdParameter": { + "name": "reservationId", + "x-ms-parameter-location": "method", + "in": "path", + "required": true, + "type": "string", + "description": "Id of the Reservation Item" + }, + "MergeParameter": { + "name": "body", + "x-ms-parameter-location": "method", + "in": "body", + "required": true, + "description": "Information needed for commercial request for a reservation", + "schema": { + "$ref": "#/definitions/MergeRequest" + } + }, + "PatchParameter": { + "name": "parameters", + "x-ms-parameter-location": "method", + "in": "body", + "required": true, + "description": "Information needed to patch a reservation item", + "schema": { + "$ref": "#/definitions/Patch" + } + }, + "SplitParameter": { + "name": "body", + "x-ms-parameter-location": "method", + "in": "body", + "required": true, + "description": "Information needed to Split a reservation item", + "schema": { + "$ref": "#/definitions/SplitRequest" + } + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "description": "Supported version.", + "required": true, + "type": "string" + }, + "SubscriptionIdParameter": { + "name": "subscriptionId", + "x-ms-parameter-location": "method", + "in": "path", + "required": true, + "type": "string", + "description": "Id of the subscription" + }, + "ReservedResourceTypeIdParameter": { + "name": "reservedResourceType", + "x-ms-parameter-location": "method", + "in": "query", + "required": true, + "type": "string", + "description": "The type of the resource for which the skus should be provided." + }, + "LocationIdParameter": { + "name": "location", + "x-ms-parameter-location": "method", + "in": "query", + "required": false, + "type": "string", + "description": "Filters the skus based on the location specified in this parameter. This can be an azure region or global" + }, + "ReservationOrderIdParameter": { + "name": "reservationOrderId", + "x-ms-parameter-location": "method", + "in": "path", + "required": true, + "type": "string", + "description": "Order Id of the reservation\n" } -} \ No newline at end of file + } +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/CalculateReservationOrder.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/CalculateReservationOrder.json index 2290d72eea0d..340a5e23d8f0 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/CalculateReservationOrder.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/CalculateReservationOrder.json @@ -1,42 +1,42 @@ { - "parameters": { - "api-version": "2019-04-01", - "body": { - "sku": { - "name": "standard_D1" - }, - "location": "westus", - "properties": { - "reservedResourceType": "VirtualMachines", - "billingScopeId": "/subscriptions/ed3a1871-612d-abcd-a849-c2542a68be83", - "term": "P1Y", - "quantity": "1", - "displayName": "TestReservationOrder", - "appliedScopes": null, - "appliedScopeType": "Shared", - "reservedResourceProperties": { - "instanceFlexibility": "On" - } - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "billingCurrencyTotal": { - "currencyCode": "USD", - "amount": 466.0 - }, - "reservationOrderId": "6d9cec54-7de8-abcd-9de7-80f5d634f2d2", - "skuTitle": "Reserved VM Instance, Standard_D1, US West, 1 Year", - "skuDescription": "standard_D1", - "pricingCurrencyTotal": { - "currencyCode": "USD", - "amount": 466.0 - } - } - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-04-01", + "body": { + "sku": { + "name": "standard_D1" + }, + "location": "westus", + "properties": { + "reservedResourceType": "VirtualMachines", + "billingScopeId": "/subscriptions/ed3a1871-612d-abcd-a849-c2542a68be83", + "term": "P1Y", + "quantity": "1", + "displayName": "TestReservationOrder", + "appliedScopes": null, + "appliedScopeType": "Shared", + "reservedResourceProperties": { + "instanceFlexibility": "On" + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "billingCurrencyTotal": { + "currencyCode": "USD", + "amount": 466.0 + }, + "reservationOrderId": "6d9cec54-7de8-abcd-9de7-80f5d634f2d2", + "skuTitle": "Reserved VM Instance, Standard_D1, US West, 1 Year", + "skuDescription": "standard_D1", + "pricingCurrencyTotal": { + "currencyCode": "USD", + "amount": 466.0 + } + } + } + } + } +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetAppliedReservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetAppliedReservations.json index a7edca1497eb..9b65ea97d1c7 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetAppliedReservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetAppliedReservations.json @@ -11,22 +11,24 @@ "name": "default", "properties": { "reservationOrderIds": { - "value": ["/providers/Microsoft.Capacity/reservationorders/e1eccf0b-2db4-4e84-97e7-98b50e9d46f7", - "/providers/Microsoft.Capacity/reservationorders/741a32eb-6158-4cee-9642-a0243ae79fac", - "/providers/Microsoft.Capacity/reservationorders/e061223d-fcff-4d10-bd49-56a740cfb96a", - "/providers/Microsoft.Capacity/reservationorders/2eeb7234-970e-4663-b60b-85241b515901", - "/providers/Microsoft.Capacity/reservationorders/9db2f4c5-b1c5-42a8-bd79-ee56cdde2c7f", - "/providers/Microsoft.Capacity/reservationorders/5da7a877-6d6e-44af-8880-ed3f533bf928", - "/providers/Microsoft.Capacity/reservationorders/f65b0d0a-f945-4105-821c-d00bc8bacde8", - "/providers/Microsoft.Capacity/reservationorders/51304124-e477-4b07-b9fa-03b05c8b924b", - "/providers/Microsoft.Capacity/reservationorders/f5409b98-8a42-4dc6-be0a-cc59bef4d0db", - "/providers/Microsoft.Capacity/reservationorders/a495550a-80a4-46f8-8843-34d4df46f9a6", - "/providers/Microsoft.Capacity/reservationorders/1a966e18-c272-4ce1-a0c2-d4e1039023c3", - "/providers/Microsoft.Capacity/reservationorders/939310b4-f9de-4645-9569-ab5b6cfe958e", - "/providers/Microsoft.Capacity/reservationorders/4193a889-7c3b-44dc-8b7b-bfd7aad6c723"] + "value": [ + "/providers/Microsoft.Capacity/reservationorders/e1eccf0b-2db4-4e84-97e7-98b50e9d46f7", + "/providers/Microsoft.Capacity/reservationorders/741a32eb-6158-4cee-9642-a0243ae79fac", + "/providers/Microsoft.Capacity/reservationorders/e061223d-fcff-4d10-bd49-56a740cfb96a", + "/providers/Microsoft.Capacity/reservationorders/2eeb7234-970e-4663-b60b-85241b515901", + "/providers/Microsoft.Capacity/reservationorders/9db2f4c5-b1c5-42a8-bd79-ee56cdde2c7f", + "/providers/Microsoft.Capacity/reservationorders/5da7a877-6d6e-44af-8880-ed3f533bf928", + "/providers/Microsoft.Capacity/reservationorders/f65b0d0a-f945-4105-821c-d00bc8bacde8", + "/providers/Microsoft.Capacity/reservationorders/51304124-e477-4b07-b9fa-03b05c8b924b", + "/providers/Microsoft.Capacity/reservationorders/f5409b98-8a42-4dc6-be0a-cc59bef4d0db", + "/providers/Microsoft.Capacity/reservationorders/a495550a-80a4-46f8-8843-34d4df46f9a6", + "/providers/Microsoft.Capacity/reservationorders/1a966e18-c272-4ce1-a0c2-d4e1039023c3", + "/providers/Microsoft.Capacity/reservationorders/939310b4-f9de-4645-9569-ab5b6cfe958e", + "/providers/Microsoft.Capacity/reservationorders/4193a889-7c3b-44dc-8b7b-bfd7aad6c723" + ] } } } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetCatalog.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetCatalog.json index fdc84983c796..336b3863dd02 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetCatalog.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetCatalog.json @@ -8,131 +8,131 @@ "responses": { "200": { "body": [ - { - "resourceType": "VirtualMachines", - "name": "Standard_DS5_v2", - "terms": [ - "P1Y", - "P3Y" - ], - "locations": [ - "eastus" - ], - "skuProperties": [ - { - "name": "Cores", - "value": "16" - }, - { - "name": "ProductTitle", - "value": "DSv2 Series, DS5" - }, - { - "name": "ProductShortName", - "value": "DSv2 Series" - }, - { - "name": "SKUName", - "value": "DS5 v2" - }, - { - "name": "MeterId", - "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" - } - ], - "restrictions": [] - }, - { - "resourceType": "VirtualMachines", - "name": "Standard_D1", - "terms": [ - "P1Y", - "P3Y" - ], - "locations": [ - "eastus" - ], - "skuProperties": [ - { - "name": "Cores", - "value": "1" - }, - { - "name": "ProductTitle", - "value": "D Series, D1" - }, - { - "name": "ProductShortName", - "value": "D Series" - }, - { - "name": "SKUName", - "value": "D1" - }, - { - "name": "MeterId", - "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" - } - ], - "restrictions": [ - { - "type": "Term", - "values": [ - "P1Y" - ], - "reasonCode": "NotAvailableForSubscription" - }, - { - "type": "Term", - "values": [ - "P3Y" - ], - "reasonCode": "NotAvailableForSubscription" - } - ] - }, - { - "resourceType": "VirtualMachines", - "name": "Standard_F2", - "terms": [ - "P1Y", - "P3Y" - ], - "locations": [ - "eastus" - ], - "skuProperties": [ - { - "name": "Cores", - "value": "2" - }, - { - "name": "ProductTitle", - "value": "F Series, F2" - }, - { - "name": "ProductShortName", - "value": "F Series" - }, - { - "name": "SKUName", - "value": "F2" - }, - { - "name": "MeterId", - "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" - } - ], - "restrictions": [ - { - "type": "Location", - "values": [ - "eastus" - ], - "reasonCode": "NotAvailableForSubscription" - } - ] - } + { + "resourceType": "VirtualMachines", + "name": "Standard_DS5_v2", + "terms": [ + "P1Y", + "P3Y" + ], + "locations": [ + "eastus" + ], + "skuProperties": [ + { + "name": "Cores", + "value": "16" + }, + { + "name": "ProductTitle", + "value": "DSv2 Series, DS5" + }, + { + "name": "ProductShortName", + "value": "DSv2 Series" + }, + { + "name": "SKUName", + "value": "DS5 v2" + }, + { + "name": "MeterId", + "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" + } + ], + "restrictions": [] + }, + { + "resourceType": "VirtualMachines", + "name": "Standard_D1", + "terms": [ + "P1Y", + "P3Y" + ], + "locations": [ + "eastus" + ], + "skuProperties": [ + { + "name": "Cores", + "value": "1" + }, + { + "name": "ProductTitle", + "value": "D Series, D1" + }, + { + "name": "ProductShortName", + "value": "D Series" + }, + { + "name": "SKUName", + "value": "D1" + }, + { + "name": "MeterId", + "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" + } + ], + "restrictions": [ + { + "type": "Term", + "values": [ + "P1Y" + ], + "reasonCode": "NotAvailableForSubscription" + }, + { + "type": "Term", + "values": [ + "P3Y" + ], + "reasonCode": "NotAvailableForSubscription" + } + ] + }, + { + "resourceType": "VirtualMachines", + "name": "Standard_F2", + "terms": [ + "P1Y", + "P3Y" + ], + "locations": [ + "eastus" + ], + "skuProperties": [ + { + "name": "Cores", + "value": "2" + }, + { + "name": "ProductTitle", + "value": "F Series, F2" + }, + { + "name": "ProductShortName", + "value": "F Series" + }, + { + "name": "SKUName", + "value": "F2" + }, + { + "name": "MeterId", + "value": "12bc208b-083f-4901-ae85-4f98c0c3b4b8" + } + ], + "restrictions": [ + { + "type": "Location", + "values": [ + "eastus" + ], + "reasonCode": "NotAvailableForSubscription" + } + ] + } ] } } diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetOperations.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetOperations.json index 761ca0644f9d..20937ee093e5 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetOperations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetOperations.json @@ -100,4 +100,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationDetails.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationDetails.json index e6251a2753c0..52d4ce3be960 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationDetails.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationDetails.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationOrderDetails.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationOrderDetails.json index cdcac65a1b1b..c0cf7b3e07ba 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationOrderDetails.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationOrderDetails.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationOrders.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationOrders.json index 388708507715..9da256509b19 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationOrders.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationOrders.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationRevisions.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationRevisions.json index 173cdb93c740..5d39f4459ce8 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationRevisions.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservationRevisions.json @@ -137,4 +137,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservations.json index 8314b688d143..5745858df555 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/GetReservations.json @@ -147,4 +147,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/MergeReservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/MergeReservations.json index eef063de0ab1..ea78ed11b968 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/MergeReservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/MergeReservations.json @@ -3,7 +3,7 @@ "api-version": "2019-04-01", "reservationOrderId": "276e7ae4-84d0-4da6-ab4b-d6b94f3557da", "body": { - "properties" : { + "properties": { "sources": [ "/providers/Microsoft.Capacity/reservationOrders/c0565a8a-4491-4e77-b07b-5e6d66718e1c/reservations/cea04232-932e-47db-acb5-e29a945ecc73", "/providers/Microsoft.Capacity/reservationOrders/c0565a8a-4491-4e77-b07b-5e6d66718e1c/reservations/5bf54dc7-dacd-4f46-a16b-7b78f4a59799" @@ -117,8 +117,8 @@ } ] }, - "202" : { + "202": { "body": "" } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/PurchaseReservationOrder.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/PurchaseReservationOrder.json index d2d26d537e1b..c13d39b127c2 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/PurchaseReservationOrder.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/PurchaseReservationOrder.json @@ -3,22 +3,22 @@ "api-version": "2019-04-01", "reservationOrderId": "a075419f-44cc-497f-b68a-14ee811d48b9", "body": { - "sku": { - "name": "standard_D1" - }, - "location": "westus", - "properties": { - "reservedResourceType": "VirtualMachines", - "billingScopeId": "/subscriptions/ed3a1871-612d-abcd-a849-c2542a68be83", - "term": "P1Y", - "quantity": "1", - "displayName": "TestReservationOrder", - "appliedScopes": null, - "appliedScopeType": "Shared", - "reservedResourceProperties": { - "instanceFlexibility": "On" - } + "sku": { + "name": "standard_D1" + }, + "location": "westus", + "properties": { + "reservedResourceType": "VirtualMachines", + "billingScopeId": "/subscriptions/ed3a1871-612d-abcd-a849-c2542a68be83", + "term": "P1Y", + "quantity": "1", + "displayName": "TestReservationOrder", + "appliedScopes": null, + "appliedScopeType": "Shared", + "reservedResourceProperties": { + "instanceFlexibility": "On" } + } } }, "responses": { @@ -67,4 +67,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/SplitReservation.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/SplitReservation.json index 737b5ddf6d57..281a964f20fe 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/SplitReservation.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/SplitReservation.json @@ -108,8 +108,8 @@ } ] }, - "202" : { + "202": { "body": "" } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/UpdateReservation.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/UpdateReservation.json index 7f39a151283f..5e6625876ed0 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/UpdateReservation.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/examples/UpdateReservation.json @@ -4,7 +4,7 @@ "reservationOrderId": "276e7ae4-84d0-4da6-ab4b-d6b94f3557da", "reservationId": "6ef59113-3482-40da-8d79-787f823e34bc", "parameters": { - "properties" : { + "properties": { "appliedScopeType": "Shared", "instanceFlexibility": "Off" } @@ -45,4 +45,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/reservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/reservations.json index 0fe540dab94d..e4e14bdfd8c3 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/reservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/preview/2019-04-01/reservations.json @@ -1,1267 +1,1426 @@ { - "swagger" : "2.0", - "info" : { - "title" : "Azure Reservation API", - "description" : "This API describe Azure Reservation", - "version" : "2019-04-01" + "swagger": "2.0", + "info": { + "title": "Azure Reservation API", + "description": "This API describe Azure Reservation", + "version": "2019-04-01" }, - "host" : "management.azure.com", - "schemes" : [ "https" ], - "produces" : [ "application/json" ], - "consumes" : [ "application/json" ], - "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" + "host": "management.azure.com", + "schemes": [ + "https" + ], + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "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.Capacity/catalogs" : { - "get" : { - "summary" : "Get the regions and skus that are available for RI purchase for the specified Azure subscription.", - "operationId" : "GetCatalog", - "x-ms-examples" : { - "Catalog" : { - "$ref" : "./examples/GetCatalog.json" + "paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/catalogs": { + "get": { + "summary": "Get the regions and skus that are available for RI purchase for the specified Azure subscription.", + "operationId": "GetCatalog", + "x-ms-examples": { + "Catalog": { + "$ref": "./examples/GetCatalog.json" } }, - "parameters" : [ { - "$ref" : "#/parameters/ApiVersionParameter" - }, { - "$ref" : "#/parameters/SubscriptionIdParameter" - }, { - "$ref" : "#/parameters/ReservedResourceTypeIdParameter" - }, { - "$ref" : "#/parameters/LocationIdParameter" - } ], - "tags" : [ "Catalog" ], - "responses" : { - "200" : { - "description" : "List of available resources", - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/definitions/Catalog" + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ReservedResourceTypeIdParameter" + }, + { + "$ref": "#/parameters/LocationIdParameter" + } + ], + "tags": [ + "Catalog" + ], + "responses": { + "200": { + "description": "List of available resources", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/Catalog" } } }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/appliedReservations" : { - "get" : { - "summary" : "Get list of applicable `Reservation`s.", - "description" : "Get applicable `Reservation`s that are applied to this subscription.", - "operationId" : "GetAppliedReservationList", - "x-ms-examples" : { - "AppliedReservationList" : { - "$ref" : "./examples/GetAppliedReservations.json" + "/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/appliedReservations": { + "get": { + "summary": "Get list of applicable `Reservation`s.", + "description": "Get applicable `Reservation`s that are applied to this subscription.", + "operationId": "GetAppliedReservationList", + "x-ms-examples": { + "AppliedReservationList": { + "$ref": "./examples/GetAppliedReservations.json" } }, - "parameters" : [ { - "$ref" : "#/parameters/ApiVersionParameter" - }, { - "$ref" : "#/parameters/SubscriptionIdParameter" - } ], - "tags" : [ "AppliedReservation" ], - "responses" : { - "200" : { - "description" : "Applicable `Reservation`s.", - "schema" : { - "$ref" : "#/definitions/AppliedReservations" + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + } + ], + "tags": [ + "AppliedReservation" + ], + "responses": { + "200": { + "description": "Applicable `Reservation`s.", + "schema": { + "$ref": "#/definitions/AppliedReservations" } }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } }, - "/providers/Microsoft.Capacity/calculatePrice" : { - "post" : { - "summary" : "Calculate price for a `ReservationOrder`.", - "description" : "Calculate price for placing a `ReservationOrder`.", - "operationId" : "ReservationOrder_Calculate", - "x-ms-examples" : { - "Purchase" : { - "$ref" : "./examples/CalculateReservationOrder.json" + "/providers/Microsoft.Capacity/calculatePrice": { + "post": { + "summary": "Calculate price for a `ReservationOrder`.", + "description": "Calculate price for placing a `ReservationOrder`.", + "operationId": "ReservationOrder_Calculate", + "x-ms-examples": { + "Purchase": { + "$ref": "./examples/CalculateReservationOrder.json" } }, - "parameters" : [ { - "$ref" : "#/parameters/ApiVersionParameter" - }, { - "$ref" : "#/parameters/PurchaseParameter" - } ], - "tags" : [ "Reservation, Calculate" ], - "responses" : { - "200" : { - "description" : "Detailed price info for purchasing `ReservationOrder`", - "schema" : { - "$ref" : "#/definitions/CalculatePriceResponse" + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/PurchaseParameter" + } + ], + "tags": [ + "Reservation, Calculate" + ], + "responses": { + "200": { + "description": "Detailed price info for purchasing `ReservationOrder`", + "schema": { + "$ref": "#/definitions/CalculatePriceResponse" } }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } }, - "/providers/Microsoft.Capacity/reservationOrders" : { - "get" : { - "summary" : "Get all `ReservationOrder`s.", - "description" : "List of all the `ReservationOrder`s that the user has access to in the current tenant.", - "operationId" : "ReservationOrder_List", - "x-ms-examples" : { - "ReservationOrderList" : { - "$ref" : "./examples/GetReservationOrders.json" + "/providers/Microsoft.Capacity/reservationOrders": { + "get": { + "summary": "Get all `ReservationOrder`s.", + "description": "List of all the `ReservationOrder`s that the user has access to in the current tenant.", + "operationId": "ReservationOrder_List", + "x-ms-examples": { + "ReservationOrderList": { + "$ref": "./examples/GetReservationOrders.json" } }, - "x-ms-pageable" : { - "nextLinkName" : "nextLink" - }, - "parameters" : [ { - "$ref" : "#/parameters/ApiVersionParameter" - } ], - "tags" : [ "Reservation" ], - "responses" : { - "200" : { - "description" : "List of `ReservationOrder`s", - "schema" : { - "$ref" : "#/definitions/ReservationOrderList" + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "List of `ReservationOrder`s", + "schema": { + "$ref": "#/definitions/ReservationOrderList" } }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}" : { - "put" : { - "summary" : "Purchase `ReservationOrder`", - "description" : "Purchase `ReservationOrder` and create resource under the specified URI.", - "operationId" : "ReservationOrder_Purchase", - "x-ms-examples" : { - "Purchase" : { - "$ref" : "./examples/PurchaseReservationOrder.json" + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}": { + "put": { + "summary": "Purchase `ReservationOrder`", + "description": "Purchase `ReservationOrder` and create resource under the specified URI.", + "operationId": "ReservationOrder_Purchase", + "x-ms-examples": { + "Purchase": { + "$ref": "./examples/PurchaseReservationOrder.json" } }, - "x-ms-long-running-operation" : true, - "x-ms-long-running-operation-options" : { - "final-state-via" : "location" - }, - "parameters" : [ { - "$ref" : "#/parameters/ReservationOrderIdParameter" - }, { - "$ref" : "#/parameters/ApiVersionParameter" - }, { - "$ref" : "#/parameters/PurchaseParameter" - } ], - "tags" : [ "Reservation, Purchase" ], - "responses" : { - "200" : { - "description" : "The resource has been created", - "schema" : { - "$ref" : "#/definitions/ReservationOrderResponse" + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/PurchaseParameter" + } + ], + "tags": [ + "Reservation, Purchase" + ], + "responses": { + "200": { + "description": "The resource has been created", + "schema": { + "$ref": "#/definitions/ReservationOrderResponse" } }, - "202" : { - "description" : "The request is accepted and is being processed. Operation result link is in location header.", - "schema" : { - "$ref" : "#/definitions/ReservationOrderResponse" + "202": { + "description": "The request is accepted and is being processed. Operation result link is in location header.", + "schema": { + "$ref": "#/definitions/ReservationOrderResponse" } }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } }, - "get" : { - "summary" : "Get a specific `ReservationOrder`.", - "description" : "Get the details of the `ReservationOrder`.", - "operationId" : "ReservationOrder_Get", - "x-ms-examples" : { - "GetReservation" : { - "$ref" : "./examples/GetReservationOrderDetails.json" + "get": { + "summary": "Get a specific `ReservationOrder`.", + "description": "Get the details of the `ReservationOrder`.", + "operationId": "ReservationOrder_Get", + "x-ms-examples": { + "GetReservation": { + "$ref": "./examples/GetReservationOrderDetails.json" } }, - "parameters" : [ { - "$ref" : "#/parameters/ReservationOrderIdParameter" - }, { - "$ref" : "#/parameters/ApiVersionParameter" - } ], - "tags" : [ "Reservation" ], - "responses" : { - "200" : { - "description" : "Get the details of the `ReservationOrder`.", - "schema" : { - "$ref" : "#/definitions/ReservationOrderResponse" + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "Get the details of the `ReservationOrder`.", + "schema": { + "$ref": "#/definitions/ReservationOrderResponse" } }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/split" : { - "post" : { - "summary" : "Split the `Reservation`.", - "description" : "Split a `Reservation` into two `Reservation`s with specified quantity distribution.", - "operationId" : "Reservation_Split", - "x-ms-examples" : { - "Split" : { - "$ref" : "./examples/SplitReservation.json" + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/split": { + "post": { + "summary": "Split the `Reservation`.", + "description": "Split a `Reservation` into two `Reservation`s with specified quantity distribution.", + "operationId": "Reservation_Split", + "x-ms-examples": { + "Split": { + "$ref": "./examples/SplitReservation.json" } }, - "x-ms-long-running-operation" : true, - "parameters" : [ { - "$ref" : "#/parameters/ReservationOrderIdParameter" - }, { - "$ref" : "#/parameters/ApiVersionParameter" - }, { - "$ref" : "#/parameters/SplitParameter" - } ], - "tags" : [ "Reservation, Split" ], - "responses" : { - "200" : { - "description" : "List of `Reservation`s created after the split operation.", - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/definitions/ReservationResponse" + "x-ms-long-running-operation": true, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SplitParameter" + } + ], + "tags": [ + "Reservation, Split" + ], + "responses": { + "200": { + "description": "List of `Reservation`s created after the split operation.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" } } }, - "202" : { - "description" : "The request is accepted and is being processed" + "202": { + "description": "The request is accepted and is being processed" }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/merge" : { - "post" : { - "summary" : "Merges two `Reservation`s.", - "description" : "Merge the specified `Reservation`s into a new `Reservation`. The two `Reservation`s being merged must have same properties.", - "operationId" : "Reservation_Merge", - "x-ms-examples" : { - "Merge" : { - "$ref" : "./examples/MergeReservations.json" + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/merge": { + "post": { + "summary": "Merges two `Reservation`s.", + "description": "Merge the specified `Reservation`s into a new `Reservation`. The two `Reservation`s being merged must have same properties.", + "operationId": "Reservation_Merge", + "x-ms-examples": { + "Merge": { + "$ref": "./examples/MergeReservations.json" } }, - "x-ms-long-running-operation" : true, - "parameters" : [ { - "$ref" : "#/parameters/ReservationOrderIdParameter" - }, { - "$ref" : "#/parameters/ApiVersionParameter" - }, { - "$ref" : "#/parameters/MergeParameter" - } ], - "tags" : [ "Reservation, Merge" ], - "responses" : { - "200" : { - "description" : "Returns the `Reservation` created after the merge.", - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/definitions/ReservationResponse" + "x-ms-long-running-operation": true, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/MergeParameter" + } + ], + "tags": [ + "Reservation, Merge" + ], + "responses": { + "200": { + "description": "Returns the `Reservation` created after the merge.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" } } }, - "202" : { - "description" : "The request is accepted and is being processed" + "202": { + "description": "The request is accepted and is being processed" }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations" : { - "get" : { - "summary" : "Get `Reservation`s in a given reservation Order", - "description" : "List `Reservation`s within a single `ReservationOrder`.", - "operationId" : "Reservation_List", - "x-ms-examples" : { - "ReservationList" : { - "$ref" : "./examples/GetReservations.json" + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations": { + "get": { + "summary": "Get `Reservation`s in a given reservation Order", + "description": "List `Reservation`s within a single `ReservationOrder`.", + "operationId": "Reservation_List", + "x-ms-examples": { + "ReservationList": { + "$ref": "./examples/GetReservations.json" } }, - "x-ms-pageable" : { - "nextLinkName" : "nextLink" - }, - "parameters" : [ { - "$ref" : "#/parameters/ReservationOrderIdParameter" - }, { - "$ref" : "#/parameters/ApiVersionParameter" - } ], - "tags" : [ "Reservation" ], - "responses" : { - "200" : { - "description" : "List `Reservation`s within a single `ReservationOrder`.", - "schema" : { - "$ref" : "#/definitions/ReservationList" + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "List `Reservation`s within a single `ReservationOrder`.", + "schema": { + "$ref": "#/definitions/ReservationList" } }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" : { - "get" : { - "summary" : "Get `Reservation` details.", - "description" : "Get specific `Reservation` details.", - "operationId" : "Reservation_Get", - "x-ms-examples" : { - "GetReservation" : { - "$ref" : "./examples/GetReservationDetails.json" + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}": { + "get": { + "summary": "Get `Reservation` details.", + "description": "Get specific `Reservation` details.", + "operationId": "Reservation_Get", + "x-ms-examples": { + "GetReservation": { + "$ref": "./examples/GetReservationDetails.json" } }, - "parameters" : [ { - "$ref" : "#/parameters/ReservationIdParameter" - }, { - "$ref" : "#/parameters/ReservationOrderIdParameter" - }, { - "$ref" : "#/parameters/ApiVersionParameter" - } ], - "tags" : [ "Reservation" ], - "responses" : { - "200" : { - "description" : "Get `Reservation` details.", - "schema" : { - "$ref" : "#/definitions/ReservationResponse" + "parameters": [ + { + "$ref": "#/parameters/ReservationIdParameter" + }, + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "Get `Reservation` details.", + "schema": { + "$ref": "#/definitions/ReservationResponse" } }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } }, - "patch" : { - "summary" : "Updates a `Reservation`.", - "description" : "Updates the applied scopes of the `Reservation`.", - "operationId" : "Reservation_Update", - "x-ms-examples" : { - "PatchReservation" : { - "$ref" : "./examples/UpdateReservation.json" + "patch": { + "summary": "Updates a `Reservation`.", + "description": "Updates the applied scopes of the `Reservation`.", + "operationId": "Reservation_Update", + "x-ms-examples": { + "PatchReservation": { + "$ref": "./examples/UpdateReservation.json" } }, - "x-ms-long-running-operation" : true, - "parameters" : [ { - "$ref" : "#/parameters/ReservationOrderIdParameter" - }, { - "$ref" : "#/parameters/ReservationIdParameter" - }, { - "$ref" : "#/parameters/ApiVersionParameter" - }, { - "$ref" : "#/parameters/PatchParameter" - } ], - "tags" : [ "Reservation", "ApplyScope" ], - "responses" : { - "200" : { - "description" : "Returns the updated `Reservation`.", - "schema" : { - "$ref" : "#/definitions/ReservationResponse" + "x-ms-long-running-operation": true, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ReservationIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/PatchParameter" + } + ], + "tags": [ + "Reservation", + "ApplyScope" + ], + "responses": { + "200": { + "description": "Returns the updated `Reservation`.", + "schema": { + "$ref": "#/definitions/ReservationResponse" } }, - "202" : { - "description" : "The request is accepted and is being processed" + "202": { + "description": "The request is accepted and is being processed" }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}/revisions" : { - "get" : { - "summary" : "Get `Reservation` revisions.", - "description" : "List of all the revisions for the `Reservation`.", - "operationId" : "Reservation_ListRevisions", - "x-ms-examples" : { - "ReservationRevisions" : { - "$ref" : "./examples/GetReservationRevisions.json" + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}/revisions": { + "get": { + "summary": "Get `Reservation` revisions.", + "description": "List of all the revisions for the `Reservation`.", + "operationId": "Reservation_ListRevisions", + "x-ms-examples": { + "ReservationRevisions": { + "$ref": "./examples/GetReservationRevisions.json" } }, - "x-ms-pageable" : { - "nextLinkName" : "nextLink" - }, - "parameters" : [ { - "$ref" : "#/parameters/ReservationIdParameter" - }, { - "$ref" : "#/parameters/ReservationOrderIdParameter" - }, { - "$ref" : "#/parameters/ApiVersionParameter" - } ], - "tags" : [ "Reservation" ], - "responses" : { - "200" : { - "description" : "List of all the revisions for the `Reservation`.", - "schema" : { - "$ref" : "#/definitions/ReservationList" + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "parameters": [ + { + "$ref": "#/parameters/ReservationIdParameter" + }, + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "List of all the revisions for the `Reservation`.", + "schema": { + "$ref": "#/definitions/ReservationList" } }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } }, - "/providers/Microsoft.Capacity/operations" : { - "get" : { - "summary" : "Get operations.", - "description" : "List all the operations.", - "operationId" : "Operation_List", - "x-ms-examples" : { - "GetOperations" : { - "$ref" : "./examples/GetOperations.json" + "/providers/Microsoft.Capacity/operations": { + "get": { + "summary": "Get operations.", + "description": "List all the operations.", + "operationId": "Operation_List", + "x-ms-examples": { + "GetOperations": { + "$ref": "./examples/GetOperations.json" } }, - "x-ms-pageable" : { - "nextLinkName" : "nextLink" - }, - "parameters" : [ { - "$ref" : "#/parameters/ApiVersionParameter" - } ], - "tags" : [ "Operation" ], - "responses" : { - "200" : { - "description" : "List all the operations.", - "schema" : { - "$ref" : "#/definitions/OperationList" + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Operation" + ], + "responses": { + "200": { + "description": "List all the operations.", + "schema": { + "$ref": "#/definitions/OperationList" } }, - "default" : { - "description" : "Unexpected error", - "schema" : { - "$ref" : "#/definitions/Error" + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } } } } } }, - "definitions" : { - "ReservationStatusCode" : { - "type" : "string", - "enum" : [ "None", "Pending", "Active", "PurchaseError", "PaymentInstrumentError", "Split", "Merged", "Expired", "Succeeded" ], - "x-ms-enum" : { - "name" : "ReservationStatusCode", - "modelAsString" : true + "definitions": { + "ReservationStatusCode": { + "type": "string", + "enum": [ + "None", + "Pending", + "Active", + "PurchaseError", + "PaymentInstrumentError", + "Split", + "Merged", + "Expired", + "Succeeded" + ], + "x-ms-enum": { + "name": "ReservationStatusCode", + "modelAsString": true } }, - "ErrorResponseCode" : { - "type" : "string", - "enum" : [ "NotSpecified", "InternalServerError", "ServerTimeout", "AuthorizationFailed", "BadRequest", "ClientCertificateThumbprintNotSet", "InvalidRequestContent", "OperationFailed", "HttpMethodNotSupported", "InvalidRequestUri", "MissingTenantId", "InvalidTenantId", "InvalidReservationOrderId", "InvalidReservationId", "ReservationIdNotInReservationOrder", "ReservationOrderNotFound", "InvalidSubscriptionId", "InvalidAccessToken", "InvalidLocationId", "UnauthenticatedRequestsThrottled", "InvalidHealthCheckType", "Forbidden", "BillingScopeIdCannotBeChanged", "AppliedScopesNotAssociatedWithCommerceAccount", "PatchValuesSameAsExisting", "RoleAssignmentCreationFailed", "ReservationOrderCreationFailed", "ReservationOrderNotEnabled", "CapacityUpdateScopesFailed", "UnsupportedReservationTerm", "ReservationOrderIdAlreadyExists", "RiskCheckFailed", "CreateQuoteFailed", "ActivateQuoteFailed", "NonsupportedAccountId", "PaymentInstrumentNotFound", "MissingAppliedScopesForSingle", "NoValidReservationsToReRate", "ReRateOnlyAllowedForEA", "OperationCannotBePerformedInCurrentState", "InvalidSingleAppliedScopesCount", "InvalidFulfillmentRequestParameters", "NotSupportedCountry", "InvalidRefundQuantity", "PurchaseError", "BillingCustomerInputError", "BillingPaymentInstrumentSoftError", "BillingPaymentInstrumentHardError", "BillingTransientError", "BillingError", "FulfillmentConfigurationError", "FulfillmentOutOfStockError", "FulfillmentTransientError", "FulfillmentError", "CalculatePriceFailed" ], - "x-ms-enum" : { - "name" : "ErrorResponseCode", - "modelAsString" : true + "ErrorResponseCode": { + "type": "string", + "enum": [ + "NotSpecified", + "InternalServerError", + "ServerTimeout", + "AuthorizationFailed", + "BadRequest", + "ClientCertificateThumbprintNotSet", + "InvalidRequestContent", + "OperationFailed", + "HttpMethodNotSupported", + "InvalidRequestUri", + "MissingTenantId", + "InvalidTenantId", + "InvalidReservationOrderId", + "InvalidReservationId", + "ReservationIdNotInReservationOrder", + "ReservationOrderNotFound", + "InvalidSubscriptionId", + "InvalidAccessToken", + "InvalidLocationId", + "UnauthenticatedRequestsThrottled", + "InvalidHealthCheckType", + "Forbidden", + "BillingScopeIdCannotBeChanged", + "AppliedScopesNotAssociatedWithCommerceAccount", + "PatchValuesSameAsExisting", + "RoleAssignmentCreationFailed", + "ReservationOrderCreationFailed", + "ReservationOrderNotEnabled", + "CapacityUpdateScopesFailed", + "UnsupportedReservationTerm", + "ReservationOrderIdAlreadyExists", + "RiskCheckFailed", + "CreateQuoteFailed", + "ActivateQuoteFailed", + "NonsupportedAccountId", + "PaymentInstrumentNotFound", + "MissingAppliedScopesForSingle", + "NoValidReservationsToReRate", + "ReRateOnlyAllowedForEA", + "OperationCannotBePerformedInCurrentState", + "InvalidSingleAppliedScopesCount", + "InvalidFulfillmentRequestParameters", + "NotSupportedCountry", + "InvalidRefundQuantity", + "PurchaseError", + "BillingCustomerInputError", + "BillingPaymentInstrumentSoftError", + "BillingPaymentInstrumentHardError", + "BillingTransientError", + "BillingError", + "FulfillmentConfigurationError", + "FulfillmentOutOfStockError", + "FulfillmentTransientError", + "FulfillmentError", + "CalculatePriceFailed" + ], + "x-ms-enum": { + "name": "ErrorResponseCode", + "modelAsString": true } }, - "SkuName" : { - "type" : "object", - "properties" : { - "name" : { - "type" : "string" + "SkuName": { + "type": "object", + "properties": { + "name": { + "type": "string" } } }, - "Catalog" : { - "type" : "object", - "properties" : { - "resourceType" : { - "type" : "string", - "description" : "The type of resource the SKU applies to.", - "readOnly" : true - }, - "name" : { - "type" : "string", - "description" : "The name of SKU", - "readOnly" : true - }, - "terms" : { - "type" : "array", - "readOnly" : true, - "description" : "Available reservation terms for this resource", - "items" : { - "$ref" : "#/definitions/ReservationTerm" + "Catalog": { + "type": "object", + "properties": { + "resourceType": { + "type": "string", + "description": "The type of resource the SKU applies to.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "The name of SKU", + "readOnly": true + }, + "terms": { + "type": "array", + "readOnly": true, + "description": "Available reservation terms for this resource", + "items": { + "$ref": "#/definitions/ReservationTerm" } }, - "locations" : { - "type" : "array", - "readOnly" : true, - "items" : { - "type" : "string", - "description" : "The set of locations that the SKU is available. If not specified, the SKU is available in all locations." + "locations": { + "type": "array", + "readOnly": true, + "items": { + "type": "string", + "description": "The set of locations that the SKU is available. If not specified, the SKU is available in all locations." } }, - "skuProperties" : { - "type" : "array", - "readOnly" : true, - "items" : { - "$ref" : "#/definitions/SkuProperty" + "skuProperties": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/SkuProperty" } }, - "restrictions" : { - "type" : "array", - "readOnly" : true, - "items" : { - "$ref" : "#/definitions/SkuRestriction" + "restrictions": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/SkuRestriction" } } } }, - "SkuProperty" : { - "type" : "object", - "properties" : { - "name" : { - "type" : "string", - "description" : "An invariant to describe the feature." - }, - "value" : { - "type" : "string", - "description" : "An invariant if the feature is measured by quantity." + "SkuProperty": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "An invariant to describe the feature." + }, + "value": { + "type": "string", + "description": "An invariant if the feature is measured by quantity." } } }, - "SkuRestriction" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "description" : "The type of restrictions." - }, - "values" : { - "type" : "array", - "items" : { - "type" : "string" + "SkuRestriction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of restrictions." + }, + "values": { + "type": "array", + "items": { + "type": "string" }, - "description" : "The value of restrictions. If the restriction type is set to location. This would be different locations where the SKU is restricted." + "description": "The value of restrictions. If the restriction type is set to location. This would be different locations where the SKU is restricted." }, - "reasonCode" : { - "type" : "string", - "description" : "The reason for restriction." + "reasonCode": { + "type": "string", + "description": "The reason for restriction." } } }, - "ReservationOrderResponse" : { - "type" : "object", - "x-ms-azure-resource" : true, - "properties" : { - "etag" : { - "type" : "integer" - }, - "id" : { - "type" : "string", - "readOnly" : true, - "description" : "Identifier of the reservation" - }, - "name" : { - "type" : "string", - "readOnly" : true, - "description" : "Name of the reservation" - }, - "properties" : { - "x-ms-client-flatten" : true, - "$ref" : "#/definitions/ReservationOrderProperties" - }, - "type" : { - "type" : "string", - "readOnly" : true, - "description" : "Type of resource. \"Microsoft.Capacity/reservations\"" + "ReservationOrderResponse": { + "type": "object", + "x-ms-azure-resource": true, + "properties": { + "etag": { + "type": "integer" + }, + "id": { + "type": "string", + "readOnly": true, + "description": "Identifier of the reservation" + }, + "name": { + "type": "string", + "readOnly": true, + "description": "Name of the reservation" + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ReservationOrderProperties" + }, + "type": { + "type": "string", + "readOnly": true, + "description": "Type of resource. \"Microsoft.Capacity/reservations\"" } } }, - "ReservationTerm" : { - "type" : "string", - "description" : "Represent the term of Reservation.", - "enum" : [ "P1Y", "P3Y" ], - "x-ms-enum" : { - "name" : "ReservationTerm", - "modelAsString" : true + "ReservationTerm": { + "type": "string", + "description": "Represent the term of Reservation.", + "enum": [ + "P1Y", + "P3Y" + ], + "x-ms-enum": { + "name": "ReservationTerm", + "modelAsString": true } }, - "ReservationOrderProperties" : { - "type" : "object", - "properties" : { - "displayName" : { - "type" : "string", - "description" : "Friendly name for user to easily identified the reservation." - }, - "requestDateTime" : { - "type" : "string", - "format" : "date-time", - "description" : "This is the DateTime when the reservation was initially requested for purchase." - }, - "createdDateTime" : { - "type" : "string", - "format" : "date-time", - "description" : "This is the DateTime when the reservation was created." - }, - "expiryDate" : { - "type" : "string", - "format" : "date", - "description" : "This is the date when the Reservation will expire." - }, - "originalQuantity" : { - "$ref" : "#/definitions/ReservationQuantity" - }, - "term" : { - "$ref" : "#/definitions/ReservationTerm" - }, - "provisioningState" : { - "type" : "string", - "description" : "Current state of the reservation." - }, - "reservations" : { - "type" : "array", - "items" : { - "$ref" : "#/definitions/ReservationResponse" + "ReservationOrderProperties": { + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Friendly name for user to easily identified the reservation." + }, + "requestDateTime": { + "type": "string", + "format": "date-time", + "description": "This is the DateTime when the reservation was initially requested for purchase." + }, + "createdDateTime": { + "type": "string", + "format": "date-time", + "description": "This is the DateTime when the reservation was created." + }, + "expiryDate": { + "type": "string", + "format": "date", + "description": "This is the date when the Reservation will expire." + }, + "originalQuantity": { + "$ref": "#/definitions/ReservationQuantity" + }, + "term": { + "$ref": "#/definitions/ReservationTerm" + }, + "provisioningState": { + "type": "string", + "description": "Current state of the reservation." + }, + "reservations": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" } } } }, - "ReservationResponse" : { - "type" : "object", - "x-ms-azure-resource" : true, - "properties" : { - "location" : { - "type" : "string", - "readOnly" : true, - "description" : "The Azure Region where the reserved resource lives." - }, - "etag" : { - "type" : "integer" - }, - "id" : { - "type" : "string", - "readOnly" : true, - "description" : "Identifier of the reservation" - }, - "name" : { - "type" : "string", - "readOnly" : true, - "description" : "Name of the reservation" - }, - "sku" : { - "$ref" : "#/definitions/SkuName" - }, - "properties" : { - "$ref" : "#/definitions/ReservationProperties" - }, - "type" : { - "type" : "string", - "readOnly" : true, - "description" : "Type of resource. \"Microsoft.Capacity/reservationOrders/reservations\"" + "ReservationResponse": { + "type": "object", + "x-ms-azure-resource": true, + "properties": { + "location": { + "type": "string", + "readOnly": true, + "description": "The Azure Region where the reserved resource lives." + }, + "etag": { + "type": "integer" + }, + "id": { + "type": "string", + "readOnly": true, + "description": "Identifier of the reservation" + }, + "name": { + "type": "string", + "readOnly": true, + "description": "Name of the reservation" + }, + "sku": { + "$ref": "#/definitions/SkuName" + }, + "properties": { + "$ref": "#/definitions/ReservationProperties" + }, + "type": { + "type": "string", + "readOnly": true, + "description": "Type of resource. \"Microsoft.Capacity/reservationOrders/reservations\"" } } }, - "CalculatePriceResponse" : { - "type" : "object", - "properties" : { - "properties" : { - "$ref" : "#/definitions/CalculatePriceResponseProperties" + "CalculatePriceResponse": { + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/CalculatePriceResponseProperties" } } }, - "CalculatePriceResponseProperties" : { - "type" : "object", - "properties" : { - "billingCurrencyTotal" : { - "type" : "object", - "description" : "Currency and amount that customer will be charged in customer's local currency. Tax is not included.", - "properties" : { - "currencyCode" : { - "type" : "string" + "CalculatePriceResponseProperties": { + "type": "object", + "properties": { + "billingCurrencyTotal": { + "type": "object", + "description": "Currency and amount that customer will be charged in customer's local currency. Tax is not included.", + "properties": { + "currencyCode": { + "type": "string" }, - "amount" : { - "type" : "number" + "amount": { + "type": "number" } } }, - "isBillingPartnerManaged" : { - "description" : "True if billing is managed by Microsoft Partner. Used only for CSP accounts.", - "type" : "boolean" + "isBillingPartnerManaged": { + "description": "True if billing is managed by Microsoft Partner. Used only for CSP accounts.", + "type": "boolean" }, - "reservationOrderId" : { - "description" : "GUID that represents reservation order that can be placed after calculating price.", - "type" : "string" + "reservationOrderId": { + "description": "GUID that represents reservation order that can be placed after calculating price.", + "type": "string" }, - "skuTitle" : { - "description" : "Title of SKU that is being purchased.", - "type" : "string" + "skuTitle": { + "description": "Title of SKU that is being purchased.", + "type": "string" }, - "skuDescription" : { - "description" : "Description of SKU that is being purchased.", - "type" : "string" + "skuDescription": { + "description": "Description of SKU that is being purchased.", + "type": "string" }, - "pricingCurrencyTotal" : { - "type" : "object", - "description" : "Amount that Microsoft uses for record. Used during refund for calculating refund limit. Tax is not included.", - "properties" : { - "currencyCode" : { - "type" : "string" + "pricingCurrencyTotal": { + "type": "object", + "description": "Amount that Microsoft uses for record. Used during refund for calculating refund limit. Tax is not included.", + "properties": { + "currencyCode": { + "type": "string" }, - "amount" : { - "type" : "number" + "amount": { + "type": "number" } } } } }, - "ReservationProperties" : { - "type" : "object", - "properties" : { - "reservedResourceType" : { - "$ref" : "#/definitions/ReservedResourceType" + "ReservationProperties": { + "type": "object", + "properties": { + "reservedResourceType": { + "$ref": "#/definitions/ReservedResourceType" }, - "instanceFlexibility" : { - "$ref" : "#/definitions/InstanceFlexibility" + "instanceFlexibility": { + "$ref": "#/definitions/InstanceFlexibility" }, - "displayName" : { - "type" : "string", - "description" : "Friendly name for user to easily identify the reservation" + "displayName": { + "type": "string", + "description": "Friendly name for user to easily identify the reservation" }, - "appliedScopes" : { - "$ref" : "#/definitions/AppliedScopes" + "appliedScopes": { + "$ref": "#/definitions/AppliedScopes" }, - "appliedScopeType" : { - "$ref" : "#/definitions/AppliedScopeType" + "appliedScopeType": { + "$ref": "#/definitions/AppliedScopeType" }, - "quantity" : { - "$ref" : "#/definitions/ReservationQuantity" + "quantity": { + "$ref": "#/definitions/ReservationQuantity" }, - "provisioningState" : { - "type" : "string", - "description" : "Current state of the reservation." + "provisioningState": { + "type": "string", + "description": "Current state of the reservation." }, - "effectiveDateTime" : { - "type" : "string", - "format" : "date-time", - "description" : "DateTime of the Reservation starting when this version is effective from." + "effectiveDateTime": { + "type": "string", + "format": "date-time", + "description": "DateTime of the Reservation starting when this version is effective from." }, - "lastUpdatedDateTime" : { - "type" : "string", - "format" : "date-time", - "description" : "DateTime of the last time the Reservation was updated.", - "readOnly" : true + "lastUpdatedDateTime": { + "type": "string", + "format": "date-time", + "description": "DateTime of the last time the Reservation was updated.", + "readOnly": true }, - "expiryDate" : { - "type" : "string", - "format" : "date", - "description" : "This is the date when the Reservation will expire." + "expiryDate": { + "type": "string", + "format": "date", + "description": "This is the date when the Reservation will expire." }, - "skuDescription" : { - "type" : "string", - "description" : "Description of the SKU in english." + "skuDescription": { + "type": "string", + "description": "Description of the SKU in english." }, - "extendedStatusInfo" : { - "$ref" : "#/definitions/ExtendedStatusInfo" + "extendedStatusInfo": { + "$ref": "#/definitions/ExtendedStatusInfo" }, - "splitProperties" : { - "$ref" : "#/definitions/ReservationSplitProperties" + "splitProperties": { + "$ref": "#/definitions/ReservationSplitProperties" }, - "mergeProperties" : { - "$ref" : "#/definitions/ReservationMergeProperties" + "mergeProperties": { + "$ref": "#/definitions/ReservationMergeProperties" } } }, - "ReservationSplitProperties" : { - "type" : "object", - "properties" : { - "splitDestinations" : { - "type" : "array", - "items" : { - "type" : "string" + "ReservationSplitProperties": { + "type": "object", + "properties": { + "splitDestinations": { + "type": "array", + "items": { + "type": "string" }, - "description" : "List of destination Resource Id that are created due to split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + "description": "List of destination Resource Id that are created due to split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" }, - "splitSource" : { - "type" : "string", - "description" : "Resource Id of the Reservation from which this is split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + "splitSource": { + "type": "string", + "description": "Resource Id of the Reservation from which this is split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" } } }, - "ReservationMergeProperties" : { - "type" : "object", - "properties" : { - "mergeDestination" : { - "type" : "string", - "description" : "Reservation Resource Id Created due to the merge. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - }, - "mergeSources" : { - "type" : "array", - "items" : { - "type" : "string" + "ReservationMergeProperties": { + "type": "object", + "properties": { + "mergeDestination": { + "type": "string", + "description": "Reservation Resource Id Created due to the merge. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + }, + "mergeSources": { + "type": "array", + "items": { + "type": "string" }, - "description" : "Resource Ids of the Source Reservation's merged to form this Reservation. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + "description": "Resource Ids of the Source Reservation's merged to form this Reservation. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" } } }, - "PurchaseRequestProperties" : { - "type" : "object", - "properties" : { - "reservedResourceType" : { - "$ref" : "#/definitions/ReservedResourceType" + "PurchaseRequestProperties": { + "type": "object", + "properties": { + "reservedResourceType": { + "$ref": "#/definitions/ReservedResourceType" }, - "billingScopeId" : { - "$ref" : "#/definitions/BillingScopeId" + "billingScopeId": { + "$ref": "#/definitions/BillingScopeId" }, - "term" : { - "$ref" : "#/definitions/ReservationTerm" + "term": { + "$ref": "#/definitions/ReservationTerm" }, - "quantity" : { - "$ref" : "#/definitions/ReservationQuantity" + "quantity": { + "$ref": "#/definitions/ReservationQuantity" }, - "displayName" : { - "type" : "string", - "description" : "Friendly name of the Reservation" + "displayName": { + "type": "string", + "description": "Friendly name of the Reservation" }, - "appliedScopeType" : { - "$ref" : "#/definitions/AppliedScopeType" + "appliedScopeType": { + "$ref": "#/definitions/AppliedScopeType" }, - "appliedScopes" : { - "$ref" : "#/definitions/AppliedScopes" + "appliedScopes": { + "$ref": "#/definitions/AppliedScopes" }, - "reservedResourceProperties" : { - "type" : "object", - "description" : "Properties specific to each reserved resource type. Not required if not applicable.", - "properties" : { - "instanceFlexibility" : { - "$ref" : "#/definitions/InstanceFlexibility" + "reservedResourceProperties": { + "type": "object", + "description": "Properties specific to each reserved resource type. Not required if not applicable.", + "properties": { + "instanceFlexibility": { + "$ref": "#/definitions/InstanceFlexibility" } } } } }, - "PatchProperties" : { - "type" : "object", - "properties" : { - "appliedScopeType" : { - "$ref" : "#/definitions/AppliedScopeType" + "PatchProperties": { + "type": "object", + "properties": { + "appliedScopeType": { + "$ref": "#/definitions/AppliedScopeType" }, - "appliedScopes" : { - "$ref" : "#/definitions/AppliedScopes" + "appliedScopes": { + "$ref": "#/definitions/AppliedScopes" }, - "instanceFlexibility" : { - "$ref" : "#/definitions/InstanceFlexibility" + "instanceFlexibility": { + "$ref": "#/definitions/InstanceFlexibility" }, - "name" : { - "type" : "string", - "description" : "Name of the Reservation" + "name": { + "type": "string", + "description": "Name of the Reservation" } } }, - "SplitProperties" : { - "type" : "object", - "properties" : { - "quantities" : { - "type" : "array", - "description" : "List of the quantities in the new reservations to create.", - "items" : { - "type" : "integer", - "minItems" : 2, - "maxItems" : 2 + "SplitProperties": { + "type": "object", + "properties": { + "quantities": { + "type": "array", + "description": "List of the quantities in the new reservations to create.", + "items": { + "type": "integer", + "minItems": 2, + "maxItems": 2 } }, - "reservationId" : { - "type" : "string", - "description" : "Resource id of the reservation to be split. Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + "reservationId": { + "type": "string", + "description": "Resource id of the reservation to be split. Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" } } }, - "MergeProperties" : { - "type" : "object", - "properties" : { - "sources" : { - "type" : "array", - "description" : "Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}", - "items" : { - "type" : "string" + "MergeProperties": { + "type": "object", + "properties": { + "sources": { + "type": "array", + "description": "Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}", + "items": { + "type": "string" } } } }, - "MergeRequest" : { - "type" : "object", - "properties" : { - "properties" : { - "x-ms-client-flatten" : true, - "$ref" : "#/definitions/MergeProperties" + "MergeRequest": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/MergeProperties" } } }, - "PurchaseRequest" : { - "type" : "object", - "properties" : { - "sku" : { - "$ref" : "#/definitions/SkuName" - }, - "location" : { - "type" : "string", - "description" : "The Azure Region where the reserved resource lives." - }, - "properties" : { - "x-ms-client-flatten" : true, - "$ref" : "#/definitions/PurchaseRequestProperties" + "PurchaseRequest": { + "type": "object", + "properties": { + "sku": { + "$ref": "#/definitions/SkuName" + }, + "location": { + "type": "string", + "description": "The Azure Region where the reserved resource lives." + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/PurchaseRequestProperties" } } }, - "Patch" : { - "type" : "object", - "properties" : { - "properties" : { - "x-ms-client-flatten" : true, - "$ref" : "#/definitions/PatchProperties" + "Patch": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/PatchProperties" } } }, - "SplitRequest" : { - "type" : "object", - "properties" : { - "properties" : { - "x-ms-client-flatten" : true, - "$ref" : "#/definitions/SplitProperties" + "SplitRequest": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SplitProperties" } } }, - "Error" : { - "type" : "object", - "properties" : { - "error" : { - "$ref" : "#/definitions/ExtendedErrorInfo" + "Error": { + "type": "object", + "properties": { + "error": { + "$ref": "#/definitions/ExtendedErrorInfo" } } }, - "ExtendedErrorInfo" : { - "type" : "object", - "properties" : { - "code" : { - "$ref" : "#/definitions/ErrorResponseCode" - }, - "message" : { - "type" : "string" + "ExtendedErrorInfo": { + "type": "object", + "properties": { + "code": { + "$ref": "#/definitions/ErrorResponseCode" + }, + "message": { + "type": "string" } } }, - "ExtendedStatusInfo" : { - "type" : "object", - "properties" : { - "statusCode" : { - "$ref" : "#/definitions/ReservationStatusCode" - }, - "message" : { - "type" : "string", - "description" : "The message giving detailed information about the status code." + "ExtendedStatusInfo": { + "type": "object", + "properties": { + "statusCode": { + "$ref": "#/definitions/ReservationStatusCode" + }, + "message": { + "type": "string", + "description": "The message giving detailed information about the status code." } } }, - "ReservationOrderList" : { - "type" : "object", - "properties" : { - "value" : { - "type" : "array", - "items" : { - "$ref" : "#/definitions/ReservationOrderResponse" + "ReservationOrderList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationOrderResponse" } }, - "nextLink" : { - "type" : "string", - "description" : "Url to get the next page of reservationOrders." + "nextLink": { + "type": "string", + "description": "Url to get the next page of reservationOrders." } } }, - "ReservationList" : { - "type" : "object", - "properties" : { - "value" : { - "type" : "array", - "items" : { - "$ref" : "#/definitions/ReservationResponse" + "ReservationList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" } }, - "nextLink" : { - "type" : "string", - "description" : "Url to get the next page of reservations." + "nextLink": { + "type": "string", + "description": "Url to get the next page of reservations." } } }, - "AppliedReservations" : { - "type" : "object", - "properties" : { - "id" : { - "type" : "string", - "description" : "Identifier of the applied reservations", - "readOnly" : true - }, - "name" : { - "type" : "string", - "description" : "Name of resource", - "readOnly" : true - }, - "type" : { - "type" : "string", - "description" : "Type of resource. \"Microsoft.Capacity/AppliedReservations\"", - "readOnly" : true - }, - "properties" : { - "x-ms-client-flatten" : true, - "$ref" : "#/definitions/AppliedReservationsProperties" + "AppliedReservations": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Identifier of the applied reservations", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Name of resource", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Type of resource. \"Microsoft.Capacity/AppliedReservations\"", + "readOnly": true + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/AppliedReservationsProperties" } } }, - "AppliedReservationsProperties" : { - "type" : "object", - "properties" : { - "reservationOrderIds" : { - "$ref" : "#/definitions/AppliedReservationList" + "AppliedReservationsProperties": { + "type": "object", + "properties": { + "reservationOrderIds": { + "$ref": "#/definitions/AppliedReservationList" } } }, - "AppliedReservationList" : { - "type" : "object", - "properties" : { - "value" : { - "type" : "array", - "items" : { - "type" : "string", - "description" : "Reservation resource Id. \"/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}\"" + "AppliedReservationList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string", + "description": "Reservation resource Id. \"/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}\"" } }, - "nextLink" : { - "type" : "string", - "description" : "Url to get the next page of reservations" + "nextLink": { + "type": "string", + "description": "Url to get the next page of reservations" } } }, - "OperationList" : { - "type" : "object", - "properties" : { - "value" : { - "type" : "array", - "items" : { - "$ref" : "#/definitions/OperationResponse" + "OperationList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/OperationResponse" } }, - "nextLink" : { - "type" : "string", - "description" : "Url to get the next page of items." + "nextLink": { + "type": "string", + "description": "Url to get the next page of items." } } }, - "OperationResponse" : { - "type" : "object", - "properties" : { - "name" : { - "type" : "string" + "OperationResponse": { + "type": "object", + "properties": { + "name": { + "type": "string" }, - "display" : { - "$ref" : "#/definitions/OperationDisplay" + "display": { + "$ref": "#/definitions/OperationDisplay" }, - "origin" : { - "type" : "string" + "origin": { + "type": "string" } } }, - "OperationDisplay" : { - "type" : "object", - "properties" : { - "provider" : { - "type" : "string" + "OperationDisplay": { + "type": "object", + "properties": { + "provider": { + "type": "string" }, - "resource" : { - "type" : "string" + "resource": { + "type": "string" }, - "operation" : { - "type" : "string" + "operation": { + "type": "string" }, - "description" : { - "type" : "string" + "description": { + "type": "string" } } }, - "InstanceFlexibility" : { - "type" : "string", - "description" : "Turning this on will apply the reservation discount to other VMs in the same VM size group. Only specify for VirtualMachines reserved resource type.", - "enum" : [ "On", "Off" ], - "x-ms-enum" : { - "name" : "InstanceFlexibility", - "modelAsString" : true + "InstanceFlexibility": { + "type": "string", + "description": "Turning this on will apply the reservation discount to other VMs in the same VM size group. Only specify for VirtualMachines reserved resource type.", + "enum": [ + "On", + "Off" + ], + "x-ms-enum": { + "name": "InstanceFlexibility", + "modelAsString": true } }, - "AppliedScopeType" : { - "type" : "string", - "description" : "Type of the Applied Scope.", - "enum" : [ "Single", "Shared" ], - "x-ms-enum" : { - "name" : "AppliedScopeType", - "modelAsString" : true + "AppliedScopeType": { + "type": "string", + "description": "Type of the Applied Scope.", + "enum": [ + "Single", + "Shared" + ], + "x-ms-enum": { + "name": "AppliedScopeType", + "modelAsString": true } }, - "AppliedScopes" : { - "type" : "array", - "description" : "List of the subscriptions that the benefit will be applied. Do not specify if AppliedScopeType is Shared.", - "items" : { - "type" : "string", - "minItems" : 1, - "maxItems" : 1 + "AppliedScopes": { + "type": "array", + "description": "List of the subscriptions that the benefit will be applied. Do not specify if AppliedScopeType is Shared.", + "items": { + "type": "string", + "minItems": 1, + "maxItems": 1 } }, - "BillingScopeId" : { - "type" : "string", - "description" : "Subscription that will be charged for purchasing Reservation" + "BillingScopeId": { + "type": "string", + "description": "Subscription that will be charged for purchasing Reservation" }, - "ReservationQuantity" : { - "type" : "integer", - "format" : "int32", - "description" : "Quantity of the SKUs that are part of the Reservation. Must be greater than zero." + "ReservationQuantity": { + "type": "integer", + "format": "int32", + "description": "Quantity of the SKUs that are part of the Reservation. Must be greater than zero." }, - "ReservedResourceType" : { - "type" : "string", - "description" : "The type of the resource that is being reserved.", - "enum" : [ "VirtualMachines", "SqlDatabases", "SuseLinux", "CosmosDb" ], - "x-ms-enum" : { - "name" : "ReservedResourceType", - "modelAsString" : true + "ReservedResourceType": { + "type": "string", + "description": "The type of the resource that is being reserved.", + "enum": [ + "VirtualMachines", + "SqlDatabases", + "SuseLinux", + "CosmosDb" + ], + "x-ms-enum": { + "name": "ReservedResourceType", + "modelAsString": true } } }, - "parameters" : { - "PurchaseParameter" : { - "name" : "body", - "x-ms-parameter-location" : "method", - "in" : "body", - "required" : true, - "description" : "Information needed for calculate or purchase reservation", - "schema" : { - "$ref" : "#/definitions/PurchaseRequest" + "parameters": { + "PurchaseParameter": { + "name": "body", + "x-ms-parameter-location": "method", + "in": "body", + "required": true, + "description": "Information needed for calculate or purchase reservation", + "schema": { + "$ref": "#/definitions/PurchaseRequest" } }, - "ReservationIdParameter" : { - "name" : "reservationId", - "x-ms-parameter-location" : "method", - "in" : "path", - "required" : true, - "type" : "string", - "description" : "Id of the Reservation Item" + "ReservationIdParameter": { + "name": "reservationId", + "x-ms-parameter-location": "method", + "in": "path", + "required": true, + "type": "string", + "description": "Id of the Reservation Item" }, - "MergeParameter" : { - "name" : "body", - "x-ms-parameter-location" : "method", - "in" : "body", - "required" : true, - "description" : "Information needed for commercial request for a reservation", - "schema" : { - "$ref" : "#/definitions/MergeRequest" + "MergeParameter": { + "name": "body", + "x-ms-parameter-location": "method", + "in": "body", + "required": true, + "description": "Information needed for commercial request for a reservation", + "schema": { + "$ref": "#/definitions/MergeRequest" } }, - "PatchParameter" : { - "name" : "parameters", - "x-ms-parameter-location" : "method", - "in" : "body", - "required" : true, - "description" : "Information needed to patch a reservation item", - "schema" : { - "$ref" : "#/definitions/Patch" + "PatchParameter": { + "name": "parameters", + "x-ms-parameter-location": "method", + "in": "body", + "required": true, + "description": "Information needed to patch a reservation item", + "schema": { + "$ref": "#/definitions/Patch" } }, - "SplitParameter" : { - "name" : "body", - "x-ms-parameter-location" : "method", - "in" : "body", - "required" : true, - "description" : "Information needed to Split a reservation item", - "schema" : { - "$ref" : "#/definitions/SplitRequest" + "SplitParameter": { + "name": "body", + "x-ms-parameter-location": "method", + "in": "body", + "required": true, + "description": "Information needed to Split a reservation item", + "schema": { + "$ref": "#/definitions/SplitRequest" } }, - "ApiVersionParameter" : { - "name" : "api-version", - "in" : "query", - "description" : "Supported version for this document is 2019-04-01", - "required" : true, - "type" : "string" + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "description": "Supported version for this document is 2019-04-01", + "required": true, + "type": "string" }, - "SubscriptionIdParameter" : { - "name" : "subscriptionId", - "x-ms-parameter-location" : "method", - "in" : "path", - "required" : true, - "type" : "string", - "description" : "Id of the subscription" + "SubscriptionIdParameter": { + "name": "subscriptionId", + "x-ms-parameter-location": "method", + "in": "path", + "required": true, + "type": "string", + "description": "Id of the subscription" }, - "ReservedResourceTypeIdParameter" : { - "name" : "reservedResourceType", - "x-ms-parameter-location" : "method", - "in" : "query", - "required" : true, - "type" : "string", - "description" : "The type of the resource for which the skus should be provided." + "ReservedResourceTypeIdParameter": { + "name": "reservedResourceType", + "x-ms-parameter-location": "method", + "in": "query", + "required": true, + "type": "string", + "description": "The type of the resource for which the skus should be provided." }, - "LocationIdParameter" : { - "name" : "location", - "x-ms-parameter-location" : "method", - "in" : "query", - "required" : false, - "type" : "string", - "description" : "Filters the skus based on the location specified in this parameter. This can be an azure region or global" + "LocationIdParameter": { + "name": "location", + "x-ms-parameter-location": "method", + "in": "query", + "required": false, + "type": "string", + "description": "Filters the skus based on the location specified in this parameter. This can be an azure region or global" }, - "ReservationOrderIdParameter" : { - "name" : "reservationOrderId", - "x-ms-parameter-location" : "method", - "in" : "path", - "required" : true, - "type" : "string", - "description" : "Order Id of the reservation" + "ReservationOrderIdParameter": { + "name": "reservationOrderId", + "x-ms-parameter-location": "method", + "in": "path", + "required": true, + "type": "string", + "description": "Order Id of the reservation" } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetAppliedReservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetAppliedReservations.json index be883b522e19..045a7d69cba8 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetAppliedReservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetAppliedReservations.json @@ -1,31 +1,34 @@ { -"parameters":{"api-version":"2017-11-01","subscriptionId":"23bc208b-083f-4901-ae85-4f98c0c3b4b6"}, -"responses": -{"200": -{ -"body": -{ - "id": "/subscriptions/23bc208b-083f-4901-ae85-4f98c0c3b4b6/providers/microsoft.capacity/AppliedReservations/default", - "type": "Microsoft.Capacity/AppliedReservations", - "name": "default", - "properties": { - "reservationOrderIds": { - "value": [ - "/providers/Microsoft.Capacity/reservationorders/e1eccf0b-2db4-4e84-97e7-98b50e9d46f7", - "/providers/Microsoft.Capacity/reservationorders/741a32eb-6158-4cee-9642-a0243ae79fac", - "/providers/Microsoft.Capacity/reservationorders/e061223d-fcff-4d10-bd49-56a740cfb96a", - "/providers/Microsoft.Capacity/reservationorders/2eeb7234-970e-4663-b60b-85241b515901", - "/providers/Microsoft.Capacity/reservationorders/9db2f4c5-b1c5-42a8-bd79-ee56cdde2c7f", - "/providers/Microsoft.Capacity/reservationorders/5da7a877-6d6e-44af-8880-ed3f533bf928", - "/providers/Microsoft.Capacity/reservationorders/f65b0d0a-f945-4105-821c-d00bc8bacde8", - "/providers/Microsoft.Capacity/reservationorders/51304124-e477-4b07-b9fa-03b05c8b924b", - "/providers/Microsoft.Capacity/reservationorders/f5409b98-8a42-4dc6-be0a-cc59bef4d0db", - "/providers/Microsoft.Capacity/reservationorders/a495550a-80a4-46f8-8843-34d4df46f9a6", - "/providers/Microsoft.Capacity/reservationorders/1a966e18-c272-4ce1-a0c2-d4e1039023c3", - "/providers/Microsoft.Capacity/reservationorders/939310b4-f9de-4645-9569-ab5b6cfe958e", - "/providers/Microsoft.Capacity/reservationorders/4193a889-7c3b-44dc-8b7b-bfd7aad6c723" - ] + "parameters": { + "api-version": "2017-11-01", + "subscriptionId": "23bc208b-083f-4901-ae85-4f98c0c3b4b6" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/23bc208b-083f-4901-ae85-4f98c0c3b4b6/providers/microsoft.capacity/AppliedReservations/default", + "type": "Microsoft.Capacity/AppliedReservations", + "name": "default", + "properties": { + "reservationOrderIds": { + "value": [ + "/providers/Microsoft.Capacity/reservationorders/e1eccf0b-2db4-4e84-97e7-98b50e9d46f7", + "/providers/Microsoft.Capacity/reservationorders/741a32eb-6158-4cee-9642-a0243ae79fac", + "/providers/Microsoft.Capacity/reservationorders/e061223d-fcff-4d10-bd49-56a740cfb96a", + "/providers/Microsoft.Capacity/reservationorders/2eeb7234-970e-4663-b60b-85241b515901", + "/providers/Microsoft.Capacity/reservationorders/9db2f4c5-b1c5-42a8-bd79-ee56cdde2c7f", + "/providers/Microsoft.Capacity/reservationorders/5da7a877-6d6e-44af-8880-ed3f533bf928", + "/providers/Microsoft.Capacity/reservationorders/f65b0d0a-f945-4105-821c-d00bc8bacde8", + "/providers/Microsoft.Capacity/reservationorders/51304124-e477-4b07-b9fa-03b05c8b924b", + "/providers/Microsoft.Capacity/reservationorders/f5409b98-8a42-4dc6-be0a-cc59bef4d0db", + "/providers/Microsoft.Capacity/reservationorders/a495550a-80a4-46f8-8843-34d4df46f9a6", + "/providers/Microsoft.Capacity/reservationorders/1a966e18-c272-4ce1-a0c2-d4e1039023c3", + "/providers/Microsoft.Capacity/reservationorders/939310b4-f9de-4645-9569-ab5b6cfe958e", + "/providers/Microsoft.Capacity/reservationorders/4193a889-7c3b-44dc-8b7b-bfd7aad6c723" + ] + } + } + } } } } -}}} \ No newline at end of file diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetCatalog.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetCatalog.json index 18239bc9c61a..6b680012346e 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetCatalog.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetCatalog.json @@ -6,77 +6,77 @@ "responses": { "200": { "body": [ - { - "resourceType": "virtualMachines", - "name": "Standard_DS4_v2", - "tier": "Standard", - "size": "DS4_v2", - "terms": [ - "P1Y", - "P3Y" - ], - "locations": [ - "eastus" - ], - "restrictions": [] - }, - { - "resourceType": "virtualMachines", - "name": "Standard_D14_v2_Promo", - "tier": "Standard", - "size": "D14_v2_Promo", - "terms": [ - "P1Y", - "P3Y" - ], - "locations": [ - "CanadaCentral" - ], - "restrictions": [ - { - "type": "Term", - "values": [ - "P1Y" - ], - "reasonCode": "NotAvailableForSubscription" - }, - { - "type": "Term", - "values": [ - "P3Y" - ], - "reasonCode": "NotAvailableForSubscription" - } - ] - }, - { - "resourceType": "virtualMachines", - "name": "Standard_DS2_v2", - "tier": "Standard", - "size": "DS2_v2", - "terms": [ - "P1Y", - "P3Y" - ], - "locations": [ - "eastus" - ], - "restrictions": [] - }, - { - "resourceType": "virtualMachines", - "name": "Standard_DS1_v2", - "tier": "Standard", - "size": "DS1_v2", - "terms": [ - "P1Y", - "P3Y" - ], - "locations": [ - "eastus" - ], - "restrictions": [] - } + { + "resourceType": "virtualMachines", + "name": "Standard_DS4_v2", + "tier": "Standard", + "size": "DS4_v2", + "terms": [ + "P1Y", + "P3Y" + ], + "locations": [ + "eastus" + ], + "restrictions": [] + }, + { + "resourceType": "virtualMachines", + "name": "Standard_D14_v2_Promo", + "tier": "Standard", + "size": "D14_v2_Promo", + "terms": [ + "P1Y", + "P3Y" + ], + "locations": [ + "CanadaCentral" + ], + "restrictions": [ + { + "type": "Term", + "values": [ + "P1Y" + ], + "reasonCode": "NotAvailableForSubscription" + }, + { + "type": "Term", + "values": [ + "P3Y" + ], + "reasonCode": "NotAvailableForSubscription" + } + ] + }, + { + "resourceType": "virtualMachines", + "name": "Standard_DS2_v2", + "tier": "Standard", + "size": "DS2_v2", + "terms": [ + "P1Y", + "P3Y" + ], + "locations": [ + "eastus" + ], + "restrictions": [] + }, + { + "resourceType": "virtualMachines", + "name": "Standard_DS1_v2", + "tier": "Standard", + "size": "DS1_v2", + "terms": [ + "P1Y", + "P3Y" + ], + "locations": [ + "eastus" + ], + "restrictions": [] + } ] } } diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetOperations.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetOperations.json index 6f7c26704656..091c7a0c92c0 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetOperations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetOperations.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationDetails.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationDetails.json index 8b445066f237..5419dd6d4c25 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationDetails.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationDetails.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationOrderDetails.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationOrderDetails.json index f4a4470980e2..8ed0b7fb2eef 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationOrderDetails.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationOrderDetails.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationOrders.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationOrders.json index 6deddef7ffcc..e5f3ca7a0d51 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationOrders.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationOrders.json @@ -83,4 +83,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationRevisions.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationRevisions.json index 7b9023ebfb90..d754fc2e19e0 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationRevisions.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservationRevisions.json @@ -125,4 +125,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservations.json index ce72bea86f36..bd73bb3e1be0 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/GetReservations.json @@ -135,4 +135,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/MergeReservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/MergeReservations.json index 318b0733f288..c20dcb0ecee1 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/MergeReservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/MergeReservations.json @@ -3,7 +3,7 @@ "api-version": "2017-11-01", "reservationOrderId": "276e7ae4-84d0-4da6-ab4b-d6b94f3557da", "body": { - "properties" : { + "properties": { "sources": [ "/providers/Microsoft.Capacity/reservationOrders/c0565a8a-4491-4e77-b07b-5e6d66718e1c/reservations/cea04232-932e-47db-acb5-e29a945ecc73", "/providers/Microsoft.Capacity/reservationOrders/c0565a8a-4491-4e77-b07b-5e6d66718e1c/reservations/5bf54dc7-dacd-4f46-a16b-7b78f4a59799" @@ -108,8 +108,8 @@ } ] }, - "202" : { + "202": { "body": "" } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/SplitReservation.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/SplitReservation.json index 8ca9357bebdc..5748c448f403 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/SplitReservation.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/SplitReservation.json @@ -99,8 +99,8 @@ } ] }, - "202" : { + "202": { "body": "" } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/UpdateReservation.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/UpdateReservation.json index b65ce3b907c7..102576ecfe15 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/UpdateReservation.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/examples/UpdateReservation.json @@ -4,7 +4,7 @@ "reservationOrderId": "276e7ae4-84d0-4da6-ab4b-d6b94f3557da", "reservationId": "6ef59113-3482-40da-8d79-787f823e34bc", "parameters": { - "properties" : { + "properties": { "appliedScopeType": "Shared" } } @@ -41,4 +41,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/reservations.json b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/reservations.json index 8f9e6fd9b1b8..6e31812fa2ce 100644 --- a/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/reservations.json +++ b/specification/reservations/resource-manager/Microsoft.Capacity/stable/2017-11-01/reservations.json @@ -1,1206 +1,1206 @@ { - "swagger": "2.0", - "info": { - "title": "Azure Reservation API", - "description": "This API describe Azure Reservation", - "version": "2017-11-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "produces": [ - "application/json" - ], - "consumes": [ - "application/json" - ], - "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" + "swagger": "2.0", + "info": { + "title": "Azure Reservation API", + "description": "This API describe Azure Reservation", + "version": "2017-11-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "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.Capacity/catalogs": { + "get": { + "summary": "Get the regions and skus that are available for RI purchase for the specified Azure subscription.", + "operationId": "GetCatalog", + "x-ms-examples": { + "Catalog": { + "$ref": "./examples/GetCatalog.json" + } + }, + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + } + ], + "tags": [ + "Catalog" + ], + "responses": { + "200": { + "description": "List of available resources", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/Catalog" + } + } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } } + } }, - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/catalogs": { - "get": { - "summary": "Get the regions and skus that are available for RI purchase for the specified Azure subscription.", - "operationId": "GetCatalog", - "x-ms-examples": { - "Catalog": { - "$ref": "./examples/GetCatalog.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "tags": [ - "Catalog" - ], - "responses": { - "200": { - "description": "List of available resources", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/Catalog" - } - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } - } + "/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/appliedReservations": { + "get": { + "summary": "Get list of applicable `Reservation`s.", + "description": "Get applicable `Reservation`s that are applied to this subscription.", + "operationId": "GetAppliedReservationList", + "x-ms-examples": { + "AppliedReservationList": { + "$ref": "./examples/GetAppliedReservations.json" + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/appliedReservations": { - "get": { - "summary": "Get list of applicable `Reservation`s.", - "description": "Get applicable `Reservation`s that are applied to this subscription.", - "operationId": "GetAppliedReservationList", - "x-ms-examples": { - "AppliedReservationList": { - "$ref": "./examples/GetAppliedReservations.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "tags": [ - "AppliedReservation" - ], - "responses": { - "200": { - "description": "Applicable `Reservation`s.", - "schema": { - "$ref": "#/definitions/AppliedReservations" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + } + ], + "tags": [ + "AppliedReservation" + ], + "responses": { + "200": { + "description": "Applicable `Reservation`s.", + "schema": { + "$ref": "#/definitions/AppliedReservations" } - }, - "/providers/Microsoft.Capacity/reservationOrders": { - "get": { - "summary": "Get all `ReservationOrder`s.", - "description": "List of all the `ReservationOrder`s that the user has access to in the current tenant.", - "operationId": "ReservationOrder_List", - "x-ms-examples": { - "ReservationOrderList": { - "$ref": "./examples/GetReservationOrders.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Reservation" - ], - "responses": { - "200": { - "description": "List of `ReservationOrder`s", - "schema": { - "$ref": "#/definitions/ReservationOrderList" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders": { + "get": { + "summary": "Get all `ReservationOrder`s.", + "description": "List of all the `ReservationOrder`s that the user has access to in the current tenant.", + "operationId": "ReservationOrder_List", + "x-ms-examples": { + "ReservationOrderList": { + "$ref": "./examples/GetReservationOrders.json" + } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}": { - "get": { - "summary": "Get a specific `ReservationOrder`.", - "description": "Get the details of the `ReservationOrder`.", - "operationId": "ReservationOrder_Get", - "x-ms-examples": { - "GetReservation": { - "$ref": "./examples/GetReservationOrderDetails.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Reservation" - ], - "responses": { - "200": { - "description": "Get the details of the `ReservationOrder`.", - "schema": { - "$ref": "#/definitions/ReservationOrderResponse" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } - } + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/split": { - "post": { - "summary": "Split the `Reservation`.", - "description": "Split a `Reservation` into two `Reservation`s with specified quantity distribution.\n", - "operationId": "Reservation_Split", - "x-ms-examples": { - "Split": { - "$ref": "./examples/SplitReservation.json" - } - }, - "x-ms-long-running-operation": true, - "parameters": [ - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SplitParameter" - } - ], - "tags": [ - "Reservation, Split" - ], - "responses": { - "200": { - "description": "List of `Reservation`s created after the split operation.", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/ReservationResponse" - } - } - }, - "202": { - "description": "The request is accepted and is being processed" - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "List of `ReservationOrder`s", + "schema": { + "$ref": "#/definitions/ReservationOrderList" } - }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/merge": { - "post": { - "summary": "Merges two `Reservation`s.", - "description": "Merge the specified `Reservation`s into a new `Reservation`. The two `Reservation`s being merged must have same properties.", - "operationId": "Reservation_Merge", - "x-ms-examples": { - "Merge": { - "$ref": "./examples/MergeReservations.json" - } - }, - "x-ms-long-running-operation": true, - "parameters": [ - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/MergeParameter" - } - ], - "tags": [ - "Reservation, Merge" - ], - "responses": { - "200": { - "description": "Returns the `Reservation` created after the merge.", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/ReservationResponse" - } - } - }, - "202": { - "description": "The request is accepted and is being processed" - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}": { + "get": { + "summary": "Get a specific `ReservationOrder`.", + "description": "Get the details of the `ReservationOrder`.", + "operationId": "ReservationOrder_Get", + "x-ms-examples": { + "GetReservation": { + "$ref": "./examples/GetReservationOrderDetails.json" + } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations": { - "get": { - "summary": "Get `Reservation`s in a given reservation Order", - "description": "List `Reservation`s within a single `ReservationOrder`.", - "operationId": "Reservation_List", - "x-ms-examples": { - "ReservationList": { - "$ref": "./examples/GetReservations.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "parameters": [ - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Reservation" - ], - "responses": { - "200": { - "description": "List `Reservation`s within a single `ReservationOrder`.", - "schema": { - "$ref": "#/definitions/ReservationList" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "Get the details of the `ReservationOrder`.", + "schema": { + "$ref": "#/definitions/ReservationOrderResponse" } - }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}": { - "get": { - "summary": "Get `Reservation` details.", - "description": "Get specific `Reservation` details.", - "operationId": "Reservation_Get", - "x-ms-examples": { - "GetReservation": { - "$ref": "./examples/GetReservationDetails.json" - } - }, - "parameters": [ - { - "$ref": "#/parameters/ReservationIdParameter" - }, - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Reservation" - ], - "responses": { - "200": { - "description": "Get `Reservation` details.", - "schema": { - "$ref": "#/definitions/ReservationResponse" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } - }, - "patch": { - "summary": "Updates a `Reservation`.", - "description": "Updates the applied scopes of the `Reservation`.", - "operationId": "Reservation_Update", - "x-ms-examples": { - "PatchReservation": { - "$ref": "./examples/UpdateReservation.json" - } - }, - "x-ms-long-running-operation": true, - "parameters": [ - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ReservationIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/PatchParameter" - } - ], - "tags": [ - "Reservation", - "ApplyScope" - ], - "responses": { - "200": { - "description": "Returns the updated `Reservation`.", - "schema": { - "$ref": "#/definitions/ReservationResponse" - } - }, - "202": { - "description": "The request is accepted and is being processed" - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/split": { + "post": { + "summary": "Split the `Reservation`.", + "description": "Split a `Reservation` into two `Reservation`s with specified quantity distribution.\n", + "operationId": "Reservation_Split", + "x-ms-examples": { + "Split": { + "$ref": "./examples/SplitReservation.json" + } }, - "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}/revisions": { - "get": { - "summary": "Get `Reservation` revisions.", - "description": "List of all the revisions for the `Reservation`.\n", - "operationId": "Reservation_ListRevisions", - "x-ms-examples": { - "ReservationRevisions": { - "$ref": "./examples/GetReservationRevisions.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "parameters": [ - { - "$ref": "#/parameters/ReservationIdParameter" - }, - { - "$ref": "#/parameters/ReservationOrderIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Reservation" - ], - "responses": { - "200": { - "description": "List of all the revisions for the `Reservation`.", - "schema": { - "$ref": "#/definitions/ReservationList" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + "x-ms-long-running-operation": true, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SplitParameter" + } + ], + "tags": [ + "Reservation, Split" + ], + "responses": { + "200": { + "description": "List of `Reservation`s created after the split operation.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" + } } + }, + "202": { + "description": "The request is accepted and is being processed" + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" + } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/merge": { + "post": { + "summary": "Merges two `Reservation`s.", + "description": "Merge the specified `Reservation`s into a new `Reservation`. The two `Reservation`s being merged must have same properties.", + "operationId": "Reservation_Merge", + "x-ms-examples": { + "Merge": { + "$ref": "./examples/MergeReservations.json" + } }, - "/providers/Microsoft.Capacity/operations": { - "get": { - "summary": "Get operations.", - "description": "List all the operations.", - "operationId": "Operation_List", - "x-ms-examples": { - "GetOperations": { - "$ref": "./examples/GetOperations.json" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "tags": [ - "Operation" - ], - "responses": { - "200": { - "description": "List all the operations.", - "schema": { - "$ref": "#/definitions/OperationList" - } - }, - "default": { - "description": "Unexpected error", - "schema": { - "$ref": "#/definitions/Error" - } - } - } + "x-ms-long-running-operation": true, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/MergeParameter" + } + ], + "tags": [ + "Reservation, Merge" + ], + "responses": { + "200": { + "description": "Returns the `Reservation` created after the merge.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" + } + } + }, + "202": { + "description": "The request is accepted and is being processed" + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } } + } }, - "definitions": { - "ReservationStatusCode": { - "type": "string", - "enum": [ - "None", - "Pending", - "Active", - "PurchaseError", - "PaymentInstrumentError", - "Split", - "Merged", - "Expired", - "Succeeded" - ] - }, - "ErrorResponseCode": { - "type": "string", - "enum": [ - "NotSpecified", - "InternalServerError", - "ServerTimeout", - "AuthorizationFailed", - "BadRequest", - "ClientCertificateThumbprintNotSet", - "InvalidRequestContent", - "OperationFailed", - "HttpMethodNotSupported", - "InvalidRequestUri", - "MissingTenantId", - "InvalidTenantId", - "InvalidReservationOrderId", - "InvalidReservationId", - "ReservationIdNotInReservationOrder", - "ReservationOrderNotFound", - "InvalidSubscriptionId", - "InvalidAccessToken", - "InvalidLocationId", - "UnauthenticatedRequestsThrottled", - "InvalidHealthCheckType", - "Forbidden", - "BillingScopeIdCannotBeChanged", - "AppliedScopesNotAssociatedWithCommerceAccount", - "AppliedScopesSameAsExisting", - "RoleAssignmentCreationFailed", - "ReservationOrderCreationFailed", - "ReservationOrderNotEnabled", - "CapacityUpdateScopesFailed", - "UnsupportedReservationTerm", - "ReservationOrderIdAlreadyExists", - "RiskCheckFailed", - "CreateQuoteFailed", - "ActivateQuoteFailed", - "NonsupportedAccountId", - "PaymentInstrumentNotFound", - "MissingAppliedScopesForSingle", - "NoValidReservationsToReRate", - "ReRateOnlyAllowedForEA", - "OperationCannotBePerformedInCurrentState", - "InvalidSingleAppliedScopesCount", - "InvalidFulfillmentRequestParameters", - "NotSupportedCountry", - "InvalidRefundQuantity", - "PurchaseError", - "BillingCustomerInputError", - "BillingPaymentInstrumentSoftError", - "BillingPaymentInstrumentHardError", - "BillingTransientError", - "BillingError", - "FulfillmentConfigurationError", - "FulfillmentOutOfStockError", - "FulfillmentTransientError", - "FulfillmentError", - "CalculatePriceFailed" - ] - }, - "ProvisioningState": { - "type": "string", - "description": "Represent the current state of the Reservation.", - "enum": [ - "Creating", - "PendingResourceHold", - "ConfirmedResourceHold", - "PendingBilling", - "ConfirmedBilling", - "Created", - "Succeeded", - "Cancelled", - "Expired", - "BillingFailed", - "Failed", - "Split", - "Merged" - ] - }, - "Location": { - "type": "string", - "description": "Location in which the Resources needs to be reserved. It cannot be changed after the resource has been created.", - "enum": [ - "westus", - "eastus", - "eastus2", - "northcentralus", - "westus2", - "southcentralus", - "centralus", - "westeurope", - "northeurope", - "eastasia", - "southeastasia", - "japaneast", - "japanwest", - "brazilsouth", - "australiaeast", - "australiasoutheast", - "southindia", - "westindia", - "centralindia", - "canadacentral", - "canadaeast", - "uksouth", - "westcentralus", - "ukwest" - ] - }, - "SkuName": { - "type": "object", - "properties": { - "name": { - "type": "string" - } + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations": { + "get": { + "summary": "Get `Reservation`s in a given reservation Order", + "description": "List `Reservation`s within a single `ReservationOrder`.", + "operationId": "Reservation_List", + "x-ms-examples": { + "ReservationList": { + "$ref": "./examples/GetReservations.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "List `Reservation`s within a single `ReservationOrder`.", + "schema": { + "$ref": "#/definitions/ReservationList" + } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}": { + "get": { + "summary": "Get `Reservation` details.", + "description": "Get specific `Reservation` details.", + "operationId": "Reservation_Get", + "x-ms-examples": { + "GetReservation": { + "$ref": "./examples/GetReservationDetails.json" + } }, - "Catalog": { - "type": "object", - "properties": { - "resourceType": { - "type": "string", - "description": "The type of resource the SKU applies to.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of SKU", - "readOnly": true - }, - "tier": { - "type": "string", - "description": "The tier of this SKU", - "readOnly": true - }, - "size": { - "type": "string", - "description": "The size of this SKU", - "readOnly": true - }, - "terms": { - "type": "array", - "readOnly": true, - "description": "Available reservation terms for this resource", - "items": { - "$ref": "#/definitions/ReservationTerm" - } - }, - "locations": { - "type": "array", - "readOnly": true, - "items": { - "type": "string", - "description": "The set of locations that the SKU is available." - } - }, - "capabilities": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SkuCapability" - } - }, - "restrictions": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SkuRestriction" - } - } + "parameters": [ + { + "$ref": "#/parameters/ReservationIdParameter" + }, + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "Get `Reservation` details.", + "schema": { + "$ref": "#/definitions/ReservationResponse" + } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + }, + "patch": { + "summary": "Updates a `Reservation`.", + "description": "Updates the applied scopes of the `Reservation`.", + "operationId": "Reservation_Update", + "x-ms-examples": { + "PatchReservation": { + "$ref": "./examples/UpdateReservation.json" + } }, - "SkuCapability": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "An invariant to describe the feature." - }, - "value": { - "type": "string", - "description": "An invariant if the feature is measured by quantity." - } + "x-ms-long-running-operation": true, + "parameters": [ + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ReservationIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/PatchParameter" + } + ], + "tags": [ + "Reservation", + "ApplyScope" + ], + "responses": { + "200": { + "description": "Returns the updated `Reservation`.", + "schema": { + "$ref": "#/definitions/ReservationResponse" } + }, + "202": { + "description": "The request is accepted and is being processed" + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" + } + } + } + } + }, + "/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}/revisions": { + "get": { + "summary": "Get `Reservation` revisions.", + "description": "List of all the revisions for the `Reservation`.\n", + "operationId": "Reservation_ListRevisions", + "x-ms-examples": { + "ReservationRevisions": { + "$ref": "./examples/GetReservationRevisions.json" + } }, - "SkuRestriction": { - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of restrictions." - }, - "values": { - "type": "array", - "items": { - "type": "string" - }, - "description": "The value of restrictions. If the restriction type is set to location. This would be different locations where the SKU is restricted." - }, - "reasonCode": { - "type": "string", - "description": "The reason for restriction." - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "parameters": [ + { + "$ref": "#/parameters/ReservationIdParameter" + }, + { + "$ref": "#/parameters/ReservationOrderIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Reservation" + ], + "responses": { + "200": { + "description": "List of all the revisions for the `Reservation`.", + "schema": { + "$ref": "#/definitions/ReservationList" + } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + }, + "/providers/Microsoft.Capacity/operations": { + "get": { + "summary": "Get operations.", + "description": "List all the operations.", + "operationId": "Operation_List", + "x-ms-examples": { + "GetOperations": { + "$ref": "./examples/GetOperations.json" + } }, - "ReservationOrderResponse": { - "type": "object", - "x-ms-azure-resource": true, - "properties": { - "etag": { - "type": "integer" - }, - "id": { - "type": "string", - "readOnly": true, - "description": "Identifier of the reservation" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Name of the reservation" - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ReservationOrderProperties" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Type of resource. \"Microsoft.Capacity/reservations\"" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "Operation" + ], + "responses": { + "200": { + "description": "List all the operations.", + "schema": { + "$ref": "#/definitions/OperationList" + } + }, + "default": { + "description": "Unexpected error", + "schema": { + "$ref": "#/definitions/Error" } + } + } + } + } + }, + "definitions": { + "ReservationStatusCode": { + "type": "string", + "enum": [ + "None", + "Pending", + "Active", + "PurchaseError", + "PaymentInstrumentError", + "Split", + "Merged", + "Expired", + "Succeeded" + ] + }, + "ErrorResponseCode": { + "type": "string", + "enum": [ + "NotSpecified", + "InternalServerError", + "ServerTimeout", + "AuthorizationFailed", + "BadRequest", + "ClientCertificateThumbprintNotSet", + "InvalidRequestContent", + "OperationFailed", + "HttpMethodNotSupported", + "InvalidRequestUri", + "MissingTenantId", + "InvalidTenantId", + "InvalidReservationOrderId", + "InvalidReservationId", + "ReservationIdNotInReservationOrder", + "ReservationOrderNotFound", + "InvalidSubscriptionId", + "InvalidAccessToken", + "InvalidLocationId", + "UnauthenticatedRequestsThrottled", + "InvalidHealthCheckType", + "Forbidden", + "BillingScopeIdCannotBeChanged", + "AppliedScopesNotAssociatedWithCommerceAccount", + "AppliedScopesSameAsExisting", + "RoleAssignmentCreationFailed", + "ReservationOrderCreationFailed", + "ReservationOrderNotEnabled", + "CapacityUpdateScopesFailed", + "UnsupportedReservationTerm", + "ReservationOrderIdAlreadyExists", + "RiskCheckFailed", + "CreateQuoteFailed", + "ActivateQuoteFailed", + "NonsupportedAccountId", + "PaymentInstrumentNotFound", + "MissingAppliedScopesForSingle", + "NoValidReservationsToReRate", + "ReRateOnlyAllowedForEA", + "OperationCannotBePerformedInCurrentState", + "InvalidSingleAppliedScopesCount", + "InvalidFulfillmentRequestParameters", + "NotSupportedCountry", + "InvalidRefundQuantity", + "PurchaseError", + "BillingCustomerInputError", + "BillingPaymentInstrumentSoftError", + "BillingPaymentInstrumentHardError", + "BillingTransientError", + "BillingError", + "FulfillmentConfigurationError", + "FulfillmentOutOfStockError", + "FulfillmentTransientError", + "FulfillmentError", + "CalculatePriceFailed" + ] + }, + "ProvisioningState": { + "type": "string", + "description": "Represent the current state of the Reservation.", + "enum": [ + "Creating", + "PendingResourceHold", + "ConfirmedResourceHold", + "PendingBilling", + "ConfirmedBilling", + "Created", + "Succeeded", + "Cancelled", + "Expired", + "BillingFailed", + "Failed", + "Split", + "Merged" + ] + }, + "Location": { + "type": "string", + "description": "Location in which the Resources needs to be reserved. It cannot be changed after the resource has been created.", + "enum": [ + "westus", + "eastus", + "eastus2", + "northcentralus", + "westus2", + "southcentralus", + "centralus", + "westeurope", + "northeurope", + "eastasia", + "southeastasia", + "japaneast", + "japanwest", + "brazilsouth", + "australiaeast", + "australiasoutheast", + "southindia", + "westindia", + "centralindia", + "canadacentral", + "canadaeast", + "uksouth", + "westcentralus", + "ukwest" + ] + }, + "SkuName": { + "type": "object", + "properties": { + "name": { + "type": "string" + } + } + }, + "Catalog": { + "type": "object", + "properties": { + "resourceType": { + "type": "string", + "description": "The type of resource the SKU applies to.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "The name of SKU", + "readOnly": true + }, + "tier": { + "type": "string", + "description": "The tier of this SKU", + "readOnly": true + }, + "size": { + "type": "string", + "description": "The size of this SKU", + "readOnly": true }, - "ReservationTerm": { + "terms": { + "type": "array", + "readOnly": true, + "description": "Available reservation terms for this resource", + "items": { + "$ref": "#/definitions/ReservationTerm" + } + }, + "locations": { + "type": "array", + "readOnly": true, + "items": { "type": "string", - "description": "Represent the term of Reservation.", - "enum": [ - "P1Y", - "P3Y" - ] - }, - "ReservationOrderProperties": { - "type": "object", - "properties": { - "displayName": { - "type": "string", - "description": "Friendly name for user to easily identified the reservation." - }, - "requestDateTime": { - "type": "string", - "format": "date-time", - "description": "This is the DateTime when the reservation was initially requested for purchase." - }, - "createdDateTime": { - "type": "string", - "format": "date-time", - "description": "This is the DateTime when the reservation was created." - }, - "expiryDate": { - "type": "string", - "format": "date", - "description": "This is the date when the Reservation will expire." - }, - "originalQuantity": { - "type": "integer", - "format": "int32", - "description": "Total Quantity of the SKUs purchased in the Reservation." - }, - "term": { - "$ref": "#/definitions/ReservationTerm" - }, - "provisioningState": { - "$ref": "#/definitions/ProvisioningState" - }, - "reservations": { - "type": "array", - "items": { - "$ref": "#/definitions/ReservationResponse" - } - } - } + "description": "The set of locations that the SKU is available." + } }, - "ReservationResponse": { - "type": "object", - "x-ms-azure-resource": true, - "properties": { - "location": { - "$ref": "#/definitions/Location" - }, - "etag": { - "type": "integer" - }, - "id": { - "type": "string", - "readOnly": true, - "description": "Identifier of the reservation" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Name of the reservation" - }, - "kind": { - "type": "string", - "description": "Resource Provider type to be reserved.", - "enum": [ - "Microsoft.Compute" - ], - "x-ms-enum": { - "name": "Kind", - "modelAsString": false - } - }, - "sku": { - "$ref": "#/definitions/SkuName" - }, - "properties": { - "$ref": "#/definitions/ReservationProperties" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Type of resource. \"Microsoft.Capacity/reservationOrders/reservations\"" - } - } + "capabilities": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/SkuCapability" + } }, - "ReservationProperties": { - "type": "object", - "properties": { - "displayName": { - "type": "string", - "description": "Friendly name for user to easily identify the reservation" - }, - "appliedScopes": { - "$ref": "#/definitions/AppliedScopes" - }, - "appliedScopeType": { - "$ref": "#/definitions/AppliedScopeType" - }, - "quantity": { - "type": "integer", - "format": "int32", - "description": "Quantity of the SKUs that are part of the Reservation." - }, - "provisioningState": { - "$ref": "#/definitions/ProvisioningState" - }, - "effectiveDateTime": { - "type": "string", - "format": "date-time", - "description": "DateTime of the Reservation starting when this version is effective from." - }, - "lastUpdatedDateTime": { - "type": "string", - "format": "date-time", - "description": "DateTime of the last time the Reservation was updated.", - "readOnly": true - }, - "expiryDate": { - "type": "string", - "format": "date", - "description": "This is the date when the Reservation will expire." - }, - "extendedStatusInfo": { - "$ref": "#/definitions/ExtendedStatusInfo" - }, - "splitProperties": { - "$ref": "#/definitions/ReservationSplitProperties" - }, - "mergeProperties": { - "$ref": "#/definitions/ReservationMergeProperties" - } - } + "restrictions": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/SkuRestriction" + } + } + } + }, + "SkuCapability": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "An invariant to describe the feature." }, - "ReservationSplitProperties": { - "type": "object", - "properties": { - "splitDestinations": { - "type": "array", - "items": { - "type": "string" - }, - "description": "List of destination Resource Id that are created due to split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - }, - "splitSource": { - "type": "string", - "description": "Resource Id of the Reservation from which this is split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - } - } + "value": { + "type": "string", + "description": "An invariant if the feature is measured by quantity." + } + } + }, + "SkuRestriction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of restrictions." }, - "ReservationMergeProperties": { - "type": "object", - "properties": { - "mergeDestination": { - "type": "string", - "description": "Reservation Resource Id Created due to the merge. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - }, - "mergeSources": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Resource Ids of the Source Reservation's merged to form this Reservation. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - } - } + "values": { + "type": "array", + "items": { + "type": "string" + }, + "description": "The value of restrictions. If the restriction type is set to location. This would be different locations where the SKU is restricted." }, - "PatchProperties": { - "type": "object", - "properties": { - "appliedScopeType": { - "$ref": "#/definitions/AppliedScopeType" - }, - "appliedScopes": { - "$ref": "#/definitions/AppliedScopes" - } - } + "reasonCode": { + "type": "string", + "description": "The reason for restriction." + } + } + }, + "ReservationOrderResponse": { + "type": "object", + "x-ms-azure-resource": true, + "properties": { + "etag": { + "type": "integer" }, - "SplitProperties": { - "type": "object", - "properties": { - "quantities": { - "type": "array", - "description": "List of the quantities in the new reservations to create.", - "items": { - "type": "integer", - "minItems": 2, - "maxItems": 2 - } - }, - "reservationId": { - "type": "string", - "description": "Resource id of the reservation to be split. Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" - } - } + "id": { + "type": "string", + "readOnly": true, + "description": "Identifier of the reservation" }, - "MergeProperties": { - "type": "object", - "properties": { - "sources": { - "type": "array", - "description": "Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}", - "items": { - "type": "string" - } - } - } + "name": { + "type": "string", + "readOnly": true, + "description": "Name of the reservation" }, - "MergeRequest": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/MergeProperties" - } - } + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ReservationOrderProperties" }, - "Patch": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/PatchProperties" - } - } + "type": { + "type": "string", + "readOnly": true, + "description": "Type of resource. \"Microsoft.Capacity/reservations\"" + } + } + }, + "ReservationTerm": { + "type": "string", + "description": "Represent the term of Reservation.", + "enum": [ + "P1Y", + "P3Y" + ] + }, + "ReservationOrderProperties": { + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Friendly name for user to easily identified the reservation." }, - "SplitRequest": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SplitProperties" - } - } + "requestDateTime": { + "type": "string", + "format": "date-time", + "description": "This is the DateTime when the reservation was initially requested for purchase." }, - "Error": { - "type": "object", - "properties": { - "error": { - "$ref": "#/definitions/ExtendedErrorInfo" - } - } + "createdDateTime": { + "type": "string", + "format": "date-time", + "description": "This is the DateTime when the reservation was created." }, - "ExtendedErrorInfo": { - "type": "object", - "properties": { - "code": { - "$ref": "#/definitions/ErrorResponseCode" - }, - "message": { - "type": "string" - } - } + "expiryDate": { + "type": "string", + "format": "date", + "description": "This is the date when the Reservation will expire." }, - "ExtendedStatusInfo": { - "type": "object", - "properties": { - "statusCode": { - "$ref": "#/definitions/ReservationStatusCode" - }, - "message": { - "type": "string", - "description": "The message giving detailed information about the status code." - } - } + "originalQuantity": { + "type": "integer", + "format": "int32", + "description": "Total Quantity of the SKUs purchased in the Reservation." }, - "ReservationOrderList": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ReservationOrderResponse" - } - }, - "nextLink": { - "type": "string", - "description": "Url to get the next page of reservationOrders." - } - } + "term": { + "$ref": "#/definitions/ReservationTerm" }, - "ReservationList": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ReservationResponse" - } - }, - "nextLink": { - "type": "string", - "description": "Url to get the next page of reservations." - } - } + "provisioningState": { + "$ref": "#/definitions/ProvisioningState" }, - "AppliedReservations": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "Identifier of the applied reservations", - "readOnly": true - }, - "name": { - "type": "string", - "description": "Name of resource", - "readOnly": true - }, - "type": { - "type": "string", - "description": "Type of resource. \"Microsoft.Capacity/AppliedReservations\"", - "readOnly": true - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/AppliedReservationsProperties" - } - } + "reservations": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" + } + } + } + }, + "ReservationResponse": { + "type": "object", + "x-ms-azure-resource": true, + "properties": { + "location": { + "$ref": "#/definitions/Location" }, - "AppliedReservationsProperties": { - "type": "object", - "properties": { - "reservationOrderIds": { - "$ref": "#/definitions/AppliedReservationList" - } - } + "etag": { + "type": "integer" }, - "AppliedReservationList": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "type": "string", - "description": "Reservation resource Id. \"/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}\"" - } - }, - "nextLink": { - "type": "string", - "description": "Url to get the next page of reservations" - } - } + "id": { + "type": "string", + "readOnly": true, + "description": "Identifier of the reservation" }, - "OperationList": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/OperationResponse" - } - }, - "nextLink": { - "type": "string", - "description": "Url to get the next page of items." - } - } + "name": { + "type": "string", + "readOnly": true, + "description": "Name of the reservation" }, - "OperationResponse": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "display": { - "$ref": "#/definitions/OperationDisplay" - }, - "origin": { - "type": "string" - } - } + "kind": { + "type": "string", + "description": "Resource Provider type to be reserved.", + "enum": [ + "Microsoft.Compute" + ], + "x-ms-enum": { + "name": "Kind", + "modelAsString": false + } }, - "OperationDisplay": { - "type": "object", - "properties": { - "provider": { - "type": "string" - }, - "resource": { - "type": "string" - }, - "operation": { - "type": "string" - }, - "description": { - "type": "string" - } - } + "sku": { + "$ref": "#/definitions/SkuName" }, - "AppliedScopeType": { - "type": "string", - "description": "Type of the Applied Scope.", - "enum": [ - "Single", - "Shared" - ] - }, - "AppliedScopes": { - "type": "array", - "description": "List of the subscriptions that the benefit will be applied. Do not specify if AppliedScopeType is Shared.", - "items": { - "type": "string", - "minItems": 1, - "maxItems": 1 - } + "properties": { + "$ref": "#/definitions/ReservationProperties" + }, + "type": { + "type": "string", + "readOnly": true, + "description": "Type of resource. \"Microsoft.Capacity/reservationOrders/reservations\"" } + } }, - "parameters": { - "ReservationIdParameter": { - "name": "reservationId", - "x-ms-parameter-location": "method", - "in": "path", - "required": true, - "type": "string", - "description": "Id of the Reservation Item" - }, - "MergeParameter": { - "name": "body", - "x-ms-parameter-location": "method", - "in": "body", - "required": true, - "description": "Information needed for commercial request for a reservation", - "schema": { - "$ref": "#/definitions/MergeRequest" - } + "ReservationProperties": { + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Friendly name for user to easily identify the reservation" }, - "PatchParameter": { - "name": "parameters", - "x-ms-parameter-location": "method", - "in": "body", - "required": true, - "description": "Information needed to patch a reservation item", - "schema": { - "$ref": "#/definitions/Patch" - } + "appliedScopes": { + "$ref": "#/definitions/AppliedScopes" }, - "SplitParameter": { - "name": "body", - "x-ms-parameter-location": "method", - "in": "body", - "required": true, - "description": "Information needed to Split a reservation item", - "schema": { - "$ref": "#/definitions/SplitRequest" - } + "appliedScopeType": { + "$ref": "#/definitions/AppliedScopeType" + }, + "quantity": { + "type": "integer", + "format": "int32", + "description": "Quantity of the SKUs that are part of the Reservation." + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState" }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "Supported version.", - "required": true, + "effectiveDateTime": { + "type": "string", + "format": "date-time", + "description": "DateTime of the Reservation starting when this version is effective from." + }, + "lastUpdatedDateTime": { + "type": "string", + "format": "date-time", + "description": "DateTime of the last time the Reservation was updated.", + "readOnly": true + }, + "expiryDate": { + "type": "string", + "format": "date", + "description": "This is the date when the Reservation will expire." + }, + "extendedStatusInfo": { + "$ref": "#/definitions/ExtendedStatusInfo" + }, + "splitProperties": { + "$ref": "#/definitions/ReservationSplitProperties" + }, + "mergeProperties": { + "$ref": "#/definitions/ReservationMergeProperties" + } + } + }, + "ReservationSplitProperties": { + "type": "object", + "properties": { + "splitDestinations": { + "type": "array", + "items": { "type": "string" + }, + "description": "List of destination Resource Id that are created due to split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" }, - "SubscriptionIdParameter": { - "name": "subscriptionId", - "x-ms-parameter-location": "method", - "in": "path", - "required": true, - "type": "string", - "description": "Id of the subscription" + "splitSource": { + "type": "string", + "description": "Resource Id of the Reservation from which this is split. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + } + } + }, + "ReservationMergeProperties": { + "type": "object", + "properties": { + "mergeDestination": { + "type": "string", + "description": "Reservation Resource Id Created due to the merge. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + }, + "mergeSources": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Resource Ids of the Source Reservation's merged to form this Reservation. Format of the resource Id is /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + } + } + }, + "PatchProperties": { + "type": "object", + "properties": { + "appliedScopeType": { + "$ref": "#/definitions/AppliedScopeType" + }, + "appliedScopes": { + "$ref": "#/definitions/AppliedScopes" + } + } + }, + "SplitProperties": { + "type": "object", + "properties": { + "quantities": { + "type": "array", + "description": "List of the quantities in the new reservations to create.", + "items": { + "type": "integer", + "minItems": 2, + "maxItems": 2 + } }, - "ReservationOrderIdParameter": { - "name": "reservationOrderId", - "x-ms-parameter-location": "method", - "in": "path", - "required": true, + "reservationId": { + "type": "string", + "description": "Resource id of the reservation to be split. Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}" + } + } + }, + "MergeProperties": { + "type": "object", + "properties": { + "sources": { + "type": "array", + "description": "Format of the resource id should be /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}", + "items": { + "type": "string" + } + } + } + }, + "MergeRequest": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/MergeProperties" + } + } + }, + "Patch": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/PatchProperties" + } + } + }, + "SplitRequest": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SplitProperties" + } + } + }, + "Error": { + "type": "object", + "properties": { + "error": { + "$ref": "#/definitions/ExtendedErrorInfo" + } + } + }, + "ExtendedErrorInfo": { + "type": "object", + "properties": { + "code": { + "$ref": "#/definitions/ErrorResponseCode" + }, + "message": { + "type": "string" + } + } + }, + "ExtendedStatusInfo": { + "type": "object", + "properties": { + "statusCode": { + "$ref": "#/definitions/ReservationStatusCode" + }, + "message": { + "type": "string", + "description": "The message giving detailed information about the status code." + } + } + }, + "ReservationOrderList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationOrderResponse" + } + }, + "nextLink": { + "type": "string", + "description": "Url to get the next page of reservationOrders." + } + } + }, + "ReservationList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ReservationResponse" + } + }, + "nextLink": { + "type": "string", + "description": "Url to get the next page of reservations." + } + } + }, + "AppliedReservations": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Identifier of the applied reservations", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Name of resource", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Type of resource. \"Microsoft.Capacity/AppliedReservations\"", + "readOnly": true + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/AppliedReservationsProperties" + } + } + }, + "AppliedReservationsProperties": { + "type": "object", + "properties": { + "reservationOrderIds": { + "$ref": "#/definitions/AppliedReservationList" + } + } + }, + "AppliedReservationList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { "type": "string", - "description": "Order Id of the reservation\n" + "description": "Reservation resource Id. \"/providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}\"" + } + }, + "nextLink": { + "type": "string", + "description": "Url to get the next page of reservations" + } + } + }, + "OperationList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/OperationResponse" + } + }, + "nextLink": { + "type": "string", + "description": "Url to get the next page of items." + } + } + }, + "OperationResponse": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "display": { + "$ref": "#/definitions/OperationDisplay" + }, + "origin": { + "type": "string" } + } + }, + "OperationDisplay": { + "type": "object", + "properties": { + "provider": { + "type": "string" + }, + "resource": { + "type": "string" + }, + "operation": { + "type": "string" + }, + "description": { + "type": "string" + } + } + }, + "AppliedScopeType": { + "type": "string", + "description": "Type of the Applied Scope.", + "enum": [ + "Single", + "Shared" + ] + }, + "AppliedScopes": { + "type": "array", + "description": "List of the subscriptions that the benefit will be applied. Do not specify if AppliedScopeType is Shared.", + "items": { + "type": "string", + "minItems": 1, + "maxItems": 1 + } + } + }, + "parameters": { + "ReservationIdParameter": { + "name": "reservationId", + "x-ms-parameter-location": "method", + "in": "path", + "required": true, + "type": "string", + "description": "Id of the Reservation Item" + }, + "MergeParameter": { + "name": "body", + "x-ms-parameter-location": "method", + "in": "body", + "required": true, + "description": "Information needed for commercial request for a reservation", + "schema": { + "$ref": "#/definitions/MergeRequest" + } + }, + "PatchParameter": { + "name": "parameters", + "x-ms-parameter-location": "method", + "in": "body", + "required": true, + "description": "Information needed to patch a reservation item", + "schema": { + "$ref": "#/definitions/Patch" + } + }, + "SplitParameter": { + "name": "body", + "x-ms-parameter-location": "method", + "in": "body", + "required": true, + "description": "Information needed to Split a reservation item", + "schema": { + "$ref": "#/definitions/SplitRequest" + } + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "description": "Supported version.", + "required": true, + "type": "string" + }, + "SubscriptionIdParameter": { + "name": "subscriptionId", + "x-ms-parameter-location": "method", + "in": "path", + "required": true, + "type": "string", + "description": "Id of the subscription" + }, + "ReservationOrderIdParameter": { + "name": "reservationOrderId", + "x-ms-parameter-location": "method", + "in": "path", + "required": true, + "type": "string", + "description": "Order Id of the reservation\n" } -} \ No newline at end of file + } +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryAdd.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryAdd.json index 2f61c242e3ae..0185d29943a7 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryAdd.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryAdd.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryDelete.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryDelete.json index 1288229841cf..bc4e038b053b 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryDelete.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryGet.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryGet.json index c9fc0f4bb736..cfcca047862c 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryGet.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryGet.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryList.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryList.json index 7e5316caa4c8..08e276d0a25a 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryList.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryList.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryUpdate.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryUpdate.json index c7a0b88d640f..ac56f403fe66 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryUpdate.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/GraphQueryUpdate.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/OperationsList.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/OperationsList.json index 5944d80fcfc5..2970577f27fc 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/OperationsList.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/OperationsList.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangeDetails.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangeDetails.json index 9aa3710fa824..ee247b481942 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangeDetails.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangeDetails.json @@ -109,4 +109,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChanges.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChanges.json index 105886fa17a4..d0fe2842eef0 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChanges.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChanges.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangesFirstPage.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangesFirstPage.json index 46a32929e680..1cca64db7344 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangesFirstPage.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangesFirstPage.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangesNextPage.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangesNextPage.json index 9137145ef488..2e88e0bf18b1 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangesNextPage.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourceChangesNextPage.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesAliasQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesAliasQuery.json index 445ca5440e1d..67823c9961a3 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesAliasQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesAliasQuery.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesBasicQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesBasicQuery.json index 904d96b34a02..3bbde6133710 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesBasicQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesBasicQuery.json @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesComplexQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesComplexQuery.json index 32b567768ff8..253028e21e0e 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesComplexQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesComplexQuery.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFacetQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFacetQuery.json index 1f921397d927..8cbc6826c13a 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFacetQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFacetQuery.json @@ -254,4 +254,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFilterQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFilterQuery.json index 83e0e399a19f..a4d8d209f871 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFilterQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFilterQuery.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFirstPageQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFirstPageQuery.json index e64a1acaff21..7c69b5c7a952 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFirstPageQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesFirstPageQuery.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesNextPageQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesNextPageQuery.json index 02b743cb9e7e..bd12577cddac 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesNextPageQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesNextPageQuery.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesPropertiesQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesPropertiesQuery.json index 851e8ce0de3e..62a0dc4b1a03 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesPropertiesQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesPropertiesQuery.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesQueryOptions.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesQueryOptions.json index 721822db8cfa..4a9a11d0b015 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesQueryOptions.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesQueryOptions.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesRandomPageQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesRandomPageQuery.json index 9b129896551a..ad9062ccce5e 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesRandomPageQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesRandomPageQuery.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesSummarizeQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesSummarizeQuery.json index 452bb7c4c67a..068dd1419b57 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesSummarizeQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/examples/ResourcesSummarizeQuery.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/graphquery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/graphquery.json index bc26c8e4b273..a9962a07564c 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/graphquery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/graphquery.json @@ -490,4 +490,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/resourcegraph.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/resourcegraph.json index 50600b2a8cd8..5da698105fc1 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/resourcegraph.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/preview/2018-09-01-preview/resourcegraph.json @@ -74,17 +74,39 @@ } }, "x-ms-examples": { - "Basic query": { "$ref": "./examples/ResourcesBasicQuery.json" }, - "Filter resources": { "$ref": "./examples/ResourcesFilterQuery.json" }, - "Summarize resources by location": { "$ref": "./examples/ResourcesSummarizeQuery.json" }, - "Complex query": { "$ref": "./examples/ResourcesComplexQuery.json" }, - "Access a properties field": { "$ref": "./examples/ResourcesPropertiesQuery.json" }, - "Access a properties field through alias": { "$ref": "./examples/ResourcesAliasQuery.json" }, - "Query with a facet request": { "$ref": "./examples/ResourcesFacetQuery.json" }, - "Query options": { "$ref": "./examples/ResourcesQueryOptions.json" }, - "First page query": { "$ref": "./examples/ResourcesFirstPageQuery.json" }, - "Next page query": { "$ref": "./examples/ResourcesNextPageQuery.json" }, - "Random page query": { "$ref": "./examples/ResourcesRandomPageQuery.json" } + "Basic query": { + "$ref": "./examples/ResourcesBasicQuery.json" + }, + "Filter resources": { + "$ref": "./examples/ResourcesFilterQuery.json" + }, + "Summarize resources by location": { + "$ref": "./examples/ResourcesSummarizeQuery.json" + }, + "Complex query": { + "$ref": "./examples/ResourcesComplexQuery.json" + }, + "Access a properties field": { + "$ref": "./examples/ResourcesPropertiesQuery.json" + }, + "Access a properties field through alias": { + "$ref": "./examples/ResourcesAliasQuery.json" + }, + "Query with a facet request": { + "$ref": "./examples/ResourcesFacetQuery.json" + }, + "Query options": { + "$ref": "./examples/ResourcesQueryOptions.json" + }, + "First page query": { + "$ref": "./examples/ResourcesFirstPageQuery.json" + }, + "Next page query": { + "$ref": "./examples/ResourcesNextPageQuery.json" + }, + "Random page query": { + "$ref": "./examples/ResourcesRandomPageQuery.json" + } } } }, @@ -124,9 +146,15 @@ } }, "x-ms-examples": { - "Basic query": { "$ref": "./examples/ResourceChanges.json" }, - "First page query": { "$ref": "./examples/ResourceChangesFirstPage.json" }, - "Next page query": { "$ref": "./examples/ResourceChangesNextPage.json" } + "Basic query": { + "$ref": "./examples/ResourceChanges.json" + }, + "First page query": { + "$ref": "./examples/ResourceChangesFirstPage.json" + }, + "Next page query": { + "$ref": "./examples/ResourceChangesNextPage.json" + } } } }, @@ -180,7 +208,9 @@ "description": "Lists all of the available REST API operations.", "operationId": "Operations_List", "x-ms-examples": { - "OperationsList": { "$ref": "./examples/OperationsList.json" } + "OperationsList": { + "$ref": "./examples/OperationsList.json" + } }, "parameters": [ { @@ -442,7 +472,7 @@ ], "discriminator": "resultType" }, - "FacetResult" : { + "FacetResult": { "x-ms-discriminator-value": "FacetResult", "description": "Successfully executed facet containing additional statistics on the response of a query.", "type": "object", @@ -473,7 +503,7 @@ } ] }, - "FacetError" : { + "FacetError": { "x-ms-discriminator-value": "FacetError", "description": "A facet whose execution resulted in an error.", "type": "object", @@ -693,7 +723,7 @@ ] }, "OperationListResult": { - "description": "Result of the request to list Resource Graph operations. It contains a list of operations and a URL link to get the next set of results.", + "description": "Result of the request to list Resource Graph operations. It contains a list of operations and a URL link to get the next set of results.", "properties": { "value": { "type": "array", @@ -737,7 +767,7 @@ } }, "origin": { - "type" : "string", + "type": "string", "description": "The origin of operations." } } @@ -752,4 +782,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/OperationsList.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/OperationsList.json index 79d59d0ffc85..c3d1cfb273da 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/OperationsList.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/OperationsList.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesAliasQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesAliasQuery.json index 8c547e4ce52b..8c68f7545c26 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesAliasQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesAliasQuery.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesBasicQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesBasicQuery.json index 9dc3d28facbd..c23993881909 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesBasicQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesBasicQuery.json @@ -68,4 +68,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesComplexQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesComplexQuery.json index f6e2da1bb9ec..f1b7189545ac 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesComplexQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesComplexQuery.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFacetQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFacetQuery.json index ef1250b5456a..e3d7b650a59d 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFacetQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFacetQuery.json @@ -254,4 +254,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFilterQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFilterQuery.json index 82a92060fc56..415550beb442 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFilterQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFilterQuery.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFirstPageQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFirstPageQuery.json index 58a156ae5e10..ab07de5cda31 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFirstPageQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesFirstPageQuery.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesNextPageQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesNextPageQuery.json index ea4204a3135a..52ffa9961959 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesNextPageQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesNextPageQuery.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesPropertiesQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesPropertiesQuery.json index ea28579a9ce0..e3d0ab3edfa3 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesPropertiesQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesPropertiesQuery.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesQueryOptions.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesQueryOptions.json index 4128ea2cbf98..eecd61ed7694 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesQueryOptions.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesQueryOptions.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesRandomPageQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesRandomPageQuery.json index 46fa1f960613..f706d0afce1f 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesRandomPageQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesRandomPageQuery.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesSummarizeQuery.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesSummarizeQuery.json index 853fd2e3b292..5affd35b5386 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesSummarizeQuery.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/examples/ResourcesSummarizeQuery.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/resourcegraph.json b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/resourcegraph.json index 893c8a6986f6..5a76305a7a52 100644 --- a/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/resourcegraph.json +++ b/specification/resourcegraph/resource-manager/Microsoft.ResourceGraph/stable/2019-04-01/resourcegraph.json @@ -74,17 +74,39 @@ } }, "x-ms-examples": { - "Basic query": { "$ref": "./examples/ResourcesBasicQuery.json" }, - "Filter resources": { "$ref": "./examples/ResourcesFilterQuery.json" }, - "Summarize resources by location": { "$ref": "./examples/ResourcesSummarizeQuery.json" }, - "Complex query": { "$ref": "./examples/ResourcesComplexQuery.json" }, - "Access a properties field": { "$ref": "./examples/ResourcesPropertiesQuery.json" }, - "Access a properties field through alias": { "$ref": "./examples/ResourcesAliasQuery.json" }, - "Query with a facet request": { "$ref": "./examples/ResourcesFacetQuery.json" }, - "Query options": { "$ref": "./examples/ResourcesQueryOptions.json" }, - "First page query": { "$ref": "./examples/ResourcesFirstPageQuery.json" }, - "Next page query": { "$ref": "./examples/ResourcesNextPageQuery.json" }, - "Random page query": { "$ref": "./examples/ResourcesRandomPageQuery.json" } + "Basic query": { + "$ref": "./examples/ResourcesBasicQuery.json" + }, + "Filter resources": { + "$ref": "./examples/ResourcesFilterQuery.json" + }, + "Summarize resources by location": { + "$ref": "./examples/ResourcesSummarizeQuery.json" + }, + "Complex query": { + "$ref": "./examples/ResourcesComplexQuery.json" + }, + "Access a properties field": { + "$ref": "./examples/ResourcesPropertiesQuery.json" + }, + "Access a properties field through alias": { + "$ref": "./examples/ResourcesAliasQuery.json" + }, + "Query with a facet request": { + "$ref": "./examples/ResourcesFacetQuery.json" + }, + "Query options": { + "$ref": "./examples/ResourcesQueryOptions.json" + }, + "First page query": { + "$ref": "./examples/ResourcesFirstPageQuery.json" + }, + "Next page query": { + "$ref": "./examples/ResourcesNextPageQuery.json" + }, + "Random page query": { + "$ref": "./examples/ResourcesRandomPageQuery.json" + } } } }, @@ -96,7 +118,9 @@ "description": "Lists all of the available REST API operations.", "operationId": "Operations_List", "x-ms-examples": { - "OperationsList": { "$ref": "./examples/OperationsList.json" } + "OperationsList": { + "$ref": "./examples/OperationsList.json" + } }, "parameters": [ { diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatus_GetByResource.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatus_GetByResource.json index 0dbde551c497..e8f5773270f2 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatus_GetByResource.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatus_GetByResource.json @@ -1,38 +1,40 @@ { - "parameters": { - "resourceUri":"resourceUri", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines /rhctestenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Unavailable", - "summary": "We're sorry, we couldn't automatically recover your virtual machine", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "Disk problems are preventing us from automatically recovering your virtual machine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime": "2016-03-29T09:13:00Z", - "resolutionETA": "2016-03-29T09:37:00Z", - "recommendedActions": [{ - "action": "To start this virtual machine, open the resource blade and click Start", - "actionUrl": "<#ResourceBlade>", - "actionUrlText": "resource blade" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - }] - } - } - } - } -} \ No newline at end of file + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines /rhctestenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We're sorry, we couldn't automatically recover your virtual machine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Disk problems are preventing us from automatically recovering your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "recommendedActions": [ + { + "action": "To start this virtual machine, open the resource blade and click Start", + "actionUrl": "<#ResourceBlade>", + "actionUrlText": "resource blade" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ] + } + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_List.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_List.json index 2d0a1b8bebbe..177d8c192766 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_List.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_List.json @@ -1,58 +1,60 @@ -{ - "parameters":{ - "resourceUri":"resourceUri", - "api-version":"2015-01-01" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id":"/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", - "name":"current", - "type":"Microsoft.ResourceHealth/AvailabilityStatuses", - "location":"eastus", - "properties":{ - "availabilityState":"Unavailable", - "summary":"We're sorry, we couldn't automatically recover your virtual machine", - "reasonType":"Unplanned", - "reasonChronicity":"Persistent", - "detailedStatus":"Disk problems are preventing us from automatically recovering your virtual machine", - "occuredTime":"2016-03-29T09:12:00Z", - "reportedTime":"2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime":"2016-03-29T09:13:00Z", - "resolutionETA":"2016-03-29T09:37:00Z", - "serviceImpactingEvents": [{ - "eventStartTime":"2016-05-02T19:23:13.7115125Z", - "eventStatusLastModifiedTime":"2016-05-02T19:27:04.9543491Z", - "correlationId":"b56d0180-2d6c-4f7b-b750-c1eca681874c", - "status":{ - "value":"Resolved" - }, - "incidentProperties":{ - "title":"Virtual Machines - West Europe [West Europe]", - "service":"Virtual Machines", - "region":"East US", - "incidentType":"outage" - } - }] +{ + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We're sorry, we couldn't automatically recover your virtual machine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Disk problems are preventing us from automatically recovering your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "serviceImpactingEvents": [ + { + "eventStartTime": "2016-05-02T19:23:13.7115125Z", + "eventStatusLastModifiedTime": "2016-05-02T19:27:04.9543491Z", + "correlationId": "b56d0180-2d6c-4f7b-b750-c1eca681874c", + "status": { + "value": "Resolved" + }, + "incidentProperties": { + "title": "Virtual Machines - West Europe [West Europe]", + "service": "Virtual Machines", + "region": "East US", + "incidentType": "outage" } - }, - { - "id":"/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/2016-03-28+16%3a23%3a00Z", - "name":"2016-03-28+16%3a23%3a00Z", - "type":"Microsoft.ResourceHealth/AvailabilityStatuses", - "location":"eastus", - "properties":{ - "availabilityState":"Available", - "summary":"This virtual machine is running normally", - "reasonChronicity":"Persistent", - "detailedStatus":"There aren’t any known Azure platform problems affecting this virtual machine", - "occuredTime":"2016-03-28T16:23:00Z" - } - } - ] - } + } + ] + } + }, + { + "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/2016-03-28+16%3a23%3a00Z", + "name": "2016-03-28+16%3a23%3a00Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Available", + "summary": "This virtual machine is running normally", + "reasonChronicity": "Persistent", + "detailedStatus": "There aren’t any known Azure platform problems affecting this virtual machine", + "occuredTime": "2016-03-28T16:23:00Z" + } + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_ListByResourceGroup.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_ListByResourceGroup.json index 20343e9b2739..8bc0bca65b4f 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_ListByResourceGroup.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_ListByResourceGroup.json @@ -1,67 +1,73 @@ { - "parameters": { - "subscriptionId": "subscriptionId", - "resourceGroupName": "resourceGroupName", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Available", - "summary": "Vm is available", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "We have not seen any issues with your virtual machine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "recentlyResolved": { - "unavailableOccurredTime": "2017-02-28T00:48:00Z", - "resolvedTime": "2017-02-28T00:49:00Z", - "unavailabilitySummary": "We are sorry your SQL database is unavailable" - }, - "recommendedActions": [{ - "action": "To start this virtualmachine, open the resource blade and click Start", - "actionUrl": "<#ResourceBlade>", - "actionUrlText": "resourceblade" - }] - } - }, - { - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Unavailable", - "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime": "2016-03-29T09:13:00Z", - "resolutionETA": "2016-03-29T09:37:00Z", - "recommendedActions": [{ - "action": "To start this virtualmachine, open the resource blade", - "actionUrl": "<#ResourceBlade>", - "actionUrlText": "resourceblade" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contactsupport" - }] - } - }], - "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "subscriptionId", + "resourceGroupName": "resourceGroupName", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Available", + "summary": "Vm is available", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "We have not seen any issues with your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "recentlyResolved": { + "unavailableOccurredTime": "2017-02-28T00:48:00Z", + "resolvedTime": "2017-02-28T00:49:00Z", + "unavailabilitySummary": "We are sorry your SQL database is unavailable" + }, + "recommendedActions": [ + { + "action": "To start this virtualmachine, open the resource blade and click Start", + "actionUrl": "<#ResourceBlade>", + "actionUrlText": "resourceblade" + } + ] + } + }, + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "recommendedActions": [ + { + "action": "To start this virtualmachine, open the resource blade", + "actionUrl": "<#ResourceBlade>", + "actionUrlText": "resourceblade" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contactsupport" + } + ] + } + } + ], + "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_ListBySubscriptionId.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_ListBySubscriptionId.json index 4d528c251803..ccb7392bc628 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_ListBySubscriptionId.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/AvailabilityStatuses_ListBySubscriptionId.json @@ -1,66 +1,72 @@ { - "parameters": { - "subscriptionId": "subscriptionId", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Available", - "summary": "Vm is available", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "We have not seen any issues with your virtual machine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "recentlyResolved": { - "unavailableOccurredTime": "2017-02-28T00:48:00Z", - "resolvedTime": "2017-02-28T00:49:00Z", - "unavailabilitySummary": "We are sorry your SQL database is unavailable" - }, - "recommendedActions": [{ - "action": "To start this virtualmachine, open the resource blade and click Start", - "actionUrl": "<#ResourceBlade>", - "actionUrlText": "resourceblade" - }] - } - }, - { - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Unavailable", - "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime": "2016-03-29T09:13:00Z", - "resolutionETA": "2016-03-29T09:37:00Z", - "recommendedActions": [{ - "action": "To start this virtualmachine, open the resource blade", - "actionUrl": "<#ResourceBlade>", - "actionUrlText": "resourceblade" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contactsupport" - }] - } - }], - "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "subscriptionId", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Available", + "summary": "Vm is available", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "We have not seen any issues with your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "recentlyResolved": { + "unavailableOccurredTime": "2017-02-28T00:48:00Z", + "resolvedTime": "2017-02-28T00:49:00Z", + "unavailabilitySummary": "We are sorry your SQL database is unavailable" + }, + "recommendedActions": [ + { + "action": "To start this virtualmachine, open the resource blade and click Start", + "actionUrl": "<#ResourceBlade>", + "actionUrlText": "resourceblade" + } + ] + } + }, + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "recommendedActions": [ + { + "action": "To start this virtualmachine, open the resource blade", + "actionUrl": "<#ResourceBlade>", + "actionUrlText": "resourceblade" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contactsupport" + } + ] + } + } + ], + "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/Events_ListBySingleResource.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/Events_ListBySingleResource.json index 36ae72f55dfa..344b1d11a36f 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/Events_ListBySingleResource.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/Events_ListBySingleResource.json @@ -93,7 +93,7 @@ "enableChatWithUs": false, "priority": 2, "lastUpdateTime": "2018-11-08T00:00:00Z", - "hirStage": "active" + "hirStage": "active" } } ], diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/ImpactedResources_ListBySubscriptionId.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/ImpactedResources_ListBySubscriptionId.json index c786fbff29cc..d6e560b28f29 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/ImpactedResources_ListBySubscriptionId.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/preview/2018-08-01/examples/ImpactedResources_ListBySubscriptionId.json @@ -1,38 +1,38 @@ { - "parameters": { - "subscriptionId": "subscriptionId", - "api-version": "2018-07-01-preview", - "$filter": "service eq 'Virtual Machines' or region eq 'West US'" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/providers/Microsoft.ResourceHealth/impactedResources/current", - "name": "current", - "type": "Microsoft.ResourceHealth/impactedResources", - "properties": { - "availabilityState": "Available", - "summary": "Vm is available", - "reasonType": "Unplanned", - "occuredTime": "2016-03-29T09:12:00Z" - } - }, - { - "id": "/providers/Microsoft.ResourceHealth/impactedResources/current", - "name": "current", - "type": "Microsoft.ResourceHealth/impactedResources", - "properties": { - "availabilityState": "Unavailable", - "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", - "reasonType": "Unplanned", - "occuredTime": "2016-03-29T09:12:00Z" - } - } - ], - "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "subscriptionId", + "api-version": "2018-07-01-preview", + "$filter": "service eq 'Virtual Machines' or region eq 'West US'" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/providers/Microsoft.ResourceHealth/impactedResources/current", + "name": "current", + "type": "Microsoft.ResourceHealth/impactedResources", + "properties": { + "availabilityState": "Available", + "summary": "Vm is available", + "reasonType": "Unplanned", + "occuredTime": "2016-03-29T09:12:00Z" + } + }, + { + "id": "/providers/Microsoft.ResourceHealth/impactedResources/current", + "name": "current", + "type": "Microsoft.ResourceHealth/impactedResources", + "properties": { + "availabilityState": "Unavailable", + "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", + "reasonType": "Unplanned", + "occuredTime": "2016-03-29T09:12:00Z" + } + } + ], + "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatus_GetByResource.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatus_GetByResource.json index 60b052266093..bd6d49d3da78 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatus_GetByResource.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatus_GetByResource.json @@ -1,38 +1,40 @@ { - "parameters": { - "resourceUri":"resourceUri", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines /rhctestenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Unavailable", - "summary": "We're sorry, we couldn't automatically recover your virtual machine", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "Disk problems are preventing us from automatically recovering your virtual machine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime": "2016-03-29T09:13:00Z", - "resolutionETA": "2016-03-29T09:37:00Z", - "RecommendedActions": [{ - "Action": "To start this virtual machine, open the resource blade and click Start", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resource blade" - }, - { - "Action": "If you are experiencing problems you believe are caused by Azure, contact support", - "ActionUrl": "<#SupportCase>", - "ActionUrlText": "contact support" - }] - } - } - } - } -} \ No newline at end of file + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines /rhctestenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We're sorry, we couldn't automatically recover your virtual machine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Disk problems are preventing us from automatically recovering your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "RecommendedActions": [ + { + "Action": "To start this virtual machine, open the resource blade and click Start", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resource blade" + }, + { + "Action": "If you are experiencing problems you believe are caused by Azure, contact support", + "ActionUrl": "<#SupportCase>", + "ActionUrlText": "contact support" + } + ] + } + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_List.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_List.json index 2d0a1b8bebbe..177d8c192766 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_List.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_List.json @@ -1,58 +1,60 @@ -{ - "parameters":{ - "resourceUri":"resourceUri", - "api-version":"2015-01-01" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id":"/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", - "name":"current", - "type":"Microsoft.ResourceHealth/AvailabilityStatuses", - "location":"eastus", - "properties":{ - "availabilityState":"Unavailable", - "summary":"We're sorry, we couldn't automatically recover your virtual machine", - "reasonType":"Unplanned", - "reasonChronicity":"Persistent", - "detailedStatus":"Disk problems are preventing us from automatically recovering your virtual machine", - "occuredTime":"2016-03-29T09:12:00Z", - "reportedTime":"2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime":"2016-03-29T09:13:00Z", - "resolutionETA":"2016-03-29T09:37:00Z", - "serviceImpactingEvents": [{ - "eventStartTime":"2016-05-02T19:23:13.7115125Z", - "eventStatusLastModifiedTime":"2016-05-02T19:27:04.9543491Z", - "correlationId":"b56d0180-2d6c-4f7b-b750-c1eca681874c", - "status":{ - "value":"Resolved" - }, - "incidentProperties":{ - "title":"Virtual Machines - West Europe [West Europe]", - "service":"Virtual Machines", - "region":"East US", - "incidentType":"outage" - } - }] +{ + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We're sorry, we couldn't automatically recover your virtual machine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Disk problems are preventing us from automatically recovering your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "serviceImpactingEvents": [ + { + "eventStartTime": "2016-05-02T19:23:13.7115125Z", + "eventStatusLastModifiedTime": "2016-05-02T19:27:04.9543491Z", + "correlationId": "b56d0180-2d6c-4f7b-b750-c1eca681874c", + "status": { + "value": "Resolved" + }, + "incidentProperties": { + "title": "Virtual Machines - West Europe [West Europe]", + "service": "Virtual Machines", + "region": "East US", + "incidentType": "outage" } - }, - { - "id":"/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/2016-03-28+16%3a23%3a00Z", - "name":"2016-03-28+16%3a23%3a00Z", - "type":"Microsoft.ResourceHealth/AvailabilityStatuses", - "location":"eastus", - "properties":{ - "availabilityState":"Available", - "summary":"This virtual machine is running normally", - "reasonChronicity":"Persistent", - "detailedStatus":"There aren’t any known Azure platform problems affecting this virtual machine", - "occuredTime":"2016-03-28T16:23:00Z" - } - } - ] - } + } + ] + } + }, + { + "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/2016-03-28+16%3a23%3a00Z", + "name": "2016-03-28+16%3a23%3a00Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Available", + "summary": "This virtual machine is running normally", + "reasonChronicity": "Persistent", + "detailedStatus": "There aren’t any known Azure platform problems affecting this virtual machine", + "occuredTime": "2016-03-28T16:23:00Z" + } + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListByResourceGroup.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListByResourceGroup.json index 6221357b2f26..411098e6edb0 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListByResourceGroup.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListByResourceGroup.json @@ -1,67 +1,73 @@ { - "parameters": { - "subscriptionId": "subscriptionId", - "resourceGroupName": "resourceGroupName", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Available", - "summary": "Vm is available", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "We have not seen any issues with your virtual machine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "RecentlyResolved": { - "UnavailableOccuredTime": "2017-02-28T00:48:00Z", - "ResolvedTime": "2017-02-28T00:49:00Z", - "UnavailableSummary": "We are sorry your SQL database is unavailable" - }, - "RecommendedActions": [{ - "Action": "To start this virtualmachine, open the resource blade and click Start", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resourceblade" - }] - } - }, - { - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Unavailable", - "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime": "2016-03-29T09:13:00Z", - "resolutionETA": "2016-03-29T09:37:00Z", - "RecommendedActions": [{ - "Action": "To start this virtualmachine, open the resource blade", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resourceblade" - }, - { - "Action": "If you are experiencing problems you believe are caused by Azure, contact support", - "ActionUrl": "<#SupportCase>", - "ActionUrlText": "contactsupport" - }] - } - }], - "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "subscriptionId", + "resourceGroupName": "resourceGroupName", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Available", + "summary": "Vm is available", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "We have not seen any issues with your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "RecentlyResolved": { + "UnavailableOccuredTime": "2017-02-28T00:48:00Z", + "ResolvedTime": "2017-02-28T00:49:00Z", + "UnavailableSummary": "We are sorry your SQL database is unavailable" + }, + "RecommendedActions": [ + { + "Action": "To start this virtualmachine, open the resource blade and click Start", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resourceblade" + } + ] + } + }, + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "RecommendedActions": [ + { + "Action": "To start this virtualmachine, open the resource blade", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resourceblade" + }, + { + "Action": "If you are experiencing problems you believe are caused by Azure, contact support", + "ActionUrl": "<#SupportCase>", + "ActionUrlText": "contactsupport" + } + ] + } + } + ], + "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListBySubscriptionId.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListBySubscriptionId.json index 19e278a88d50..616fb352023a 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListBySubscriptionId.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListBySubscriptionId.json @@ -1,66 +1,72 @@ { - "parameters": { - "subscriptionId": "subscriptionId", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Available", - "summary": "Vm is available", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "We have not seen any issues with your virtual machine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "RecentlyResolved": { - "UnavailableOccuredTime": "2017-02-28T00:48:00Z", - "ResolvedTime": "2017-02-28T00:49:00Z", - "UnavailableSummary": "We are sorry your SQL database is unavailable" - }, - "RecommendedActions": [{ - "Action": "To start this virtualmachine, open the resource blade and click Start", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resourceblade" - }] - } - }, - { - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Unavailable", - "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime": "2016-03-29T09:13:00Z", - "resolutionETA": "2016-03-29T09:37:00Z", - "RecommendedActions": [{ - "Action": "To start this virtualmachine, open the resource blade", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resourceblade" - }, - { - "Action": "If you are experiencing problems you believe are caused by Azure, contact support", - "ActionUrl": "<#SupportCase>", - "ActionUrlText": "contactsupport" - }] - } - }], - "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "subscriptionId", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Available", + "summary": "Vm is available", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "We have not seen any issues with your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "RecentlyResolved": { + "UnavailableOccuredTime": "2017-02-28T00:48:00Z", + "ResolvedTime": "2017-02-28T00:49:00Z", + "UnavailableSummary": "We are sorry your SQL database is unavailable" + }, + "RecommendedActions": [ + { + "Action": "To start this virtualmachine, open the resource blade and click Start", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resourceblade" + } + ] + } + }, + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "RecommendedActions": [ + { + "Action": "To start this virtualmachine, open the resource blade", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resourceblade" + }, + { + "Action": "If you are experiencing problems you believe are caused by Azure, contact support", + "ActionUrl": "<#SupportCase>", + "ActionUrlText": "contactsupport" + } + ] + } + } + ], + "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildAvailabilityStatus_GetByResource.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildAvailabilityStatus_GetByResource.json index c25e4ce89703..3ecc10994c19 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildAvailabilityStatus_GetByResource.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildAvailabilityStatus_GetByResource.json @@ -1,36 +1,38 @@ { - "parameters": { - "resourceUri":"resourceUri", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:44Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:19:11.955255Z", - "RecommendedActions": [{ - "Action": "To start this virtual machine, open the resource blade and click Start", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resource blade" - }, - { - "Action": "If you are experiencing problems you believe are caused by Azure, contact support", - "ActionUrl": "<#SupportCase>", - "ActionUrlText": "contact support" - }] - } - } - } - } -} \ No newline at end of file + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:44Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:19:11.955255Z", + "RecommendedActions": [ + { + "Action": "To start this virtual machine, open the resource blade and click Start", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resource blade" + }, + { + "Action": "If you are experiencing problems you believe are caused by Azure, contact support", + "ActionUrl": "<#SupportCase>", + "ActionUrlText": "contact support" + } + ] + } + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildAvailabilityStatuses_List.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildAvailabilityStatuses_List.json index 385a202b819b..01a248e8289e 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildAvailabilityStatuses_List.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildAvailabilityStatuses_List.json @@ -1,149 +1,149 @@ -{ - "parameters":{ - "resourceUri":"resourceUri", - "api-version":"2015-01-01" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "recommendedActions": [ - { - "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", - "actionUrl": "<#TroubleshootV2Blade>", - "actionUrlText": "Troubleshoot tool" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - } - ], - "occuredTime": "2018-11-30T23:37:44Z", - "reasonChronicity": "Transient", - "reportedTime": "2018-12-05T19:45:45.6640838Z" - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+23%3a36%3a03Z", - "name": "2018-11-30+23%3a36%3a03Z", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Unavailable", - "summary": "This virtual machine is rebooting as requested by an authorized user or process. It will be back online after the reboot completes.", - "detailedStatus": "", - "reasonType": "Customer Initiated", - "rootCauseAttributionTime": "2018-11-30T23:36:02.514Z", - "recommendedActions": [ - { - "action": "Check back here for status updates", - "actionUrl": "", - "actionUrlText": "" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - } - ], - "occuredTime": "2018-11-30T23:36:03Z", - "reasonChronicity": "Transient", - "resolutionETA": "2018-11-30T23:56:03Z" - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+22%3a32%3a12Z", - "name": "2018-11-30+22%3a32%3a12Z", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "recommendedActions": [ - { - "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", - "actionUrl": "<#TroubleshootV2Blade>", - "actionUrlText": "Troubleshoot tool" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - } - ], - "occuredTime": "2018-11-30T22:32:12Z", - "reasonChronicity": "Transient" - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+22%3a30%3a23Z", - "name": "2018-11-30+22%3a30%3a23Z", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Unavailable", - "summary": "This virtual machine is rebooting as requested by an authorized user or process. It will be back online after the reboot completes.", - "detailedStatus": "", - "reasonType": "Customer Initiated", - "rootCauseAttributionTime": "2018-11-30T22:30:22.256Z", - "recommendedActions": [ - { - "action": "Check back here for status updates", - "actionUrl": "", - "actionUrlText": "" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - } - ], - "occuredTime": "2018-11-30T22:30:23Z", - "reasonChronicity": "Transient", - "resolutionETA": "2018-11-30T22:50:23Z" - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-21+00%3a00%3a00Z", - "name": "2018-11-21+00%3a00%3a00Z", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "recommendedActions": [ - { - "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", - "actionUrl": "<#TroubleshootV2Blade>", - "actionUrlText": "Troubleshoot tool" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - } - ], - "occuredTime": "2018-11-21T00:00:00Z", - "reasonChronicity": "Transient" - } - } - ] - } +{ + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "recommendedActions": [ + { + "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", + "actionUrl": "<#TroubleshootV2Blade>", + "actionUrlText": "Troubleshoot tool" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ], + "occuredTime": "2018-11-30T23:37:44Z", + "reasonChronicity": "Transient", + "reportedTime": "2018-12-05T19:45:45.6640838Z" + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+23%3a36%3a03Z", + "name": "2018-11-30+23%3a36%3a03Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Unavailable", + "summary": "This virtual machine is rebooting as requested by an authorized user or process. It will be back online after the reboot completes.", + "detailedStatus": "", + "reasonType": "Customer Initiated", + "rootCauseAttributionTime": "2018-11-30T23:36:02.514Z", + "recommendedActions": [ + { + "action": "Check back here for status updates", + "actionUrl": "", + "actionUrlText": "" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ], + "occuredTime": "2018-11-30T23:36:03Z", + "reasonChronicity": "Transient", + "resolutionETA": "2018-11-30T23:56:03Z" + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+22%3a32%3a12Z", + "name": "2018-11-30+22%3a32%3a12Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "recommendedActions": [ + { + "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", + "actionUrl": "<#TroubleshootV2Blade>", + "actionUrlText": "Troubleshoot tool" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ], + "occuredTime": "2018-11-30T22:32:12Z", + "reasonChronicity": "Transient" + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+22%3a30%3a23Z", + "name": "2018-11-30+22%3a30%3a23Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Unavailable", + "summary": "This virtual machine is rebooting as requested by an authorized user or process. It will be back online after the reboot completes.", + "detailedStatus": "", + "reasonType": "Customer Initiated", + "rootCauseAttributionTime": "2018-11-30T22:30:22.256Z", + "recommendedActions": [ + { + "action": "Check back here for status updates", + "actionUrl": "", + "actionUrlText": "" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ], + "occuredTime": "2018-11-30T22:30:23Z", + "reasonChronicity": "Transient", + "resolutionETA": "2018-11-30T22:50:23Z" + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-21+00%3a00%3a00Z", + "name": "2018-11-21+00%3a00%3a00Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "recommendedActions": [ + { + "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", + "actionUrl": "<#TroubleshootV2Blade>", + "actionUrlText": "Troubleshoot tool" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ], + "occuredTime": "2018-11-21T00:00:00Z", + "reasonChronicity": "Transient" + } + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildResources_List.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildResources_List.json index ad0c1c45489b..442f5aa55947 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildResources_List.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/ChildResources_List.json @@ -1,94 +1,94 @@ -{ - "parameters":{ - "resourceUri":"resourceUri", - "api-version":"2015-01-01" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/0/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "rhctest_0", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:43Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:18:25.575477Z", - "isArmResource": true - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/3/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "rhctest_3", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:41Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:18:25.575477Z", - "isArmResource": true - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/1/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "rhctest_1", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:48Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:18:25.575477Z", - "isArmResource": true - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/2/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "rhctest_2", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:43Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:18:25.575477Z", - "isArmResource": true - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "rhctest_4", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:44Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:18:25.575477Z", - "isArmResource": true - } - } - ] - } +{ + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/0/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "rhctest_0", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:43Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:18:25.575477Z", + "isArmResource": true + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/3/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "rhctest_3", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:41Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:18:25.575477Z", + "isArmResource": true + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/1/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "rhctest_1", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:48Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:18:25.575477Z", + "isArmResource": true + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/2/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "rhctest_2", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:43Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:18:25.575477Z", + "isArmResource": true + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "rhctest_4", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:44Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:18:25.575477Z", + "isArmResource": true + } + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatus_GetByResource.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatus_GetByResource.json index 60b052266093..bd6d49d3da78 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatus_GetByResource.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatus_GetByResource.json @@ -1,38 +1,40 @@ { - "parameters": { - "resourceUri":"resourceUri", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines /rhctestenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Unavailable", - "summary": "We're sorry, we couldn't automatically recover your virtual machine", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "Disk problems are preventing us from automatically recovering your virtual machine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime": "2016-03-29T09:13:00Z", - "resolutionETA": "2016-03-29T09:37:00Z", - "RecommendedActions": [{ - "Action": "To start this virtual machine, open the resource blade and click Start", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resource blade" - }, - { - "Action": "If you are experiencing problems you believe are caused by Azure, contact support", - "ActionUrl": "<#SupportCase>", - "ActionUrlText": "contact support" - }] - } - } - } - } -} \ No newline at end of file + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines /rhctestenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We're sorry, we couldn't automatically recover your virtual machine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Disk problems are preventing us from automatically recovering your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "RecommendedActions": [ + { + "Action": "To start this virtual machine, open the resource blade and click Start", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resource blade" + }, + { + "Action": "If you are experiencing problems you believe are caused by Azure, contact support", + "ActionUrl": "<#SupportCase>", + "ActionUrlText": "contact support" + } + ] + } + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_List.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_List.json index 2d0a1b8bebbe..177d8c192766 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_List.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_List.json @@ -1,58 +1,60 @@ -{ - "parameters":{ - "resourceUri":"resourceUri", - "api-version":"2015-01-01" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id":"/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", - "name":"current", - "type":"Microsoft.ResourceHealth/AvailabilityStatuses", - "location":"eastus", - "properties":{ - "availabilityState":"Unavailable", - "summary":"We're sorry, we couldn't automatically recover your virtual machine", - "reasonType":"Unplanned", - "reasonChronicity":"Persistent", - "detailedStatus":"Disk problems are preventing us from automatically recovering your virtual machine", - "occuredTime":"2016-03-29T09:12:00Z", - "reportedTime":"2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime":"2016-03-29T09:13:00Z", - "resolutionETA":"2016-03-29T09:37:00Z", - "serviceImpactingEvents": [{ - "eventStartTime":"2016-05-02T19:23:13.7115125Z", - "eventStatusLastModifiedTime":"2016-05-02T19:27:04.9543491Z", - "correlationId":"b56d0180-2d6c-4f7b-b750-c1eca681874c", - "status":{ - "value":"Resolved" - }, - "incidentProperties":{ - "title":"Virtual Machines - West Europe [West Europe]", - "service":"Virtual Machines", - "region":"East US", - "incidentType":"outage" - } - }] +{ + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We're sorry, we couldn't automatically recover your virtual machine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Disk problems are preventing us from automatically recovering your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "serviceImpactingEvents": [ + { + "eventStartTime": "2016-05-02T19:23:13.7115125Z", + "eventStatusLastModifiedTime": "2016-05-02T19:27:04.9543491Z", + "correlationId": "b56d0180-2d6c-4f7b-b750-c1eca681874c", + "status": { + "value": "Resolved" + }, + "incidentProperties": { + "title": "Virtual Machines - West Europe [West Europe]", + "service": "Virtual Machines", + "region": "East US", + "incidentType": "outage" } - }, - { - "id":"/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/2016-03-28+16%3a23%3a00Z", - "name":"2016-03-28+16%3a23%3a00Z", - "type":"Microsoft.ResourceHealth/AvailabilityStatuses", - "location":"eastus", - "properties":{ - "availabilityState":"Available", - "summary":"This virtual machine is running normally", - "reasonChronicity":"Persistent", - "detailedStatus":"There aren’t any known Azure platform problems affecting this virtual machine", - "occuredTime":"2016-03-28T16:23:00Z" - } - } - ] - } + } + ] + } + }, + { + "id": "/subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.ClassicCompute/virtualMachines/rhctes tenvV1PI/providers/Microsoft.ResourceHealth/availabilityStatuses/2016-03-28+16%3a23%3a00Z", + "name": "2016-03-28+16%3a23%3a00Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Available", + "summary": "This virtual machine is running normally", + "reasonChronicity": "Persistent", + "detailedStatus": "There aren’t any known Azure platform problems affecting this virtual machine", + "occuredTime": "2016-03-28T16:23:00Z" + } + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_ListByResourceGroup.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_ListByResourceGroup.json index 6221357b2f26..411098e6edb0 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_ListByResourceGroup.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_ListByResourceGroup.json @@ -1,67 +1,73 @@ { - "parameters": { - "subscriptionId": "subscriptionId", - "resourceGroupName": "resourceGroupName", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Available", - "summary": "Vm is available", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "We have not seen any issues with your virtual machine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "RecentlyResolved": { - "UnavailableOccuredTime": "2017-02-28T00:48:00Z", - "ResolvedTime": "2017-02-28T00:49:00Z", - "UnavailableSummary": "We are sorry your SQL database is unavailable" - }, - "RecommendedActions": [{ - "Action": "To start this virtualmachine, open the resource blade and click Start", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resourceblade" - }] - } - }, - { - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Unavailable", - "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime": "2016-03-29T09:13:00Z", - "resolutionETA": "2016-03-29T09:37:00Z", - "RecommendedActions": [{ - "Action": "To start this virtualmachine, open the resource blade", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resourceblade" - }, - { - "Action": "If you are experiencing problems you believe are caused by Azure, contact support", - "ActionUrl": "<#SupportCase>", - "ActionUrlText": "contactsupport" - }] - } - }], - "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "subscriptionId", + "resourceGroupName": "resourceGroupName", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Available", + "summary": "Vm is available", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "We have not seen any issues with your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "RecentlyResolved": { + "UnavailableOccuredTime": "2017-02-28T00:48:00Z", + "ResolvedTime": "2017-02-28T00:49:00Z", + "UnavailableSummary": "We are sorry your SQL database is unavailable" + }, + "RecommendedActions": [ + { + "Action": "To start this virtualmachine, open the resource blade and click Start", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resourceblade" + } + ] + } + }, + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "RecommendedActions": [ + { + "Action": "To start this virtualmachine, open the resource blade", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resourceblade" + }, + { + "Action": "If you are experiencing problems you believe are caused by Azure, contact support", + "ActionUrl": "<#SupportCase>", + "ActionUrlText": "contactsupport" + } + ] + } + } + ], + "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_ListBySubscriptionId.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_ListBySubscriptionId.json index 19e278a88d50..616fb352023a 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_ListBySubscriptionId.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/AvailabilityStatuses_ListBySubscriptionId.json @@ -1,66 +1,72 @@ { - "parameters": { - "subscriptionId": "subscriptionId", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Available", - "summary": "Vm is available", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "We have not seen any issues with your virtual machine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "RecentlyResolved": { - "UnavailableOccuredTime": "2017-02-28T00:48:00Z", - "ResolvedTime": "2017-02-28T00:49:00Z", - "UnavailableSummary": "We are sorry your SQL database is unavailable" - }, - "RecommendedActions": [{ - "Action": "To start this virtualmachine, open the resource blade and click Start", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resourceblade" - }] - } - }, - { - "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "eastus", - "properties": { - "availabilityState": "Unavailable", - "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", - "reasonType": "Unplanned", - "reasonChronicity": "Persistent", - "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", - "occuredTime": "2016-03-29T09:12:00Z", - "reportedTime": "2016-05-04T14:11:29.7598931Z", - "rootCauseAttributionTime": "2016-03-29T09:13:00Z", - "resolutionETA": "2016-03-29T09:37:00Z", - "RecommendedActions": [{ - "Action": "To start this virtualmachine, open the resource blade", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resourceblade" - }, - { - "Action": "If you are experiencing problems you believe are caused by Azure, contact support", - "ActionUrl": "<#SupportCase>", - "ActionUrlText": "contactsupport" - }] - } - }], - "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "subscriptionId", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Available", + "summary": "Vm is available", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "We have not seen any issues with your virtual machine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "RecentlyResolved": { + "UnavailableOccuredTime": "2017-02-28T00:48:00Z", + "ResolvedTime": "2017-02-28T00:49:00Z", + "UnavailableSummary": "We are sorry your SQL database is unavailable" + }, + "RecommendedActions": [ + { + "Action": "To start this virtualmachine, open the resource blade and click Start", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resourceblade" + } + ] + } + }, + { + "id": "/providers/Microsoft.ResourceHealth/AvailabilityStatueses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "eastus", + "properties": { + "availabilityState": "Unavailable", + "summary": "We are sorry, we couldn't automatically recovery our virtualmachine", + "reasonType": "Unplanned", + "reasonChronicity": "Persistent", + "detailedStatus": "Diskproblemsarepreventingusfromautomaticallyrecoveringyourvirtualmachine", + "occuredTime": "2016-03-29T09:12:00Z", + "reportedTime": "2016-05-04T14:11:29.7598931Z", + "rootCauseAttributionTime": "2016-03-29T09:13:00Z", + "resolutionETA": "2016-03-29T09:37:00Z", + "RecommendedActions": [ + { + "Action": "To start this virtualmachine, open the resource blade", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resourceblade" + }, + { + "Action": "If you are experiencing problems you believe are caused by Azure, contact support", + "ActionUrl": "<#SupportCase>", + "ActionUrlText": "contactsupport" + } + ] + } + } + ], + "nextLink": "{originalRequestUrl}?$skipToken={OpaquePageNumber}" + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildAvailabilityStatus_GetByResource.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildAvailabilityStatus_GetByResource.json index c25e4ce89703..3ecc10994c19 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildAvailabilityStatus_GetByResource.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildAvailabilityStatus_GetByResource.json @@ -1,36 +1,38 @@ { - "parameters": { - "resourceUri":"resourceUri", - "api-version": "2015-01-01", - "$expand": "recommendedactions" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:44Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:19:11.955255Z", - "RecommendedActions": [{ - "Action": "To start this virtual machine, open the resource blade and click Start", - "ActionUrl": "<#ResourceBlade>", - "ActionUrlText": "resource blade" - }, - { - "Action": "If you are experiencing problems you believe are caused by Azure, contact support", - "ActionUrl": "<#SupportCase>", - "ActionUrlText": "contact support" - }] - } - } - } - } -} \ No newline at end of file + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01", + "$expand": "recommendedactions" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:44Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:19:11.955255Z", + "RecommendedActions": [ + { + "Action": "To start this virtual machine, open the resource blade and click Start", + "ActionUrl": "<#ResourceBlade>", + "ActionUrlText": "resource blade" + }, + { + "Action": "If you are experiencing problems you believe are caused by Azure, contact support", + "ActionUrl": "<#SupportCase>", + "ActionUrlText": "contact support" + } + ] + } + } + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildAvailabilityStatuses_List.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildAvailabilityStatuses_List.json index 385a202b819b..01a248e8289e 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildAvailabilityStatuses_List.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildAvailabilityStatuses_List.json @@ -1,149 +1,149 @@ -{ - "parameters":{ - "resourceUri":"resourceUri", - "api-version":"2015-01-01" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/current", - "name": "current", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "recommendedActions": [ - { - "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", - "actionUrl": "<#TroubleshootV2Blade>", - "actionUrlText": "Troubleshoot tool" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - } - ], - "occuredTime": "2018-11-30T23:37:44Z", - "reasonChronicity": "Transient", - "reportedTime": "2018-12-05T19:45:45.6640838Z" - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+23%3a36%3a03Z", - "name": "2018-11-30+23%3a36%3a03Z", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Unavailable", - "summary": "This virtual machine is rebooting as requested by an authorized user or process. It will be back online after the reboot completes.", - "detailedStatus": "", - "reasonType": "Customer Initiated", - "rootCauseAttributionTime": "2018-11-30T23:36:02.514Z", - "recommendedActions": [ - { - "action": "Check back here for status updates", - "actionUrl": "", - "actionUrlText": "" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - } - ], - "occuredTime": "2018-11-30T23:36:03Z", - "reasonChronicity": "Transient", - "resolutionETA": "2018-11-30T23:56:03Z" - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+22%3a32%3a12Z", - "name": "2018-11-30+22%3a32%3a12Z", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "recommendedActions": [ - { - "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", - "actionUrl": "<#TroubleshootV2Blade>", - "actionUrlText": "Troubleshoot tool" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - } - ], - "occuredTime": "2018-11-30T22:32:12Z", - "reasonChronicity": "Transient" - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+22%3a30%3a23Z", - "name": "2018-11-30+22%3a30%3a23Z", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Unavailable", - "summary": "This virtual machine is rebooting as requested by an authorized user or process. It will be back online after the reboot completes.", - "detailedStatus": "", - "reasonType": "Customer Initiated", - "rootCauseAttributionTime": "2018-11-30T22:30:22.256Z", - "recommendedActions": [ - { - "action": "Check back here for status updates", - "actionUrl": "", - "actionUrlText": "" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - } - ], - "occuredTime": "2018-11-30T22:30:23Z", - "reasonChronicity": "Transient", - "resolutionETA": "2018-11-30T22:50:23Z" - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-21+00%3a00%3a00Z", - "name": "2018-11-21+00%3a00%3a00Z", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "recommendedActions": [ - { - "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", - "actionUrl": "<#TroubleshootV2Blade>", - "actionUrlText": "Troubleshoot tool" - }, - { - "action": "If you are experiencing problems you believe are caused by Azure, contact support", - "actionUrl": "<#SupportCase>", - "actionUrlText": "contact support" - } - ], - "occuredTime": "2018-11-21T00:00:00Z", - "reasonChronicity": "Transient" - } - } - ] - } +{ + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/current", + "name": "current", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "recommendedActions": [ + { + "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", + "actionUrl": "<#TroubleshootV2Blade>", + "actionUrlText": "Troubleshoot tool" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ], + "occuredTime": "2018-11-30T23:37:44Z", + "reasonChronicity": "Transient", + "reportedTime": "2018-12-05T19:45:45.6640838Z" + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+23%3a36%3a03Z", + "name": "2018-11-30+23%3a36%3a03Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Unavailable", + "summary": "This virtual machine is rebooting as requested by an authorized user or process. It will be back online after the reboot completes.", + "detailedStatus": "", + "reasonType": "Customer Initiated", + "rootCauseAttributionTime": "2018-11-30T23:36:02.514Z", + "recommendedActions": [ + { + "action": "Check back here for status updates", + "actionUrl": "", + "actionUrlText": "" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ], + "occuredTime": "2018-11-30T23:36:03Z", + "reasonChronicity": "Transient", + "resolutionETA": "2018-11-30T23:56:03Z" + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+22%3a32%3a12Z", + "name": "2018-11-30+22%3a32%3a12Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "recommendedActions": [ + { + "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", + "actionUrl": "<#TroubleshootV2Blade>", + "actionUrlText": "Troubleshoot tool" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ], + "occuredTime": "2018-11-30T22:32:12Z", + "reasonChronicity": "Transient" + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-30+22%3a30%3a23Z", + "name": "2018-11-30+22%3a30%3a23Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Unavailable", + "summary": "This virtual machine is rebooting as requested by an authorized user or process. It will be back online after the reboot completes.", + "detailedStatus": "", + "reasonType": "Customer Initiated", + "rootCauseAttributionTime": "2018-11-30T22:30:22.256Z", + "recommendedActions": [ + { + "action": "Check back here for status updates", + "actionUrl": "", + "actionUrlText": "" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ], + "occuredTime": "2018-11-30T22:30:23Z", + "reasonChronicity": "Transient", + "resolutionETA": "2018-11-30T22:50:23Z" + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/availabilityStatuses/2018-11-21+00%3a00%3a00Z", + "name": "2018-11-21+00%3a00%3a00Z", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "recommendedActions": [ + { + "action": "If you're having problems, use the Troubleshoot tool to get recommended solutions.", + "actionUrl": "<#TroubleshootV2Blade>", + "actionUrlText": "Troubleshoot tool" + }, + { + "action": "If you are experiencing problems you believe are caused by Azure, contact support", + "actionUrl": "<#SupportCase>", + "actionUrlText": "contact support" + } + ], + "occuredTime": "2018-11-21T00:00:00Z", + "reasonChronicity": "Transient" + } + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildResources_List.json b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildResources_List.json index ad0c1c45489b..442f5aa55947 100644 --- a/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildResources_List.json +++ b/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2017-07-01/examples/ChildResources_List.json @@ -1,94 +1,94 @@ -{ - "parameters":{ - "resourceUri":"resourceUri", - "api-version":"2015-01-01" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/0/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "rhctest_0", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:43Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:18:25.575477Z", - "isArmResource": true - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/3/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "rhctest_3", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:41Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:18:25.575477Z", - "isArmResource": true - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/1/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "rhctest_1", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:48Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:18:25.575477Z", - "isArmResource": true - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/2/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "rhctest_2", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:43Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:18:25.575477Z", - "isArmResource": true - } - }, - { - "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", - "name": "rhctest_4", - "type": "Microsoft.ResourceHealth/AvailabilityStatuses", - "location": "southcentralus", - "properties": { - "availabilityState": "Available", - "summary": "There aren't any known Azure platform problems affecting this virtual machine", - "detailedStatus": "", - "reasonType": "", - "occuredTime": "2018-11-30T23:37:44Z", - "reasonChronicity": "Persistent", - "reportedTime": "2018-12-04T01:18:25.575477Z", - "isArmResource": true - } - } - ] - } +{ + "parameters": { + "resourceUri": "resourceUri", + "api-version": "2015-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/0/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "rhctest_0", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:43Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:18:25.575477Z", + "isArmResource": true + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/3/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "rhctest_3", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:41Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:18:25.575477Z", + "isArmResource": true + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/1/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "rhctest_1", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:48Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:18:25.575477Z", + "isArmResource": true + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/2/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "rhctest_2", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:43Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:18:25.575477Z", + "isArmResource": true + } + }, + { + "id": "/subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4/providers/Microsoft.ResourceHealth/child/availabilityStatuses/current", + "name": "rhctest_4", + "type": "Microsoft.ResourceHealth/AvailabilityStatuses", + "location": "southcentralus", + "properties": { + "availabilityState": "Available", + "summary": "There aren't any known Azure platform problems affecting this virtual machine", + "detailedStatus": "", + "reasonType": "", + "occuredTime": "2018-11-30T23:37:44Z", + "reasonChronicity": "Persistent", + "reportedTime": "2018-12-04T01:18:25.575477Z", + "isArmResource": true + } + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createOrUpdatePolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createOrUpdatePolicySetDefinition.json index 21d0f2becb7a..94641f13653d 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createOrUpdatePolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createOrUpdatePolicySetDefinition.json @@ -18,7 +18,8 @@ "value": [ "Standard_GRS", "Standard_LRS" - ] } + ] + } } } ] @@ -85,4 +86,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json index 53060cf81010..af4228eed747 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json @@ -87,4 +87,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createPolicyAssignment.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createPolicyAssignment.json index dd58800f7d06..86b9597963ee 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createPolicyAssignment.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/createPolicyAssignment.json @@ -11,12 +11,18 @@ "category": "Cost Management" }, "policyDefinitionId": "/subscriptions/subId/providers/Microsoft.Authorization/policyDefinitions/storageSkus", - "parameters": { "allowedSkus": { "type": "Array" } }, - "notScopes": [ "/subscriptions/subId/resourcegroups/testingResourceGroup" ] + "parameters": { + "allowedSkus": { + "type": "Array" + } + }, + "notScopes": [ + "/subscriptions/subId/resourcegroups/testingResourceGroup" + ] }, "sku": { "name": "A0", - "tier": "Free" + "tier": "Free" } } }, @@ -34,9 +40,15 @@ "category": "Cost Management" }, "policyDefinitionId": "/subscriptions/subId/providers/Microsoft.Authorization/policyDefinitions/storageSkus", - "parameters": { "allowedSkus": { "type": "Array" } }, - "notScopes": [ "/subscriptions/subId/resourcegroups/testingResourceGroup" ], - "scope": "/subscriptions/subId" + "parameters": { + "allowedSkus": { + "type": "Array" + } + }, + "notScopes": [ + "/subscriptions/subId/resourcegroups/testingResourceGroup" + ], + "scope": "/subscriptions/subId" }, "sku": { "name": "A0", @@ -45,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getBuiltInPolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getBuiltInPolicySetDefinition.json index 4d9cc3af8b5d..89fcc941dd61 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getBuiltInPolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getBuiltInPolicySetDefinition.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicyAssignment.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicyAssignment.json index 181a58356659..5c55c15ccfd3 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicyAssignment.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicyAssignment.json @@ -18,9 +18,15 @@ "category": "Cost Management" }, "policyDefinitionId": "/subscriptions/subId/providers/Microsoft.Authorization/policyDefinitions/storageSkus", - "parameters": { "allowedSkus": { "type": "Array" } }, - "notScopes": [ "/subscriptions/subId/resourcegroups/testingResourceGroup" ], - "scope": "/subscriptions/subId" + "parameters": { + "allowedSkus": { + "type": "Array" + } + }, + "notScopes": [ + "/subscriptions/subId/resourcegroups/testingResourceGroup" + ], + "scope": "/subscriptions/subId" }, "sku": { "name": "A0", @@ -29,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicySetDefinition.json index 858495875e82..15ce54fd2ef7 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicySetDefinition.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicySetDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicySetDefinitionAtManagementGroup.json index e936d6d939ec..30766edc0d39 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicySetDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/getPolicySetDefinitionAtManagementGroup.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listBuiltInPolicySetDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listBuiltInPolicySetDefinitions.json index b4c2354de76f..cb0df6dbfeb2 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listBuiltInPolicySetDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listBuiltInPolicySetDefinitions.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicyAssignments.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicyAssignments.json index 1efa7d579fff..ec7f66bd5986 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicyAssignments.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicyAssignments.json @@ -1,8 +1,8 @@ { "parameters": { - "subscriptionId": "subId", + "subscriptionId": "subId", "api-version": "2017-06-01-preview", - "$filter": "atScope()" + "$filter": "atScope()" }, "responses": { "200": { @@ -20,8 +20,14 @@ "category": "Cost Management" }, "policyDefinitionId": "/subscriptions/subId/providers/Microsoft.Authorization/policyDefinitions/storageSkus", - "parameters": { "allowedSkus": { "type": "Array" } }, - "notScopes": [ "/subscriptions/subId/resourcegroups/testingResourceGroup" ], + "parameters": { + "allowedSkus": { + "type": "Array" + } + }, + "notScopes": [ + "/subscriptions/subId/resourcegroups/testingResourceGroup" + ], "scope": "/subscriptions/subId" }, "sku": { @@ -48,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicySetDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicySetDefinitions.json index 0759c52a1ee2..9913a9179141 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicySetDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicySetDefinitions.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicySetDefinitionsByManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicySetDefinitionsByManagementGroup.json index c6e4f76a37e7..a737f24e88e0 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicySetDefinitionsByManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/examples/listPolicySetDefinitionsByManagementGroup.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/policyAssignments.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/policyAssignments.json index 0be0da5f5b0e..57ae7b18d273 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/policyAssignments.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/policyAssignments.json @@ -617,4 +617,4 @@ "description": "The API version to use for the operation." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/policySetDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/policySetDefinitions.json index 39cf5669a1d3..156885f22b56 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/policySetDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/preview/2017-06-01-preview/policySetDefinitions.json @@ -604,4 +604,4 @@ "description": "The API version to use for the operation." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2016-09-01/locks.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2016-09-01/locks.json index bbc4b780bbd6..15ce9bc3d51d 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2016-09-01/locks.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2016-09-01/locks.json @@ -116,7 +116,7 @@ } } }, - "delete": { + "delete": { "tags": [ "ManagementLocks" ], @@ -157,7 +157,7 @@ } } }, - "get": { + "get": { "tags": [ "ManagementLocks" ], @@ -234,7 +234,7 @@ } ], "responses": { - "200": { + "200": { "description": "OK", "schema": { "$ref": "#/definitions/ManagementLockObject" @@ -840,7 +840,7 @@ } ], "responses": { - "200": { + "200": { "description": "OK - Returns an array of resource locks.", "schema": { "$ref": "#/definitions/ManagementLockListResult" @@ -891,7 +891,9 @@ "description": "The owners of the lock." } }, - "required": [ "level" ], + "required": [ + "level" + ], "description": "The lock properties." }, "ManagementLockObject": { @@ -917,7 +919,9 @@ "description": "The name of the lock." } }, - "required": [ "properties" ], + "required": [ + "properties" + ], "description": "The lock information.", "x-ms-azure-resource": true }, diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2016-12-01/policyAssignments.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2016-12-01/policyAssignments.json index a41808b639d4..7e13bea61fa4 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2016-12-01/policyAssignments.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2016-12-01/policyAssignments.json @@ -497,4 +497,4 @@ "description": "The API version to use for the operation." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicyDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicyDefinition.json index d4cf748440dd..f29b735add48 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicyDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicyDefinition.json @@ -85,4 +85,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicyDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicyDefinitionAtManagementGroup.json index 569cfbc1e754..841632006b8f 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicyDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicyDefinitionAtManagementGroup.json @@ -85,4 +85,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicySetDefinition.json index 8d8d28305c31..185b0c63fc37 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicySetDefinition.json @@ -117,4 +117,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json index f1bb3202d999..af4f8b7269a1 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json @@ -117,4 +117,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createPolicyAssignment.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createPolicyAssignment.json index 91d787d65e81..e98f5550fc32 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createPolicyAssignment.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createPolicyAssignment.json @@ -12,8 +12,12 @@ }, "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } } } } @@ -31,8 +35,12 @@ "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "notScopes": [], "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } }, "scope": "subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2" }, @@ -42,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createPolicyAssignmentById.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createPolicyAssignmentById.json index 95e2ddebc025..af1bde2bf14c 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createPolicyAssignmentById.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/createPolicyAssignmentById.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyAssignment.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyAssignment.json index e059b25b8667..6b1eb454cab0 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyAssignment.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyAssignment.json @@ -17,8 +17,12 @@ "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "notScopes": [], "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } }, "scope": "subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2" }, @@ -31,4 +35,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyAssignmentById.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyAssignmentById.json index 80993c98c999..ef76fa98c58e 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyAssignmentById.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyAssignmentById.json @@ -33,4 +33,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyDefinition.json index b949bea56dd4..074a5a3fc581 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyDefinition.json @@ -12,4 +12,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyDefinitionAtManagementGroup.json index f97165d04d4a..4f47a7b6f56e 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicyDefinitionAtManagementGroup.json @@ -12,4 +12,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicySetDefinition.json index 5b1bb6b6683e..fb69ee89e778 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicySetDefinition.json @@ -12,4 +12,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicySetDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicySetDefinitionAtManagementGroup.json index 9d6faced3ace..19240079965c 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicySetDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/deletePolicySetDefinitionAtManagementGroup.json @@ -12,4 +12,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getBuiltInPolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getBuiltInPolicySetDefinition.json index d96fc2fbc180..3a1d1f5293f1 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getBuiltInPolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getBuiltInPolicySetDefinition.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getBuiltinPolicyDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getBuiltinPolicyDefinition.json index f3c5fb44513e..b607ba824284 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getBuiltinPolicyDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getBuiltinPolicyDefinition.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyAssignment.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyAssignment.json index cc41dbe14d1d..eca9fa4c383a 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyAssignment.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyAssignment.json @@ -17,8 +17,12 @@ "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "notScopes": [], "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } }, "scope": "subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2" }, @@ -28,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyAssignmentById.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyAssignmentById.json index b467541ba0ea..15de9749208b 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyAssignmentById.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyAssignmentById.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyDefinition.json index 3b8b9a17a9d4..58481c0af0b4 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyDefinition.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyDefinitionAtManagementGroup.json index 9ab52b934d89..a581a5bf6265 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicyDefinitionAtManagementGroup.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicySetDefinition.json index 9a4b0446fa19..97df8b2c3387 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicySetDefinition.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicySetDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicySetDefinitionAtManagementGroup.json index e772c0e34134..a5c291fc343e 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicySetDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/getPolicySetDefinitionAtManagementGroup.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listBuiltInPolicySetDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listBuiltInPolicySetDefinitions.json index 2342b6d79569..deb3f5d875d8 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listBuiltInPolicySetDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listBuiltInPolicySetDefinitions.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignments.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignments.json index a89b04239ade..227aa8f44b17 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignments.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignments.json @@ -20,7 +20,11 @@ "category": "Cost Management" }, "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/storageSkus", - "parameters": { "allowedSkus": { "type": "Array" } }, + "parameters": { + "allowedSkus": { + "type": "Array" + } + }, "scope": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2", "notScopes": [] }, @@ -49,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignmentsForResource.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignmentsForResource.json index b51387648cd7..023e2f22b8c4 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignmentsForResource.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignmentsForResource.json @@ -24,7 +24,11 @@ "category": "Cost Management" }, "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/vmSkus", - "parameters": { "allowedSkus": { "type": "Array" } }, + "parameters": { + "allowedSkus": { + "type": "Array" + } + }, "scope": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/resourceGroups/TestResourceGroup", "notScopes": [] }, @@ -53,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignmentsForResourceGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignmentsForResourceGroup.json index 610313d66d3e..c01df82c209b 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignmentsForResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyAssignmentsForResourceGroup.json @@ -21,7 +21,11 @@ "category": "Cost Management" }, "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/storageSkus", - "parameters": { "allowedSkus": { "type": "Array" } }, + "parameters": { + "allowedSkus": { + "type": "Array" + } + }, "scope": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/resourceGroups/TestResourceGroup", "notScopes": [] }, @@ -50,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyDefinitions.json index 107c84205f65..bea8aa2b7863 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyDefinitions.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyDefinitionsByManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyDefinitionsByManagementGroup.json index 11047a850cdc..dbf1eff38e82 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyDefinitionsByManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicyDefinitionsByManagementGroup.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicySetDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicySetDefinitions.json index 5ae10d030492..02cd5286d7d1 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicySetDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicySetDefinitions.json @@ -103,4 +103,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicySetDefinitionsByManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicySetDefinitionsByManagementGroup.json index 42301ff37ed6..142be7f133fa 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicySetDefinitionsByManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/examples/listPolicySetDefinitionsByManagementGroup.json @@ -103,4 +103,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/policyAssignments.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/policyAssignments.json index 0d592a937fac..fb74484c704e 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/policyAssignments.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/policyAssignments.json @@ -653,4 +653,4 @@ "description": "The API version to use for the operation." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/policySetDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/policySetDefinitions.json index 8a13671ca796..a8b1e87d65fc 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/policySetDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-03-01/policySetDefinitions.json @@ -622,4 +622,4 @@ "description": "The API version to use for the operation." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicyDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicyDefinition.json index 8935b17c5686..a1fbbbe9641b 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicyDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicyDefinition.json @@ -85,4 +85,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicyDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicyDefinitionAtManagementGroup.json index cf515547633e..ec85decf43b1 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicyDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicyDefinitionAtManagementGroup.json @@ -85,4 +85,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicySetDefinition.json index 0568db3364aa..c01d92d5359a 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicySetDefinition.json @@ -117,4 +117,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json index ec5f880a33d3..9db843bd3dbc 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createOrUpdatePolicySetDefinitionAtManagementGroup.json @@ -117,4 +117,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignment.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignment.json index ae4d89e27b74..f2252da0ce0d 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignment.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignment.json @@ -12,8 +12,12 @@ }, "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } } } } @@ -31,8 +35,12 @@ "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "notScopes": [], "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } }, "scope": "subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2" }, @@ -42,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentById.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentById.json index 28344af849e2..c0fe29f7ac4a 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentById.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentById.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentWithIdentity.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentWithIdentity.json index 4d809980ff77..8ac2ba38b422 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentWithIdentity.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentWithIdentity.json @@ -16,8 +16,12 @@ }, "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } } } } @@ -35,8 +39,12 @@ "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "notScopes": [], "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } }, "scope": "subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2" }, @@ -52,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentWithIdentityById.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentWithIdentityById.json index 3ba016a1cb98..ba152494a0a5 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentWithIdentityById.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/createPolicyAssignmentWithIdentityById.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyAssignment.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyAssignment.json index 516bafd91e2b..0a3c60c0a772 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyAssignment.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyAssignment.json @@ -17,8 +17,12 @@ "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "notScopes": [], "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } }, "scope": "subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2" }, @@ -31,4 +35,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyAssignmentById.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyAssignmentById.json index 8a462bfd0cad..a61cea3671d3 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyAssignmentById.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyAssignmentById.json @@ -33,4 +33,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyDefinition.json index f32ea32faeb7..f907f69842c3 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyDefinition.json @@ -12,4 +12,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyDefinitionAtManagementGroup.json index 16c0234a44b9..873f57ae6eaf 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicyDefinitionAtManagementGroup.json @@ -12,4 +12,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicySetDefinition.json index 080f929adce4..248768b19885 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicySetDefinition.json @@ -12,4 +12,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicySetDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicySetDefinitionAtManagementGroup.json index bdf31d554af8..bde85e0cc98c 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicySetDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/deletePolicySetDefinitionAtManagementGroup.json @@ -12,4 +12,4 @@ "headers": {} } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getBuiltInPolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getBuiltInPolicySetDefinition.json index 6fbd923c4297..0f1f03ec6ea6 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getBuiltInPolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getBuiltInPolicySetDefinition.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getBuiltinPolicyDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getBuiltinPolicyDefinition.json index 56c63b99943a..0fdd94e3416b 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getBuiltinPolicyDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getBuiltinPolicyDefinition.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignment.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignment.json index b8ca0e6bf2a2..9c44a26e23b4 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignment.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignment.json @@ -17,8 +17,12 @@ "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "notScopes": [], "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } }, "scope": "subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2" }, @@ -28,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentById.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentById.json index ba0eaf4b0b64..7b8834425081 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentById.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentById.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentWithIdentity.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentWithIdentity.json index 079fb3130320..5294143f1ead 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentWithIdentity.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentWithIdentity.json @@ -17,8 +17,12 @@ "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/ResourceNaming", "notScopes": [], "parameters": { - "prefix": { "value": "DeptA" }, - "suffix": { "value": "-LC" } + "prefix": { + "value": "DeptA" + }, + "suffix": { + "value": "-LC" + } }, "scope": "subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2" }, @@ -34,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentWithIdentityById.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentWithIdentityById.json index 6f191485ac80..ffb63302a998 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentWithIdentityById.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyAssignmentWithIdentityById.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyDefinition.json index d44d55d001bc..bec9cc903cd0 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyDefinition.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyDefinitionAtManagementGroup.json index c8b303ea0a28..32480de5df33 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicyDefinitionAtManagementGroup.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicySetDefinition.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicySetDefinition.json index 7309cdfec628..38d31355627d 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicySetDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicySetDefinition.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicySetDefinitionAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicySetDefinitionAtManagementGroup.json index 4dec00949544..e8608810236d 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicySetDefinitionAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/getPolicySetDefinitionAtManagementGroup.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listBuiltInPolicySetDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listBuiltInPolicySetDefinitions.json index 3fe311df7a85..90a1a873c5a8 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listBuiltInPolicySetDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listBuiltInPolicySetDefinitions.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignments.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignments.json index 52184cdc21f9..f1f06499484f 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignments.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignments.json @@ -26,7 +26,11 @@ "category": "Cost Management" }, "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/storageSkus", - "parameters": { "allowedSkus": { "type": "Array" } }, + "parameters": { + "allowedSkus": { + "type": "Array" + } + }, "scope": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2", "notScopes": [] }, @@ -55,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignmentsForResource.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignmentsForResource.json index 156e2fb6d7a8..757521ef2f8d 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignmentsForResource.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignmentsForResource.json @@ -30,7 +30,11 @@ "category": "Cost Management" }, "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/vmSkus", - "parameters": { "allowedSkus": { "type": "Array" } }, + "parameters": { + "allowedSkus": { + "type": "Array" + } + }, "scope": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/resourceGroups/TestResourceGroup", "notScopes": [] }, @@ -59,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignmentsForResourceGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignmentsForResourceGroup.json index 11d9af70fa6d..43c33fde7bab 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignmentsForResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyAssignmentsForResourceGroup.json @@ -27,7 +27,11 @@ "category": "Cost Management" }, "policyDefinitionId": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/providers/Microsoft.Authorization/policyDefinitions/storageSkus", - "parameters": { "allowedSkus": { "type": "Array" } }, + "parameters": { + "allowedSkus": { + "type": "Array" + } + }, "scope": "/subscriptions/ae640e6b-ba3e-4256-9d62-2993eecfa6f2/resourceGroups/TestResourceGroup", "notScopes": [] }, @@ -56,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyDefinitions.json index 56082ea4ee35..e43d022d39ea 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyDefinitions.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyDefinitionsByManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyDefinitionsByManagementGroup.json index 9662b9335b14..76b5c16e192f 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyDefinitionsByManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicyDefinitionsByManagementGroup.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicySetDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicySetDefinitions.json index b618321c62e7..5c5e4795bcd8 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicySetDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicySetDefinitions.json @@ -103,4 +103,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicySetDefinitionsByManagementGroup.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicySetDefinitionsByManagementGroup.json index 63af1ce3cfdc..c8389e78e9f1 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicySetDefinitionsByManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/examples/listPolicySetDefinitionsByManagementGroup.json @@ -103,4 +103,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/policyAssignments.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/policyAssignments.json index 548222aa58f3..d2fc217a17c2 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/policyAssignments.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/policyAssignments.json @@ -700,4 +700,4 @@ "description": "The API version to use for the operation." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/policySetDefinitions.json b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/policySetDefinitions.json index 13a467325aa8..af54904f190a 100644 --- a/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/policySetDefinitions.json +++ b/specification/resources/resource-manager/Microsoft.Authorization/stable/2018-05-01/policySetDefinitions.json @@ -622,4 +622,4 @@ "description": "The API version to use for the operation." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/getFeature.json b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/getFeature.json index 5e3a0f9f07df..0a0a1a60e8a5 100644 --- a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/getFeature.json +++ b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/getFeature.json @@ -1,21 +1,21 @@ { - "parameters": { - "resourceProviderNamespace": "Resource Provider Namespace", - "featureName": "feature", - "api-version": "2015-12-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "name": "Feature1", - "properties": { - "state": "registered" - }, - "id": "feature_id1", - "type": "type1" - } - } + "parameters": { + "resourceProviderNamespace": "Resource Provider Namespace", + "featureName": "feature", + "api-version": "2015-12-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "name": "Feature1", + "properties": { + "state": "registered" + }, + "id": "feature_id1", + "type": "type1" + } } -} \ No newline at end of file + } +} diff --git a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listFeaturesOperations.json b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listFeaturesOperations.json index 80788c044422..30a224e78db3 100644 --- a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listFeaturesOperations.json +++ b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listFeaturesOperations.json @@ -1,30 +1,30 @@ { - "parameters": { - "api-version": "2015-12-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "name": "FeaturesOpeartion1", - "display": { - "provider": "Microsoft.ResourceProvider", - "resource": "Resource1", - "operation": "Read" - } - }, - { - "name": "FeaturesOpeartion2", - "display": { - "provider": "Microsoft.ResourceProvider", - "resource": "Resource2", - "operation": "Write" - } - } - ] + "parameters": { + "api-version": "2015-12-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "name": "FeaturesOpeartion1", + "display": { + "provider": "Microsoft.ResourceProvider", + "resource": "Resource1", + "operation": "Read" } - } + }, + { + "name": "FeaturesOpeartion2", + "display": { + "provider": "Microsoft.ResourceProvider", + "resource": "Resource2", + "operation": "Write" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listProviderFeatures.json b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listProviderFeatures.json index a8e4702af174..7fa87645ed64 100644 --- a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listProviderFeatures.json +++ b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listProviderFeatures.json @@ -1,32 +1,32 @@ { - "parameters": { - "resourceProviderNamespace": "Resource Provider Namespace", - "api-version": "2015-12-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "name": "Feature1", - "properties": { - "state": "registered" - }, - "id": "feature_id1", - "type": "type1" - }, - { - "name": "Feature2", - "properties": { - "state": "unregistered" - }, - "id": "feature_id2", - "type": "type2" - } - ] - } - } + "parameters": { + "resourceProviderNamespace": "Resource Provider Namespace", + "api-version": "2015-12-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "name": "Feature1", + "properties": { + "state": "registered" + }, + "id": "feature_id1", + "type": "type1" + }, + { + "name": "Feature2", + "properties": { + "state": "unregistered" + }, + "id": "feature_id2", + "type": "type2" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listSubscriptionFeatures.json b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listSubscriptionFeatures.json index 949fb06947e6..237ef8e0f1a9 100644 --- a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listSubscriptionFeatures.json +++ b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/listSubscriptionFeatures.json @@ -1,31 +1,31 @@ { - "parameters": { - "api-version": "2015-12-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "name": "Feature1", - "properties": { - "state": "registered" - }, - "id": "feature_id1", - "type": "type1" - }, - { - "name": "Feature2", - "properties": { - "state": "unregistered" - }, - "id": "feature_id2", - "type": "type2" - } - ] - } - } + "parameters": { + "api-version": "2015-12-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "name": "Feature1", + "properties": { + "state": "registered" + }, + "id": "feature_id1", + "type": "type1" + }, + { + "name": "Feature2", + "properties": { + "state": "unregistered" + }, + "id": "feature_id2", + "type": "type2" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/registerFeature.json b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/registerFeature.json index 5e3a0f9f07df..0a0a1a60e8a5 100644 --- a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/registerFeature.json +++ b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/examples/registerFeature.json @@ -1,21 +1,21 @@ { - "parameters": { - "resourceProviderNamespace": "Resource Provider Namespace", - "featureName": "feature", - "api-version": "2015-12-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "name": "Feature1", - "properties": { - "state": "registered" - }, - "id": "feature_id1", - "type": "type1" - } - } + "parameters": { + "resourceProviderNamespace": "Resource Provider Namespace", + "featureName": "feature", + "api-version": "2015-12-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "name": "Feature1", + "properties": { + "state": "registered" + }, + "id": "feature_id1", + "type": "type1" + } } -} \ No newline at end of file + } +} diff --git a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/features.json b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/features.json index 89cbd169245b..8b9fbd36e54c 100644 --- a/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/features.json +++ b/specification/resources/resource-manager/Microsoft.Features/stable/2015-12-01/features.json @@ -335,4 +335,4 @@ "description": "The API version to use for this operation." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2015-11-01/resources.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2015-11-01/resources.json index b853ef27a539..40fdb8f7d6c1 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2015-11-01/resources.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2015-11-01/resources.json @@ -2925,4 +2925,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2016-02-01/resources.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2016-02-01/resources.json index c44fc3aad6e0..5d342ab34288 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2016-02-01/resources.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2016-02-01/resources.json @@ -2552,4 +2552,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2016-06-01/subscriptions.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2016-06-01/subscriptions.json index 0e1862d13ac8..0ff278951ee7 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2016-06-01/subscriptions.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2016-06-01/subscriptions.json @@ -404,4 +404,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2016-07-01/resources.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2016-07-01/resources.json index 02ab6f8245a5..c4a46374b413 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2016-07-01/resources.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2016-07-01/resources.json @@ -2561,4 +2561,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2016-09-01/links.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2016-09-01/links.json index d5841cb56b5d..3e40f3b45996 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2016-09-01/links.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2016-09-01/links.json @@ -216,7 +216,9 @@ "name": "$filter", "in": "query", "required": false, - "enum": ["atScope()"], + "enum": [ + "atScope()" + ], "x-ms-enum": { "name": "Filter", "modelAsString": false @@ -386,4 +388,4 @@ "description": "The API version to use for the operation." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2016-09-01/resources.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2016-09-01/resources.json index 91e6cf5a9c4c..e8b31618932c 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2016-09-01/resources.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2016-09-01/resources.json @@ -2820,4 +2820,4 @@ "description": "The API version to use for this operation." } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2018-02-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2018-02-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json index bf74bae144dd..8118f125729d 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2018-02-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2018-02-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/examples/CreateResourceGroup.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/examples/CreateResourceGroup.json index 312f1ceba2f5..9a9adda03f92 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/examples/CreateResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/examples/CreateResourceGroup.json @@ -14,7 +14,7 @@ "name": "myResourceGroup", "location": "eastus", "properties": { - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" } } }, @@ -24,7 +24,7 @@ "name": "myResourceGroup", "location": "eastus", "properties": { - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" } } } diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json index 5544739a4a8b..6cc16a9cac1e 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/resources.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/resources.json index eb5b46fc00c6..c593cf348076 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/resources.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/resources.json @@ -1023,7 +1023,9 @@ "ResourceGroups" ], "x-ms-examples": { - "Create or update a resource group": { "$ref": "./examples/CreateResourceGroup.json" } + "Create or update a resource group": { + "$ref": "./examples/CreateResourceGroup.json" + } }, "operationId": "ResourceGroups_CreateOrUpdate", "description": "Creates or updates a resource group.", diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2018-06-01/subscriptions.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2018-06-01/subscriptions.json index 2522db769802..aec7da8d5af6 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2018-06-01/subscriptions.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2018-06-01/subscriptions.json @@ -409,4 +409,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/examples/CreateResourceGroup.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/examples/CreateResourceGroup.json index 312f1ceba2f5..9a9adda03f92 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/examples/CreateResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/examples/CreateResourceGroup.json @@ -14,7 +14,7 @@ "name": "myResourceGroup", "location": "eastus", "properties": { - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" } } }, @@ -24,7 +24,7 @@ "name": "myResourceGroup", "location": "eastus", "properties": { - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" } } } diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json index 6ef4b13d1b5d..cfec2b113970 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/resources.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/resources.json index 64a1ebb5bfca..99edbdcfd515 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/resources.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-03-01/resources.json @@ -1023,7 +1023,9 @@ "ResourceGroups" ], "x-ms-examples": { - "Create or update a resource group": { "$ref": "./examples/CreateResourceGroup.json" } + "Create or update a resource group": { + "$ref": "./examples/CreateResourceGroup.json" + } }, "operationId": "ResourceGroups_CreateOrUpdate", "description": "Creates or updates a resource group.", diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/CreateResourceGroup.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/CreateResourceGroup.json index 4bbd729add54..9c28e5072616 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/CreateResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/CreateResourceGroup.json @@ -14,7 +14,7 @@ "name": "myResourceGroup", "location": "eastus", "properties": { - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" } } }, @@ -24,7 +24,7 @@ "name": "myResourceGroup", "location": "eastus", "properties": { - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" } } } diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/PutDeploymentAtManagementGroup.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/PutDeploymentAtManagementGroup.json index f4263ff58a74..2e100ab8cd0f 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/PutDeploymentAtManagementGroup.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/PutDeploymentAtManagementGroup.json @@ -134,4 +134,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json index 869acfd61511..8b6dd279d74e 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/examples/PutDeploymentWithOnErrorDeploymentSpecificDeployment.json @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/resources.json b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/resources.json index ab751cf36d0a..ae27108aa775 100644 --- a/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/resources.json +++ b/specification/resources/resource-manager/Microsoft.Resources/stable/2019-05-01/resources.json @@ -156,9 +156,9 @@ } }, "x-ms-long-running-operation": true, - "x-ms-examples": { - "Create deployment at management group scope.": { - "$ref": "./examples/PutDeploymentAtManagementGroup.json" + "x-ms-examples": { + "Create deployment at management group scope.": { + "$ref": "./examples/PutDeploymentAtManagementGroup.json" } } }, @@ -1196,7 +1196,9 @@ "ResourceGroups" ], "x-ms-examples": { - "Create or update a resource group": { "$ref": "./examples/CreateResourceGroup.json" } + "Create or update a resource group": { + "$ref": "./examples/CreateResourceGroup.json" + } }, "operationId": "ResourceGroups_CreateOrUpdate", "description": "Creates or updates a resource group.", diff --git a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/createOrUpdateAppliance.json b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/createOrUpdateAppliance.json index 1b365e22077d..ccd2b4141176 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/createOrUpdateAppliance.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/createOrUpdateAppliance.json @@ -11,7 +11,7 @@ }, "name": "myAppliance", "location": "East US 2", - "kind": "ServiceCatalog" + "kind": "ServiceCatalog" } }, "responses": { @@ -28,7 +28,7 @@ "plan": null, "identity": null, "kind": "ServiceCatalog", - "sku": null, + "sku": null, "properties": { "applianceDefinitionId": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Solutions/applianceDefinitions/myAppDef", "managedResourceGroupId": "/subscriptions/subid/resourceGroups/myManagedRG", @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/createOrUpdateApplianceDefinition.json b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/createOrUpdateApplianceDefinition.json index 2e53620ca6a2..cad5b78388d1 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/createOrUpdateApplianceDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/createOrUpdateApplianceDefinition.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/getAppliance.json b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/getAppliance.json index 4bd7c1742e49..4225c831dd70 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/getAppliance.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/getAppliance.json @@ -19,7 +19,7 @@ "plan": null, "identity": null, "kind": "ServiceCatalog", - "sku": null, + "sku": null, "properties": { "applianceDefinitionId": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Solutions/applianceDefinitions/myAppDef", "managedResourceGroupId": "/subscriptions/subid/resourceGroups/myManagedRG", @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/getApplianceDefinition.json b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/getApplianceDefinition.json index 3b869d7aedd7..a8a13193473d 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/getApplianceDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/getApplianceDefinition.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listApplianceDefinitionsByResourceGroup.json b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listApplianceDefinitionsByResourceGroup.json index 6750399f63df..1bad2c77cb11 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listApplianceDefinitionsByResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listApplianceDefinitionsByResourceGroup.json @@ -83,4 +83,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listAppliancesByResourceGroup.json b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listAppliancesByResourceGroup.json index 0f7b1106d9d9..ef7e47835f82 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listAppliancesByResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listAppliancesByResourceGroup.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/createOrUpdateApplication.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/createOrUpdateApplication.json index e0d4acab3336..2c387c508963 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/createOrUpdateApplication.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/createOrUpdateApplication.json @@ -11,7 +11,7 @@ }, "name": "myManagedApplication", "location": "East US 2", - "kind": "ServiceCatalog" + "kind": "ServiceCatalog" } }, "responses": { @@ -28,7 +28,7 @@ "plan": null, "identity": null, "kind": "ServiceCatalog", - "sku": null, + "sku": null, "properties": { "managedApplicationDefinitionId": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Solutions/applicationDefinitions/myAppDef", "managedResourceGroupId": "/subscriptions/subid/resourceGroups/myManagedRG", @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/createOrUpdateApplicationDefinition.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/createOrUpdateApplicationDefinition.json index cb6bc4ad77c2..fabcb760e0d2 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/createOrUpdateApplicationDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/createOrUpdateApplicationDefinition.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/getApplication.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/getApplication.json index e24e0673eb4c..c2f5a730749d 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/getApplication.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/getApplication.json @@ -19,7 +19,7 @@ "plan": null, "identity": null, "kind": "ServiceCatalog", - "sku": null, + "sku": null, "properties": { "managedApplicationDefinitionId": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Solutions/managedApplicationDefinitions/myAppDef", "managedResourceGroupId": "/subscriptions/subid/resourceGroups/myManagedRG", @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/getApplicationDefinition.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/getApplicationDefinition.json index 15487af59f63..90ba4b258839 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/getApplicationDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/getApplicationDefinition.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationDefinitionsByResourceGroup.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationDefinitionsByResourceGroup.json index ad9e6274e311..e5cd89d3ae1a 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationDefinitionsByResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationDefinitionsByResourceGroup.json @@ -83,4 +83,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationsByResourceGroup.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationsByResourceGroup.json index 9d742c11bc90..7d3d798fc3dc 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationsByResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationsByResourceGroup.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/createOrUpdateApplication.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/createOrUpdateApplication.json index 1f6e8465a059..957c3d0ec451 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/createOrUpdateApplication.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/createOrUpdateApplication.json @@ -11,7 +11,7 @@ }, "name": "myManagedApplication", "location": "East US 2", - "kind": "ServiceCatalog" + "kind": "ServiceCatalog" } }, "responses": { @@ -28,7 +28,7 @@ "plan": null, "identity": null, "kind": "ServiceCatalog", - "sku": null, + "sku": null, "properties": { "managedApplicationDefinitionId": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Solutions/applicationDefinitions/myAppDef", "managedResourceGroupId": "/subscriptions/subid/resourceGroups/myManagedRG", @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/createOrUpdateApplicationDefinition.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/createOrUpdateApplicationDefinition.json index 00dfc5ca8317..6e1863f58728 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/createOrUpdateApplicationDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/createOrUpdateApplicationDefinition.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/getApplication.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/getApplication.json index 5b3c4d438644..cf83b23e112d 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/getApplication.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/getApplication.json @@ -19,7 +19,7 @@ "plan": null, "identity": null, "kind": "ServiceCatalog", - "sku": null, + "sku": null, "properties": { "managedApplicationDefinitionId": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Solutions/managedApplicationDefinitions/myAppDef", "managedResourceGroupId": "/subscriptions/subid/resourceGroups/myManagedRG", @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/getApplicationDefinition.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/getApplicationDefinition.json index a2b161deeb3c..f3ee03cc02df 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/getApplicationDefinition.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/getApplicationDefinition.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/listApplicationDefinitionsByResourceGroup.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/listApplicationDefinitionsByResourceGroup.json index 94e79bcec7da..faec6495dd23 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/listApplicationDefinitionsByResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/listApplicationDefinitionsByResourceGroup.json @@ -83,4 +83,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/listApplicationsByResourceGroup.json b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/listApplicationsByResourceGroup.json index f177eaba19dc..2cea45e315b8 100644 --- a/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/listApplicationsByResourceGroup.json +++ b/specification/resources/resource-manager/Microsoft.Solutions/stable/2018-06-01/examples/listApplicationsByResourceGroup.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/scheduler/resource-manager/Microsoft.Scheduler/stable/2016-03-01/scheduler.json b/specification/scheduler/resource-manager/Microsoft.Scheduler/stable/2016-03-01/scheduler.json index b215140f6a9f..91c62c95e44b 100644 --- a/specification/scheduler/resource-manager/Microsoft.Scheduler/stable/2016-03-01/scheduler.json +++ b/specification/scheduler/resource-manager/Microsoft.Scheduler/stable/2016-03-01/scheduler.json @@ -1,1574 +1,1630 @@ { - "swagger": "2.0", - "info": { - "title": "SchedulerManagementClient", - "version": "2016-03-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Scheduler/jobCollections": { - "get": { - "tags": [ - "JobCollections" - ], - "operationId": "JobCollections_ListBySubscription", - "description": "Gets all job collections under specified subscription.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "$ref": "#/parameters/apiVersion" - } - ], - "responses": { - "200": { - "description": "The job collections have been successfully returned.", - "schema": { - "$ref": "#/definitions/JobCollectionListResult" - } - } - }, - "x-ms-pageable": { "nextLinkName": "nextLink" } + "swagger": "2.0", + "info": { + "title": "SchedulerManagementClient", + "version": "2016-03-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json", + "text/json" + ], + "produces": [ + "application/json", + "text/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Scheduler/jobCollections": { + "get": { + "tags": [ + "JobCollections" + ], + "operationId": "JobCollections_ListBySubscription", + "description": "Gets all job collections under specified subscription.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/apiVersion" + } + ], + "responses": { + "200": { + "description": "The job collections have been successfully returned.", + "schema": { + "$ref": "#/definitions/JobCollectionListResult" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections": { - "get": { - "tags": [ - "JobCollections" - ], - "operationId": "JobCollections_ListByResourceGroup", - "description": "Gets all job collections under specified resource group.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "$ref": "#/parameters/apiVersion" - } - ], - "responses": { - "200": { - "description": "The job collections have been successfully returned.", - "schema": { - "$ref": "#/definitions/JobCollectionListResult" - } - } - }, - "x-ms-pageable": { "nextLinkName": "nextLink" } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections": { + "get": { + "tags": [ + "JobCollections" + ], + "operationId": "JobCollections_ListByResourceGroup", + "description": "Gets all job collections under specified resource group.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "$ref": "#/parameters/apiVersion" + } + ], + "responses": { + "200": { + "description": "The job collections have been successfully returned.", + "schema": { + "$ref": "#/definitions/JobCollectionListResult" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}": { - "get": { - "tags": [ - "JobCollections" - ], - "operationId": "JobCollections_Get", - "description": "Gets a job collection.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "$ref": "#/parameters/apiVersion" - } - ], - "responses": { - "200": { - "description": "The job collection has been successfully returned.", - "schema": { - "$ref": "#/definitions/JobCollectionDefinition" - } - } - } - }, - "put": { - "tags": [ - "JobCollections" - ], - "operationId": "JobCollections_CreateOrUpdate", - "description": "Provisions a new job collection or updates an existing job collection.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "$ref": "#/parameters/apiVersion" - }, - { - "name": "jobCollection", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/JobCollectionDefinition" - }, - "description": "The job collection definition." - } - ], - "responses": { - "200": { - "description": "The job collection has been successfully updated.", - "schema": { - "$ref": "#/definitions/JobCollectionDefinition" - } - }, - "201": { - "description": "The job collection has been successfully created.", - "schema": { - "$ref": "#/definitions/JobCollectionDefinition" - } - } - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}": { + "get": { + "tags": [ + "JobCollections" + ], + "operationId": "JobCollections_Get", + "description": "Gets a job collection.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "$ref": "#/parameters/apiVersion" + } + ], + "responses": { + "200": { + "description": "The job collection has been successfully returned.", + "schema": { + "$ref": "#/definitions/JobCollectionDefinition" + } + } + } + }, + "put": { + "tags": [ + "JobCollections" + ], + "operationId": "JobCollections_CreateOrUpdate", + "description": "Provisions a new job collection or updates an existing job collection.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "$ref": "#/parameters/apiVersion" + }, + { + "name": "jobCollection", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/JobCollectionDefinition" }, - "patch": { - "tags": [ - "JobCollections" - ], - "operationId": "JobCollections_Patch", - "description": "Patches an existing job collection.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "$ref": "#/parameters/apiVersion" - }, - { - "name": "jobCollection", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/JobCollectionDefinition" - }, - "description": "The job collection definition." - } - ], - "responses": { - "200": { - "description": "The job collection has been successfully patched.", - "schema": { - "$ref": "#/definitions/JobCollectionDefinition" - } - } - } + "description": "The job collection definition." + } + ], + "responses": { + "200": { + "description": "The job collection has been successfully updated.", + "schema": { + "$ref": "#/definitions/JobCollectionDefinition" + } + }, + "201": { + "description": "The job collection has been successfully created.", + "schema": { + "$ref": "#/definitions/JobCollectionDefinition" + } + } + } + }, + "patch": { + "tags": [ + "JobCollections" + ], + "operationId": "JobCollections_Patch", + "description": "Patches an existing job collection.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "$ref": "#/parameters/apiVersion" + }, + { + "name": "jobCollection", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/JobCollectionDefinition" }, - "delete": { - "tags": [ - "JobCollections" - ], - "operationId": "JobCollections_Delete", - "description": "Deletes a job collection.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "$ref": "#/parameters/apiVersion" - } - ], - "responses": { - "200": { - "description": "The job collection has been successfully deleted." - }, - "202": { - "description": "The delete operation for the job collection has been accepted and will complete asynchronously." - } - }, - "x-ms-long-running-operation": true + "description": "The job collection definition." + } + ], + "responses": { + "200": { + "description": "The job collection has been successfully patched.", + "schema": { + "$ref": "#/definitions/JobCollectionDefinition" } + } + } + }, + "delete": { + "tags": [ + "JobCollections" + ], + "operationId": "JobCollections_Delete", + "description": "Deletes a job collection.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "$ref": "#/parameters/apiVersion" + } + ], + "responses": { + "200": { + "description": "The job collection has been successfully deleted." + }, + "202": { + "description": "The delete operation for the job collection has been accepted and will complete asynchronously." + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/enable": { - "post": { - "tags": [ - "JobCollections" - ], - "operationId": "JobCollections_Enable", - "description": "Enables all of the jobs in the job collection.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "$ref": "#/parameters/apiVersion" - } - ], - "responses": { - "200": { - "description": "All of the jobs in the job collection have been successfully enabled." - }, - "202": { - "description": "Accepted and the enable job collection operation will complete asynchronously." - } - }, - "x-ms-long-running-operation": true - } + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/enable": { + "post": { + "tags": [ + "JobCollections" + ], + "operationId": "JobCollections_Enable", + "description": "Enables all of the jobs in the job collection.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "$ref": "#/parameters/apiVersion" + } + ], + "responses": { + "200": { + "description": "All of the jobs in the job collection have been successfully enabled." + }, + "202": { + "description": "Accepted and the enable job collection operation will complete asynchronously." + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/disable": { - "post": { - "tags": [ - "JobCollections" - ], - "operationId": "JobCollections_Disable", - "description": "Disables all of the jobs in the job collection.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "$ref": "#/parameters/apiVersion" - } - ], - "responses": { - "200": { - "description": "All of the jobs in the job collection have been successfully disabled." - }, - "202": { - "description": "Accepted and the disable job collection operation will complete asynchronously." - } - }, - "x-ms-long-running-operation": true - } + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/disable": { + "post": { + "tags": [ + "JobCollections" + ], + "operationId": "JobCollections_Disable", + "description": "Disables all of the jobs in the job collection.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "$ref": "#/parameters/apiVersion" + } + ], + "responses": { + "200": { + "description": "All of the jobs in the job collection have been successfully disabled." + }, + "202": { + "description": "Accepted and the disable job collection operation will complete asynchronously." + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/jobs/{jobName}": { - "get": { - "tags": [ - "Jobs" - ], - "operationId": "Jobs_Get", - "description": "Gets a job.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "name": "jobName", - "in": "path", - "required": true, - "type": "string", - "description": "The job name." - }, - { - "$ref": "#/parameters/apiVersion" - } - ], - "responses": { - "200": { - "description": "The job has been successfully returned.", - "schema": { - "$ref": "#/definitions/JobDefinition" - } - } - } - }, - "put": { - "tags": [ - "Jobs" - ], - "operationId": "Jobs_CreateOrUpdate", - "description": "Provisions a new job or updates an existing job.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "name": "jobName", - "in": "path", - "required": true, - "type": "string", - "description": "The job name." - }, - { - "$ref": "#/parameters/apiVersion" - }, - { - "name": "job", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/JobDefinition" - }, - "description": "The job definition." - } - ], - "responses": { - "200": { - "description": "The job has been successfully updated.", - "schema": { - "$ref": "#/definitions/JobDefinition" - } - }, - "201": { - "description": "The job has been successfully created.", - "schema": { - "$ref": "#/definitions/JobDefinition" - } - } - } + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/jobs/{jobName}": { + "get": { + "tags": [ + "Jobs" + ], + "operationId": "Jobs_Get", + "description": "Gets a job.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "name": "jobName", + "in": "path", + "required": true, + "type": "string", + "description": "The job name." + }, + { + "$ref": "#/parameters/apiVersion" + } + ], + "responses": { + "200": { + "description": "The job has been successfully returned.", + "schema": { + "$ref": "#/definitions/JobDefinition" + } + } + } + }, + "put": { + "tags": [ + "Jobs" + ], + "operationId": "Jobs_CreateOrUpdate", + "description": "Provisions a new job or updates an existing job.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "name": "jobName", + "in": "path", + "required": true, + "type": "string", + "description": "The job name." + }, + { + "$ref": "#/parameters/apiVersion" + }, + { + "name": "job", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/JobDefinition" }, - "patch": { - "tags": [ - "Jobs" - ], - "operationId": "Jobs_Patch", - "description": "Patches an existing job.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "name": "jobName", - "in": "path", - "required": true, - "type": "string", - "description": "The job name." - }, - { - "$ref": "#/parameters/apiVersion" - }, - { - "name": "job", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/JobDefinition" - }, - "description": "The job definition." - } - ], - "responses": { - "200": { - "description": "The job has been successfully patched.", - "schema": { - "$ref": "#/definitions/JobDefinition" - } - } - } + "description": "The job definition." + } + ], + "responses": { + "200": { + "description": "The job has been successfully updated.", + "schema": { + "$ref": "#/definitions/JobDefinition" + } + }, + "201": { + "description": "The job has been successfully created.", + "schema": { + "$ref": "#/definitions/JobDefinition" + } + } + } + }, + "patch": { + "tags": [ + "Jobs" + ], + "operationId": "Jobs_Patch", + "description": "Patches an existing job.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "name": "jobName", + "in": "path", + "required": true, + "type": "string", + "description": "The job name." + }, + { + "$ref": "#/parameters/apiVersion" + }, + { + "name": "job", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/JobDefinition" }, - "delete": { - "tags": [ - "Jobs" - ], - "operationId": "Jobs_Delete", - "description": "Deletes a job.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "name": "jobName", - "in": "path", - "required": true, - "type": "string", - "description": "The job name." - }, - { - "$ref": "#/parameters/apiVersion" - } - ], - "responses": { - "200": { - "description": "The job has been successfully deleted." - } - } + "description": "The job definition." + } + ], + "responses": { + "200": { + "description": "The job has been successfully patched.", + "schema": { + "$ref": "#/definitions/JobDefinition" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/jobs/{jobName}/run": { - "post": { - "tags": [ - "Jobs" - ], - "operationId": "Jobs_Run", - "description": "Runs a job.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "name": "jobName", - "in": "path", - "required": true, - "type": "string", - "description": "The job name." - }, - { - "$ref": "#/parameters/apiVersion" - } - ], - "responses": { - "200": { - "description": "The job has been successfully run." - } - } + } + } + }, + "delete": { + "tags": [ + "Jobs" + ], + "operationId": "Jobs_Delete", + "description": "Deletes a job.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "name": "jobName", + "in": "path", + "required": true, + "type": "string", + "description": "The job name." + }, + { + "$ref": "#/parameters/apiVersion" + } + ], + "responses": { + "200": { + "description": "The job has been successfully deleted." + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/jobs/{jobName}/run": { + "post": { + "tags": [ + "Jobs" + ], + "operationId": "Jobs_Run", + "description": "Runs a job.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "name": "jobName", + "in": "path", + "required": true, + "type": "string", + "description": "The job name." + }, + { + "$ref": "#/parameters/apiVersion" + } + ], + "responses": { + "200": { + "description": "The job has been successfully run." + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/jobs": { + "get": { + "tags": [ + "Jobs" + ], + "operationId": "Jobs_List", + "description": "Lists all jobs under the specified job collection.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "$ref": "#/parameters/apiVersion" + }, + { + "name": "$top", + "in": "query", + "required": false, + "type": "integer", + "minimum": 1, + "maximum": 100, + "description": "The number of jobs to request, in the of range of [1..100]." + }, + { + "name": "$skip", + "in": "query", + "required": false, + "type": "integer", + "description": "The (0-based) index of the job history list from which to begin requesting entries." + }, + { + "name": "$filter", + "description": "The filter to apply on the job state.", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The job has been successfully returned.", + "schema": { + "$ref": "#/definitions/JobListResult" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/jobs": { - "get": { - "tags": [ - "Jobs" - ], - "operationId": "Jobs_List", - "description": "Lists all jobs under the specified job collection.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "$ref": "#/parameters/apiVersion" - }, - { - "name": "$top", - "in": "query", - "required": false, - "type": "integer", - "minimum": 1, - "maximum": 100, - "description": "The number of jobs to request, in the of range of [1..100]." - }, - { - "name": "$skip", - "in": "query", - "required": false, - "type": "integer", - "description": "The (0-based) index of the job history list from which to begin requesting entries." - }, - { - "name": "$filter", - "description": "The filter to apply on the job state.", - "in": "query", - "required": false, - "type": "string" - } - ], - "responses": { - "200": { - "description": "The job has been successfully returned.", - "schema": { - "$ref": "#/definitions/JobListResult" - } - } - }, - "x-ms-pageable": { "nextLinkName": "nextLink" }, - "x-ms-odata": "#/definitions/JobStateFilter" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/jobs/{jobName}/history": { - "get": { - "tags": [ - "Jobs" - ], - "operationId": "Jobs_ListJobHistory", - "description": "Lists job history.", - "parameters": [ - { - "$ref": "#/parameters/subscriptionId" - }, - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The resource group name." - }, - { - "name": "jobCollectionName", - "in": "path", - "required": true, - "type": "string", - "description": "The job collection name." - }, - { - "name": "jobName", - "in": "path", - "required": true, - "type": "string", - "description": "The job name." - }, - { - "$ref": "#/parameters/apiVersion" - }, - { - "name": "$top", - "in": "query", - "required": false, - "type": "integer", - "minimum": 1, - "maximum": 100, - "description": "the number of job history to request, in the of range of [1..100]." - }, - { - "name": "$skip", - "in": "query", - "required": false, - "type": "integer", - "description": "The (0-based) index of the job history list from which to begin requesting entries." - }, - { - "name": "$filter", - "description": "The filter to apply on the job state.", - "in": "query", - "required": false, - "type": "string" - } - ], - "responses": { - "200": { - "description": "The job histories have been successfully returned.", - "schema": { - "$ref": "#/definitions/JobHistoryListResult" - } - } - }, - "x-ms-pageable": { "nextLinkName": "nextLink" }, - "x-ms-odata": "#/definitions/JobHistoryFilter" + "x-ms-odata": "#/definitions/JobStateFilter" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scheduler/jobCollections/{jobCollectionName}/jobs/{jobName}/history": { + "get": { + "tags": [ + "Jobs" + ], + "operationId": "Jobs_ListJobHistory", + "description": "Lists job history.", + "parameters": [ + { + "$ref": "#/parameters/subscriptionId" + }, + { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The resource group name." + }, + { + "name": "jobCollectionName", + "in": "path", + "required": true, + "type": "string", + "description": "The job collection name." + }, + { + "name": "jobName", + "in": "path", + "required": true, + "type": "string", + "description": "The job name." + }, + { + "$ref": "#/parameters/apiVersion" + }, + { + "name": "$top", + "in": "query", + "required": false, + "type": "integer", + "minimum": 1, + "maximum": 100, + "description": "the number of job history to request, in the of range of [1..100]." + }, + { + "name": "$skip", + "in": "query", + "required": false, + "type": "integer", + "description": "The (0-based) index of the job history list from which to begin requesting entries." + }, + { + "name": "$filter", + "description": "The filter to apply on the job state.", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The job histories have been successfully returned.", + "schema": { + "$ref": "#/definitions/JobHistoryListResult" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/JobHistoryFilter" + } + } + }, + "definitions": { + "JobCollectionListResult": { + "properties": { + "value": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/JobCollectionDefinition" + }, + "description": "Gets the job collections." + }, + "nextLink": { + "type": "string", + "description": "Gets or sets the URL to get the next set of job collections." } + } }, - "definitions": { - "JobCollectionListResult": { - "properties": { - "value": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/JobCollectionDefinition" - }, - "description": "Gets the job collections." - }, - "nextLink": { - "type": "string", - "description": "Gets or sets the URL to get the next set of job collections." - } - } + "JobListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/JobDefinition" + }, + "description": "Gets or sets all jobs under job collection." }, - "JobListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/JobDefinition" - }, - "description": "Gets or sets all jobs under job collection." - }, - "nextLink": { - "type": "string", - "description": "Gets or sets the URL to get the next set of jobs." - } - } + "nextLink": { + "type": "string", + "description": "Gets or sets the URL to get the next set of jobs." + } + } + }, + "JobHistoryListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/JobHistoryDefinition" + }, + "description": "Gets or sets the job histories under job." }, - "JobHistoryListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/JobHistoryDefinition" - }, - "description": "Gets or sets the job histories under job." - }, - "nextLink": { - "type": "string", - "description": "Gets or sets the URL to get the next set of job histories." - } - } + "nextLink": { + "type": "string", + "description": "Gets or sets the URL to get the next set of job histories." + } + } + }, + "JobCollectionDefinition": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Gets the job collection resource identifier." }, - "JobCollectionDefinition": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Gets the job collection resource identifier." - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Gets the job collection resource type." - }, - "name": { - "type": "string", - "description": "Gets or sets the job collection resource name." - }, - "location": { - "type": "string", - "description": "Gets or sets the storage account location." - }, - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Gets or sets the tags." - }, - "properties": { - "$ref": "#/definitions/JobCollectionProperties", - "description": "Gets or sets the job collection properties." - } - } + "type": { + "type": "string", + "readOnly": true, + "description": "Gets the job collection resource type." }, - "JobCollectionProperties": { - "properties": { - "sku": { - "$ref": "#/definitions/Sku", - "description": "Gets or sets the SKU." - }, - "state": { - "type": "string", - "description": "Gets or sets the state.", - "enum": [ - "Enabled", - "Disabled", - "Suspended", - "Deleted" - ], - "x-ms-enum": { "name": "JobCollectionState", "modelAsString": false } - }, - "quota": { - "$ref": "#/definitions/JobCollectionQuota", - "description": "Gets or sets the job collection quota." - } - } + "name": { + "type": "string", + "description": "Gets or sets the job collection resource name." }, - "Sku": { - "properties": { - "name": { - "type": "string", - "description": "Gets or set the SKU.", - "enum": [ - "Standard", - "Free", - "P10Premium", - "P20Premium" - ], - "x-ms-enum": { "name": "SkuDefinition", "modelAsString": false } - } - } + "location": { + "type": "string", + "description": "Gets or sets the storage account location." }, - "JobCollectionQuota": { - "properties": { - "maxJobCount": { - "type": "integer", - "description": "Gets or set the maximum job count." - }, - "maxJobOccurrence": { - "type": "integer", - "description": "Gets or sets the maximum job occurrence." - }, - "maxRecurrence": { - "$ref": "#/definitions/JobMaxRecurrence", - "description": "Gets or set the maximum recurrence." - } - } + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Gets or sets the tags." }, - "JobDefinition": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Gets the job resource identifier." - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Gets the job resource type." - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Gets the job resource name." - }, - "properties": { - "$ref": "#/definitions/JobProperties", - "description": "Gets or sets the job properties." - } - } + "properties": { + "$ref": "#/definitions/JobCollectionProperties", + "description": "Gets or sets the job collection properties." + } + } + }, + "JobCollectionProperties": { + "properties": { + "sku": { + "$ref": "#/definitions/Sku", + "description": "Gets or sets the SKU." }, - "JobProperties": { - "properties": { - "startTime": { - "type": "string", - "format": "date-time", - "description": "Gets or sets the job start time." - }, - "action": { - "$ref": "#/definitions/JobAction", - "description": "Gets or sets the job action." - }, - "recurrence": { - "$ref": "#/definitions/JobRecurrence", - "description": "Gets or sets the job recurrence." - }, - "state": { - "$ref": "#/definitions/JobState", - "description": "Gets or set the job state." - }, - "status": { - "$ref": "#/definitions/JobStatus", - "readOnly": true, - "description": "Gets the job status." - } - } + "state": { + "type": "string", + "description": "Gets or sets the state.", + "enum": [ + "Enabled", + "Disabled", + "Suspended", + "Deleted" + ], + "x-ms-enum": { + "name": "JobCollectionState", + "modelAsString": false + } }, - "JobHistoryDefinition": { - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Gets the job history identifier." - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Gets the job history resource type." - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Gets the job history name." - }, - "properties": { - "$ref": "#/definitions/JobHistoryDefinitionProperties", - "readOnly": true, - "description": "Gets or sets the job history properties." - } - } + "quota": { + "$ref": "#/definitions/JobCollectionQuota", + "description": "Gets or sets the job collection quota." + } + } + }, + "Sku": { + "properties": { + "name": { + "type": "string", + "description": "Gets or set the SKU.", + "enum": [ + "Standard", + "Free", + "P10Premium", + "P20Premium" + ], + "x-ms-enum": { + "name": "SkuDefinition", + "modelAsString": false + } + } + } + }, + "JobCollectionQuota": { + "properties": { + "maxJobCount": { + "type": "integer", + "description": "Gets or set the maximum job count." }, - "JobHistoryDefinitionProperties": { - "properties": { - "startTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Gets the start time for this job." - }, - "endTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Gets the end time for this job." - }, - "expectedExecutionTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Gets the expected execution time for this job." - }, - "actionName": { - "type": "string", - "readOnly": true, - "description": "Gets the job history action name.", - "enum": [ - "MainAction", - "ErrorAction" - ], - "x-ms-enum": { "name": "JobHistoryActionName", "modelAsString": false } - }, - "status": { - "$ref": "#/definitions/JobExecutionStatus", - "readOnly": true, - "description": "Gets the job history status." - }, - "message": { - "type": "string", - "readOnly": true, - "description": "Gets the message for the job history." - }, - "retryCount": { - "type": "integer", - "readOnly": true, - "description": "Gets the retry count for job." - }, - "repeatCount": { - "type": "integer", - "readOnly": true, - "description": "Gets the repeat count for the job." - } - } + "maxJobOccurrence": { + "type": "integer", + "description": "Gets or sets the maximum job occurrence." }, - "JobAction": { - "properties": { - "type": { - "type": "string", - "description": "Gets or sets the job action type.", - "enum": [ - "Http", - "Https", - "StorageQueue", - "ServiceBusQueue", - "ServiceBusTopic" - ], - "x-ms-enum": { "name": "JobActionType", "modelAsString": false } - }, - "request": { - "$ref": "#/definitions/HttpRequest", - "description": "Gets or sets the http requests." - }, - "queueMessage": { - "$ref": "#/definitions/StorageQueueMessage", - "description": "Gets or sets the storage queue message." - }, - "serviceBusQueueMessage": { - "$ref": "#/definitions/ServiceBusQueueMessage", - "description": "Gets or sets the service bus queue message." - }, - "serviceBusTopicMessage": { - "$ref": "#/definitions/ServiceBusTopicMessage", - "description": "Gets or sets the service bus topic message." - }, - "retryPolicy": { - "$ref": "#/definitions/RetryPolicy", - "description": "Gets or sets the retry policy." - }, - "errorAction": { - "$ref": "#/definitions/JobErrorAction", - "description": "Gets or sets the error action." - } - } + "maxRecurrence": { + "$ref": "#/definitions/JobMaxRecurrence", + "description": "Gets or set the maximum recurrence." + } + } + }, + "JobDefinition": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Gets the job resource identifier." }, - "JobErrorAction": { - "properties": { - "type": { - "type": "string", - "description": "Gets or sets the job error action type.", - "enum": [ - "Http", - "Https", - "StorageQueue", - "ServiceBusQueue", - "ServiceBusTopic" - ], - "x-ms-enum": { "name": "JobActionType", "modelAsString": false } - }, - "request": { - "$ref": "#/definitions/HttpRequest", - "description": "Gets or sets the http requests." - }, - "queueMessage": { - "$ref": "#/definitions/StorageQueueMessage", - "description": "Gets or sets the storage queue message." - }, - "serviceBusQueueMessage": { - "$ref": "#/definitions/ServiceBusQueueMessage", - "description": "Gets or sets the service bus queue message." - }, - "serviceBusTopicMessage": { - "$ref": "#/definitions/ServiceBusTopicMessage", - "description": "Gets or sets the service bus topic message." - }, - "retryPolicy": { - "$ref": "#/definitions/RetryPolicy", - "description": "Gets or sets the retry policy." - } - } + "type": { + "type": "string", + "readOnly": true, + "description": "Gets the job resource type." }, - "HttpRequest": { - "properties": { - "authentication": { - "$ref": "#/definitions/HttpAuthentication", - "description": "Gets or sets the authentication method of the request." - }, - "uri": { - "type": "string", - "description": "Gets or sets the URI of the request." - }, - "method": { - "type": "string", - "description": "Gets or sets the method of the request." - }, - "body": { - "type": "string", - "description": "Gets or sets the request body." - }, - "headers": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Gets or sets the headers." - } - } + "name": { + "type": "string", + "readOnly": true, + "description": "Gets the job resource name." }, - "ClientCertAuthentication": { - "x-ms-discriminator-value": "ClientCertificate", - "properties": { - "password": { - "type": "string", - "description": "Gets or sets the certificate password, return value will always be empty." - }, - "pfx": { - "type": "string", - "description": "Gets or sets the pfx certificate. Accepts certification in base64 encoding, return value will always be empty." - }, - "certificateThumbprint": { - "type": "string", - "description": "Gets or sets the certificate thumbprint." - }, - "certificateExpirationDate": { - "type": "string", - "format": "date-time", - "description": "Gets or sets the certificate expiration date." - }, - "certificateSubjectName": { - "type": "string", - "description": "Gets or sets the certificate subject name." - } - }, - "allOf": [ - { - "$ref": "#/definitions/HttpAuthentication" - } - ] - }, - "BasicAuthentication": { - "x-ms-discriminator-value": "Basic", - "properties": { - "username": { - "type": "string", - "description": "Gets or sets the username." - }, - "password": { - "type": "string", - "description": "Gets or sets the password, return value will always be empty." - } - }, - "allOf": [ - { - "$ref": "#/definitions/HttpAuthentication" - } - ] - }, - "OAuthAuthentication": { - "x-ms-discriminator-value": "ActiveDirectoryOAuth", - "properties": { - "secret": { - "type": "string", - "description": "Gets or sets the secret, return value will always be empty." - }, - "tenant": { - "type": "string", - "description": "Gets or sets the tenant." - }, - "audience": { - "type": "string", - "description": "Gets or sets the audience." - }, - "clientId": { - "type": "string", - "description": "Gets or sets the client identifier." - } - }, - "allOf": [ - { - "$ref": "#/definitions/HttpAuthentication" - } - ] - }, - "HttpAuthentication": { - "discriminator": "type", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "description": "Gets or sets the HTTP authentication type.", - "enum": [ - "NotSpecified", - "ClientCertificate", - "ActiveDirectoryOAuth", - "Basic" - ], - "x-ms-enum": { "name": "HttpAuthenticationType", "modelAsString": false } - } - } + "properties": { + "$ref": "#/definitions/JobProperties", + "description": "Gets or sets the job properties." + } + } + }, + "JobProperties": { + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "description": "Gets or sets the job start time." }, - "StorageQueueMessage": { - "properties": { - "storageAccount": { - "type": "string", - "description": "Gets or sets the storage account name." - }, - "queueName": { - "type": "string", - "description": "Gets or sets the queue name." - }, - "sasToken": { - "type": "string", - "description": "Gets or sets the SAS key." - }, - "message": { - "type": "string", - "description": "Gets or sets the message." - } - } + "action": { + "$ref": "#/definitions/JobAction", + "description": "Gets or sets the job action." }, - "ServiceBusQueueMessage": { - "properties": { - "queueName": { - "type": "string", - "description": "Gets or sets the queue name." - } - }, - "allOf": [ - { - "$ref": "#/definitions/ServiceBusMessage" - } - ] - }, - "ServiceBusTopicMessage": { - "properties": { - "topicPath": { - "type": "string", - "description": "Gets or sets the topic path." - } - }, - "allOf": [ - { - "$ref": "#/definitions/ServiceBusMessage" - } - ] - }, - "ServiceBusMessage": { - "properties": { - "authentication": { - "$ref": "#/definitions/ServiceBusAuthentication", - "description": "Gets or sets the Service Bus authentication." - }, - "brokeredMessageProperties": { - "$ref": "#/definitions/ServiceBusBrokeredMessageProperties", - "description": "Gets or sets the brokered message properties." - }, - "customMessageProperties": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Gets or sets the custom message properties." - }, - "message": { - "type": "string", - "description": "Gets or sets the message." - }, - "namespace": { - "type": "string", - "description": "Gets or sets the namespace." - }, - "transportType": { - "type": "string", - "description": "Gets or sets the transport type.", - "enum": [ - "NotSpecified", - "NetMessaging", - "AMQP" - ], - "x-ms-enum": { "name": "ServiceBusTransportType", "modelAsString": false } - } - } + "recurrence": { + "$ref": "#/definitions/JobRecurrence", + "description": "Gets or sets the job recurrence." }, - "ServiceBusAuthentication": { - "properties": { - "sasKey": { - "type": "string", - "description": "Gets or sets the SAS key." - }, - "sasKeyName": { - "type": "string", - "description": "Gets or sets the SAS key name." - }, - "type": { - "type": "string", - "description": "Gets or sets the authentication type.", - "enum": [ - "NotSpecified", - "SharedAccessKey" - ], - "x-ms-enum": { "name": "ServiceBusAuthenticationType", "modelAsString": false } - } - } + "state": { + "$ref": "#/definitions/JobState", + "description": "Gets or set the job state." }, - "ServiceBusBrokeredMessageProperties": { - "properties": { - "contentType": { - "type": "string", - "description": "Gets or sets the content type." - }, - "correlationId": { - "type": "string", - "description": "Gets or sets the correlation ID." - }, - "forcePersistence": { - "type": "boolean", - "description": "Gets or sets the force persistence." - }, - "label": { - "type": "string", - "description": "Gets or sets the label." - }, - "messageId": { - "type": "string", - "description": "Gets or sets the message ID." - }, - "partitionKey": { - "type": "string", - "description": "Gets or sets the partition key." - }, - "replyTo": { - "type": "string", - "description": "Gets or sets the reply to." - }, - "replyToSessionId": { - "type": "string", - "description": "Gets or sets the reply to session ID." - }, - "scheduledEnqueueTimeUtc": { - "type": "string", - "format": "date-time", - "description": "Gets or sets the scheduled enqueue time UTC." - }, - "sessionId": { - "type": "string", - "description": "Gets or sets the session ID." - }, - "timeToLive": { - "type": "string", - "format": "duration", - "description": "Gets or sets the time to live." - }, - "to": { - "type": "string", - "description": "Gets or sets the to." - }, - "viaPartitionKey": { - "type": "string", - "description": "Gets or sets the via partition key." - } - } + "status": { + "$ref": "#/definitions/JobStatus", + "readOnly": true, + "description": "Gets the job status." + } + } + }, + "JobHistoryDefinition": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Gets the job history identifier." }, - "RetryPolicy": { - "properties": { - "retryType": { - "type": "string", - "description": "Gets or sets the retry strategy to be used.", - "enum": [ - "None", - "Fixed" - ], - "x-ms-enum": { "name": "RetryType", "modelAsString": false } - }, - "retryInterval": { - "type": "string", - "format": "duration", - "description": "Gets or sets the retry interval between retries, specify duration in ISO 8601 format." - }, - "retryCount": { - "type": "integer", - "description": "Gets or sets the number of times a retry should be attempted." - } - } + "type": { + "type": "string", + "readOnly": true, + "description": "Gets the job history resource type." }, - "JobMaxRecurrence": { - "properties": { - "frequency": { - "type": "string", - "description": "Gets or sets the frequency of recurrence (second, minute, hour, day, week, month).", - "enum": [ - "Minute", - "Hour", - "Day", - "Week", - "Month" - ], - "x-ms-enum": { "name": "RecurrenceFrequency", "modelAsString": false } - }, - "interval": { - "type": "integer", - "description": "Gets or sets the interval between retries." - } - } + "name": { + "type": "string", + "readOnly": true, + "description": "Gets the job history name." }, - "JobRecurrence": { - "properties": { - "frequency": { - "type": "string", - "description": "Gets or sets the frequency of recurrence (second, minute, hour, day, week, month).", - "enum": [ - "Minute", - "Hour", - "Day", - "Week", - "Month" - ], - "x-ms-enum": { "name": "RecurrenceFrequency", "modelAsString": false } - }, - "interval": { - "type": "integer", - "description": "Gets or sets the interval between retries." - }, - "count": { - "type": "integer", - "description": "Gets or sets the maximum number of times that the job should run." - }, - "endTime": { - "type": "string", - "format": "date-time", - "description": "Gets or sets the time at which the job will complete." - }, - "schedule": { - "$ref": "#/definitions/JobRecurrenceSchedule" - } - } + "properties": { + "$ref": "#/definitions/JobHistoryDefinitionProperties", + "readOnly": true, + "description": "Gets or sets the job history properties." + } + } + }, + "JobHistoryDefinitionProperties": { + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Gets the start time for this job." }, - "RecurrenceFrequency": { - "type": "string", - "description": "Gets or sets the frequency of recurrence (minute, hour, day, week, month).", - "enum": [ - "Minute", - "Hour", - "Day", - "Week", - "Month" - ], - "x-ms-enum": { "name": "RecurrenceFrequency", "modelAsString": false } - }, - "JobRecurrenceSchedule": { - "properties": { - "weekDays": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "Sunday", - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday" - ], - "x-ms-enum": { "name": "DayOfWeek", "modelAsString": false } - }, - "description": "Gets or sets the days of the week that the job should execute on." - }, - "hours": { - "type": "array", - "items": { - "type": "integer" - }, - "description": "Gets or sets the hours of the day that the job should execute at." - }, - "minutes": { - "type": "array", - "items": { - "type": "integer" - }, - "description": "Gets or sets the minutes of the hour that the job should execute at." - }, - "monthDays": { - "type": "array", - "items": { - "type": "integer" - }, - "description": "Gets or sets the days of the month that the job should execute on. Must be between 1 and 31." - }, - "monthlyOccurrences": { - "type": "array", - "items": { - "$ref": "#/definitions/JobRecurrenceScheduleMonthlyOccurrence" - }, - "description": "Gets or sets the occurrences of days within a month." - } - } + "endTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Gets the end time for this job." }, - "JobRecurrenceScheduleMonthlyOccurrence": { - "properties": { - "day": { - "type": "string", - "description": "Gets or sets the day. Must be one of monday, tuesday, wednesday, thursday, friday, saturday, sunday.", - "enum": [ - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday", - "Sunday" - ], - "x-ms-enum": { "name": "JobScheduleDay", "modelAsString": false } - }, - "Occurrence": { - "type": "integer", - "description": "Gets or sets the occurrence. Must be between -5 and 5." - } - } + "expectedExecutionTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Gets the expected execution time for this job." }, - "JobStateFilter": { - "type": "object", - "properties": { - "state": { - "$ref": "#/definitions/JobState", - "description": "Gets or sets the job state." - } - } + "actionName": { + "type": "string", + "readOnly": true, + "description": "Gets the job history action name.", + "enum": [ + "MainAction", + "ErrorAction" + ], + "x-ms-enum": { + "name": "JobHistoryActionName", + "modelAsString": false + } }, - "JobState": { - "type": "string", - "description": "Gets or set the job state.", - "enum": [ - "Enabled", - "Disabled", - "Faulted", - "Completed" - ], - "x-ms-enum": { "name": "JobState", "modelAsString": false } - }, - "JobHistoryFilter": { - "type": "object", - "properties": { - "status": { - "$ref": "#/definitions/JobExecutionStatus", - "description": "Gets or sets the job execution status." - } - } + "status": { + "$ref": "#/definitions/JobExecutionStatus", + "readOnly": true, + "description": "Gets the job history status." + }, + "message": { + "type": "string", + "readOnly": true, + "description": "Gets the message for the job history." + }, + "retryCount": { + "type": "integer", + "readOnly": true, + "description": "Gets the retry count for job." + }, + "repeatCount": { + "type": "integer", + "readOnly": true, + "description": "Gets the repeat count for the job." + } + } + }, + "JobAction": { + "properties": { + "type": { + "type": "string", + "description": "Gets or sets the job action type.", + "enum": [ + "Http", + "Https", + "StorageQueue", + "ServiceBusQueue", + "ServiceBusTopic" + ], + "x-ms-enum": { + "name": "JobActionType", + "modelAsString": false + } + }, + "request": { + "$ref": "#/definitions/HttpRequest", + "description": "Gets or sets the http requests." + }, + "queueMessage": { + "$ref": "#/definitions/StorageQueueMessage", + "description": "Gets or sets the storage queue message." + }, + "serviceBusQueueMessage": { + "$ref": "#/definitions/ServiceBusQueueMessage", + "description": "Gets or sets the service bus queue message." + }, + "serviceBusTopicMessage": { + "$ref": "#/definitions/ServiceBusTopicMessage", + "description": "Gets or sets the service bus topic message." + }, + "retryPolicy": { + "$ref": "#/definitions/RetryPolicy", + "description": "Gets or sets the retry policy." + }, + "errorAction": { + "$ref": "#/definitions/JobErrorAction", + "description": "Gets or sets the error action." + } + } + }, + "JobErrorAction": { + "properties": { + "type": { + "type": "string", + "description": "Gets or sets the job error action type.", + "enum": [ + "Http", + "Https", + "StorageQueue", + "ServiceBusQueue", + "ServiceBusTopic" + ], + "x-ms-enum": { + "name": "JobActionType", + "modelAsString": false + } + }, + "request": { + "$ref": "#/definitions/HttpRequest", + "description": "Gets or sets the http requests." + }, + "queueMessage": { + "$ref": "#/definitions/StorageQueueMessage", + "description": "Gets or sets the storage queue message." + }, + "serviceBusQueueMessage": { + "$ref": "#/definitions/ServiceBusQueueMessage", + "description": "Gets or sets the service bus queue message." + }, + "serviceBusTopicMessage": { + "$ref": "#/definitions/ServiceBusTopicMessage", + "description": "Gets or sets the service bus topic message." + }, + "retryPolicy": { + "$ref": "#/definitions/RetryPolicy", + "description": "Gets or sets the retry policy." + } + } + }, + "HttpRequest": { + "properties": { + "authentication": { + "$ref": "#/definitions/HttpAuthentication", + "description": "Gets or sets the authentication method of the request." + }, + "uri": { + "type": "string", + "description": "Gets or sets the URI of the request." + }, + "method": { + "type": "string", + "description": "Gets or sets the method of the request." + }, + "body": { + "type": "string", + "description": "Gets or sets the request body." + }, + "headers": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Gets or sets the headers." + } + } + }, + "ClientCertAuthentication": { + "x-ms-discriminator-value": "ClientCertificate", + "properties": { + "password": { + "type": "string", + "description": "Gets or sets the certificate password, return value will always be empty." + }, + "pfx": { + "type": "string", + "description": "Gets or sets the pfx certificate. Accepts certification in base64 encoding, return value will always be empty." + }, + "certificateThumbprint": { + "type": "string", + "description": "Gets or sets the certificate thumbprint." + }, + "certificateExpirationDate": { + "type": "string", + "format": "date-time", + "description": "Gets or sets the certificate expiration date." + }, + "certificateSubjectName": { + "type": "string", + "description": "Gets or sets the certificate subject name." + } + }, + "allOf": [ + { + "$ref": "#/definitions/HttpAuthentication" + } + ] + }, + "BasicAuthentication": { + "x-ms-discriminator-value": "Basic", + "properties": { + "username": { + "type": "string", + "description": "Gets or sets the username." + }, + "password": { + "type": "string", + "description": "Gets or sets the password, return value will always be empty." + } + }, + "allOf": [ + { + "$ref": "#/definitions/HttpAuthentication" + } + ] + }, + "OAuthAuthentication": { + "x-ms-discriminator-value": "ActiveDirectoryOAuth", + "properties": { + "secret": { + "type": "string", + "description": "Gets or sets the secret, return value will always be empty." + }, + "tenant": { + "type": "string", + "description": "Gets or sets the tenant." + }, + "audience": { + "type": "string", + "description": "Gets or sets the audience." }, - "JobExecutionStatus": { + "clientId": { + "type": "string", + "description": "Gets or sets the client identifier." + } + }, + "allOf": [ + { + "$ref": "#/definitions/HttpAuthentication" + } + ] + }, + "HttpAuthentication": { + "discriminator": "type", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "description": "Gets or sets the HTTP authentication type.", + "enum": [ + "NotSpecified", + "ClientCertificate", + "ActiveDirectoryOAuth", + "Basic" + ], + "x-ms-enum": { + "name": "HttpAuthenticationType", + "modelAsString": false + } + } + } + }, + "StorageQueueMessage": { + "properties": { + "storageAccount": { + "type": "string", + "description": "Gets or sets the storage account name." + }, + "queueName": { + "type": "string", + "description": "Gets or sets the queue name." + }, + "sasToken": { + "type": "string", + "description": "Gets or sets the SAS key." + }, + "message": { + "type": "string", + "description": "Gets or sets the message." + } + } + }, + "ServiceBusQueueMessage": { + "properties": { + "queueName": { + "type": "string", + "description": "Gets or sets the queue name." + } + }, + "allOf": [ + { + "$ref": "#/definitions/ServiceBusMessage" + } + ] + }, + "ServiceBusTopicMessage": { + "properties": { + "topicPath": { + "type": "string", + "description": "Gets or sets the topic path." + } + }, + "allOf": [ + { + "$ref": "#/definitions/ServiceBusMessage" + } + ] + }, + "ServiceBusMessage": { + "properties": { + "authentication": { + "$ref": "#/definitions/ServiceBusAuthentication", + "description": "Gets or sets the Service Bus authentication." + }, + "brokeredMessageProperties": { + "$ref": "#/definitions/ServiceBusBrokeredMessageProperties", + "description": "Gets or sets the brokered message properties." + }, + "customMessageProperties": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Gets or sets the custom message properties." + }, + "message": { + "type": "string", + "description": "Gets or sets the message." + }, + "namespace": { + "type": "string", + "description": "Gets or sets the namespace." + }, + "transportType": { + "type": "string", + "description": "Gets or sets the transport type.", + "enum": [ + "NotSpecified", + "NetMessaging", + "AMQP" + ], + "x-ms-enum": { + "name": "ServiceBusTransportType", + "modelAsString": false + } + } + } + }, + "ServiceBusAuthentication": { + "properties": { + "sasKey": { + "type": "string", + "description": "Gets or sets the SAS key." + }, + "sasKeyName": { + "type": "string", + "description": "Gets or sets the SAS key name." + }, + "type": { + "type": "string", + "description": "Gets or sets the authentication type.", + "enum": [ + "NotSpecified", + "SharedAccessKey" + ], + "x-ms-enum": { + "name": "ServiceBusAuthenticationType", + "modelAsString": false + } + } + } + }, + "ServiceBusBrokeredMessageProperties": { + "properties": { + "contentType": { + "type": "string", + "description": "Gets or sets the content type." + }, + "correlationId": { + "type": "string", + "description": "Gets or sets the correlation ID." + }, + "forcePersistence": { + "type": "boolean", + "description": "Gets or sets the force persistence." + }, + "label": { + "type": "string", + "description": "Gets or sets the label." + }, + "messageId": { + "type": "string", + "description": "Gets or sets the message ID." + }, + "partitionKey": { + "type": "string", + "description": "Gets or sets the partition key." + }, + "replyTo": { + "type": "string", + "description": "Gets or sets the reply to." + }, + "replyToSessionId": { + "type": "string", + "description": "Gets or sets the reply to session ID." + }, + "scheduledEnqueueTimeUtc": { + "type": "string", + "format": "date-time", + "description": "Gets or sets the scheduled enqueue time UTC." + }, + "sessionId": { + "type": "string", + "description": "Gets or sets the session ID." + }, + "timeToLive": { + "type": "string", + "format": "duration", + "description": "Gets or sets the time to live." + }, + "to": { + "type": "string", + "description": "Gets or sets the to." + }, + "viaPartitionKey": { + "type": "string", + "description": "Gets or sets the via partition key." + } + } + }, + "RetryPolicy": { + "properties": { + "retryType": { + "type": "string", + "description": "Gets or sets the retry strategy to be used.", + "enum": [ + "None", + "Fixed" + ], + "x-ms-enum": { + "name": "RetryType", + "modelAsString": false + } + }, + "retryInterval": { + "type": "string", + "format": "duration", + "description": "Gets or sets the retry interval between retries, specify duration in ISO 8601 format." + }, + "retryCount": { + "type": "integer", + "description": "Gets or sets the number of times a retry should be attempted." + } + } + }, + "JobMaxRecurrence": { + "properties": { + "frequency": { + "type": "string", + "description": "Gets or sets the frequency of recurrence (second, minute, hour, day, week, month).", + "enum": [ + "Minute", + "Hour", + "Day", + "Week", + "Month" + ], + "x-ms-enum": { + "name": "RecurrenceFrequency", + "modelAsString": false + } + }, + "interval": { + "type": "integer", + "description": "Gets or sets the interval between retries." + } + } + }, + "JobRecurrence": { + "properties": { + "frequency": { + "type": "string", + "description": "Gets or sets the frequency of recurrence (second, minute, hour, day, week, month).", + "enum": [ + "Minute", + "Hour", + "Day", + "Week", + "Month" + ], + "x-ms-enum": { + "name": "RecurrenceFrequency", + "modelAsString": false + } + }, + "interval": { + "type": "integer", + "description": "Gets or sets the interval between retries." + }, + "count": { + "type": "integer", + "description": "Gets or sets the maximum number of times that the job should run." + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "Gets or sets the time at which the job will complete." + }, + "schedule": { + "$ref": "#/definitions/JobRecurrenceSchedule" + } + } + }, + "RecurrenceFrequency": { + "type": "string", + "description": "Gets or sets the frequency of recurrence (minute, hour, day, week, month).", + "enum": [ + "Minute", + "Hour", + "Day", + "Week", + "Month" + ], + "x-ms-enum": { + "name": "RecurrenceFrequency", + "modelAsString": false + } + }, + "JobRecurrenceSchedule": { + "properties": { + "weekDays": { + "type": "array", + "items": { "type": "string", - "description": "Gets the job execution status.", "enum": [ - "Completed", - "Failed", - "Postponed" + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" ], - "x-ms-enum": { "name": "JobExecutionStatus", "modelAsString": false } - }, - "JobStatus": { - "properties": { - "executionCount": { - "type": "integer", - "readOnly": true, - "description": "Gets the number of times this job has executed." - }, - "failureCount": { - "type": "integer", - "readOnly": true, - "description": "Gets the number of times this job has failed." - }, - "faultedCount": { - "type": "integer", - "readOnly": true, - "description": "Gets the number of faulted occurrences (occurrences that were retried and failed as many times as the retry policy states)." - }, - "lastExecutionTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Gets the time the last occurrence executed in ISO-8601 format. Could be empty if job has not run yet." - }, - "nextExecutionTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Gets the time of the next occurrence in ISO-8601 format. Could be empty if the job is completed." - } + "x-ms-enum": { + "name": "DayOfWeek", + "modelAsString": false } + }, + "description": "Gets or sets the days of the week that the job should execute on." + }, + "hours": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "Gets or sets the hours of the day that the job should execute at." + }, + "minutes": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "Gets or sets the minutes of the hour that the job should execute at." + }, + "monthDays": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "Gets or sets the days of the month that the job should execute on. Must be between 1 and 31." + }, + "monthlyOccurrences": { + "type": "array", + "items": { + "$ref": "#/definitions/JobRecurrenceScheduleMonthlyOccurrence" + }, + "description": "Gets or sets the occurrences of days within a month." } + } }, - "parameters": { - "subscriptionId": { - "name": "subscriptionId", - "description": "The subscription id.", - "in": "path", - "required": true, - "type": "string" + "JobRecurrenceScheduleMonthlyOccurrence": { + "properties": { + "day": { + "type": "string", + "description": "Gets or sets the day. Must be one of monday, tuesday, wednesday, thursday, friday, saturday, sunday.", + "enum": [ + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday", + "Sunday" + ], + "x-ms-enum": { + "name": "JobScheduleDay", + "modelAsString": false + } }, - "apiVersion": { - "name": "api-version", - "description": "The API version.", - "in": "query", - "required": true, - "type": "string" + "Occurrence": { + "type": "integer", + "description": "Gets or sets the occurrence. Must be between -5 and 5." + } + } + }, + "JobStateFilter": { + "type": "object", + "properties": { + "state": { + "$ref": "#/definitions/JobState", + "description": "Gets or sets the job state." + } + } + }, + "JobState": { + "type": "string", + "description": "Gets or set the job state.", + "enum": [ + "Enabled", + "Disabled", + "Faulted", + "Completed" + ], + "x-ms-enum": { + "name": "JobState", + "modelAsString": false + } + }, + "JobHistoryFilter": { + "type": "object", + "properties": { + "status": { + "$ref": "#/definitions/JobExecutionStatus", + "description": "Gets or sets the job execution status." + } + } + }, + "JobExecutionStatus": { + "type": "string", + "description": "Gets the job execution status.", + "enum": [ + "Completed", + "Failed", + "Postponed" + ], + "x-ms-enum": { + "name": "JobExecutionStatus", + "modelAsString": false + } + }, + "JobStatus": { + "properties": { + "executionCount": { + "type": "integer", + "readOnly": true, + "description": "Gets the number of times this job has executed." + }, + "failureCount": { + "type": "integer", + "readOnly": true, + "description": "Gets the number of times this job has failed." + }, + "faultedCount": { + "type": "integer", + "readOnly": true, + "description": "Gets the number of faulted occurrences (occurrences that were retried and failed as many times as the retry policy states)." + }, + "lastExecutionTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Gets the time the last occurrence executed in ISO-8601 format. Could be empty if job has not run yet." + }, + "nextExecutionTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Gets the time of the next occurrence in ISO-8601 format. Could be empty if the job is completed." } + } + } + }, + "parameters": { + "subscriptionId": { + "name": "subscriptionId", + "description": "The subscription id.", + "in": "path", + "required": true, + "type": "string" + }, + "apiVersion": { + "name": "api-version", + "description": "The API version.", + "in": "query", + "required": true, + "type": "string" } + } } diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2015-02-28-preview/searchindex.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2015-02-28-preview/searchindex.json index 3ff31b1e7452..977173ddd186 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2015-02-28-preview/searchindex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2015-02-28-preview/searchindex.json @@ -4,10 +4,10 @@ "title": "SearchIndexClient", "description": "Client that can be used to query an Azure Search index and upload, merge, or delete documents.", "version": "2015-02-28-Preview", - "x-ms-code-generation-settings": { + "x-ms-code-generation-settings": { "useDateTimeOffset": true, - "syncMethods": "None" - } + "syncMethods": "None" + } }, "consumes": [ "application/json" @@ -35,7 +35,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -88,7 +90,7 @@ "value": { "x-ms-client-name": "Results", "type": "array", - "readOnly": true, + "readOnly": true, "items": { "$ref": "#/definitions/IndexingResult" }, @@ -105,7 +107,9 @@ "mergeOrUpload", "delete" ], - "x-ms-enum": { "name": "IndexActionType" }, + "x-ms-enum": { + "name": "IndexActionType" + }, "description": "Specifies the operation to perform on a document in an indexing batch." }, "SearchMode": { @@ -114,7 +118,9 @@ "any", "all" ], - "x-ms-enum": { "name": "SearchMode" }, + "x-ms-enum": { + "name": "SearchMode" + }, "description": "Specifies whether any or all of the search terms must be matched in order to count the document as a match." }, "QueryType": { @@ -123,7 +129,9 @@ "simple", "full" ], - "x-ms-enum": { "name": "QueryType" }, + "x-ms-enum": { + "name": "QueryType" + }, "description": "Specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax." }, "SearchParametersPayload": { @@ -286,4 +294,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2015-02-28/searchindex.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2015-02-28/searchindex.json index b07ac8cbca30..3b2f10ee9b72 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2015-02-28/searchindex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2015-02-28/searchindex.json @@ -31,7 +31,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -71,7 +73,7 @@ "properties": { "value": { "type": "array", - "readOnly": true, + "readOnly": true, "items": { "$ref": "#/definitions/IndexingResult" }, @@ -89,7 +91,9 @@ "mergeOrUpload", "delete" ], - "x-ms-enum": { "name": "IndexActionType" }, + "x-ms-enum": { + "name": "IndexActionType" + }, "description": "Specifies the operation to perform on a document in an indexing batch." }, "SearchMode": { @@ -98,7 +102,9 @@ "any", "all" ], - "x-ms-enum": { "name": "SearchMode" }, + "x-ms-enum": { + "name": "SearchMode" + }, "description": "Specifies whether any or all of the search terms must be matched in order to count the document as a match." }, "QueryType": { @@ -107,7 +113,9 @@ "simple", "full" ], - "x-ms-enum": { "name": "QueryType" }, + "x-ms-enum": { + "name": "QueryType" + }, "description": "Specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax." }, "SearchParameters": { @@ -266,4 +274,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01-preview/examples/SearchIndexCountDocuments.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01-preview/examples/SearchIndexCountDocuments.json index 93466105805e..3dbf96bdb689 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01-preview/examples/SearchIndexCountDocuments.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01-preview/examples/SearchIndexCountDocuments.json @@ -1,13 +1,13 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": 427 - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": 427 } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01-preview/searchindex.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01-preview/searchindex.json index f5e58115e4d7..f820f3dc98e8 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01-preview/searchindex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01-preview/searchindex.json @@ -4,10 +4,10 @@ "title": "SearchIndexClient", "description": "Client that can be used to query an Azure Search index and upload, merge, or delete documents.", "version": "2016-09-01-Preview", - "x-ms-code-generation-settings": { + "x-ms-code-generation-settings": { "useDateTimeOffset": true, - "syncMethods": "None" - } + "syncMethods": "None" + } }, "x-ms-parameterized-host": { "hostTemplate": "https://{searchServiceName}.{searchDnsSuffix}/indexes('{indexName}')", @@ -38,7 +38,9 @@ ], "operationId": "DocumentsProxy_Count", "x-ms-examples": { - "SearchIndexCountDocuments": { "$ref": "./examples/SearchIndexCountDocuments.json" } + "SearchIndexCountDocuments": { + "$ref": "./examples/SearchIndexCountDocuments.json" + } }, "description": "Queries the number of documents in the Azure Search index.", "externalDocs": { @@ -100,7 +102,7 @@ "value": { "x-ms-client-name": "Results", "type": "array", - "readOnly": true, + "readOnly": true, "items": { "$ref": "#/definitions/IndexingResult" }, @@ -117,7 +119,9 @@ "mergeOrUpload", "delete" ], - "x-ms-enum": { "name": "IndexActionType" }, + "x-ms-enum": { + "name": "IndexActionType" + }, "description": "Specifies the operation to perform on a document in an indexing batch." }, "SearchMode": { @@ -126,7 +130,9 @@ "any", "all" ], - "x-ms-enum": { "name": "SearchMode" }, + "x-ms-enum": { + "name": "SearchMode" + }, "description": "Specifies whether any or all of the search terms must be matched in order to count the document as a match." }, "QueryType": { @@ -135,7 +141,9 @@ "simple", "full" ], - "x-ms-enum": { "name": "QueryType" }, + "x-ms-enum": { + "name": "QueryType" + }, "description": "Specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax." }, "SearchParametersPayload": { @@ -305,7 +313,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" }, + "x-ms-parameter-grouping": { + "name": "search-request-options" + }, "x-ms-parameter-location": "method" }, "SearchServiceNameParameter": { @@ -337,4 +347,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01/searchindex.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01/searchindex.json index e837bfd2f69a..e5c304f95ecf 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01/searchindex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2016-09-01/searchindex.json @@ -4,10 +4,10 @@ "title": "SearchIndexClient", "description": "Client that can be used to query an Azure Search index and upload, merge, or delete documents.", "version": "2016-09-01", - "x-ms-code-generation-settings": { + "x-ms-code-generation-settings": { "useDateTimeOffset": true, - "syncMethods": "None" - } + "syncMethods": "None" + } }, "consumes": [ "application/json" @@ -35,7 +35,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -88,7 +90,7 @@ "value": { "x-ms-client-name": "Results", "type": "array", - "readOnly": true, + "readOnly": true, "items": { "$ref": "#/definitions/IndexingResult" }, @@ -105,7 +107,9 @@ "mergeOrUpload", "delete" ], - "x-ms-enum": { "name": "IndexActionType" }, + "x-ms-enum": { + "name": "IndexActionType" + }, "description": "Specifies the operation to perform on a document in an indexing batch." }, "SearchMode": { @@ -114,7 +118,9 @@ "any", "all" ], - "x-ms-enum": { "name": "SearchMode" }, + "x-ms-enum": { + "name": "SearchMode" + }, "description": "Specifies whether any or all of the search terms must be matched in order to count the document as a match." }, "QueryType": { @@ -123,7 +129,9 @@ "simple", "full" ], - "x-ms-enum": { "name": "QueryType" }, + "x-ms-enum": { + "name": "QueryType" + }, "description": "Specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax." }, "SearchParametersPayload": { @@ -286,4 +294,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexAutocompleteDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexAutocompleteDocumentsGet.json index cff713cb9273..1a159f9b0681 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexAutocompleteDocumentsGet.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexAutocompleteDocumentsGet.json @@ -1,36 +1,39 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview", - "autocompleteMode": "oneTerm", - "search": "washington medic", - "suggesterName": "sg", - "filter": "search.in(docId,'101,102,105')", - "fuzzy": false, - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": 80, - "searchFields": ["title", "description"], - "top": 10 - }, - "responses": { - "200": { - "body": [ - { - "text": "medicaid", - "queryPlusText": "washington medicaid" - }, - { - "text": "medicare", - "queryPlusText": "washington medicare" - }, - { - "text": "medicine", - "queryPlusText": "washington medicine" - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview", + "autocompleteMode": "oneTerm", + "search": "washington medic", + "suggesterName": "sg", + "filter": "search.in(docId,'101,102,105')", + "fuzzy": false, + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": 80, + "searchFields": [ + "title", + "description" + ], + "top": 10 + }, + "responses": { + "200": { + "body": [ + { + "text": "medicaid", + "queryPlusText": "washington medicaid" + }, + { + "text": "medicare", + "queryPlusText": "washington medicare" + }, + { + "text": "medicine", + "queryPlusText": "washington medicine" } + ] } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexAutocompleteDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexAutocompleteDocumentsPost.json index 30f0b05d39f0..5385f71fe1ac 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexAutocompleteDocumentsPost.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexAutocompleteDocumentsPost.json @@ -1,37 +1,37 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview", - "autocompleteRequest": { - "autocompleteMode": "oneTerm", - "search": "washington medic", - "suggesterName": "sg", - "filter": "search.in(docId,'101,102,105')", - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": 80, - "searchFields": "title,description", - "top": 10 - } - }, - "responses": { - "200": { - "body": [ - { - "text": "medicaid", - "queryPlusText": "washington medicaid" - }, - { - "text": "medicare", - "queryPlusText": "washington medicare" - }, - { - "text": "medicine", - "queryPlusText": "washington medicine" - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview", + "autocompleteRequest": { + "autocompleteMode": "oneTerm", + "search": "washington medic", + "suggesterName": "sg", + "filter": "search.in(docId,'101,102,105')", + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": 80, + "searchFields": "title,description", + "top": 10 + } + }, + "responses": { + "200": { + "body": [ + { + "text": "medicaid", + "queryPlusText": "washington medicaid" + }, + { + "text": "medicare", + "queryPlusText": "washington medicare" + }, + { + "text": "medicine", + "queryPlusText": "washington medicine" } + ] } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexCountDocuments.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexCountDocuments.json index acc0d868dddf..024a9ffcbb2d 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexCountDocuments.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexCountDocuments.json @@ -1,13 +1,13 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": 427 - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": 427 } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexGetDocument.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexGetDocument.json index 50738b071d51..e52da497ea5c 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexGetDocument.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexGetDocument.json @@ -1,19 +1,23 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview", - "key": "1", - "$select": ["docId", "title", "description"] - }, - "responses": { - "200": { - "body": { - "description": "Cheapest hotel in town", - "docId": "1", - "title": "Nice Hotel" - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview", + "key": "1", + "$select": [ + "docId", + "title", + "description" + ] + }, + "responses": { + "200": { + "body": { + "description": "Cheapest hotel in town", + "docId": "1", + "title": "Nice Hotel" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexIndexDocuments.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexIndexDocuments.json index 076914f9ebc2..40fe7f74ca02 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexIndexDocuments.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexIndexDocuments.json @@ -1,94 +1,94 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview", - "batch": { + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview", + "batch": { + "value": [ + { + "@search.action": "upload", + "docId": "1", + "title": "Fancy Stay", + "description": "Best hotel in town" + }, + { + "@search.action": "merge", + "docId": "2", + "title": "Roach Motel" + }, + { + "@search.action": "mergeOrUpload", + "docId": "3", + "title": "Econo Motel" + }, + { + "@search.action": "delete", + "docId": "4" + } + ] + } + }, + "responses": { + "200": { + "body": { "value": [ - { - "@search.action": "upload", - "docId": "1", - "title": "Fancy Stay", - "description": "Best hotel in town" - }, - { - "@search.action": "merge", - "docId": "2", - "title": "Roach Motel" - }, - { - "@search.action": "mergeOrUpload", - "docId": "3", - "title": "Econo Motel" - }, - { - "@search.action": "delete", - "docId": "4" - } + { + "key": "1", + "status": true, + "errorMessage": null, + "statusCode": 201 + }, + { + "key": "2", + "status": true, + "errorMessage": null, + "statusCode": 200 + }, + { + "key": "3", + "status": true, + "errorMessage": null, + "statusCode": 200 + }, + { + "key": "4", + "status": true, + "errorMessage": null, + "statusCode": 200 + } ] } - }, - "responses": { - "200": { - "body": { - "value": [ - { - "key": "1", - "status": true, - "errorMessage": null, - "statusCode": 201 - }, - { - "key": "2", - "status": true, - "errorMessage": null, - "statusCode": 200 - }, - { - "key": "3", - "status": true, - "errorMessage": null, - "statusCode": 200 - }, - { - "key": "4", - "status": true, - "errorMessage": null, - "statusCode": 200 - } - ] - } - }, - "207": { - "body": { - "value": [ - { - "key": "1", - "status": true, - "errorMessage": null, - "statusCode": 200 - }, - { - "key": "2", - "status": false, - "errorMessage": "Document not found.", - "statusCode": 404 - }, - { - "key": "3", - "status": true, - "errorMessage": null, - "statusCode": 200 - }, - { - "key": "4", - "status": true, - "errorMessage": null, - "statusCode": 200 - } - ] - } + }, + "207": { + "body": { + "value": [ + { + "key": "1", + "status": true, + "errorMessage": null, + "statusCode": 200 + }, + { + "key": "2", + "status": false, + "errorMessage": "Document not found.", + "statusCode": 404 + }, + { + "key": "3", + "status": true, + "errorMessage": null, + "statusCode": 200 + }, + { + "key": "4", + "status": true, + "errorMessage": null, + "statusCode": 200 + } + ] } - } + } + } } diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSearchDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSearchDocumentsGet.json index b9aa3a1733a0..802955b430d0 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSearchDocumentsGet.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSearchDocumentsGet.json @@ -1,65 +1,85 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview", - "$count": true, - "facet": [ "category,count:10,sort:count" ], - "$filter": "rating gt 10", - "highlight": [ "title" ], - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": 80, - "$orderby": [ "search.score() desc", "rating desc" ], - "queryType": "simple", - "scoringParameters": [ "currentLocation--122.123,44.77233" ], - "scoringProfile": "sp", - "search": "nice hotels", - "searchFields": [ "title", "description" ], - "searchMode": "any", - "$select": [ "docId", "title", "description" ], - "$skip": 100, - "$top": 10 - }, - "responses": { - "200": { - "body": { - "@odata.count": 25, - "@search.coverage": 80, - "@search.facets": { - "category": [ - { - "count": 1, - "value": "Economy" - }, - { - "count": 1, - "value": "Luxury" - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview", + "$count": true, + "facet": [ + "category,count:10,sort:count" + ], + "$filter": "rating gt 10", + "highlight": [ + "title" + ], + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": 80, + "$orderby": [ + "search.score() desc", + "rating desc" + ], + "queryType": "simple", + "scoringParameters": [ + "currentLocation--122.123,44.77233" + ], + "scoringProfile": "sp", + "search": "nice hotels", + "searchFields": [ + "title", + "description" + ], + "searchMode": "any", + "$select": [ + "docId", + "title", + "description" + ], + "$skip": 100, + "$top": 10 + }, + "responses": { + "200": { + "body": { + "@odata.count": 25, + "@search.coverage": 80, + "@search.facets": { + "category": [ + { + "count": 1, + "value": "Economy" }, - "value": [ - { - "@search.score": 1.50, - "@search.highlights": { - "title": [ "Nice Hotel" ] - }, - "description": "Cheapest hotel in town", - "docId": "1", - "title": "Nice Hotel" - }, - { - "@search.score": 0.70, - "@search.highlights": { - "title": [ "Fancy Hotel" ] - }, - "description": "Best hotel in town", - "docId": "2", - "title": "Fancy Hotel" - } - ] - } + { + "count": 1, + "value": "Luxury" + } + ] + }, + "value": [ + { + "@search.score": 1.50, + "@search.highlights": { + "title": [ + "Nice Hotel" + ] + }, + "description": "Cheapest hotel in town", + "docId": "1", + "title": "Nice Hotel" + }, + { + "@search.score": 0.70, + "@search.highlights": { + "title": [ + "Fancy Hotel" + ] + }, + "description": "Best hotel in town", + "docId": "2", + "title": "Fancy Hotel" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSearchDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSearchDocumentsPost.json index 3fca0afb9ff9..a499c2b07cfc 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSearchDocumentsPost.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSearchDocumentsPost.json @@ -1,86 +1,98 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview", - "searchRequest": { - "count": true, - "facets": [ "category,count:10,sort:count" ], - "filter": "rating gt 4.0", - "highlight": "title", - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": null, - "orderby": "search.score() desc,rating desc", - "queryType": "simple", - "scoringParameters": [ "currentLocation--122.123,44.77233" ], - "scoringProfile": "sp", - "search": "nice hotels", - "searchFields": "title,description", - "searchMode": "any", - "select": "docId,title,description", - "skip": 0, - "top": 10 - } - }, - "responses": { - "200": { - "body": { - "@odata.count": 25, - "@search.facets": { - "category": [ - { - "count": 1, - "value": "Economy" - }, - { - "count": 1, - "value": "Luxury" - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview", + "searchRequest": { + "count": true, + "facets": [ + "category,count:10,sort:count" + ], + "filter": "rating gt 4.0", + "highlight": "title", + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": null, + "orderby": "search.score() desc,rating desc", + "queryType": "simple", + "scoringParameters": [ + "currentLocation--122.123,44.77233" + ], + "scoringProfile": "sp", + "search": "nice hotels", + "searchFields": "title,description", + "searchMode": "any", + "select": "docId,title,description", + "skip": 0, + "top": 10 + } + }, + "responses": { + "200": { + "body": { + "@odata.count": 25, + "@search.facets": { + "category": [ + { + "count": 1, + "value": "Economy" + }, + { + "count": 1, + "value": "Luxury" + } + ] + }, + "@search.nextPageParameters": { + "count": true, + "facets": [ + "category,count:10,sort:count" + ], + "filter": "rating gt 4.0", + "highlight": "title", + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": null, + "orderby": "search.score() desc,rating desc", + "queryType": "simple", + "scoringParameters": [ + "currentLocation--122.123,44.77233" + ], + "scoringProfile": "sp", + "search": "nice hotels", + "searchFields": "title,description", + "searchMode": "any", + "select": "docId,title,description", + "skip": 2, + "top": 8 + }, + "value": [ + { + "@search.score": 1.50, + "@search.highlights": { + "title": [ + "Nice Hotel" + ] }, - "@search.nextPageParameters": { - "count": true, - "facets": [ "category,count:10,sort:count" ], - "filter": "rating gt 4.0", - "highlight": "title", - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": null, - "orderby": "search.score() desc,rating desc", - "queryType": "simple", - "scoringParameters": [ "currentLocation--122.123,44.77233" ], - "scoringProfile": "sp", - "search": "nice hotels", - "searchFields": "title,description", - "searchMode": "any", - "select": "docId,title,description", - "skip": 2, - "top": 8 + "description": "Cheapest hotel in town", + "docId": "1", + "title": "Nice Hotel" + }, + { + "@search.score": 0.70, + "@search.highlights": { + "title": [ + "Fancy Hotel" + ] }, - "value": [ - { - "@search.score": 1.50, - "@search.highlights": { - "title": [ "Nice Hotel" ] - }, - "description": "Cheapest hotel in town", - "docId": "1", - "title": "Nice Hotel" - }, - { - "@search.score": 0.70, - "@search.highlights": { - "title": [ "Fancy Hotel" ] - }, - "description": "Best hotel in town", - "docId": "2", - "title": "Fancy Hotel" - } - ], - "@odata.nextLink": "https://myservice.search.windows.net/indexes('myindex')/docs/search.post.search?api-version=2017-11-11-Preview" - } + "description": "Best hotel in town", + "docId": "2", + "title": "Fancy Hotel" + } + ], + "@odata.nextLink": "https://myservice.search.windows.net/indexes('myindex')/docs/search.post.search?api-version=2017-11-11-Preview" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSuggestDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSuggestDocumentsGet.json index 22fd6cc70f26..826cd66f1db4 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSuggestDocumentsGet.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSuggestDocumentsGet.json @@ -1,39 +1,48 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview", - "$filter": "rating gt 10", - "fuzzy": false, - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": 80, - "$orderby": ["search.score() desc", "rating desc"], - "search": "hote", - "searchFields": ["title"], - "suggesterName": "sg", - "$select": ["docId", "title", "description"], - "$top": 10 - }, - "responses": { - "200": { - "body": { - "value": [ - { - "@search.text": "Nice Hotel", - "description": "Cheapest hotel in town", - "docId": "1", - "title": "Nice Hotel" - }, - { - "@search.text": "Fancy Hotel", - "description": "Best hotel in town", - "docId": "2", - "title": "Fancy Hotel" - } - ] - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview", + "$filter": "rating gt 10", + "fuzzy": false, + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": 80, + "$orderby": [ + "search.score() desc", + "rating desc" + ], + "search": "hote", + "searchFields": [ + "title" + ], + "suggesterName": "sg", + "$select": [ + "docId", + "title", + "description" + ], + "$top": 10 + }, + "responses": { + "200": { + "body": { + "value": [ + { + "@search.text": "Nice Hotel", + "description": "Cheapest hotel in town", + "docId": "1", + "title": "Nice Hotel" + }, + { + "@search.text": "Fancy Hotel", + "description": "Best hotel in town", + "docId": "2", + "title": "Fancy Hotel" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSuggestDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSuggestDocumentsPost.json index 4802b4f82f20..9eb4c1d3f6fa 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSuggestDocumentsPost.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/examples/SearchIndexSuggestDocumentsPost.json @@ -1,39 +1,39 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview", - "suggestRequest": { - "filter": "rating gt 4.0", - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": 80, - "orderby": "rating desc", - "search": "hote", - "searchFields": "title", - "select": "docId,title,description", - "top": 10 + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview", + "suggestRequest": { + "filter": "rating gt 4.0", + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": 80, + "orderby": "rating desc", + "search": "hote", + "searchFields": "title", + "select": "docId,title,description", + "top": 10 + } + }, + "responses": { + "200": { + "body": { + "value": [ + { + "@search.text": "Nice Hotel", + "description": "Cheapest hotel in town", + "docId": "1", + "title": "Nice Hotel" + }, + { + "@search.text": "Fancy Hotel", + "description": "Best hotel in town", + "docId": "2", + "title": "Fancy Hotel" + } + ] } - }, - "responses": { - "200": { - "body": { - "value": [ - { - "@search.text": "Nice Hotel", - "description": "Cheapest hotel in town", - "docId": "1", - "title": "Nice Hotel" - }, - { - "@search.text": "Fancy Hotel", - "description": "Best hotel in town", - "docId": "2", - "title": "Fancy Hotel" - } - ] - } - } - } -} \ No newline at end of file + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/searchindex.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/searchindex.json index d6081f45d3ac..51cc704e0769 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/searchindex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11-preview/searchindex.json @@ -41,7 +41,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/Count-Documents" }, "x-ms-examples": { - "SearchIndexCountDocuments": { "$ref": "./examples/SearchIndexCountDocuments.json" } + "SearchIndexCountDocuments": { + "$ref": "./examples/SearchIndexCountDocuments.json" + } }, "description": "Queries the number of documents in the Azure Search index.", "parameters": [ @@ -74,7 +76,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents" }, "x-ms-examples": { - "SearchIndexSearchDocumentsGet": { "$ref": "./examples/SearchIndexSearchDocumentsGet.json" } + "SearchIndexSearchDocumentsGet": { + "$ref": "./examples/SearchIndexSearchDocumentsGet.json" + } }, "description": "Searches for documents in the Azure Search index.", "parameters": [ @@ -182,8 +186,8 @@ "full" ], "x-ms-enum": { - "name": "QueryType", - "modelAsString": false + "name": "QueryType", + "modelAsString": false }, "x-nullable": false, "description": "A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax.", @@ -235,8 +239,8 @@ "all" ], "x-ms-enum": { - "name": "SearchMode", - "modelAsString": false + "name": "SearchMode", + "modelAsString": false }, "x-nullable": false, "description": "A value that specifies whether any or all of the search terms must be matched in order to count the document as a match.", @@ -304,7 +308,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents" }, "x-ms-examples": { - "SearchIndexSearchDocumentsPost": { "$ref": "./examples/SearchIndexSearchDocumentsPost.json" } + "SearchIndexSearchDocumentsPost": { + "$ref": "./examples/SearchIndexSearchDocumentsPost.json" + } }, "description": "Searches for documents in the Azure Search index.", "parameters": [ @@ -346,7 +352,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/lookup-document" }, "x-ms-examples": { - "SearchIndexGetDocument": { "$ref": "./examples/SearchIndexGetDocument.json" } + "SearchIndexGetDocument": { + "$ref": "./examples/SearchIndexGetDocument.json" + } }, "description": "Retrieves a document from the Azure Search index.", "parameters": [ @@ -394,7 +402,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/suggestions" }, "x-ms-examples": { - "SearchIndexSuggestDocumentsGet": { "$ref": "./examples/SearchIndexSuggestDocumentsGet.json" } + "SearchIndexSuggestDocumentsGet": { + "$ref": "./examples/SearchIndexSuggestDocumentsGet.json" + } }, "description": "Suggests documents in the Azure Search index that match the given partial query text.", "parameters": [ @@ -536,7 +546,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/suggestions" }, "x-ms-examples": { - "SearchIndexSuggestDocumentsPost": { "$ref": "./examples/SearchIndexSuggestDocumentsPost.json" } + "SearchIndexSuggestDocumentsPost": { + "$ref": "./examples/SearchIndexSuggestDocumentsPost.json" + } }, "description": "Suggests documents in the Azure Search index that match the given partial query text.", "parameters": [ @@ -577,7 +589,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents" }, "x-ms-examples": { - "SearchIndexIndexDocuments": { "$ref": "./examples/SearchIndexIndexDocuments.json" } + "SearchIndexIndexDocuments": { + "$ref": "./examples/SearchIndexIndexDocuments.json" + } }, "description": "Sends a batch of document write actions to the Azure Search index.", "parameters": [ @@ -624,7 +638,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/autocomplete" }, "x-ms-examples": { - "SearchIndexAutocompleteDocumentsGet": { "$ref": "./examples/SearchIndexAutocompleteDocumentsGet.json" } + "SearchIndexAutocompleteDocumentsGet": { + "$ref": "./examples/SearchIndexAutocompleteDocumentsGet.json" + } }, "description": "Autocompletes incomplete query terms based on input text and matching terms in the Azure Search index.", "parameters": [ @@ -660,8 +676,8 @@ "oneTermWithContext" ], "x-ms-enum": { - "name": "AutocompleteMode", - "modelAsString": false + "name": "AutocompleteMode", + "modelAsString": false }, "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context while producing auto-completed terms.", "x-ms-parameter-grouping": { @@ -744,7 +760,7 @@ "description": "", "schema": { "$ref": "#/definitions/AutocompleteResult", - "description": "The result of Autocomplete query." + "description": "The result of Autocomplete query." } } } @@ -760,7 +776,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/autocomplete" }, "x-ms-examples": { - "SearchIndexAutocompleteDocumentsPost": { "$ref": "./examples/SearchIndexAutocompleteDocumentsPost.json" } + "SearchIndexAutocompleteDocumentsPost": { + "$ref": "./examples/SearchIndexAutocompleteDocumentsPost.json" + } }, "description": "Autocompletes incomplete query terms based on input text and matching terms in the Azure Search index.", "parameters": [ @@ -786,7 +804,7 @@ "description": "", "schema": { "$ref": "#/definitions/AutocompleteResult", - "description": "The result of Autocomplete query." + "description": "The result of Autocomplete query." } } } @@ -893,29 +911,29 @@ }, "SearchResult": { "properties": { - "@search.score": { - "type": "number", - "format": "double", - "readOnly": true, - "x-ms-client-name": "Score", - "x-nullable": false, - "description": "The relevance score of the document compared to other documents returned by the query." - }, - "@search.highlights": { - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - }, - "readOnly": true, - "x-ms-client-name": "Highlights", - "description": "Text fragments from the document that indicate the matching search terms, organized by each applicable field; null if hit highlighting was not enabled for the query." - } - }, - "additionalProperties": true, - "description": "Contains a document found by a search query, plus associated metadata." + "@search.score": { + "type": "number", + "format": "double", + "readOnly": true, + "x-ms-client-name": "Score", + "x-nullable": false, + "description": "The relevance score of the document compared to other documents returned by the query." + }, + "@search.highlights": { + "type": "object", + "additionalProperties": { + "type": "array", + "items": { + "type": "string" + } + }, + "readOnly": true, + "x-ms-client-name": "Highlights", + "description": "Text fragments from the document that indicate the matching search terms, organized by each applicable field; null if hit highlighting was not enabled for the query." + } + }, + "additionalProperties": true, + "description": "Contains a document found by a search query, plus associated metadata." }, "IndexBatch": { "properties": { @@ -928,7 +946,9 @@ "x-ms-client-name": "Actions" } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Contains a batch of document write actions to send to the Azure Search index." }, "IndexAction": { @@ -941,7 +961,9 @@ "mergeOrUpload", "delete" ], - "x-ms-enum": { "name": "IndexActionType" }, + "x-ms-enum": { + "name": "IndexActionType" + }, "x-ms-client-name": "ActionType", "x-nullable": false, "description": "The operation to perform on a document in an indexing batch." @@ -984,7 +1006,7 @@ "value": { "x-ms-client-name": "Results", "type": "array", - "readOnly": true, + "readOnly": true, "items": { "$ref": "#/definitions/IndexingResult" }, @@ -1026,7 +1048,7 @@ ], "x-ms-enum": { "name": "AutocompleteMode", - "modelAsString" : false + "modelAsString": false }, "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context in producing autocomplete terms." }, @@ -1231,11 +1253,11 @@ }, "description": "Parameters for fuzzy matching, and other autocomplete query behaviors." }, - "AutocompleteResult" : { - "properties": { + "AutocompleteResult": { + "properties": { "value": { "type": "array", - "readOnly": true, + "readOnly": true, "items": { "$ref": "#/definitions/AutocompleteItem" }, @@ -1243,7 +1265,7 @@ "x-ms-client-name": "Results" } }, - "description": "The result of Autocomplete query." + "description": "The result of Autocomplete query." }, "AutocompleteItem": { "properties": { @@ -1277,7 +1299,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" }, + "x-ms-parameter-grouping": { + "name": "search-request-options" + }, "x-ms-parameter-location": "method" }, "SearchServiceNameParameter": { @@ -1309,4 +1333,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11/examples/SearchIndexCountDocuments.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11/examples/SearchIndexCountDocuments.json index 98f36d7e0a11..b1be0e315ffb 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11/examples/SearchIndexCountDocuments.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11/examples/SearchIndexCountDocuments.json @@ -1,13 +1,13 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": 427 - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": 427 } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11/searchindex.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11/searchindex.json index 2d381a25c644..ade520917e57 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11/searchindex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2017-11-11/searchindex.json @@ -4,10 +4,10 @@ "title": "SearchIndexClient", "description": "Client that can be used to query an Azure Search index and upload, merge, or delete documents.", "version": "2017-11-11", - "x-ms-code-generation-settings": { + "x-ms-code-generation-settings": { "useDateTimeOffset": true, - "syncMethods": "None" - } + "syncMethods": "None" + } }, "x-ms-parameterized-host": { "hostTemplate": "https://{searchServiceName}.{searchDnsSuffix}/indexes('{indexName}')", @@ -38,7 +38,9 @@ ], "operationId": "DocumentsProxy_Count", "x-ms-examples": { - "SearchIndexCountDocuments": { "$ref": "./examples/SearchIndexCountDocuments.json" } + "SearchIndexCountDocuments": { + "$ref": "./examples/SearchIndexCountDocuments.json" + } }, "description": "Queries the number of documents in the Azure Search index.", "externalDocs": { @@ -100,7 +102,7 @@ "value": { "x-ms-client-name": "Results", "type": "array", - "readOnly": true, + "readOnly": true, "items": { "$ref": "#/definitions/IndexingResult" }, @@ -117,7 +119,9 @@ "mergeOrUpload", "delete" ], - "x-ms-enum": { "name": "IndexActionType" }, + "x-ms-enum": { + "name": "IndexActionType" + }, "description": "Specifies the operation to perform on a document in an indexing batch." }, "SearchMode": { @@ -126,7 +130,9 @@ "any", "all" ], - "x-ms-enum": { "name": "SearchMode" }, + "x-ms-enum": { + "name": "SearchMode" + }, "description": "Specifies whether any or all of the search terms must be matched in order to count the document as a match." }, "QueryType": { @@ -135,7 +141,9 @@ "simple", "full" ], - "x-ms-enum": { "name": "QueryType" }, + "x-ms-enum": { + "name": "QueryType" + }, "description": "Specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax." }, "SearchParametersPayload": { @@ -305,7 +313,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" }, + "x-ms-parameter-grouping": { + "name": "search-request-options" + }, "x-ms-parameter-location": "method" }, "SearchServiceNameParameter": { @@ -337,4 +347,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexAutocompleteDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexAutocompleteDocumentsGet.json index 0fe6c765e626..d7485f781767 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexAutocompleteDocumentsGet.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexAutocompleteDocumentsGet.json @@ -1,36 +1,39 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2019-05-06", - "autocompleteMode": "oneTerm", - "search": "washington medic", - "suggesterName": "sg", - "filter": "search.in(docId,'101,102,105')", - "fuzzy": false, - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": 80, - "searchFields": ["title", "description"], - "top": 10 - }, - "responses": { - "200": { - "body": [ - { - "text": "medicaid", - "queryPlusText": "washington medicaid" - }, - { - "text": "medicare", - "queryPlusText": "washington medicare" - }, - { - "text": "medicine", - "queryPlusText": "washington medicine" - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2019-05-06", + "autocompleteMode": "oneTerm", + "search": "washington medic", + "suggesterName": "sg", + "filter": "search.in(docId,'101,102,105')", + "fuzzy": false, + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": 80, + "searchFields": [ + "title", + "description" + ], + "top": 10 + }, + "responses": { + "200": { + "body": [ + { + "text": "medicaid", + "queryPlusText": "washington medicaid" + }, + { + "text": "medicare", + "queryPlusText": "washington medicare" + }, + { + "text": "medicine", + "queryPlusText": "washington medicine" } + ] } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexAutocompleteDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexAutocompleteDocumentsPost.json index 30f0b05d39f0..5385f71fe1ac 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexAutocompleteDocumentsPost.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexAutocompleteDocumentsPost.json @@ -1,37 +1,37 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview", - "autocompleteRequest": { - "autocompleteMode": "oneTerm", - "search": "washington medic", - "suggesterName": "sg", - "filter": "search.in(docId,'101,102,105')", - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": 80, - "searchFields": "title,description", - "top": 10 - } - }, - "responses": { - "200": { - "body": [ - { - "text": "medicaid", - "queryPlusText": "washington medicaid" - }, - { - "text": "medicare", - "queryPlusText": "washington medicare" - }, - { - "text": "medicine", - "queryPlusText": "washington medicine" - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview", + "autocompleteRequest": { + "autocompleteMode": "oneTerm", + "search": "washington medic", + "suggesterName": "sg", + "filter": "search.in(docId,'101,102,105')", + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": 80, + "searchFields": "title,description", + "top": 10 + } + }, + "responses": { + "200": { + "body": [ + { + "text": "medicaid", + "queryPlusText": "washington medicaid" + }, + { + "text": "medicare", + "queryPlusText": "washington medicare" + }, + { + "text": "medicine", + "queryPlusText": "washington medicine" } + ] } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexCountDocuments.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexCountDocuments.json index acc0d868dddf..024a9ffcbb2d 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexCountDocuments.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexCountDocuments.json @@ -1,13 +1,13 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": 427 - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": 427 } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexGetDocument.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexGetDocument.json index 422b81720c1a..5a2707df0084 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexGetDocument.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexGetDocument.json @@ -1,19 +1,23 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2019-05-06", - "key": "1", - "$select": ["docId", "title", "description"] - }, - "responses": { - "200": { - "body": { - "description": "Cheapest hotel in town", - "docId": "1", - "title": "Nice Hotel" - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2019-05-06", + "key": "1", + "$select": [ + "docId", + "title", + "description" + ] + }, + "responses": { + "200": { + "body": { + "description": "Cheapest hotel in town", + "docId": "1", + "title": "Nice Hotel" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexIndexDocuments.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexIndexDocuments.json index f69a11c5d925..af4aa5dc85c4 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexIndexDocuments.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexIndexDocuments.json @@ -1,94 +1,94 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2019-05-06", - "batch": { + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2019-05-06", + "batch": { + "value": [ + { + "@search.action": "upload", + "docId": "1", + "title": "Fancy Stay", + "description": "Best hotel in town" + }, + { + "@search.action": "merge", + "docId": "2", + "title": "Roach Motel" + }, + { + "@search.action": "mergeOrUpload", + "docId": "3", + "title": "Econo Motel" + }, + { + "@search.action": "delete", + "docId": "4" + } + ] + } + }, + "responses": { + "200": { + "body": { "value": [ - { - "@search.action": "upload", - "docId": "1", - "title": "Fancy Stay", - "description": "Best hotel in town" - }, - { - "@search.action": "merge", - "docId": "2", - "title": "Roach Motel" - }, - { - "@search.action": "mergeOrUpload", - "docId": "3", - "title": "Econo Motel" - }, - { - "@search.action": "delete", - "docId": "4" - } + { + "key": "1", + "status": true, + "errorMessage": null, + "statusCode": 201 + }, + { + "key": "2", + "status": true, + "errorMessage": null, + "statusCode": 200 + }, + { + "key": "3", + "status": true, + "errorMessage": null, + "statusCode": 200 + }, + { + "key": "4", + "status": true, + "errorMessage": null, + "statusCode": 200 + } ] } - }, - "responses": { - "200": { - "body": { - "value": [ - { - "key": "1", - "status": true, - "errorMessage": null, - "statusCode": 201 - }, - { - "key": "2", - "status": true, - "errorMessage": null, - "statusCode": 200 - }, - { - "key": "3", - "status": true, - "errorMessage": null, - "statusCode": 200 - }, - { - "key": "4", - "status": true, - "errorMessage": null, - "statusCode": 200 - } - ] - } - }, - "207": { - "body": { - "value": [ - { - "key": "1", - "status": true, - "errorMessage": null, - "statusCode": 200 - }, - { - "key": "2", - "status": false, - "errorMessage": "Document not found.", - "statusCode": 404 - }, - { - "key": "3", - "status": true, - "errorMessage": null, - "statusCode": 200 - }, - { - "key": "4", - "status": true, - "errorMessage": null, - "statusCode": 200 - } - ] - } + }, + "207": { + "body": { + "value": [ + { + "key": "1", + "status": true, + "errorMessage": null, + "statusCode": 200 + }, + { + "key": "2", + "status": false, + "errorMessage": "Document not found.", + "statusCode": 404 + }, + { + "key": "3", + "status": true, + "errorMessage": null, + "statusCode": 200 + }, + { + "key": "4", + "status": true, + "errorMessage": null, + "statusCode": 200 + } + ] } - } + } + } } diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSearchDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSearchDocumentsGet.json index e463f5d1acea..df0b1fe15b94 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSearchDocumentsGet.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSearchDocumentsGet.json @@ -1,65 +1,85 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2019-05-06", - "$count": true, - "facet": [ "category,count:10,sort:count" ], - "$filter": "rating gt 10", - "highlight": [ "title" ], - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": 80, - "$orderby": [ "search.score() desc", "rating desc" ], - "queryType": "simple", - "scoringParameters": [ "currentLocation--122.123,44.77233" ], - "scoringProfile": "sp", - "search": "nice hotels", - "searchFields": [ "title", "description" ], - "searchMode": "any", - "$select": [ "docId", "title", "description" ], - "$skip": 100, - "$top": 10 - }, - "responses": { - "200": { - "body": { - "@odata.count": 25, - "@search.coverage": 80, - "@search.facets": { - "category": [ - { - "count": 1, - "value": "Economy" - }, - { - "count": 1, - "value": "Luxury" - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2019-05-06", + "$count": true, + "facet": [ + "category,count:10,sort:count" + ], + "$filter": "rating gt 10", + "highlight": [ + "title" + ], + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": 80, + "$orderby": [ + "search.score() desc", + "rating desc" + ], + "queryType": "simple", + "scoringParameters": [ + "currentLocation--122.123,44.77233" + ], + "scoringProfile": "sp", + "search": "nice hotels", + "searchFields": [ + "title", + "description" + ], + "searchMode": "any", + "$select": [ + "docId", + "title", + "description" + ], + "$skip": 100, + "$top": 10 + }, + "responses": { + "200": { + "body": { + "@odata.count": 25, + "@search.coverage": 80, + "@search.facets": { + "category": [ + { + "count": 1, + "value": "Economy" }, - "value": [ - { - "@search.score": 1.50, - "@search.highlights": { - "title": [ "Nice Hotel" ] - }, - "description": "Cheapest hotel in town", - "docId": "1", - "title": "Nice Hotel" - }, - { - "@search.score": 0.70, - "@search.highlights": { - "title": [ "Fancy Hotel" ] - }, - "description": "Best hotel in town", - "docId": "2", - "title": "Fancy Hotel" - } - ] - } + { + "count": 1, + "value": "Luxury" + } + ] + }, + "value": [ + { + "@search.score": 1.50, + "@search.highlights": { + "title": [ + "Nice Hotel" + ] + }, + "description": "Cheapest hotel in town", + "docId": "1", + "title": "Nice Hotel" + }, + { + "@search.score": 0.70, + "@search.highlights": { + "title": [ + "Fancy Hotel" + ] + }, + "description": "Best hotel in town", + "docId": "2", + "title": "Fancy Hotel" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSearchDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSearchDocumentsPost.json index 7516670b10c6..ba4042c46a79 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSearchDocumentsPost.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSearchDocumentsPost.json @@ -1,86 +1,98 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2019-05-06", - "searchRequest": { - "count": true, - "facets": [ "category,count:10,sort:count" ], - "filter": "rating gt 4.0", - "highlight": "title", - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": null, - "orderby": "search.score() desc,rating desc", - "queryType": "simple", - "scoringParameters": [ "currentLocation--122.123,44.77233" ], - "scoringProfile": "sp", - "search": "nice hotels", - "searchFields": "title,description", - "searchMode": "any", - "select": "docId,title,description", - "skip": 0, - "top": 10 - } - }, - "responses": { - "200": { - "body": { - "@odata.count": 25, - "@search.facets": { - "category": [ - { - "count": 1, - "value": "Economy" - }, - { - "count": 1, - "value": "Luxury" - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2019-05-06", + "searchRequest": { + "count": true, + "facets": [ + "category,count:10,sort:count" + ], + "filter": "rating gt 4.0", + "highlight": "title", + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": null, + "orderby": "search.score() desc,rating desc", + "queryType": "simple", + "scoringParameters": [ + "currentLocation--122.123,44.77233" + ], + "scoringProfile": "sp", + "search": "nice hotels", + "searchFields": "title,description", + "searchMode": "any", + "select": "docId,title,description", + "skip": 0, + "top": 10 + } + }, + "responses": { + "200": { + "body": { + "@odata.count": 25, + "@search.facets": { + "category": [ + { + "count": 1, + "value": "Economy" + }, + { + "count": 1, + "value": "Luxury" + } + ] + }, + "@search.nextPageParameters": { + "count": true, + "facets": [ + "category,count:10,sort:count" + ], + "filter": "rating gt 4.0", + "highlight": "title", + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": null, + "orderby": "search.score() desc,rating desc", + "queryType": "simple", + "scoringParameters": [ + "currentLocation--122.123,44.77233" + ], + "scoringProfile": "sp", + "search": "nice hotels", + "searchFields": "title,description", + "searchMode": "any", + "select": "docId,title,description", + "skip": 2, + "top": 8 + }, + "value": [ + { + "@search.score": 1.50, + "@search.highlights": { + "title": [ + "Nice Hotel" + ] }, - "@search.nextPageParameters": { - "count": true, - "facets": [ "category,count:10,sort:count" ], - "filter": "rating gt 4.0", - "highlight": "title", - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": null, - "orderby": "search.score() desc,rating desc", - "queryType": "simple", - "scoringParameters": [ "currentLocation--122.123,44.77233" ], - "scoringProfile": "sp", - "search": "nice hotels", - "searchFields": "title,description", - "searchMode": "any", - "select": "docId,title,description", - "skip": 2, - "top": 8 + "description": "Cheapest hotel in town", + "docId": "1", + "title": "Nice Hotel" + }, + { + "@search.score": 0.70, + "@search.highlights": { + "title": [ + "Fancy Hotel" + ] }, - "value": [ - { - "@search.score": 1.50, - "@search.highlights": { - "title": [ "Nice Hotel" ] - }, - "description": "Cheapest hotel in town", - "docId": "1", - "title": "Nice Hotel" - }, - { - "@search.score": 0.70, - "@search.highlights": { - "title": [ "Fancy Hotel" ] - }, - "description": "Best hotel in town", - "docId": "2", - "title": "Fancy Hotel" - } - ], - "@odata.nextLink": "https://myservice.search.windows.net/indexes('myindex')/docs/search.post.search?api-version=2019-05-06" - } + "description": "Best hotel in town", + "docId": "2", + "title": "Fancy Hotel" + } + ], + "@odata.nextLink": "https://myservice.search.windows.net/indexes('myindex')/docs/search.post.search?api-version=2019-05-06" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSuggestDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSuggestDocumentsGet.json index 24e774eb4f8b..5d2d457eb0c9 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSuggestDocumentsGet.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSuggestDocumentsGet.json @@ -1,39 +1,48 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2019-05-06", - "$filter": "rating gt 10", - "fuzzy": false, - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": 80, - "$orderby": ["search.score() desc", "rating desc"], - "search": "hote", - "searchFields": ["title"], - "suggesterName": "sg", - "$select": ["docId", "title", "description"], - "$top": 10 - }, - "responses": { - "200": { - "body": { - "value": [ - { - "@search.text": "Nice Hotel", - "description": "Cheapest hotel in town", - "docId": "1", - "title": "Nice Hotel" - }, - { - "@search.text": "Fancy Hotel", - "description": "Best hotel in town", - "docId": "2", - "title": "Fancy Hotel" - } - ] - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2019-05-06", + "$filter": "rating gt 10", + "fuzzy": false, + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": 80, + "$orderby": [ + "search.score() desc", + "rating desc" + ], + "search": "hote", + "searchFields": [ + "title" + ], + "suggesterName": "sg", + "$select": [ + "docId", + "title", + "description" + ], + "$top": 10 + }, + "responses": { + "200": { + "body": { + "value": [ + { + "@search.text": "Nice Hotel", + "description": "Cheapest hotel in town", + "docId": "1", + "title": "Nice Hotel" + }, + { + "@search.text": "Fancy Hotel", + "description": "Best hotel in town", + "docId": "2", + "title": "Fancy Hotel" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSuggestDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSuggestDocumentsPost.json index 7082288d4fdc..dc5b8a4b7bf7 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSuggestDocumentsPost.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/examples/SearchIndexSuggestDocumentsPost.json @@ -1,39 +1,39 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2019-05-06", - "suggestRequest": { - "filter": "rating gt 4.0", - "highlightPostTag": "", - "highlightPreTag": "", - "minimumCoverage": 80, - "orderby": "rating desc", - "search": "hote", - "searchFields": "title", - "select": "docId,title,description", - "top": 10 + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2019-05-06", + "suggestRequest": { + "filter": "rating gt 4.0", + "highlightPostTag": "", + "highlightPreTag": "", + "minimumCoverage": 80, + "orderby": "rating desc", + "search": "hote", + "searchFields": "title", + "select": "docId,title,description", + "top": 10 + } + }, + "responses": { + "200": { + "body": { + "value": [ + { + "@search.text": "Nice Hotel", + "description": "Cheapest hotel in town", + "docId": "1", + "title": "Nice Hotel" + }, + { + "@search.text": "Fancy Hotel", + "description": "Best hotel in town", + "docId": "2", + "title": "Fancy Hotel" + } + ] } - }, - "responses": { - "200": { - "body": { - "value": [ - { - "@search.text": "Nice Hotel", - "description": "Cheapest hotel in town", - "docId": "1", - "title": "Nice Hotel" - }, - { - "@search.text": "Fancy Hotel", - "description": "Best hotel in town", - "docId": "2", - "title": "Fancy Hotel" - } - ] - } - } - } -} \ No newline at end of file + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/searchindex.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/searchindex.json index 62bca7fbb0f7..033e280ba681 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/searchindex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/stable/2019-05-06/searchindex.json @@ -41,7 +41,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/Count-Documents" }, "x-ms-examples": { - "SearchIndexCountDocuments": { "$ref": "./examples/SearchIndexCountDocuments.json" } + "SearchIndexCountDocuments": { + "$ref": "./examples/SearchIndexCountDocuments.json" + } }, "description": "Queries the number of documents in the Azure Search index.", "parameters": [ @@ -74,7 +76,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents" }, "x-ms-examples": { - "SearchIndexSearchDocumentsGet": { "$ref": "./examples/SearchIndexSearchDocumentsGet.json" } + "SearchIndexSearchDocumentsGet": { + "$ref": "./examples/SearchIndexSearchDocumentsGet.json" + } }, "description": "Searches for documents in the Azure Search index.", "parameters": [ @@ -182,8 +186,8 @@ "full" ], "x-ms-enum": { - "name": "QueryType", - "modelAsString": false + "name": "QueryType", + "modelAsString": false }, "x-nullable": false, "description": "A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax.", @@ -235,8 +239,8 @@ "all" ], "x-ms-enum": { - "name": "SearchMode", - "modelAsString": false + "name": "SearchMode", + "modelAsString": false }, "x-nullable": false, "description": "A value that specifies whether any or all of the search terms must be matched in order to count the document as a match.", @@ -304,7 +308,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents" }, "x-ms-examples": { - "SearchIndexSearchDocumentsPost": { "$ref": "./examples/SearchIndexSearchDocumentsPost.json" } + "SearchIndexSearchDocumentsPost": { + "$ref": "./examples/SearchIndexSearchDocumentsPost.json" + } }, "description": "Searches for documents in the Azure Search index.", "parameters": [ @@ -346,7 +352,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/lookup-document" }, "x-ms-examples": { - "SearchIndexGetDocument": { "$ref": "./examples/SearchIndexGetDocument.json" } + "SearchIndexGetDocument": { + "$ref": "./examples/SearchIndexGetDocument.json" + } }, "description": "Retrieves a document from the Azure Search index.", "parameters": [ @@ -394,7 +402,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/suggestions" }, "x-ms-examples": { - "SearchIndexSuggestDocumentsGet": { "$ref": "./examples/SearchIndexSuggestDocumentsGet.json" } + "SearchIndexSuggestDocumentsGet": { + "$ref": "./examples/SearchIndexSuggestDocumentsGet.json" + } }, "description": "Suggests documents in the Azure Search index that match the given partial query text.", "parameters": [ @@ -536,7 +546,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/suggestions" }, "x-ms-examples": { - "SearchIndexSuggestDocumentsPost": { "$ref": "./examples/SearchIndexSuggestDocumentsPost.json" } + "SearchIndexSuggestDocumentsPost": { + "$ref": "./examples/SearchIndexSuggestDocumentsPost.json" + } }, "description": "Suggests documents in the Azure Search index that match the given partial query text.", "parameters": [ @@ -577,7 +589,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents" }, "x-ms-examples": { - "SearchIndexIndexDocuments": { "$ref": "./examples/SearchIndexIndexDocuments.json" } + "SearchIndexIndexDocuments": { + "$ref": "./examples/SearchIndexIndexDocuments.json" + } }, "description": "Sends a batch of document write actions to the Azure Search index.", "parameters": [ @@ -624,7 +638,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/autocomplete" }, "x-ms-examples": { - "SearchIndexAutocompleteDocumentsGet": { "$ref": "./examples/SearchIndexAutocompleteDocumentsGet.json" } + "SearchIndexAutocompleteDocumentsGet": { + "$ref": "./examples/SearchIndexAutocompleteDocumentsGet.json" + } }, "description": "Autocompletes incomplete query terms based on input text and matching terms in the Azure Search index.", "parameters": [ @@ -660,8 +676,8 @@ "oneTermWithContext" ], "x-ms-enum": { - "name": "AutocompleteMode", - "modelAsString": false + "name": "AutocompleteMode", + "modelAsString": false }, "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context while producing auto-completed terms.", "x-ms-parameter-grouping": { @@ -744,7 +760,7 @@ "description": "", "schema": { "$ref": "#/definitions/AutocompleteResult", - "description": "The result of Autocomplete query." + "description": "The result of Autocomplete query." } } } @@ -760,7 +776,9 @@ "url": "https://docs.microsoft.com/rest/api/searchservice/autocomplete" }, "x-ms-examples": { - "SearchIndexAutocompleteDocumentsPost": { "$ref": "./examples/SearchIndexAutocompleteDocumentsPost.json" } + "SearchIndexAutocompleteDocumentsPost": { + "$ref": "./examples/SearchIndexAutocompleteDocumentsPost.json" + } }, "description": "Autocompletes incomplete query terms based on input text and matching terms in the Azure Search index.", "parameters": [ @@ -786,7 +804,7 @@ "description": "", "schema": { "$ref": "#/definitions/AutocompleteResult", - "description": "The result of Autocomplete query." + "description": "The result of Autocomplete query." } } } @@ -893,29 +911,29 @@ }, "SearchResult": { "properties": { - "@search.score": { - "type": "number", - "format": "double", - "readOnly": true, - "x-ms-client-name": "Score", - "x-nullable": false, - "description": "The relevance score of the document compared to other documents returned by the query." - }, - "@search.highlights": { - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - }, - "readOnly": true, - "x-ms-client-name": "Highlights", - "description": "Text fragments from the document that indicate the matching search terms, organized by each applicable field; null if hit highlighting was not enabled for the query." - } - }, - "additionalProperties": true, - "description": "Contains a document found by a search query, plus associated metadata." + "@search.score": { + "type": "number", + "format": "double", + "readOnly": true, + "x-ms-client-name": "Score", + "x-nullable": false, + "description": "The relevance score of the document compared to other documents returned by the query." + }, + "@search.highlights": { + "type": "object", + "additionalProperties": { + "type": "array", + "items": { + "type": "string" + } + }, + "readOnly": true, + "x-ms-client-name": "Highlights", + "description": "Text fragments from the document that indicate the matching search terms, organized by each applicable field; null if hit highlighting was not enabled for the query." + } + }, + "additionalProperties": true, + "description": "Contains a document found by a search query, plus associated metadata." }, "IndexBatch": { "properties": { @@ -928,7 +946,9 @@ "x-ms-client-name": "Actions" } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Contains a batch of document write actions to send to the Azure Search index." }, "IndexAction": { @@ -941,7 +961,9 @@ "mergeOrUpload", "delete" ], - "x-ms-enum": { "name": "IndexActionType" }, + "x-ms-enum": { + "name": "IndexActionType" + }, "x-ms-client-name": "ActionType", "x-nullable": false, "description": "The operation to perform on a document in an indexing batch." @@ -984,7 +1006,7 @@ "value": { "x-ms-client-name": "Results", "type": "array", - "readOnly": true, + "readOnly": true, "items": { "$ref": "#/definitions/IndexingResult" }, @@ -1026,7 +1048,7 @@ ], "x-ms-enum": { "name": "AutocompleteMode", - "modelAsString" : false + "modelAsString": false }, "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context in producing autocomplete terms." }, @@ -1231,11 +1253,11 @@ }, "description": "Parameters for fuzzy matching, and other autocomplete query behaviors." }, - "AutocompleteResult" : { - "properties": { + "AutocompleteResult": { + "properties": { "value": { "type": "array", - "readOnly": true, + "readOnly": true, "items": { "$ref": "#/definitions/AutocompleteItem" }, @@ -1243,7 +1265,7 @@ "x-ms-client-name": "Results" } }, - "description": "The result of Autocomplete query." + "description": "The result of Autocomplete query." }, "AutocompleteItem": { "properties": { @@ -1277,7 +1299,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" }, + "x-ms-parameter-grouping": { + "name": "search-request-options" + }, "x-ms-parameter-location": "method" }, "SearchServiceNameParameter": { @@ -1309,4 +1333,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2015-02-28-preview/searchservice.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2015-02-28-preview/searchservice.json index c1ab034caf9a..f1ff893c0c15 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2015-02-28-preview/searchservice.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2015-02-28-preview/searchservice.json @@ -50,7 +50,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -58,7 +60,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -66,7 +70,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -113,7 +119,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -121,7 +129,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -129,7 +139,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -170,7 +182,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -206,7 +220,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -249,7 +265,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -292,7 +310,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -332,7 +352,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -381,7 +403,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -389,7 +413,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -397,7 +423,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -444,7 +472,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -452,7 +482,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -460,7 +492,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -501,7 +535,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -537,7 +573,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -580,7 +618,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -623,7 +663,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -668,7 +710,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -709,7 +753,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -768,7 +814,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -776,7 +824,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -784,7 +834,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -831,7 +883,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -839,7 +893,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -847,7 +903,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -888,7 +946,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -931,7 +991,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -983,7 +1045,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -1157,7 +1221,8 @@ } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for analyzers." }, @@ -1289,7 +1354,8 @@ } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for tokenizers.", "externalDocs": { @@ -1389,7 +1455,7 @@ }, "x-ms-external": true }, - "KeywordTokenizerV2": { + "KeywordTokenizerV2": { "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordTokenizerV2", "allOf": [ { @@ -1807,7 +1873,8 @@ } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for token filters.", "externalDocs": { @@ -2072,7 +2139,7 @@ }, "description": "The list of words to keep." }, - "keepWordsCase" : { + "keepWordsCase": { "x-ms-client-name": "LowerCaseKeepWords", "type": "boolean", "default": false, @@ -2764,7 +2831,8 @@ } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for character filters.", "externalDocs": { @@ -2964,14 +3032,17 @@ "$ref": "#/definitions/DataDeletionDetectionPolicy", "description": "The data deletion detection policy for the datasource." }, - "@odata.etag": { + "@odata.etag": { "x-ms-client-name": "ETag", "type": "string", "description": "The ETag of the DataSource." } }, "required": [ - "name", "type", "credentials", "container" + "name", + "type", + "credentials", + "container" ], "description": "Represents a datasource definition in Azure Search, which can be used to configure an indexer." }, @@ -3132,14 +3203,16 @@ "default": false, "description": "A value indicating whether the indexer is disabled. Default is false." }, - "@odata.etag": { + "@odata.etag": { "x-ms-client-name": "ETag", "type": "string", "description": "The ETag of the Indexer." } }, "required": [ - "name", "dataSourceName", "targetIndexName" + "name", + "dataSourceName", + "targetIndexName" ], "externalDocs": { "url": "https://msdn.microsoft.com/library/azure/dn946891.aspx" @@ -3243,7 +3316,9 @@ "inProgress", "reset" ], - "x-ms-enum": { "name": "IndexerExecutionStatus" }, + "x-ms-enum": { + "name": "IndexerExecutionStatus" + }, "description": "Represents the status of an individual indexer execution." }, "IndexerExecutionInfo": { @@ -3277,7 +3352,9 @@ "error", "running" ], - "x-ms-enum": { "name": "IndexerStatus" }, + "x-ms-enum": { + "name": "IndexerStatus" + }, "description": "Represents the overall indexer status." }, "Field": { @@ -3346,7 +3423,8 @@ } }, "required": [ - "name", "type" + "name", + "type" ], "externalDocs": { "url": "https://msdn.microsoft.com/library/azure/dn798941.aspx" @@ -3392,7 +3470,9 @@ } }, "required": [ - "type", "fieldName", "boost" + "type", + "fieldName", + "boost" ], "externalDocs": { "url": "https://msdn.microsoft.com/library/azure/dn798928.aspx" @@ -3434,7 +3514,8 @@ } }, "required": [ - "referencePointParameter", "boostingDistance" + "referencePointParameter", + "boostingDistance" ], "description": "Provides parameter values to a distance scoring function." }, @@ -3514,7 +3595,8 @@ } }, "required": [ - "boostingRangeStart", "boostingRangeEnd" + "boostingRangeStart", + "boostingRangeEnd" ], "description": "Provides parameter values to a magnitude scoring function." }, @@ -3560,7 +3642,9 @@ "quadratic", "logarithmic" ], - "x-ms-enum": { "name": "ScoringFunctionInterpolation" }, + "x-ms-enum": { + "name": "ScoringFunctionInterpolation" + }, "description": "Defines the function used to interpolate score boosting across a range of documents." }, "ScoringProfile": { @@ -3606,7 +3690,9 @@ "maximum", "firstMatching" ], - "x-ms-enum": { "name": "ScoringFunctionAggregation" }, + "x-ms-enum": { + "name": "ScoringFunctionAggregation" + }, "description": "Defines the aggregation function used to combine the results of all the scoring functions in a scoring profile." }, "CorsOptions": { @@ -3651,7 +3737,9 @@ } }, "required": [ - "name", "searchMode", "sourceFields" + "name", + "searchMode", + "sourceFields" ], "description": "Defines how the Suggest API should apply to a group of fields in the index." }, @@ -3660,7 +3748,9 @@ "enum": [ "analyzingInfixMatching" ], - "x-ms-enum": { "name": "SuggesterSearchMode" }, + "x-ms-enum": { + "name": "SuggesterSearchMode" + }, "description": "Describes the type of suggester to use." }, "Index": { @@ -3748,7 +3838,8 @@ } }, "required": [ - "name", "fields" + "name", + "fields" ], "description": "Represents an index definition in Azure Search, which describes the fields and search behavior of an index." }, @@ -3794,4 +3885,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2015-02-28/searchservice.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2015-02-28/searchservice.json index 82229b7aa31b..1984d8651ac6 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2015-02-28/searchservice.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2015-02-28/searchservice.json @@ -47,7 +47,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -94,7 +96,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -135,7 +139,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -171,7 +177,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -214,7 +222,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -257,7 +267,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -297,7 +309,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -346,7 +360,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -393,7 +409,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -434,7 +452,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -470,7 +490,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -513,7 +535,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -556,7 +580,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -601,7 +627,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -642,7 +670,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -694,7 +724,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -741,7 +773,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -782,7 +816,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -825,7 +861,9 @@ "format": "uuid", "description": "Tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -980,7 +1018,10 @@ } }, "required": [ - "name", "type", "credentials", "container" + "name", + "type", + "credentials", + "container" ], "description": "Represents a datasource definition in Azure Search, which can be used to configure an indexer." }, @@ -1067,7 +1108,9 @@ } }, "required": [ - "name", "dataSourceName", "targetIndexName" + "name", + "dataSourceName", + "targetIndexName" ], "externalDocs": { "url": "https://msdn.microsoft.com/library/azure/dn946891.aspx" @@ -1169,7 +1212,9 @@ "inProgress", "reset" ], - "x-ms-enum": { "name": "IndexerExecutionStatus" }, + "x-ms-enum": { + "name": "IndexerExecutionStatus" + }, "description": "Represents the status of an individual indexer execution." }, "IndexerExecutionInfo": { @@ -1203,7 +1248,9 @@ "error", "running" ], - "x-ms-enum": { "name": "IndexerStatus" }, + "x-ms-enum": { + "name": "IndexerStatus" + }, "description": "Represents the overall indexer status." }, "Field": { @@ -1252,7 +1299,8 @@ } }, "required": [ - "name", "type" + "name", + "type" ], "externalDocs": { "url": "https://msdn.microsoft.com/library/azure/dn798941.aspx" @@ -1298,7 +1346,9 @@ } }, "required": [ - "type", "fieldName", "boost" + "type", + "fieldName", + "boost" ], "externalDocs": { "url": "https://msdn.microsoft.com/library/azure/dn798928.aspx" @@ -1341,7 +1391,8 @@ } }, "required": [ - "referencePointParameter", "boostingDistance" + "referencePointParameter", + "boostingDistance" ], "description": "Provides parameter values to a distance scoring function.", "x-ms-external": true @@ -1422,7 +1473,8 @@ } }, "required": [ - "boostingRangeStart", "boostingRangeEnd" + "boostingRangeStart", + "boostingRangeEnd" ], "description": "Provides parameter values to a magnitude scoring function.", "x-ms-external": true @@ -1469,7 +1521,9 @@ "quadratic", "logarithmic" ], - "x-ms-enum": { "name": "ScoringFunctionInterpolation" }, + "x-ms-enum": { + "name": "ScoringFunctionInterpolation" + }, "description": "Defines the function used to interpolate score boosting across a range of documents." }, "ScoringProfile": { @@ -1515,7 +1569,9 @@ "maximum", "firstMatching" ], - "x-ms-enum": { "name": "ScoringFunctionAggregation" }, + "x-ms-enum": { + "name": "ScoringFunctionAggregation" + }, "description": "Defines the aggregation function used to combine the results of all the scoring functions in a scoring profile." }, "CorsOptions": { @@ -1560,7 +1616,9 @@ } }, "required": [ - "name", "searchMode", "sourceFields" + "name", + "searchMode", + "sourceFields" ], "description": "Defines how the Suggest API should apply to a group of fields in the index.", "x-ms-external": true @@ -1570,7 +1628,9 @@ "enum": [ "analyzingInfixMatching" ], - "x-ms-enum": { "name": "SuggesterSearchMode" }, + "x-ms-enum": { + "name": "SuggesterSearchMode" + }, "description": "Describes the type of suggester to use." }, "Index": { @@ -1613,7 +1673,8 @@ } }, "required": [ - "name", "fields" + "name", + "fields" ], "description": "Represents an index definition in Azure Search, which describes the fields and search behavior of an index." }, @@ -1659,4 +1720,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateDataSource.json index a427d8f789ef..cdf9ac2c2978 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateDataSource.json @@ -1,53 +1,53 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2016-09-01-Preview", - "dataSource": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } - }, - "responses": { - "201": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2016-09-01-Preview", + "dataSource": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" + } + } + }, + "responses": { + "201": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateIndex.json index 967eabbd35b4..63e043844765 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateIndex.json @@ -1,346 +1,346 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2016-09-01-Preview", - "index": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "key": true, - "searchable": false - }, - { - "name": "baseRate", - "type": "Edm.Double" - }, - { - "name": "description", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false - }, - { - "name": "description_fr", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false, - "analyzer": "fr.lucene" - }, - { - "name": "hotelName", - "type": "Edm.String" - }, - { - "name": "category", - "type": "Edm.String" - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "analyzer": "tagsAnalyzer" - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean" - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean" - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset" - }, - { - "name": "rating", - "type": "Edm.Int32" - }, - { - "name": "location", - "type": "Edm.GeographyPoint" - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2016-09-01-Preview", + "index": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "key": true, + "searchable": false + }, + { + "name": "baseRate", + "type": "Edm.Double" + }, + { + "name": "description", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false + }, + { + "name": "description_fr", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false, + "analyzer": "fr.lucene" + }, + { + "name": "hotelName", + "type": "Edm.String" + }, + { + "name": "category", + "type": "Edm.String" + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "analyzer": "tagsAnalyzer" + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean" + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean" + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset" + }, + { + "name": "rating", + "type": "Edm.Int32" + }, + { + "name": "location", + "type": "Edm.GeographyPoint" + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 + } } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" } - }, - "responses": { - "201": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + ], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + } + } + }, + "responses": { + "201": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateIndexer.json index 39b8e743472d..432b75802e2c 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateIndexer.json @@ -1,41 +1,41 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2016-09-01-Preview", - "indexer": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - } - } - }, - "responses": { - "201": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2016-09-01-Preview", + "indexer": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + } } -} \ No newline at end of file + }, + "responses": { + "201": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateDataSource.json index 289a7ba85b3a..4fc5d0c2fc25 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateDataSource.json @@ -1,78 +1,78 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2016-09-01-Preview", - "Prefer": "return=representation", - "dataSource": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2016-09-01-Preview", + "Prefer": "return=representation", + "dataSource": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" + } + } + }, + "responses": { + "200": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } }, - "responses": { - "200": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "201": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" }, - "201": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateIndex.json index 34c231e665c7..333d8795f0f7 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateIndex.json @@ -1,575 +1,575 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "allowIndexDowntime": false, - "api-version": "2016-09-01-Preview", - "Prefer": "return=representation", - "index": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "key": true, - "searchable": false - }, - { - "name": "baseRate", - "type": "Edm.Double" - }, - { - "name": "description", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false - }, - { - "name": "description_fr", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false, - "analyzer": "fr.lucene" - }, - { - "name": "hotelName", - "type": "Edm.String" - }, - { - "name": "category", - "type": "Edm.String" - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "analyzer": "tagsAnalyzer" - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean" - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean" - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset" - }, - { - "name": "rating", - "type": "Edm.Int32" - }, - { - "name": "location", - "type": "Edm.GeographyPoint" - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "allowIndexDowntime": false, + "api-version": "2016-09-01-Preview", + "Prefer": "return=representation", + "index": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "key": true, + "searchable": false + }, + { + "name": "baseRate", + "type": "Edm.Double" + }, + { + "name": "description", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false + }, + { + "name": "description_fr", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false, + "analyzer": "fr.lucene" + }, + { + "name": "hotelName", + "type": "Edm.String" + }, + { + "name": "category", + "type": "Edm.String" + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "analyzer": "tagsAnalyzer" + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean" + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean" + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset" + }, + { + "name": "rating", + "type": "Edm.Int32" + }, + { + "name": "location", + "type": "Edm.GeographyPoint" + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 + } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + } + } + }, + "responses": { + "200": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" ], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - } + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } }, - "responses": { - "200": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + "201": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } - }, - "201": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateIndexer.json index 8363e1fe7320..0babb4875f9b 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateIndexer.json @@ -1,61 +1,61 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2016-09-01-Preview", - "Prefer": "return=representation", - "indexer": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2016-09-01-Preview", + "Prefer": "return=representation", + "indexer": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + } + } + }, + "responses": { + "200": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } }, - "responses": { - "200": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } + "201": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 }, - "201": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "fieldMappings": [], + "disabled": false + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json index 56eeba2c107e..27fec54c1302 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json @@ -1,30 +1,30 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2016-09-01-Preview", - "Prefer": "return=representation", - "synonymMap": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2016-09-01-Preview", + "Prefer": "return=representation", + "synonymMap": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } + }, + "responses": { + "200": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } }, - "responses": { - "200": { - "body": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } - }, - "201": { - "body": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } - } + "201": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateSynonymMap.json index 180114713d8b..e0d0c3148b04 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceCreateSynonymMap.json @@ -1,21 +1,21 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2016-09-01-Preview", - "synonymMap": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } - }, - "responses": { - "201": { - "body": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2016-09-01-Preview", + "synonymMap": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" } -} \ No newline at end of file + }, + "responses": { + "201": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteDataSource.json index 8c4f24f6ae12..80781ad673fd 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteDataSource.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "204": { }, - "404": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteIndex.json index 85028873131d..8d79d513edf9 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteIndex.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "204": { }, - "404": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteIndexer.json index 06f73ae95633..969c3f4b15fb 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteIndexer.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "204": { }, - "404": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteSynonymMap.json index c272e32ab829..0a00220b4240 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceDeleteSynonymMap.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "204": { }, - "404": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetDataSource.json index 9f0a5fd2ff62..c27359947661 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetDataSource.json @@ -1,33 +1,33 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndex.json index 354184540e69..9c069b542881 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndex.json @@ -1,236 +1,236 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexStatistics.json index 200f085a5dab..b8cc9efb2446 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexStatistics.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexStatistics.json @@ -1,16 +1,16 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "documentCount": 239572, - "storageSize": 72375920 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "documentCount": 239572, + "storageSize": 72375920 + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexer.json index c050d857e3be..c2a0060045c0 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexer.json @@ -1,28 +1,28 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexerStatus.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexerStatus.json index a088d64733e1..cce7b7fd2267 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexerStatus.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexerStatus.json @@ -1,65 +1,65 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "status": "running", - "lastResult": { - "status": "success", - "errorMessage": null, - "startTime": "2014-11-26T03:37:18.853Z", - "endTime": "2014-11-26T03:37:19.012Z", - "errors": [], - "warnings": [], - "itemsProcessed": 11, - "itemsFailed": 0, - "initialTrackingState": null, - "finalTrackingState": null - }, - "executionHistory": [ - { - "status": "success", - "errorMessage": null, - "startTime": "2014-11-26T03:37:18.853Z", - "endTime": "2014-11-26T03:37:19.012Z", - "errors": [], - "warnings": [], - "itemsProcessed": 11, - "itemsFailed": 0, - "initialTrackingState": null, - "finalTrackingState": null - }, - { - "status": "transientFailure", - "errorMessage": null, - "startTime": "2014-11-26T03:28:10.125Z", - "endTime": "2014-11-26T03:28:12.007Z", - "errors": [ - { - "key": "", - "status": false, - "errorMessage": "Document key cannot be missing or empty.", - "statusCode": 400 - } - ], - "warnings": [ - { - "key": "document id", - "message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob." - } - ], - "itemsProcessed": 1, - "itemsFailed": 1, - "initialTrackingState": null, - "finalTrackingState": null - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "status": "running", + "lastResult": { + "status": "success", + "errorMessage": null, + "startTime": "2014-11-26T03:37:18.853Z", + "endTime": "2014-11-26T03:37:19.012Z", + "errors": [], + "warnings": [], + "itemsProcessed": 11, + "itemsFailed": 0, + "initialTrackingState": null, + "finalTrackingState": null + }, + "executionHistory": [ + { + "status": "success", + "errorMessage": null, + "startTime": "2014-11-26T03:37:18.853Z", + "endTime": "2014-11-26T03:37:19.012Z", + "errors": [], + "warnings": [], + "itemsProcessed": 11, + "itemsFailed": 0, + "initialTrackingState": null, + "finalTrackingState": null + }, + { + "status": "transientFailure", + "errorMessage": null, + "startTime": "2014-11-26T03:28:10.125Z", + "endTime": "2014-11-26T03:28:12.007Z", + "errors": [ + { + "key": "", + "status": false, + "errorMessage": "Document key cannot be missing or empty.", + "statusCode": 400 + } + ], + "warnings": [ + { + "key": "document id", + "message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob." + } + ], + "itemsProcessed": 1, + "itemsFailed": 1, + "initialTrackingState": null, + "finalTrackingState": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetServiceStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetServiceStatistics.json index 608b100f424f..b95d7cea1686 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetServiceStatistics.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetServiceStatistics.json @@ -1,44 +1,44 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "counters": { - "documentCount": { - "usage": 7093, - "quota": 10000 - }, - "indexesCount": { - "usage": 3, - "quota": 3 - }, - "indexersCount": { - "usage": 3, - "quota": 3 - }, - "dataSourcesCount": { - "usage": 1, - "quota": 3 - }, - "storageSize": { - "usage": 914529, - "quota": 52428800 - }, - "synonymMaps": { - "usage": 2, - "quota": 3 - } - }, - "limits": { - "maxFieldsPerIndex": 1000, - "maxFieldNestingDepthPerIndex": 10, - "maxComplexCollectionFieldsPerIndex": 100 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "counters": { + "documentCount": { + "usage": 7093, + "quota": 10000 + }, + "indexesCount": { + "usage": 3, + "quota": 3 + }, + "indexersCount": { + "usage": 3, + "quota": 3 + }, + "dataSourcesCount": { + "usage": 1, + "quota": 3 + }, + "storageSize": { + "usage": 914529, + "quota": 52428800 + }, + "synonymMaps": { + "usage": 2, + "quota": 3 + } + }, + "limits": { + "maxFieldsPerIndex": 1000, + "maxFieldNestingDepthPerIndex": 10, + "maxComplexCollectionFieldsPerIndex": 100 } + } } + } } diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetSynonymMap.json index e828ba3a5d29..140b93a7ca5b 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetSynonymMap.json @@ -1,17 +1,17 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceIndexAnalyze.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceIndexAnalyze.json index b50282b23635..8fbb3df20b65 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceIndexAnalyze.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceIndexAnalyze.json @@ -1,38 +1,38 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2016-09-01-Preview", - "request": { - "text": "Text to analyze", - "analyzer": "standard" - } - }, - "responses": { - "200": { - "body": { - "tokens": [ - { - "token": "text", - "startOffset": 0, - "endOffset": 4, - "position": 0 - }, - { - "token": "to", - "startOffset": 5, - "endOffset": 7, - "position": 1 - }, - { - "token": "analyze", - "startOffset": 8, - "endOffset": 15, - "position": 2 - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2016-09-01-Preview", + "request": { + "text": "Text to analyze", + "analyzer": "standard" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "tokens": [ + { + "token": "text", + "startOffset": 0, + "endOffset": 4, + "position": 0 + }, + { + "token": "to", + "startOffset": 5, + "endOffset": 7, + "position": 1 + }, + { + "token": "analyze", + "startOffset": 8, + "endOffset": 15, + "position": 2 + } + ] + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListDataSources.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListDataSources.json index c24518a96c3c..dd3eaf152dba 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListDataSources.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListDataSources.json @@ -1,49 +1,49 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - }, - { - "name": "myblobdatasource", - "description": "My Azure Blob data source.", - "type": "azureblob", - "credentials": { - "connectionString": null - }, - "container": { - "name": "mycontainer" - }, - "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } - } + }, + { + "name": "myblobdatasource", + "description": "My Azure Blob data source.", + "type": "azureblob", + "credentials": { + "connectionString": null + }, + "container": { + "name": "mycontainer" + }, + "dataChangeDetectionPolicy": null, + "dataDeletionDetectionPolicy": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListIndexers.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListIndexers.json index afde9a5901c7..c644120ddef5 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListIndexers.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListIndexers.json @@ -1,67 +1,67 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydocdbdatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - }, - { - "name": "myotherindexer", - "description": "another cool indexer", - "dataSourceName": "myblobdatasource", - "targetIndexName": "orders", - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5, - "batchSize": 15 - }, - "fieldMappings": [ - { - "sourceFieldName": "PersonName", - "targetFieldName": "FirstName", - "mappingFunction": { - "name": "extractTokenAtPosition", - "parameters": { - "delimiter": " ", - "position": 0 - } - } - }, - { - "sourceFieldName": "PersonName", - "targetFieldName": "LastName", - "mappingFunction": { - "name": "extractTokenAtPosition", - "parameters": { - "delimiter": " ", - "position": 1 - } - } - } - ], - "disabled": false - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydocdbdatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + }, + { + "name": "myotherindexer", + "description": "another cool indexer", + "dataSourceName": "myblobdatasource", + "targetIndexName": "orders", + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5, + "batchSize": 15 + }, + "fieldMappings": [ + { + "sourceFieldName": "PersonName", + "targetFieldName": "FirstName", + "mappingFunction": { + "name": "extractTokenAtPosition", + "parameters": { + "delimiter": " ", + "position": 0 + } + } + }, + { + "sourceFieldName": "PersonName", + "targetFieldName": "LastName", + "mappingFunction": { + "name": "extractTokenAtPosition", + "parameters": { + "delimiter": " ", + "position": 1 + } + } + } + ], + "disabled": false + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListIndexes.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListIndexes.json index 4629f7fc7439..6d5de1e66744 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListIndexes.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListIndexes.json @@ -1,281 +1,281 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "$select": "name", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - } - }, - { - "name": "testindex", - "fields": [ - { - "name": "id", - "type": "Edm.String", - "searchable": false, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "hidden", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": false, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [], - "defaultScoringProfile": null, - "suggesters": [], - "analyzers": [], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": null + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "$select": "name", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } + } ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } - } + }, + { + "name": "testindex", + "fields": [ + { + "name": "id", + "type": "Edm.String", + "searchable": false, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "hidden", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": false, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [], + "defaultScoringProfile": null, + "suggesters": [], + "analyzers": [], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListSynonymMaps.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListSynonymMaps.json index fc9fa914caf7..4e1f888ce4f3 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListSynonymMaps.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceListSynonymMaps.json @@ -1,25 +1,25 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - }, - { - "name" : "myothersynonymmap", - "format" : "solr", - "synonyms" : "couch, sofa, chesterfield\npop, soda\ntoque, hat" - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + }, + { + "name": "myothersynonymmap", + "format": "solr", + "synonyms": "couch, sofa, chesterfield\npop, soda\ntoque, hat" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceResetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceResetIndexer.json index 0f2c82d02599..bfa96d6c35c1 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceResetIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceResetIndexer.json @@ -1,11 +1,11 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "204": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceRunIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceRunIndexer.json index 5d0090f43038..40602e406d07 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceRunIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceRunIndexer.json @@ -1,11 +1,11 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2016-09-01-Preview" - }, - "responses": { - "202": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2016-09-01-Preview" + }, + "responses": { + "202": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/searchservice.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/searchservice.json index 472fe4b6f6e3..4720cbed7093 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/searchservice.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/searchservice.json @@ -34,7 +34,9 @@ ], "operationId": "DataSources_CreateOrUpdate", "x-ms-examples": { - "SearchServiceCreateOrUpdateDataSource": { "$ref": "./examples/SearchServiceCreateOrUpdateDataSource.json" } + "SearchServiceCreateOrUpdateDataSource": { + "$ref": "./examples/SearchServiceCreateOrUpdateDataSource.json" + } }, "description": "Creates a new Azure Search datasource or updates a datasource if it already exists.", "externalDocs": { @@ -95,7 +97,9 @@ ], "operationId": "DataSources_Delete", "x-ms-examples": { - "SearchServiceDeleteDataSource": { "$ref": "./examples/SearchServiceDeleteDataSource.json" } + "SearchServiceDeleteDataSource": { + "$ref": "./examples/SearchServiceDeleteDataSource.json" + } }, "description": "Deletes an Azure Search datasource.", "externalDocs": { @@ -138,7 +142,9 @@ ], "operationId": "DataSources_Get", "x-ms-examples": { - "SearchServiceGetDataSource": { "$ref": "./examples/SearchServiceGetDataSource.json" } + "SearchServiceGetDataSource": { + "$ref": "./examples/SearchServiceGetDataSource.json" + } }, "description": "Retrieves a datasource definition from Azure Search.", "externalDocs": { @@ -177,7 +183,9 @@ ], "operationId": "DataSources_List", "x-ms-examples": { - "SearchServiceListDataSources": { "$ref": "./examples/SearchServiceListDataSources.json" } + "SearchServiceListDataSources": { + "$ref": "./examples/SearchServiceListDataSources.json" + } }, "description": "Lists all datasources available for an Azure Search service.", "externalDocs": { @@ -207,7 +215,9 @@ ], "operationId": "DataSources_Create", "x-ms-examples": { - "SearchServiceCreateDataSource": { "$ref": "./examples/SearchServiceCreateDataSource.json" } + "SearchServiceCreateDataSource": { + "$ref": "./examples/SearchServiceCreateDataSource.json" + } }, "description": "Creates a new Azure Search datasource.", "externalDocs": { @@ -248,7 +258,9 @@ ], "operationId": "Indexers_Reset", "x-ms-examples": { - "SearchServiceResetIndexer": { "$ref": "./examples/SearchServiceResetIndexer.json" } + "SearchServiceResetIndexer": { + "$ref": "./examples/SearchServiceResetIndexer.json" + } }, "description": "Resets the change tracking state associated with an Azure Search indexer.", "externalDocs": { @@ -284,7 +296,9 @@ ], "operationId": "Indexers_Run", "x-ms-examples": { - "SearchServiceRunIndexer": { "$ref": "./examples/SearchServiceRunIndexer.json" } + "SearchServiceRunIndexer": { + "$ref": "./examples/SearchServiceRunIndexer.json" + } }, "description": "Runs an Azure Search indexer on-demand.", "externalDocs": { @@ -320,7 +334,9 @@ ], "operationId": "Indexers_CreateOrUpdate", "x-ms-examples": { - "SearchServiceCreateOrUpdateIndexer": { "$ref": "./examples/SearchServiceCreateOrUpdateIndexer.json" } + "SearchServiceCreateOrUpdateIndexer": { + "$ref": "./examples/SearchServiceCreateOrUpdateIndexer.json" + } }, "description": "Creates a new Azure Search indexer or updates an indexer if it already exists.", "externalDocs": { @@ -381,7 +397,9 @@ ], "operationId": "Indexers_Delete", "x-ms-examples": { - "SearchServiceDeleteIndexer": { "$ref": "./examples/SearchServiceDeleteIndexer.json" } + "SearchServiceDeleteIndexer": { + "$ref": "./examples/SearchServiceDeleteIndexer.json" + } }, "description": "Deletes an Azure Search indexer.", "externalDocs": { @@ -424,7 +442,9 @@ ], "operationId": "Indexers_Get", "x-ms-examples": { - "SearchServiceGetIndexer": { "$ref": "./examples/SearchServiceGetIndexer.json" } + "SearchServiceGetIndexer": { + "$ref": "./examples/SearchServiceGetIndexer.json" + } }, "description": "Retrieves an indexer definition from Azure Search.", "externalDocs": { @@ -463,7 +483,9 @@ ], "operationId": "Indexers_List", "x-ms-examples": { - "SearchServiceListIndexers": { "$ref": "./examples/SearchServiceListIndexers.json" } + "SearchServiceListIndexers": { + "$ref": "./examples/SearchServiceListIndexers.json" + } }, "description": "Lists all indexers available for an Azure Search service.", "externalDocs": { @@ -493,7 +515,9 @@ ], "operationId": "Indexers_Create", "x-ms-examples": { - "SearchServiceCreateIndexer": { "$ref": "./examples/SearchServiceCreateIndexer.json" } + "SearchServiceCreateIndexer": { + "$ref": "./examples/SearchServiceCreateIndexer.json" + } }, "description": "Creates a new Azure Search indexer.", "externalDocs": { @@ -534,7 +558,9 @@ ], "operationId": "Indexers_GetStatus", "x-ms-examples": { - "SearchServiceGetIndexerStatus": { "$ref": "./examples/SearchServiceGetIndexerStatus.json" } + "SearchServiceGetIndexerStatus": { + "$ref": "./examples/SearchServiceGetIndexerStatus.json" + } }, "description": "Returns the current status and execution history of an indexer.", "externalDocs": { @@ -573,7 +599,9 @@ ], "operationId": "SynonymMaps_CreateOrUpdate", "x-ms-examples": { - "SearchServiceCreateOrUpdateSynonymMap": { "$ref": "./examples/SearchServiceCreateOrUpdateSynonymMap.json" } + "SearchServiceCreateOrUpdateSynonymMap": { + "$ref": "./examples/SearchServiceCreateOrUpdateSynonymMap.json" + } }, "description": "Creates a new Azure Search synonym map or updates a synonym map if it already exists.", "externalDocs": { @@ -634,7 +662,9 @@ ], "operationId": "SynonymMaps_Delete", "x-ms-examples": { - "SearchServiceDeleteSynonymMap": { "$ref": "./examples/SearchServiceDeleteSynonymMap.json" } + "SearchServiceDeleteSynonymMap": { + "$ref": "./examples/SearchServiceDeleteSynonymMap.json" + } }, "description": "Deletes an Azure Search synonym map.", "externalDocs": { @@ -677,7 +707,9 @@ ], "operationId": "SynonymMaps_Get", "x-ms-examples": { - "SearchServiceGetSynonymMap": { "$ref": "./examples/SearchServiceGetSynonymMap.json" } + "SearchServiceGetSynonymMap": { + "$ref": "./examples/SearchServiceGetSynonymMap.json" + } }, "description": "Retrieves a synonym map definition from Azure Search.", "externalDocs": { @@ -716,7 +748,9 @@ ], "operationId": "SynonymMaps_List", "x-ms-examples": { - "SearchServiceListSynonymMaps": { "$ref": "./examples/SearchServiceListSynonymMaps.json" } + "SearchServiceListSynonymMaps": { + "$ref": "./examples/SearchServiceListSynonymMaps.json" + } }, "description": "Lists all synonym maps available for an Azure Search service.", "externalDocs": { @@ -746,7 +780,9 @@ ], "operationId": "SynonymMaps_Create", "x-ms-examples": { - "SearchServiceCreateSynonymMap": { "$ref": "./examples/SearchServiceCreateSynonymMap.json" } + "SearchServiceCreateSynonymMap": { + "$ref": "./examples/SearchServiceCreateSynonymMap.json" + } }, "description": "Creates a new Azure Search synonym map.", "externalDocs": { @@ -787,7 +823,9 @@ ], "operationId": "Indexes_Create", "x-ms-examples": { - "SearchServiceCreateIndex": { "$ref": "./examples/SearchServiceCreateIndex.json" } + "SearchServiceCreateIndex": { + "$ref": "./examples/SearchServiceCreateIndex.json" + } }, "description": "Creates a new Azure Search index.", "externalDocs": { @@ -826,7 +864,9 @@ ], "operationId": "Indexes_List", "x-ms-examples": { - "SearchServiceListIndexes": { "$ref": "./examples/SearchServiceListIndexes.json" } + "SearchServiceListIndexes": { + "$ref": "./examples/SearchServiceListIndexes.json" + } }, "description": "Lists all indexes available for an Azure Search service.", "externalDocs": { @@ -865,7 +905,9 @@ ], "operationId": "Indexes_CreateOrUpdate", "x-ms-examples": { - "SearchServiceCreateOrUpdateIndex": { "$ref": "./examples/SearchServiceCreateOrUpdateIndex.json" } + "SearchServiceCreateOrUpdateIndex": { + "$ref": "./examples/SearchServiceCreateOrUpdateIndex.json" + } }, "description": "Creates a new Azure Search index or updates an index if it already exists.", "externalDocs": { @@ -933,7 +975,9 @@ ], "operationId": "Indexes_Delete", "x-ms-examples": { - "SearchServiceDeleteIndex": { "$ref": "./examples/SearchServiceDeleteIndex.json" } + "SearchServiceDeleteIndex": { + "$ref": "./examples/SearchServiceDeleteIndex.json" + } }, "description": "Deletes an Azure Search index and all the documents it contains.", "externalDocs": { @@ -976,7 +1020,9 @@ ], "operationId": "Indexes_Get", "x-ms-examples": { - "SearchServiceGetIndex": { "$ref": "./examples/SearchServiceGetIndex.json" } + "SearchServiceGetIndex": { + "$ref": "./examples/SearchServiceGetIndex.json" + } }, "description": "Retrieves an index definition from Azure Search.", "externalDocs": { @@ -1015,7 +1061,9 @@ ], "operationId": "Indexes_GetStatistics", "x-ms-examples": { - "SearchServiceGetIndexStatistics": { "$ref": "./examples/SearchServiceGetIndexStatistics.json" } + "SearchServiceGetIndexStatistics": { + "$ref": "./examples/SearchServiceGetIndexStatistics.json" + } }, "description": "Returns statistics for the given index, including a document count and storage usage.", "externalDocs": { @@ -1054,7 +1102,9 @@ ], "operationId": "Indexes_Analyze", "x-ms-examples": { - "SearchServiceIndexAnalyze": { "$ref": "./examples/SearchServiceIndexAnalyze.json" } + "SearchServiceIndexAnalyze": { + "$ref": "./examples/SearchServiceIndexAnalyze.json" + } }, "description": "Shows how an analyzer breaks text into tokens.", "externalDocs": { @@ -1102,7 +1152,9 @@ ], "operationId": "GetServiceStatistics", "x-ms-examples": { - "SearchServiceGetServiceStatistics": { "$ref": "./examples/SearchServiceGetServiceStatistics.json" } + "SearchServiceGetServiceStatistics": { + "$ref": "./examples/SearchServiceGetServiceStatistics.json" + } }, "description": "Gets service level statistics for an Azure Search service.", "parameters": [ @@ -1277,14 +1329,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the analyzer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for analyzers." }, @@ -1413,14 +1466,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the tokenizer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for tokenizers.", "externalDocs": { @@ -1930,14 +1984,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the token filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for token filters.", "externalDocs": { @@ -2202,7 +2257,7 @@ }, "description": "The list of words to keep." }, - "keepWordsCase" : { + "keepWordsCase": { "x-ms-client-name": "LowerCaseKeepWords", "type": "boolean", "default": false, @@ -2891,14 +2946,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the char filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for character filters.", "externalDocs": { @@ -3105,7 +3161,10 @@ } }, "required": [ - "name", "type", "credentials", "container" + "name", + "type", + "credentials", + "container" ], "description": "Represents a datasource definition in Azure Search, which can be used to configure an indexer." }, @@ -3273,7 +3332,9 @@ } }, "required": [ - "name", "dataSourceName", "targetIndexName" + "name", + "dataSourceName", + "targetIndexName" ], "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/Indexer-operations" @@ -3401,7 +3462,9 @@ "inProgress", "reset" ], - "x-ms-enum": { "name": "IndexerExecutionStatus" }, + "x-ms-enum": { + "name": "IndexerExecutionStatus" + }, "x-nullable": false, "description": "Represents the status of an individual indexer execution." }, @@ -3435,7 +3498,9 @@ "error", "running" ], - "x-ms-enum": { "name": "IndexerStatus" }, + "x-ms-enum": { + "name": "IndexerStatus" + }, "x-nullable": false, "description": "Represents the overall indexer status." }, @@ -3522,7 +3587,8 @@ } }, "required": [ - "name", "type" + "name", + "type" ], "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index" @@ -3568,7 +3634,9 @@ } }, "required": [ - "type", "fieldName", "boost" + "type", + "fieldName", + "boost" ], "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index" @@ -3610,7 +3678,8 @@ } }, "required": [ - "referencePointParameter", "boostingDistance" + "referencePointParameter", + "boostingDistance" ], "description": "Provides parameter values to a distance scoring function." }, @@ -3690,7 +3759,8 @@ } }, "required": [ - "boostingRangeStart", "boostingRangeEnd" + "boostingRangeStart", + "boostingRangeEnd" ], "description": "Provides parameter values to a magnitude scoring function." }, @@ -3736,7 +3806,9 @@ "quadratic", "logarithmic" ], - "x-ms-enum": { "name": "ScoringFunctionInterpolation" }, + "x-ms-enum": { + "name": "ScoringFunctionInterpolation" + }, "description": "Defines the function used to interpolate score boosting across a range of documents." }, "ScoringProfile": { @@ -3782,7 +3854,9 @@ "maximum", "firstMatching" ], - "x-ms-enum": { "name": "ScoringFunctionAggregation" }, + "x-ms-enum": { + "name": "ScoringFunctionAggregation" + }, "description": "Defines the aggregation function used to combine the results of all the scoring functions in a scoring profile." }, "CorsOptions": { @@ -3830,7 +3904,9 @@ } }, "required": [ - "name", "searchMode", "sourceFields" + "name", + "searchMode", + "sourceFields" ], "description": "Defines how the Suggest API should apply to a group of fields in the index." }, @@ -3919,7 +3995,8 @@ } }, "required": [ - "name", "fields" + "name", + "fields" ], "description": "Represents an index definition in Azure Search, which describes the fields and search behavior of an index." }, @@ -3992,7 +4069,9 @@ } }, "required": [ - "name", "format", "synonyms" + "name", + "format", + "synonyms" ], "description": "Represents a synonym map definition in Azure Search." }, @@ -4115,7 +4194,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" }, + "x-ms-parameter-grouping": { + "name": "search-request-options" + }, "x-ms-parameter-location": "method" }, "IfMatchParameter": { @@ -4124,7 +4205,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" }, + "x-ms-parameter-grouping": { + "name": "access-condition" + }, "x-ms-parameter-location": "method" }, "IfNoneMatchParameter": { @@ -4133,7 +4216,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" }, + "x-ms-parameter-grouping": { + "name": "access-condition" + }, "x-ms-parameter-location": "method" }, "PreferHeaderParameter": { diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01/searchservice.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01/searchservice.json index 51a9776801aa..88dc4d34bd47 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01/searchservice.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01/searchservice.json @@ -50,7 +50,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -58,7 +60,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -66,7 +70,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -113,7 +119,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -121,7 +129,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -129,7 +139,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -170,7 +182,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -206,7 +220,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -249,7 +265,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -292,7 +310,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -332,7 +352,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -381,7 +403,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -389,7 +413,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -397,7 +423,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -444,7 +472,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -452,7 +482,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -460,7 +492,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -501,7 +535,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -537,7 +573,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -580,7 +618,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -623,7 +663,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -668,7 +710,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -709,7 +753,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -768,7 +814,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -776,7 +824,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -784,7 +834,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -831,7 +883,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "name": "If-Match", @@ -839,7 +893,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "name": "If-None-Match", @@ -847,7 +903,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" } + "x-ms-parameter-grouping": { + "name": "access-condition" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -888,7 +946,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -931,7 +991,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -983,7 +1045,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" } + "x-ms-parameter-grouping": { + "name": "search-request-options" + } }, { "$ref": "#/parameters/ApiVersionParameter" @@ -1153,14 +1217,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the analyzer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for analyzers." }, @@ -1289,14 +1354,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the tokenizer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for tokenizers.", "externalDocs": { @@ -1396,7 +1462,7 @@ }, "x-ms-external": true }, - "KeywordTokenizerV2": { + "KeywordTokenizerV2": { "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordTokenizerV2", "allOf": [ { @@ -1811,14 +1877,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the token filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for token filters.", "externalDocs": { @@ -2083,7 +2150,7 @@ }, "description": "The list of words to keep." }, - "keepWordsCase" : { + "keepWordsCase": { "x-ms-client-name": "LowerCaseKeepWords", "type": "boolean", "default": false, @@ -2772,14 +2839,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the char filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for character filters.", "externalDocs": { @@ -2979,14 +3047,17 @@ "$ref": "#/definitions/DataDeletionDetectionPolicy", "description": "The data deletion detection policy for the datasource." }, - "@odata.etag": { + "@odata.etag": { "x-ms-client-name": "ETag", "type": "string", "description": "The ETag of the DataSource." } }, "required": [ - "name", "type", "credentials", "container" + "name", + "type", + "credentials", + "container" ], "description": "Represents a datasource definition in Azure Search, which can be used to configure an indexer." }, @@ -3147,14 +3218,16 @@ "default": false, "description": "A value indicating whether the indexer is disabled. Default is false." }, - "@odata.etag": { + "@odata.etag": { "x-ms-client-name": "ETag", "type": "string", "description": "The ETag of the Indexer." } }, "required": [ - "name", "dataSourceName", "targetIndexName" + "name", + "dataSourceName", + "targetIndexName" ], "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/Indexer-operations" @@ -3258,7 +3331,9 @@ "inProgress", "reset" ], - "x-ms-enum": { "name": "IndexerExecutionStatus" }, + "x-ms-enum": { + "name": "IndexerExecutionStatus" + }, "description": "Represents the status of an individual indexer execution." }, "IndexerExecutionInfo": { @@ -3292,7 +3367,9 @@ "error", "running" ], - "x-ms-enum": { "name": "IndexerStatus" }, + "x-ms-enum": { + "name": "IndexerStatus" + }, "description": "Represents the overall indexer status." }, "Field": { @@ -3361,7 +3438,8 @@ } }, "required": [ - "name", "type" + "name", + "type" ], "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index" @@ -3407,7 +3485,9 @@ } }, "required": [ - "type", "fieldName", "boost" + "type", + "fieldName", + "boost" ], "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index" @@ -3449,7 +3529,8 @@ } }, "required": [ - "referencePointParameter", "boostingDistance" + "referencePointParameter", + "boostingDistance" ], "description": "Provides parameter values to a distance scoring function." }, @@ -3529,7 +3610,8 @@ } }, "required": [ - "boostingRangeStart", "boostingRangeEnd" + "boostingRangeStart", + "boostingRangeEnd" ], "description": "Provides parameter values to a magnitude scoring function." }, @@ -3575,7 +3657,9 @@ "quadratic", "logarithmic" ], - "x-ms-enum": { "name": "ScoringFunctionInterpolation" }, + "x-ms-enum": { + "name": "ScoringFunctionInterpolation" + }, "description": "Defines the function used to interpolate score boosting across a range of documents." }, "ScoringProfile": { @@ -3621,7 +3705,9 @@ "maximum", "firstMatching" ], - "x-ms-enum": { "name": "ScoringFunctionAggregation" }, + "x-ms-enum": { + "name": "ScoringFunctionAggregation" + }, "description": "Defines the aggregation function used to combine the results of all the scoring functions in a scoring profile." }, "CorsOptions": { @@ -3666,7 +3752,9 @@ } }, "required": [ - "name", "searchMode", "sourceFields" + "name", + "searchMode", + "sourceFields" ], "description": "Defines how the Suggest API should apply to a group of fields in the index." }, @@ -3675,7 +3763,9 @@ "enum": [ "analyzingInfixMatching" ], - "x-ms-enum": { "name": "SuggesterSearchMode" }, + "x-ms-enum": { + "name": "SuggesterSearchMode" + }, "description": "Describes the type of suggester to use." }, "Index": { @@ -3763,7 +3853,8 @@ } }, "required": [ - "name", "fields" + "name", + "fields" ], "description": "Represents an index definition in Azure Search, which describes the fields and search behavior of an index." }, @@ -3809,4 +3900,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateDataSource.json index 30599dc68731..6489751effad 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateDataSource.json @@ -1,53 +1,53 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11-Preview", - "dataSource": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } - }, - "responses": { - "201": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11-Preview", + "dataSource": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" + } + } + }, + "responses": { + "201": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateIndex.json index 3ca4a33bc351..217d2f1c8dad 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateIndex.json @@ -1,364 +1,364 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11-Preview", - "index": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "key": true, - "searchable": false - }, - { - "name": "baseRate", - "type": "Edm.Double" - }, - { - "name": "description", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false - }, - { - "name": "description_fr", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false, - "analyzer": "fr.lucene" - }, - { - "name": "hotelName", - "type": "Edm.String" - }, - { - "name": "category", - "type": "Edm.String" - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "analyzer": "tagsAnalyzer" - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean" - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean" - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset" - }, - { - "name": "rating", - "type": "Edm.Int32" - }, - { - "name": "location", - "type": "Edm.GeographyPoint" - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - }, - "encryptionKey": { - "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", - "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": { - "applicationId": "00000000-0000-0000-0000-000000000000", - "applicationSecret": "myApplicationSecret" - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11-Preview", + "index": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "key": true, + "searchable": false + }, + { + "name": "baseRate", + "type": "Edm.Double" + }, + { + "name": "description", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false + }, + { + "name": "description_fr", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false, + "analyzer": "fr.lucene" + }, + { + "name": "hotelName", + "type": "Edm.String" + }, + { + "name": "category", + "type": "Edm.String" + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "analyzer": "tagsAnalyzer" + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean" + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean" + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset" + }, + { + "name": "rating", + "type": "Edm.Int32" + }, + { + "name": "location", + "type": "Edm.GeographyPoint" + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 + } } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + }, + "encryptionKey": { + "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", + "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": { + "applicationId": "00000000-0000-0000-0000-000000000000", + "applicationSecret": "myApplicationSecret" } - }, - "responses": { - "201": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - }, - "encryptionKey": { - "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", - "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": { - "applicationId": "00000000-0000-0000-0000-000000000000", - "applicationSecret": null - } + } + } + }, + "responses": { + "201": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + }, + "encryptionKey": { + "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", + "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": { + "applicationId": "00000000-0000-0000-0000-000000000000", + "applicationSecret": null + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateIndexer.json index 879a9eb7232f..5a6c8af97048 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateIndexer.json @@ -1,41 +1,41 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11-Preview", - "indexer": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - } - } - }, - "responses": { - "201": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11-Preview", + "indexer": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + } } -} \ No newline at end of file + }, + "responses": { + "201": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateDataSource.json index 7bc1b1569c37..14a21e9271ad 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateDataSource.json @@ -1,78 +1,78 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2017-11-11-Preview", - "Prefer": "return=representation", - "dataSource": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2017-11-11-Preview", + "Prefer": "return=representation", + "dataSource": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" + } + } + }, + "responses": { + "200": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } }, - "responses": { - "200": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "201": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" }, - "201": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateIndex.json index 0cf655cf83d0..86914afc2ff4 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateIndex.json @@ -1,593 +1,593 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "allowIndexDowntime": false, - "api-version": "2017-11-11-Preview", - "Prefer": "return=representation", - "index": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "key": true, - "searchable": false - }, - { - "name": "baseRate", - "type": "Edm.Double" - }, - { - "name": "description", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false - }, - { - "name": "description_fr", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false, - "analyzer": "fr.lucene" - }, - { - "name": "hotelName", - "type": "Edm.String" - }, - { - "name": "category", - "type": "Edm.String" - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "analyzer": "tagsAnalyzer" - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean" - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean" - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset" - }, - { - "name": "rating", - "type": "Edm.Int32" - }, - { - "name": "location", - "type": "Edm.GeographyPoint" - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "allowIndexDowntime": false, + "api-version": "2017-11-11-Preview", + "Prefer": "return=representation", + "index": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "key": true, + "searchable": false + }, + { + "name": "baseRate", + "type": "Edm.Double" + }, + { + "name": "description", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false + }, + { + "name": "description_fr", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false, + "analyzer": "fr.lucene" + }, + { + "name": "hotelName", + "type": "Edm.String" + }, + { + "name": "category", + "type": "Edm.String" + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "analyzer": "tagsAnalyzer" + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean" + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean" + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset" + }, + { + "name": "rating", + "type": "Edm.Int32" + }, + { + "name": "location", + "type": "Edm.GeographyPoint" + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 + } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + }, + "encryptionKey": { + "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", + "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": null + } + } + }, + "responses": { + "200": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" ], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - }, - "encryptionKey": { - "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", - "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": null - } + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + }, + "encryptionKey": { + "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", + "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": null } + } }, - "responses": { - "200": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - }, - "encryptionKey": { - "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", - "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": null + "201": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 }, - "201": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - }, - "encryptionKey": { - "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", - "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": null - } - } + "encryptionKey": { + "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", + "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": null } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateIndexer.json index ba71754f5761..9ebedfab6137 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateIndexer.json @@ -1,61 +1,61 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11-Preview", - "Prefer": "return=representation", - "indexer": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11-Preview", + "Prefer": "return=representation", + "indexer": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + } + } + }, + "responses": { + "200": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } }, - "responses": { - "200": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } + "201": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 }, - "201": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "fieldMappings": [], + "disabled": false + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateSkillset.json index 0e852af5f0ff..73abccf1099f 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateSkillset.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateSkillset.json @@ -1,281 +1,281 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "skillsetName": "demoskillset", - "api-version": "2017-11-11-Preview", - "Prefer": "return=representation", - "skillset": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "textSplitMode": "pages", - "maximumPageLength": 4000, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ] - } - ] - } - }, - "responses": { - "200": { - "body": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ], - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7 - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ], - "defaultLanguageCode": null, - "textSplitMode": "pages", - "maximumPageLength": 4000 - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "description": null, - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ], - "defaultLanguageCode": null, - "maxKeyPhraseCount": null - } - ] - } - }, - "201": { - "body": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ], - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7 - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ], - "defaultLanguageCode": null, - "textSplitMode": "pages", - "maximumPageLength": 4000 - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "description": null, - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ], - "defaultLanguageCode": null, - "maxKeyPhraseCount": null - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "skillsetName": "demoskillset", + "api-version": "2017-11-11-Preview", + "Prefer": "return=representation", + "skillset": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "textSplitMode": "pages", + "maximumPageLength": 4000, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ] + } + ] + } + }, + "responses": { + "200": { + "body": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ], + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7 + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ], + "defaultLanguageCode": null, + "textSplitMode": "pages", + "maximumPageLength": 4000 + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "description": null, + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ], + "defaultLanguageCode": null, + "maxKeyPhraseCount": null + } + ] + } + }, + "201": { + "body": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ], + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7 + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ], + "defaultLanguageCode": null, + "textSplitMode": "pages", + "maximumPageLength": 4000 + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "description": null, + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ], + "defaultLanguageCode": null, + "maxKeyPhraseCount": null + } + ] + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json index dae2878f9b5b..e21c77db3b28 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json @@ -1,48 +1,48 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2017-11-11-Preview", - "Prefer": "return=representation", - "synonymMap": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", - "encryptionKey": { - "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", - "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": null - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2017-11-11-Preview", + "Prefer": "return=representation", + "synonymMap": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", + "encryptionKey": { + "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", + "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": null + } + } + }, + "responses": { + "200": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", + "encryptionKey": { + "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", + "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": null } + } }, - "responses": { - "200": { - "body": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", - "encryptionKey": { - "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", - "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": null - } - } - }, - "201": { - "body": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", - "encryptionKey": { - "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", - "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": null - } - } + "201": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", + "encryptionKey": { + "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", + "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": null } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateSkillset.json index de9a119ec2c5..f748b05bf8bf 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateSkillset.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateSkillset.json @@ -1,187 +1,187 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "skillsetName": "demoskillset", - "api-version": "2017-11-11-Preview", - "Prefer": "return=representation", - "skillset": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "textSplitMode": "pages", - "maximumPageLength": 4000, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ] - } - ] - } - }, - "responses": { - "201": { - "body": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ], - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7 - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ], - "defaultLanguageCode": null, - "textSplitMode": "pages", - "maximumPageLength": 4000 - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "description": null, - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ], - "defaultLanguageCode": null, - "maxKeyPhraseCount": null - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "skillsetName": "demoskillset", + "api-version": "2017-11-11-Preview", + "Prefer": "return=representation", + "skillset": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "textSplitMode": "pages", + "maximumPageLength": 4000, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ] + } + ] + } + }, + "responses": { + "201": { + "body": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ], + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7 + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ], + "defaultLanguageCode": null, + "textSplitMode": "pages", + "maximumPageLength": 4000 + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "description": null, + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ], + "defaultLanguageCode": null, + "maxKeyPhraseCount": null + } + ] + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateSynonymMap.json index 821ad6aedd81..6bc269b90b2f 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateSynonymMap.json @@ -1,39 +1,39 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11-Preview", - "synonymMap": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", - "encryptionKey": { - "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", - "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": { - "applicationId": "00000000-0000-0000-0000-000000000000", - "applicationSecret": "myApplicationSecret" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11-Preview", + "synonymMap": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", + "encryptionKey": { + "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", + "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": { + "applicationId": "00000000-0000-0000-0000-000000000000", + "applicationSecret": "myApplicationSecret" } - }, - "responses": { - "201": { - "body": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", - "encryptionKey": { - "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", - "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": { - "applicationId": "00000000-0000-0000-0000-000000000000", - "applicationSecret": null - } - } - } + } + } + }, + "responses": { + "201": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", + "encryptionKey": { + "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault", + "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": { + "applicationId": "00000000-0000-0000-0000-000000000000", + "applicationSecret": null + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteDataSource.json index 29af0b3d5f87..c39a386cd554 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteDataSource.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteIndex.json index 392d6c4bfbdb..8d429fcb14de 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteIndex.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteIndexer.json index c054d849efd0..a5160b72c688 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteIndexer.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteSkillset.json index 19d8916d0105..891f83046c5e 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteSkillset.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteSkillset.json @@ -9,4 +9,4 @@ "204": {}, "404": {} } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteSynonymMap.json index 9cdfcdd194b5..aab3878d8a69 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceDeleteSynonymMap.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetDataSource.json index 0e2bc5f65a01..ab6a5ebf1e37 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetDataSource.json @@ -1,33 +1,33 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndex.json index 53a76bba6ed1..2260d5b6ca4b 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndex.json @@ -1,245 +1,245 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - }, - "encryptionKey": { - "keyVaultKeyName": "myKeyName", - "keyVaultKeyVersion": "myKeyVersion", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": { - "applicationId": "00000000-0000-0000-0000-000000000000", - "applicationSecret": null - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + }, + "encryptionKey": { + "keyVaultKeyName": "myKeyName", + "keyVaultKeyVersion": "myKeyVersion", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": { + "applicationId": "00000000-0000-0000-0000-000000000000", + "applicationSecret": null + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexStatistics.json index 61c55f98a85a..95945b66616f 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexStatistics.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexStatistics.json @@ -1,16 +1,16 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "documentCount": 239572, - "storageSize": 72375920 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "documentCount": 239572, + "storageSize": 72375920 + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexer.json index d83e55727568..b225e5483f65 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexer.json @@ -1,28 +1,28 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexerStatus.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexerStatus.json index 34748c6bc9e9..527ab053eea5 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexerStatus.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndexerStatus.json @@ -1,63 +1,63 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "status": "running", - "lastResult": { - "status": "success", - "errorMessage": null, - "startTime": "2014-11-26T03:37:18.853Z", - "endTime": "2014-11-26T03:37:19.012Z", - "errors": [], - "warnings": [], - "itemsProcessed": 11, - "itemsFailed": 0, - "initialTrackingState": null, - "finalTrackingState": null - }, - "executionHistory": [ - { - "status": "success", - "errorMessage": null, - "startTime": "2014-11-26T03:37:18.853Z", - "endTime": "2014-11-26T03:37:19.012Z", - "errors": [], - "warnings": [], - "itemsProcessed": 11, - "itemsFailed": 0, - "initialTrackingState": null, - "finalTrackingState": null - }, - { - "status": "transientFailure", - "errorMessage": null, - "startTime": "2014-11-26T03:28:10.125Z", - "endTime": "2014-11-26T03:28:12.007Z", - "errors": [ - { - "key": "", - "errorMessage": "Document key cannot be missing or empty." - } - ], - "warnings": [ - { - "key": "document id", - "message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob." - } - ], - "itemsProcessed": 1, - "itemsFailed": 1, - "initialTrackingState": null, - "finalTrackingState": null - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "status": "running", + "lastResult": { + "status": "success", + "errorMessage": null, + "startTime": "2014-11-26T03:37:18.853Z", + "endTime": "2014-11-26T03:37:19.012Z", + "errors": [], + "warnings": [], + "itemsProcessed": 11, + "itemsFailed": 0, + "initialTrackingState": null, + "finalTrackingState": null + }, + "executionHistory": [ + { + "status": "success", + "errorMessage": null, + "startTime": "2014-11-26T03:37:18.853Z", + "endTime": "2014-11-26T03:37:19.012Z", + "errors": [], + "warnings": [], + "itemsProcessed": 11, + "itemsFailed": 0, + "initialTrackingState": null, + "finalTrackingState": null + }, + { + "status": "transientFailure", + "errorMessage": null, + "startTime": "2014-11-26T03:28:10.125Z", + "endTime": "2014-11-26T03:28:12.007Z", + "errors": [ + { + "key": "", + "errorMessage": "Document key cannot be missing or empty." + } + ], + "warnings": [ + { + "key": "document id", + "message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob." + } + ], + "itemsProcessed": 1, + "itemsFailed": 1, + "initialTrackingState": null, + "finalTrackingState": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetServiceStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetServiceStatistics.json index 29783b21be59..b83f94d309d9 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetServiceStatistics.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetServiceStatistics.json @@ -1,44 +1,44 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "counters": { - "documentCount": { - "usage": 7093, - "quota": 10000 - }, - "indexesCount": { - "usage": 3, - "quota": 3 - }, - "indexersCount": { - "usage": 3, - "quota": 3 - }, - "dataSourcesCount": { - "usage": 1, - "quota": 3 - }, - "storageSize": { - "usage": 914529, - "quota": 52428800 - }, - "synonymMaps": { - "usage": 2, - "quota": 3 - } - }, - "limits": { - "maxFieldsPerIndex": 1000, - "maxFieldNestingDepthPerIndex": 10, - "maxComplexCollectionFieldsPerIndex": 100 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "counters": { + "documentCount": { + "usage": 7093, + "quota": 10000 + }, + "indexesCount": { + "usage": 3, + "quota": 3 + }, + "indexersCount": { + "usage": 3, + "quota": 3 + }, + "dataSourcesCount": { + "usage": 1, + "quota": 3 + }, + "storageSize": { + "usage": 914529, + "quota": 52428800 + }, + "synonymMaps": { + "usage": 2, + "quota": 3 + } + }, + "limits": { + "maxFieldsPerIndex": 1000, + "maxFieldNestingDepthPerIndex": 10, + "maxComplexCollectionFieldsPerIndex": 100 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetSkillset.json index d4a1b6ae6f23..76addf593c88 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetSkillset.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetSkillset.json @@ -1,104 +1,104 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "skillsetName": "demoskillset", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ], - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7 - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ], - "defaultLanguageCode": null, - "textSplitMode": "pages", - "maximumPageLength": 4000 - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "description": null, - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ], - "defaultLanguageCode": null, - "maxKeyPhraseCount": null - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "skillsetName": "demoskillset", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ], + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7 + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ], + "defaultLanguageCode": null, + "textSplitMode": "pages", + "maximumPageLength": 4000 + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "description": null, + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ], + "defaultLanguageCode": null, + "maxKeyPhraseCount": null + } + ] + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetSynonymMap.json index 36c88c4d91e0..a34e96952f3e 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetSynonymMap.json @@ -1,26 +1,26 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", - "encryptionKey": { - "keyVaultKeyName": "myKeyName", - "keyVaultKeyVersion": "myKeyVersion", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": { - "applicationId": "00000000-0000-0000-0000-000000000000", - "applicationSecret": null - } - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", + "encryptionKey": { + "keyVaultKeyName": "myKeyName", + "keyVaultKeyVersion": "myKeyVersion", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": { + "applicationId": "00000000-0000-0000-0000-000000000000", + "applicationSecret": null + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceIndexAnalyze.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceIndexAnalyze.json index ef51d9c8faad..2a3643dc0ff0 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceIndexAnalyze.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceIndexAnalyze.json @@ -1,38 +1,38 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2017-11-11-Preview", - "request": { - "text": "Text to analyze", - "analyzer": "standard.lucene" - } - }, - "responses": { - "200": { - "body": { - "tokens": [ - { - "token": "text", - "startOffset": 0, - "endOffset": 4, - "position": 0 - }, - { - "token": "to", - "startOffset": 5, - "endOffset": 7, - "position": 1 - }, - { - "token": "analyze", - "startOffset": 8, - "endOffset": 15, - "position": 2 - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2017-11-11-Preview", + "request": { + "text": "Text to analyze", + "analyzer": "standard.lucene" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "tokens": [ + { + "token": "text", + "startOffset": 0, + "endOffset": 4, + "position": 0 + }, + { + "token": "to", + "startOffset": 5, + "endOffset": 7, + "position": 1 + }, + { + "token": "analyze", + "startOffset": 8, + "endOffset": 15, + "position": 2 + } + ] + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListDataSources.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListDataSources.json index 6b28ba8f8656..73ea6479f84c 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListDataSources.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListDataSources.json @@ -1,49 +1,49 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - }, - { - "name": "myblobdatasource", - "description": "My Azure Blob data source.", - "type": "azureblob", - "credentials": { - "connectionString": null - }, - "container": { - "name": "mycontainer" - }, - "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } - } + }, + { + "name": "myblobdatasource", + "description": "My Azure Blob data source.", + "type": "azureblob", + "credentials": { + "connectionString": null + }, + "container": { + "name": "mycontainer" + }, + "dataChangeDetectionPolicy": null, + "dataDeletionDetectionPolicy": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListIndexers.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListIndexers.json index 6b2d40603bcf..07e171686cb5 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListIndexers.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListIndexers.json @@ -1,67 +1,67 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydocdbdatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - }, - { - "name": "myotherindexer", - "description": "another cool indexer", - "dataSourceName": "myblobdatasource", - "targetIndexName": "orders", - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5, - "batchSize": 15 - }, - "fieldMappings": [ - { - "sourceFieldName": "PersonName", - "targetFieldName": "FirstName", - "mappingFunction": { - "name": "extractTokenAtPosition", - "parameters": { - "delimiter": " ", - "position": 0 - } - } - }, - { - "sourceFieldName": "PersonName", - "targetFieldName": "LastName", - "mappingFunction": { - "name": "extractTokenAtPosition", - "parameters": { - "delimiter": " ", - "position": 1 - } - } - } - ], - "disabled": false - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydocdbdatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + }, + { + "name": "myotherindexer", + "description": "another cool indexer", + "dataSourceName": "myblobdatasource", + "targetIndexName": "orders", + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5, + "batchSize": 15 + }, + "fieldMappings": [ + { + "sourceFieldName": "PersonName", + "targetFieldName": "FirstName", + "mappingFunction": { + "name": "extractTokenAtPosition", + "parameters": { + "delimiter": " ", + "position": 0 + } + } + }, + { + "sourceFieldName": "PersonName", + "targetFieldName": "LastName", + "mappingFunction": { + "name": "extractTokenAtPosition", + "parameters": { + "delimiter": " ", + "position": 1 + } + } + } + ], + "disabled": false + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListIndexes.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListIndexes.json index 78cf467adea1..91a4f9f7eb52 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListIndexes.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListIndexes.json @@ -1,288 +1,288 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "$select": "name", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - }, - "encryptionKey": { - "keyVaultKeyName": "myKeyName", - "keyVaultKeyVersion": "myKeyVersion", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": null - } - }, - { - "name": "testindex", - "fields": [ - { - "name": "id", - "type": "Edm.String", - "searchable": false, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "hidden", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": false, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [], - "defaultScoringProfile": null, - "suggesters": [], - "analyzers": [], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": null, - "encryptionKey": null + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "$select": "name", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } + } ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + }, + "encryptionKey": { + "keyVaultKeyName": "myKeyName", + "keyVaultKeyVersion": "myKeyVersion", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": null } - } + }, + { + "name": "testindex", + "fields": [ + { + "name": "id", + "type": "Edm.String", + "searchable": false, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "hidden", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": false, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [], + "defaultScoringProfile": null, + "suggesters": [], + "analyzers": [], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": null, + "encryptionKey": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListSkillsets.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListSkillsets.json index 61c551920c8d..4a06cc90f760 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListSkillsets.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListSkillsets.json @@ -104,4 +104,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListSynonymMaps.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListSynonymMaps.json index a2122043614c..29176b050235 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListSynonymMaps.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListSynonymMaps.json @@ -1,32 +1,32 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", - "encryptionKey": { - "keyVaultKeyName": "myKeyName", - "keyVaultKeyVersion": "myKeyVersion", - "keyVaultUri": "https://myKeyVault.vault.azure.net", - "accessCredentials": null - } - }, - { - "name": "myothersynonymmap", - "format": "solr", - "synonyms": "couch, sofa, chesterfield\npop, soda\ntoque, hat", - "encryptionKey": null - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA", + "encryptionKey": { + "keyVaultKeyName": "myKeyName", + "keyVaultKeyVersion": "myKeyVersion", + "keyVaultUri": "https://myKeyVault.vault.azure.net", + "accessCredentials": null } - } + }, + { + "name": "myothersynonymmap", + "format": "solr", + "synonyms": "couch, sofa, chesterfield\npop, soda\ntoque, hat", + "encryptionKey": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceResetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceResetIndexer.json index 99eaeef8b6cb..31a5fe3d7046 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceResetIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceResetIndexer.json @@ -1,11 +1,11 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "204": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceRunIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceRunIndexer.json index 9d6ff0b871a1..7a7d0eb54016 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceRunIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceRunIndexer.json @@ -1,11 +1,11 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11-Preview" - }, - "responses": { - "202": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11-Preview" + }, + "responses": { + "202": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/searchservice.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/searchservice.json index 06b24476881e..a9d884ab1f76 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/searchservice.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/searchservice.json @@ -5252,7 +5252,7 @@ "required": [ "applicationId" ], - "description" : "Credentials of a registered application created for your Azure Search service, used for authenticated access to the encryption keys stored in Azure Key Vault." + "description": "Credentials of a registered application created for your Azure Search service, used for authenticated access to the encryption keys stored in Azure Key Vault." }, "ServiceStatistics": { "properties": { @@ -5417,4 +5417,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateDataSource.json index e235b1047cdd..1a9376d9f301 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateDataSource.json @@ -1,53 +1,53 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11", - "dataSource": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } - }, - "responses": { - "201": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11", + "dataSource": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" + } + } + }, + "responses": { + "201": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateIndex.json index 9fa5acd06056..2481c32c8479 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateIndex.json @@ -1,346 +1,346 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11", - "index": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "key": true, - "searchable": false - }, - { - "name": "baseRate", - "type": "Edm.Double" - }, - { - "name": "description", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false - }, - { - "name": "description_fr", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false, - "analyzer": "fr.lucene" - }, - { - "name": "hotelName", - "type": "Edm.String" - }, - { - "name": "category", - "type": "Edm.String" - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "analyzer": "tagsAnalyzer" - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean" - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean" - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset" - }, - { - "name": "rating", - "type": "Edm.Int32" - }, - { - "name": "location", - "type": "Edm.GeographyPoint" - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11", + "index": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "key": true, + "searchable": false + }, + { + "name": "baseRate", + "type": "Edm.Double" + }, + { + "name": "description", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false + }, + { + "name": "description_fr", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false, + "analyzer": "fr.lucene" + }, + { + "name": "hotelName", + "type": "Edm.String" + }, + { + "name": "category", + "type": "Edm.String" + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "analyzer": "tagsAnalyzer" + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean" + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean" + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset" + }, + { + "name": "rating", + "type": "Edm.Int32" + }, + { + "name": "location", + "type": "Edm.GeographyPoint" + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 + } } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" } - }, - "responses": { - "201": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + ], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + } + } + }, + "responses": { + "201": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateIndexer.json index 7b1e70e3184e..440719b78dc8 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateIndexer.json @@ -1,41 +1,41 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11", - "indexer": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - } - } - }, - "responses": { - "201": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11", + "indexer": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + } } -} \ No newline at end of file + }, + "responses": { + "201": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateDataSource.json index 7ffba4fdc125..8827e1b6e1b7 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateDataSource.json @@ -1,78 +1,78 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2017-11-11", - "Prefer": "return=representation", - "dataSource": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2017-11-11", + "Prefer": "return=representation", + "dataSource": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" + } + } + }, + "responses": { + "200": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } }, - "responses": { - "200": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "201": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" }, - "201": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateIndex.json index 2d4c52960213..d5fe8d011b16 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateIndex.json @@ -1,575 +1,575 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "allowIndexDowntime": false, - "api-version": "2017-11-11", - "Prefer": "return=representation", - "index": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "key": true, - "searchable": false - }, - { - "name": "baseRate", - "type": "Edm.Double" - }, - { - "name": "description", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false - }, - { - "name": "description_fr", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false, - "analyzer": "fr.lucene" - }, - { - "name": "hotelName", - "type": "Edm.String" - }, - { - "name": "category", - "type": "Edm.String" - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "analyzer": "tagsAnalyzer" - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean" - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean" - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset" - }, - { - "name": "rating", - "type": "Edm.Int32" - }, - { - "name": "location", - "type": "Edm.GeographyPoint" - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "allowIndexDowntime": false, + "api-version": "2017-11-11", + "Prefer": "return=representation", + "index": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "key": true, + "searchable": false + }, + { + "name": "baseRate", + "type": "Edm.Double" + }, + { + "name": "description", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false + }, + { + "name": "description_fr", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false, + "analyzer": "fr.lucene" + }, + { + "name": "hotelName", + "type": "Edm.String" + }, + { + "name": "category", + "type": "Edm.String" + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "analyzer": "tagsAnalyzer" + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean" + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean" + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset" + }, + { + "name": "rating", + "type": "Edm.Int32" + }, + { + "name": "location", + "type": "Edm.GeographyPoint" + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 + } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + } + } + }, + "responses": { + "200": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" ], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - } + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } }, - "responses": { - "200": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + "201": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } - }, - "201": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateIndexer.json index a417dddd25a4..91ff5072ba7d 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateIndexer.json @@ -1,61 +1,61 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11", - "Prefer": "return=representation", - "indexer": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11", + "Prefer": "return=representation", + "indexer": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + } + } + }, + "responses": { + "200": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } }, - "responses": { - "200": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } + "201": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 }, - "201": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "fieldMappings": [], + "disabled": false + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateSynonymMap.json index 0cd643eb7368..06e6a1ec8224 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateOrUpdateSynonymMap.json @@ -1,30 +1,30 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2017-11-11", - "Prefer": "return=representation", - "synonymMap": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2017-11-11", + "Prefer": "return=representation", + "synonymMap": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } + }, + "responses": { + "200": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } }, - "responses": { - "200": { - "body": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } - }, - "201": { - "body": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } - } + "201": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateSynonymMap.json index b9f40ca5ee02..5fe5dd0725e3 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceCreateSynonymMap.json @@ -1,21 +1,21 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11", - "synonymMap": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } - }, - "responses": { - "201": { - "body": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11", + "synonymMap": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" } -} \ No newline at end of file + }, + "responses": { + "201": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteDataSource.json index 3faafa97a38a..a2c883da4a50 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteDataSource.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2017-11-11" - }, - "responses": { - "204": { }, - "404": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2017-11-11" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteIndex.json index 4e7e66f3054d..f61078652aff 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteIndex.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2017-11-11" - }, - "responses": { - "204": { }, - "404": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2017-11-11" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteIndexer.json index b2c58106b3e9..94a5b9fc8819 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteIndexer.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11" - }, - "responses": { - "204": { }, - "404": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteSynonymMap.json index 0be6e0a18d4f..0d95268c821e 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceDeleteSynonymMap.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2017-11-11" - }, - "responses": { - "204": { }, - "404": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2017-11-11" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetDataSource.json index 5a179764d875..1ca1520a318b 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetDataSource.json @@ -1,33 +1,33 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndex.json index 0af6837198c8..55cf609270eb 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndex.json @@ -1,236 +1,236 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexStatistics.json index c1d871763c4f..c46c1e93999d 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexStatistics.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexStatistics.json @@ -1,16 +1,16 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "documentCount": 239572, - "storageSize": 72375920 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "documentCount": 239572, + "storageSize": 72375920 + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexer.json index af38815d4134..a959401e4f7c 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexer.json @@ -1,28 +1,28 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexerStatus.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexerStatus.json index 1bbea69a189d..3bc1ab9dd40f 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexerStatus.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexerStatus.json @@ -1,65 +1,65 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "status": "running", - "lastResult": { - "status": "success", - "errorMessage": null, - "startTime": "2014-11-26T03:37:18.853Z", - "endTime": "2014-11-26T03:37:19.012Z", - "errors": [], - "warnings": [], - "itemsProcessed": 11, - "itemsFailed": 0, - "initialTrackingState": null, - "finalTrackingState": null - }, - "executionHistory": [ - { - "status": "success", - "errorMessage": null, - "startTime": "2014-11-26T03:37:18.853Z", - "endTime": "2014-11-26T03:37:19.012Z", - "errors": [], - "warnings": [], - "itemsProcessed": 11, - "itemsFailed": 0, - "initialTrackingState": null, - "finalTrackingState": null - }, - { - "status": "transientFailure", - "errorMessage": null, - "startTime": "2014-11-26T03:28:10.125Z", - "endTime": "2014-11-26T03:28:12.007Z", - "errors": [ - { - "key": "", - "status": false, - "errorMessage": "Document key cannot be missing or empty.", - "statusCode": 400 - } - ], - "warnings": [ - { - "key": "document id", - "message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob." - } - ], - "itemsProcessed": 1, - "itemsFailed": 1, - "initialTrackingState": null, - "finalTrackingState": null - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "status": "running", + "lastResult": { + "status": "success", + "errorMessage": null, + "startTime": "2014-11-26T03:37:18.853Z", + "endTime": "2014-11-26T03:37:19.012Z", + "errors": [], + "warnings": [], + "itemsProcessed": 11, + "itemsFailed": 0, + "initialTrackingState": null, + "finalTrackingState": null + }, + "executionHistory": [ + { + "status": "success", + "errorMessage": null, + "startTime": "2014-11-26T03:37:18.853Z", + "endTime": "2014-11-26T03:37:19.012Z", + "errors": [], + "warnings": [], + "itemsProcessed": 11, + "itemsFailed": 0, + "initialTrackingState": null, + "finalTrackingState": null + }, + { + "status": "transientFailure", + "errorMessage": null, + "startTime": "2014-11-26T03:28:10.125Z", + "endTime": "2014-11-26T03:28:12.007Z", + "errors": [ + { + "key": "", + "status": false, + "errorMessage": "Document key cannot be missing or empty.", + "statusCode": 400 + } + ], + "warnings": [ + { + "key": "document id", + "message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob." + } + ], + "itemsProcessed": 1, + "itemsFailed": 1, + "initialTrackingState": null, + "finalTrackingState": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetServiceStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetServiceStatistics.json index 1fe6d3bd2280..d04d86feb4a9 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetServiceStatistics.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetServiceStatistics.json @@ -1,42 +1,42 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "counters": { - "documentCount": { - "usage": 7093, - "quota": 10000 - }, - "indexesCount": { - "usage": 3, - "quota": 3 - }, - "indexersCount": { - "usage": 3, - "quota": 3 - }, - "dataSourcesCount": { - "usage": 1, - "quota": 3 - }, - "storageSize": { - "usage": 914529, - "quota": 52428800 - }, - "synonymMaps": { - "usage": 2, - "quota": 3 - } - }, - "limits": { - "maxFieldsPerIndex": 1000 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "counters": { + "documentCount": { + "usage": 7093, + "quota": 10000 + }, + "indexesCount": { + "usage": 3, + "quota": 3 + }, + "indexersCount": { + "usage": 3, + "quota": 3 + }, + "dataSourcesCount": { + "usage": 1, + "quota": 3 + }, + "storageSize": { + "usage": 914529, + "quota": 52428800 + }, + "synonymMaps": { + "usage": 2, + "quota": 3 + } + }, + "limits": { + "maxFieldsPerIndex": 1000 } + } } + } } diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetSynonymMap.json index e9f5a86576cb..19e9f2846f8d 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetSynonymMap.json @@ -1,17 +1,17 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceIndexAnalyze.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceIndexAnalyze.json index 3ca392a388f4..143fae8b6ece 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceIndexAnalyze.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceIndexAnalyze.json @@ -1,38 +1,38 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2017-11-11", - "request": { - "text": "Text to analyze", - "analyzer": "standard" - } - }, - "responses": { - "200": { - "body": { - "tokens": [ - { - "token": "text", - "startOffset": 0, - "endOffset": 4, - "position": 0 - }, - { - "token": "to", - "startOffset": 5, - "endOffset": 7, - "position": 1 - }, - { - "token": "analyze", - "startOffset": 8, - "endOffset": 15, - "position": 2 - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2017-11-11", + "request": { + "text": "Text to analyze", + "analyzer": "standard" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "tokens": [ + { + "token": "text", + "startOffset": 0, + "endOffset": 4, + "position": 0 + }, + { + "token": "to", + "startOffset": 5, + "endOffset": 7, + "position": 1 + }, + { + "token": "analyze", + "startOffset": 8, + "endOffset": 15, + "position": 2 + } + ] + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListDataSources.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListDataSources.json index 95f760d2d883..09bc5659c605 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListDataSources.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListDataSources.json @@ -1,49 +1,49 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "documentdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - }, - { - "name": "myblobdatasource", - "description": "My Azure Blob data source.", - "type": "azureblob", - "credentials": { - "connectionString": null - }, - "container": { - "name": "mycontainer" - }, - "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "documentdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } - } + }, + { + "name": "myblobdatasource", + "description": "My Azure Blob data source.", + "type": "azureblob", + "credentials": { + "connectionString": null + }, + "container": { + "name": "mycontainer" + }, + "dataChangeDetectionPolicy": null, + "dataDeletionDetectionPolicy": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListIndexers.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListIndexers.json index f4b15de9e9b6..0e0b85fcbe36 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListIndexers.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListIndexers.json @@ -1,67 +1,67 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydocdbdatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - }, - { - "name": "myotherindexer", - "description": "another cool indexer", - "dataSourceName": "myblobdatasource", - "targetIndexName": "orders", - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5, - "batchSize": 15 - }, - "fieldMappings": [ - { - "sourceFieldName": "PersonName", - "targetFieldName": "FirstName", - "mappingFunction": { - "name": "extractTokenAtPosition", - "parameters": { - "delimiter": " ", - "position": 0 - } - } - }, - { - "sourceFieldName": "PersonName", - "targetFieldName": "LastName", - "mappingFunction": { - "name": "extractTokenAtPosition", - "parameters": { - "delimiter": " ", - "position": 1 - } - } - } - ], - "disabled": false - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydocdbdatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + }, + { + "name": "myotherindexer", + "description": "another cool indexer", + "dataSourceName": "myblobdatasource", + "targetIndexName": "orders", + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5, + "batchSize": 15 + }, + "fieldMappings": [ + { + "sourceFieldName": "PersonName", + "targetFieldName": "FirstName", + "mappingFunction": { + "name": "extractTokenAtPosition", + "parameters": { + "delimiter": " ", + "position": 0 + } + } + }, + { + "sourceFieldName": "PersonName", + "targetFieldName": "LastName", + "mappingFunction": { + "name": "extractTokenAtPosition", + "parameters": { + "delimiter": " ", + "position": 1 + } + } + } + ], + "disabled": false + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListIndexes.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListIndexes.json index b7a1cedc5577..9d0f9e91a65a 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListIndexes.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListIndexes.json @@ -1,281 +1,281 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "$select": "name", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - } - }, - { - "name": "testindex", - "fields": [ - { - "name": "id", - "type": "Edm.String", - "searchable": false, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "hidden", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": false, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [], - "defaultScoringProfile": null, - "suggesters": [], - "analyzers": [], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": null + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "$select": "name", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } + } ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } - } + }, + { + "name": "testindex", + "fields": [ + { + "name": "id", + "type": "Edm.String", + "searchable": false, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "hidden", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": false, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [], + "defaultScoringProfile": null, + "suggesters": [], + "analyzers": [], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListSynonymMaps.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListSynonymMaps.json index babae1063f95..e34ea9c8fc53 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListSynonymMaps.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceListSynonymMaps.json @@ -1,25 +1,25 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2017-11-11" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name" : "mysynonymmap", - "format" : "solr", - "synonyms" : "United States, United States of America, USA\nWashington, Wash. => WA" - }, - { - "name" : "myothersynonymmap", - "format" : "solr", - "synonyms" : "couch, sofa, chesterfield\npop, soda\ntoque, hat" - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2017-11-11" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + }, + { + "name": "myothersynonymmap", + "format": "solr", + "synonyms": "couch, sofa, chesterfield\npop, soda\ntoque, hat" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceResetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceResetIndexer.json index 35caf8c8c2c5..cd3046415cdc 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceResetIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceResetIndexer.json @@ -1,11 +1,11 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11" - }, - "responses": { - "204": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11" + }, + "responses": { + "204": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceRunIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceRunIndexer.json index 221bf63d15bb..b82bbbf807db 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceRunIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceRunIndexer.json @@ -1,11 +1,11 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2017-11-11" - }, - "responses": { - "202": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2017-11-11" + }, + "responses": { + "202": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/searchservice.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/searchservice.json index ed73013a0227..4391ca405ed9 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/searchservice.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/searchservice.json @@ -34,7 +34,9 @@ ], "operationId": "DataSources_CreateOrUpdate", "x-ms-examples": { - "SearchServiceCreateOrUpdateDataSource": { "$ref": "./examples/SearchServiceCreateOrUpdateDataSource.json" } + "SearchServiceCreateOrUpdateDataSource": { + "$ref": "./examples/SearchServiceCreateOrUpdateDataSource.json" + } }, "description": "Creates a new Azure Search datasource or updates a datasource if it already exists.", "externalDocs": { @@ -95,7 +97,9 @@ ], "operationId": "DataSources_Delete", "x-ms-examples": { - "SearchServiceDeleteDataSource": { "$ref": "./examples/SearchServiceDeleteDataSource.json" } + "SearchServiceDeleteDataSource": { + "$ref": "./examples/SearchServiceDeleteDataSource.json" + } }, "description": "Deletes an Azure Search datasource.", "externalDocs": { @@ -138,7 +142,9 @@ ], "operationId": "DataSources_Get", "x-ms-examples": { - "SearchServiceGetDataSource": { "$ref": "./examples/SearchServiceGetDataSource.json" } + "SearchServiceGetDataSource": { + "$ref": "./examples/SearchServiceGetDataSource.json" + } }, "description": "Retrieves a datasource definition from Azure Search.", "externalDocs": { @@ -177,7 +183,9 @@ ], "operationId": "DataSources_List", "x-ms-examples": { - "SearchServiceListDataSources": { "$ref": "./examples/SearchServiceListDataSources.json" } + "SearchServiceListDataSources": { + "$ref": "./examples/SearchServiceListDataSources.json" + } }, "description": "Lists all datasources available for an Azure Search service.", "externalDocs": { @@ -207,7 +215,9 @@ ], "operationId": "DataSources_Create", "x-ms-examples": { - "SearchServiceCreateDataSource": { "$ref": "./examples/SearchServiceCreateDataSource.json" } + "SearchServiceCreateDataSource": { + "$ref": "./examples/SearchServiceCreateDataSource.json" + } }, "description": "Creates a new Azure Search datasource.", "externalDocs": { @@ -248,7 +258,9 @@ ], "operationId": "Indexers_Reset", "x-ms-examples": { - "SearchServiceResetIndexer": { "$ref": "./examples/SearchServiceResetIndexer.json" } + "SearchServiceResetIndexer": { + "$ref": "./examples/SearchServiceResetIndexer.json" + } }, "description": "Resets the change tracking state associated with an Azure Search indexer.", "externalDocs": { @@ -284,7 +296,9 @@ ], "operationId": "Indexers_Run", "x-ms-examples": { - "SearchServiceRunIndexer": { "$ref": "./examples/SearchServiceRunIndexer.json" } + "SearchServiceRunIndexer": { + "$ref": "./examples/SearchServiceRunIndexer.json" + } }, "description": "Runs an Azure Search indexer on-demand.", "externalDocs": { @@ -320,7 +334,9 @@ ], "operationId": "Indexers_CreateOrUpdate", "x-ms-examples": { - "SearchServiceCreateOrUpdateIndexer": { "$ref": "./examples/SearchServiceCreateOrUpdateIndexer.json" } + "SearchServiceCreateOrUpdateIndexer": { + "$ref": "./examples/SearchServiceCreateOrUpdateIndexer.json" + } }, "description": "Creates a new Azure Search indexer or updates an indexer if it already exists.", "externalDocs": { @@ -381,7 +397,9 @@ ], "operationId": "Indexers_Delete", "x-ms-examples": { - "SearchServiceDeleteIndexer": { "$ref": "./examples/SearchServiceDeleteIndexer.json" } + "SearchServiceDeleteIndexer": { + "$ref": "./examples/SearchServiceDeleteIndexer.json" + } }, "description": "Deletes an Azure Search indexer.", "externalDocs": { @@ -424,7 +442,9 @@ ], "operationId": "Indexers_Get", "x-ms-examples": { - "SearchServiceGetIndexer": { "$ref": "./examples/SearchServiceGetIndexer.json" } + "SearchServiceGetIndexer": { + "$ref": "./examples/SearchServiceGetIndexer.json" + } }, "description": "Retrieves an indexer definition from Azure Search.", "externalDocs": { @@ -463,7 +483,9 @@ ], "operationId": "Indexers_List", "x-ms-examples": { - "SearchServiceListIndexers": { "$ref": "./examples/SearchServiceListIndexers.json" } + "SearchServiceListIndexers": { + "$ref": "./examples/SearchServiceListIndexers.json" + } }, "description": "Lists all indexers available for an Azure Search service.", "externalDocs": { @@ -493,7 +515,9 @@ ], "operationId": "Indexers_Create", "x-ms-examples": { - "SearchServiceCreateIndexer": { "$ref": "./examples/SearchServiceCreateIndexer.json" } + "SearchServiceCreateIndexer": { + "$ref": "./examples/SearchServiceCreateIndexer.json" + } }, "description": "Creates a new Azure Search indexer.", "externalDocs": { @@ -534,7 +558,9 @@ ], "operationId": "Indexers_GetStatus", "x-ms-examples": { - "SearchServiceGetIndexerStatus": { "$ref": "./examples/SearchServiceGetIndexerStatus.json" } + "SearchServiceGetIndexerStatus": { + "$ref": "./examples/SearchServiceGetIndexerStatus.json" + } }, "description": "Returns the current status and execution history of an indexer.", "externalDocs": { @@ -573,7 +599,9 @@ ], "operationId": "SynonymMaps_CreateOrUpdate", "x-ms-examples": { - "SearchServiceCreateOrUpdateSynonymMap": { "$ref": "./examples/SearchServiceCreateOrUpdateSynonymMap.json" } + "SearchServiceCreateOrUpdateSynonymMap": { + "$ref": "./examples/SearchServiceCreateOrUpdateSynonymMap.json" + } }, "description": "Creates a new Azure Search synonym map or updates a synonym map if it already exists.", "externalDocs": { @@ -634,7 +662,9 @@ ], "operationId": "SynonymMaps_Delete", "x-ms-examples": { - "SearchServiceDeleteSynonymMap": { "$ref": "./examples/SearchServiceDeleteSynonymMap.json" } + "SearchServiceDeleteSynonymMap": { + "$ref": "./examples/SearchServiceDeleteSynonymMap.json" + } }, "description": "Deletes an Azure Search synonym map.", "externalDocs": { @@ -677,7 +707,9 @@ ], "operationId": "SynonymMaps_Get", "x-ms-examples": { - "SearchServiceGetSynonymMap": { "$ref": "./examples/SearchServiceGetSynonymMap.json" } + "SearchServiceGetSynonymMap": { + "$ref": "./examples/SearchServiceGetSynonymMap.json" + } }, "description": "Retrieves a synonym map definition from Azure Search.", "externalDocs": { @@ -716,7 +748,9 @@ ], "operationId": "SynonymMaps_List", "x-ms-examples": { - "SearchServiceListSynonymMaps": { "$ref": "./examples/SearchServiceListSynonymMaps.json" } + "SearchServiceListSynonymMaps": { + "$ref": "./examples/SearchServiceListSynonymMaps.json" + } }, "description": "Lists all synonym maps available for an Azure Search service.", "externalDocs": { @@ -746,7 +780,9 @@ ], "operationId": "SynonymMaps_Create", "x-ms-examples": { - "SearchServiceCreateSynonymMap": { "$ref": "./examples/SearchServiceCreateSynonymMap.json" } + "SearchServiceCreateSynonymMap": { + "$ref": "./examples/SearchServiceCreateSynonymMap.json" + } }, "description": "Creates a new Azure Search synonym map.", "externalDocs": { @@ -787,7 +823,9 @@ ], "operationId": "Indexes_Create", "x-ms-examples": { - "SearchServiceCreateIndex": { "$ref": "./examples/SearchServiceCreateIndex.json" } + "SearchServiceCreateIndex": { + "$ref": "./examples/SearchServiceCreateIndex.json" + } }, "description": "Creates a new Azure Search index.", "externalDocs": { @@ -826,7 +864,9 @@ ], "operationId": "Indexes_List", "x-ms-examples": { - "SearchServiceListIndexes": { "$ref": "./examples/SearchServiceListIndexes.json" } + "SearchServiceListIndexes": { + "$ref": "./examples/SearchServiceListIndexes.json" + } }, "description": "Lists all indexes available for an Azure Search service.", "externalDocs": { @@ -865,7 +905,9 @@ ], "operationId": "Indexes_CreateOrUpdate", "x-ms-examples": { - "SearchServiceCreateOrUpdateIndex": { "$ref": "./examples/SearchServiceCreateOrUpdateIndex.json" } + "SearchServiceCreateOrUpdateIndex": { + "$ref": "./examples/SearchServiceCreateOrUpdateIndex.json" + } }, "description": "Creates a new Azure Search index or updates an index if it already exists.", "externalDocs": { @@ -933,7 +975,9 @@ ], "operationId": "Indexes_Delete", "x-ms-examples": { - "SearchServiceDeleteIndex": { "$ref": "./examples/SearchServiceDeleteIndex.json" } + "SearchServiceDeleteIndex": { + "$ref": "./examples/SearchServiceDeleteIndex.json" + } }, "description": "Deletes an Azure Search index and all the documents it contains.", "externalDocs": { @@ -976,7 +1020,9 @@ ], "operationId": "Indexes_Get", "x-ms-examples": { - "SearchServiceGetIndex": { "$ref": "./examples/SearchServiceGetIndex.json" } + "SearchServiceGetIndex": { + "$ref": "./examples/SearchServiceGetIndex.json" + } }, "description": "Retrieves an index definition from Azure Search.", "externalDocs": { @@ -1015,7 +1061,9 @@ ], "operationId": "Indexes_GetStatistics", "x-ms-examples": { - "SearchServiceGetIndexStatistics": { "$ref": "./examples/SearchServiceGetIndexStatistics.json" } + "SearchServiceGetIndexStatistics": { + "$ref": "./examples/SearchServiceGetIndexStatistics.json" + } }, "description": "Returns statistics for the given index, including a document count and storage usage.", "externalDocs": { @@ -1054,7 +1102,9 @@ ], "operationId": "Indexes_Analyze", "x-ms-examples": { - "SearchServiceIndexAnalyze": { "$ref": "./examples/SearchServiceIndexAnalyze.json" } + "SearchServiceIndexAnalyze": { + "$ref": "./examples/SearchServiceIndexAnalyze.json" + } }, "description": "Shows how an analyzer breaks text into tokens.", "externalDocs": { @@ -1102,7 +1152,9 @@ ], "operationId": "GetServiceStatistics", "x-ms-examples": { - "SearchServiceGetServiceStatistics": { "$ref": "./examples/SearchServiceGetServiceStatistics.json" } + "SearchServiceGetServiceStatistics": { + "$ref": "./examples/SearchServiceGetServiceStatistics.json" + } }, "description": "Gets service level statistics for an Azure Search service.", "parameters": [ @@ -1277,14 +1329,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the analyzer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for analyzers." }, @@ -1413,14 +1466,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the tokenizer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for tokenizers.", "externalDocs": { @@ -1930,14 +1984,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the token filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for token filters.", "externalDocs": { @@ -2202,7 +2257,7 @@ }, "description": "The list of words to keep." }, - "keepWordsCase" : { + "keepWordsCase": { "x-ms-client-name": "LowerCaseKeepWords", "type": "boolean", "default": false, @@ -2891,14 +2946,15 @@ }, "name": { "type": "string", - "externalDocs":{ + "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" }, "description": "The name of the char filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." } }, "required": [ - "@odata.type", "name" + "@odata.type", + "name" ], "description": "Abstract base class for character filters.", "externalDocs": { @@ -3105,7 +3161,10 @@ } }, "required": [ - "name", "type", "credentials", "container" + "name", + "type", + "credentials", + "container" ], "description": "Represents a datasource definition in Azure Search, which can be used to configure an indexer." }, @@ -3273,7 +3332,9 @@ } }, "required": [ - "name", "dataSourceName", "targetIndexName" + "name", + "dataSourceName", + "targetIndexName" ], "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/Indexer-operations" @@ -3401,7 +3462,9 @@ "inProgress", "reset" ], - "x-ms-enum": { "name": "IndexerExecutionStatus" }, + "x-ms-enum": { + "name": "IndexerExecutionStatus" + }, "x-nullable": false, "description": "Represents the status of an individual indexer execution." }, @@ -3435,7 +3498,9 @@ "error", "running" ], - "x-ms-enum": { "name": "IndexerStatus" }, + "x-ms-enum": { + "name": "IndexerStatus" + }, "x-nullable": false, "description": "Represents the overall indexer status." }, @@ -3522,7 +3587,8 @@ } }, "required": [ - "name", "type" + "name", + "type" ], "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index" @@ -3568,7 +3634,9 @@ } }, "required": [ - "type", "fieldName", "boost" + "type", + "fieldName", + "boost" ], "externalDocs": { "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index" @@ -3610,7 +3678,8 @@ } }, "required": [ - "referencePointParameter", "boostingDistance" + "referencePointParameter", + "boostingDistance" ], "description": "Provides parameter values to a distance scoring function." }, @@ -3690,7 +3759,8 @@ } }, "required": [ - "boostingRangeStart", "boostingRangeEnd" + "boostingRangeStart", + "boostingRangeEnd" ], "description": "Provides parameter values to a magnitude scoring function." }, @@ -3736,7 +3806,9 @@ "quadratic", "logarithmic" ], - "x-ms-enum": { "name": "ScoringFunctionInterpolation" }, + "x-ms-enum": { + "name": "ScoringFunctionInterpolation" + }, "description": "Defines the function used to interpolate score boosting across a range of documents." }, "ScoringProfile": { @@ -3782,7 +3854,9 @@ "maximum", "firstMatching" ], - "x-ms-enum": { "name": "ScoringFunctionAggregation" }, + "x-ms-enum": { + "name": "ScoringFunctionAggregation" + }, "description": "Defines the aggregation function used to combine the results of all the scoring functions in a scoring profile." }, "CorsOptions": { @@ -3830,7 +3904,9 @@ } }, "required": [ - "name", "searchMode", "sourceFields" + "name", + "searchMode", + "sourceFields" ], "description": "Defines how the Suggest API should apply to a group of fields in the index." }, @@ -3919,7 +3995,8 @@ } }, "required": [ - "name", "fields" + "name", + "fields" ], "description": "Represents an index definition in Azure Search, which describes the fields and search behavior of an index." }, @@ -3992,7 +4069,9 @@ } }, "required": [ - "name", "format", "synonyms" + "name", + "format", + "synonyms" ], "description": "Represents a synonym map definition in Azure Search." }, @@ -4103,7 +4182,9 @@ "format": "uuid", "description": "The tracking ID sent with the request to help with debugging.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-request-options" }, + "x-ms-parameter-grouping": { + "name": "search-request-options" + }, "x-ms-parameter-location": "method" }, "IfMatchParameter": { @@ -4112,7 +4193,9 @@ "required": false, "type": "string", "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-grouping": { "name": "access-condition" }, + "x-ms-parameter-grouping": { + "name": "access-condition" + }, "x-ms-parameter-location": "method" }, "IfNoneMatchParameter": { @@ -4121,7 +4204,9 @@ "required": false, "type": "string", "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-grouping": { "name": "access-condition" }, + "x-ms-parameter-grouping": { + "name": "access-condition" + }, "x-ms-parameter-location": "method" }, "PreferHeaderParameter": { diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateDataSource.json index 2fd6d22ba4b6..845a02e5f005 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateDataSource.json @@ -1,53 +1,53 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2019-05-06", - "dataSource": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } - }, - "responses": { - "201": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2019-05-06", + "dataSource": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" + } + } + }, + "responses": { + "201": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateIndex.json index 652a7cce93b8..fb2e6d8555fc 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateIndex.json @@ -1,346 +1,346 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2019-05-06", - "index": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "key": true, - "searchable": false - }, - { - "name": "baseRate", - "type": "Edm.Double" - }, - { - "name": "description", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false - }, - { - "name": "description_fr", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false, - "analyzer": "fr.lucene" - }, - { - "name": "hotelName", - "type": "Edm.String" - }, - { - "name": "category", - "type": "Edm.String" - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "analyzer": "tagsAnalyzer" - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean" - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean" - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset" - }, - { - "name": "rating", - "type": "Edm.Int32" - }, - { - "name": "location", - "type": "Edm.GeographyPoint" - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2019-05-06", + "index": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "key": true, + "searchable": false + }, + { + "name": "baseRate", + "type": "Edm.Double" + }, + { + "name": "description", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false + }, + { + "name": "description_fr", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false, + "analyzer": "fr.lucene" + }, + { + "name": "hotelName", + "type": "Edm.String" + }, + { + "name": "category", + "type": "Edm.String" + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "analyzer": "tagsAnalyzer" + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean" + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean" + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset" + }, + { + "name": "rating", + "type": "Edm.Int32" + }, + { + "name": "location", + "type": "Edm.GeographyPoint" + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 + } } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" } - }, - "responses": { - "201": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + ], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + } + } + }, + "responses": { + "201": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateIndexer.json index 4c3e08b131b0..232d67ff819d 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateIndexer.json @@ -1,41 +1,41 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2019-05-06", - "indexer": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - } - } - }, - "responses": { - "201": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2019-05-06", + "indexer": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + } } -} \ No newline at end of file + }, + "responses": { + "201": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateDataSource.json index c1af51b87082..4dfc77ba9f62 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateDataSource.json @@ -1,78 +1,78 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2019-05-06", - "Prefer": "return=representation", - "dataSource": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2019-05-06", + "Prefer": "return=representation", + "dataSource": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId" + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" + } + } + }, + "responses": { + "200": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } }, - "responses": { - "200": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "201": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" }, - "201": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateIndex.json index e5ffd75fdea4..ca8cd4d19fac 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateIndex.json @@ -1,575 +1,575 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "allowIndexDowntime": false, - "api-version": "2019-05-06", - "Prefer": "return=representation", - "index": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "key": true, - "searchable": false - }, - { - "name": "baseRate", - "type": "Edm.Double" - }, - { - "name": "description", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false - }, - { - "name": "description_fr", - "type": "Edm.String", - "filterable": false, - "sortable": false, - "facetable": false, - "analyzer": "fr.lucene" - }, - { - "name": "hotelName", - "type": "Edm.String" - }, - { - "name": "category", - "type": "Edm.String" - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "analyzer": "tagsAnalyzer" - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean" - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean" - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset" - }, - { - "name": "rating", - "type": "Edm.Int32" - }, - { - "name": "location", - "type": "Edm.GeographyPoint" - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "allowIndexDowntime": false, + "api-version": "2019-05-06", + "Prefer": "return=representation", + "index": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "key": true, + "searchable": false + }, + { + "name": "baseRate", + "type": "Edm.Double" + }, + { + "name": "description", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false + }, + { + "name": "description_fr", + "type": "Edm.String", + "filterable": false, + "sortable": false, + "facetable": false, + "analyzer": "fr.lucene" + }, + { + "name": "hotelName", + "type": "Edm.String" + }, + { + "name": "category", + "type": "Edm.String" + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "analyzer": "tagsAnalyzer" + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean" + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean" + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset" + }, + { + "name": "rating", + "type": "Edm.Int32" + }, + { + "name": "location", + "type": "Edm.GeographyPoint" + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 + } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 + } + } + }, + "responses": { + "200": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" ], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - } + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } }, - "responses": { - "200": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + "201": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } - }, - "201": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateIndexer.json index ba9f42b0fd4f..5930a217c693 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateIndexer.json @@ -1,61 +1,61 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2019-05-06", - "Prefer": "return=representation", - "indexer": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2019-05-06", + "Prefer": "return=representation", + "indexer": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + } + } + }, + "responses": { + "200": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } }, - "responses": { - "200": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } + "201": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 }, - "201": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "fieldMappings": [], + "disabled": false + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateSkillset.json index 731e909988d9..03c281462208 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateSkillset.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateSkillset.json @@ -1,281 +1,281 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "skillsetName": "demoskillset", - "api-version": "2019-05-06", - "Prefer": "return=representation", - "skillset": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "textSplitMode": "pages", - "maximumPageLength": 4000, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ] - } - ] - } - }, - "responses": { - "200": { - "body": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ], - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7 - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ], - "defaultLanguageCode": null, - "textSplitMode": "pages", - "maximumPageLength": 4000 - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "description": null, - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ], - "defaultLanguageCode": null, - "maxKeyPhraseCount": null - } - ] - } - }, - "201": { - "body": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ], - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7 - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ], - "defaultLanguageCode": null, - "textSplitMode": "pages", - "maximumPageLength": 4000 - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "description": null, - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ], - "defaultLanguageCode": null, - "maxKeyPhraseCount": null - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "skillsetName": "demoskillset", + "api-version": "2019-05-06", + "Prefer": "return=representation", + "skillset": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "textSplitMode": "pages", + "maximumPageLength": 4000, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ] + } + ] + } + }, + "responses": { + "200": { + "body": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ], + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7 + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ], + "defaultLanguageCode": null, + "textSplitMode": "pages", + "maximumPageLength": 4000 + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "description": null, + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ], + "defaultLanguageCode": null, + "maxKeyPhraseCount": null + } + ] + } + }, + "201": { + "body": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ], + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7 + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ], + "defaultLanguageCode": null, + "textSplitMode": "pages", + "maximumPageLength": 4000 + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "description": null, + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ], + "defaultLanguageCode": null, + "maxKeyPhraseCount": null + } + ] + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateSynonymMap.json index 4ebff4f1f201..bccae7eeabd1 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateOrUpdateSynonymMap.json @@ -1,30 +1,30 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2019-05-06", - "Prefer": "return=representation", - "synonymMap": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2019-05-06", + "Prefer": "return=representation", + "synonymMap": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } + }, + "responses": { + "200": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } }, - "responses": { - "200": { - "body": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" - } - }, - "201": { - "body": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" - } - } + "201": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateSkillset.json index 03501f6cba0e..a459519e32b9 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateSkillset.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateSkillset.json @@ -1,187 +1,187 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "skillsetName": "demoskillset", - "api-version": "2019-05-06", - "Prefer": "return=representation", - "skillset": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "textSplitMode": "pages", - "maximumPageLength": 4000, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ] - } - ] - } - }, - "responses": { - "201": { - "body": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ], - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7 - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ], - "defaultLanguageCode": null, - "textSplitMode": "pages", - "maximumPageLength": 4000 - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "description": null, - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ], - "defaultLanguageCode": null, - "maxKeyPhraseCount": null - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "skillsetName": "demoskillset", + "api-version": "2019-05-06", + "Prefer": "return=representation", + "skillset": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "textSplitMode": "pages", + "maximumPageLength": 4000, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ] + } + ] + } + }, + "responses": { + "201": { + "body": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ], + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7 + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ], + "defaultLanguageCode": null, + "textSplitMode": "pages", + "maximumPageLength": 4000 + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "description": null, + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ], + "defaultLanguageCode": null, + "maxKeyPhraseCount": null + } + ] + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateSynonymMap.json index e9a49beeecda..54fed9e2195e 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceCreateSynonymMap.json @@ -1,21 +1,21 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2019-05-06", - "synonymMap": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" - } - }, - "responses": { - "201": { - "body": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2019-05-06", + "synonymMap": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" } -} \ No newline at end of file + }, + "responses": { + "201": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteDataSource.json index 1ecbb42987a2..28ce67ce9aa4 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteDataSource.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2019-05-06" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2019-05-06" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteIndex.json index b83ea37d290f..1a45934f78e0 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteIndex.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "myindex", - "api-version": "2019-05-06" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "myindex", + "api-version": "2019-05-06" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteIndexer.json index f255e2701480..228cfb6065e4 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteIndexer.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2019-05-06" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2019-05-06" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteSkillset.json index bca4fce7b818..0f76ee238c6c 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteSkillset.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteSkillset.json @@ -9,4 +9,4 @@ "204": {}, "404": {} } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteSynonymMap.json index d74e19007808..1f1a858dc696 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceDeleteSynonymMap.json @@ -1,12 +1,12 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2019-05-06" - }, - "responses": { - "204": {}, - "404": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2019-05-06" + }, + "responses": { + "204": {}, + "404": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetDataSource.json index 1e5240b73a74..fb167a0ccfb9 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetDataSource.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetDataSource.json @@ -1,33 +1,33 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "dataSourceName": "mydatasource", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "dataSourceName": "mydatasource", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndex.json index 52064f3ee892..db93d25e9e27 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndex.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndex.json @@ -1,236 +1,236 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } - } + } + ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexStatistics.json index c13df23a9044..d02d8ab12144 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexStatistics.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexStatistics.json @@ -1,16 +1,16 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "documentCount": 239572, - "storageSize": 72375920 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "documentCount": 239572, + "storageSize": 72375920 + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexer.json index e6a7b306a024..81506dd1be57 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexer.json @@ -1,28 +1,28 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexerStatus.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexerStatus.json index 06e08217a78c..83e9dce778af 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexerStatus.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetIndexerStatus.json @@ -1,69 +1,69 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "status": "running", - "lastResult": { - "status": "success", - "errorMessage": null, - "startTime": "2014-11-26T03:37:18.853Z", - "endTime": "2014-11-26T03:37:19.012Z", - "errors": [], - "warnings": [], - "itemsProcessed": 11, - "itemsFailed": 0, - "initialTrackingState": null, - "finalTrackingState": null - }, - "executionHistory": [ - { - "status": "success", - "errorMessage": null, - "startTime": "2014-11-26T03:37:18.853Z", - "endTime": "2014-11-26T03:37:19.012Z", - "errors": [], - "warnings": [], - "itemsProcessed": 11, - "itemsFailed": 0, - "initialTrackingState": null, - "finalTrackingState": null - }, - { - "status": "transientFailure", - "errorMessage": null, - "startTime": "2014-11-26T03:28:10.125Z", - "endTime": "2014-11-26T03:28:12.007Z", - "errors": [ - { - "key": "", - "errorMessage": "Document key cannot be missing or empty.", - "statusCode": 400 - } - ], - "warnings": [ - { - "key": "document id", - "message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob." - } - ], - "itemsProcessed": 1, - "itemsFailed": 1, - "initialTrackingState": null, - "finalTrackingState": null - } - ], - "limits": { - "maxRunTime": "22:00:00", - "maxDocumentExtractionSize": 256000000, - "maxDocumentContentCharactersToExtract": 4000000 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "status": "running", + "lastResult": { + "status": "success", + "errorMessage": null, + "startTime": "2014-11-26T03:37:18.853Z", + "endTime": "2014-11-26T03:37:19.012Z", + "errors": [], + "warnings": [], + "itemsProcessed": 11, + "itemsFailed": 0, + "initialTrackingState": null, + "finalTrackingState": null + }, + "executionHistory": [ + { + "status": "success", + "errorMessage": null, + "startTime": "2014-11-26T03:37:18.853Z", + "endTime": "2014-11-26T03:37:19.012Z", + "errors": [], + "warnings": [], + "itemsProcessed": 11, + "itemsFailed": 0, + "initialTrackingState": null, + "finalTrackingState": null + }, + { + "status": "transientFailure", + "errorMessage": null, + "startTime": "2014-11-26T03:28:10.125Z", + "endTime": "2014-11-26T03:28:12.007Z", + "errors": [ + { + "key": "", + "errorMessage": "Document key cannot be missing or empty.", + "statusCode": 400 + } + ], + "warnings": [ + { + "key": "document id", + "message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob." + } + ], + "itemsProcessed": 1, + "itemsFailed": 1, + "initialTrackingState": null, + "finalTrackingState": null + } + ], + "limits": { + "maxRunTime": "22:00:00", + "maxDocumentExtractionSize": 256000000, + "maxDocumentContentCharactersToExtract": 4000000 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetServiceStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetServiceStatistics.json index 1a985a743025..65d2bdcebfc1 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetServiceStatistics.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetServiceStatistics.json @@ -1,44 +1,44 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "counters": { - "documentCount": { - "usage": 7093, - "quota": 10000 - }, - "indexesCount": { - "usage": 3, - "quota": 3 - }, - "indexersCount": { - "usage": 3, - "quota": 3 - }, - "dataSourcesCount": { - "usage": 1, - "quota": 3 - }, - "storageSize": { - "usage": 914529, - "quota": 52428800 - }, - "synonymMaps": { - "usage": 2, - "quota": 3 - } - }, - "limits": { - "maxFieldsPerIndex": 1000, - "maxFieldNestingDepthPerIndex": 10, - "maxComplexCollectionFieldsPerIndex": 100 - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "counters": { + "documentCount": { + "usage": 7093, + "quota": 10000 + }, + "indexesCount": { + "usage": 3, + "quota": 3 + }, + "indexersCount": { + "usage": 3, + "quota": 3 + }, + "dataSourcesCount": { + "usage": 1, + "quota": 3 + }, + "storageSize": { + "usage": 914529, + "quota": 52428800 + }, + "synonymMaps": { + "usage": 2, + "quota": 3 + } + }, + "limits": { + "maxFieldsPerIndex": 1000, + "maxFieldNestingDepthPerIndex": 10, + "maxComplexCollectionFieldsPerIndex": 100 } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetSkillset.json index eaa96e51146b..e552e1a0b9a3 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetSkillset.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetSkillset.json @@ -1,104 +1,104 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "skillsetName": "demoskillset", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "name": "demoskillset", - "description": "Extract entities, detect language and extract key-phrases", - "skills": [ - { - "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "organizations", - "targetName": "organizations" - } - ], - "categories": [ - "organization" - ], - "defaultLanguageCode": "en", - "minimumPrecision": 0.7 - }, - { - "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - } - ], - "outputs": [ - { - "name": "languageCode", - "targetName": "languageCode" - } - ] - }, - { - "@odata.type": "#Microsoft.Skills.Text.SplitSkill", - "description": null, - "context": null, - "inputs": [ - { - "name": "text", - "source": "/document/content" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "textItems", - "targetName": "pages" - } - ], - "defaultLanguageCode": null, - "textSplitMode": "pages", - "maximumPageLength": 4000 - }, - { - "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "description": null, - "context": "/document/pages/*", - "inputs": [ - { - "name": "text", - "source": "/document/pages/*" - }, - { - "name": "languageCode", - "source": "/document/languageCode" - } - ], - "outputs": [ - { - "name": "keyPhrases", - "targetName": "keyPhrases" - } - ], - "defaultLanguageCode": null, - "maxKeyPhraseCount": null - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "skillsetName": "demoskillset", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "name": "demoskillset", + "description": "Extract entities, detect language and extract key-phrases", + "skills": [ + { + "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "organizations", + "targetName": "organizations" + } + ], + "categories": [ + "organization" + ], + "defaultLanguageCode": "en", + "minimumPrecision": 0.7 + }, + { + "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + } + ], + "outputs": [ + { + "name": "languageCode", + "targetName": "languageCode" + } + ] + }, + { + "@odata.type": "#Microsoft.Skills.Text.SplitSkill", + "description": null, + "context": null, + "inputs": [ + { + "name": "text", + "source": "/document/content" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "textItems", + "targetName": "pages" + } + ], + "defaultLanguageCode": null, + "textSplitMode": "pages", + "maximumPageLength": 4000 + }, + { + "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", + "description": null, + "context": "/document/pages/*", + "inputs": [ + { + "name": "text", + "source": "/document/pages/*" + }, + { + "name": "languageCode", + "source": "/document/languageCode" + } + ], + "outputs": [ + { + "name": "keyPhrases", + "targetName": "keyPhrases" + } + ], + "defaultLanguageCode": null, + "maxKeyPhraseCount": null + } + ] + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetSynonymMap.json index 8b19433c1514..0a979bbe44e4 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetSynonymMap.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetSynonymMap.json @@ -1,17 +1,17 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "synonymMapName": "mysynonymmap", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "synonymMapName": "mysynonymmap", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceIndexAnalyze.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceIndexAnalyze.json index 65c0a84f6adb..9c73626d6245 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceIndexAnalyze.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceIndexAnalyze.json @@ -1,38 +1,38 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexName": "hotels", - "api-version": "2019-05-06", - "request": { - "text": "Text to analyze", - "analyzer": "standard.lucene" - } - }, - "responses": { - "200": { - "body": { - "tokens": [ - { - "token": "text", - "startOffset": 0, - "endOffset": 4, - "position": 0 - }, - { - "token": "to", - "startOffset": 5, - "endOffset": 7, - "position": 1 - }, - { - "token": "analyze", - "startOffset": 8, - "endOffset": 15, - "position": 2 - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexName": "hotels", + "api-version": "2019-05-06", + "request": { + "text": "Text to analyze", + "analyzer": "standard.lucene" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "tokens": [ + { + "token": "text", + "startOffset": 0, + "endOffset": 4, + "position": 0 + }, + { + "token": "to", + "startOffset": 5, + "endOffset": 7, + "position": 1 + }, + { + "token": "analyze", + "startOffset": 8, + "endOffset": 15, + "position": 2 + } + ] + } + } + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListDataSources.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListDataSources.json index ace244260b08..879b3262bfdc 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListDataSources.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListDataSources.json @@ -1,49 +1,49 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "mydocdbdatasource", - "description": "My Cosmos DB data source.", - "type": "cosmosdb", - "credentials": { - "connectionString": null - }, - "container": { - "name": "myDocDbCollectionId", - "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" - }, - "dataChangeDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "highWaterMarkColumnName": "_ts" - }, - "dataDeletionDetectionPolicy": { - "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "softDeleteColumnName": "isDeleted", - "softDeleteMarkerValue": "true" - } - }, - { - "name": "myblobdatasource", - "description": "My Azure Blob data source.", - "type": "azureblob", - "credentials": { - "connectionString": null - }, - "container": { - "name": "mycontainer" - }, - "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null - } - ] + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "mydocdbdatasource", + "description": "My Cosmos DB data source.", + "type": "cosmosdb", + "credentials": { + "connectionString": null + }, + "container": { + "name": "myDocDbCollectionId", + "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts" + }, + "dataChangeDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", + "highWaterMarkColumnName": "_ts" + }, + "dataDeletionDetectionPolicy": { + "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", + "softDeleteColumnName": "isDeleted", + "softDeleteMarkerValue": "true" } - } + }, + { + "name": "myblobdatasource", + "description": "My Azure Blob data source.", + "type": "azureblob", + "credentials": { + "connectionString": null + }, + "container": { + "name": "mycontainer" + }, + "dataChangeDetectionPolicy": null, + "dataDeletionDetectionPolicy": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListIndexers.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListIndexers.json index 47c683ac31bb..97f58acd24ad 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListIndexers.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListIndexers.json @@ -1,67 +1,67 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "myindexer", - "description": "a cool indexer", - "dataSourceName": "mydocdbdatasource", - "targetIndexName": "orders", - "schedule": { - "interval": "PT1H", - "startTime": "2015-01-01T00:00:00Z" - }, - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5 - }, - "fieldMappings": [], - "disabled": false - }, - { - "name": "myotherindexer", - "description": "another cool indexer", - "dataSourceName": "myblobdatasource", - "targetIndexName": "orders", - "parameters": { - "maxFailedItems": 10, - "maxFailedItemsPerBatch": 5, - "batchSize": 15 - }, - "fieldMappings": [ - { - "sourceFieldName": "PersonName", - "targetFieldName": "FirstName", - "mappingFunction": { - "name": "extractTokenAtPosition", - "parameters": { - "delimiter": " ", - "position": 0 - } - } - }, - { - "sourceFieldName": "PersonName", - "targetFieldName": "LastName", - "mappingFunction": { - "name": "extractTokenAtPosition", - "parameters": { - "delimiter": " ", - "position": 1 - } - } - } - ], - "disabled": false - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "myindexer", + "description": "a cool indexer", + "dataSourceName": "mydocdbdatasource", + "targetIndexName": "orders", + "schedule": { + "interval": "PT1H", + "startTime": "2015-01-01T00:00:00Z" + }, + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5 + }, + "fieldMappings": [], + "disabled": false + }, + { + "name": "myotherindexer", + "description": "another cool indexer", + "dataSourceName": "myblobdatasource", + "targetIndexName": "orders", + "parameters": { + "maxFailedItems": 10, + "maxFailedItemsPerBatch": 5, + "batchSize": 15 + }, + "fieldMappings": [ + { + "sourceFieldName": "PersonName", + "targetFieldName": "FirstName", + "mappingFunction": { + "name": "extractTokenAtPosition", + "parameters": { + "delimiter": " ", + "position": 0 + } + } + }, + { + "sourceFieldName": "PersonName", + "targetFieldName": "LastName", + "mappingFunction": { + "name": "extractTokenAtPosition", + "parameters": { + "delimiter": " ", + "position": 1 + } + } + } + ], + "disabled": false + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListIndexes.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListIndexes.json index 989a900f9b50..fc3304458b65 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListIndexes.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListIndexes.json @@ -1,281 +1,281 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "$select": "name", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "hotels", - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "baseRate", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description_fr", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "fr.lucene", - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "category", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "tagsAnalyzer", - "synonymMaps": [] - }, - { - "name": "parkingIncluded", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "smokingAllowed", - "type": "Edm.Boolean", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "lastRenovationDate", - "type": "Edm.DateTimeOffset", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "rating", - "type": "Edm.Int32", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "location", - "type": "Edm.GeographyPoint", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [ - { - "name": "geo", - "text": { - "weights": { - "hotelName": 5 - } - }, - "functions": [ - { - "type": "distance", - "boost": 5, - "fieldName": "location", - "interpolation": "logarithmic", - "distance": { - "referencePointParameter": "currentLocation", - "boostingDistance": 10 - } - } - ] - } - ], - "defaultScoringProfile": "geo", - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName" - ] - } - ], - "analyzers": [ - { - "name": "tagsAnalyzer", - "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", - "charFilters": [ - "html_strip" - ], - "tokenizer": "standard_v2" - } - ], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": { - "allowedOrigins": [ - "tempuri.org" - ], - "maxAgeInSeconds": 60 - } - }, - { - "name": "testindex", - "fields": [ - { - "name": "id", - "type": "Edm.String", - "searchable": false, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "hidden", - "type": "Edm.Double", - "searchable": false, - "filterable": true, - "retrievable": false, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ], - "scoringProfiles": [], - "defaultScoringProfile": null, - "suggesters": [], - "analyzers": [], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "corsOptions": null + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "$select": "name", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "hotels", + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "baseRate", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description_fr", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "fr.lucene", + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "category", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "tagsAnalyzer", + "synonymMaps": [] + }, + { + "name": "parkingIncluded", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "smokingAllowed", + "type": "Edm.Boolean", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "lastRenovationDate", + "type": "Edm.DateTimeOffset", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "rating", + "type": "Edm.Int32", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "location", + "type": "Edm.GeographyPoint", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [ + { + "name": "geo", + "text": { + "weights": { + "hotelName": 5 + } + }, + "functions": [ + { + "type": "distance", + "boost": 5, + "fieldName": "location", + "interpolation": "logarithmic", + "distance": { + "referencePointParameter": "currentLocation", + "boostingDistance": 10 } + } ] + } + ], + "defaultScoringProfile": "geo", + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName" + ] + } + ], + "analyzers": [ + { + "name": "tagsAnalyzer", + "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", + "charFilters": [ + "html_strip" + ], + "tokenizer": "standard_v2" + } + ], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": { + "allowedOrigins": [ + "tempuri.org" + ], + "maxAgeInSeconds": 60 } - } + }, + { + "name": "testindex", + "fields": [ + { + "name": "id", + "type": "Edm.String", + "searchable": false, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "hidden", + "type": "Edm.Double", + "searchable": false, + "filterable": true, + "retrievable": false, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ], + "scoringProfiles": [], + "defaultScoringProfile": null, + "suggesters": [], + "analyzers": [], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "corsOptions": null + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListSkillsets.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListSkillsets.json index c34f254df26f..03705fc89a51 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListSkillsets.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListSkillsets.json @@ -104,4 +104,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListSynonymMaps.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListSynonymMaps.json index 2e35aa4343a5..bdc56fcf80fc 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListSynonymMaps.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceListSynonymMaps.json @@ -1,25 +1,25 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "api-version": "2019-05-06" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "mysynonymmap", - "format": "solr", - "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" - }, - { - "name": "myothersynonymmap", - "format": "solr", - "synonyms": "couch, sofa, chesterfield\npop, soda\ntoque, hat" - } - ] - } - } + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "api-version": "2019-05-06" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "mysynonymmap", + "format": "solr", + "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA" + }, + { + "name": "myothersynonymmap", + "format": "solr", + "synonyms": "couch, sofa, chesterfield\npop, soda\ntoque, hat" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceResetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceResetIndexer.json index afdef3ddb709..4a3bd94c38ca 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceResetIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceResetIndexer.json @@ -1,11 +1,11 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2019-05-06" - }, - "responses": { - "204": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2019-05-06" + }, + "responses": { + "204": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceRunIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceRunIndexer.json index 8522aecdcf49..cc60b255ee23 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceRunIndexer.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceRunIndexer.json @@ -1,11 +1,11 @@ { - "parameters": { - "searchServiceName": "myservice", - "searchDnsSuffix": "search.windows.net", - "indexerName": "myindexer", - "api-version": "2019-05-06" - }, - "responses": { - "202": {} - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "myservice", + "searchDnsSuffix": "search.windows.net", + "indexerName": "myindexer", + "api-version": "2019-05-06" + }, + "responses": { + "202": {} + } +} diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/searchservice.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/searchservice.json index 9ca1f30613d2..a22827cf6516 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/searchservice.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/searchservice.json @@ -3890,7 +3890,7 @@ }, "description": "History of the recent indexer executions, sorted in reverse chronological order." }, - "limits" : { + "limits": { "$ref": "#/definitions/IndexerLimits", "readOnly": true, "description": "The execution limits for the indexer." @@ -5386,4 +5386,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCheckNameAvailability.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCheckNameAvailability.json index aafaa0f8a8e8..5af906830b62 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCheckNameAvailability.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCheckNameAvailability.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2015-08-19", - "subscriptionId": "subid", - "checkNameAvailabilityInput": { - "name": "mysearchservice", - "type": "searchServices" - } - }, - "responses": { - "200": { - "body": { - "nameAvailable": false, - "reason": "AlreadyExists", - "message": "" - } - } + "parameters": { + "api-version": "2015-08-19", + "subscriptionId": "subid", + "checkNameAvailabilityInput": { + "name": "mysearchservice", + "type": "searchServices" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": false, + "reason": "AlreadyExists", + "message": "" + } + } + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateOrUpdateService.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateOrUpdateService.json index 8a0a9fd5a44e..006139634d94 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateOrUpdateService.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateOrUpdateService.json @@ -1,68 +1,68 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", - "api-version": "2015-08-19", - "subscriptionId": "subid", - "service": { - "location": "westus", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "standard" - }, - "properties": { - "replicaCount": 3, - "partitionCount": 1, - "hostingMode": "default" - } + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "api-version": "2015-08-19", + "subscriptionId": "subid", + "service": { + "location": "westus", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "standard" + }, + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "hostingMode": "default" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", + "name": "mysearchservice", + "location": "westus", + "type": "Microsoft.Search/searchServices", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "standard" + }, + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "status": "provisioning", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "provisioning" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", - "name": "mysearchservice", - "location": "westus", - "type": "Microsoft.Search/searchServices", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "standard" - }, - "properties":{ - "replicaCount": 3, - "partitionCount": 1, - "status": "provisioning", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "provisioning" - } - } + "201": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", + "name": "mysearchservice", + "location": "westus", + "type": "Microsoft.Search/searchServices", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "standard" }, - "201": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", - "name": "mysearchservice", - "location": "westus", - "type": "Microsoft.Search/searchServices", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "standard" - }, - "properties":{ - "replicaCount": 3, - "partitionCount": 1, - "status": "provisioning", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "provisioning" - } - } + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "status": "provisioning", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "provisioning" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateOrUpdateServiceWithIdentity.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateOrUpdateServiceWithIdentity.json index 4f7cdf3f1f60..1b83f8f88883 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateOrUpdateServiceWithIdentity.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateOrUpdateServiceWithIdentity.json @@ -1,81 +1,81 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", - "api-version": "2015-08-19", - "subscriptionId": "subid", - "service": { - "location": "westus", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "standard" - }, - "properties": { - "replicaCount": 3, - "partitionCount": 1, - "hostingMode": "default" - }, - "identity": { - "type": "SystemAssigned" - } + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "api-version": "2015-08-19", + "subscriptionId": "subid", + "service": { + "location": "westus", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "standard" + }, + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "hostingMode": "default" + }, + "identity": { + "type": "SystemAssigned" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", + "name": "mysearchservice", + "location": "westus", + "type": "Microsoft.Search/searchServices", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "standard" + }, + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "status": "provisioning", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "provisioning" + }, + "identity": { + "type": "SystemAssigned", + "principalId": "9d1e1f18-2122-4988-a11c-878782e40a5c", + "tenantId": "f686d426-8d16-42db-81b7-ab578e110ccd" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", - "name": "mysearchservice", - "location": "westus", - "type": "Microsoft.Search/searchServices", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "standard" - }, - "properties":{ - "replicaCount": 3, - "partitionCount": 1, - "status": "provisioning", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "provisioning" - }, - "identity": { - "type": "SystemAssigned", - "principalId": "9d1e1f18-2122-4988-a11c-878782e40a5c", - "tenantId": "f686d426-8d16-42db-81b7-ab578e110ccd" - } - } + "201": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", + "name": "mysearchservice", + "location": "westus", + "type": "Microsoft.Search/searchServices", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "standard" + }, + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "status": "provisioning", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "provisioning" }, - "201": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", - "name": "mysearchservice", - "location": "westus", - "type": "Microsoft.Search/searchServices", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "standard" - }, - "properties":{ - "replicaCount": 3, - "partitionCount": 1, - "status": "provisioning", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "provisioning" - }, - "identity": { - "type": "SystemAssigned", - "principalId": "9d1e1f18-2122-4988-a11c-878782e40a5c", - "tenantId": "f686d426-8d16-42db-81b7-ab578e110ccd" - } - } + "identity": { + "type": "SystemAssigned", + "principalId": "9d1e1f18-2122-4988-a11c-878782e40a5c", + "tenantId": "f686d426-8d16-42db-81b7-ab578e110ccd" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateQueryKey.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateQueryKey.json index b010a15e91cc..47796cfe3f38 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateQueryKey.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchCreateQueryKey.json @@ -1,17 +1,17 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "name": "Query key for browser-based clients", + "api-version": "2015-08-19", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { "name": "Query key for browser-based clients", - "api-version": "2015-08-19", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "name": "Query key for browser-based clients", - "key": "" - } - } + "key": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchDeleteQueryKey.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchDeleteQueryKey.json index 3416a0f45951..eb0a586d30a9 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchDeleteQueryKey.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchDeleteQueryKey.json @@ -1,14 +1,14 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", - "key": "", - "api-version": "2015-08-19", - "subscriptionId": "subid" - }, - "responses": { - "200": { }, - "204": { }, - "404": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "key": "", + "api-version": "2015-08-19", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "204": {}, + "404": {} + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchDeleteService.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchDeleteService.json index 585c69cdd512..97fda9c4a806 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchDeleteService.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchDeleteService.json @@ -1,13 +1,13 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", - "api-version": "2015-08-19", - "subscriptionId": "subid" - }, - "responses": { - "200": { }, - "204": { }, - "404": { } - } -} \ No newline at end of file + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "api-version": "2015-08-19", + "subscriptionId": "subid" + }, + "responses": { + "200": {}, + "204": {}, + "404": {} + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchGetAdminKeys.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchGetAdminKeys.json index e2f7104c4cee..7ed249fd4fcf 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchGetAdminKeys.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchGetAdminKeys.json @@ -1,16 +1,16 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", - "api-version": "2015-08-19", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "primaryKey": "", - "secondaryKey": "" - } - } + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "api-version": "2015-08-19", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "primaryKey": "", + "secondaryKey": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchGetService.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchGetService.json index d47a0b32f0ed..bd683a478b9e 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchGetService.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchGetService.json @@ -1,32 +1,32 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", - "api-version": "2015-08-19", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", - "name": "mysearchservice", - "location": "westus", - "type": "Microsoft.Search/searchServices", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "standard" - }, - "properties":{ - "replicaCount": 3, - "partitionCount": 1, - "status": "running", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "succeeded" - } - } + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "api-version": "2015-08-19", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", + "name": "mysearchservice", + "location": "westus", + "type": "Microsoft.Search/searchServices", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "standard" + }, + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "status": "running", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "succeeded" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListQueryKeysBySearchService.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListQueryKeysBySearchService.json index 8b04d5f01bcb..462b6103009c 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListQueryKeysBySearchService.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListQueryKeysBySearchService.json @@ -1,24 +1,24 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", - "api-version": "2015-08-19", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "name": "Query key for browser-based clients", - "key": "" - }, - { - "name": "Query key for mobile clients", - "key": "" - } - ] - } - } + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "api-version": "2015-08-19", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Query key for browser-based clients", + "key": "" + }, + { + "name": "Query key for mobile clients", + "key": "" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListServicesByResourceGroup.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListServicesByResourceGroup.json index 0c494d8e6ab1..a2fd0f5c0c91 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListServicesByResourceGroup.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListServicesByResourceGroup.json @@ -1,55 +1,55 @@ { - "parameters": { - "resourceGroupName": "rg1", - "api-version": "2015-08-19", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", - "name": "mysearchservice", - "location": "westus", - "type": "Microsoft.Search/searchServices", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "standard" - }, - "properties":{ - "replicaCount": 3, - "partitionCount": 1, - "status": "running", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "succeeded" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice2", - "name": "mysearchservice2", - "location": "eastus", - "type": "Microsoft.Search/searchServices", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "basic" - }, - "properties":{ - "replicaCount": 1, - "partitionCount": 1, - "status": "running", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "succeeded" - } - } - ] + "parameters": { + "resourceGroupName": "rg1", + "api-version": "2015-08-19", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", + "name": "mysearchservice", + "location": "westus", + "type": "Microsoft.Search/searchServices", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "standard" + }, + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "status": "running", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "succeeded" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice2", + "name": "mysearchservice2", + "location": "eastus", + "type": "Microsoft.Search/searchServices", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "basic" + }, + "properties": { + "replicaCount": 1, + "partitionCount": 1, + "status": "running", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "succeeded" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListServicesBySubscription.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListServicesBySubscription.json index 8dd1f262bfbe..61dded18c054 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListServicesBySubscription.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchListServicesBySubscription.json @@ -1,54 +1,54 @@ { - "parameters": { - "api-version": "2015-08-19", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", - "name": "mysearchservice", - "location": "westus", - "type": "Microsoft.Search/searchServices", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "standard" - }, - "properties":{ - "replicaCount": 3, - "partitionCount": 1, - "status": "running", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "succeeded" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Search/searchServices/mysearchservice2", - "name": "mysearchservice2", - "location": "eastus", - "type": "Microsoft.Search/searchServices", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "basic" - }, - "properties":{ - "replicaCount": 1, - "partitionCount": 1, - "status": "running", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "succeeded" - } - } - ] + "parameters": { + "api-version": "2015-08-19", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", + "name": "mysearchservice", + "location": "westus", + "type": "Microsoft.Search/searchServices", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "standard" + }, + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "status": "running", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "succeeded" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Search/searchServices/mysearchservice2", + "name": "mysearchservice2", + "location": "eastus", + "type": "Microsoft.Search/searchServices", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "basic" + }, + "properties": { + "replicaCount": 1, + "partitionCount": 1, + "status": "running", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "succeeded" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchRegenerateAdminKey.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchRegenerateAdminKey.json index c7fccba9703e..e9a2869e751a 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchRegenerateAdminKey.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchRegenerateAdminKey.json @@ -1,17 +1,17 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", - "keyKind": "primary", - "api-version": "2015-08-19", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "primaryKey": "", - "secondaryKey": "" - } - } + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "keyKind": "primary", + "api-version": "2015-08-19", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "primaryKey": "", + "secondaryKey": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchUpdateService.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchUpdateService.json index 28492fba6b7f..9705dd30f56b 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchUpdateService.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchUpdateService.json @@ -1,41 +1,41 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", - "api-version": "2015-08-19", - "subscriptionId": "subid", - "service": { - "tags": { - "app-name": "My e-commerce app", - "new-tag": "Adding a new tag" - }, - "properties": { - "replicaCount": 2 - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", - "name": "mysearchservice", - "location": "westus", - "type": "Microsoft.Search/searchServices", - "tags": { - "app-name": "My e-commerce app" - }, - "sku": { - "name": "standard" - }, - "properties":{ - "replicaCount": 3, - "partitionCount": 1, - "status": "provisioning", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "provisioning" - } - } + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "api-version": "2015-08-19", + "subscriptionId": "subid", + "service": { + "tags": { + "app-name": "My e-commerce app", + "new-tag": "Adding a new tag" + }, + "properties": { + "replicaCount": 2 + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", + "name": "mysearchservice", + "location": "westus", + "type": "Microsoft.Search/searchServices", + "tags": { + "app-name": "My e-commerce app" + }, + "sku": { + "name": "standard" + }, + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "status": "provisioning", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "provisioning" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchUpdateServiceToRemoveIdentity.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchUpdateServiceToRemoveIdentity.json index abc3c96c5c68..2453cc7eb6dc 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchUpdateServiceToRemoveIdentity.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/examples/SearchUpdateServiceToRemoveIdentity.json @@ -1,42 +1,41 @@ { - "parameters": { - "searchServiceName": "mysearchservice", - "resourceGroupName": "rg1", - "api-version": "2015-08-19", - "subscriptionId": "subid", - "service": { - "sku": { - "name": "standard" - }, - "identity": { - "type": "None" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", - "name": "mysearchservice", - "location": "westus", - "type": "Microsoft.Search/searchServices", - "tags": { - }, - "sku": { - "name": "standard" - }, - "properties":{ - "replicaCount": 3, - "partitionCount": 1, - "status": "running", - "statusDetails": "", - "hostingMode": "default", - "provisioningState": "succeeded" - }, - "identity": { - "type": "None" - } - } + "parameters": { + "searchServiceName": "mysearchservice", + "resourceGroupName": "rg1", + "api-version": "2015-08-19", + "subscriptionId": "subid", + "service": { + "sku": { + "name": "standard" + }, + "identity": { + "type": "None" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", + "name": "mysearchservice", + "location": "westus", + "type": "Microsoft.Search/searchServices", + "tags": {}, + "sku": { + "name": "standard" + }, + "properties": { + "replicaCount": 3, + "partitionCount": 1, + "status": "running", + "statusDetails": "", + "hostingMode": "default", + "provisioningState": "succeeded" + }, + "identity": { + "type": "None" } + } } -} \ No newline at end of file + } +} diff --git a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/search.json b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/search.json index 7c6f34c61b41..a31580acc364 100644 --- a/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/search.json +++ b/specification/search/resource-manager/Microsoft.Search/stable/2015-08-19/search.json @@ -66,7 +66,9 @@ ], "operationId": "AdminKeys_Get", "x-ms-examples": { - "SearchGetAdminKeys": { "$ref": "./examples/SearchGetAdminKeys.json" } + "SearchGetAdminKeys": { + "$ref": "./examples/SearchGetAdminKeys.json" + } }, "description": "Gets the primary and secondary admin API keys for the specified Azure Search service.", "externalDocs": { @@ -112,7 +114,9 @@ ], "operationId": "AdminKeys_Regenerate", "x-ms-examples": { - "SearchRegenerateAdminKey": { "$ref": "./examples/SearchRegenerateAdminKey.json" } + "SearchRegenerateAdminKey": { + "$ref": "./examples/SearchRegenerateAdminKey.json" + } }, "description": "Regenerates either the primary or secondary admin API key. You can only regenerate one key at a time.", "externalDocs": { @@ -173,7 +177,9 @@ ], "operationId": "QueryKeys_Create", "x-ms-examples": { - "SearchCreateQueryKey": { "$ref": "./examples/SearchCreateQueryKey.json" } + "SearchCreateQueryKey": { + "$ref": "./examples/SearchCreateQueryKey.json" + } }, "description": "Generates a new query key for the specified Search service. You can create up to 50 query keys per service.", "externalDocs": { @@ -229,7 +235,9 @@ }, "operationId": "QueryKeys_ListBySearchService", "x-ms-examples": { - "SearchListQueryKeysBySearchService": { "$ref": "./examples/SearchListQueryKeysBySearchService.json" } + "SearchListQueryKeysBySearchService": { + "$ref": "./examples/SearchListQueryKeysBySearchService.json" + } }, "description": "Returns the list of query API keys for the given Azure Search service.", "externalDocs": { @@ -275,7 +283,9 @@ ], "operationId": "QueryKeys_Delete", "x-ms-examples": { - "SearchDeleteQueryKey": { "$ref": "./examples/SearchDeleteQueryKey.json" } + "SearchDeleteQueryKey": { + "$ref": "./examples/SearchDeleteQueryKey.json" + } }, "description": "Deletes the specified query key. Unlike admin keys, query keys are not regenerated. The process for regenerating a query key is to delete and then recreate it.", "externalDocs": { @@ -331,8 +341,12 @@ ], "operationId": "Services_CreateOrUpdate", "x-ms-examples": { - "SearchCreateOrUpdateService": { "$ref": "./examples/SearchCreateOrUpdateService.json" }, - "SearchCreateOrUpdateServiceWithIdentity": { "$ref": "./examples/SearchCreateOrUpdateServiceWithIdentity.json" } + "SearchCreateOrUpdateService": { + "$ref": "./examples/SearchCreateOrUpdateService.json" + }, + "SearchCreateOrUpdateServiceWithIdentity": { + "$ref": "./examples/SearchCreateOrUpdateServiceWithIdentity.json" + } }, "description": "Creates or updates a Search service in the given resource group. If the Search service already exists, all properties will be updated with the given values.", "externalDocs": { @@ -396,8 +410,12 @@ ], "operationId": "Services_Update", "x-ms-examples": { - "SearchUpdateService": { "$ref": "./examples/SearchUpdateService.json" }, - "SearchUpdateServiceToRemoveIdentity": { "$ref": "./examples/SearchUpdateServiceToRemoveIdentity.json" } + "SearchUpdateService": { + "$ref": "./examples/SearchUpdateService.json" + }, + "SearchUpdateServiceToRemoveIdentity": { + "$ref": "./examples/SearchUpdateServiceToRemoveIdentity.json" + } }, "description": "Updates an existing Search service in the given resource group.", "externalDocs": { @@ -454,7 +472,9 @@ ], "operationId": "Services_Get", "x-ms-examples": { - "SearchGetService": { "$ref": "./examples/SearchGetService.json" } + "SearchGetService": { + "$ref": "./examples/SearchGetService.json" + } }, "description": "Gets the Search service with the given name in the given resource group.", "externalDocs": { @@ -498,7 +518,9 @@ ], "operationId": "Services_Delete", "x-ms-examples": { - "SearchDeleteService": { "$ref": "./examples/SearchDeleteService.json" } + "SearchDeleteService": { + "$ref": "./examples/SearchDeleteService.json" + } }, "description": "Deletes a Search service in the given resource group, along with its associated resources.", "externalDocs": { @@ -550,7 +572,9 @@ }, "operationId": "Services_ListByResourceGroup", "x-ms-examples": { - "SearchListServicesByResourceGroup": { "$ref": "./examples/SearchListServicesByResourceGroup.json" } + "SearchListServicesByResourceGroup": { + "$ref": "./examples/SearchListServicesByResourceGroup.json" + } }, "description": "Gets a list of all Search services in the given resource group.", "externalDocs": { @@ -596,7 +620,9 @@ }, "operationId": "Services_ListBySubscription", "x-ms-examples": { - "SearchListServicesBySubscription": { "$ref": "./examples/SearchListServicesBySubscription.json" } + "SearchListServicesBySubscription": { + "$ref": "./examples/SearchListServicesBySubscription.json" + } }, "description": "Gets a list of all Search services in the given subscription.", "externalDocs": { @@ -640,7 +666,9 @@ }, "operationId": "Services_CheckNameAvailability", "x-ms-examples": { - "SearchCheckNameAvailability": { "$ref": "./examples/SearchCheckNameAvailability.json" } + "SearchCheckNameAvailability": { + "$ref": "./examples/SearchCheckNameAvailability.json" + } }, "parameters": [ { @@ -805,7 +833,7 @@ "url": "https://azure.microsoft.com/documentation/articles/search-sku-tier/" } }, - "SearchService" : { + "SearchService": { "properties": { "properties": { "x-ms-client-flatten": true, @@ -972,30 +1000,30 @@ "x-ms-external": true }, "CloudErrorBody": { - "type": "object", - "description": "Describes a particular API error with an error code and a message.", - "properties": { - "code": { - "type": "string", - "description": "An error code that describes the error condition more precisely than an HTTP status code. Can be used to programmatically handle specific error cases." - }, - "message": { - "type": "string", - "description": "A message that describes the error in detail and provides debugging information." - }, - "target": { - "type": "string", - "description": "The target of the particular error (for example, the name of the property in error)." - }, - "details": { - "type": "array", - "items": { - "$ref": "#/definitions/CloudErrorBody" - }, - "description": "Contains nested errors that are related to this error." - } + "type": "object", + "description": "Describes a particular API error with an error code and a message.", + "properties": { + "code": { + "type": "string", + "description": "An error code that describes the error condition more precisely than an HTTP status code. Can be used to programmatically handle specific error cases." }, - "x-ms-external": true + "message": { + "type": "string", + "description": "A message that describes the error in detail and provides debugging information." + }, + "target": { + "type": "string", + "description": "The target of the particular error (for example, the name of the property in error)." + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/CloudErrorBody" + }, + "description": "Contains nested errors that are related to this error." + } + }, + "x-ms-external": true }, "Operation": { "description": "Describes a REST API operation.", @@ -1109,7 +1137,9 @@ "format": "uuid", "description": "A client-generated GUID value that identifies this request. If specified, this will be included in response information as a way to track the request.", "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { "name": "search-management-request-options" }, + "x-ms-parameter-grouping": { + "name": "search-management-request-options" + }, "x-ms-parameter-location": "method" }, "SubscriptionIdParameter": { diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/adaptiveNetworkHardenings.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/adaptiveNetworkHardenings.json index 8e8296514853..2b5bf8de610f 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/adaptiveNetworkHardenings.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/adaptiveNetworkHardenings.json @@ -1,412 +1,412 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2015-06-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2015-06-01-preview" + }, + "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}/resourceGroups/{resourceGroupName}/providers/{resourceNamespace}/{resourceType}/{resourceName}/providers/Microsoft.Security/adaptiveNetworkHardenings": { + "get": { + "x-ms-examples": { + "List Adaptive Network Hardenings resources of an extended resource": { + "$ref": "./examples/AdaptiveNetworkHardenings/ListByExtendedResourceAdaptiveNetworkHardenings_example.json" + } + }, + "description": "Gets a list of Adaptive Network Hardenings resources in scope of an extended resource.", + "tags": [ + "AdaptiveNetworkHardenings" + ], + "operationId": "AdaptiveNetworkHardenings_ListByExtendedResource", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "name": "resourceNamespace", + "in": "path", + "description": "The Namespace of the resource.", + "required": true, + "type": "string" + }, + { + "name": "resourceType", + "in": "path", + "description": "The type of the resource.", + "required": true, + "type": "string" + }, + { + "name": "resourceName", + "in": "path", + "description": "Name of the resource.", + "required": true, + "type": "string" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AdaptiveNetworkHardeningsList" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceNamespace}/{resourceType}/{resourceName}/providers/Microsoft.Security/adaptiveNetworkHardenings": { - "get": { - "x-ms-examples": { - "List Adaptive Network Hardenings resources of an extended resource": { - "$ref": "./examples/AdaptiveNetworkHardenings/ListByExtendedResourceAdaptiveNetworkHardenings_example.json" - } - }, - "description": "Gets a list of Adaptive Network Hardenings resources in scope of an extended resource.", - "tags": [ - "AdaptiveNetworkHardenings" - ], - "operationId": "AdaptiveNetworkHardenings_ListByExtendedResource", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "name": "resourceNamespace", - "in": "path", - "description": "The Namespace of the resource.", - "required": true, - "type": "string" - }, - { - "name": "resourceType", - "in": "path", - "description": "The type of the resource.", - "required": true, - "type": "string" - }, - { - "name": "resourceName", - "in": "path", - "description": "Name of the resource.", - "required": true, - "type": "string" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AdaptiveNetworkHardeningsList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceNamespace}/{resourceType}/{resourceName}/providers/Microsoft.Security/adaptiveNetworkHardenings/{adaptiveNetworkHardeningResourceName}": { + "get": { + "x-ms-examples": { + "Get a single Adaptive Network Hardening resource": { + "$ref": "./examples/AdaptiveNetworkHardenings/GetAdaptiveNetworkHardening_example.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceNamespace}/{resourceType}/{resourceName}/providers/Microsoft.Security/adaptiveNetworkHardenings/{adaptiveNetworkHardeningResourceName}": { - "get": { - "x-ms-examples": { - "Get a single Adaptive Network Hardening resource": { - "$ref": "./examples/AdaptiveNetworkHardenings/GetAdaptiveNetworkHardening_example.json" - } - }, - "tags": [ - "AdaptiveNetworkHardenings" - ], - "description": "Gets a single Adaptive Network Hardening resource", - "operationId": "AdaptiveNetworkHardenings_Get", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "name": "resourceNamespace", - "in": "path", - "description": "The Namespace of the resource.", - "required": true, - "type": "string" - }, - { - "name": "resourceType", - "in": "path", - "description": "The type of the resource.", - "required": true, - "type": "string" - }, - { - "name": "resourceName", - "in": "path", - "description": "Name of the resource.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/AdaptiveNetworkHardeningResourceName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AdaptiveNetworkHardening" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "tags": [ + "AdaptiveNetworkHardenings" + ], + "description": "Gets a single Adaptive Network Hardening resource", + "operationId": "AdaptiveNetworkHardenings_Get", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "name": "resourceNamespace", + "in": "path", + "description": "The Namespace of the resource.", + "required": true, + "type": "string" + }, + { + "name": "resourceType", + "in": "path", + "description": "The type of the resource.", + "required": true, + "type": "string" + }, + { + "name": "resourceName", + "in": "path", + "description": "Name of the resource.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/AdaptiveNetworkHardeningResourceName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AdaptiveNetworkHardening" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceNamespace}/{resourceType}/{resourceName}/providers/Microsoft.Security/adaptiveNetworkHardenings/{adaptiveNetworkHardeningResourceName}/{adaptiveNetworkHardeningEnforceAction}": { - "post": { - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Enforces the given rules on the NSG(s) listed in the request": { - "$ref": "./examples/AdaptiveNetworkHardenings/EnforceAdaptiveNetworkHardeningRules_example.json" - } - }, - "tags": [ - "AdaptiveNetworkHardenings" - ], - "description": "Enforces the given rules on the NSG(s) listed in the request", - "operationId": "AdaptiveNetworkHardenings_Enforce", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "name": "resourceNamespace", - "in": "path", - "description": "The Namespace of the resource.", - "required": true, - "type": "string" - }, - { - "name": "resourceType", - "in": "path", - "description": "The type of the resource.", - "required": true, - "type": "string" - }, - { - "name": "resourceName", - "in": "path", - "description": "Name of the resource.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/AdaptiveNetworkHardeningResourceName" - }, - { - "$ref": "#/parameters/AdaptiveNetworkHardeningEnforceAction" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/AdaptiveNetworkHardeningEnforceRequest" - } - ], - "responses": { - "200": { - "description": "OK." - }, - "202": { - "description": "Accepted" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } } + } }, - "definitions": { - "PortNumber": { - "type": "integer", - "minimum": 0, - "maximum": 65535 + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceNamespace}/{resourceType}/{resourceName}/providers/Microsoft.Security/adaptiveNetworkHardenings/{adaptiveNetworkHardeningResourceName}/{adaptiveNetworkHardeningEnforceAction}": { + "post": { + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Enforces the given rules on the NSG(s) listed in the request": { + "$ref": "./examples/AdaptiveNetworkHardenings/EnforceAdaptiveNetworkHardeningRules_example.json" + } }, - "Rule": { - "description": "Describes remote addresses that is recommended to communicate with the Azure resource on some (Protocol, Port, Direction). All other remote addresses are recommended to be blocked", - "properties": { - "name": { - "description": "The name of the rule", - "type": "string" - }, - "direction": { - "description": "The rule's direction", - "type": "string", - "enum": [ - "Inbound", - "Outbound" - ], - "x-ms-enum": { - "name": "direction", - "modelAsString": true - } - }, - "destinationPort": { - "description": "The rule's destination port", - "$ref": "#/definitions/PortNumber" - }, - "protocols": { - "description": "The rule's transport protocols", - "type": "array", - "items": { - "type": "string", - "enum": [ - "TCP", - "UDP" - ], - "x-ms-enum": { - "name": "transportProtocol", - "modelAsString": true - } - } - }, - "ipAddresses": { - "description": "The remote IP addresses that should be able to communicate with the Azure resource on the rule's destination port and protocol", - "type": "array", - "items": { - "type": "string" - } - } + "tags": [ + "AdaptiveNetworkHardenings" + ], + "description": "Enforces the given rules on the NSG(s) listed in the request", + "operationId": "AdaptiveNetworkHardenings_Enforce", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "name": "resourceNamespace", + "in": "path", + "description": "The Namespace of the resource.", + "required": true, + "type": "string" + }, + { + "name": "resourceType", + "in": "path", + "description": "The type of the resource.", + "required": true, + "type": "string" + }, + { + "name": "resourceName", + "in": "path", + "description": "Name of the resource.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/AdaptiveNetworkHardeningResourceName" + }, + { + "$ref": "#/parameters/AdaptiveNetworkHardeningEnforceAction" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/AdaptiveNetworkHardeningEnforceRequest" + } + ], + "responses": { + "200": { + "description": "OK." + }, + "202": { + "description": "Accepted" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + } + } + } + }, + "definitions": { + "PortNumber": { + "type": "integer", + "minimum": 0, + "maximum": 65535 + }, + "Rule": { + "description": "Describes remote addresses that is recommended to communicate with the Azure resource on some (Protocol, Port, Direction). All other remote addresses are recommended to be blocked", + "properties": { + "name": { + "description": "The name of the rule", + "type": "string" }, - "EffectiveNetworkSecurityGroups": { - "description": "Describes the Network Security Groups effective on a network interface", - "properties": { - "networkInterface": { - "description": "The Azure resource ID of the network interface", - "type": "string" - }, - "networkSecurityGroups": { - "description": "The Network Security Groups effective on the network interface", - "type": "array", - "items": { - "type": "string" - } - } - } + "direction": { + "description": "The rule's direction", + "type": "string", + "enum": [ + "Inbound", + "Outbound" + ], + "x-ms-enum": { + "name": "direction", + "modelAsString": true + } + }, + "destinationPort": { + "description": "The rule's destination port", + "$ref": "#/definitions/PortNumber" }, - "AdaptiveNetworkHardeningProperties": { - "description": "Adaptive Network Hardening resource properties", - "properties": { - "rules": { - "description": "The security rules which are recommended to be effective on the VM", - "type": "array", - "items": { - "$ref": "#/definitions/Rule" - } - }, - "rulesCalculationTime": { - "type": "string", - "format": "date-time", - "description": "The UTC time on which the rules were calculated" - }, - "effectiveNetworkSecurityGroups": { - "description": "The Network Security Groups effective on the network interfaces of the protected resource", - "type": "array", - "items": { - "$ref": "#/definitions/EffectiveNetworkSecurityGroups" - } - } + "protocols": { + "description": "The rule's transport protocols", + "type": "array", + "items": { + "type": "string", + "enum": [ + "TCP", + "UDP" + ], + "x-ms-enum": { + "name": "transportProtocol", + "modelAsString": true } + } }, - "AdaptiveNetworkHardening": { - "description": "The resource whose properties describes the Adaptive Network Hardening settings for some Azure resource", - "properties": { - "properties": { - "description": "Properties of the Adaptive Network Hardening resource", - "x-ms-client-flatten": true, - "$ref": "#/definitions/AdaptiveNetworkHardeningProperties" - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/Resource" - } - ] + "ipAddresses": { + "description": "The remote IP addresses that should be able to communicate with the Azure resource on the rule's destination port and protocol", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "EffectiveNetworkSecurityGroups": { + "description": "Describes the Network Security Groups effective on a network interface", + "properties": { + "networkInterface": { + "description": "The Azure resource ID of the network interface", + "type": "string" }, - "AdaptiveNetworkHardeningsList": { - "description": "Response for ListAdaptiveNetworkHardenings API service call", - "properties": { - "value": { - "description": "A list of Adaptive Network Hardenings resources", - "type": "array", - "items": { - "$ref": "#/definitions/AdaptiveNetworkHardening" - } - }, - "nextLink": { - "description": "The URL to get the next set of results", - "type": "string" - } - } + "networkSecurityGroups": { + "description": "The Network Security Groups effective on the network interface", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "AdaptiveNetworkHardeningProperties": { + "description": "Adaptive Network Hardening resource properties", + "properties": { + "rules": { + "description": "The security rules which are recommended to be effective on the VM", + "type": "array", + "items": { + "$ref": "#/definitions/Rule" + } }, - "AdaptiveNetworkHardeningEnforceRequest": { - "type": "object", - "properties": { - "rules": { - "type": "array", - "description": "The rules to enforce", - "items": { - "$ref": "#/definitions/Rule" - } - }, - "networkSecurityGroups": { - "type": "array", - "description": "The Azure resource IDs of the effective network security groups that will be updated with the created security rules from the Adaptive Network Hardening rules", - "items": { - "type": "string" - } - } - }, - "required": [ - "rules", - "networkSecurityGroups" - ] + "rulesCalculationTime": { + "type": "string", + "format": "date-time", + "description": "The UTC time on which the rules were calculated" + }, + "effectiveNetworkSecurityGroups": { + "description": "The Network Security Groups effective on the network interfaces of the protected resource", + "type": "array", + "items": { + "$ref": "#/definitions/EffectiveNetworkSecurityGroups" + } } + } }, - "parameters": { - "AdaptiveNetworkHardeningResourceName": { - "name": "adaptiveNetworkHardeningResourceName", - "in": "path", - "description": "The name of the Adaptive Network Hardening resource.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" + "AdaptiveNetworkHardening": { + "description": "The resource whose properties describes the Adaptive Network Hardening settings for some Azure resource", + "properties": { + "properties": { + "description": "Properties of the Adaptive Network Hardening resource", + "x-ms-client-flatten": true, + "$ref": "#/definitions/AdaptiveNetworkHardeningProperties" + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" + } + ] + }, + "AdaptiveNetworkHardeningsList": { + "description": "Response for ListAdaptiveNetworkHardenings API service call", + "properties": { + "value": { + "description": "A list of Adaptive Network Hardenings resources", + "type": "array", + "items": { + "$ref": "#/definitions/AdaptiveNetworkHardening" + } }, - "AdaptiveNetworkHardeningEnforceAction": { - "name": "adaptiveNetworkHardeningEnforceAction", - "type": "string", - "in": "path", - "required": true, - "description": "Enforces the given rules on the NSG(s) listed in the request", - "enum": [ - "enforce" - ], - "x-ms-parameter-location": "method" + "nextLink": { + "description": "The URL to get the next set of results", + "type": "string" + } + } + }, + "AdaptiveNetworkHardeningEnforceRequest": { + "type": "object", + "properties": { + "rules": { + "type": "array", + "description": "The rules to enforce", + "items": { + "$ref": "#/definitions/Rule" + } }, - "AdaptiveNetworkHardeningEnforceRequest": { - "name": "body", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/AdaptiveNetworkHardeningEnforceRequest" - }, - "x-ms-parameter-location": "method" + "networkSecurityGroups": { + "type": "array", + "description": "The Azure resource IDs of the effective network security groups that will be updated with the created security rules from the Adaptive Network Hardening rules", + "items": { + "type": "string" + } } + }, + "required": [ + "rules", + "networkSecurityGroups" + ] + } + }, + "parameters": { + "AdaptiveNetworkHardeningResourceName": { + "name": "adaptiveNetworkHardeningResourceName", + "in": "path", + "description": "The name of the Adaptive Network Hardening resource.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "AdaptiveNetworkHardeningEnforceAction": { + "name": "adaptiveNetworkHardeningEnforceAction", + "type": "string", + "in": "path", + "required": true, + "description": "Enforces the given rules on the NSG(s) listed in the request", + "enum": [ + "enforce" + ], + "x-ms-parameter-location": "method" + }, + "AdaptiveNetworkHardeningEnforceRequest": { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/AdaptiveNetworkHardeningEnforceRequest" + }, + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/alerts.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/alerts.json index 653493529a89..f430c59f3950 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/alerts.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/alerts.json @@ -6,12 +6,20 @@ "version": "2015-06-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/Alerts/GetAlertsSubscription_example.json" } }, - "tags": ["Alerts"], + "tags": [ + "Alerts" + ], "description": "List all the alerts that are associated with the subscription", "operationId": "Alerts_List", "parameters": [ @@ -79,7 +89,9 @@ "$ref": "./examples/Alerts/GetAlertsResourceGroup_example.json" } }, - "tags": ["Alerts"], + "tags": [ + "Alerts" + ], "description": "List all the alerts that are associated with the resource group", "operationId": "Alerts_ListByResourceGroup", "parameters": [ @@ -128,7 +140,9 @@ "$ref": "./examples/Alerts/GetAlertsSubscriptionsLocation_example.json" } }, - "tags": ["Alerts"], + "tags": [ + "Alerts" + ], "description": "List all the alerts that are associated with the subscription that are stored in a specific location", "operationId": "Alerts_ListSubscriptionLevelAlertsByRegion", "parameters": [ @@ -177,7 +191,9 @@ "$ref": "./examples/Alerts/GetAlertsResourceGroupLocation_example.json" } }, - "tags": ["Alerts"], + "tags": [ + "Alerts" + ], "description": "List all the alerts that are associated with the resource group that are stored in a specific location", "operationId": "Alerts_ListResourceGroupLevelAlertsByRegion", "parameters": [ @@ -229,7 +245,9 @@ "$ref": "./examples/Alerts/GetAlertSubscriptionLocation_example.json" } }, - "tags": ["Alerts"], + "tags": [ + "Alerts" + ], "description": "Get an alert that is associated with a subscription", "operationId": "Alerts_GetSubscriptionLevelAlert", "parameters": [ @@ -269,7 +287,9 @@ "$ref": "./examples/Alerts/GetAlertResourceGroupLocation_example.json" } }, - "tags": ["Alerts"], + "tags": [ + "Alerts" + ], "description": "Get an alert that is associated a resource group or a resource in a resource group", "operationId": "Alerts_GetResourceGroupLevelAlerts", "parameters": [ @@ -312,7 +332,9 @@ "$ref": "./examples/Alerts/UpdateAlertSubscriptionLocation_example.json" } }, - "tags": ["Alerts"], + "tags": [ + "Alerts" + ], "description": "Update the alert's state", "operationId": "Alerts_UpdateSubscriptionLevelAlertState", "parameters": [ @@ -352,7 +374,9 @@ "$ref": "./examples/Alerts/UpdateAlertResourceGroupLocation_example.json" } }, - "tags": ["Alerts"], + "tags": [ + "Alerts" + ], "description": "Update the alert's state", "operationId": "Alerts_UpdateResourceGroupLevelAlertState", "parameters": [ @@ -476,7 +500,12 @@ "reportedSeverity": { "readOnly": true, "type": "string", - "enum": ["Silent", "Information", "Low", "High"], + "enum": [ + "Silent", + "Information", + "Low", + "High" + ], "x-ms-enum": { "name": "reportedSeverity", "modelAsString": true, @@ -617,7 +646,10 @@ "in": "path", "required": true, "type": "string", - "enum": ["Dismiss", "Reactivate"], + "enum": [ + "Dismiss", + "Reactivate" + ], "description": "Type of the action to do on the alert", "x-ms-parameter-location": "method" } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/allowedConnections.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/allowedConnections.json index f01b8f50cf6a..5a9e883d3b90 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/allowedConnections.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/allowedConnections.json @@ -6,12 +6,20 @@ "version": "2015-06-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/AllowedConnections/GetAllowedConnectionsSubscription_example.json" } }, - "tags": ["AllowedConnections"], + "tags": [ + "AllowedConnections" + ], "description": "Gets the list of all possible traffic between resources for the subscription", "operationId": "AllowedConnections_List", "parameters": [ @@ -70,7 +80,9 @@ "$ref": "./examples/AllowedConnections/GetAllowedConnectionsSubscriptionLocation_example.json" } }, - "tags": ["AllowedConnections"], + "tags": [ + "AllowedConnections" + ], "description": "Gets the list of all possible traffic between resources for the subscription and location.", "operationId": "AllowedConnections_ListByHomeRegion", "parameters": [ @@ -110,7 +122,9 @@ "$ref": "./examples/AllowedConnections/GetAllowedConnections_example.json" } }, - "tags": ["AllowedConnections"], + "tags": [ + "AllowedConnections" + ], "description": "Gets the list of all possible traffic between resources for the subscription and location, based on connection type.", "operationId": "AllowedConnections_Get", "parameters": [ @@ -261,7 +275,10 @@ "in": "path", "description": "The type of allowed connections (Internal, External)", "required": true, - "enum": ["Internal", "External"], + "enum": [ + "Internal", + "External" + ], "x-ms-enum": { "name": "connectionType", "modelAsString": true, diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/discoveredSecuritySolutions.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/discoveredSecuritySolutions.json index e3e35a3b0e8a..71d8cb64e991 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/discoveredSecuritySolutions.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/discoveredSecuritySolutions.json @@ -6,12 +6,20 @@ "version": "2015-06-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionsSubscription_example.json" } }, - "tags": ["DiscoveredSecuritySolutions"], + "tags": [ + "DiscoveredSecuritySolutions" + ], "description": "Gets a list of discovered Security Solutions for the subscription.", "operationId": "DiscoveredSecuritySolutions_List", "parameters": [ @@ -70,7 +80,9 @@ "$ref": "./examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionsSubscriptionLocation_example.json" } }, - "tags": ["DiscoveredSecuritySolutions"], + "tags": [ + "DiscoveredSecuritySolutions" + ], "description": "Gets a list of discovered Security Solutions for the subscription and location.", "operationId": "DiscoveredSecuritySolutions_ListByHomeRegion", "parameters": [ @@ -110,7 +122,9 @@ "$ref": "./examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionResourceGroupLocation_example.json" } }, - "tags": ["DiscoveredSecuritySolutions"], + "tags": [ + "DiscoveredSecuritySolutions" + ], "description": "Gets a specific discovered Security Solution.", "operationId": "DiscoveredSecuritySolutions_Get", "parameters": [ @@ -172,7 +186,9 @@ "$ref": "#/definitions/DiscoveredSecuritySolutionProperties" } }, - "required": ["properties"], + "required": [ + "properties" + ], "allOf": [ { "$ref": "../../../common/v1/types.json#/definitions/Resource" @@ -188,7 +204,12 @@ "securityFamily": { "type": "string", "description": "The security family of the discovered solution", - "enum": ["Waf", "Ngfw", "SaasWaf", "Va"], + "enum": [ + "Waf", + "Ngfw", + "SaasWaf", + "Va" + ], "x-ms-enum": { "name": "securityFamily", "modelAsString": true, @@ -221,7 +242,12 @@ "description": "The security solutions' image sku" } }, - "required": ["securityFamily", "offer", "publisher", "sku"] + "required": [ + "securityFamily", + "offer", + "publisher", + "sku" + ] } }, "parameters": { diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/EnforceAdaptiveNetworkHardeningRules_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/EnforceAdaptiveNetworkHardeningRules_example.json index cf17f82d8844..2f1af8243ff2 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/EnforceAdaptiveNetworkHardeningRules_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/EnforceAdaptiveNetworkHardeningRules_example.json @@ -1,50 +1,50 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "rg1", - "resourceNamespace": "Microsoft.Compute", - "resourceType": "virtualMachines", - "resourceName": "vm1", - "adaptiveNetworkHardeningResourceName": "default", - "adaptiveNetworkHardeningEnforceAction": "enforce", - "body": { - "rules": [ - { - "name": "rule1", - "direction": "Inbound", - "destinationPort": 3389, - "protocols": [ - "TCP" - ], - "ipAddresses": [ - "100.10.1.1", - "200.20.2.2", - "81.199.3.0/24" - ] - }, - { - "name": "rule2", - "direction": "Inbound", - "destinationPort": 22, - "protocols": [ - "TCP" - ], - "ipAddresses": [] - } - ], - "networkSecurityGroups": [ - "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/nsg1", - "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg2/providers/Microsoft.Network/networkSecurityGroups/nsg2" - ] - } - }, - "responses": { - "200": { - "description": "OK." + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "rg1", + "resourceNamespace": "Microsoft.Compute", + "resourceType": "virtualMachines", + "resourceName": "vm1", + "adaptiveNetworkHardeningResourceName": "default", + "adaptiveNetworkHardeningEnforceAction": "enforce", + "body": { + "rules": [ + { + "name": "rule1", + "direction": "Inbound", + "destinationPort": 3389, + "protocols": [ + "TCP" + ], + "ipAddresses": [ + "100.10.1.1", + "200.20.2.2", + "81.199.3.0/24" + ] }, - "202": { - "description": "HTTP 202 (Accepted) if the operation was successfully started and will complete asynchronously." + { + "name": "rule2", + "direction": "Inbound", + "destinationPort": 22, + "protocols": [ + "TCP" + ], + "ipAddresses": [] } + ], + "networkSecurityGroups": [ + "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/nsg1", + "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg2/providers/Microsoft.Network/networkSecurityGroups/nsg2" + ] + } + }, + "responses": { + "200": { + "description": "OK." + }, + "202": { + "description": "HTTP 202 (Accepted) if the operation was successfully started and will complete asynchronously." } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/GetAdaptiveNetworkHardening_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/GetAdaptiveNetworkHardening_example.json index bf948663bb06..1d5bbfff58b3 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/GetAdaptiveNetworkHardening_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/GetAdaptiveNetworkHardening_example.json @@ -1,62 +1,62 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "rg1", - "resourceNamespace": "Microsoft.Compute", - "resourceType": "virtualMachines", - "resourceName": "vm1", - "adaptiveNetworkHardeningResourceName": "default" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Security/adaptiveNetworkHardenings/default", - "name": "default", - "type": "Microsoft.Security/adaptiveNetworkHardenings", - "properties": { - "rulesCalculationTime": "2018-08-15T00:00:00.0000000Z", - "rules": [ - { - "name": "rule1", - "direction": "Inbound", - "destinationPort": 3389, - "protocols": [ - "TCP" - ], - "ipAddresses": [ - "100.10.1.1", - "200.20.2.2", - "81.199.3.0/24" - ] - }, - { - "name": "rule2", - "direction": "Inbound", - "destinationPort": 22, - "protocols": [ - "TCP" - ], - "ipAddresses": [] - } - ], - "effectiveNetworkSecurityGroups": [ - { - "networkInterface": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg1/providers/Microsoft.Network/networkInterfaces/nic1", - "networkSecurityGroups": [ - "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/nicNsg", - "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/subnetNsg" - ] - }, - { - "networkInterface": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg2/providers/Microsoft.Network/networkInterfaces/nic2", - "networkSecurityGroups": [ - "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg2/providers/Microsoft.Network/networkSecurityGroups/nicNsg" - ] - } - ] - } + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "rg1", + "resourceNamespace": "Microsoft.Compute", + "resourceType": "virtualMachines", + "resourceName": "vm1", + "adaptiveNetworkHardeningResourceName": "default" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Security/adaptiveNetworkHardenings/default", + "name": "default", + "type": "Microsoft.Security/adaptiveNetworkHardenings", + "properties": { + "rulesCalculationTime": "2018-08-15T00:00:00.0000000Z", + "rules": [ + { + "name": "rule1", + "direction": "Inbound", + "destinationPort": 3389, + "protocols": [ + "TCP" + ], + "ipAddresses": [ + "100.10.1.1", + "200.20.2.2", + "81.199.3.0/24" + ] + }, + { + "name": "rule2", + "direction": "Inbound", + "destinationPort": 22, + "protocols": [ + "TCP" + ], + "ipAddresses": [] } + ], + "effectiveNetworkSecurityGroups": [ + { + "networkInterface": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg1/providers/Microsoft.Network/networkInterfaces/nic1", + "networkSecurityGroups": [ + "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/nicNsg", + "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/subnetNsg" + ] + }, + { + "networkInterface": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg2/providers/Microsoft.Network/networkInterfaces/nic2", + "networkSecurityGroups": [ + "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg2/providers/Microsoft.Network/networkSecurityGroups/nicNsg" + ] + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/ListByExtendedResourceAdaptiveNetworkHardenings_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/ListByExtendedResourceAdaptiveNetworkHardenings_example.json index aacc98914ae7..99ecba355acf 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/ListByExtendedResourceAdaptiveNetworkHardenings_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AdaptiveNetworkHardenings/ListByExtendedResourceAdaptiveNetworkHardenings_example.json @@ -1,65 +1,65 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "rg1", - "resourceNamespace": "Microsoft.Compute", - "resourceType": "virtualMachines", - "resourceName": "vm1" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Security/adaptiveNetworkHardenings/default", - "name": "default", - "type": "Microsoft.Security/adaptiveNetworkHardenings", - "properties": { - "rulesCalculationTime": "2018-08-15T00:00:00.0000000Z", - "rules": [ - { - "name": "rule1", - "direction": "Inbound", - "destinationPort": 3389, - "protocols": [ - "TCP" - ], - "ipAddresses": [ - "100.10.1.1", - "200.20.2.2", - "81.199.3.0/24" - ] - }, - { - "name": "rule2", - "direction": "Inbound", - "destinationPort": 22, - "protocols": [ - "TCP" - ], - "ipAddresses": [] - } - ], - "effectiveNetworkSecurityGroups": [ - { - "networkInterface": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg1/providers/Microsoft.Network/networkInterfaces/nic1", - "networkSecurityGroups": [ - "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/nicNsg", - "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/subnetNsg" - ] - }, - { - "networkInterface": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg1/providers/Microsoft.Network/networkInterfaces/nic2", - "networkSecurityGroups": [ - "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/nicNsg2" - ] - } - ] - } - } - ] + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "rg1", + "resourceNamespace": "Microsoft.Compute", + "resourceType": "virtualMachines", + "resourceName": "vm1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Security/adaptiveNetworkHardenings/default", + "name": "default", + "type": "Microsoft.Security/adaptiveNetworkHardenings", + "properties": { + "rulesCalculationTime": "2018-08-15T00:00:00.0000000Z", + "rules": [ + { + "name": "rule1", + "direction": "Inbound", + "destinationPort": 3389, + "protocols": [ + "TCP" + ], + "ipAddresses": [ + "100.10.1.1", + "200.20.2.2", + "81.199.3.0/24" + ] + }, + { + "name": "rule2", + "direction": "Inbound", + "destinationPort": 22, + "protocols": [ + "TCP" + ], + "ipAddresses": [] + } + ], + "effectiveNetworkSecurityGroups": [ + { + "networkInterface": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg1/providers/Microsoft.Network/networkInterfaces/nic1", + "networkSecurityGroups": [ + "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/nicNsg", + "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/subnetNsg" + ] + }, + { + "networkInterface": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/rg1/providers/Microsoft.Network/networkInterfaces/nic2", + "networkSecurityGroups": [ + "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/nicNsg2" + ] + } + ] } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertResourceGroupLocation_example.json index 25aada04835b..a24bfc5fa8f0 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertResourceGroupLocation_example.json @@ -1,74 +1,82 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg1", - "ascLocation": "westeurope", - "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg1", + "ascLocation": "westeurope", + "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ + { + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } + ], + "type": "ip" } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertSubscriptionLocation_example.json index 2af79c663560..5509387b8f52 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertSubscriptionLocation_example.json @@ -1,73 +1,81 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ + { + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } + ], + "type": "ip" } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsResourceGroupLocation_example.json index d1522b373b48..3940bb2500ab 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsResourceGroupLocation_example.json @@ -1,75 +1,85 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg1", - "ascLocation": "westeurope" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg1", + "ascLocation": "westeurope" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ + { + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } - }] + ], + "type": "ip" + } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsResourceGroup_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsResourceGroup_example.json index d9c3da31cb1a..6f088700fefd 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsResourceGroup_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsResourceGroup_example.json @@ -1,74 +1,84 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg1" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ + { + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } - }] + ], + "type": "ip" + } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsSubscription_example.json index 058ebfbcde25..759af63d1b41 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsSubscription_example.json @@ -1,153 +1,172 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" - } - }, + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/westeurope/alerts/2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "name": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "systemSource": "Azure", - "vendorName": "Microsoft", - "alertDisplayName": "Suspicious Screensaver process executed", - "alertName": "SuspiciousScreenSaver", - "detectedTimeUtc": "2018-05-07T13:51:45.0045913Z", - "description": "The process ‘%{process name}’ was observed executing from an uncommon location.\r\n\r\nFiles with the .scr extensions are screen saver files and are normally reside and execute from the Windows system directory.", - "remediationSteps": "1. Run Process Explorer and try to identify unknown running processes (see https://technet.microsoft.com/en-us/sysinternals/bb896653.aspx)\r\n2. Make sure the machine is completely updated and has an updated anti-malware application installed\r\n3. Run a full anti-malware scan and verify that the threat was removed\r\n4. Install and run Microsoft’s Malicious Software Removal Tool (see https://www.microsoft.com/en-us/download/malicious-software-removal-tool-details.aspx)\r\n5. Run Microsoft’s Autoruns utility and try to identify unknown applications that are configured to run at login (see https://technet.microsoft.com/en-us/sysinternals/bb963902.aspx)\r\n6. Escalate the alert to the information security team", - "actionTaken": "Detected", - "reportedSeverity": "Low", - "compromisedEntity": "vm2", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "extendedProperties": { - "domain name": "vm2", - "user name": "vm2\\contosoUser", - "process name": "c:\\users\\contosoUser\\scrsave.scr", - "command line": "c:\\users\\contosoUser\\scrsave.scr", - "parent process": "cmd.exe", - "process id": "0x4aec", - "account logon id": "0x61450d87", - "user SID": "S-1-5-21-2144575486-8928446540-5163864319-500", - "parent process id": "0x3c44", - "enrichment_tas_threat__reports": "{\"Kind\":\"MultiLink\",\"DisplayValueToUrlDictionary\":{\"Report: Suspicious Screen Saver Execution\":\"https://iflowreportsproda.blob.core.windows.net/reports/MSTI-TS-Suspicious-Screen-Saver-Execution.pdf?sv=2016-05-31&sr=b&sig=2igHPl764UM7aBHNaO9mPAnpzoXlwRw8YjpFLLuB2NE%3D&spr=https&st=2018-05-07T00%3A20%3A54Z&se=2018-05-08T00%3A35%3A54Z&sp=r\"}}", - "resourceType": "Virtual Machine" - }, - "state": "Active", - "reportedTimeUtc": "2018-05-07T13:51:48.3810457Z", - "workspaceArmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-21ff7fc3-e762-48dd-bd96-b551f6dcdd23-weu", - "confidenceScore": 0.3, - "confidenceReasons": [{ - "type": "Process", - "reason": "Suspicious process execution history for this subscription" - }, { - "type": "Process", - "reason": "Suspicious process execution history for this subscription" - }, { - "type": "Process", - "reason": "cmd.exe appeared in multiple alerts of the same type" - }], - "canBeInvestigated": true, - "entities": [{ - "dnsDomain": "", - "ntDomain": "", - "hostName": "vm2", - "netBiosName": "vm2", - "azureID": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", - "omsAgentID": "45b44640-3b94-4892-a28c-4a5cae27065a", - "operatingSystem": "Unknown", - "type": "host", - "OsVersion": null - }, { - "name": "contosoUser", - "ntDomain": "vm2", - "logonId": "0x61450d87", - "sid": "S-1-5-21-2144575486-8928446540-5163864319-500", - "type": "account" - }, { - "directory": "c:\\windows\\system32", - "name": "cmd.exe", - "type": "file" - }, { - "directory": "c:\\users\\contosoUser", - "name": "scrsave.scr", - "type": "file" - }, { - "processId": "0x4aec", - "commandLine": "c:\\users\\contosoUser\\scrsave.scr", - "creationTimeUtc": "2018-05-07T13:51:45.0045913Z", - "type": "process" - }], - "correlationKey": "CCso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0sWqs=" - } + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } - ] + ], + "type": "ip" + } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/westeurope/alerts/2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "name": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "systemSource": "Azure", + "vendorName": "Microsoft", + "alertDisplayName": "Suspicious Screensaver process executed", + "alertName": "SuspiciousScreenSaver", + "detectedTimeUtc": "2018-05-07T13:51:45.0045913Z", + "description": "The process ‘%{process name}’ was observed executing from an uncommon location.\r\n\r\nFiles with the .scr extensions are screen saver files and are normally reside and execute from the Windows system directory.", + "remediationSteps": "1. Run Process Explorer and try to identify unknown running processes (see https://technet.microsoft.com/en-us/sysinternals/bb896653.aspx)\r\n2. Make sure the machine is completely updated and has an updated anti-malware application installed\r\n3. Run a full anti-malware scan and verify that the threat was removed\r\n4. Install and run Microsoft’s Malicious Software Removal Tool (see https://www.microsoft.com/en-us/download/malicious-software-removal-tool-details.aspx)\r\n5. Run Microsoft’s Autoruns utility and try to identify unknown applications that are configured to run at login (see https://technet.microsoft.com/en-us/sysinternals/bb963902.aspx)\r\n6. Escalate the alert to the information security team", + "actionTaken": "Detected", + "reportedSeverity": "Low", + "compromisedEntity": "vm2", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "extendedProperties": { + "domain name": "vm2", + "user name": "vm2\\contosoUser", + "process name": "c:\\users\\contosoUser\\scrsave.scr", + "command line": "c:\\users\\contosoUser\\scrsave.scr", + "parent process": "cmd.exe", + "process id": "0x4aec", + "account logon id": "0x61450d87", + "user SID": "S-1-5-21-2144575486-8928446540-5163864319-500", + "parent process id": "0x3c44", + "enrichment_tas_threat__reports": "{\"Kind\":\"MultiLink\",\"DisplayValueToUrlDictionary\":{\"Report: Suspicious Screen Saver Execution\":\"https://iflowreportsproda.blob.core.windows.net/reports/MSTI-TS-Suspicious-Screen-Saver-Execution.pdf?sv=2016-05-31&sr=b&sig=2igHPl764UM7aBHNaO9mPAnpzoXlwRw8YjpFLLuB2NE%3D&spr=https&st=2018-05-07T00%3A20%3A54Z&se=2018-05-08T00%3A35%3A54Z&sp=r\"}}", + "resourceType": "Virtual Machine" + }, + "state": "Active", + "reportedTimeUtc": "2018-05-07T13:51:48.3810457Z", + "workspaceArmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-21ff7fc3-e762-48dd-bd96-b551f6dcdd23-weu", + "confidenceScore": 0.3, + "confidenceReasons": [ + { + "type": "Process", + "reason": "Suspicious process execution history for this subscription" + }, + { + "type": "Process", + "reason": "Suspicious process execution history for this subscription" + }, + { + "type": "Process", + "reason": "cmd.exe appeared in multiple alerts of the same type" + } + ], + "canBeInvestigated": true, + "entities": [ + { + "dnsDomain": "", + "ntDomain": "", + "hostName": "vm2", + "netBiosName": "vm2", + "azureID": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", + "omsAgentID": "45b44640-3b94-4892-a28c-4a5cae27065a", + "operatingSystem": "Unknown", + "type": "host", + "OsVersion": null + }, + { + "name": "contosoUser", + "ntDomain": "vm2", + "logonId": "0x61450d87", + "sid": "S-1-5-21-2144575486-8928446540-5163864319-500", + "type": "account" + }, + { + "directory": "c:\\windows\\system32", + "name": "cmd.exe", + "type": "file" + }, + { + "directory": "c:\\users\\contosoUser", + "name": "scrsave.scr", + "type": "file" + }, + { + "processId": "0x4aec", + "commandLine": "c:\\users\\contosoUser\\scrsave.scr", + "creationTimeUtc": "2018-05-07T13:51:45.0045913Z", + "type": "process" + } + ], + "correlationKey": "CCso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0sWqs=" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsSubscriptionsLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsSubscriptionsLocation_example.json index 7fd284c0026e..74683dc8f103 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsSubscriptionsLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/GetAlertsSubscriptionsLocation_example.json @@ -1,157 +1,177 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" - } - }, + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/westeurope/alerts/2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "name": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "systemSource": "Azure", - "vendorName": "Microsoft", - "alertDisplayName": "Suspicious Screensaver process executed", - "alertName": "SuspiciousScreenSaver", - "detectedTimeUtc": "2018-05-07T13:51:45.0045913Z", - "description": "The process ‘%{process name}’ was observed executing from an uncommon location.\r\n\r\nFiles with the .scr extensions are screen saver files and are normally reside and execute from the Windows system directory.", - "remediationSteps": "1. Run Process Explorer and try to identify unknown running processes (see https://technet.microsoft.com/en-us/sysinternals/bb896653.aspx)\r\n2. Make sure the machine is completely updated and has an updated anti-malware application installed\r\n3. Run a full anti-malware scan and verify that the threat was removed\r\n4. Install and run Microsoft’s Malicious Software Removal Tool (see https://www.microsoft.com/en-us/download/malicious-software-removal-tool-details.aspx)\r\n5. Run Microsoft’s Autoruns utility and try to identify unknown applications that are configured to run at login (see https://technet.microsoft.com/en-us/sysinternals/bb963902.aspx)\r\n6. Escalate the alert to the information security team", - "actionTaken": "Detected", - "reportedSeverity": "Low", - "compromisedEntity": "vm2", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "extendedProperties": { - "domain name": "vm2", - "user name": "vm2\\contosoUser", - "process name": "c:\\users\\contosoUser\\scrsave.scr", - "command line": "c:\\users\\contosoUser\\scrsave.scr", - "parent process": "cmd.exe", - "process id": "0x4aec", - "account logon id": "0x61450d87", - "user SID": "S-1-5-21-2144575486-8928446540-5163864319-500", - "parent process id": "0x3c44", - "enrichment_tas_threat__reports": "{\"Kind\":\"MultiLink\",\"DisplayValueToUrlDictionary\":{\"Report: Suspicious Screen Saver Execution\":\"https://iflowreportsproda.blob.core.windows.net/reports/MSTI-TS-Suspicious-Screen-Saver-Execution.pdf?sv=2016-05-31&sr=b&sig=2igHPl764UM7aBHNaO9mPAnpzoXlwRw8YjpFLLuB2NE%3D&spr=https&st=2018-05-07T00%3A20%3A54Z&se=2018-05-08T00%3A35%3A54Z&sp=r\"}}", - "resourceType": "Virtual Machine" - }, - "state": "Active", - "reportedTimeUtc": "2018-05-07T13:51:48.3810457Z", - "workspaceArmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-21ff7fc3-e762-48dd-bd96-b551f6dcdd23-weu", - "confidenceScore": 0.3, - "confidenceReasons": [{ - "type": "Process", - "reason": "Suspicious process execution history for this subscription" - }, { - "type": "Process", - "reason": "Suspicious process execution history for this subscription" - }, { - "type": "Process", - "reason": "cmd.exe appeared in multiple alerts of the same type" - }], - "canBeInvestigated": true, - "entities": [{ - "dnsDomain": "", - "ntDomain": "", - "hostName": "vm2", - "netBiosName": "vm2", - "azureID": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", - "omsAgentID": "45b44640-3b94-4892-a28c-4a5cae27065a", - "operatingSystem": "Unknown", - "type": "host", - "OsVersion": null - }, { - "name": "contosoUser", - "ntDomain": "vm2", - "logonId": "0x61450d87", - "sid": "S-1-5-21-2144575486-8928446540-5163864319-500", - "type": "account" - }, { - "directory": "c:\\windows\\system32", - "name": "cmd.exe", - "type": "file" - }, { - "processId": "0x3c44", - "type": "process" - }, { - "directory": "c:\\users\\contosoUser", - "name": "scrsave.scr", - "type": "file" - }, { - "processId": "0x4aec", - "commandLine": "c:\\users\\contosoUser\\scrsave.scr", - "creationTimeUtc": "2018-05-07T13:51:45.0045913Z", - "type": "process" - }], - "correlationKey": "6Lso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9MY1" - } + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } - ] + ], + "type": "ip" + } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/westeurope/alerts/2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "name": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "systemSource": "Azure", + "vendorName": "Microsoft", + "alertDisplayName": "Suspicious Screensaver process executed", + "alertName": "SuspiciousScreenSaver", + "detectedTimeUtc": "2018-05-07T13:51:45.0045913Z", + "description": "The process ‘%{process name}’ was observed executing from an uncommon location.\r\n\r\nFiles with the .scr extensions are screen saver files and are normally reside and execute from the Windows system directory.", + "remediationSteps": "1. Run Process Explorer and try to identify unknown running processes (see https://technet.microsoft.com/en-us/sysinternals/bb896653.aspx)\r\n2. Make sure the machine is completely updated and has an updated anti-malware application installed\r\n3. Run a full anti-malware scan and verify that the threat was removed\r\n4. Install and run Microsoft’s Malicious Software Removal Tool (see https://www.microsoft.com/en-us/download/malicious-software-removal-tool-details.aspx)\r\n5. Run Microsoft’s Autoruns utility and try to identify unknown applications that are configured to run at login (see https://technet.microsoft.com/en-us/sysinternals/bb963902.aspx)\r\n6. Escalate the alert to the information security team", + "actionTaken": "Detected", + "reportedSeverity": "Low", + "compromisedEntity": "vm2", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "extendedProperties": { + "domain name": "vm2", + "user name": "vm2\\contosoUser", + "process name": "c:\\users\\contosoUser\\scrsave.scr", + "command line": "c:\\users\\contosoUser\\scrsave.scr", + "parent process": "cmd.exe", + "process id": "0x4aec", + "account logon id": "0x61450d87", + "user SID": "S-1-5-21-2144575486-8928446540-5163864319-500", + "parent process id": "0x3c44", + "enrichment_tas_threat__reports": "{\"Kind\":\"MultiLink\",\"DisplayValueToUrlDictionary\":{\"Report: Suspicious Screen Saver Execution\":\"https://iflowreportsproda.blob.core.windows.net/reports/MSTI-TS-Suspicious-Screen-Saver-Execution.pdf?sv=2016-05-31&sr=b&sig=2igHPl764UM7aBHNaO9mPAnpzoXlwRw8YjpFLLuB2NE%3D&spr=https&st=2018-05-07T00%3A20%3A54Z&se=2018-05-08T00%3A35%3A54Z&sp=r\"}}", + "resourceType": "Virtual Machine" + }, + "state": "Active", + "reportedTimeUtc": "2018-05-07T13:51:48.3810457Z", + "workspaceArmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-21ff7fc3-e762-48dd-bd96-b551f6dcdd23-weu", + "confidenceScore": 0.3, + "confidenceReasons": [ + { + "type": "Process", + "reason": "Suspicious process execution history for this subscription" + }, + { + "type": "Process", + "reason": "Suspicious process execution history for this subscription" + }, + { + "type": "Process", + "reason": "cmd.exe appeared in multiple alerts of the same type" + } + ], + "canBeInvestigated": true, + "entities": [ + { + "dnsDomain": "", + "ntDomain": "", + "hostName": "vm2", + "netBiosName": "vm2", + "azureID": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", + "omsAgentID": "45b44640-3b94-4892-a28c-4a5cae27065a", + "operatingSystem": "Unknown", + "type": "host", + "OsVersion": null + }, + { + "name": "contosoUser", + "ntDomain": "vm2", + "logonId": "0x61450d87", + "sid": "S-1-5-21-2144575486-8928446540-5163864319-500", + "type": "account" + }, + { + "directory": "c:\\windows\\system32", + "name": "cmd.exe", + "type": "file" + }, + { + "processId": "0x3c44", + "type": "process" + }, + { + "directory": "c:\\users\\contosoUser", + "name": "scrsave.scr", + "type": "file" + }, + { + "processId": "0x4aec", + "commandLine": "c:\\users\\contosoUser\\scrsave.scr", + "creationTimeUtc": "2018-05-07T13:51:45.0045913Z", + "type": "process" + } + ], + "correlationKey": "6Lso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9MY1" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/UpdateAlertResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/UpdateAlertResourceGroupLocation_example.json index 4ff94975fb5f..ffb0bbcc4c05 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/UpdateAlertResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/UpdateAlertResourceGroupLocation_example.json @@ -1,14 +1,13 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg2", - "ascLocation": "westeurope", - "alertName": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "alertUpdateActionType": "Dismiss" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg2", + "ascLocation": "westeurope", + "alertName": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "alertUpdateActionType": "Dismiss" + }, + "responses": { + "204": {} + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/UpdateAlertSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/UpdateAlertSubscriptionLocation_example.json index cf23c522a362..ea165725941d 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/UpdateAlertSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Alerts/UpdateAlertSubscriptionLocation_example.json @@ -1,13 +1,12 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "alertUpdateActionType": "Dismiss" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "alertUpdateActionType": "Dismiss" + }, + "responses": { + "204": {} + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnectionsSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnectionsSubscriptionLocation_example.json index 5b78c56df89d..2d1e903ce6e1 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnectionsSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnectionsSubscriptionLocation_example.json @@ -1,65 +1,65 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad", - "ascLocation": "centralus" - }, - "responses": { - "200": { - "body": { - "value": [ + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad", + "ascLocation": "centralus" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "type": "Microsoft.Security/locations/allowedConnections", + "properties": { + "calculatedDateTime": "2018-08-06T14:55:32.3518545Z", + "connectableResources": [ + { + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", + "inboundConnectedResources": [ { - "type": "Microsoft.Security/locations/allowedConnections", - "properties": { - "calculatedDateTime": "2018-08-06T14:55:32.3518545Z", - "connectableResources": [ - { - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", - "inboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ], - "outboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ] - }, - { - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", - "inboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ], - "outboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ] - }, - { - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine3", - "inboundConnectedResources": [], - "outboundConnectedResources": [] - } - ] - }, - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Security/locations/centralus/allowedConnections/Internal", - "name": "Internal", - "location": "centralus" + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" } - ] - } - } + ], + "outboundConnectedResources": [ + { + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" + } + ] + }, + { + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", + "inboundConnectedResources": [ + { + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" + } + ], + "outboundConnectedResources": [ + { + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" + } + ] + }, + { + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine3", + "inboundConnectedResources": [], + "outboundConnectedResources": [] + } + ] + }, + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Security/locations/centralus/allowedConnections/Internal", + "name": "Internal", + "location": "centralus" + } + ] + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnectionsSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnectionsSubscription_example.json index 8e9e34cf7eb6..5716317205fd 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnectionsSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnectionsSubscription_example.json @@ -1,64 +1,64 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad" - }, - "responses": { - "200": { - "body": { - "value": [ + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "type": "Microsoft.Security/locations/allowedConnections", + "properties": { + "calculatedDateTime": "2018-08-06T14:55:32.3518545Z", + "connectableResources": [ + { + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", + "inboundConnectedResources": [ { - "type": "Microsoft.Security/locations/allowedConnections", - "properties": { - "calculatedDateTime": "2018-08-06T14:55:32.3518545Z", - "connectableResources": [ - { - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", - "inboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ], - "outboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ] - }, - { - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", - "inboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ], - "outboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ] - }, - { - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine3", - "inboundConnectedResources": [], - "outboundConnectedResources": [] - } - ] - }, - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Security/locations/centralus/allowedConnections/Internal", - "name": "Internal", - "location": "centralus" + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" } - ] - } - } + ], + "outboundConnectedResources": [ + { + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" + } + ] + }, + { + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", + "inboundConnectedResources": [ + { + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" + } + ], + "outboundConnectedResources": [ + { + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" + } + ] + }, + { + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine3", + "inboundConnectedResources": [], + "outboundConnectedResources": [] + } + ] + }, + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Security/locations/centralus/allowedConnections/Internal", + "name": "Internal", + "location": "centralus" + } + ] + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnections_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnections_example.json index f18c018d44ee..a89d84858a1d 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnections_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/AllowedConnections/GetAllowedConnections_example.json @@ -1,63 +1,63 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad", - "resourceGroupName": "myResourceGroup", - "ascLocation": "centralus", - "connectionType": "Internal" - }, - "responses": { - "200": { - "body": { - "type": "Microsoft.Security/locations/allowedConnections", - "properties": { - "calculatedDateTime": "2018-08-06T14:55:32.3518545Z", - "connectableResources": [ - { - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", - "inboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ], - "outboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ] - }, - { - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", - "inboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ], - "outboundConnectedResources": [ - { - "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", - "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", - "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" - } - ] - }, - { - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine3", - "inboundConnectedResources": [], - "outboundConnectedResources": [] - } - ] - }, - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Security/locations/centralus/allowedConnections/Internal", - "name": "Internal", - "location": "centralus" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad", + "resourceGroupName": "myResourceGroup", + "ascLocation": "centralus", + "connectionType": "Internal" + }, + "responses": { + "200": { + "body": { + "type": "Microsoft.Security/locations/allowedConnections", + "properties": { + "calculatedDateTime": "2018-08-06T14:55:32.3518545Z", + "connectableResources": [ + { + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", + "inboundConnectedResources": [ + { + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" + } + ], + "outboundConnectedResources": [ + { + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" + } + ] + }, + { + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine2", + "inboundConnectedResources": [ + { + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" + } + ], + "outboundConnectedResources": [ + { + "connectedResourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine1", + "tcpPorts": "[0-21,23-3388,3390-5984,5987-65535]", + "udpPorts": "[0-21,23-3388,3390-5984,5987-65535]" + } + ] + }, + { + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/virtaulMachine3", + "inboundConnectedResources": [], + "outboundConnectedResources": [] } - } + ] + }, + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myResourceGroup/providers/Microsoft.Security/locations/centralus/allowedConnections/Internal", + "name": "Internal", + "location": "centralus" + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionResourceGroupLocation_example.json index 2c01f622b339..a2d45fc99135 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionResourceGroupLocation_example.json @@ -1,26 +1,25 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg2", - "ascLocation": "centralus", - "discoveredSecuritySolutionName": "paloalto7" - }, - "responses": { - "200": { - "body": { - "properties": { - "securityFamily": "Ngfw", - "offer": "vmseries1", - "publisher": "paloaltonetworks", - "sku": "byol" - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/centralus/discoveredSecuritySolutions/paloalto7", - "name": "paloalto7", - "type": "Microsoft.Security/locations/discoveredSecuritySolutions", - "location": "eastus2" - } - - } + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg2", + "ascLocation": "centralus", + "discoveredSecuritySolutionName": "paloalto7" + }, + "responses": { + "200": { + "body": { + "properties": { + "securityFamily": "Ngfw", + "offer": "vmseries1", + "publisher": "paloaltonetworks", + "sku": "byol" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/centralus/discoveredSecuritySolutions/paloalto7", + "name": "paloalto7", + "type": "Microsoft.Security/locations/discoveredSecuritySolutions", + "location": "eastus2" + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionsSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionsSubscriptionLocation_example.json index 04b9cb27b648..7d693c2f5465 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionsSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionsSubscriptionLocation_example.json @@ -1,40 +1,39 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "centralus" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "securityFamily": "Ngfw", - "offer": "cisco-asav", - "publisher": "cisco", - "sku": "asav-azure-byol" - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/centralus/discoveredSecuritySolutions/CP", - "name": "CP", - "type": "Microsoft.Security/locations/discoveredSecuritySolutions", - "location": "eastus" - }, - { - "properties": { - "securityFamily": "Ngfw", - "offer": "vmseries1", - "publisher": "paloaltonetworks", - "sku": "byol" - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/centralus/discoveredSecuritySolutions/paloalto7", - "name": "paloalto7", - "type": "Microsoft.Security/locations/discoveredSecuritySolutions", - "location": "eastus2" - } - ] - } - - } + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "centralus" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "securityFamily": "Ngfw", + "offer": "cisco-asav", + "publisher": "cisco", + "sku": "asav-azure-byol" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/centralus/discoveredSecuritySolutions/CP", + "name": "CP", + "type": "Microsoft.Security/locations/discoveredSecuritySolutions", + "location": "eastus" + }, + { + "properties": { + "securityFamily": "Ngfw", + "offer": "vmseries1", + "publisher": "paloaltonetworks", + "sku": "byol" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/centralus/discoveredSecuritySolutions/paloalto7", + "name": "paloalto7", + "type": "Microsoft.Security/locations/discoveredSecuritySolutions", + "location": "eastus2" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionsSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionsSubscription_example.json index fa3a836faf41..d93a8bae8f3c 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionsSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/DiscoveredSecuritySolutions/GetDiscoveredSecuritySolutionsSubscription_example.json @@ -1,39 +1,38 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "securityFamily": "Ngfw", - "offer": "cisco-asav", - "publisher": "cisco", - "sku": "asav-azure-byol" - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/centralus/discoveredSecuritySolutions/CP", - "name": "CP", - "type": "Microsoft.Security/locations/discoveredSecuritySolutions", - "location": "eastus" - }, - { - "properties": { - "securityFamily": "Ngfw", - "offer": "vmseries1", - "publisher": "paloaltonetworks", - "sku": "byol" - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/centralus/discoveredSecuritySolutions/paloalto7", - "name": "paloalto7", - "type": "Microsoft.Security/locations/discoveredSecuritySolutions", - "location": "eastus2" - } - ] - } - - } + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "securityFamily": "Ngfw", + "offer": "cisco-asav", + "publisher": "cisco", + "sku": "asav-azure-byol" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/centralus/discoveredSecuritySolutions/CP", + "name": "CP", + "type": "Microsoft.Security/locations/discoveredSecuritySolutions", + "location": "eastus" + }, + { + "properties": { + "securityFamily": "Ngfw", + "offer": "vmseries1", + "publisher": "paloaltonetworks", + "sku": "byol" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/centralus/discoveredSecuritySolutions/paloalto7", + "name": "paloalto7", + "type": "Microsoft.Security/locations/discoveredSecuritySolutions", + "location": "eastus2" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolution_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolution_example.json index b1dde001c258..a39e6e760024 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolution_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolution_example.json @@ -1,28 +1,28 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "defaultresourcegroup-eus", - "ascLocation": "centralus", - "externalSecuritySolutionsName": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus" - }, - "responses": { - "200": { - "body": { - "kind": "AAD", - "properties": { - "connectivityState": "Discovered", - "deviceVendor": "Microsoft", - "deviceType": "Azure Active Directory Identity Protection", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-eus/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", - "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "eastus" - } - } + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "defaultresourcegroup-eus", + "ascLocation": "centralus", + "externalSecuritySolutionsName": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus" + }, + "responses": { + "200": { + "body": { + "kind": "AAD", + "properties": { + "connectivityState": "Discovered", + "deviceVendor": "Microsoft", + "deviceType": "Azure Active Directory Identity Protection", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-eus/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", + "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "eastus" + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolutionsSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolutionsSubscriptionLocation_example.json index a7405b5392c1..8638a9b0e7ae 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolutionsSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolutionsSubscriptionLocation_example.json @@ -1,123 +1,123 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "centralus" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "kind": "AAD", - "properties": { - "connectivityState": "Discovered", - "deviceVendor": "Microsoft", - "deviceType": "Azure Active Directory Identity Protection", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-eus/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", - "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "eastus" - }, - { - "kind": "AAD", - "properties": { - "connectivityState": "Discovered", - "deviceVendor": "Microsoft", - "deviceType": "Azure Active Directory Identity Protection", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-weu/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu", - "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "westeurope" - }, - { - "kind": "CEF", - "properties": { - "lastEventReceived": "2018-05-09T10:30:11.523Z", - "hostname": "barracuda", - "deviceVendor": "barracudanetworks", - "deviceType": "WAF", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_barracudanetworks_waf_barracuda", - "name": "cef_omsprd_barracudanetworks_waf_barracuda", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "westcentralus" - }, - { - "kind": "CEF", - "properties": { - "lastEventReceived": "2018-05-08T15:42:22.57Z", - "hostname": "demovm20", - "deviceVendor": "virtualHoneypot", - "deviceType": "Microsoft", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_virtualhoneypot_Microsoft_demovm20", - "name": "cef_omsprd_virtualhoneypot_Microsoft_demovm20", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "westcentralus" - }, - { - "kind": "CEF", - "properties": { - "lastEventReceived": "2018-05-08T10:38:53.423Z", - "hostname": "demovm10", - "deviceVendor": "virtualHoneypot", - "deviceType": "Microsoft", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_virtualhoneypot_Microsoft_demovm10", - "name": "cef_omsprd_virtualhoneypot_Microsoft_demovm10", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "westcentralus" - }, - { - "kind": "AAD", - "properties": { - "connectivityState": "Discovered", - "deviceVendor": "Microsoft", - "deviceType": "Azure Active Directory Identity Protection", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_omsprd", - "name": "aad_omsprd", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "westcentralus" - }, - { - "kind": "AAD", - "properties": { - "connectivityState": "Discovered", - "deviceVendor": "Microsoft", - "deviceType": "Azure Active Directory Identity Protection", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-ejp/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-ejp/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp", - "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "japaneast" - } - ] - } - } + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "centralus" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "AAD", + "properties": { + "connectivityState": "Discovered", + "deviceVendor": "Microsoft", + "deviceType": "Azure Active Directory Identity Protection", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-eus/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", + "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "eastus" + }, + { + "kind": "AAD", + "properties": { + "connectivityState": "Discovered", + "deviceVendor": "Microsoft", + "deviceType": "Azure Active Directory Identity Protection", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-weu/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu", + "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "westeurope" + }, + { + "kind": "CEF", + "properties": { + "lastEventReceived": "2018-05-09T10:30:11.523Z", + "hostname": "barracuda", + "deviceVendor": "barracudanetworks", + "deviceType": "WAF", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_barracudanetworks_waf_barracuda", + "name": "cef_omsprd_barracudanetworks_waf_barracuda", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "westcentralus" + }, + { + "kind": "CEF", + "properties": { + "lastEventReceived": "2018-05-08T15:42:22.57Z", + "hostname": "demovm20", + "deviceVendor": "virtualHoneypot", + "deviceType": "Microsoft", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_virtualhoneypot_Microsoft_demovm20", + "name": "cef_omsprd_virtualhoneypot_Microsoft_demovm20", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "westcentralus" + }, + { + "kind": "CEF", + "properties": { + "lastEventReceived": "2018-05-08T10:38:53.423Z", + "hostname": "demovm10", + "deviceVendor": "virtualHoneypot", + "deviceType": "Microsoft", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_virtualhoneypot_Microsoft_demovm10", + "name": "cef_omsprd_virtualhoneypot_Microsoft_demovm10", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "westcentralus" + }, + { + "kind": "AAD", + "properties": { + "connectivityState": "Discovered", + "deviceVendor": "Microsoft", + "deviceType": "Azure Active Directory Identity Protection", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_omsprd", + "name": "aad_omsprd", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "westcentralus" + }, + { + "kind": "AAD", + "properties": { + "connectivityState": "Discovered", + "deviceVendor": "Microsoft", + "deviceType": "Azure Active Directory Identity Protection", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-ejp/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-ejp/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp", + "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "japaneast" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolutionsSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolutionsSubscription_example.json index fa59f95dd6a9..5f03fb3070e4 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolutionsSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/ExternalSecuritySolutions/GetExternalSecuritySolutionsSubscription_example.json @@ -1,122 +1,122 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "kind": "AAD", - "properties": { - "connectivityState": "Discovered", - "deviceVendor": "Microsoft", - "deviceType": "Azure Active Directory Identity Protection", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-eus/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", - "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "eastus" - }, - { - "kind": "AAD", - "properties": { - "connectivityState": "Discovered", - "deviceVendor": "Microsoft", - "deviceType": "Azure Active Directory Identity Protection", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-weu/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu", - "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "westeurope" - }, - { - "kind": "CEF", - "properties": { - "lastEventReceived": "2018-05-09T10:30:11.523Z", - "hostname": "barracuda", - "deviceVendor": "barracudanetworks", - "deviceType": "WAF", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_barracudanetworks_waf_barracuda", - "name": "cef_omsprd_barracudanetworks_waf_barracuda", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "westcentralus" - }, - { - "kind": "CEF", - "properties": { - "lastEventReceived": "2018-05-08T15:42:22.57Z", - "hostname": "demovm20", - "deviceVendor": "virtualHoneypot", - "deviceType": "Microsoft", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_virtualhoneypot_Microsoft_demovm20", - "name": "cef_omsprd_virtualhoneypot_Microsoft_demovm20", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "westcentralus" - }, - { - "kind": "CEF", - "properties": { - "lastEventReceived": "2018-05-08T10:38:53.423Z", - "hostname": "demovm10", - "deviceVendor": "virtualHoneypot", - "deviceType": "Microsoft", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_virtualhoneypot_Microsoft_demovm10", - "name": "cef_omsprd_virtualhoneypot_Microsoft_demovm10", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "westcentralus" - }, - { - "kind": "AAD", - "properties": { - "connectivityState": "Discovered", - "deviceVendor": "Microsoft", - "deviceType": "Azure Active Directory Identity Protection", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_omsprd", - "name": "aad_omsprd", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "westcentralus" - }, - { - "kind": "AAD", - "properties": { - "connectivityState": "Discovered", - "deviceVendor": "Microsoft", - "deviceType": "Azure Active Directory Identity Protection", - "workspace": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-ejp/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp" - } - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-ejp/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp", - "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp", - "type": "Microsoft.Security/locations/externalSecuritySolutions", - "location": "japaneast" - } - ] - } - } + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "AAD", + "properties": { + "connectivityState": "Discovered", + "deviceVendor": "Microsoft", + "deviceType": "Azure Active Directory Identity Protection", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-eus/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", + "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-eus", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "eastus" + }, + { + "kind": "AAD", + "properties": { + "connectivityState": "Discovered", + "deviceVendor": "Microsoft", + "deviceType": "Azure Active Directory Identity Protection", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-weu/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu", + "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-weu", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "westeurope" + }, + { + "kind": "CEF", + "properties": { + "lastEventReceived": "2018-05-09T10:30:11.523Z", + "hostname": "barracuda", + "deviceVendor": "barracudanetworks", + "deviceType": "WAF", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_barracudanetworks_waf_barracuda", + "name": "cef_omsprd_barracudanetworks_waf_barracuda", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "westcentralus" + }, + { + "kind": "CEF", + "properties": { + "lastEventReceived": "2018-05-08T15:42:22.57Z", + "hostname": "demovm20", + "deviceVendor": "virtualHoneypot", + "deviceType": "Microsoft", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_virtualhoneypot_Microsoft_demovm20", + "name": "cef_omsprd_virtualhoneypot_Microsoft_demovm20", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "westcentralus" + }, + { + "kind": "CEF", + "properties": { + "lastEventReceived": "2018-05-08T10:38:53.423Z", + "hostname": "demovm10", + "deviceVendor": "virtualHoneypot", + "deviceType": "Microsoft", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/cef_omsprd_virtualhoneypot_Microsoft_demovm10", + "name": "cef_omsprd_virtualhoneypot_Microsoft_demovm10", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "westcentralus" + }, + { + "kind": "AAD", + "properties": { + "connectivityState": "Discovered", + "deviceVendor": "Microsoft", + "deviceType": "Azure Active Directory Identity Protection", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/unificationprod/providers/Microsoft.OperationalInsights/workspaces/omsprd" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/unificationprod/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_omsprd", + "name": "aad_omsprd", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "westcentralus" + }, + { + "kind": "AAD", + "properties": { + "connectivityState": "Discovered", + "deviceVendor": "Microsoft", + "deviceType": "Azure Active Directory Identity Protection", + "workspace": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-ejp/providers/Microsoft.OperationalInsights/workspaces/defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp" + } + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/defaultresourcegroup-ejp/providers/Microsoft.Security/locations/centralus/externalSecuritySolutions/aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp", + "name": "aad_defaultworkspace-20ff7fc3-e762-44dd-bd96-b71116dcdc23-ejp", + "type": "Microsoft.Security/locations/externalSecuritySolutions", + "location": "japaneast" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/CreateJitNetworkAccessPolicy_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/CreateJitNetworkAccessPolicy_example.json index 865c26da5cf9..73a31e88eb18 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/CreateJitNetworkAccessPolicy_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/CreateJitNetworkAccessPolicy_example.json @@ -1,93 +1,111 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "resourceGroupName": "myRg1", - "jitNetworkAccessPolicyName": "default", - "body":{ - "kind": "Basic", - "properties": { - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 22, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - }, - { - "number": 3389, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - } - ] - }], - "requests": [{ - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 3389, - "allowedSourceAddressPrefix": "192.127.0.2", - "endTimeUtc": "2018-05-17T09:06:45.5691611Z", - "status": "Initiated", - "statusReason": "UserRequested" - }] - }], - "startTimeUtc": "2018-05-17T08:06:45.5691611Z", - "requestor": "barbara@contoso.com" - }], - "provisioningState": "Succeeded" - }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", - "name": "default", - "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", - "location": "westeurope" - } - }, - "responses": { - "200": { - "body": { - "kind": "Basic", - "properties": { - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 22, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - }, - { - "number": 3389, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - } - ] - }], - "requests": [{ - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 3389, - "allowedSourceAddressPrefix": "192.127.0.2", - "endTimeUtc": "2018-05-17T09:06:45.5691611Z", - "status": "Initiated", - "statusReason": "UserRequested" - }] - }], - "startTimeUtc": "2018-05-17T08:06:45.5691611Z", - "requestor": "barbara@contoso.com" - }], - "provisioningState": "Succeeded" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "resourceGroupName": "myRg1", + "jitNetworkAccessPolicyName": "default", + "body": { + "kind": "Basic", + "properties": { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 22, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" + }, + { + "number": 3389, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" + } + ] + } + ], + "requests": [ + { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 3389, + "allowedSourceAddressPrefix": "192.127.0.2", + "endTimeUtc": "2018-05-17T09:06:45.5691611Z", + "status": "Initiated", + "statusReason": "UserRequested" + } + ] + } + ], + "startTimeUtc": "2018-05-17T08:06:45.5691611Z", + "requestor": "barbara@contoso.com" + } + ], + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", + "name": "default", + "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", + "location": "westeurope" + } + }, + "responses": { + "200": { + "body": { + "kind": "Basic", + "properties": { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 22, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", - "name": "default", - "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", - "location": "westeurope" + { + "number": 3389, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" + } + ] + } + ], + "requests": [ + { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 3389, + "allowedSourceAddressPrefix": "192.127.0.2", + "endTimeUtc": "2018-05-17T09:06:45.5691611Z", + "status": "Initiated", + "statusReason": "UserRequested" + } + ] + } + ], + "startTimeUtc": "2018-05-17T08:06:45.5691611Z", + "requestor": "barbara@contoso.com" } - } + ], + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", + "name": "default", + "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", + "location": "westeurope" + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/DeleteJitNetworkAccessPolicy_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/DeleteJitNetworkAccessPolicy_example.json index 06a2fe92aa72..92535c9abff5 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/DeleteJitNetworkAccessPolicy_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/DeleteJitNetworkAccessPolicy_example.json @@ -1,15 +1,13 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "resourceGroupName": "myRg1", - "jitNetworkAccessPolicyName": "default" - }, - "responses": { - "200": { - }, - "204": { - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "resourceGroupName": "myRg1", + "jitNetworkAccessPolicyName": "default" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroupLocation_example.json index 98bfc6898349..f933c5338620 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroupLocation_example.json @@ -1,54 +1,65 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "resourceGroupName": "myRg1" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "Basic", - "properties": { - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 22, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - }, - { - "number": 3389, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - } - ] - }], - "requests": [{ - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 3389, - "allowedSourceAddressPrefix": "192.127.0.2", - "endTimeUtc": "2018-05-17T09:06:45.5691611Z", - "status": "Initiated", - "statusReason": "UserRequested" - }] - }], - "startTimeUtc": "2018-05-17T08:06:45.5691611Z", - "requestor": "barbara@contoso.com" - }], - "provisioningState": "Succeeded" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "resourceGroupName": "myRg1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "Basic", + "properties": { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 22, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", - "name": "default", - "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", - "location": "westeurope" - }] - } - } + { + "number": 3389, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" + } + ] + } + ], + "requests": [ + { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 3389, + "allowedSourceAddressPrefix": "192.127.0.2", + "endTimeUtc": "2018-05-17T09:06:45.5691611Z", + "status": "Initiated", + "statusReason": "UserRequested" + } + ] + } + ], + "startTimeUtc": "2018-05-17T08:06:45.5691611Z", + "requestor": "barbara@contoso.com" + } + ], + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", + "name": "default", + "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", + "location": "westeurope" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroup_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroup_example.json index 9d46ba25fdb7..ce6b956f44a7 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroup_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroup_example.json @@ -1,53 +1,64 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg1" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "Basic", - "properties": { - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 22, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - }, - { - "number": 3389, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - } - ] - }], - "requests": [{ - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 3389, - "allowedSourceAddressPrefix": "192.127.0.2", - "endTimeUtc": "2018-05-17T09:06:45.5691611Z", - "status": "Initiated", - "statusReason": "UserRequested" - }] - }], - "startTimeUtc": "2018-05-17T08:06:45.5691611Z", - "requestor": "barbara@contoso.com" - }], - "provisioningState": "Succeeded" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "Basic", + "properties": { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 22, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", - "name": "default", - "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", - "location": "westeurope" - }] - } - } + { + "number": 3389, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" + } + ] + } + ], + "requests": [ + { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 3389, + "allowedSourceAddressPrefix": "192.127.0.2", + "endTimeUtc": "2018-05-17T09:06:45.5691611Z", + "status": "Initiated", + "statusReason": "UserRequested" + } + ] + } + ], + "startTimeUtc": "2018-05-17T08:06:45.5691611Z", + "requestor": "barbara@contoso.com" + } + ], + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", + "name": "default", + "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", + "location": "westeurope" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscriptionLocation_example.json index 051aa4e18891..082e8d9b3a9d 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscriptionLocation_example.json @@ -1,53 +1,64 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "Basic", - "properties": { - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 22, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - }, - { - "number": 3389, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - } - ] - }], - "requests": [{ - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 3389, - "allowedSourceAddressPrefix": "192.127.0.2", - "endTimeUtc": "2018-05-17T09:06:45.5691611Z", - "status": "Initiated", - "statusReason": "UserRequested" - }] - }], - "startTimeUtc": "2018-05-17T08:06:45.5691611Z", - "requestor": "barbara@contoso.com" - }], - "provisioningState": "Succeeded" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "Basic", + "properties": { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 22, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", - "name": "default", - "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", - "location": "westeurope" - }] - } - } + { + "number": 3389, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" + } + ] + } + ], + "requests": [ + { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 3389, + "allowedSourceAddressPrefix": "192.127.0.2", + "endTimeUtc": "2018-05-17T09:06:45.5691611Z", + "status": "Initiated", + "statusReason": "UserRequested" + } + ] + } + ], + "startTimeUtc": "2018-05-17T08:06:45.5691611Z", + "requestor": "barbara@contoso.com" + } + ], + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", + "name": "default", + "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", + "location": "westeurope" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscription_example.json index c87956a907b9..2681f4c7d255 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscription_example.json @@ -1,52 +1,63 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "Basic", - "properties": { - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 22, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - }, - { - "number": 3389, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - } - ] - }], - "requests": [{ - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 3389, - "allowedSourceAddressPrefix": "192.127.0.2", - "endTimeUtc": "2018-05-17T09:06:45.5691611Z", - "status": "Initiated", - "statusReason": "UserRequested" - }] - }], - "startTimeUtc": "2018-05-17T08:06:45.5691611Z", - "requestor": "barbara@contoso.com" - }], - "provisioningState": "Succeeded" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "Basic", + "properties": { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 22, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", - "name": "default", - "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", - "location": "westeurope" - }] - } - } + { + "number": 3389, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" + } + ] + } + ], + "requests": [ + { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 3389, + "allowedSourceAddressPrefix": "192.127.0.2", + "endTimeUtc": "2018-05-17T09:06:45.5691611Z", + "status": "Initiated", + "statusReason": "UserRequested" + } + ] + } + ], + "startTimeUtc": "2018-05-17T08:06:45.5691611Z", + "requestor": "barbara@contoso.com" + } + ], + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", + "name": "default", + "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", + "location": "westeurope" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPolicy_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPolicy_example.json index ea716b630370..253dabcb7421 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPolicy_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/GetJitNetworkAccessPolicy_example.json @@ -1,53 +1,62 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "resourceGroupName": "myRg1", - "jitNetworkAccessPolicyName": "default" - }, - "responses": { - "200": { - "body": { - "kind": "Basic", - "properties": { - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 22, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - }, - { - "number": 3389, - "protocol": "*", - "allowedSourceAddressPrefix": "*", - "maxRequestAccessDuration": "PT3H" - } - ] - }], - "requests": [{ - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 3389, - "allowedSourceAddressPrefix": "192.127.0.2", - "endTimeUtc": "2018-05-17T09:06:45.5691611Z", - "status": "Initiated", - "statusReason": "UserRequested" - }] - }], - "startTimeUtc": "2018-05-17T08:06:45.5691611Z", - "requestor": "barbara@contoso.com" - }], - "provisioningState": "Succeeded" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "resourceGroupName": "myRg1", + "jitNetworkAccessPolicyName": "default" + }, + "responses": { + "200": { + "body": { + "kind": "Basic", + "properties": { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 22, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" }, - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", - "name": "default", - "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", - "location": "westeurope" + { + "number": 3389, + "protocol": "*", + "allowedSourceAddressPrefix": "*", + "maxRequestAccessDuration": "PT3H" + } + ] } - } + ], + "requests": [ + { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 3389, + "allowedSourceAddressPrefix": "192.127.0.2", + "endTimeUtc": "2018-05-17T09:06:45.5691611Z", + "status": "Initiated", + "statusReason": "UserRequested" + } + ] + } + ], + "startTimeUtc": "2018-05-17T08:06:45.5691611Z", + "requestor": "barbara@contoso.com" + } + ], + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", + "name": "default", + "type": "Microsoft.Security/locations/jitNetworkAccessPolicies", + "location": "westeurope" + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/InitiateJitNetworkAccessPolicy_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/InitiateJitNetworkAccessPolicy_example.json index 9d970331e6a9..833fc2eff3b7 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/InitiateJitNetworkAccessPolicy_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/JitNetworkAccessPolicies/InitiateJitNetworkAccessPolicy_example.json @@ -1,38 +1,46 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "resourceGroupName": "myRg1", - "jitNetworkAccessPolicyName": "default", - "jitNetworkAccessPolicyInitiateType": "initiate", - "body": { - "virtualMachines": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 3389, - "duration": "PT1H", - "allowedSourceAddressPrefix": "192.127.0.2" - }] - }] - } - }, - "responses": { - "202": { - "body": { - "virtualMachines": [{ - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "ports": [{ - "number": 3389, - "allowedSourceAddressPrefix": "192.127.0.2", - "endTimeUtc": "2018-07-12T09:53:03.3658798Z", - "status": "Initiating", - "statusReason": "UserRequested" - }] - }], - "startTimeUtc": "2018-07-12T08:53:03.3658798Z", - "requestor": "barbara@contoso.com" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "resourceGroupName": "myRg1", + "jitNetworkAccessPolicyName": "default", + "jitNetworkAccessPolicyInitiateType": "initiate", + "body": { + "virtualMachines": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 3389, + "duration": "PT1H", + "allowedSourceAddressPrefix": "192.127.0.2" } + ] } + ] + } + }, + "responses": { + "202": { + "body": { + "virtualMachines": [ + { + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154baf/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "ports": [ + { + "number": 3389, + "allowedSourceAddressPrefix": "192.127.0.2", + "endTimeUtc": "2018-07-12T09:53:03.3658798Z", + "status": "Initiating", + "statusReason": "UserRequested" + } + ] + } + ], + "startTimeUtc": "2018-07-12T08:53:03.3658798Z", + "requestor": "barbara@contoso.com" + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Locations/GetLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Locations/GetLocation_example.json index 33afce562bd0..9dd8c5907e2d 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Locations/GetLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Locations/GetLocation_example.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "centralus" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/locations/centralus", - "name": "centralus", - "type": "Microsoft.Security/locations", - "properties": { - "homeRegionName": "centralus" - } - } + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "centralus" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/locations/centralus", + "name": "centralus", + "type": "Microsoft.Security/locations", + "properties": { + "homeRegionName": "centralus" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Locations/GetLocations_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Locations/GetLocations_example.json index 1525e1649377..bba10e88cbbf 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Locations/GetLocations_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Locations/GetLocations_example.json @@ -1,20 +1,22 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/locations/centralus", - "name": "centralus", - "type": "Microsoft.Security/locations", - "properties": { - "homeRegionName": "centralus" - } - }] + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/locations/centralus", + "name": "centralus", + "type": "Microsoft.Security/locations", + "properties": { + "homeRegionName": "centralus" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTaskResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTaskResourceGroupLocation_example.json index 2458dd524285..8fa2dbc88d21 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTaskResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTaskResourceGroupLocation_example.json @@ -1,34 +1,34 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg", - "ascLocation": "westeurope", - "taskName": "d55b4dc0-779c-c66c-33e5-d7bce24c4222" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/locations/westeurope/tasks/d55b4dc0-779c-c66c-33e5-d7bce24c4222", - "name": "d55b4dc0-779c-c66c-33e5-d7bce24c4222", - "type": "Microsoft.Security/locations/tasks", - "properties": { - "state": "Active", - "subState": "NA", - "creationTimeUtc": "2018-04-02T11:41:27.0541014Z", - "lastStateChangeTimeUtc": "2018-04-02T11:41:27.0541014Z", - "securityTaskParameters": { - "vmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", - "vmName": "vm1", - "severity": "High", - "isOsDiskEncrypted": false, - "isDataDiskEncrypted": false, - "name": "EncryptionOnVm", - "uniqueKey": "EncryptionOnVmTaskParameters_/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", - "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1" - } - } - } + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg", + "ascLocation": "westeurope", + "taskName": "d55b4dc0-779c-c66c-33e5-d7bce24c4222" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/locations/westeurope/tasks/d55b4dc0-779c-c66c-33e5-d7bce24c4222", + "name": "d55b4dc0-779c-c66c-33e5-d7bce24c4222", + "type": "Microsoft.Security/locations/tasks", + "properties": { + "state": "Active", + "subState": "NA", + "creationTimeUtc": "2018-04-02T11:41:27.0541014Z", + "lastStateChangeTimeUtc": "2018-04-02T11:41:27.0541014Z", + "securityTaskParameters": { + "vmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", + "vmName": "vm1", + "severity": "High", + "isOsDiskEncrypted": false, + "isDataDiskEncrypted": false, + "name": "EncryptionOnVm", + "uniqueKey": "EncryptionOnVmTaskParameters_/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", + "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTaskSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTaskSubscriptionLocation_example.json index e3bb9c0fa2b5..eba2b7297282 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTaskSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTaskSubscriptionLocation_example.json @@ -1,33 +1,33 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "taskName": "62609ee7-d0a5-8616-9fe4-1df5cca7758d" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/locations/westeurope/tasks/62609ee7-d0a5-8616-9fe4-1df5cca7758d", - "name": "62609ee7-d0a5-8616-9fe4-1df5cca7758d", - "type": "Microsoft.Security/locations/tasks", - "properties": { - "state": "Active", - "subState": "NA", - "creationTimeUtc": "2018-03-05T10:42:03.9935508Z", - "lastStateChangeTimeUtc": "2018-03-05T10:42:03.9935508Z", - "securityTaskParameters": { - "resourceName": "default", - "resourceType": "Subnet", - "resourceParent": "vnet1", - "location": "uksouth", - "resourceGroup": "myRg", - "name": "NetworkSecurityGroupMissingOnSubnet", - "uniqueKey": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", - "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default" - } - } - } + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "taskName": "62609ee7-d0a5-8616-9fe4-1df5cca7758d" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/locations/westeurope/tasks/62609ee7-d0a5-8616-9fe4-1df5cca7758d", + "name": "62609ee7-d0a5-8616-9fe4-1df5cca7758d", + "type": "Microsoft.Security/locations/tasks", + "properties": { + "state": "Active", + "subState": "NA", + "creationTimeUtc": "2018-03-05T10:42:03.9935508Z", + "lastStateChangeTimeUtc": "2018-03-05T10:42:03.9935508Z", + "securityTaskParameters": { + "resourceName": "default", + "resourceType": "Subnet", + "resourceParent": "vnet1", + "location": "uksouth", + "resourceGroup": "myRg", + "name": "NetworkSecurityGroupMissingOnSubnet", + "uniqueKey": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", + "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksResourceGroupLocation_example.json index 060bd0ff0b85..4ace40c42115 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksResourceGroupLocation_example.json @@ -1,37 +1,37 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg", - "ascLocation": "westeurope" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/locations/westeurope/tasks/d55b4dc0-779c-c66c-33e5-d7bce24c4222", - "name": "d55b4dc0-779c-c66c-33e5-d7bce24c4222", - "type": "Microsoft.Security/locations/tasks", - "properties": { - "state": "Active", - "subState": "NA", - "creationTimeUtc": "2018-04-02T11:41:27.0541014Z", - "lastStateChangeTimeUtc": "2018-04-02T11:41:27.0541014Z", - "securityTaskParameters": { - "vmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", - "vmName": "vm1", - "severity": "High", - "isOsDiskEncrypted": false, - "isDataDiskEncrypted": false, - "name": "EncryptionOnVm", - "uniqueKey": "EncryptionOnVmTaskParameters_/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", - "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1" - } - } - } - ] + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg", + "ascLocation": "westeurope" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/locations/westeurope/tasks/d55b4dc0-779c-c66c-33e5-d7bce24c4222", + "name": "d55b4dc0-779c-c66c-33e5-d7bce24c4222", + "type": "Microsoft.Security/locations/tasks", + "properties": { + "state": "Active", + "subState": "NA", + "creationTimeUtc": "2018-04-02T11:41:27.0541014Z", + "lastStateChangeTimeUtc": "2018-04-02T11:41:27.0541014Z", + "securityTaskParameters": { + "vmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", + "vmName": "vm1", + "severity": "High", + "isOsDiskEncrypted": false, + "isDataDiskEncrypted": false, + "name": "EncryptionOnVm", + "uniqueKey": "EncryptionOnVmTaskParameters_/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", + "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1" + } } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksSubscriptionLocation_example.json index 1c919e8baf2f..e36ade6aeb20 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksSubscriptionLocation_example.json @@ -1,56 +1,57 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/locations/westeurope/tasks/62609ee7-d0a5-8616-9fe4-1df5cca7758d", - "name": "62609ee7-d0a5-8616-9fe4-1df5cca7758d", - "type": "Microsoft.Security/locations/tasks", - "properties": { - "state": "Active", - "subState": "NA", - "creationTimeUtc": "2018-03-05T10:42:03.9935508Z", - "lastStateChangeTimeUtc": "2018-03-05T10:42:03.9935508Z", - "securityTaskParameters": { - "resourceName": "default", - "resourceType": "Subnet", - "resourceParent": "vnet1", - "location": "uksouth", - "resourceGroup": "myRg", - "name": "NetworkSecurityGroupMissingOnSubnet", - "uniqueKey": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", - "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default" - } - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/locations/westeurope/tasks/d55b4dc0-779c-c66c-33e5-d7bce24c4222", - "name": "d55b4dc0-779c-c66c-33e5-d7bce24c4222", - "type": "Microsoft.Security/locations/tasks", - "properties": { - "state": "Active", - "subState": "NA", - "creationTimeUtc": "2018-04-02T11:41:27.0541014Z", - "lastStateChangeTimeUtc": "2018-04-02T11:41:27.0541014Z", - "securityTaskParameters": { - "vmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", - "vmName": "vm1", - "severity": "High", - "isOsDiskEncrypted": false, - "isDataDiskEncrypted": false, - "name": "EncryptionOnVm", - "uniqueKey": "EncryptionOnVmTaskParameters_/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", - "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1" - } - } - } - ] + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/locations/westeurope/tasks/62609ee7-d0a5-8616-9fe4-1df5cca7758d", + "name": "62609ee7-d0a5-8616-9fe4-1df5cca7758d", + "type": "Microsoft.Security/locations/tasks", + "properties": { + "state": "Active", + "subState": "NA", + "creationTimeUtc": "2018-03-05T10:42:03.9935508Z", + "lastStateChangeTimeUtc": "2018-03-05T10:42:03.9935508Z", + "securityTaskParameters": { + "resourceName": "default", + "resourceType": "Subnet", + "resourceParent": "vnet1", + "location": "uksouth", + "resourceGroup": "myRg", + "name": "NetworkSecurityGroupMissingOnSubnet", + "uniqueKey": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", + "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default" + } } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/locations/westeurope/tasks/d55b4dc0-779c-c66c-33e5-d7bce24c4222", + "name": "d55b4dc0-779c-c66c-33e5-d7bce24c4222", + "type": "Microsoft.Security/locations/tasks", + "properties": { + "state": "Active", + "subState": "NA", + "creationTimeUtc": "2018-04-02T11:41:27.0541014Z", + "lastStateChangeTimeUtc": "2018-04-02T11:41:27.0541014Z", + "securityTaskParameters": { + "vmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", + "vmName": "vm1", + "severity": "High", + "isOsDiskEncrypted": false, + "isDataDiskEncrypted": false, + "name": "EncryptionOnVm", + "uniqueKey": "EncryptionOnVmTaskParameters_/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", + "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1" + } + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksSubscription_example.json index e2547ab81bbc..cb12f84e4c9b 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/GetTasksSubscription_example.json @@ -1,55 +1,56 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/locations/westeurope/tasks/62609ee7-d0a5-8616-9fe4-1df5cca7758d", - "name": "62609ee7-d0a5-8616-9fe4-1df5cca7758d", - "type": "Microsoft.Security/locations/tasks", - "properties": { - "state": "Active", - "subState": "NA", - "creationTimeUtc": "2018-03-05T10:42:03.9935508Z", - "lastStateChangeTimeUtc": "2018-03-05T10:42:03.9935508Z", - "securityTaskParameters": { - "resourceName": "default", - "resourceType": "Subnet", - "resourceParent": "vnet1", - "location": "uksouth", - "resourceGroup": "myRg", - "name": "NetworkSecurityGroupMissingOnSubnet", - "uniqueKey": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", - "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default" - } - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/locations/westeurope/tasks/d55b4dc0-779c-c66c-33e5-d7bce24c4222", - "name": "d55b4dc0-779c-c66c-33e5-d7bce24c4222", - "type": "Microsoft.Security/locations/tasks", - "properties": { - "state": "Active", - "subState": "NA", - "creationTimeUtc": "2018-04-02T11:41:27.0541014Z", - "lastStateChangeTimeUtc": "2018-04-02T11:41:27.0541014Z", - "securityTaskParameters": { - "vmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", - "vmName": "vm1", - "severity": "High", - "isOsDiskEncrypted": false, - "isDataDiskEncrypted": false, - "name": "EncryptionOnVm", - "uniqueKey": "EncryptionOnVmTaskParameters_/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", - "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1" - } - } - } - ] + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/locations/westeurope/tasks/62609ee7-d0a5-8616-9fe4-1df5cca7758d", + "name": "62609ee7-d0a5-8616-9fe4-1df5cca7758d", + "type": "Microsoft.Security/locations/tasks", + "properties": { + "state": "Active", + "subState": "NA", + "creationTimeUtc": "2018-03-05T10:42:03.9935508Z", + "lastStateChangeTimeUtc": "2018-03-05T10:42:03.9935508Z", + "securityTaskParameters": { + "resourceName": "default", + "resourceType": "Subnet", + "resourceParent": "vnet1", + "location": "uksouth", + "resourceGroup": "myRg", + "name": "NetworkSecurityGroupMissingOnSubnet", + "uniqueKey": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", + "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default" + } } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/locations/westeurope/tasks/d55b4dc0-779c-c66c-33e5-d7bce24c4222", + "name": "d55b4dc0-779c-c66c-33e5-d7bce24c4222", + "type": "Microsoft.Security/locations/tasks", + "properties": { + "state": "Active", + "subState": "NA", + "creationTimeUtc": "2018-04-02T11:41:27.0541014Z", + "lastStateChangeTimeUtc": "2018-04-02T11:41:27.0541014Z", + "securityTaskParameters": { + "vmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", + "vmName": "vm1", + "severity": "High", + "isOsDiskEncrypted": false, + "isDataDiskEncrypted": false, + "name": "EncryptionOnVm", + "uniqueKey": "EncryptionOnVmTaskParameters_/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", + "resourceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1" + } + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/UpdateTaskResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/UpdateTaskResourceGroupLocation_example.json index aa441126d1a3..e66a3a74ec01 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/UpdateTaskResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/UpdateTaskResourceGroupLocation_example.json @@ -1,14 +1,13 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "resourceGroupName": "myRg", - "taskName": "d55b4dc0-779c-c66c-33e5-d7bce24c4222", - "taskUpdateActionType": "Dismiss" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "resourceGroupName": "myRg", + "taskName": "d55b4dc0-779c-c66c-33e5-d7bce24c4222", + "taskUpdateActionType": "Dismiss" + }, + "responses": { + "204": {} + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/UpdateTaskSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/UpdateTaskSubscriptionLocation_example.json index 0be932e8e9f2..59585d5afc51 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/UpdateTaskSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Tasks/UpdateTaskSubscriptionLocation_example.json @@ -1,13 +1,12 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "taskName": "62609ee7-d0a5-8616-9fe4-1df5cca7758d", - "taskUpdateActionType": "Dismiss" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "taskName": "62609ee7-d0a5-8616-9fe4-1df5cca7758d", + "taskUpdateActionType": "Dismiss" + }, + "responses": { + "204": {} + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopologySubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopologySubscriptionLocation_example.json index 4365714df339..04651f81f7ba 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopologySubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopologySubscriptionLocation_example.json @@ -1,64 +1,63 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad", - "ascLocation": "centralus" - }, - "responses": { - "200": { - "body": { - "value": [ + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad", + "ascLocation": "centralus" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "calculatedDateTime": "2018-07-10T13:56:10.5755270Z", + "topologyResources": [ + { + "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet", + "severity": "Healthy", + "networkZones": "Internal", + "recommendationsExist": false, + "topologyScore": 0, + "location": "westus", + "children": [ { - "properties": { - "calculatedDateTime": "2018-07-10T13:56:10.5755270Z", - "topologyResources": [ - { - "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet", - "severity": "Healthy", - "networkZones": "Internal", - "recommendationsExist": false, - "topologyScore": 0, - "location": "westus", - "children": [ - { - "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet" - } - ] - } - ] - }, - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Security/locations/centralus/topologies/vnets", - "name": "vnets", - "type": "Microsoft.Security/locations/topologies", - "location": "westus" - }, + "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet" + } + ] + } + ] + }, + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Security/locations/centralus/topologies/vnets", + "name": "vnets", + "type": "Microsoft.Security/locations/topologies", + "location": "westus" + }, + { + "properties": { + "calculatedDateTime": "2018-07-10T13:56:10.5755270Z", + "topologyResources": [ + { + "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet", + "severity": "Healthy", + "networkZones": "Internal", + "recommendationsExist": false, + "topologyScore": 5, + "location": "westus", + "parents": [ { - "properties": { - "calculatedDateTime": "2018-07-10T13:56:10.5755270Z", - "topologyResources": [ - { - "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet", - "severity": "Healthy", - "networkZones": "Internal", - "recommendationsExist": false, - "topologyScore": 5, - "location": "westus", - "parents": [ - { - "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet" - } - ] - } - ] - }, - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Security/locations/centralus/topologies/subnets", - "name": "subnets", - "type": "Microsoft.Security/locations/topologies", - "location": "westus" + "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet" } - ] - } - - } + ] + } + ] + }, + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Security/locations/centralus/topologies/subnets", + "name": "subnets", + "type": "Microsoft.Security/locations/topologies", + "location": "westus" + } + ] + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopologySubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopologySubscription_example.json index 4de5f4173c7a..f5709935a6f2 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopologySubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopologySubscription_example.json @@ -1,63 +1,62 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad" - }, - "responses": { - "200": { - "body": { - "value": [ + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "calculatedDateTime": "2018-07-10T13:56:10.5755270Z", + "topologyResources": [ + { + "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet", + "severity": "Healthy", + "networkZones": "Internal", + "recommendationsExist": false, + "topologyScore": 0, + "location": "westus", + "children": [ { - "properties": { - "calculatedDateTime": "2018-07-10T13:56:10.5755270Z", - "topologyResources": [ - { - "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet", - "severity": "Healthy", - "networkZones": "Internal", - "recommendationsExist": false, - "topologyScore": 0, - "location": "westus", - "children": [ - { - "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet" - } - ] - } - ] - }, - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Security/locations/centralus/topologies/vnets", - "name": "vnets", - "type": "Microsoft.Security/locations/topologies", - "location": "westus" - }, + "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet" + } + ] + } + ] + }, + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Security/locations/centralus/topologies/vnets", + "name": "vnets", + "type": "Microsoft.Security/locations/topologies", + "location": "westus" + }, + { + "properties": { + "calculatedDateTime": "2018-07-10T13:56:10.5755270Z", + "topologyResources": [ + { + "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet", + "severity": "Healthy", + "networkZones": "Internal", + "recommendationsExist": false, + "topologyScore": 5, + "location": "westus", + "parents": [ { - "properties": { - "calculatedDateTime": "2018-07-10T13:56:10.5755270Z", - "topologyResources": [ - { - "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet", - "severity": "Healthy", - "networkZones": "Internal", - "recommendationsExist": false, - "topologyScore": 5, - "location": "westus", - "parents": [ - { - "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet" - } - ] - } - ] - }, - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Security/locations/centralus/topologies/subnets", - "name": "subnets", - "type": "Microsoft.Security/locations/topologies", - "location": "westus" + "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet" } - ] - } - - } + ] + } + ] + }, + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Security/locations/centralus/topologies/subnets", + "name": "subnets", + "type": "Microsoft.Security/locations/topologies", + "location": "westus" + } + ] + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopology_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopology_example.json index 6251841be30d..79beb03facac 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopology_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/examples/Topology/GetTopology_example.json @@ -1,36 +1,37 @@ { - "parameters": { - "api-version": "2015-06-01-preview", - "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad", - "resourceGroupName": "myservers", - "ascLocation": "centralus", - "topologyResourceName": "vnets" - }, - "responses": { - "200": { - "body": { - "properties": { - "calculatedDateTime": "2018-07-10T13:56:10.5755270Z", - "topologyResources": [ - { - "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet", - "severity": "Healthy", - "networkZones": "InternetFacing", - "recommendationsExist": false, - "topologyScore": 0, - "location": "westus", - "children": [{ - "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet" - } - ] - } - ] - }, - "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Security/locations/centralus/topologies/vnets", - "name": "vnets", - "type": "Microsoft.Security/locations/topologies", - "location": "westus" + "parameters": { + "api-version": "2015-06-01-preview", + "subscriptionId": "3eeab341-f466-499c-a8be-85427e154bad", + "resourceGroupName": "myservers", + "ascLocation": "centralus", + "topologyResourceName": "vnets" + }, + "responses": { + "200": { + "body": { + "properties": { + "calculatedDateTime": "2018-07-10T13:56:10.5755270Z", + "topologyResources": [ + { + "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet", + "severity": "Healthy", + "networkZones": "InternetFacing", + "recommendationsExist": false, + "topologyScore": 0, + "location": "westus", + "children": [ + { + "resourceId": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet" + } + ] } - } + ] + }, + "id": "/subscriptions/3eeab341-f466-499c-a8be-85427e154bad/resourceGroups/myservers/providers/Microsoft.Security/locations/centralus/topologies/vnets", + "name": "vnets", + "type": "Microsoft.Security/locations/topologies", + "location": "westus" + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/externalSecuritySolutions.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/externalSecuritySolutions.json index 5fae80b927c9..f20d5a3180c8 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/externalSecuritySolutions.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/externalSecuritySolutions.json @@ -6,12 +6,20 @@ "version": "2015-06-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -34,7 +42,9 @@ } }, "description": "Gets a list of external security solutions for the subscription.", - "tags": ["ExternalSecuritySolutions"], + "tags": [ + "ExternalSecuritySolutions" + ], "operationId": "ExternalSecuritySolutions_List", "parameters": [ { @@ -71,7 +81,9 @@ } }, "description": "Gets a list of external Security Solutions for the subscription and location.", - "tags": ["ExternalSecuritySolutions"], + "tags": [ + "ExternalSecuritySolutions" + ], "operationId": "ExternalSecuritySolutions_ListByHomeRegion", "parameters": [ { @@ -111,7 +123,9 @@ } }, "description": "Gets a specific external Security Solution.", - "tags": ["ExternalSecuritySolutions"], + "tags": [ + "ExternalSecuritySolutions" + ], "operationId": "ExternalSecuritySolutions_Get", "parameters": [ { @@ -232,7 +246,11 @@ "kind": { "type": "string", "description": "The kind of the external solution", - "enum": ["CEF", "ATA", "AAD"], + "enum": [ + "CEF", + "ATA", + "AAD" + ], "x-ms-enum": { "name": "ExternalSecuritySolutionKind", "modelAsString": true, @@ -284,7 +302,11 @@ "connectivityState": { "type": "string", "title": "The connectivity state of the external AAD solution ", - "enum": ["Discovered", "NotLicensed", "Connected"], + "enum": [ + "Discovered", + "NotLicensed", + "Connected" + ], "x-ms-enum": { "name": "AadConnectivityState", "modelAsString": true, diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/jitNetworkAccessPolicies.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/jitNetworkAccessPolicies.json index ece915c4c952..914dafb9208a 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/jitNetworkAccessPolicies.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/jitNetworkAccessPolicies.json @@ -1,754 +1,754 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2015-06-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2015-06-01-preview" + }, + "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.Security/jitNetworkAccessPolicies": { + "get": { + "x-ms-examples": { + "Get JIT network access policies on a subscription": { + "$ref": "./examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscription_example.json" + } + }, + "tags": [ + "JitNetworkAccessPolicies" + ], + "description": "Policies for protecting resources using Just-in-Time access control.", + "operationId": "JitNetworkAccessPolicies_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/JitNetworkAccessPoliciesList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/jitNetworkAccessPolicies": { - "get": { - "x-ms-examples": { - "Get JIT network access policies on a subscription": { - "$ref": "./examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscription_example.json" - } - }, - "tags": [ - "JitNetworkAccessPolicies" - ], - "description": "Policies for protecting resources using Just-in-Time access control.", - "operationId": "JitNetworkAccessPolicies_List", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/JitNetworkAccessPoliciesList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/jitNetworkAccessPolicies": { + "get": { + "x-ms-examples": { + "Get JIT network access policies on a subscription from a security data location": { + "$ref": "./examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscriptionLocation_example.json" + } + }, + "tags": [ + "JitNetworkAccessPolicies" + ], + "description": "Policies for protecting resources using Just-in-Time access control for the subscription, location", + "operationId": "JitNetworkAccessPolicies_ListByRegion", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/JitNetworkAccessPoliciesList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/jitNetworkAccessPolicies": { + "get": { + "x-ms-examples": { + "Get JIT network access policies on a resource group": { + "$ref": "./examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroup_example.json" + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/jitNetworkAccessPolicies": { - "get": { - "x-ms-examples": { - "Get JIT network access policies on a subscription from a security data location": { - "$ref": "./examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesSubscriptionLocation_example.json" - } - }, - "tags": [ - "JitNetworkAccessPolicies" - ], - "description": "Policies for protecting resources using Just-in-Time access control for the subscription, location", - "operationId": "JitNetworkAccessPolicies_ListByRegion", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/JitNetworkAccessPoliciesList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "tags": [ + "JitNetworkAccessPolicies" + ], + "description": "Policies for protecting resources using Just-in-Time access control for the subscription, location", + "operationId": "JitNetworkAccessPolicies_ListByResourceGroup", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/JitNetworkAccessPoliciesList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/jitNetworkAccessPolicies": { + "get": { + "x-ms-examples": { + "Get JIT network access policies on a resource group from a security data location": { + "$ref": "./examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroupLocation_example.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/jitNetworkAccessPolicies": { - "get": { - "x-ms-examples": { - "Get JIT network access policies on a resource group": { - "$ref": "./examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroup_example.json" - } - }, - "tags": [ - "JitNetworkAccessPolicies" - ], - "description": "Policies for protecting resources using Just-in-Time access control for the subscription, location", - "operationId": "JitNetworkAccessPolicies_ListByResourceGroup", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/JitNetworkAccessPoliciesList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "tags": [ + "JitNetworkAccessPolicies" + ], + "description": "Policies for protecting resources using Just-in-Time access control for the subscription, location", + "operationId": "JitNetworkAccessPolicies_ListByResourceGroupAndRegion", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/JitNetworkAccessPoliciesList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/jitNetworkAccessPolicies/{jitNetworkAccessPolicyName}": { + "get": { + "x-ms-examples": { + "Get JIT network access policy": { + "$ref": "./examples/JitNetworkAccessPolicies/GetJitNetworkAccessPolicy_example.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/jitNetworkAccessPolicies": { - "get": { - "x-ms-examples": { - "Get JIT network access policies on a resource group from a security data location": { - "$ref": "./examples/JitNetworkAccessPolicies/GetJitNetworkAccessPoliciesResourceGroupLocation_example.json" - } - }, - "tags": [ - "JitNetworkAccessPolicies" - ], - "description": "Policies for protecting resources using Just-in-Time access control for the subscription, location", - "operationId": "JitNetworkAccessPolicies_ListByResourceGroupAndRegion", - "produces": [ - "application/json" - ], - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/JitNetworkAccessPoliciesList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "tags": [ + "JitNetworkAccessPolicies" + ], + "description": "Policies for protecting resources using Just-in-Time access control for the subscription, location", + "operationId": "JitNetworkAccessPolicies_Get", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "#/parameters/JitNetworkAccessPolicyName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/JitNetworkAccessPolicy" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + } + }, + "put": { + "x-ms-examples": { + "Create JIT network access policy": { + "$ref": "./examples/JitNetworkAccessPolicies/CreateJitNetworkAccessPolicy_example.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/jitNetworkAccessPolicies/{jitNetworkAccessPolicyName}": { - "get": { - "x-ms-examples": { - "Get JIT network access policy": { - "$ref": "./examples/JitNetworkAccessPolicies/GetJitNetworkAccessPolicy_example.json" - } - }, - "tags": [ - "JitNetworkAccessPolicies" - ], - "description": "Policies for protecting resources using Just-in-Time access control for the subscription, location", - "operationId": "JitNetworkAccessPolicies_Get", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "#/parameters/JitNetworkAccessPolicyName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/JitNetworkAccessPolicy" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Create JIT network access policy": { - "$ref": "./examples/JitNetworkAccessPolicies/CreateJitNetworkAccessPolicy_example.json" - } - }, - "tags": [ - "JitNetworkAccessPolicies" - ], - "description": "Create a policy for protecting resources using Just-in-Time access control", - "operationId": "JitNetworkAccessPolicies_CreateOrUpdate", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "#/parameters/JitNetworkAccessPolicyName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/JitNetworkAccessPolicy" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/JitNetworkAccessPolicy" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete a JIT network access policy": { - "$ref": "./examples/JitNetworkAccessPolicies/DeleteJitNetworkAccessPolicy_example.json" - } - }, - "tags": [ - "JitNetworkAccessPolicies" - ], - "description": "Delete a Just-in-Time access control policy.", - "operationId": "JitNetworkAccessPolicies_Delete", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "#/parameters/JitNetworkAccessPolicyName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - } - ], - "responses": { - "200": { - "description": "OK - Resource was deleted" - }, - "204": { - "description": "No Content - Resource does not exist" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "tags": [ + "JitNetworkAccessPolicies" + ], + "description": "Create a policy for protecting resources using Just-in-Time access control", + "operationId": "JitNetworkAccessPolicies_CreateOrUpdate", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "#/parameters/JitNetworkAccessPolicyName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/JitNetworkAccessPolicy" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/JitNetworkAccessPolicy" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } + }, + "delete": { + "x-ms-examples": { + "Delete a JIT network access policy": { + "$ref": "./examples/JitNetworkAccessPolicies/DeleteJitNetworkAccessPolicy_example.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/jitNetworkAccessPolicies/{jitNetworkAccessPolicyName}/{jitNetworkAccessPolicyInitiateType}": { - "post": { - "x-ms-examples": { - "Initiate an action on a JIT network access policy": { - "$ref": "./examples/JitNetworkAccessPolicies/InitiateJitNetworkAccessPolicy_example.json" - } - }, - "tags": [ - "JitNetworkAccessPolicies" - ], - "description": "Initiate a JIT access from a specific Just-in-Time policy configuration.", - "operationId": "JitNetworkAccessPolicies_Initiate", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "#/parameters/JitNetworkAccessPolicyName" - }, - { - "$ref": "#/parameters/JitNetworkAccessPolicyInitiateType" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/JitNetworkAccessPolicyInitiateRequest" - } - ], - "responses": { - "202": { - "description": "Accepted", - "schema": { - "$ref": "#/definitions/JitNetworkAccessRequest" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "tags": [ + "JitNetworkAccessPolicies" + ], + "description": "Delete a Just-in-Time access control policy.", + "operationId": "JitNetworkAccessPolicies_Delete", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "#/parameters/JitNetworkAccessPolicyName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + } + ], + "responses": { + "200": { + "description": "OK - Resource was deleted" + }, + "204": { + "description": "No Content - Resource does not exist" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } } + } }, - "definitions": { - "JitNetworkAccessPoliciesList": { - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/JitNetworkAccessPolicy" - } - }, - "nextLink": { - "readOnly": true, - "type": "string", - "description": "The URI to fetch the next page." - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/jitNetworkAccessPolicies/{jitNetworkAccessPolicyName}/{jitNetworkAccessPolicyInitiateType}": { + "post": { + "x-ms-examples": { + "Initiate an action on a JIT network access policy": { + "$ref": "./examples/JitNetworkAccessPolicies/InitiateJitNetworkAccessPolicy_example.json" + } + }, + "tags": [ + "JitNetworkAccessPolicies" + ], + "description": "Initiate a JIT access from a specific Just-in-Time policy configuration.", + "operationId": "JitNetworkAccessPolicies_Initiate", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "#/parameters/JitNetworkAccessPolicyName" + }, + { + "$ref": "#/parameters/JitNetworkAccessPolicyInitiateType" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/JitNetworkAccessPolicyInitiateRequest" + } + ], + "responses": { + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/JitNetworkAccessRequest" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } + } + } + }, + "definitions": { + "JitNetworkAccessPoliciesList": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/JitNetworkAccessPolicy" + } }, - "JitNetworkAccessPolicy": { - "type": "object", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/JitNetworkAccessPolicyProperties" - } - }, - "required": [ - "properties" - ], - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/Resource" - }, - { - "$ref": "../../../common/v1/types.json#/definitions/Kind" - }, - { - "$ref": "../../../common/v1/types.json#/definitions/Location" - } - ] + "nextLink": { + "readOnly": true, + "type": "string", + "description": "The URI to fetch the next page." + } + } + }, + "JitNetworkAccessPolicy": { + "type": "object", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/JitNetworkAccessPolicyProperties" + } + }, + "required": [ + "properties" + ], + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" }, - "JitNetworkAccessPolicyProperties": { - "type": "object", - "properties": { - "virtualMachines": { - "type": "array", - "description": "Configurations for Microsoft.Compute/virtualMachines resource type.", - "items": { - "$ref": "#/definitions/JitNetworkAccessPolicyVirtualMachine" - } - }, - "requests": { - "type": "array", - "items": { - "$ref": "#/definitions/JitNetworkAccessRequest" - } - }, - "provisioningState": { - "type": "string", - "readOnly": true, - "description": "Gets the provisioning state of the Just-in-Time policy." - } - }, - "required": [ - "virtualMachines" - ] + { + "$ref": "../../../common/v1/types.json#/definitions/Kind" }, - "JitNetworkAccessPolicyVirtualMachine": { - "type": "object", - "required": [ - "id", - "ports" - ], - "properties": { - "id": { - "type": "string", - "description": "Resource ID of the virtual machine that is linked to this policy" - }, - "ports": { - "type": "array", - "description": "Port configurations for the virtual machine", - "items": { - "$ref": "#/definitions/JitNetworkAccessPortRule" - } - } - } + { + "$ref": "../../../common/v1/types.json#/definitions/Location" + } + ] + }, + "JitNetworkAccessPolicyProperties": { + "type": "object", + "properties": { + "virtualMachines": { + "type": "array", + "description": "Configurations for Microsoft.Compute/virtualMachines resource type.", + "items": { + "$ref": "#/definitions/JitNetworkAccessPolicyVirtualMachine" + } }, - "JitNetworkAccessPortRule": { - "type": "object", - "properties": { - "number": { - "$ref": "#/definitions/PortNumber" - }, - "protocol": { - "type": "string", - "enum": [ - "TCP", - "UDP", - "*" - ], - "x-ms-enum": { - "name": "protocol", - "modelAsString": true, - "values": [ - { - "value": "TCP" - }, - { - "value": "UDP" - }, - { - "value": "*", - "name": "All" - } - ] - } - }, - "allowedSourceAddressPrefix": { - "type": "string", - "description": "Mutually exclusive with the \"allowedSourceAddressPrefixes\" parameter. Should be an IP address or CIDR, for example \"192.168.0.3\" or \"192.168.0.0/16\"." - }, - "allowedSourceAddressPrefixes": { - "type": "array", - "description": "Mutually exclusive with the \"allowedSourceAddressPrefix\" parameter.", - "items": { - "type": "string", - "description": "IP address or CIDR, for example \"192.168.0.3\" or \"192.168.0.0/16\"." - } - }, - "maxRequestAccessDuration": { - "type": "string", - "description": "Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day" - } - }, - "required": [ - "maxRequestAccessDuration", - "number", - "protocol" - ] + "requests": { + "type": "array", + "items": { + "$ref": "#/definitions/JitNetworkAccessRequest" + } }, - "JitNetworkAccessRequest": { - "type": "object", - "properties": { - "virtualMachines": { - "type": "array", - "items": { - "$ref": "#/definitions/JitNetworkAccessRequestVirtualMachine" - } - }, - "startTimeUtc": { - "type": "string", - "format": "date-time", - "description": "The start time of the request in UTC" - }, - "requestor": { - "type": "string", - "description": "The identity of the person who made the request" - } - }, - "required": [ - "requestor", - "startTimeUtc", - "virtualMachines" - ] + "provisioningState": { + "type": "string", + "readOnly": true, + "description": "Gets the provisioning state of the Just-in-Time policy." + } + }, + "required": [ + "virtualMachines" + ] + }, + "JitNetworkAccessPolicyVirtualMachine": { + "type": "object", + "required": [ + "id", + "ports" + ], + "properties": { + "id": { + "type": "string", + "description": "Resource ID of the virtual machine that is linked to this policy" }, - "JitNetworkAccessRequestVirtualMachine": { - "type": "object", - "required": [ - "id", - "ports" - ], - "properties": { - "id": { - "type": "string", - "description": "Resource ID of the virtual machine that is linked to this policy" - }, - "ports": { - "type": "array", - "description": "The ports that were opened for the virtual machine", - "items": { - "$ref": "#/definitions/JitNetworkAccessRequestPort" - } - } - } + "ports": { + "type": "array", + "description": "Port configurations for the virtual machine", + "items": { + "$ref": "#/definitions/JitNetworkAccessPortRule" + } + } + } + }, + "JitNetworkAccessPortRule": { + "type": "object", + "properties": { + "number": { + "$ref": "#/definitions/PortNumber" }, - "JitNetworkAccessRequestPort": { - "type": "object", - "properties": { - "number": { - "$ref": "#/definitions/PortNumber" - }, - "allowedSourceAddressPrefix": { - "type": "string", - "description": "Mutually exclusive with the \"allowedSourceAddressPrefixes\" parameter. Should be an IP address or CIDR, for example \"192.168.0.3\" or \"192.168.0.0/16\"." - }, - "allowedSourceAddressPrefixes": { - "type": "array", - "description": "Mutually exclusive with the \"allowedSourceAddressPrefix\" parameter.", - "items": { - "description": "IP address or CIDR, for example \"192.168.0.3\" or \"192.168.0.0/16\".", - "type": "string" - } - }, - "endTimeUtc": { - "type": "string", - "format": "date-time", - "description": "The date & time at which the request ends in UTC" - }, - "status": { - "type": "string", - "description": "The status of the port", - "enum": [ - "Revoked", - "Initiated" - ], - "x-ms-enum": { - "name": "status", - "modelAsString": true, - "values": [ - { - "value": "Revoked" - }, - { - "value": "Initiated" - } - ] - } - }, - "statusReason": { - "type": "string", - "description": "A description of why the `status` has its value", - "enum": [ - "Expired", - "UserRequested", - "NewerRequestInitiated" - ], - "x-ms-enum": { - "name": "statusReason", - "modelAsString": true, - "values": [ - { - "value": "Expired" - }, - { - "value": "UserRequested" - }, - { - "value": "NewerRequestInitiated" - } - ] - } - } - }, - "required": [ - "endTimeUtc", - "number", - "status", - "statusReason" + "protocol": { + "type": "string", + "enum": [ + "TCP", + "UDP", + "*" + ], + "x-ms-enum": { + "name": "protocol", + "modelAsString": true, + "values": [ + { + "value": "TCP" + }, + { + "value": "UDP" + }, + { + "value": "*", + "name": "All" + } ] + } }, - "JitNetworkAccessPolicyInitiateRequest": { - "type": "object", - "properties": { - "virtualMachines": { - "type": "array", - "description": "A list of virtual machines & ports to open access for", - "items": { - "$ref": "#/definitions/JitNetworkAccessPolicyInitiateVirtualMachine" - } - } - }, - "required": [ - "virtualMachines" - ] + "allowedSourceAddressPrefix": { + "type": "string", + "description": "Mutually exclusive with the \"allowedSourceAddressPrefixes\" parameter. Should be an IP address or CIDR, for example \"192.168.0.3\" or \"192.168.0.0/16\"." + }, + "allowedSourceAddressPrefixes": { + "type": "array", + "description": "Mutually exclusive with the \"allowedSourceAddressPrefix\" parameter.", + "items": { + "type": "string", + "description": "IP address or CIDR, for example \"192.168.0.3\" or \"192.168.0.0/16\"." + } + }, + "maxRequestAccessDuration": { + "type": "string", + "description": "Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day" + } + }, + "required": [ + "maxRequestAccessDuration", + "number", + "protocol" + ] + }, + "JitNetworkAccessRequest": { + "type": "object", + "properties": { + "virtualMachines": { + "type": "array", + "items": { + "$ref": "#/definitions/JitNetworkAccessRequestVirtualMachine" + } + }, + "startTimeUtc": { + "type": "string", + "format": "date-time", + "description": "The start time of the request in UTC" }, - "JitNetworkAccessPolicyInitiateVirtualMachine": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "Resource ID of the virtual machine that is linked to this policy" - }, - "ports": { - "type": "array", - "description": "The ports to open for the resource with the `id`", - "items": { - "$ref": "#/definitions/JitNetworkAccessPolicyInitiatePort" - } - } - }, - "required": [ - "id", - "ports" + "requestor": { + "type": "string", + "description": "The identity of the person who made the request" + } + }, + "required": [ + "requestor", + "startTimeUtc", + "virtualMachines" + ] + }, + "JitNetworkAccessRequestVirtualMachine": { + "type": "object", + "required": [ + "id", + "ports" + ], + "properties": { + "id": { + "type": "string", + "description": "Resource ID of the virtual machine that is linked to this policy" + }, + "ports": { + "type": "array", + "description": "The ports that were opened for the virtual machine", + "items": { + "$ref": "#/definitions/JitNetworkAccessRequestPort" + } + } + } + }, + "JitNetworkAccessRequestPort": { + "type": "object", + "properties": { + "number": { + "$ref": "#/definitions/PortNumber" + }, + "allowedSourceAddressPrefix": { + "type": "string", + "description": "Mutually exclusive with the \"allowedSourceAddressPrefixes\" parameter. Should be an IP address or CIDR, for example \"192.168.0.3\" or \"192.168.0.0/16\"." + }, + "allowedSourceAddressPrefixes": { + "type": "array", + "description": "Mutually exclusive with the \"allowedSourceAddressPrefix\" parameter.", + "items": { + "description": "IP address or CIDR, for example \"192.168.0.3\" or \"192.168.0.0/16\".", + "type": "string" + } + }, + "endTimeUtc": { + "type": "string", + "format": "date-time", + "description": "The date & time at which the request ends in UTC" + }, + "status": { + "type": "string", + "description": "The status of the port", + "enum": [ + "Revoked", + "Initiated" + ], + "x-ms-enum": { + "name": "status", + "modelAsString": true, + "values": [ + { + "value": "Revoked" + }, + { + "value": "Initiated" + } ] + } }, - "JitNetworkAccessPolicyInitiatePort": { - "type": "object", - "properties": { - "number": { - "$ref": "#/definitions/PortNumber" - }, - "allowedSourceAddressPrefix": { - "type": "string", - "description": "Source of the allowed traffic. If omitted, the request will be for the source IP address of the initiate request." - }, - "endTimeUtc": { - "type": "string", - "format": "date-time", - "description": "The time to close the request in UTC" - } - }, - "required": [ - "endTimeUtc", - "number" + "statusReason": { + "type": "string", + "description": "A description of why the `status` has its value", + "enum": [ + "Expired", + "UserRequested", + "NewerRequestInitiated" + ], + "x-ms-enum": { + "name": "statusReason", + "modelAsString": true, + "values": [ + { + "value": "Expired" + }, + { + "value": "UserRequested" + }, + { + "value": "NewerRequestInitiated" + } ] + } + } + }, + "required": [ + "endTimeUtc", + "number", + "status", + "statusReason" + ] + }, + "JitNetworkAccessPolicyInitiateRequest": { + "type": "object", + "properties": { + "virtualMachines": { + "type": "array", + "description": "A list of virtual machines & ports to open access for", + "items": { + "$ref": "#/definitions/JitNetworkAccessPolicyInitiateVirtualMachine" + } + } + }, + "required": [ + "virtualMachines" + ] + }, + "JitNetworkAccessPolicyInitiateVirtualMachine": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Resource ID of the virtual machine that is linked to this policy" }, - "PortNumber": { - "type": "integer", - "minimum": 0, - "maximum": 65535 + "ports": { + "type": "array", + "description": "The ports to open for the resource with the `id`", + "items": { + "$ref": "#/definitions/JitNetworkAccessPolicyInitiatePort" + } } + }, + "required": [ + "id", + "ports" + ] }, - "parameters": { - "JitNetworkAccessPolicyName": { - "name": "jitNetworkAccessPolicyName", - "type": "string", - "in": "path", - "required": true, - "description": "Name of a Just-in-Time access configuration policy.", - "x-ms-parameter-location": "method" + "JitNetworkAccessPolicyInitiatePort": { + "type": "object", + "properties": { + "number": { + "$ref": "#/definitions/PortNumber" }, - "JitNetworkAccessPolicyInitiateType": { - "name": "jitNetworkAccessPolicyInitiateType", - "type": "string", - "in": "path", - "required": true, - "description": "Type of the action to do on the Just-in-Time access policy.", - "enum": [ - "initiate" - ], - "x-ms-parameter-location": "method" - }, - "JitNetworkAccessPolicyInitiateRequest": { - "name": "body", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/JitNetworkAccessPolicyInitiateRequest" - }, - "x-ms-parameter-location": "method" - }, - "JitNetworkAccessPolicy": { - "name": "body", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/JitNetworkAccessPolicy" - }, - "x-ms-parameter-location": "method" + "allowedSourceAddressPrefix": { + "type": "string", + "description": "Source of the allowed traffic. If omitted, the request will be for the source IP address of the initiate request." + }, + "endTimeUtc": { + "type": "string", + "format": "date-time", + "description": "The time to close the request in UTC" } + }, + "required": [ + "endTimeUtc", + "number" + ] + }, + "PortNumber": { + "type": "integer", + "minimum": 0, + "maximum": 65535 + } + }, + "parameters": { + "JitNetworkAccessPolicyName": { + "name": "jitNetworkAccessPolicyName", + "type": "string", + "in": "path", + "required": true, + "description": "Name of a Just-in-Time access configuration policy.", + "x-ms-parameter-location": "method" + }, + "JitNetworkAccessPolicyInitiateType": { + "name": "jitNetworkAccessPolicyInitiateType", + "type": "string", + "in": "path", + "required": true, + "description": "Type of the action to do on the Just-in-Time access policy.", + "enum": [ + "initiate" + ], + "x-ms-parameter-location": "method" + }, + "JitNetworkAccessPolicyInitiateRequest": { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/JitNetworkAccessPolicyInitiateRequest" + }, + "x-ms-parameter-location": "method" + }, + "JitNetworkAccessPolicy": { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/JitNetworkAccessPolicy" + }, + "x-ms-parameter-location": "method" } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/locations.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/locations.json index c32b84558b91..e167c3b0ee69 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/locations.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/locations.json @@ -6,12 +6,20 @@ "version": "2015-06-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/Locations/GetLocations_example.json" } }, - "tags": ["Locations"], + "tags": [ + "Locations" + ], "description": "The location of the responsible ASC of the specific subscription (home region). For each subscription there is only one responsible location. The location in the response should be used to read or write other resources in ASC according to their ID.", "operationId": "Locations_List", "parameters": [ @@ -70,7 +80,9 @@ "$ref": "./examples/Locations/GetLocation_example.json" } }, - "tags": ["Locations"], + "tags": [ + "Locations" + ], "description": "Details of a specific location", "operationId": "Locations_Get", "parameters": [ diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/operations.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/operations.json index f07469d4c4c4..a3e2fe22f0da 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/operations.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/operations.json @@ -1,134 +1,134 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2015-06-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2015-06-01-preview" + }, + "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": { + "/providers/Microsoft.Security/operations": { + "get": { + "tags": [ + "Operations" + ], + "description": "Exposes all available operations for discovery purposes.", + "operationId": "Operations_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/OperationList" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + } + }, + "definitions": { + "OperationList": { + "type": "object", + "description": "List of possible operations for Microsoft.Security resource provider", + "properties": { + "value": { + "type": "array", + "description": "List of Security operations", + "items": { + "$ref": "#/definitions/Operation" + } + }, + "nextLink": { + "readOnly": true, + "type": "string", + "description": "The URI to fetch the next page." } + } }, - "paths": { - "/providers/Microsoft.Security/operations": { - "get": { - "tags": [ - "Operations" - ], - "description": "Exposes all available operations for discovery purposes.", - "operationId": "Operations_List", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/OperationList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } + "Operation": { + "type": "object", + "description": "Possible operation in the REST API of Microsoft.Security", + "properties": { + "name": { + "readOnly": true, + "type": "string", + "description": "Name of the operation" + }, + "origin": { + "readOnly": true, + "type": "string", + "description": "Where the operation is originated" + }, + "display": { + "$ref": "#/definitions/OperationDisplay" } + } }, - "definitions": { - "OperationList": { - "type": "object", - "description": "List of possible operations for Microsoft.Security resource provider", - "properties": { - "value": { - "type": "array", - "description": "List of Security operations", - "items": { - "$ref": "#/definitions/Operation" - } - }, - "nextLink": { - "readOnly": true, - "type": "string", - "description": "The URI to fetch the next page." - } - } + "OperationDisplay": { + "type": "object", + "description": "Security operation display", + "properties": { + "provider": { + "readOnly": true, + "type": "string", + "description": "The resource provider for the operation." }, - "Operation": { - "type": "object", - "description": "Possible operation in the REST API of Microsoft.Security", - "properties": { - "name": { - "readOnly": true, - "type": "string", - "description": "Name of the operation" - }, - "origin": { - "readOnly": true, - "type": "string", - "description": "Where the operation is originated" - }, - "display": { - "$ref": "#/definitions/OperationDisplay" - } - } + "resource": { + "readOnly": true, + "type": "string", + "description": "The display name of the resource the operation applies to." }, - "OperationDisplay": { - "type": "object", - "description": "Security operation display", - "properties": { - "provider": { - "readOnly": true, - "type": "string", - "description": "The resource provider for the operation." - }, - "resource": { - "readOnly": true, - "type": "string", - "description": "The display name of the resource the operation applies to." - }, - "operation": { - "readOnly": true, - "type": "string", - "description": "The display name of the security operation." - }, - "description": { - "readOnly": true, - "type": "string", - "description": "The description of the operation." - } - } + "operation": { + "readOnly": true, + "type": "string", + "description": "The display name of the security operation." + }, + "description": { + "readOnly": true, + "type": "string", + "description": "The description of the operation." } + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/tasks.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/tasks.json index 39e87490b284..2b746c6cf688 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/tasks.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/tasks.json @@ -6,12 +6,20 @@ "version": "2015-06-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/Tasks/GetTasksSubscription_example.json" } }, - "tags": ["Tasks"], + "tags": [ + "Tasks" + ], "description": "Recommended tasks that will help improve the security of the subscription proactively", "operationId": "Tasks_List", "parameters": [ @@ -73,7 +83,9 @@ "$ref": "./examples/Tasks/GetTasksSubscriptionLocation_example.json" } }, - "tags": ["Tasks"], + "tags": [ + "Tasks" + ], "description": "Recommended tasks that will help improve the security of the subscription proactively", "operationId": "Tasks_ListByHomeRegion", "parameters": [ @@ -116,7 +128,9 @@ "$ref": "./examples/Tasks/GetTaskSubscriptionLocation_example.json" } }, - "tags": ["Tasks"], + "tags": [ + "Tasks" + ], "description": "Recommended tasks that will help improve the security of the subscription proactively", "operationId": "Tasks_GetSubscriptionLevelTask", "parameters": [ @@ -156,7 +170,9 @@ "$ref": "./examples/Tasks/UpdateTaskSubscriptionLocation_example.json" } }, - "tags": ["Tasks"], + "tags": [ + "Tasks" + ], "description": "Recommended tasks that will help improve the security of the subscription proactively", "operationId": "Tasks_UpdateSubscriptionLevelTaskState", "parameters": [ @@ -196,7 +212,9 @@ "$ref": "./examples/Tasks/GetTasksResourceGroupLocation_example.json" } }, - "tags": ["Tasks"], + "tags": [ + "Tasks" + ], "description": "Recommended tasks that will help improve the security of the subscription proactively", "operationId": "Tasks_ListByResourceGroup", "parameters": [ @@ -242,7 +260,9 @@ "$ref": "./examples/Tasks/GetTaskResourceGroupLocation_example.json" } }, - "tags": ["Tasks"], + "tags": [ + "Tasks" + ], "description": "Recommended tasks that will help improve the security of the subscription proactively", "operationId": "Tasks_GetResourceGroupLevelTask", "parameters": [ @@ -285,7 +305,9 @@ "$ref": "./examples/Tasks/UpdateTaskResourceGroupLocation_example.json" } }, - "tags": ["Tasks"], + "tags": [ + "Tasks" + ], "description": "Recommended tasks that will help improve the security of the subscription proactively", "operationId": "Tasks_UpdateResourceGroupLevelTaskState", "parameters": [ @@ -414,7 +436,13 @@ "in": "path", "required": true, "type": "string", - "enum": ["Activate", "Dismiss", "Start", "Resolve", "Close"], + "enum": [ + "Activate", + "Dismiss", + "Start", + "Resolve", + "Close" + ], "description": "Type of the action to do on the task", "x-ms-parameter-location": "method" } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/topologies.json b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/topologies.json index 64219dd837a7..56981ad31aa8 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/topologies.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2015-06-01-preview/topologies.json @@ -6,12 +6,20 @@ "version": "2015-06-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/Topology/GetTopologySubscription_example.json" } }, - "tags": ["Topology"], + "tags": [ + "Topology" + ], "description": "Gets a list that allows to build a topology view of a subscription.", "operationId": "Topology_List", "parameters": [ @@ -70,7 +80,9 @@ "$ref": "./examples/Topology/GetTopologySubscriptionLocation_example.json" } }, - "tags": ["Topology"], + "tags": [ + "Topology" + ], "description": "Gets a list that allows to build a topology view of a subscription and location.", "operationId": "Topology_ListByHomeRegion", "parameters": [ @@ -110,7 +122,9 @@ "$ref": "./examples/Topology/GetTopology_example.json" } }, - "tags": ["Topology"], + "tags": [ + "Topology" + ], "description": "Gets a specific topology component.", "operationId": "Topology_Get", "parameters": [ diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/advancedThreatProtectionSettings.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/advancedThreatProtectionSettings.json index 9b886f5575b5..3edc850335b6 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/advancedThreatProtectionSettings.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/advancedThreatProtectionSettings.json @@ -1,152 +1,166 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2017-08-01-preview" - }, - "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": { - "/{resourceId}/providers/Microsoft.Security/advancedThreatProtectionSettings/{settingName}": { - "get": { - "x-ms-examples": { - "Gets the Advanced Threat Protection settings for the specified resource.": { - "$ref": "./examples/AdvancedThreatProtection/GetAdvancedThreatProtectionSettings_example.json" - } - }, - "tags": [ "AdvancedThreatProtection" ], - "description": "Gets the Advanced Threat Protection settings for the specified resource.", - "operationId": "AdvancedThreatProtection_Get", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceId" - }, - { - "$ref": "#/parameters/AdvancedThreatProtectionSettingName" - } - ], - "responses": { - "200": { - "description": "Successful request to get Advanced Threat Protection settings.", - "schema": { - "$ref": "#/definitions/AdvancedThreatProtectionSetting" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2017-08-01-preview" + }, + "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": { + "/{resourceId}/providers/Microsoft.Security/advancedThreatProtectionSettings/{settingName}": { + "get": { + "x-ms-examples": { + "Gets the Advanced Threat Protection settings for the specified resource.": { + "$ref": "./examples/AdvancedThreatProtection/GetAdvancedThreatProtectionSettings_example.json" + } + }, + "tags": [ + "AdvancedThreatProtection" + ], + "description": "Gets the Advanced Threat Protection settings for the specified resource.", + "operationId": "AdvancedThreatProtection_Get", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceId" + }, + { + "$ref": "#/parameters/AdvancedThreatProtectionSettingName" + } + ], + "responses": { + "200": { + "description": "Successful request to get Advanced Threat Protection settings.", + "schema": { + "$ref": "#/definitions/AdvancedThreatProtectionSetting" } }, - "put": { - "x-ms-examples": { - "Creates or updates the Advanced Threat Protection settings on a specified resource.": { - "$ref": "./examples/AdvancedThreatProtection/PutAdvancedThreatProtectionSettings_example.json" - } - }, - "tags": [ "AdvancedThreatProtection" ], - "description": "Creates or updates the Advanced Threat Protection settings on a specified resource.", - "operationId": "AdvancedThreatProtection_Create", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceId" - }, - { - "$ref": "#/parameters/AdvancedThreatProtectionSettingName" - }, - { - "$ref": "#/parameters/AdvancedThreatProtectionSetting" - } - ], - "responses": { - "200": { - "description": "Successful request to put Advanced Threat Protection settings.", - "schema": { - "$ref": "#/definitions/AdvancedThreatProtectionSetting" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } } } - }, - "definitions": { - "AdvancedThreatProtectionProperties": { - "properties": { - "isEnabled": { - "type": "boolean", - "description": "Indicates whether Advanced Threat Protection is enabled." - } - }, - "description": "The Advanced Threat Protection settings." + }, + "put": { + "x-ms-examples": { + "Creates or updates the Advanced Threat Protection settings on a specified resource.": { + "$ref": "./examples/AdvancedThreatProtection/PutAdvancedThreatProtectionSettings_example.json" + } }, - "AdvancedThreatProtectionSetting": { - "type": "object", - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/Resource" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/AdvancedThreatProtectionProperties" + "tags": [ + "AdvancedThreatProtection" + ], + "description": "Creates or updates the Advanced Threat Protection settings on a specified resource.", + "operationId": "AdvancedThreatProtection_Create", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceId" + }, + { + "$ref": "#/parameters/AdvancedThreatProtectionSettingName" + }, + { + "$ref": "#/parameters/AdvancedThreatProtectionSetting" + } + ], + "responses": { + "200": { + "description": "Successful request to put Advanced Threat Protection settings.", + "schema": { + "$ref": "#/definitions/AdvancedThreatProtectionSetting" } }, - "description": "The Advanced Threat Protection resource." + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } } + } + } + }, + "definitions": { + "AdvancedThreatProtectionProperties": { + "properties": { + "isEnabled": { + "type": "boolean", + "description": "Indicates whether Advanced Threat Protection is enabled." + } + }, + "description": "The Advanced Threat Protection settings." }, - "parameters": { - "AdvancedThreatProtectionSettingName": { - "name": "settingName", - "in": "path", - "required": true, - "type": "string", - "enum": ["current"], - "description": "Advanced Threat Protection setting name.", - "x-ms-parameter-location": "method" - }, - "AdvancedThreatProtectionSetting": { - "name": "advancedThreatProtectionSetting", - "in": "body", - "required": true, - "description": "Advanced Threat Protection Settings", - "schema": { - "$ref": "#/definitions/AdvancedThreatProtectionSetting" - }, - "x-ms-parameter-location": "method" + "AdvancedThreatProtectionSetting": { + "type": "object", + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/AdvancedThreatProtectionProperties" + } + }, + "description": "The Advanced Threat Protection resource." + } + }, + "parameters": { + "AdvancedThreatProtectionSettingName": { + "name": "settingName", + "in": "path", + "required": true, + "type": "string", + "enum": [ + "current" + ], + "description": "Advanced Threat Protection setting name.", + "x-ms-parameter-location": "method" + }, + "AdvancedThreatProtectionSetting": { + "name": "advancedThreatProtectionSetting", + "in": "body", + "required": true, + "description": "Advanced Threat Protection Settings", + "schema": { + "$ref": "#/definitions/AdvancedThreatProtectionSetting" + }, + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/autoProvisioningSettings.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/autoProvisioningSettings.json index 2c9f0e7975fe..918725ad705d 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/autoProvisioningSettings.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/autoProvisioningSettings.json @@ -1,213 +1,243 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2017-08-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2017-08-01-preview" + }, + "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.Security/autoProvisioningSettings": { + "get": { + "x-ms-examples": { + "Get auto provisioning settings for subscription": { + "$ref": "./examples/AutoProvisioningSettings/GetAutoProvisioningSettingsSubscription_example.json" + } + }, + "tags": [ + "AutoProvisioningSettings" + ], + "description": "Exposes the auto provisioning settings of the subscriptions", + "operationId": "AutoProvisioningSettings_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AutoProvisioningSettingList" } - } - }, - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/autoProvisioningSettings": { - "get": { - "x-ms-examples": { - "Get auto provisioning settings for subscription": { - "$ref": "./examples/AutoProvisioningSettings/GetAutoProvisioningSettingsSubscription_example.json" - } - }, - "tags": ["AutoProvisioningSettings"], - "description": "Exposes the auto provisioning settings of the subscriptions", - "operationId": "AutoProvisioningSettings_List", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AutoProvisioningSettingList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/autoProvisioningSettings/{settingName}": { - "get": { - "x-ms-examples": { - "Get an auto provisioning setting for subscription": { - "$ref": "./examples/AutoProvisioningSettings/GetAutoProvisioningSettingSubscription_example.json" - } - }, - "tags": ["AutoProvisioningSettings"], - "description": "Details of a specific setting", - "operationId": "AutoProvisioningSettings_Get", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, { - "$ref": "#/parameters/AutoProvisioningSettingName" - }], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AutoProvisioningSetting" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Create auto provisioning settings for subscription": { - "$ref": "./examples/AutoProvisioningSettings/CreateAutoProvisioningSettingsSubscription_example.json" - } - }, - "tags": ["AutoProvisioningSettings"], - "description": "Details of a specific setting", - "operationId": "AutoProvisioningSettings_Create", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, { - "$ref": "#/parameters/AutoProvisioningSettingName" - }, { - "$ref": "#/parameters/AutoProvisioningSetting" - }], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AutoProvisioningSetting" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - } + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "definitions": { - "AutoProvisioningSettingList": { - "type": "object", - "description": "List of all the auto provisioning settings response", - "properties": { - "value": { - "description": "List of all the auto provisioning settings", - "type": "array", - "items": { - "$ref": "#/definitions/AutoProvisioningSetting" - } - }, - "nextLink": { - "readOnly": true, - "type": "string", - "description": "The URI to fetch the next page." - } + "/subscriptions/{subscriptionId}/providers/Microsoft.Security/autoProvisioningSettings/{settingName}": { + "get": { + "x-ms-examples": { + "Get an auto provisioning setting for subscription": { + "$ref": "./examples/AutoProvisioningSettings/GetAutoProvisioningSettingSubscription_example.json" + } + }, + "tags": [ + "AutoProvisioningSettings" + ], + "description": "Details of a specific setting", + "operationId": "AutoProvisioningSettings_Get", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/AutoProvisioningSettingName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AutoProvisioningSetting" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } + }, + "put": { + "x-ms-examples": { + "Create auto provisioning settings for subscription": { + "$ref": "./examples/AutoProvisioningSettings/CreateAutoProvisioningSettingsSubscription_example.json" + } }, - "AutoProvisioningSetting": { - "type": "object", - "description": "Auto provisioning setting", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Auto provisioning setting data", - "$ref": "#/definitions/AutoProvisioningSettingProperties" - } - }, - "allOf": [{ - "$ref": "../../../common/v1/types.json#/definitions/Resource" - }] + "tags": [ + "AutoProvisioningSettings" + ], + "description": "Details of a specific setting", + "operationId": "AutoProvisioningSettings_Create", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/AutoProvisioningSettingName" + }, + { + "$ref": "#/parameters/AutoProvisioningSetting" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AutoProvisioningSetting" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } + } + } + }, + "definitions": { + "AutoProvisioningSettingList": { + "type": "object", + "description": "List of all the auto provisioning settings response", + "properties": { + "value": { + "description": "List of all the auto provisioning settings", + "type": "array", + "items": { + "$ref": "#/definitions/AutoProvisioningSetting" + } }, - "AutoProvisioningSettingProperties": { - "type": "object", - "description": "describes properties of an auto provisioning setting", - "properties": { - "autoProvision": { - "type": "string", - "description": "Describes what kind of security agent provisioning action to take", - "enum": ["On", "Off"], - "x-ms-enum": { - "name": "autoProvision", - "modelAsString": true, - "values": [{ - "value": "On", - "description": "Install missing security agent on VMs automatically" - }, - { - "value": "Off", - "description": "Do not install security agent on the VMs automatically" - } - ] - } - } - }, - "required": [ - "autoProvision" - ] + "nextLink": { + "readOnly": true, + "type": "string", + "description": "The URI to fetch the next page." } + } }, - "parameters": { - "AutoProvisioningSettingName": { - "name": "settingName", - "in": "path", - "required": true, - "type": "string", - "description": "Auto provisioning setting key", - "x-ms-parameter-location": "method" - }, - "AutoProvisioningSetting": { - "name": "setting", - "in": "body", - "required": true, - "description": "Auto provisioning setting key", - "schema": { - "$ref": "#/definitions/AutoProvisioningSetting" - }, - "x-ms-parameter-location": "method" + "AutoProvisioningSetting": { + "type": "object", + "description": "Auto provisioning setting", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Auto provisioning setting data", + "$ref": "#/definitions/AutoProvisioningSettingProperties" + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" } + ] + }, + "AutoProvisioningSettingProperties": { + "type": "object", + "description": "describes properties of an auto provisioning setting", + "properties": { + "autoProvision": { + "type": "string", + "description": "Describes what kind of security agent provisioning action to take", + "enum": [ + "On", + "Off" + ], + "x-ms-enum": { + "name": "autoProvision", + "modelAsString": true, + "values": [ + { + "value": "On", + "description": "Install missing security agent on VMs automatically" + }, + { + "value": "Off", + "description": "Do not install security agent on the VMs automatically" + } + ] + } + } + }, + "required": [ + "autoProvision" + ] + } + }, + "parameters": { + "AutoProvisioningSettingName": { + "name": "settingName", + "in": "path", + "required": true, + "type": "string", + "description": "Auto provisioning setting key", + "x-ms-parameter-location": "method" + }, + "AutoProvisioningSetting": { + "name": "setting", + "in": "body", + "required": true, + "description": "Auto provisioning setting key", + "schema": { + "$ref": "#/definitions/AutoProvisioningSetting" + }, + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/compliances.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/compliances.json index cd7cc519040e..4dab00543160 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/compliances.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/compliances.json @@ -1,190 +1,206 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2017-08-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2017-08-01-preview" + }, + "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": { + "/{scope}/providers/Microsoft.Security/compliances": { + "get": { + "x-ms-examples": { + "Get security compliance data over time": { + "$ref": "./examples/Compliances/GetCompliances_example.json" + } + }, + "tags": [ + "Compliances" + ], + "description": "The Compliance scores of the specific management group.", + "operationId": "Compliances_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/Scope" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ComplianceList" } - } - }, - "paths": { - "/{scope}/providers/Microsoft.Security/compliances": { - "get": { - "x-ms-examples": { - "Get security compliance data over time": { - "$ref": "./examples/Compliances/GetCompliances_example.json" - } - }, - "tags": ["Compliances"], - "description": "The Compliance scores of the specific management group.", - "operationId": "Compliances_List", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/Scope" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ComplianceList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } }, - "/{scope}/providers/Microsoft.Security/compliances/{complianceName}": { - "get": { - "x-ms-examples": { - "Get security compliance data for a day": { - "$ref": "./examples/Compliances/GetCompliance_example.json" - } - }, - "tags": ["Compliances"], - "description": "Details of a specific Compliance.", - "operationId": "Compliances_Get", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/Scope" - }, - { - "$ref": "#/parameters/ComplianceName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Compliance" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - } + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "definitions": { - "ComplianceList": { - "type": "object", - "readOnly": true, - "description": "List of Compliance objects response", - "properties": { - "value": { - "type": "array", - "description": "List of Compliance objects", - "items": { - "$ref": "#/definitions/Compliance" - } - }, - "nextLink": { - "readOnly": true, - "type": "string", - "description": "The URI to fetch the next page." - } + "/{scope}/providers/Microsoft.Security/compliances/{complianceName}": { + "get": { + "x-ms-examples": { + "Get security compliance data for a day": { + "$ref": "./examples/Compliances/GetCompliance_example.json" + } + }, + "tags": [ + "Compliances" + ], + "description": "Details of a specific Compliance.", + "operationId": "Compliances_Get", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/Scope" + }, + { + "$ref": "#/parameters/ComplianceName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Compliance" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } + } + } + }, + "definitions": { + "ComplianceList": { + "type": "object", + "readOnly": true, + "description": "List of Compliance objects response", + "properties": { + "value": { + "type": "array", + "description": "List of Compliance objects", + "items": { + "$ref": "#/definitions/Compliance" + } }, - "Compliance": { - "type": "object", - "readOnly": true, - "description": "Compliance of a scope", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Compliance data", - "$ref": "#/definitions/ComplianceProperties" - } - }, - "allOf": [{ - "$ref": "../../../common/v1/types.json#/definitions/Resource" - }] + "nextLink": { + "readOnly": true, + "type": "string", + "description": "The URI to fetch the next page." + } + } + }, + "Compliance": { + "type": "object", + "readOnly": true, + "description": "Compliance of a scope", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Compliance data", + "$ref": "#/definitions/ComplianceProperties" + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" + } + ] + }, + "ComplianceProperties": { + "type": "object", + "description": "The Compliance score (percentage) of a Subscription is a sum of all Resources' Compliances under the given Subscription. A Resource Compliance is defined as the compliant ('healthy') Policy Definitions out of all Policy Definitions applicable to a given resource.", + "properties": { + "assessmentTimestampUtcDate": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The timestamp when the Compliance calculation was conducted." }, - "ComplianceProperties": { - "type": "object", - "description": "The Compliance score (percentage) of a Subscription is a sum of all Resources' Compliances under the given Subscription. A Resource Compliance is defined as the compliant ('healthy') Policy Definitions out of all Policy Definitions applicable to a given resource.", - "properties": { - "assessmentTimestampUtcDate": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The timestamp when the Compliance calculation was conducted." - }, - "resourceCount": { - "readOnly": true, - "type": "integer", - "description": "The resource count of the given subscription for which the Compliance calculation was conducted (needed for Management Group Compliance calculation)." - }, - "assessmentResult": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/ComplianceSegment" - }, - "description": "An array of segment, which is the actually the compliance assessment." - } - } + "resourceCount": { + "readOnly": true, + "type": "integer", + "description": "The resource count of the given subscription for which the Compliance calculation was conducted (needed for Management Group Compliance calculation)." }, - "ComplianceSegment": { - "type": "object", - "description": "A segment of a compliance assessment.", - "properties": { - "segmentType": { - "readOnly": true, - "type": "string", - "description": "The segment type, e.g. compliant, non-compliance, insufficient coverage, N/A, etc." - }, - "percentage": { - "type": "number", - "format": "double", - "readOnly": true, - "description": "The size (%) of the segment." - } - } + "assessmentResult": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/ComplianceSegment" + }, + "description": "An array of segment, which is the actually the compliance assessment." } + } }, - "parameters": { - "ComplianceName": { - "name": "complianceName", - "in": "path", - "required": true, - "type": "string", - "description": "name of the Compliance", - "x-ms-parameter-location": "method" + "ComplianceSegment": { + "type": "object", + "description": "A segment of a compliance assessment.", + "properties": { + "segmentType": { + "readOnly": true, + "type": "string", + "description": "The segment type, e.g. compliant, non-compliance, insufficient coverage, N/A, etc." + }, + "percentage": { + "type": "number", + "format": "double", + "readOnly": true, + "description": "The size (%) of the segment." } + } + } + }, + "parameters": { + "ComplianceName": { + "name": "complianceName", + "in": "path", + "required": true, + "type": "string", + "description": "name of the Compliance", + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/deviceSecurityGroups.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/deviceSecurityGroups.json index a4c5eda9f087..fd08950135a9 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/deviceSecurityGroups.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/deviceSecurityGroups.json @@ -1,513 +1,562 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2017-08-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2017-08-01-preview" + }, + "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": { + "/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups": { + "get": { + "x-ms-examples": { + "List all device security groups for the specified IoT hub resource": { + "$ref": "./examples/DeviceSecurityGroups/ListDeviceSecurityGroups_example.json" + } + }, + "tags": [ + "DeviceSecurityGroups" + ], + "description": "Gets the list of device security groups for the specified IoT hub resource.", + "operationId": "DeviceSecurityGroups_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DeviceSecurityGroupList" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "paths": { - "/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups": { - "get": { - "x-ms-examples": { - "List all device security groups for the specified IoT hub resource": { - "$ref": "./examples/DeviceSecurityGroups/ListDeviceSecurityGroups_example.json" - } - }, - "tags": ["DeviceSecurityGroups"], - "description": "Gets the list of device security groups for the specified IoT hub resource.", - "operationId": "DeviceSecurityGroups_List", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceId" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DeviceSecurityGroupList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}": { + "get": { + "x-ms-examples": { + "Get an device security group for the specified IoT hub resource": { + "$ref": "./examples/DeviceSecurityGroups/GetDeviceSecurityGroups_example.json" + } + }, + "tags": [ + "DeviceSecurityGroups" + ], + "description": "Gets the device security group for the specified IoT hub resource.", + "operationId": "DeviceSecurityGroups_Get", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceId" + }, + { + "$ref": "#/parameters/DeviceSecurityGroupName" + } + ], + "responses": { + "200": { + "description": "Successful request to get security group.", + "schema": { + "$ref": "#/definitions/DeviceSecurityGroup" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + } + }, + "put": { + "x-ms-examples": { + "Create or update a device security group for the specified IoT hub resource": { + "$ref": "./examples/DeviceSecurityGroups/PutDeviceSecurityGroups_example.json" + } }, - "/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}": { - "get": { - "x-ms-examples": { - "Get an device security group for the specified IoT hub resource": { - "$ref": "./examples/DeviceSecurityGroups/GetDeviceSecurityGroups_example.json" - } - }, - "tags": [ "DeviceSecurityGroups" ], - "description": "Gets the device security group for the specified IoT hub resource.", - "operationId": "DeviceSecurityGroups_Get", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceId" - }, - { - "$ref": "#/parameters/DeviceSecurityGroupName" - } - ], - "responses": { - "200": { - "description": "Successful request to get security group.", - "schema": { - "$ref": "#/definitions/DeviceSecurityGroup" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Create or update a device security group for the specified IoT hub resource": { - "$ref": "./examples/DeviceSecurityGroups/PutDeviceSecurityGroups_example.json" - } - }, - "tags": [ "DeviceSecurityGroups" ], - "description": "Creates or updates the device security group on a specified IoT hub resource.", - "operationId": "DeviceSecurityGroups_CreateOrUpdate", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceId" - }, - { - "$ref": "#/parameters/DeviceSecurityGroupName" - }, - { - "$ref": "#/parameters/DeviceSecurityGroup" - } - ], - "responses": { - "200": { - "description": "Security group was updated", - "schema": { - "$ref": "#/definitions/DeviceSecurityGroup" - } - }, - "201": { - "description": "Security group was created", - "schema": { - "$ref": "#/definitions/DeviceSecurityGroup" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete a device security group for the specified IoT hub resource": { - "$ref": "./examples/DeviceSecurityGroups/DeleteDeviceSecurityGroups_example.json" - } - }, - "tags": ["DeviceSecurityGroups"], - "description": "Deletes the security group", - "operationId": "DeviceSecurityGroups_Delete", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceId" - }, - { - "$ref": "#/parameters/DeviceSecurityGroupName" - } - ], - "responses": { - "200": { - "description": "Device security group has been deleted." - }, - "204": { - "description": "Device security group does not exist." - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "tags": [ + "DeviceSecurityGroups" + ], + "description": "Creates or updates the device security group on a specified IoT hub resource.", + "operationId": "DeviceSecurityGroups_CreateOrUpdate", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceId" + }, + { + "$ref": "#/parameters/DeviceSecurityGroupName" + }, + { + "$ref": "#/parameters/DeviceSecurityGroup" + } + ], + "responses": { + "200": { + "description": "Security group was updated", + "schema": { + "$ref": "#/definitions/DeviceSecurityGroup" + } + }, + "201": { + "description": "Security group was created", + "schema": { + "$ref": "#/definitions/DeviceSecurityGroup" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } } - }, - "definitions": { - "DeviceSecurityGroupList": { - "type": "object", - "readOnly": true, - "description": "List of device security groups", - "properties": { - "value": { - "type": "array", - "description": "List of device security group objects", - "items": { - "$ref": "#/definitions/DeviceSecurityGroup" - } - }, - "nextLink": { - "readOnly": true, - "type": "string", - "description": "The URI to fetch the next page." - } + }, + "delete": { + "x-ms-examples": { + "Delete a device security group for the specified IoT hub resource": { + "$ref": "./examples/DeviceSecurityGroups/DeleteDeviceSecurityGroups_example.json" + } + }, + "tags": [ + "DeviceSecurityGroups" + ], + "description": "Deletes the security group", + "operationId": "DeviceSecurityGroups_Delete", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceId" + }, + { + "$ref": "#/parameters/DeviceSecurityGroupName" + } + ], + "responses": { + "200": { + "description": "Device security group has been deleted." + }, + "204": { + "description": "Device security group does not exist." + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + } + } + } + }, + "definitions": { + "DeviceSecurityGroupList": { + "type": "object", + "readOnly": true, + "description": "List of device security groups", + "properties": { + "value": { + "type": "array", + "description": "List of device security group objects", + "items": { + "$ref": "#/definitions/DeviceSecurityGroup" + } }, - "DeviceSecurityGroup": { + "nextLink": { + "readOnly": true, + "type": "string", + "description": "The URI to fetch the next page." + } + } + }, + "DeviceSecurityGroup": { + "type": "object", + "description": "The device security group resource", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Device Security group data", + "$ref": "#/definitions/DeviceSecurityGroupProperties" + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" + } + ] + }, + "DeviceSecurityGroupProperties": { + "type": "object", + "description": "describes properties of a security group.", + "properties": { + "thresholdRules": { + "type": "array", + "description": "A list of threshold custom alert rules.", + "items": { "type": "object", - "description": "The device security group resource", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Device Security group data", - "$ref": "#/definitions/DeviceSecurityGroupProperties" - } - }, - "allOf": [{ - "$ref": "../../../common/v1/types.json#/definitions/Resource" - } - ] + "$ref": "#/definitions/ThresholdCustomAlertRule" + } }, - "DeviceSecurityGroupProperties": { + "timeWindowRules": { + "type": "array", + "description": "A list of time window custom alert rules.", + "items": { "type": "object", - "description": "describes properties of a security group.", - "properties": { - "thresholdRules": { - "type": "array", - "description": "A list of threshold custom alert rules.", - "items": { - "type": "object", - "$ref": "#/definitions/ThresholdCustomAlertRule" - } - }, - "timeWindowRules": { - "type": "array", - "description": "A list of time window custom alert rules.", - "items": { - "type": "object", - "$ref": "#/definitions/TimeWindowCustomAlertRule" - } - }, - "allowlistRules": { - "type": "array", - "description": "A list of allow-list custom alert rules.", - "items": { - "type": "object", - "$ref": "#/definitions/AllowlistCustomAlertRule" - } - }, - "denylistRules": { - "type": "array", - "description": "A list of deny-list custom alert rules.", - "items": { - "type": "object", - "$ref": "#/definitions/DenylistCustomAlertRule" - } - } - } + "$ref": "#/definitions/TimeWindowCustomAlertRule" + } }, - "CustomAlertRule": { + "allowlistRules": { + "type": "array", + "description": "A list of allow-list custom alert rules.", + "items": { "type": "object", - "description": "A custom alert rule", - "properties": { - "displayName": { - "type": "string", - "readOnly": true, - "description": "The display name of the custom alert." - }, - "description": { - "type": "string", - "readOnly": true, - "description": "The description of the custom alert." - }, - "isEnabled": { - "type": "boolean", - "description": "Whether the custom alert is enabled." - }, - "ruleType": { - "type": "string", - "description": "The type of the custom alert rule." - } - }, - "required": [ - "isEnabled", - "ruleType" - ] + "$ref": "#/definitions/AllowlistCustomAlertRule" + } }, - "ListCustomAlertRule": { + "denylistRules": { + "type": "array", + "description": "A list of deny-list custom alert rules.", + "items": { "type": "object", - "description": "A List custom alert rule", - "allOf": [{ - "$ref": "#/definitions/CustomAlertRule" - } - ], - "properties": { - "valueType": { - "type": "string", - "description": "The value type of the items in the list", - "enum": ["IpCidr", "String"], - "readOnly": true, - "x-ms-enum": { - "name": "valueType", - "modelAsString": true, - "values": [{ - "value": "IpCidr", - "description": "An IP range in CIDR format (e.g. '192.168.0.1/8')." - }, - { - "value": "String", - "description": "Any string value." - } - ] - } - } - } + "$ref": "#/definitions/DenylistCustomAlertRule" + } + } + } + }, + "CustomAlertRule": { + "type": "object", + "description": "A custom alert rule", + "properties": { + "displayName": { + "type": "string", + "readOnly": true, + "description": "The display name of the custom alert." }, - "AllowlistCustomAlertRule": { - "type": "object", - "description": "A custom alert rule that checks if a value (depends on the custom alert type) is allowed", - "allOf": [{ - "$ref": "#/definitions/ListCustomAlertRule" - } - ], - "properties": { - "allowlistValues": { - "type": "array", - "description": "The values to allow. The format of the values depends on the rule type.", - "items": { - "type": "string" - } - }, - "ruleType": { - "type": "string", - "description": "The type of the custom alert rule.", - "enum": ["ConnectionToIpNotAllowed", "LocalUserNotAllowed", "ProcessNotAllowed"], - "x-ms-enum": { - "name": "ruleType", - "modelAsString": true, - "values": [{ - "value": "ConnectionToIpNotAllowed", - "description": "Outbound connection to an ip that isn't allowed. Allow list consists of ipv4 or ipv6 range in CIDR notation." - }, - { - "value": "LocalUserNotAllowed", - "description": "Login by a local user that isn't allowed. Allow list consists of login names to allow." - }, - { - "value": "ProcessNotAllowed", - "description": "Execution of a process that isn't allowed. Allow list consists of process names to allow." - } - ] - } - } - }, - "required": [ - "allowlistValues" - ] + "description": { + "type": "string", + "readOnly": true, + "description": "The description of the custom alert." }, - "DenylistCustomAlertRule": { - "type": "object", - "description": "A custom alert rule that checks if a value (depends on the custom alert type) is denied", - "allOf": [{ - "$ref": "#/definitions/ListCustomAlertRule" - } - ], - "properties": { - "denylistValues": { - "type": "array", - "description": "The values to deny. The format of the values depends on the rule type.", - "items": { - "type": "string" - } - } - }, - "required": [ - "denylistValues" - ] + "isEnabled": { + "type": "boolean", + "description": "Whether the custom alert is enabled." }, - "ThresholdCustomAlertRule": { - "type": "object", - "description": "A custom alert rule that checks if a value (depends on the custom alert type) is within the given range.", - "allOf": [{ - "$ref": "#/definitions/CustomAlertRule" - } - ], - "properties": { - "minThreshold": { - "type": "integer", - "description": "The minimum threshold." - }, - "maxThreshold": { - "type": "integer", - "description": "The maximum threshold." - } - }, - "required": [ - "minThreshold", - "maxThreshold" + "ruleType": { + "type": "string", + "description": "The type of the custom alert rule." + } + }, + "required": [ + "isEnabled", + "ruleType" + ] + }, + "ListCustomAlertRule": { + "type": "object", + "description": "A List custom alert rule", + "allOf": [ + { + "$ref": "#/definitions/CustomAlertRule" + } + ], + "properties": { + "valueType": { + "type": "string", + "description": "The value type of the items in the list", + "enum": [ + "IpCidr", + "String" + ], + "readOnly": true, + "x-ms-enum": { + "name": "valueType", + "modelAsString": true, + "values": [ + { + "value": "IpCidr", + "description": "An IP range in CIDR format (e.g. '192.168.0.1/8')." + }, + { + "value": "String", + "description": "Any string value." + } ] + } + } + } + }, + "AllowlistCustomAlertRule": { + "type": "object", + "description": "A custom alert rule that checks if a value (depends on the custom alert type) is allowed", + "allOf": [ + { + "$ref": "#/definitions/ListCustomAlertRule" + } + ], + "properties": { + "allowlistValues": { + "type": "array", + "description": "The values to allow. The format of the values depends on the rule type.", + "items": { + "type": "string" + } }, - "TimeWindowCustomAlertRule": { - "type": "object", - "description": "A custom alert rule that checks if the number of activities (depends on the custom alert type) in a time window is within the given range.", - "allOf": [ - { - "$ref": "#/definitions/CustomAlertRule" - }, - { - "$ref": "#/definitions/ThresholdCustomAlertRule" - } - ], - "properties": { - "timeWindowSize": { - "type": "string", - "description": "The time window size in iso8601 format.", - "format": "duration" - }, - "ruleType": { - "type": "string", - "description": "The type of the custom alert rule.", - "enum": ["ActiveConnectionsNotInAllowedRange", "AmqpC2DMessagesNotInAllowedRange", "MqttC2DMessagesNotInAllowedRange", "HttpC2DMessagesNotInAllowedRange", "AmqpC2DRejectedMessagesNotInAllowedRange", "MqttC2DRejectedMessagesNotInAllowedRange", "HttpC2DRejectedMessagesNotInAllowedRange", "AmqpD2CMessagesNotInAllowedRange", "MqttD2CMessagesNotInAllowedRange", "HttpD2CMessagesNotInAllowedRange", "DirectMethodInvokesNotInAllowedRange", "FailedLocalLoginsNotInAllowedRange", "FileUploadsNotInAllowedRange", "QueuePurgesNotInAllowedRange", "TwinUpdatesNotInAllowedRange", "UnauthorizedOperationsNotInAllowedRange"], - "x-ms-enum": { - "name": "ruleType", - "modelAsString": true, - "values": [{ - "value": "ActiveConnectionsNotInAllowedRange", - "description": "Number of active connections is not in allowed range." - }, - { - "value": "AmqpC2DMessagesNotInAllowedRange", - "description": "Number of cloud to device messages (AMQP protocol) is not in allowed range." - }, - { - "value": "MqttC2DMessagesNotInAllowedRange", - "description": "Number of cloud to device messages (MQTT protocol) is not in allowed range." - }, - { - "value": "HttpC2DMessagesNotInAllowedRange", - "description": "Number of cloud to device messages (HTTP protocol) is not in allowed range." - }, - { - "value": "AmqpC2DRejectedMessagesNotInAllowedRange", - "description": "Number of rejected cloud to device messages (AMQP protocol) is not in allowed range." - }, - { - "value": "MqttC2DRejectedMessagesNotInAllowedRange", - "description": "Number of rejected cloud to device messages (MQTT protocol) is not in allowed range." - }, - { - "value": "HttpC2DRejectedMessagesNotInAllowedRange", - "description": "Number of rejected cloud to device messages (HTTP protocol) is not in allowed range." - }, - { - "value": "AmqpD2CMessagesNotInAllowedRange", - "description": "Number of device to cloud messages (AMQP protocol) is not in allowed range." - }, - { - "value": "MqttD2CMessagesNotInAllowedRange", - "description": "Number of device to cloud messages (MQTT protocol) is not in allowed range." - }, - { - "value": "HttpD2CMessagesNotInAllowedRange", - "description": "Number of device to cloud messages (HTTP protocol) is not in allowed range." - }, - { - "value": "DirectMethodInvokesNotInAllowedRange", - "description": "Number of direct method invokes is not in allowed range." - }, - { - "value": "FailedLocalLoginsNotInAllowedRange", - "description": "Number of failed local logins is not in allowed range." - }, - { - "value": "FileUploadsNotInAllowedRange", - "description": "Number of file uploads is not in allowed range." - }, - { - "value": "QueuePurgesNotInAllowedRange", - "description": "Number of device queue purges is not in allowed range." - }, - { - "value": "TwinUpdatesNotInAllowedRange", - "description": "Number of twin updates is not in allowed range." - }, - { - "value": "UnauthorizedOperationsNotInAllowedRange", - "description": "Number of unauthorized operations is not in allowed range." - } - ] - } - } - }, - "required": [ - "timeWindowSize" + "ruleType": { + "type": "string", + "description": "The type of the custom alert rule.", + "enum": [ + "ConnectionToIpNotAllowed", + "LocalUserNotAllowed", + "ProcessNotAllowed" + ], + "x-ms-enum": { + "name": "ruleType", + "modelAsString": true, + "values": [ + { + "value": "ConnectionToIpNotAllowed", + "description": "Outbound connection to an ip that isn't allowed. Allow list consists of ipv4 or ipv6 range in CIDR notation." + }, + { + "value": "LocalUserNotAllowed", + "description": "Login by a local user that isn't allowed. Allow list consists of login names to allow." + }, + { + "value": "ProcessNotAllowed", + "description": "Execution of a process that isn't allowed. Allow list consists of process names to allow." + } ] + } + } + }, + "required": [ + "allowlistValues" + ] + }, + "DenylistCustomAlertRule": { + "type": "object", + "description": "A custom alert rule that checks if a value (depends on the custom alert type) is denied", + "allOf": [ + { + "$ref": "#/definitions/ListCustomAlertRule" + } + ], + "properties": { + "denylistValues": { + "type": "array", + "description": "The values to deny. The format of the values depends on the rule type.", + "items": { + "type": "string" + } + } + }, + "required": [ + "denylistValues" + ] + }, + "ThresholdCustomAlertRule": { + "type": "object", + "description": "A custom alert rule that checks if a value (depends on the custom alert type) is within the given range.", + "allOf": [ + { + "$ref": "#/definitions/CustomAlertRule" + } + ], + "properties": { + "minThreshold": { + "type": "integer", + "description": "The minimum threshold." + }, + "maxThreshold": { + "type": "integer", + "description": "The maximum threshold." } + }, + "required": [ + "minThreshold", + "maxThreshold" + ] }, - "parameters": { - "DeviceSecurityGroupName": { - "name": "deviceSecurityGroupName", - "in": "path", - "required": true, + "TimeWindowCustomAlertRule": { + "type": "object", + "description": "A custom alert rule that checks if the number of activities (depends on the custom alert type) in a time window is within the given range.", + "allOf": [ + { + "$ref": "#/definitions/CustomAlertRule" + }, + { + "$ref": "#/definitions/ThresholdCustomAlertRule" + } + ], + "properties": { + "timeWindowSize": { "type": "string", - "description": "The name of the security group. Please notice that the name is case insensitive.", - "x-ms-parameter-location": "method" + "description": "The time window size in iso8601 format.", + "format": "duration" }, - "DeviceSecurityGroup": { - "name": "deviceSecurityGroup", - "in": "body", - "required": true, - "description": "Security group object.", - "schema": { - "$ref": "#/definitions/DeviceSecurityGroup" - }, - "x-ms-parameter-location": "method" + "ruleType": { + "type": "string", + "description": "The type of the custom alert rule.", + "enum": [ + "ActiveConnectionsNotInAllowedRange", + "AmqpC2DMessagesNotInAllowedRange", + "MqttC2DMessagesNotInAllowedRange", + "HttpC2DMessagesNotInAllowedRange", + "AmqpC2DRejectedMessagesNotInAllowedRange", + "MqttC2DRejectedMessagesNotInAllowedRange", + "HttpC2DRejectedMessagesNotInAllowedRange", + "AmqpD2CMessagesNotInAllowedRange", + "MqttD2CMessagesNotInAllowedRange", + "HttpD2CMessagesNotInAllowedRange", + "DirectMethodInvokesNotInAllowedRange", + "FailedLocalLoginsNotInAllowedRange", + "FileUploadsNotInAllowedRange", + "QueuePurgesNotInAllowedRange", + "TwinUpdatesNotInAllowedRange", + "UnauthorizedOperationsNotInAllowedRange" + ], + "x-ms-enum": { + "name": "ruleType", + "modelAsString": true, + "values": [ + { + "value": "ActiveConnectionsNotInAllowedRange", + "description": "Number of active connections is not in allowed range." + }, + { + "value": "AmqpC2DMessagesNotInAllowedRange", + "description": "Number of cloud to device messages (AMQP protocol) is not in allowed range." + }, + { + "value": "MqttC2DMessagesNotInAllowedRange", + "description": "Number of cloud to device messages (MQTT protocol) is not in allowed range." + }, + { + "value": "HttpC2DMessagesNotInAllowedRange", + "description": "Number of cloud to device messages (HTTP protocol) is not in allowed range." + }, + { + "value": "AmqpC2DRejectedMessagesNotInAllowedRange", + "description": "Number of rejected cloud to device messages (AMQP protocol) is not in allowed range." + }, + { + "value": "MqttC2DRejectedMessagesNotInAllowedRange", + "description": "Number of rejected cloud to device messages (MQTT protocol) is not in allowed range." + }, + { + "value": "HttpC2DRejectedMessagesNotInAllowedRange", + "description": "Number of rejected cloud to device messages (HTTP protocol) is not in allowed range." + }, + { + "value": "AmqpD2CMessagesNotInAllowedRange", + "description": "Number of device to cloud messages (AMQP protocol) is not in allowed range." + }, + { + "value": "MqttD2CMessagesNotInAllowedRange", + "description": "Number of device to cloud messages (MQTT protocol) is not in allowed range." + }, + { + "value": "HttpD2CMessagesNotInAllowedRange", + "description": "Number of device to cloud messages (HTTP protocol) is not in allowed range." + }, + { + "value": "DirectMethodInvokesNotInAllowedRange", + "description": "Number of direct method invokes is not in allowed range." + }, + { + "value": "FailedLocalLoginsNotInAllowedRange", + "description": "Number of failed local logins is not in allowed range." + }, + { + "value": "FileUploadsNotInAllowedRange", + "description": "Number of file uploads is not in allowed range." + }, + { + "value": "QueuePurgesNotInAllowedRange", + "description": "Number of device queue purges is not in allowed range." + }, + { + "value": "TwinUpdatesNotInAllowedRange", + "description": "Number of twin updates is not in allowed range." + }, + { + "value": "UnauthorizedOperationsNotInAllowedRange", + "description": "Number of unauthorized operations is not in allowed range." + } + ] + } } + }, + "required": [ + "timeWindowSize" + ] + } + }, + "parameters": { + "DeviceSecurityGroupName": { + "name": "deviceSecurityGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the security group. Please notice that the name is case insensitive.", + "x-ms-parameter-location": "method" + }, + "DeviceSecurityGroup": { + "name": "deviceSecurityGroup", + "in": "body", + "required": true, + "description": "Security group object.", + "schema": { + "$ref": "#/definitions/DeviceSecurityGroup" + }, + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AdvancedThreatProtection/GetAdvancedThreatProtectionSettings_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AdvancedThreatProtection/GetAdvancedThreatProtectionSettings_example.json index 1e0e29392fd0..990baa8f8fed 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AdvancedThreatProtection/GetAdvancedThreatProtectionSettings_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AdvancedThreatProtection/GetAdvancedThreatProtectionSettings_example.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/CreateAutoProvisioningSettingsSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/CreateAutoProvisioningSettingsSubscription_example.json index 57fb3300bb60..df65ebfef610 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/CreateAutoProvisioningSettingsSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/CreateAutoProvisioningSettingsSubscription_example.json @@ -1,27 +1,27 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "settingName": "default", - "setting": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/autoProvisioningSettings/default", - "name": "default", - "type": "Microsoft.Security/autoProvisioningSettings", - "properties": { - "autoProvision": "On" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/autoProvisioningSettings/default", - "name": "default", - "type": "Microsoft.Security/autoProvisioningSettings", - "properties": { - "autoProvision": "On" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "settingName": "default", + "setting": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/autoProvisioningSettings/default", + "name": "default", + "type": "Microsoft.Security/autoProvisioningSettings", + "properties": { + "autoProvision": "On" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/autoProvisioningSettings/default", + "name": "default", + "type": "Microsoft.Security/autoProvisioningSettings", + "properties": { + "autoProvision": "On" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/GetAutoProvisioningSettingSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/GetAutoProvisioningSettingSubscription_example.json index 2b095698851a..f913301878d9 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/GetAutoProvisioningSettingSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/GetAutoProvisioningSettingSubscription_example.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "settingName": "default" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/autoProvisioningSettings/default", - "name": "default", - "type": "Microsoft.Security/autoProvisioningSettings", - "properties": { - "autoProvision": "On" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "settingName": "default" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/autoProvisioningSettings/default", + "name": "default", + "type": "Microsoft.Security/autoProvisioningSettings", + "properties": { + "autoProvision": "On" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/GetAutoProvisioningSettingsSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/GetAutoProvisioningSettingsSubscription_example.json index 4f2838d7e6e2..6e674175ff58 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/GetAutoProvisioningSettingsSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/AutoProvisioningSettings/GetAutoProvisioningSettingsSubscription_example.json @@ -1,20 +1,22 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/autoProvisioningSettings/default", - "name": "default", - "type": "Microsoft.Security/autoProvisioningSettings", - "properties": { - "autoProvision": "On" - } - }] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/autoProvisioningSettings/default", + "name": "default", + "type": "Microsoft.Security/autoProvisioningSettings", + "properties": { + "autoProvision": "On" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Compliances/GetCompliance_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Compliances/GetCompliance_example.json index 668297cb44ef..87dd0b27cb08 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Compliances/GetCompliance_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Compliances/GetCompliance_example.json @@ -1,26 +1,26 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "scope": "subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "complianceName": "2018-01-01Z" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/compliances/2018-01-01Z", - "name": "2018-01-01Z", - "type": "Microsoft.Security/compliances", - "properties": { - "assessmentResult": [ - { - "segmentType": "Compliant", - "percentage": 77.77777777777778 - } - ], - "resourceCount": 18, - "assessmentTimestampUtcDate": "2018-01-01T00:00:00Z" - } + "parameters": { + "api-version": "2017-08-01-preview", + "scope": "subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "complianceName": "2018-01-01Z" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/compliances/2018-01-01Z", + "name": "2018-01-01Z", + "type": "Microsoft.Security/compliances", + "properties": { + "assessmentResult": [ + { + "segmentType": "Compliant", + "percentage": 77.77777777777778 } + ], + "resourceCount": 18, + "assessmentTimestampUtcDate": "2018-01-01T00:00:00Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Compliances/GetCompliances_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Compliances/GetCompliances_example.json index 1337c71c42e2..cbda52855d5c 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Compliances/GetCompliances_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Compliances/GetCompliances_example.json @@ -1,60 +1,59 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "scope": "subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/compliances/2018-01-01Z", - "name": "2018-01-01Z", - "type": "Microsoft.Security/compliances", - "properties": { - "assessmentResult": [ - { - "segmentType": "Compliant", - "percentage": 77.77777777777778 - } - ], - "resourceCount": 18, - "assessmentTimestampUtcDate": "2018-01-01T00:00:00Z" - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/compliances/2018-01-02Z", - "name": "2018-01-02Z", - "type": "Microsoft.Security/compliances", - "properties": { - "assessmentResult": [ - { - "segmentType": "Compliant", - "percentage": 94.44444444444444 - } - ], - "resourceCount": 18, - "assessmentTimestampUtcDate": "2018-01-02T00:00:00Z" - } - - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/compliances/2018-01-03Z", - "name": "2018-01-03Z", - "type": "Microsoft.Security/compliances", - "properties": { - "assessmentResult": [ - { - "segmentType": "Compliant", - "percentage": 100 - } - ], - "resourceCount": 18, - "assessmentTimestampUtcDate": "2018-01-03T00:00:00Z" - } - - } - ] + "parameters": { + "api-version": "2017-08-01-preview", + "scope": "subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/compliances/2018-01-01Z", + "name": "2018-01-01Z", + "type": "Microsoft.Security/compliances", + "properties": { + "assessmentResult": [ + { + "segmentType": "Compliant", + "percentage": 77.77777777777778 + } + ], + "resourceCount": 18, + "assessmentTimestampUtcDate": "2018-01-01T00:00:00Z" } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/compliances/2018-01-02Z", + "name": "2018-01-02Z", + "type": "Microsoft.Security/compliances", + "properties": { + "assessmentResult": [ + { + "segmentType": "Compliant", + "percentage": 94.44444444444444 + } + ], + "resourceCount": 18, + "assessmentTimestampUtcDate": "2018-01-02T00:00:00Z" + } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/compliances/2018-01-03Z", + "name": "2018-01-03Z", + "type": "Microsoft.Security/compliances", + "properties": { + "assessmentResult": [ + { + "segmentType": "Compliant", + "percentage": 100 + } + ], + "resourceCount": 18, + "assessmentTimestampUtcDate": "2018-01-03T00:00:00Z" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/DeleteDeviceSecurityGroups_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/DeleteDeviceSecurityGroups_example.json index e22d8e3ca318..8e1c5e5c235b 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/DeleteDeviceSecurityGroups_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/DeleteDeviceSecurityGroups_example.json @@ -1,11 +1,11 @@ { - "parameters":{ - "api-version":"2017-08-01-preview", - "resourceId":"subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub", - "deviceSecurityGroupName":"samplesecuritygroup" + "parameters": { + "api-version": "2017-08-01-preview", + "resourceId": "subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub", + "deviceSecurityGroupName": "samplesecuritygroup" }, - "responses":{ + "responses": { "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/GetDeviceSecurityGroups_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/GetDeviceSecurityGroups_example.json index 0e757d9d90fa..8e001a685594 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/GetDeviceSecurityGroups_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/GetDeviceSecurityGroups_example.json @@ -1,192 +1,192 @@ { - "parameters":{ - "api-version":"2017-08-01-preview", - "resourceId":"subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub", - "deviceSecurityGroupName":"samplesecuritygroup" + "parameters": { + "api-version": "2017-08-01-preview", + "resourceId": "subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub", + "deviceSecurityGroupName": "samplesecuritygroup" }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", - "name":"samplesecuritygroup", - "type":"Microsoft.Security/deviceSecurityGroups", - "properties":{ - "thresholdRules":[], - "timeWindowRules":[ - { - "ruleType":"ActiveConnectionsNotInAllowedRange", - "displayName":"Number of active connections is not in allowed range", - "description":"Get an alert when the number of active connections of a device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"AmqpC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (AMQP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (MQTT protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (HTTP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"AmqpC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (AMQP protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (MQTT protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (HTTP protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"AmqpD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (AMQP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (MQTT protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (HTTP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"DirectMethodInvokesNotInAllowedRange", - "displayName":"Number of direct method invokes is not in allowed range", - "description":"Get an alert when the number of direct method invokes in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"FailedLocalLoginsNotInAllowedRange", - "displayName":"Number of failed local logins is not in allowed range", - "description":"Get an alert when the number of failed local logins on the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"FileUploadsNotInAllowedRange", - "displayName":"Number of file uploads is not in allowed range", - "description":"Get an alert when the number of file uploads from the device to the cloud in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"QueuePurgesNotInAllowedRange", - "displayName":"Number of device queue purges is not in allowed range", - "description":"Get an alert when the number of device queue purges in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"TwinUpdatesNotInAllowedRange", - "displayName":"Number of twin updates is not in allowed range", - "description":"Get an alert when the number of twin updates (by the device or the service) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"UnauthorizedOperationsNotInAllowedRange", - "displayName":"Number of unauthorized operations is not in allowed range", - "description":"Get an alert when the number unauthorized operations in the time window is not in the allowed range. Unauthorized operations are operations that affect the device (or done by it) that fail because of an unauthorized error", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", + "name": "samplesecuritygroup", + "type": "Microsoft.Security/deviceSecurityGroups", + "properties": { + "thresholdRules": [], + "timeWindowRules": [ + { + "ruleType": "ActiveConnectionsNotInAllowedRange", + "displayName": "Number of active connections is not in allowed range", + "description": "Get an alert when the number of active connections of a device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "AmqpC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (AMQP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (MQTT protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (HTTP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "AmqpC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (AMQP protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (MQTT protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (HTTP protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "AmqpD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (AMQP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (MQTT protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (HTTP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "DirectMethodInvokesNotInAllowedRange", + "displayName": "Number of direct method invokes is not in allowed range", + "description": "Get an alert when the number of direct method invokes in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "FailedLocalLoginsNotInAllowedRange", + "displayName": "Number of failed local logins is not in allowed range", + "description": "Get an alert when the number of failed local logins on the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "FileUploadsNotInAllowedRange", + "displayName": "Number of file uploads is not in allowed range", + "description": "Get an alert when the number of file uploads from the device to the cloud in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "QueuePurgesNotInAllowedRange", + "displayName": "Number of device queue purges is not in allowed range", + "description": "Get an alert when the number of device queue purges in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "TwinUpdatesNotInAllowedRange", + "displayName": "Number of twin updates is not in allowed range", + "description": "Get an alert when the number of twin updates (by the device or the service) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "UnauthorizedOperationsNotInAllowedRange", + "displayName": "Number of unauthorized operations is not in allowed range", + "description": "Get an alert when the number unauthorized operations in the time window is not in the allowed range. Unauthorized operations are operations that affect the device (or done by it) that fail because of an unauthorized error", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" } ], - "allowlistRules":[ + "allowlistRules": [ { - "ruleType":"ConnectionToIpNotAllowed", - "displayName":"Outbound connection to an ip that isn't allowed", - "description":"Get an alert when an outbound connection is created between your device and an ip that isn't allowed", - "isEnabled":false, + "ruleType": "ConnectionToIpNotAllowed", + "displayName": "Outbound connection to an ip that isn't allowed", + "description": "Get an alert when an outbound connection is created between your device and an ip that isn't allowed", + "isEnabled": false, "valueType": "IpCidr", - "allowlistValues":[] + "allowlistValues": [] }, { - "ruleType":"LocalUserNotAllowed", - "displayName":"Login by a local user that isn't allowed", - "description":"Get an alert when a local user that isn't allowed logins to the device", - "isEnabled":false, + "ruleType": "LocalUserNotAllowed", + "displayName": "Login by a local user that isn't allowed", + "description": "Get an alert when a local user that isn't allowed logins to the device", + "isEnabled": false, "valueType": "String", - "allowlistValues":[] + "allowlistValues": [] }, { - "ruleType":"ProcessNotAllowed", - "displayName":"Execution of a process that isn't allowed", - "description":"Get an alert when a process that isn't allowed is executed", - "isEnabled":false, + "ruleType": "ProcessNotAllowed", + "displayName": "Execution of a process that isn't allowed", + "description": "Get an alert when a process that isn't allowed is executed", + "isEnabled": false, "valueType": "String", - "allowlistValues":[] + "allowlistValues": [] } ], - "denylistRules":[] + "denylistRules": [] } } } } -} \ No newline at end of file +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/ListDeviceSecurityGroups_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/ListDeviceSecurityGroups_example.json index 136f807fbd13..a944897579da 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/ListDeviceSecurityGroups_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/ListDeviceSecurityGroups_example.json @@ -1,195 +1,195 @@ { - "parameters":{ - "api-version":"2017-08-01-preview", - "resourceId":"subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub" + "parameters": { + "api-version": "2017-08-01-preview", + "resourceId": "subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "id":"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", - "name":"samplesecuritygroup", - "type":"Microsoft.Security/deviceSecurityGroups", - "properties":{ - "thresholdRules":[], - "timeWindowRules":[ - { - "ruleType":"ActiveConnectionsNotInAllowedRange", - "displayName":"Number of active connections is not in allowed range", - "description":"Get an alert when the number of active connections of a device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"AmqpC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (AMQP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (MQTT protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (HTTP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"AmqpC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (AMQP protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (MQTT protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (HTTP protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"AmqpD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (AMQP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (MQTT protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (HTTP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"DirectMethodInvokesNotInAllowedRange", - "displayName":"Number of direct method invokes is not in allowed range", - "description":"Get an alert when the number of direct method invokes in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"FailedLocalLoginsNotInAllowedRange", - "displayName":"Number of failed local logins is not in allowed range", - "description":"Get an alert when the number of failed local logins on the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"FileUploadsNotInAllowedRange", - "displayName":"Number of file uploads is not in allowed range", - "description":"Get an alert when the number of file uploads from the device to the cloud in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"QueuePurgesNotInAllowedRange", - "displayName":"Number of device queue purges is not in allowed range", - "description":"Get an alert when the number of device queue purges in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"TwinUpdatesNotInAllowedRange", - "displayName":"Number of twin updates is not in allowed range", - "description":"Get an alert when the number of twin updates (by the device or the service) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"UnauthorizedOperationsNotInAllowedRange", - "displayName":"Number of unauthorized operations is not in allowed range", - "description":"Get an alert when the number unauthorized operations in the time window is not in the allowed range. Unauthorized operations are operations that affect the device (or done by it) that fail because of an unauthorized error", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", + "name": "samplesecuritygroup", + "type": "Microsoft.Security/deviceSecurityGroups", + "properties": { + "thresholdRules": [], + "timeWindowRules": [ + { + "ruleType": "ActiveConnectionsNotInAllowedRange", + "displayName": "Number of active connections is not in allowed range", + "description": "Get an alert when the number of active connections of a device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "AmqpC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (AMQP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (MQTT protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (HTTP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "AmqpC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (AMQP protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (MQTT protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (HTTP protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "AmqpD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (AMQP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (MQTT protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (HTTP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "DirectMethodInvokesNotInAllowedRange", + "displayName": "Number of direct method invokes is not in allowed range", + "description": "Get an alert when the number of direct method invokes in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "FailedLocalLoginsNotInAllowedRange", + "displayName": "Number of failed local logins is not in allowed range", + "description": "Get an alert when the number of failed local logins on the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "FileUploadsNotInAllowedRange", + "displayName": "Number of file uploads is not in allowed range", + "description": "Get an alert when the number of file uploads from the device to the cloud in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "QueuePurgesNotInAllowedRange", + "displayName": "Number of device queue purges is not in allowed range", + "description": "Get an alert when the number of device queue purges in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "TwinUpdatesNotInAllowedRange", + "displayName": "Number of twin updates is not in allowed range", + "description": "Get an alert when the number of twin updates (by the device or the service) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "UnauthorizedOperationsNotInAllowedRange", + "displayName": "Number of unauthorized operations is not in allowed range", + "description": "Get an alert when the number unauthorized operations in the time window is not in the allowed range. Unauthorized operations are operations that affect the device (or done by it) that fail because of an unauthorized error", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" } ], - "allowlistRules":[ + "allowlistRules": [ { - "ruleType":"ConnectionToIpNotAllowed", - "displayName":"Outbound connection to an ip that isn't allowed", - "description":"Get an alert when an outbound connection is created between your device and an ip that isn't allowed", - "isEnabled":false, + "ruleType": "ConnectionToIpNotAllowed", + "displayName": "Outbound connection to an ip that isn't allowed", + "description": "Get an alert when an outbound connection is created between your device and an ip that isn't allowed", + "isEnabled": false, "valueType": "IpCidr", - "allowlistValues":[] + "allowlistValues": [] }, { - "ruleType":"LocalUserNotAllowed", - "displayName":"Login by a local user that isn't allowed", - "description":"Get an alert when a local user that isn't allowed logins to the device", - "isEnabled":false, + "ruleType": "LocalUserNotAllowed", + "displayName": "Login by a local user that isn't allowed", + "description": "Get an alert when a local user that isn't allowed logins to the device", + "isEnabled": false, "valueType": "String", - "allowlistValues":[] + "allowlistValues": [] }, { - "ruleType":"ProcessNotAllowed", - "displayName":"Execution of a process that isn't allowed", - "description":"Get an alert when a process that isn't allowed is executed", - "isEnabled":false, + "ruleType": "ProcessNotAllowed", + "displayName": "Execution of a process that isn't allowed", + "description": "Get an alert when a process that isn't allowed is executed", + "isEnabled": false, "valueType": "String", - "allowlistValues":[] + "allowlistValues": [] } ], - "denylistRules":[] + "denylistRules": [] } } ] } } } -} \ No newline at end of file +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/PutDeviceSecurityGroups_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/PutDeviceSecurityGroups_example.json index 9aaf21d4ad30..9492bc79ea23 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/PutDeviceSecurityGroups_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/DeviceSecurityGroups/PutDeviceSecurityGroups_example.json @@ -1,387 +1,387 @@ { - "parameters":{ - "api-version":"2017-08-01-preview", - "resourceId":"subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub", - "deviceSecurityGroupName":"samplesecuritygroup", + "parameters": { + "api-version": "2017-08-01-preview", + "resourceId": "subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub", + "deviceSecurityGroupName": "samplesecuritygroup", "deviceSecurityGroup": { - "id":"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", - "name":"samplesecuritygroup", - "type":"Microsoft.Security/deviceSecurityGroups", + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", + "name": "samplesecuritygroup", + "type": "Microsoft.Security/deviceSecurityGroups", "properties": { - "timeWindowRules":[ + "timeWindowRules": [ { - "ruleType":"ActiveConnectionsNotInAllowedRange", - "displayName":"Number of active connections is not in allowed range", - "description":"Get an alert when the number of active connections of a device in the time window is not in the allowed range", - "isEnabled":true, - "minThreshold":0, - "maxThreshold":30, - "timeWindowSize":"PT05M" + "ruleType": "ActiveConnectionsNotInAllowedRange", + "displayName": "Number of active connections is not in allowed range", + "description": "Get an alert when the number of active connections of a device in the time window is not in the allowed range", + "isEnabled": true, + "minThreshold": 0, + "maxThreshold": 30, + "timeWindowSize": "PT05M" } ] } } }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", - "name":"samplesecuritygroup", - "type":"Microsoft.Security/deviceSecurityGroups", - "properties":{ - "thresholdRules":[], - "timeWindowRules":[ - { - "ruleType":"ActiveConnectionsNotInAllowedRange", - "displayName":"Number of active connections is not in allowed range", - "description":"Get an alert when the number of active connections of a device in the time window is not in the allowed range", - "isEnabled":true, - "minThreshold":0, - "maxThreshold":30, - "timeWindowSize":"PT05M" - }, - { - "ruleType":"AmqpC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (AMQP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (MQTT protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (HTTP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"AmqpC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (AMQP protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (MQTT protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (HTTP protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"AmqpD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (AMQP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (MQTT protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (HTTP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"DirectMethodInvokesNotInAllowedRange", - "displayName":"Number of direct method invokes is not in allowed range", - "description":"Get an alert when the number of direct method invokes in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"FailedLocalLoginsNotInAllowedRange", - "displayName":"Number of failed local logins is not in allowed range", - "description":"Get an alert when the number of failed local logins on the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"FileUploadsNotInAllowedRange", - "displayName":"Number of file uploads is not in allowed range", - "description":"Get an alert when the number of file uploads from the device to the cloud in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"QueuePurgesNotInAllowedRange", - "displayName":"Number of device queue purges is not in allowed range", - "description":"Get an alert when the number of device queue purges in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"TwinUpdatesNotInAllowedRange", - "displayName":"Number of twin updates is not in allowed range", - "description":"Get an alert when the number of twin updates (by the device or the service) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"UnauthorizedOperationsNotInAllowedRange", - "displayName":"Number of unauthorized operations is not in allowed range", - "description":"Get an alert when the number unauthorized operations in the time window is not in the allowed range. Unauthorized operations are operations that affect the device (or done by it) that fail because of an unauthorized error", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", + "name": "samplesecuritygroup", + "type": "Microsoft.Security/deviceSecurityGroups", + "properties": { + "thresholdRules": [], + "timeWindowRules": [ + { + "ruleType": "ActiveConnectionsNotInAllowedRange", + "displayName": "Number of active connections is not in allowed range", + "description": "Get an alert when the number of active connections of a device in the time window is not in the allowed range", + "isEnabled": true, + "minThreshold": 0, + "maxThreshold": 30, + "timeWindowSize": "PT05M" + }, + { + "ruleType": "AmqpC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (AMQP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (MQTT protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (HTTP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "AmqpC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (AMQP protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (MQTT protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (HTTP protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "AmqpD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (AMQP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (MQTT protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (HTTP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "DirectMethodInvokesNotInAllowedRange", + "displayName": "Number of direct method invokes is not in allowed range", + "description": "Get an alert when the number of direct method invokes in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "FailedLocalLoginsNotInAllowedRange", + "displayName": "Number of failed local logins is not in allowed range", + "description": "Get an alert when the number of failed local logins on the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "FileUploadsNotInAllowedRange", + "displayName": "Number of file uploads is not in allowed range", + "description": "Get an alert when the number of file uploads from the device to the cloud in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "QueuePurgesNotInAllowedRange", + "displayName": "Number of device queue purges is not in allowed range", + "description": "Get an alert when the number of device queue purges in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "TwinUpdatesNotInAllowedRange", + "displayName": "Number of twin updates is not in allowed range", + "description": "Get an alert when the number of twin updates (by the device or the service) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "UnauthorizedOperationsNotInAllowedRange", + "displayName": "Number of unauthorized operations is not in allowed range", + "description": "Get an alert when the number unauthorized operations in the time window is not in the allowed range. Unauthorized operations are operations that affect the device (or done by it) that fail because of an unauthorized error", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" } ], - "allowlistRules":[ + "allowlistRules": [ { - "ruleType":"ConnectionToIpNotAllowed", - "displayName":"Outbound connection to an ip that isn't allowed", - "description":"Get an alert when an outbound connection is created between your device and an ip that isn't allowed", - "isEnabled":false, - "allowlistValues":[] + "ruleType": "ConnectionToIpNotAllowed", + "displayName": "Outbound connection to an ip that isn't allowed", + "description": "Get an alert when an outbound connection is created between your device and an ip that isn't allowed", + "isEnabled": false, + "allowlistValues": [] }, { - "ruleType":"LocalUserNotAllowed", - "displayName":"Login by a local user that isn't allowed", - "description":"Get an alert when a local user that isn't allowed logins to the device", - "isEnabled":false, - "allowlistValues":[] + "ruleType": "LocalUserNotAllowed", + "displayName": "Login by a local user that isn't allowed", + "description": "Get an alert when a local user that isn't allowed logins to the device", + "isEnabled": false, + "allowlistValues": [] }, { - "ruleType":"ProcessNotAllowed", - "displayName":"Execution of a process that isn't allowed", - "description":"Get an alert when a process that isn't allowed is executed", - "isEnabled":false, - "allowlistValues":[] + "ruleType": "ProcessNotAllowed", + "displayName": "Execution of a process that isn't allowed", + "description": "Get an alert when a process that isn't allowed is executed", + "isEnabled": false, + "allowlistValues": [] } ], - "denylistRules":[] + "denylistRules": [] } } }, - "201":{ - "body":{ - "id":"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", - "name":"samplesecuritygroup", - "type":"Microsoft.Security/deviceSecurityGroups", - "properties":{ - "thresholdRules":[], - "timeWindowRules":[ - { - "ruleType":"ActiveConnectionsNotInAllowedRange", - "displayName":"Number of active connections is not in allowed range", - "description":"Get an alert when the number of active connections of a device in the time window is not in the allowed range", - "isEnabled":true, - "minThreshold":0, - "maxThreshold":30, - "timeWindowSize":"PT05M" - }, - { - "ruleType":"AmqpC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (AMQP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (MQTT protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpC2DMessagesNotInAllowedRange", - "displayName":"Number of cloud to device messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (HTTP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"AmqpC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (AMQP protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (MQTT protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpC2DRejectedMessagesNotInAllowedRange", - "displayName":"Number of rejected cloud to device messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of cloud to device messages (HTTP protocol) that were rejected by the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"AmqpD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (AMQP protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (AMQP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"MqttD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (MQTT protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (MQTT protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"HttpD2CMessagesNotInAllowedRange", - "displayName":"Number of device to cloud messages (HTTP protocol) is not in allowed range", - "description":"Get an alert when the number of device to cloud messages (HTTP protocol) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"DirectMethodInvokesNotInAllowedRange", - "displayName":"Number of direct method invokes is not in allowed range", - "description":"Get an alert when the number of direct method invokes in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"FailedLocalLoginsNotInAllowedRange", - "displayName":"Number of failed local logins is not in allowed range", - "description":"Get an alert when the number of failed local logins on the device in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"FileUploadsNotInAllowedRange", - "displayName":"Number of file uploads is not in allowed range", - "description":"Get an alert when the number of file uploads from the device to the cloud in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"QueuePurgesNotInAllowedRange", - "displayName":"Number of device queue purges is not in allowed range", - "description":"Get an alert when the number of device queue purges in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"TwinUpdatesNotInAllowedRange", - "displayName":"Number of twin updates is not in allowed range", - "description":"Get an alert when the number of twin updates (by the device or the service) in the time window is not in the allowed range", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" - }, - { - "ruleType":"UnauthorizedOperationsNotInAllowedRange", - "displayName":"Number of unauthorized operations is not in allowed range", - "description":"Get an alert when the number unauthorized operations in the time window is not in the allowed range. Unauthorized operations are operations that affect the device (or done by it) that fail because of an unauthorized error", - "isEnabled":false, - "minThreshold":0, - "maxThreshold":0, - "timeWindowSize":"PT15M" + "201": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", + "name": "samplesecuritygroup", + "type": "Microsoft.Security/deviceSecurityGroups", + "properties": { + "thresholdRules": [], + "timeWindowRules": [ + { + "ruleType": "ActiveConnectionsNotInAllowedRange", + "displayName": "Number of active connections is not in allowed range", + "description": "Get an alert when the number of active connections of a device in the time window is not in the allowed range", + "isEnabled": true, + "minThreshold": 0, + "maxThreshold": 30, + "timeWindowSize": "PT05M" + }, + { + "ruleType": "AmqpC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (AMQP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (MQTT protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpC2DMessagesNotInAllowedRange", + "displayName": "Number of cloud to device messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (HTTP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "AmqpC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (AMQP protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (MQTT protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpC2DRejectedMessagesNotInAllowedRange", + "displayName": "Number of rejected cloud to device messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of cloud to device messages (HTTP protocol) that were rejected by the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "AmqpD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (AMQP protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (AMQP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "MqttD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (MQTT protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (MQTT protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "HttpD2CMessagesNotInAllowedRange", + "displayName": "Number of device to cloud messages (HTTP protocol) is not in allowed range", + "description": "Get an alert when the number of device to cloud messages (HTTP protocol) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "DirectMethodInvokesNotInAllowedRange", + "displayName": "Number of direct method invokes is not in allowed range", + "description": "Get an alert when the number of direct method invokes in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "FailedLocalLoginsNotInAllowedRange", + "displayName": "Number of failed local logins is not in allowed range", + "description": "Get an alert when the number of failed local logins on the device in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "FileUploadsNotInAllowedRange", + "displayName": "Number of file uploads is not in allowed range", + "description": "Get an alert when the number of file uploads from the device to the cloud in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "QueuePurgesNotInAllowedRange", + "displayName": "Number of device queue purges is not in allowed range", + "description": "Get an alert when the number of device queue purges in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "TwinUpdatesNotInAllowedRange", + "displayName": "Number of twin updates is not in allowed range", + "description": "Get an alert when the number of twin updates (by the device or the service) in the time window is not in the allowed range", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" + }, + { + "ruleType": "UnauthorizedOperationsNotInAllowedRange", + "displayName": "Number of unauthorized operations is not in allowed range", + "description": "Get an alert when the number unauthorized operations in the time window is not in the allowed range. Unauthorized operations are operations that affect the device (or done by it) that fail because of an unauthorized error", + "isEnabled": false, + "minThreshold": 0, + "maxThreshold": 0, + "timeWindowSize": "PT15M" } ], - "allowlistRules":[ + "allowlistRules": [ { - "ruleType":"ConnectionToIpNotAllowed", - "displayName":"Outbound connection to an ip that isn't allowed", - "description":"Get an alert when an outbound connection is created between your device and an ip that isn't allowed", - "isEnabled":false, - "allowlistValues":[] + "ruleType": "ConnectionToIpNotAllowed", + "displayName": "Outbound connection to an ip that isn't allowed", + "description": "Get an alert when an outbound connection is created between your device and an ip that isn't allowed", + "isEnabled": false, + "allowlistValues": [] }, { - "ruleType":"LocalUserNotAllowed", - "displayName":"Login by a local user that isn't allowed", - "description":"Get an alert when a local user that isn't allowed logins to the device", - "isEnabled":false, - "allowlistValues":[] + "ruleType": "LocalUserNotAllowed", + "displayName": "Login by a local user that isn't allowed", + "description": "Get an alert when a local user that isn't allowed logins to the device", + "isEnabled": false, + "allowlistValues": [] }, { - "ruleType":"ProcessNotAllowed", - "displayName":"Execution of a process that isn't allowed", - "description":"Get an alert when a process that isn't allowed is executed", - "isEnabled":false, - "allowlistValues":[] + "ruleType": "ProcessNotAllowed", + "displayName": "Execution of a process that isn't allowed", + "description": "Get an alert when a process that isn't allowed is executed", + "isEnabled": false, + "allowlistValues": [] } ], - "denylistRules":[] + "denylistRules": [] } } } } -} \ No newline at end of file +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/CreateOrUpdateInformationProtectionPolicy_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/CreateOrUpdateInformationProtectionPolicy_example.json index 405d97f5dbc6..eeb717b89952 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/CreateOrUpdateInformationProtectionPolicy_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/CreateOrUpdateInformationProtectionPolicy_example.json @@ -1,169 +1,175 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "scope": "providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e", - "informationProtectionPolicyName": "custom", - "InformationProtectionPolicy": { - "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/custom", - "name": "custom", - "type": "Microsoft.Security/informationProtectionPolicies", - "properties": { - "labels": { - "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { - "displayName": "Public", - "order": 100, - "enabled": true - }, - "7aa516c7-5a53-4857-bc6e-6808c6acd542": { - "displayName": "General", - "order": 200, - "enabled": true - }, - "575739d2-3d53-4df0-9042-4c7772d5c7b1": { - "displayName": "Confidential", - "order": 300, - "enabled": true - } - }, - "informationTypes": { - "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { - "displayName": "Networking", - "order": 100, - "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", - "enabled": true, - "custom": false, - "keywords": [{ - "pattern": "%networking%", - "custom": true, - "canBeNumeric": false - } - ] - }, - "3bf35491-99b8-41f2-86d5-c1200a7df658": { - "displayName": "Custom", - "order": 1400, - "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", - "enabled": true, - "custom": true, - "keywords": [{ - "pattern": "%custom%", - "custom": true, - "canBeNumeric": true - } - ] - } + "parameters": { + "api-version": "2017-08-01-preview", + "scope": "providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e", + "informationProtectionPolicyName": "custom", + "InformationProtectionPolicy": { + "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/custom", + "name": "custom", + "type": "Microsoft.Security/informationProtectionPolicies", + "properties": { + "labels": { + "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { + "displayName": "Public", + "order": 100, + "enabled": true + }, + "7aa516c7-5a53-4857-bc6e-6808c6acd542": { + "displayName": "General", + "order": 200, + "enabled": true + }, + "575739d2-3d53-4df0-9042-4c7772d5c7b1": { + "displayName": "Confidential", + "order": 300, + "enabled": true + } + }, + "informationTypes": { + "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { + "displayName": "Networking", + "order": 100, + "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", + "enabled": true, + "custom": false, + "keywords": [ + { + "pattern": "%networking%", + "custom": true, + "canBeNumeric": false + } + ] + }, + "3bf35491-99b8-41f2-86d5-c1200a7df658": { + "displayName": "Custom", + "order": 1400, + "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", + "enabled": true, + "custom": true, + "keywords": [ + { + "pattern": "%custom%", + "custom": true, + "canBeNumeric": true + } + ] + } + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/custom", + "name": "custom", + "type": "Microsoft.Security/informationProtectionPolicies", + "properties": { + "labels": { + "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { + "displayName": "Public", + "order": 100, + "enabled": true + }, + "7aa516c7-5a53-4857-bc6e-6808c6acd542": { + "displayName": "General", + "order": 200, + "enabled": true + }, + "575739d2-3d53-4df0-9042-4c7772d5c7b1": { + "displayName": "Confidential", + "order": 300, + "enabled": true + } + }, + "informationTypes": { + "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { + "displayName": "Networking", + "order": 100, + "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", + "enabled": true, + "custom": false, + "keywords": [ + { + "pattern": "%networking%", + "custom": true, + "canBeNumeric": false } + ] + }, + "3bf35491-99b8-41f2-86d5-c1200a7df658": { + "displayName": "Custom", + "order": 1400, + "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", + "enabled": true, + "custom": true, + "keywords": [ + { + "pattern": "%custom%", + "custom": true, + "canBeNumeric": true + } + ] } + } } + } }, - "responses": { - "200": { - "body": { - "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/custom", - "name": "custom", - "type": "Microsoft.Security/informationProtectionPolicies", - "properties": { - "labels": { - "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { - "displayName": "Public", - "order": 100, - "enabled": true - }, - "7aa516c7-5a53-4857-bc6e-6808c6acd542": { - "displayName": "General", - "order": 200, - "enabled": true - }, - "575739d2-3d53-4df0-9042-4c7772d5c7b1": { - "displayName": "Confidential", - "order": 300, - "enabled": true - } - }, - "informationTypes": { - "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { - "displayName": "Networking", - "order": 100, - "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", - "enabled": true, - "custom": false, - "keywords": [{ - "pattern": "%networking%", - "custom": true, - "canBeNumeric": false - } - ] - }, - "3bf35491-99b8-41f2-86d5-c1200a7df658": { - "displayName": "Custom", - "order": 1400, - "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", - "enabled": true, - "custom": true, - "keywords": [{ - "pattern": "%custom%", - "custom": true, - "canBeNumeric": true - } - ] - } - } - } + "201": { + "body": { + "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/custom", + "name": "custom", + "type": "Microsoft.Security/informationProtectionPolicies", + "properties": { + "labels": { + "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { + "displayName": "Public", + "order": 100, + "enabled": true + }, + "7aa516c7-5a53-4857-bc6e-6808c6acd542": { + "displayName": "General", + "order": 200, + "enabled": true + }, + "575739d2-3d53-4df0-9042-4c7772d5c7b1": { + "displayName": "Confidential", + "order": 300, + "enabled": true } - }, - "201": { - "body": { - "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/custom", - "name": "custom", - "type": "Microsoft.Security/informationProtectionPolicies", - "properties": { - "labels": { - "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { - "displayName": "Public", - "order": 100, - "enabled": true - }, - "7aa516c7-5a53-4857-bc6e-6808c6acd542": { - "displayName": "General", - "order": 200, - "enabled": true - }, - "575739d2-3d53-4df0-9042-4c7772d5c7b1": { - "displayName": "Confidential", - "order": 300, - "enabled": true - } - }, - "informationTypes": { - "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { - "displayName": "Networking", - "order": 100, - "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", - "enabled": true, - "custom": false, - "keywords": [{ - "pattern": "%networking%", - "custom": true, - "canBeNumeric": false - } - ] - }, - "3bf35491-99b8-41f2-86d5-c1200a7df658": { - "displayName": "Custom", - "order": 1400, - "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", - "enabled": true, - "custom": true, - "keywords": [{ - "pattern": "%custom%", - "custom": true, - "canBeNumeric": true - } - ] - } - } + }, + "informationTypes": { + "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { + "displayName": "Networking", + "order": 100, + "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", + "enabled": true, + "custom": false, + "keywords": [ + { + "pattern": "%networking%", + "custom": true, + "canBeNumeric": false + } + ] + }, + "3bf35491-99b8-41f2-86d5-c1200a7df658": { + "displayName": "Custom", + "order": 1400, + "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", + "enabled": true, + "custom": true, + "keywords": [ + { + "pattern": "%custom%", + "custom": true, + "canBeNumeric": true } + ] } + } } + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/GetCustomInformationProtectionPolicy_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/GetCustomInformationProtectionPolicy_example.json index 9cb86e28ba22..38dcb1184435 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/GetCustomInformationProtectionPolicy_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/GetCustomInformationProtectionPolicy_example.json @@ -1,64 +1,65 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "scope": "providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e", - "informationProtectionPolicyName": "custom" - }, - "responses": { - "200": { - "body": { - "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/custom", - "name": "custom", - "type": "Microsoft.Security/informationProtectionPolicies", - "properties": { - "labels": { - "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { - "displayName": "Public", - "order": 100, - "enabled": true - }, - "7aa516c7-5a53-4857-bc6e-6808c6acd542": { - "displayName": "General", - "order": 200, - "enabled": true - }, - "575739d2-3d53-4df0-9042-4c7772d5c7b1": { - "displayName": "Confidential", - "order": 300, - "enabled": true - } - }, - "informationTypes": { - - "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { - "displayName": "Networking", - "order": 100, - "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", - "enabled": true, - "custom": false, - "keywords": [{ - "pattern": "%networking%", - "custom": true, - "canBeNumeric": false - } - ] - }, - "3bf35491-99b8-41f2-86d5-c1200a7df658": { - "displayName": "Custom", - "order": 1400, - "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", - "enabled": true, - "custom": true, - "keywords": [{ - "pattern": "%custom%", - "custom": true, - "canBeNumeric": true - } - ] - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "scope": "providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e", + "informationProtectionPolicyName": "custom" + }, + "responses": { + "200": { + "body": { + "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/custom", + "name": "custom", + "type": "Microsoft.Security/informationProtectionPolicies", + "properties": { + "labels": { + "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { + "displayName": "Public", + "order": 100, + "enabled": true + }, + "7aa516c7-5a53-4857-bc6e-6808c6acd542": { + "displayName": "General", + "order": 200, + "enabled": true + }, + "575739d2-3d53-4df0-9042-4c7772d5c7b1": { + "displayName": "Confidential", + "order": 300, + "enabled": true + } + }, + "informationTypes": { + "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { + "displayName": "Networking", + "order": 100, + "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", + "enabled": true, + "custom": false, + "keywords": [ + { + "pattern": "%networking%", + "custom": true, + "canBeNumeric": false + } + ] + }, + "3bf35491-99b8-41f2-86d5-c1200a7df658": { + "displayName": "Custom", + "order": 1400, + "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", + "enabled": true, + "custom": true, + "keywords": [ + { + "pattern": "%custom%", + "custom": true, + "canBeNumeric": true } + ] } + } } + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/GetEffectiveInformationProtectionPolicy_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/GetEffectiveInformationProtectionPolicy_example.json index bbdb431fa29d..c9cd3c502e71 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/GetEffectiveInformationProtectionPolicy_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/GetEffectiveInformationProtectionPolicy_example.json @@ -1,105 +1,115 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "scope": "providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e", - "informationProtectionPolicyName": "effective" - }, - "responses": { - "200": { - "body": { - "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/effective", - "name": "effective", - "type": "Microsoft.Security/informationProtectionPolicies", - "properties": { - "labels": { - "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { - "displayName": "Public", - "order": 100, - "enabled": true - }, - "7aa516c7-5a53-4857-bc6e-6808c6acd542": { - "displayName": "General", - "order": 200, - "enabled": true - }, - "575739d2-3d53-4df0-9042-4c7772d5c7b1": { - "displayName": "Confidential", - "order": 300, - "enabled": true - } - }, - "informationTypes": { - "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { - "displayName": "Networking", - "order": 100, - "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", - "enabled": true, - "custom": false, - "keywords": [{ - "pattern": "%ip%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "ip%address%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "%mac%address%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "%networking%", - "custom": true, - "canBeNumeric": true, - "excluded": true - } - ] - }, - "5856f35c-8e08-4d08-9bf7-87a146150569": { - "displayName": "Contact Info", - "order": 200, - "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", - "enabled": true, - "custom": false, - "keywords": [{ - "pattern": "%email%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "%e-mail%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "%addr%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "%street%", - "custom": false, - "canBeNumeric": true - }, { - "pattern": "%city%", - "custom": false, - "canBeNumeric": false - } - ] - }, - "3bf35491-99b8-41f2-86d5-c1200a7df658": { - "displayName": "Custom", - "order": 1400, - "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", - "enabled": true, - "custom": true, - "keywords": [{ - "pattern": "%networking%", - "custom": true, - "canBeNumeric": false - } - ] - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "scope": "providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e", + "informationProtectionPolicyName": "effective" + }, + "responses": { + "200": { + "body": { + "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/effective", + "name": "effective", + "type": "Microsoft.Security/informationProtectionPolicies", + "properties": { + "labels": { + "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { + "displayName": "Public", + "order": 100, + "enabled": true + }, + "7aa516c7-5a53-4857-bc6e-6808c6acd542": { + "displayName": "General", + "order": 200, + "enabled": true + }, + "575739d2-3d53-4df0-9042-4c7772d5c7b1": { + "displayName": "Confidential", + "order": 300, + "enabled": true + } + }, + "informationTypes": { + "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { + "displayName": "Networking", + "order": 100, + "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", + "enabled": true, + "custom": false, + "keywords": [ + { + "pattern": "%ip%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "ip%address%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "%mac%address%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "%networking%", + "custom": true, + "canBeNumeric": true, + "excluded": true + } + ] + }, + "5856f35c-8e08-4d08-9bf7-87a146150569": { + "displayName": "Contact Info", + "order": 200, + "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", + "enabled": true, + "custom": false, + "keywords": [ + { + "pattern": "%email%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "%e-mail%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "%addr%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "%street%", + "custom": false, + "canBeNumeric": true + }, + { + "pattern": "%city%", + "custom": false, + "canBeNumeric": false + } + ] + }, + "3bf35491-99b8-41f2-86d5-c1200a7df658": { + "displayName": "Custom", + "order": 1400, + "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", + "enabled": true, + "custom": true, + "keywords": [ + { + "pattern": "%networking%", + "custom": true, + "canBeNumeric": false } + ] } + } } + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/ListInformationProtectionPolicies_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/ListInformationProtectionPolicies_example.json index 024ce7dc4d55..f1b795193c1c 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/ListInformationProtectionPolicies_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/InformationProtectionPolicies/ListInformationProtectionPolicies_example.json @@ -1,158 +1,171 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "scope": "providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/effective", - "name": "effective", - "type": "Microsoft.Security/informationProtectionPolicies", - "properties": { - "labels": { - "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { - "displayName": "Public", - "order": 100, - "enabled": true - }, - "7aa516c7-5a53-4857-bc6e-6808c6acd542": { - "displayName": "General", - "order": 200, - "enabled": true - }, - "575739d2-3d53-4df0-9042-4c7772d5c7b1": { - "displayName": "Confidential", - "order": 300, - "enabled": true - } - }, - "informationTypes": { - "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { - "displayName": "Networking", - "order": 100, - "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", - "enabled": true, - "custom": false, - "keywords": [{ - "pattern": "%ip%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "ip%address%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "%mac%address%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "%networking%", - "custom": true, - "canBeNumeric": true - } - ] - }, - "5856f35c-8e08-4d08-9bf7-87a146150569": { - "displayName": "Contact Info", - "order": 200, - "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", - "enabled": true, - "custom": false, - "keywords": [{ - "pattern": "%email%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "%e-mail%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "%addr%", - "custom": false, - "canBeNumeric": false - }, { - "pattern": "%street%", - "custom": false, - "canBeNumeric": true - }, { - "pattern": "%city%", - "custom": false, - "canBeNumeric": false - } - ] - }, - "3bf35491-99b8-41f2-86d5-c1200a7df658": { - "displayName": "Custom", - "order": 1400, - "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", - "enabled": true, - "custom": true, - "keywords": [{ - "pattern": "%networking%", - "custom": true, - "canBeNumeric": false - } - ] - } - } - } - }, { - "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/custom", - "name": "custom", - "type": "Microsoft.Security/informationProtectionPolicies", - "properties": { - "labels": { - "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { - "displayName": "Public", - "order": 100, - "enabled": true - }, - "7aa516c7-5a53-4857-bc6e-6808c6acd542": { - "displayName": "General", - "order": 200, - "enabled": true - }, - "575739d2-3d53-4df0-9042-4c7772d5c7b1": { - "displayName": "Confidential", - "order": 300, - "enabled": true - } - }, - "informationTypes": { - - "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { - "displayName": "Networking", - "order": 100, - "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", - "enabled": true, - "custom": false, - "keywords": [{ - "pattern": "%networking%", - "custom": true, - "canBeNumeric": false - } - ] - }, - "3bf35491-99b8-41f2-86d5-c1200a7df658": { - "displayName": "Custom", - "order": 1400, - "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", - "enabled": true, - "custom": true, - "keywords": [{ - "pattern": "%custom%", - "custom": true, - "canBeNumeric": true - } - ] - } - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "scope": "providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/effective", + "name": "effective", + "type": "Microsoft.Security/informationProtectionPolicies", + "properties": { + "labels": { + "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { + "displayName": "Public", + "order": 100, + "enabled": true + }, + "7aa516c7-5a53-4857-bc6e-6808c6acd542": { + "displayName": "General", + "order": 200, + "enabled": true + }, + "575739d2-3d53-4df0-9042-4c7772d5c7b1": { + "displayName": "Confidential", + "order": 300, + "enabled": true + } + }, + "informationTypes": { + "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { + "displayName": "Networking", + "order": 100, + "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", + "enabled": true, + "custom": false, + "keywords": [ + { + "pattern": "%ip%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "ip%address%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "%mac%address%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "%networking%", + "custom": true, + "canBeNumeric": true } - ] + ] + }, + "5856f35c-8e08-4d08-9bf7-87a146150569": { + "displayName": "Contact Info", + "order": 200, + "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", + "enabled": true, + "custom": false, + "keywords": [ + { + "pattern": "%email%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "%e-mail%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "%addr%", + "custom": false, + "canBeNumeric": false + }, + { + "pattern": "%street%", + "custom": false, + "canBeNumeric": true + }, + { + "pattern": "%city%", + "custom": false, + "canBeNumeric": false + } + ] + }, + "3bf35491-99b8-41f2-86d5-c1200a7df658": { + "displayName": "Custom", + "order": 1400, + "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", + "enabled": true, + "custom": true, + "keywords": [ + { + "pattern": "%networking%", + "custom": true, + "canBeNumeric": false + } + ] + } + } + } + }, + { + "id": "/providers/Microsoft.Management/managementGroups/148059f7-faf3-49a6-ba35-85122112291e/providers/Microsoft.Security/informationProtectionPolicies/custom", + "name": "custom", + "type": "Microsoft.Security/informationProtectionPolicies", + "properties": { + "labels": { + "1345da73-bc5a-4a8f-b7dd-3820eb713da8": { + "displayName": "Public", + "order": 100, + "enabled": true + }, + "7aa516c7-5a53-4857-bc6e-6808c6acd542": { + "displayName": "General", + "order": 200, + "enabled": true + }, + "575739d2-3d53-4df0-9042-4c7772d5c7b1": { + "displayName": "Confidential", + "order": 300, + "enabled": true + } + }, + "informationTypes": { + "7fb9419d-2473-4ad8-8e11-b25cc8cf6a07": { + "displayName": "Networking", + "order": 100, + "recommendedLabelId": "575739d2-3d53-4df0-9042-4c7772d5c7b1", + "enabled": true, + "custom": false, + "keywords": [ + { + "pattern": "%networking%", + "custom": true, + "canBeNumeric": false + } + ] + }, + "3bf35491-99b8-41f2-86d5-c1200a7df658": { + "displayName": "Custom", + "order": 1400, + "recommendedLabelId": "7aa516c7-5a53-4857-bc6e-6808c6acd542", + "enabled": true, + "custom": true, + "keywords": [ + { + "pattern": "%custom%", + "custom": true, + "canBeNumeric": true + } + ] + } + } } - } + } + ] + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/CreateIoTSecuritySolution_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/CreateIoTSecuritySolution_example.json index f2ba1de31369..3c02031dd29c 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/CreateIoTSecuritySolution_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/CreateIoTSecuritySolution_example.json @@ -1,60 +1,62 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "MyGroup", - "solutionName": "default", - "iotSecuritySolutionData": { - "tags": {}, - "location": "East Us", - "properties": { - "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", - "status": "Enabled", - "export": [], - "disabledDataSources": [], - "displayName": "Solution Default", - "iotHubs": [ - "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" - ] - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "MyGroup", + "solutionName": "default", + "iotSecuritySolutionData": { + "tags": {}, + "location": "East Us", + "properties": { + "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", + "status": "Enabled", + "export": [], + "disabledDataSources": [], + "displayName": "Solution Default", + "iotHubs": [ + "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/Locations/eastus/IoTSecuritySolutions/default", + "name": "default", + "type": "Microsoft.Security/IoTSecuritySolutions", + "location": "East Us", + "tags": {}, + "properties": { + "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", + "status": "Enabled", + "export": [], + "disabledDataSources": [], + "displayName": "Solution Default", + "iotHubs": [ + "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" + ] + } } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/Locations/eastus/IoTSecuritySolutions/default", - "name": "default", - "type": "Microsoft.Security/IoTSecuritySolutions", - "location": "East Us", - "tags": {}, - "properties": { - "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", - "status": "Enabled", - "export": [], - "disabledDataSources": [], - "displayName": "Solution Default", - "iotHubs": [ - "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" - ] - }} - }, - "201": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/Locations/eastus/IoTSecuritySolutions/default", - "name": "default", - "type": "Microsoft.Security/IoTSecuritySolutions", - "location": "East Us", - "tags": {}, - "properties": { - "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", - "status": "Enabled", - "export": [], - "disabledDataSources": [], - "displayName": "Solution Default", - "iotHubs": [ - "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" - ] - }} + "201": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/Locations/eastus/IoTSecuritySolutions/default", + "name": "default", + "type": "Microsoft.Security/IoTSecuritySolutions", + "location": "East Us", + "tags": {}, + "properties": { + "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", + "status": "Enabled", + "export": [], + "disabledDataSources": [], + "displayName": "Solution Default", + "iotHubs": [ + "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/DeleteIoTSecuritySolution_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/DeleteIoTSecuritySolution_example.json index 9f2b35e3ef9c..f7911c653843 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/DeleteIoTSecuritySolution_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/DeleteIoTSecuritySolution_example.json @@ -1,14 +1,12 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "MyGroup", - "solutionName": "default" - }, - "responses": { - "204": { - }, - "200": { - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "MyGroup", + "solutionName": "default" + }, + "responses": { + "204": {}, + "200": {} + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolution_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolution_example.json index 6557bb952d4e..6649a20b1f76 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolution_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolution_example.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHubAndRg_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHubAndRg_example.json index 5ca6e9589d10..09ca8885a0d8 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHubAndRg_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHubAndRg_example.json @@ -1,32 +1,35 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "MyRg", - "$filter": "properties.iotHubs/any(i eq \"/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub\")" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyRg/providers/Microsoft.Security/IoTSecuritySolutions/Locations/eastus/default", - "name": "default", - "type": "Microsoft.Security/IoTSecuritySolutions", - "location": "East Us", - "tags": {}, - "properties": { - "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", - "status": "Enabled", - "export": ["RawEvents"], - "disabledDataSources": [], - "displayName": "Solution Default", - "iotHubs": [ - "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" - ] - } - } - ] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "MyRg", + "$filter": "properties.iotHubs/any(i eq \"/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub\")" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyRg/providers/Microsoft.Security/IoTSecuritySolutions/Locations/eastus/default", + "name": "default", + "type": "Microsoft.Security/IoTSecuritySolutions", + "location": "East Us", + "tags": {}, + "properties": { + "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", + "status": "Enabled", + "export": [ + "RawEvents" + ], + "disabledDataSources": [], + "displayName": "Solution Default", + "iotHubs": [ + "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" + ] } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHub_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHub_example.json index d042c035e4b5..0cf73800b547 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHub_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHub_example.json @@ -1,31 +1,34 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "$filter": "properties.iotHubs/any(i eq \"/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub\")" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/IoTSecuritySolutions/Locations/eastus/default", - "name": "default", - "type": "Microsoft.Security/IoTSecuritySolutions", - "location": "East Us", - "tags": {}, - "properties": { - "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", - "status": "Enabled", - "export": ["RawEvents"], - "disabledDataSources": [], - "displayName": "Solution Default", - "iotHubs": [ - "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" - ] - } - } - ] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "$filter": "properties.iotHubs/any(i eq \"/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub\")" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/IoTSecuritySolutions/Locations/eastus/default", + "name": "default", + "type": "Microsoft.Security/IoTSecuritySolutions", + "location": "East Us", + "tags": {}, + "properties": { + "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", + "status": "Enabled", + "export": [ + "RawEvents" + ], + "disabledDataSources": [], + "displayName": "Solution Default", + "iotHubs": [ + "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" + ] } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByRg_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByRg_example.json index b4f00207cccc..79adc7eb0f1a 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByRg_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByRg_example.json @@ -1,31 +1,32 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName" : "MyGroup" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/IoTSecuritySolutions/Locations/eastus/default", - "name": "default", - "location": "East Us", - "type": "Microsoft.Security/IoTSecuritySolutions", - "tags": {}, - "properties": { - "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", - "status": "Enabled", - "export": [], - "disabledDataSources": [], - "displayName": "Solution Default", - "iotHubs": [ - "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" - ] - } - } - ] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "MyGroup" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/IoTSecuritySolutions/Locations/eastus/default", + "name": "default", + "location": "East Us", + "type": "Microsoft.Security/IoTSecuritySolutions", + "tags": {}, + "properties": { + "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", + "status": "Enabled", + "export": [], + "disabledDataSources": [], + "displayName": "Solution Default", + "iotHubs": [ + "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" + ] } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsList_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsList_example.json index 12c5c5ed3ab7..7b102b844eb5 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsList_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/GetIoTSecuritySolutionsList_example.json @@ -1,47 +1,50 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/IoTSecuritySolutions/Locations/eastus/default", - "name": "default", - "location": "East Us", - "type": "Microsoft.Security/IoTSecuritySolutions", - "tags": {}, - "properties": { - "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", - "status": "Enabled", - "export": [], - "disabledDataSources": [], - "displayName": "Solution Default", - "iotHubs": [ - "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" - ] - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SecondGroup/providers/Microsoft.Security/IoTSecuritySolutions/Locations/eastus/sec-solution", - "name": "sec-solution", - "location": "East Us", - "type": "Microsoft.Security/IoTSecuritySolutions", - "tags": {}, - "properties": { - "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", - "status": "Enabled", - "export": ["RawEvents"], - "disabledDataSources": [], - "displayName": "Second Solution", - "iotHubs": [ - "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/IotHubSecond" - ] - } - } - ] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/IoTSecuritySolutions/Locations/eastus/default", + "name": "default", + "location": "East Us", + "type": "Microsoft.Security/IoTSecuritySolutions", + "tags": {}, + "properties": { + "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", + "status": "Enabled", + "export": [], + "disabledDataSources": [], + "displayName": "Solution Default", + "iotHubs": [ + "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" + ] } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SecondGroup/providers/Microsoft.Security/IoTSecuritySolutions/Locations/eastus/sec-solution", + "name": "sec-solution", + "location": "East Us", + "type": "Microsoft.Security/IoTSecuritySolutions", + "tags": {}, + "properties": { + "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", + "status": "Enabled", + "export": [ + "RawEvents" + ], + "disabledDataSources": [], + "displayName": "Second Solution", + "iotHubs": [ + "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/IotHubSecond" + ] + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/UpdateIoTSecuritySolution_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/UpdateIoTSecuritySolution_example.json index 2d8c1a16fd7b..0d2da798697a 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/UpdateIoTSecuritySolution_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/IoTSecuritySolutions/UpdateIoTSecuritySolution_example.json @@ -1,33 +1,38 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg", - "solutionName": "default", - "securitySolutionTags": { - "tags":{ - "foo": "bar" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/Locations/eastus/IoTSecuritySolutions/default", - "name": "default", - "type": "Microsoft.Security/IoTSecuritySolutions", - "location": "East Us", - "tags": { "foo": "bar" }, - "properties": { - "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", - "status": "Enabled", - "export": ["RawEvents"], - "disabledDataSources": [], - "displayName": "Solution Default", - "iotHubs": [ - "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" - ] - }} + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg", + "solutionName": "default", + "securitySolutionTags": { + "tags": { + "foo": "bar" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/MyGroup/providers/Microsoft.Security/Locations/eastus/IoTSecuritySolutions/default", + "name": "default", + "type": "Microsoft.Security/IoTSecuritySolutions", + "location": "East Us", + "tags": { + "foo": "bar" + }, + "properties": { + "workspace": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", + "status": "Enabled", + "export": [ + "RawEvents" + ], + "disabledDataSources": [], + "displayName": "Solution Default", + "iotHubs": [ + "/subscriptions/075423e9-7d33-4166-8bdf-3920b04e3735/resourceGroups/myRg/providers/Microsoft.Devices/IotHubs/FirstIotHub" + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/CreatePricingsResourceGroup_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/CreatePricingsResourceGroup_example.json index e59560bc370e..ade01d7e892b 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/CreatePricingsResourceGroup_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/CreatePricingsResourceGroup_example.json @@ -1,28 +1,28 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg", - "pricingName": "myRg", - "pricing": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/pricings/myRg", - "name": "myRg", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/myRg", - "name": "myRg", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg", + "pricingName": "myRg", + "pricing": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/pricings/myRg", + "name": "myRg", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/myRg", + "name": "myRg", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/CreatePricingsSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/CreatePricingsSubscription_example.json index 220052e0447c..70107ad9e5b0 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/CreatePricingsSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/CreatePricingsSubscription_example.json @@ -1,27 +1,27 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "pricingName": "default", - "pricing": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/default", - "name": "default", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/default", - "name": "default", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "pricingName": "default", + "pricing": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/default", + "name": "default", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/default", + "name": "default", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingResourceGroup_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingResourceGroup_example.json index 2a10c1b3bae4..3057007e8378 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingResourceGroup_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingResourceGroup_example.json @@ -1,20 +1,20 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg", - "pricingName": "myRg" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/myRg", - "name": "myRg", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg", + "pricingName": "myRg" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/myRg", + "name": "myRg", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingSubscription_example.json index 9113f59599c7..8bf387360442 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingSubscription_example.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "pricingName": "default" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/default", - "name": "default", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "pricingName": "default" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/default", + "name": "default", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingsResourceGroup_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingsResourceGroup_example.json index e439e08cbff5..d78fc2fe80b7 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingsResourceGroup_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingsResourceGroup_example.json @@ -1,21 +1,23 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/myRg", - "name": "myRg", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - }] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/myRg", + "name": "myRg", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingsSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingsSubscription_example.json index 5a88b41a641a..9d8accc54d30 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingsSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Pricings/GetPricingsSubscription_example.json @@ -1,20 +1,22 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/default", - "name": "default", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - }] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/default", + "name": "default", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/CreateSecurityContact_full_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/CreateSecurityContact_full_example.json index 6826d1ff4817..2b86d482dbc3 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/CreateSecurityContact_full_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/CreateSecurityContact_full_example.json @@ -1,33 +1,33 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "securityContactName": "default1", - "securityContact": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", - "name": "default1", - "type": "Microsoft.Security/securityContacts", - "properties": { - "email": "john@contoso.com", - "phone": "(214)275-4038", - "alertNotifications": "On", - "alertsToAdmins": "On" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", - "name": "default1", - "type": "Microsoft.Security/securityContacts", - "properties": { - "email": "john@contoso.com", - "phone": "(214)275-4038", - "alertNotifications": "On", - "alertsToAdmins": "On" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "securityContactName": "default1", + "securityContact": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", + "name": "default1", + "type": "Microsoft.Security/securityContacts", + "properties": { + "email": "john@contoso.com", + "phone": "(214)275-4038", + "alertNotifications": "On", + "alertsToAdmins": "On" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", + "name": "default1", + "type": "Microsoft.Security/securityContacts", + "properties": { + "email": "john@contoso.com", + "phone": "(214)275-4038", + "alertNotifications": "On", + "alertsToAdmins": "On" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/CreateSecurityContact_min_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/CreateSecurityContact_min_example.json index 9071d3667bb5..8f8c636d0761 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/CreateSecurityContact_min_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/CreateSecurityContact_min_example.json @@ -1,31 +1,31 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "securityContactName": "default2", - "securityContact": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", - "name": "default2", - "type": "Microsoft.Security/securityContacts", - "properties": { - "email": "chen@contoso.com", - "alertNotifications": "On", - "alertsToAdmins": "On" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", - "name": "default2", - "type": "Microsoft.Security/securityContacts", - "properties": { - "email": "chen@contoso.com", - "alertNotifications": "On", - "alertsToAdmins": "On" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "securityContactName": "default2", + "securityContact": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", + "name": "default2", + "type": "Microsoft.Security/securityContacts", + "properties": { + "email": "chen@contoso.com", + "alertNotifications": "On", + "alertsToAdmins": "On" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", + "name": "default2", + "type": "Microsoft.Security/securityContacts", + "properties": { + "email": "chen@contoso.com", + "alertNotifications": "On", + "alertsToAdmins": "On" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/DeleteSecurityContact_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/DeleteSecurityContact_example.json index cfa39960c1c9..3ec1e7817319 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/DeleteSecurityContact_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/DeleteSecurityContact_example.json @@ -1,11 +1,10 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "securityContactName": "default1" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "securityContactName": "default1" + }, + "responses": { + "204": {} + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContact_full_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContact_full_example.json index 4f2560852e53..06017625fc2a 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContact_full_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContact_full_example.json @@ -1,22 +1,22 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "securityContactName": "default1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", - "name": "default1", - "type": "Microsoft.Security/securityContacts", - "properties": { - "email": "john@contoso.com", - "phone": "(214)275-4038", - "alertNotifications": "On", - "alertsToAdmins": "On" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "securityContactName": "default1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", + "name": "default1", + "type": "Microsoft.Security/securityContacts", + "properties": { + "email": "john@contoso.com", + "phone": "(214)275-4038", + "alertNotifications": "On", + "alertsToAdmins": "On" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContact_min_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContact_min_example.json index e3ef6d40c47e..c41fdeeae861 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContact_min_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContact_min_example.json @@ -1,21 +1,21 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "securityContactName": "default2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", - "name": "default2", - "type": "Microsoft.Security/securityContacts", - "properties": { - "email": "chen@contoso.com", - "alertNotifications": "On", - "alertsToAdmins": "On" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "securityContactName": "default2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", + "name": "default2", + "type": "Microsoft.Security/securityContacts", + "properties": { + "email": "chen@contoso.com", + "alertNotifications": "On", + "alertsToAdmins": "On" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContactsSubscription_full_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContactsSubscription_full_example.json index b894be26d6fa..0a97ffe4bf4f 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContactsSubscription_full_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContactsSubscription_full_example.json @@ -1,23 +1,25 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", - "name": "default1", - "type": "Microsoft.Security/securityContacts", - "properties": { - "email": "john@contoso.com", - "phone": "(214)275-4038", - "alertNotifications": "On", - "alertsToAdmins": "On" - } - }] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", + "name": "default1", + "type": "Microsoft.Security/securityContacts", + "properties": { + "email": "john@contoso.com", + "phone": "(214)275-4038", + "alertNotifications": "On", + "alertsToAdmins": "On" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContactsSubscription_min_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContactsSubscription_min_example.json index b416fa948ca8..050a02c70b2e 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContactsSubscription_min_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/GetSecurityContactsSubscription_min_example.json @@ -1,22 +1,24 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", - "name": "default2", - "type": "Microsoft.Security/securityContacts", - "properties": { - "email": "chen@contoso.com", - "alertNotifications": "On", - "alertsToAdmins": "On" - } - }] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", + "name": "default2", + "type": "Microsoft.Security/securityContacts", + "properties": { + "email": "chen@contoso.com", + "alertNotifications": "On", + "alertsToAdmins": "On" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/UpdateSecurityContact_full_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/UpdateSecurityContact_full_example.json index f1ed7b070044..31c8c8a09c8f 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/UpdateSecurityContact_full_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/UpdateSecurityContact_full_example.json @@ -1,31 +1,31 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "securityContactName": "john", - "securityContact": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", - "name": "default1", - "type": "Microsoft.Security/securityContacts", - "properties": { - "phone": "(214)275-4038", - "alertNotifications": "On" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", - "name": "default1", - "type": "Microsoft.Security/securityContacts", - "properties": { - "email": "john@contoso.com", - "phone": "(214)275-4038", - "alertNotifications": "On", - "alertsToAdmins": "Off" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "securityContactName": "john", + "securityContact": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", + "name": "default1", + "type": "Microsoft.Security/securityContacts", + "properties": { + "phone": "(214)275-4038", + "alertNotifications": "On" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", + "name": "default1", + "type": "Microsoft.Security/securityContacts", + "properties": { + "email": "john@contoso.com", + "phone": "(214)275-4038", + "alertNotifications": "On", + "alertsToAdmins": "Off" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/UpdateSecurityContact_min_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/UpdateSecurityContact_min_example.json index 8ecb447d4746..15dc62fe5d67 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/UpdateSecurityContact_min_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/SecurityContacts/UpdateSecurityContact_min_example.json @@ -1,29 +1,29 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "securityContactName": "default2", - "securityContact": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", - "name": "default2", - "type": "Microsoft.Security/securityContacts", - "properties": { - "alertNotifications": "On" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", - "name": "default2", - "type": "Microsoft.Security/securityContacts", - "properties": { - "email": "chen@contoso.com", - "alertNotifications": "On", - "alertsToAdmins": "Off" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "securityContactName": "default2", + "securityContact": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", + "name": "default2", + "type": "Microsoft.Security/securityContacts", + "properties": { + "alertNotifications": "On" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", + "name": "default2", + "type": "Microsoft.Security/securityContacts", + "properties": { + "email": "chen@contoso.com", + "alertNotifications": "On", + "alertsToAdmins": "Off" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/GetSetting_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/GetSetting_example.json index d400edf86c57..181c67497c00 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/GetSetting_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/GetSetting_example.json @@ -1,20 +1,20 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "settingName": "MCAS" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", - "name": "MCAS", - "kind": "DataExportSetting", - "type": "Microsoft.Security/settings", - "properties": { - "enabled": true - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "settingName": "MCAS" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", + "name": "MCAS", + "kind": "DataExportSetting", + "type": "Microsoft.Security/settings", + "properties": { + "enabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/GetSettings_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/GetSettings_example.json index acf22eeb4e3b..c646eea28aec 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/GetSettings_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/GetSettings_example.json @@ -1,32 +1,32 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", - "name": "MCAS", - "kind": "DataExportSetting", - "type": "Microsoft.Security/settings", - "properties": { - "enabled": true - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/WDATP", - "name": "WDATP", - "kind": "DataExportSetting", - "type": "Microsoft.Security/settings", - "properties": { - "enabled": false - } - } - ] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", + "name": "MCAS", + "kind": "DataExportSetting", + "type": "Microsoft.Security/settings", + "properties": { + "enabled": true } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/WDATP", + "name": "WDATP", + "kind": "DataExportSetting", + "type": "Microsoft.Security/settings", + "properties": { + "enabled": false + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/UpdateSetting_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/UpdateSetting_example.json index 17c046d4d999..e9815a163a4d 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/UpdateSetting_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/Settings/UpdateSetting_example.json @@ -1,29 +1,29 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "settingName": "MCAS", - "setting": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", - "name": "MCAS", - "kind": "DataExportSetting", - "type": "Microsoft.Security/settings", - "properties": { - "enabled": true - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", - "name": "MCAS", - "kind": "DataExportSetting", - "type": "Microsoft.Security/settings", - "properties": { - "enabled": true - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "settingName": "MCAS", + "setting": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", + "name": "MCAS", + "kind": "DataExportSetting", + "type": "Microsoft.Security/settings", + "properties": { + "enabled": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", + "name": "MCAS", + "kind": "DataExportSetting", + "type": "Microsoft.Security/settings", + "properties": { + "enabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/CreateWorkspaceSetting_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/CreateWorkspaceSetting_example.json index f9ecc62a9965..8a291c3e60fc 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/CreateWorkspaceSetting_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/CreateWorkspaceSetting_example.json @@ -1,29 +1,29 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "workspaceSettingName": "default", - "workspaceSetting": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", - "name": "default", - "type": "Microsoft.Security/workspaceSettings", - "properties": { - "workspaceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace", - "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", - "name": "default", - "type": "Microsoft.Security/workspaceSettings", - "properties": { - "workspaceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace", - "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "workspaceSettingName": "default", + "workspaceSetting": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", + "name": "default", + "type": "Microsoft.Security/workspaceSettings", + "properties": { + "workspaceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace", + "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", + "name": "default", + "type": "Microsoft.Security/workspaceSettings", + "properties": { + "workspaceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace", + "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/DeleteWorkspaceSetting_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/DeleteWorkspaceSetting_example.json index 9bb7be67b739..8b8d8126d83e 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/DeleteWorkspaceSetting_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/DeleteWorkspaceSetting_example.json @@ -1,11 +1,10 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "workspaceSettingName": "default" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "workspaceSettingName": "default" + }, + "responses": { + "204": {} + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/GetWorkspaceSetting_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/GetWorkspaceSetting_example.json index 705d85293349..115958b19922 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/GetWorkspaceSetting_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/GetWorkspaceSetting_example.json @@ -1,20 +1,20 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "workspaceSettingName": "default" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", - "name": "default", - "type": "Microsoft.Security/workspaceSettings", - "properties": { - "workspaceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace", - "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "workspaceSettingName": "default" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", + "name": "default", + "type": "Microsoft.Security/workspaceSettings", + "properties": { + "workspaceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace", + "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/GetWorkspaceSettings_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/GetWorkspaceSettings_example.json index d4b23e39d093..5f124eab7be2 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/GetWorkspaceSettings_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/GetWorkspaceSettings_example.json @@ -1,31 +1,32 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", - "name": "default", - "type": "Microsoft.Security/workspaceSettings", - "properties": { - "workspaceId": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", - "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/workspaceSettings/myRg", - "name": "myRg", - "type": "Microsoft.Security/workspaceSettings", - "properties": { - "workspaceId": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myOtherRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace2", - "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg" - } - } - ] + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", + "name": "default", + "type": "Microsoft.Security/workspaceSettings", + "properties": { + "workspaceId": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1", + "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/workspaceSettings/myRg", + "name": "myRg", + "type": "Microsoft.Security/workspaceSettings", + "properties": { + "workspaceId": "/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myOtherRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace2", + "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/UpdateWorkspaceSetting_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/UpdateWorkspaceSetting_example.json index e4e7078f84cd..89721a408118 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/UpdateWorkspaceSetting_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/examples/WorkspaceSettings/UpdateWorkspaceSetting_example.json @@ -1,28 +1,28 @@ { - "parameters": { - "api-version": "2017-08-01-preview", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "workspaceSettingName": "default", - "workspaceSetting": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", - "name": "default", - "type": "Microsoft.Security/workspaceSettings", - "properties": { - "workspaceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", - "name": "default", - "type": "Microsoft.Security/workspaceSettings", - "properties": { - "workspaceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace", - "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" - } - } + "parameters": { + "api-version": "2017-08-01-preview", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "workspaceSettingName": "default", + "workspaceSetting": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", + "name": "default", + "type": "Microsoft.Security/workspaceSettings", + "properties": { + "workspaceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", + "name": "default", + "type": "Microsoft.Security/workspaceSettings", + "properties": { + "workspaceId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace", + "scope": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/informationProtectionPolicies.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/informationProtectionPolicies.json index 1b276d6702d0..160233ecc06e 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/informationProtectionPolicies.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/informationProtectionPolicies.json @@ -1,289 +1,315 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2017-08-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2017-08-01-preview" + }, + "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": { + "/{scope}/providers/Microsoft.Security/informationProtectionPolicies/{informationProtectionPolicyName}": { + "get": { + "x-ms-examples": { + "Get the customized information protection policy for a management group": { + "$ref": "./examples/InformationProtectionPolicies/GetCustomInformationProtectionPolicy_example.json" + }, + "Get the effective information protection policy for a management group": { + "$ref": "./examples/InformationProtectionPolicies/GetEffectiveInformationProtectionPolicy_example.json" + } + }, + "tags": [ + "InformationProtectionPolicies" + ], + "description": "Details of the information protection policy.", + "operationId": "InformationProtectionPolicies_Get", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/Scope" + }, + { + "$ref": "#/parameters/InformationProtectionPolicyName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/InformationProtectionPolicy" } - } - }, - "paths": { - "/{scope}/providers/Microsoft.Security/informationProtectionPolicies/{informationProtectionPolicyName}": { - "get": { - "x-ms-examples": { - "Get the customized information protection policy for a management group": { - "$ref": "./examples/InformationProtectionPolicies/GetCustomInformationProtectionPolicy_example.json" - }, - "Get the effective information protection policy for a management group": { - "$ref": "./examples/InformationProtectionPolicies/GetEffectiveInformationProtectionPolicy_example.json" - } - }, - "tags": ["InformationProtectionPolicies"], - "description": "Details of the information protection policy.", - "operationId": "InformationProtectionPolicies_Get", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/Scope" - }, { - "$ref": "#/parameters/InformationProtectionPolicyName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/InformationProtectionPolicy" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Create or update an information protection policy for a management group": { - "$ref": "./examples/InformationProtectionPolicies/CreateOrUpdateInformationProtectionPolicy_example.json" - } - }, - "tags": ["InformationProtectionPolicies"], - "description": "Details of the information protection policy.", - "operationId": "InformationProtectionPolicies_CreateOrUpdate", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/Scope" - }, { - "$ref": "#/parameters/InformationProtectionPolicyName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/InformationProtectionPolicy" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/InformationProtectionPolicy" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + } + }, + "put": { + "x-ms-examples": { + "Create or update an information protection policy for a management group": { + "$ref": "./examples/InformationProtectionPolicies/CreateOrUpdateInformationProtectionPolicy_example.json" + } }, - "/{scope}/providers/Microsoft.Security/informationProtectionPolicies": { - "get": { - "x-ms-examples": { - "Get information protection policies": { - "$ref": "./examples/InformationProtectionPolicies/ListInformationProtectionPolicies_example.json" - } - }, - "tags": ["InformationProtectionPolicies"], - "description": "Information protection policies of a specific management group.", - "operationId": "InformationProtectionPolicies_List", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/Scope" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/InformationProtectionPolicyList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "tags": [ + "InformationProtectionPolicies" + ], + "description": "Details of the information protection policy.", + "operationId": "InformationProtectionPolicies_CreateOrUpdate", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/Scope" + }, + { + "$ref": "#/parameters/InformationProtectionPolicyName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/InformationProtectionPolicy" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/InformationProtectionPolicy" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } } + } }, - "definitions": { - "InformationProtectionPolicyList": { - "type": "object", - "readOnly": true, - "description": "Information protection policies response.", - "properties": { - "value": { - "type": "array", - "description": "List of information protection policies.", - "items": { - "$ref": "#/definitions/InformationProtectionPolicy" - } - }, - "nextLink": { - "readOnly": true, - "type": "string", - "description": "The URI to fetch the next page." - } + "/{scope}/providers/Microsoft.Security/informationProtectionPolicies": { + "get": { + "x-ms-examples": { + "Get information protection policies": { + "$ref": "./examples/InformationProtectionPolicies/ListInformationProtectionPolicies_example.json" + } + }, + "tags": [ + "InformationProtectionPolicies" + ], + "description": "Information protection policies of a specific management group.", + "operationId": "InformationProtectionPolicies_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/Scope" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/InformationProtectionPolicyList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } }, - "InformationProtectionPolicy": { - "type": "object", - "description": "Information protection policy.", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Information protection policy data", - "$ref": "#/definitions/InformationProtectionPolicyProperties" - } - }, - "allOf": [{ - "$ref": "../../../common/v1/types.json#/definitions/Resource" - } - ] + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + } + }, + "definitions": { + "InformationProtectionPolicyList": { + "type": "object", + "readOnly": true, + "description": "Information protection policies response.", + "properties": { + "value": { + "type": "array", + "description": "List of information protection policies.", + "items": { + "$ref": "#/definitions/InformationProtectionPolicy" + } }, - "InformationProtectionPolicyProperties": { - "type": "object", - "description": "describes properties of an information protection policy.", - "properties": { - "lastModifiedUtc": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Describes the last UTC time the policy was modified." - }, - "labels": { - "type": "object", - "description": "Dictionary of sensitivity labels.", - "additionalProperties": { - "type": "object", - "$ref": "#/definitions/SensitivityLabel" - } - }, - "informationTypes": { - "type": "object", - "description": "The sensitivity information types.", - "additionalProperties": { - "type": "object", - "$ref": "#/definitions/InformationType" - } - } - } + "nextLink": { + "readOnly": true, + "type": "string", + "description": "The URI to fetch the next page." + } + } + }, + "InformationProtectionPolicy": { + "type": "object", + "description": "Information protection policy.", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Information protection policy data", + "$ref": "#/definitions/InformationProtectionPolicyProperties" + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" + } + ] + }, + "InformationProtectionPolicyProperties": { + "type": "object", + "description": "describes properties of an information protection policy.", + "properties": { + "lastModifiedUtc": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Describes the last UTC time the policy was modified." }, - "SensitivityLabel": { + "labels": { + "type": "object", + "description": "Dictionary of sensitivity labels.", + "additionalProperties": { "type": "object", - "description": "The sensitivity label.", - "properties": { - "displayName": { - "type": "string", - "description": "The name of the sensitivity label." - }, - "order": { - "type": "number", - "description": "The order of the sensitivity label." - }, - "enabled": { - "type": "boolean", - "description": "Indicates whether the label is enabled or not." - } - } + "$ref": "#/definitions/SensitivityLabel" + } }, - "InformationType": { + "informationTypes": { + "type": "object", + "description": "The sensitivity information types.", + "additionalProperties": { "type": "object", - "description": "The information type.", - "properties": { - "displayName": { - "type": "string", - "description": "The name of the information type." - }, - "order": { - "type": "number", - "description": "The order of the information type." - }, - "recommendedLabelId": { - "type": "string", - "format": "uuid", - "description": "The recommended label id to be associated with this information type." - }, - "enabled": { - "type": "boolean", - "description": "Indicates whether the information type is enabled or not." - }, - "custom": { - "type": "boolean", - "description": "Indicates whether the information type is custom or not." - }, - "keywords": { - "type": "array", - "description": "The information type keywords.", - "items": { - "$ref": "#/definitions/InformationProtectionKeyword" - } - } - } + "$ref": "#/definitions/InformationType" + } + } + } + }, + "SensitivityLabel": { + "type": "object", + "description": "The sensitivity label.", + "properties": { + "displayName": { + "type": "string", + "description": "The name of the sensitivity label." }, - "InformationProtectionKeyword": { - "type": "object", - "description": "The information type keyword.", - "properties": { - "pattern": { - "type": "string", - "description": "The keyword pattern." - }, - "custom": { - "type": "boolean", - "description": "Indicates whether the keyword is custom or not." - }, - "canBeNumeric": { - "type": "boolean", - "description": "Indicates whether the keyword can be applied on numeric types or not." - }, - "excluded": { - "type": "boolean", - "description": "Indicates whether the keyword is excluded or not." - } - } + "order": { + "type": "number", + "description": "The order of the sensitivity label." + }, + "enabled": { + "type": "boolean", + "description": "Indicates whether the label is enabled or not." + } + } + }, + "InformationType": { + "type": "object", + "description": "The information type.", + "properties": { + "displayName": { + "type": "string", + "description": "The name of the information type." + }, + "order": { + "type": "number", + "description": "The order of the information type." + }, + "recommendedLabelId": { + "type": "string", + "format": "uuid", + "description": "The recommended label id to be associated with this information type." + }, + "enabled": { + "type": "boolean", + "description": "Indicates whether the information type is enabled or not." + }, + "custom": { + "type": "boolean", + "description": "Indicates whether the information type is custom or not." + }, + "keywords": { + "type": "array", + "description": "The information type keywords.", + "items": { + "$ref": "#/definitions/InformationProtectionKeyword" + } } + } }, - "parameters": { - "InformationProtectionPolicyName": { - "name": "informationProtectionPolicyName", - "in": "path", - "required": true, - "type": "string", - "enum": ["effective", "custom"], - "description": "Name of the information protection policy.", - "x-ms-parameter-location": "method" + "InformationProtectionKeyword": { + "type": "object", + "description": "The information type keyword.", + "properties": { + "pattern": { + "type": "string", + "description": "The keyword pattern." + }, + "custom": { + "type": "boolean", + "description": "Indicates whether the keyword is custom or not." + }, + "canBeNumeric": { + "type": "boolean", + "description": "Indicates whether the keyword can be applied on numeric types or not." + }, + "excluded": { + "type": "boolean", + "description": "Indicates whether the keyword is excluded or not." } + } + } + }, + "parameters": { + "InformationProtectionPolicyName": { + "name": "informationProtectionPolicyName", + "in": "path", + "required": true, + "type": "string", + "enum": [ + "effective", + "custom" + ], + "description": "Name of the information protection policy.", + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/iotSecuritySolutions.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/iotSecuritySolutions.json index f5f099a912bb..1f537f2a4f08 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/iotSecuritySolutions.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/iotSecuritySolutions.json @@ -1,442 +1,475 @@ { "swagger": "2.0", "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2017-08-01-preview" + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2017-08-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], - "security": [{ + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "security": [ + { "azure_auth": [ - "user_impersonation" + "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" - } + "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.Security/iotSecuritySolutions": { - "get": { - "x-ms-examples": { - "Get Security Solutions list": { - "$ref": "./examples/IoTSecuritySolutions/GetIoTSecuritySolutionsList_example.json" - }, - "Get Security Solutions list By IotHub": { - "$ref": "./examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHub_example.json" - } - }, - "tags": ["IoT Security Solutions"], - "description": "List of security solutions", - "operationId": "IoTSecuritySolutions_List", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/FilterParam" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IoTSecuritySolutionsList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "/subscriptions/{subscriptionId}/providers/Microsoft.Security/iotSecuritySolutions": { + "get": { + "x-ms-examples": { + "Get Security Solutions list": { + "$ref": "./examples/IoTSecuritySolutions/GetIoTSecuritySolutionsList_example.json" + }, + "Get Security Solutions list By IotHub": { + "$ref": "./examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHub_example.json" + } + }, + "tags": [ + "IoT Security Solutions" + ], + "description": "List of security solutions", + "operationId": "IoTSecuritySolutions_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/FilterParam" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IoTSecuritySolutionsList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/iotSecuritySolutions": { + "get": { + "x-ms-examples": { + "Get Security Solutions list": { + "$ref": "./examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByRg_example.json" + }, + "Get Security Solutions list By IotHub": { + "$ref": "./examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHubAndRg_example.json" + } + }, + "tags": [ + "IoT Security Solutions" + ], + "description": "List of security solutions", + "operationId": "IoTSecuritySolutionsResourceGroup_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/FilterParam" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IoTSecuritySolutionsList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/iotSecuritySolutions/{solutionName}": { + "get": { + "x-ms-examples": { + "Get an iot security solution": { + "$ref": "./examples/IoTSecuritySolutions/GetIoTSecuritySolution_example.json" + } + }, + "tags": [ + "IoT Security Solutions" + ], + "description": "Details of a specific iot security solution", + "operationId": "IotSecuritySolution_Get", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/SolutionName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IoTSecuritySolutionModel" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/iotSecuritySolutions": { - "get": { - "x-ms-examples": { - "Get Security Solutions list": { - "$ref": "./examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByRg_example.json" - }, - "Get Security Solutions list By IotHub": { - "$ref": "./examples/IoTSecuritySolutions/GetIoTSecuritySolutionsListByIotHubAndRg_example.json" - } - }, - "tags": ["IoT Security Solutions"], - "description": "List of security solutions", - "operationId": "IoTSecuritySolutionsResourceGroup_List", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/FilterParam" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IoTSecuritySolutionsList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "put": { + "x-ms-examples": { + "Create an iot security solution": { + "$ref": "./examples/IoTSecuritySolutions/CreateIoTSecuritySolution_example.json" + } + }, + "tags": [ + "IoT Security Solutions" + ], + "description": "Create new solution manager", + "operationId": "IotSecuritySolution_Create", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/SolutionName" + }, + { + "$ref": "#/parameters/IotSecuritySolutionData" } + ], + "responses": { + "200": { + "description": "Updated", + "schema": { + "$ref": "#/definitions/IoTSecuritySolutionModel" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/IoTSecuritySolutionModel" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/iotSecuritySolutions/{solutionName}": { - "get": { - "x-ms-examples": { - "Get an iot security solution": { - "$ref": "./examples/IoTSecuritySolutions/GetIoTSecuritySolution_example.json" - } - }, - "tags": ["IoT Security Solutions"], - "description": "Details of a specific iot security solution", - "operationId": "IotSecuritySolution_Get", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/SolutionName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/IoTSecuritySolutionModel" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Create an iot security solution": { - "$ref": "./examples/IoTSecuritySolutions/CreateIoTSecuritySolution_example.json" - } - }, - "tags": ["IoT Security Solutions"], - "description": "Create new solution manager", - "operationId": "IotSecuritySolution_Create", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/SolutionName" - }, - { - "$ref": "#/parameters/IotSecuritySolutionData" - } - ], - "responses": { - "200": { - "description": "Updated", - "schema": { - "$ref": "#/definitions/IoTSecuritySolutionModel" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/IoTSecuritySolutionModel" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "patch": { - "x-ms-examples": { - "Create an iot security solution": { - "$ref": "./examples/IoTSecuritySolutions/UpdateIoTSecuritySolution_example.json" - } - }, - "tags": ["IoT Security Solutions"], - "description": "update exists Security Solution tags. to update other fields use the CreateOrUpdate method", - "operationId": "IotSecuritySolution_Update", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/SolutionName" - }, - { - "name": "securitySolutionTags", - "in": "body", - "required": true, - "description": "Updated tag information to set into the iot hub instance.", - "schema": { - "$ref": "#/definitions/TagsResource" - } - } - ], - "responses": { - "200": { - "description": "Updated", - "schema": { - "$ref": "#/definitions/IoTSecuritySolutionModel" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Create an iot security solution": { - "$ref": "./examples/IoTSecuritySolutions/DeleteIoTSecuritySolution_example.json" - } - }, - "tags": ["IoT Security Solutions"], - "description": "Create new solution manager", - "operationId": "IotSecuritySolution_Delete", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/SolutionName" - } - ], - "responses": { - "200": { - "description": "Security Solution deleted" - }, - "204": { - "description": "Security Solution was not exists" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "patch": { + "x-ms-examples": { + "Create an iot security solution": { + "$ref": "./examples/IoTSecuritySolutions/UpdateIoTSecuritySolution_example.json" + } + }, + "tags": [ + "IoT Security Solutions" + ], + "description": "update exists Security Solution tags. to update other fields use the CreateOrUpdate method", + "operationId": "IotSecuritySolution_Update", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/SolutionName" + }, + { + "name": "securitySolutionTags", + "in": "body", + "required": true, + "description": "Updated tag information to set into the iot hub instance.", + "schema": { + "$ref": "#/definitions/TagsResource" + } + } + ], + "responses": { + "200": { + "description": "Updated", + "schema": { + "$ref": "#/definitions/IoTSecuritySolutionModel" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } + }, + "delete": { + "x-ms-examples": { + "Create an iot security solution": { + "$ref": "./examples/IoTSecuritySolutions/DeleteIoTSecuritySolution_example.json" + } + }, + "tags": [ + "IoT Security Solutions" + ], + "description": "Create new solution manager", + "operationId": "IotSecuritySolution_Delete", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/SolutionName" + } + ], + "responses": { + "200": { + "description": "Security Solution deleted" + }, + "204": { + "description": "Security Solution was not exists" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } } + } } + } }, "definitions": { - "TagsResource": { - "properties": { - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" + "TagsResource": { + "properties": { + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + } + }, + "description": "A container holding only the Tags for a resource, allowing the user to update the tags." + }, + "IoTSecuritySolutionsList": { + "description": "List of iot solutions", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of security solutions", + "items": { + "$ref": "#/definitions/IoTSecuritySolutionModel" } }, - "description": "A container holding only the Tags for a resource, allowing the user to update the tags." + "nextLink": { + "readOnly": true, + "type": "string", + "description": "The URI to fetch the next page." + } + } + }, + "IoTSecuritySolutionModel": { + "type": "object", + "description": "Security Solution", + "properties": { + "location": { + "type": "string", + "description": "The resource location." + }, + "properties": { + "x-ms-client-flatten": true, + "description": "Security Solution data", + "$ref": "#/definitions/IoTSecuritySolutionProperties" + } }, - "IoTSecuritySolutionsList": { - "description": "List of iot solutions", - "required": [ - "value" + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" + }, + { + "$ref": "#/definitions/TagsResource" + } + ] + }, + "IoTSecuritySolutionProperties": { + "type": "object", + "description": "Security Solution setting data", + "properties": { + "workspace": { + "type": "string", + "description": "Workspace resource ID" + }, + "displayName": { + "type": "string", + "description": "Resource display name." + }, + "status": { + "type": "string", + "enum": [ + "Enabled", + "Disabled" ], - "properties": { - "value": { - "type": "array", - "description": "List of security solutions", - "items": { - "$ref": "#/definitions/IoTSecuritySolutionModel" - } - }, - "nextLink": { - "readOnly": true, - "type": "string", - "description": "The URI to fetch the next page." - } + "default": "Enabled", + "description": "Security solution status", + "x-ms-enum": { + "name": "SecuritySolutionStatus", + "modelAsString": true } + }, + "export": { + "type": "array", + "items": { + "enum": [ + "RawEvents" + ], + "type": "string", + "x-ms-enum": { + "name": "ExportData", + "modelAsString": true, + "values": [ + { + "value": "RawEvents", + "description": "Agent raw events" + } + ] + } + }, + "description": "List of additional export to workspace data options" + }, + "disabledDataSources": { + "type": "array", + "items": { + "enum": [ + "TwinData" + ], + "type": "string", + "x-ms-enum": { + "name": "DataSource", + "modelAsString": true, + "values": [ + { + "value": "TwinData", + "description": "Devices twin data" + } + ] + } + }, + "description": "Disabled data sources. Disabling these data sources compromises the system." + }, + "iotHubs": { + "type": "array", + "description": "IoT Hub resource IDs", + "items": { + "type": "string" + } + } }, - "IoTSecuritySolutionModel": { - "type": "object", - "description": "Security Solution", - "properties": { - "location": { - "type": "string", - "description": "The resource location." - }, - "properties": { - "x-ms-client-flatten": true, - "description": "Security Solution data", - "$ref": "#/definitions/IoTSecuritySolutionProperties" - } - }, - "allOf": [{ - "$ref": "../../../common/v1/types.json#/definitions/Resource" - }, {"$ref": "#/definitions/TagsResource"}] - }, - "IoTSecuritySolutionProperties": { - "type": "object", - "description": "Security Solution setting data", - "properties": { - "workspace": { - "type": "string", - "description": "Workspace resource ID" - }, - "displayName": { - "type": "string", - "description": "Resource display name." - }, - "status": { - "type": "string", - "enum": [ - "Enabled", - "Disabled" - ], - "default": "Enabled", - "description": "Security solution status", - "x-ms-enum":{ - "name": "SecuritySolutionStatus", - "modelAsString": true - } - }, - "export": { - "type": "array", - "items": { - "enum": [ - "RawEvents" - ], - "type": "string", - "x-ms-enum":{ - "name": "ExportData", - "modelAsString": true, - "values": [ - {"value": "RawEvents", "description": "Agent raw events"} - ] - } - }, - "description": "List of additional export to workspace data options" - }, - "disabledDataSources": { - "type": "array", - "items": { - "enum": [ - "TwinData" - ], - "type": "string", - "x-ms-enum":{ - "name": "DataSource", - "modelAsString": true, - "values": [ - {"value": "TwinData", "description": "Devices twin data"} - ] - } - }, - "description": "Disabled data sources. Disabling these data sources compromises the system." - }, - "iotHubs": { - "type": "array", - "description": "IoT Hub resource IDs", - "items": { "type": "string" } - } - }, - "required": [ - "iotHubs", - "workspace", - "displayName" - ] - } + "required": [ + "iotHubs", + "workspace", + "displayName" + ] + } }, "parameters": { - "SolutionName": { - "name": "solutionName", - "in": "path", - "required": true, - "description": "The solution manager name", - "type": "string", - "x-ms-parameter-location": "method" + "SolutionName": { + "name": "solutionName", + "in": "path", + "required": true, + "description": "The solution manager name", + "type": "string", + "x-ms-parameter-location": "method" + }, + "IotSecuritySolutionData": { + "name": "iotSecuritySolutionData", + "in": "body", + "required": true, + "description": "The security solution data", + "schema": { + "$ref": "#/definitions/IoTSecuritySolutionModel" }, - "IotSecuritySolutionData": { - "name": "iotSecuritySolutionData", - "in": "body", - "required": true, - "description": "The security solution data", - "schema": { - "$ref": "#/definitions/IoTSecuritySolutionModel" - }, - "x-ms-parameter-location": "method" - }, - "FilterParam": { - "name": "$filter", - "in": "query", - "required": false, - "description": "filter the Security Solution with OData syntax. supporting filter by iotHubs", - "type": "string", - "x-ms-parameter-location": "method" - } + "x-ms-parameter-location": "method" + }, + "FilterParam": { + "name": "$filter", + "in": "query", + "required": false, + "description": "filter the Security Solution with OData syntax. supporting filter by iotHubs", + "type": "string", + "x-ms-parameter-location": "method" + } } -} \ No newline at end of file +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/pricings.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/pricings.json index 54f50e530e06..5b54909bcc6b 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/pricings.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/pricings.json @@ -6,12 +6,20 @@ "version": "2017-08-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/Pricings/GetPricingsSubscription_example.json" } }, - "tags": ["Pricings"], + "tags": [ + "Pricings" + ], "description": "Security pricing configurations in the subscription", "operationId": "Pricings_List", "parameters": [ @@ -70,7 +80,9 @@ "$ref": "./examples/Pricings/GetPricingsResourceGroup_example.json" } }, - "tags": ["Pricings"], + "tags": [ + "Pricings" + ], "description": "Security pricing configurations in the resource group", "operationId": "Pricings_ListByResourceGroup", "parameters": [ @@ -110,7 +122,9 @@ "$ref": "./examples/Pricings/GetPricingSubscription_example.json" } }, - "tags": ["Pricings"], + "tags": [ + "Pricings" + ], "description": "Security pricing configuration in the subscriptionSecurity pricing configuration in the subscription", "operationId": "Pricings_GetSubscriptionPricing", "parameters": [ @@ -145,7 +159,9 @@ "$ref": "./examples/Pricings/CreatePricingsSubscription_example.json" } }, - "tags": ["Pricings"], + "tags": [ + "Pricings" + ], "description": "Security pricing configuration in the subscription", "operationId": "Pricings_UpdateSubscriptionPricing", "parameters": [ @@ -185,7 +201,9 @@ "$ref": "./examples/Pricings/GetPricingResourceGroup_example.json" } }, - "tags": ["Pricings"], + "tags": [ + "Pricings" + ], "description": "Security pricing configuration in the resource group", "operationId": "Pricings_GetResourceGroupPricing", "parameters": [ @@ -223,7 +241,9 @@ "$ref": "./examples/Pricings/CreatePricingsResourceGroup_example.json" } }, - "tags": ["Pricings"], + "tags": [ + "Pricings" + ], "description": "Security pricing configuration in the resource group", "operationId": "Pricings_CreateOrUpdateResourceGroupPricing", "parameters": [ @@ -263,7 +283,9 @@ "definitions": { "PricingList": { "description": "List of pricing configurations response", - "required": ["value"], + "required": [ + "value" + ], "properties": { "value": { "type": "array", @@ -302,7 +324,10 @@ "pricingTier": { "type": "string", "description": "Pricing tier type", - "enum": ["Free", "Standard"], + "enum": [ + "Free", + "Standard" + ], "x-ms-enum": { "name": "pricingTier", "modelAsString": true, @@ -319,7 +344,9 @@ } } }, - "required": ["pricingTier"] + "required": [ + "pricingTier" + ] } }, "parameters": { diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/securityContacts.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/securityContacts.json index 11c075e40437..f8bd3808c1da 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/securityContacts.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/securityContacts.json @@ -1,314 +1,363 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2017-08-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2017-08-01-preview" + }, + "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.Security/securityContacts": { + "get": { + "x-ms-examples": { + "Update security contact data minimal": { + "$ref": "./examples/SecurityContacts/GetSecurityContactsSubscription_min_example.json" + }, + "Update security contact data full": { + "$ref": "./examples/SecurityContacts/GetSecurityContactsSubscription_full_example.json" + } + }, + "tags": [ + "Security Contacts" + ], + "description": "Security contact configurations for the subscription", + "operationId": "SecurityContacts_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/SecurityContactList" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/securityContacts": { - "get": { - "x-ms-examples": { - "Update security contact data minimal": { - "$ref": "./examples/SecurityContacts/GetSecurityContactsSubscription_min_example.json" - }, - "Update security contact data full": { - "$ref": "./examples/SecurityContacts/GetSecurityContactsSubscription_full_example.json" - } - }, - "tags": ["Security Contacts"], - "description": "Security contact configurations for the subscription", - "operationId": "SecurityContacts_List", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/SecurityContactList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "/subscriptions/{subscriptionId}/providers/Microsoft.Security/securityContacts/{securityContactName}": { + "get": { + "x-ms-examples": { + "Get security contact data minimal": { + "$ref": "./examples/SecurityContacts/GetSecurityContact_min_example.json" + }, + "Get security contact data full": { + "$ref": "./examples/SecurityContacts/GetSecurityContact_full_example.json" + } + }, + "tags": [ + "Security Contacts" + ], + "description": "Security contact configurations for the subscription", + "operationId": "SecurityContacts_Get", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/SecurityContactName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/SecurityContact" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } + }, + "put": { + "x-ms-examples": { + "Create security contact data minimal": { + "$ref": "./examples/SecurityContacts/CreateSecurityContact_min_example.json" + }, + "Create security contact data full": { + "$ref": "./examples/SecurityContacts/CreateSecurityContact_full_example.json" + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/securityContacts/{securityContactName}": { - "get": { - "x-ms-examples": { - "Get security contact data minimal": { - "$ref": "./examples/SecurityContacts/GetSecurityContact_min_example.json" - }, - "Get security contact data full": { - "$ref": "./examples/SecurityContacts/GetSecurityContact_full_example.json" - } - }, - "tags": ["Security Contacts"], - "description": "Security contact configurations for the subscription", - "operationId": "SecurityContacts_Get", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, { - "$ref": "#/parameters/SecurityContactName" - }], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/SecurityContact" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Create security contact data minimal": { - "$ref": "./examples/SecurityContacts/CreateSecurityContact_min_example.json" - }, - "Create security contact data full": { - "$ref": "./examples/SecurityContacts/CreateSecurityContact_full_example.json" - } - }, - "tags": ["Security Contacts"], - "description": "Security contact configurations for the subscription", - "operationId": "SecurityContacts_Create", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, { - "$ref": "#/parameters/SecurityContactName" - }, { - "$ref": "#/parameters/SecurityContact" - }], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/SecurityContact" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete security contact data": { - "$ref": "./examples/SecurityContacts/DeleteSecurityContact_example.json" - } - }, - "tags": ["Security Contacts"], - "description": "Security contact configurations for the subscription", - "operationId": "SecurityContacts_Delete", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, { - "$ref": "#/parameters/SecurityContactName" - }], - "responses": { - "204": { - "description": "No Content" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "patch": { - "x-ms-examples": { - "Update security contact data minimal": { - "$ref": "./examples/SecurityContacts/UpdateSecurityContact_min_example.json" - }, - "Update security contact data full": { - "$ref": "./examples/SecurityContacts/UpdateSecurityContact_full_example.json" - } - }, - "tags": ["Security Contacts"], - "description": "Security contact configurations for the subscription", - "operationId": "SecurityContacts_Update", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, { - "$ref": "#/parameters/SecurityContactName" - }, { - "$ref": "#/parameters/SecurityContact" - }], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/SecurityContact" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "tags": [ + "Security Contacts" + ], + "description": "Security contact configurations for the subscription", + "operationId": "SecurityContacts_Create", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/SecurityContactName" + }, + { + "$ref": "#/parameters/SecurityContact" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/SecurityContact" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } } - }, - "definitions": { - "SecurityContactList": { - "type": "object", - "description": "List of security contacts response", - "properties": { - "value": { - "readOnly": true, - "description": "List of security contacts", - "type": "array", - "items": { - "$ref": "#/definitions/SecurityContact" - } - }, - "nextLink": { - "readOnly": true, - "type": "string", - "description": "The URI to fetch the next page." - } + }, + "delete": { + "x-ms-examples": { + "Delete security contact data": { + "$ref": "./examples/SecurityContacts/DeleteSecurityContact_example.json" + } + }, + "tags": [ + "Security Contacts" + ], + "description": "Security contact configurations for the subscription", + "operationId": "SecurityContacts_Delete", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/SecurityContactName" + } + ], + "responses": { + "204": { + "description": "No Content" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + } + }, + "patch": { + "x-ms-examples": { + "Update security contact data minimal": { + "$ref": "./examples/SecurityContacts/UpdateSecurityContact_min_example.json" + }, + "Update security contact data full": { + "$ref": "./examples/SecurityContacts/UpdateSecurityContact_full_example.json" + } }, - "SecurityContact": { - "type": "object", - "description": "Contact details for security issues", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Security contact data", - "$ref": "#/definitions/SecurityContactProperties" - } - }, - "allOf": [{ - "$ref": "../../../common/v1/types.json#/definitions/Resource" - }] + "tags": [ + "Security Contacts" + ], + "description": "Security contact configurations for the subscription", + "operationId": "SecurityContacts_Update", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/SecurityContactName" + }, + { + "$ref": "#/parameters/SecurityContact" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/SecurityContact" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } + } + } + }, + "definitions": { + "SecurityContactList": { + "type": "object", + "description": "List of security contacts response", + "properties": { + "value": { + "readOnly": true, + "description": "List of security contacts", + "type": "array", + "items": { + "$ref": "#/definitions/SecurityContact" + } }, - "SecurityContactProperties": { - "type": "object", - "description": "describes security contact properties", - "properties": { - "email": { - "type": "string", - "format": "email", - "description": "The email of this security contact" - }, - "phone": { - "type": "string", - "description": "The phone number of this security contact" - }, - "alertNotifications": { - "type": "string", - "enum": ["On", "Off"], - "x-ms-enum": { - "name": "alertNotifications", - "modelAsString": true, - "values": [{ - "value": "On", - "description": "Get notifications on new alerts" - }, - { - "value": "Off", - "description": "Don't get notifications on new alerts" - } - ] - }, - "description": "Whether to send security alerts notifications to the security contact" - }, - "alertsToAdmins": { - "type": "string", - "enum": ["On", "Off"], - "x-ms-enum": { - "name": "alertsToAdmins", - "modelAsString": true, - "values": [{ - "value": "On", - "description": "Send notification on new alerts to the subscription's admins" - }, - { - "value": "Off", - "description": "Don't send notification on new alerts to the subscription's admins" - } - ] - }, - "description": "Whether to send security alerts notifications to subscription admins" - } - }, - "required": [ - "email", - "alertNotifications", - "alertsToAdmins" - ] + "nextLink": { + "readOnly": true, + "type": "string", + "description": "The URI to fetch the next page." + } + } + }, + "SecurityContact": { + "type": "object", + "description": "Contact details for security issues", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Security contact data", + "$ref": "#/definitions/SecurityContactProperties" + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" } + ] }, - "parameters": { - "SecurityContactName": { - "name": "securityContactName", - "in": "path", - "required": true, - "type": "string", - "description": "Name of the security contact object", - "x-ms-parameter-location": "method" + "SecurityContactProperties": { + "type": "object", + "description": "describes security contact properties", + "properties": { + "email": { + "type": "string", + "format": "email", + "description": "The email of this security contact" }, - "SecurityContact": { - "name": "securityContact", - "in": "body", - "required": true, - "description": "Security contact object", - "schema": { - "$ref": "#/definitions/SecurityContact" - }, - "x-ms-parameter-location": "method" + "phone": { + "type": "string", + "description": "The phone number of this security contact" + }, + "alertNotifications": { + "type": "string", + "enum": [ + "On", + "Off" + ], + "x-ms-enum": { + "name": "alertNotifications", + "modelAsString": true, + "values": [ + { + "value": "On", + "description": "Get notifications on new alerts" + }, + { + "value": "Off", + "description": "Don't get notifications on new alerts" + } + ] + }, + "description": "Whether to send security alerts notifications to the security contact" + }, + "alertsToAdmins": { + "type": "string", + "enum": [ + "On", + "Off" + ], + "x-ms-enum": { + "name": "alertsToAdmins", + "modelAsString": true, + "values": [ + { + "value": "On", + "description": "Send notification on new alerts to the subscription's admins" + }, + { + "value": "Off", + "description": "Don't send notification on new alerts to the subscription's admins" + } + ] + }, + "description": "Whether to send security alerts notifications to subscription admins" } + }, + "required": [ + "email", + "alertNotifications", + "alertsToAdmins" + ] + } + }, + "parameters": { + "SecurityContactName": { + "name": "securityContactName", + "in": "path", + "required": true, + "type": "string", + "description": "Name of the security contact object", + "x-ms-parameter-location": "method" + }, + "SecurityContact": { + "name": "securityContact", + "in": "body", + "required": true, + "description": "Security contact object", + "schema": { + "$ref": "#/definitions/SecurityContact" + }, + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/settings.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/settings.json index 445b710a499c..31f72a422d9b 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/settings.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/settings.json @@ -6,12 +6,20 @@ "version": "2017-08-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/Settings/GetSettings_example.json" } }, - "tags": ["Settings"], + "tags": [ + "Settings" + ], "description": "Settings about different configurations in security center", "operationId": "Settings_List", "parameters": [ @@ -70,7 +80,9 @@ "$ref": "./examples/Settings/GetSetting_example.json" } }, - "tags": ["Settings"], + "tags": [ + "Settings" + ], "description": "Settings of different configurations in security center", "operationId": "Settings_Get", "parameters": [ @@ -105,7 +117,9 @@ "$ref": "./examples/Settings/UpdateSetting_example.json" } }, - "tags": ["Settings"], + "tags": [ + "Settings" + ], "description": "updating settings about different configurations in security center", "operationId": "Settings_Update", "parameters": [ @@ -193,7 +207,10 @@ "kind": { "type": "string", "description": "the kind of the settings string (DataExportSetting)", - "enum": ["DataExportSetting", "AlertSuppressionSetting"], + "enum": [ + "DataExportSetting", + "AlertSuppressionSetting" + ], "x-ms-enum": { "name": "SettingKind", "modelAsString": true, @@ -208,7 +225,9 @@ } } }, - "required": ["kind"], + "required": [ + "kind" + ], "allOf": [ { "$ref": "../../../common/v1/types.json#/definitions/Resource" @@ -224,7 +243,9 @@ "description": "Is the data export setting is enabled" } }, - "required": ["enabled"] + "required": [ + "enabled" + ] } }, "parameters": { @@ -234,7 +255,10 @@ "required": true, "type": "string", "description": "Name of setting: (MCAS/WDATP)", - "enum": ["MCAS", "WDATP"], + "enum": [ + "MCAS", + "WDATP" + ], "x-ms-parameter-location": "method" }, "Setting": { diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/workspaceSettings.json b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/workspaceSettings.json index 63ac4b143fce..c1e9d23c80b6 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/workspaceSettings.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2017-08-01-preview/workspaceSettings.json @@ -1,265 +1,306 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2017-08-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2017-08-01-preview" + }, + "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.Security/workspaceSettings": { + "get": { + "x-ms-examples": { + "Get workspace settings on subscription": { + "$ref": "./examples/WorkspaceSettings/GetWorkspaceSettings_example.json" + } + }, + "tags": [ + "Workspace Settings" + ], + "description": "Settings about where we should store your security data and logs. If the result is empty, it means that no custom-workspace configuration was set", + "operationId": "WorkspaceSettings_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/WorkspaceSettingList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/workspaceSettings": { - "get": { - "x-ms-examples": { - "Get workspace settings on subscription": { - "$ref": "./examples/WorkspaceSettings/GetWorkspaceSettings_example.json" - } - }, - "tags": ["Workspace Settings"], - "description": "Settings about where we should store your security data and logs. If the result is empty, it means that no custom-workspace configuration was set", - "operationId": "WorkspaceSettings_List", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/WorkspaceSettingList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "/subscriptions/{subscriptionId}/providers/Microsoft.Security/workspaceSettings/{workspaceSettingName}": { + "get": { + "x-ms-examples": { + "Get a workspace setting on subscription": { + "$ref": "./examples/WorkspaceSettings/GetWorkspaceSetting_example.json" + } + }, + "tags": [ + "Workspace Settings" + ], + "description": "Settings about where we should store your security data and logs. If the result is empty, it means that no custom-workspace configuration was set", + "operationId": "WorkspaceSettings_Get", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/WorkspaceSettingName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/WorkspaceSetting" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + } + }, + "put": { + "x-ms-examples": { + "Create a workspace setting data for subscription": { + "$ref": "./examples/WorkspaceSettings/CreateWorkspaceSetting_example.json" + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/workspaceSettings/{workspaceSettingName}": { - "get": { - "x-ms-examples": { - "Get a workspace setting on subscription": { - "$ref": "./examples/WorkspaceSettings/GetWorkspaceSetting_example.json" - } - }, - "tags": ["Workspace Settings"], - "description": "Settings about where we should store your security data and logs. If the result is empty, it means that no custom-workspace configuration was set", - "operationId": "WorkspaceSettings_Get", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, { - "$ref": "#/parameters/WorkspaceSettingName" - }], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/WorkspaceSetting" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Create a workspace setting data for subscription": { - "$ref": "./examples/WorkspaceSettings/CreateWorkspaceSetting_example.json" - } - }, - "tags": ["Workspace Settings"], - "description": "creating settings about where we should store your security data and logs", - "operationId": "WorkspaceSettings_Create", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, { - "$ref": "#/parameters/WorkspaceSettingName" - }, { - "$ref": "#/parameters/WorkspaceSetting" - }], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/WorkspaceSetting" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "patch": { - "x-ms-examples": { - "Update a workspace setting data for subscription": { - "$ref": "./examples/WorkspaceSettings/UpdateWorkspaceSetting_example.json" - } - }, - "tags": ["Workspace Settings"], - "description": "Settings about where we should store your security data and logs", - "operationId": "WorkspaceSettings_Update", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, { - "$ref": "#/parameters/WorkspaceSettingName" - }, { - "$ref": "#/parameters/WorkspaceSetting" - }], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/WorkspaceSetting" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete a workspace setting data for resource group": { - "$ref": "./examples/WorkspaceSettings/DeleteWorkspaceSetting_example.json" - } - }, - "tags": ["Workspace Settings"], - "description": "Deletes the custom workspace settings for this subscription. new VMs will report to the default workspace", - "operationId": "WorkspaceSettings_Delete", - "parameters": [{ - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, { - "$ref": "#/parameters/WorkspaceSettingName" - }], - "responses": { - "204": { - "description": "No Content" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "tags": [ + "Workspace Settings" + ], + "description": "creating settings about where we should store your security data and logs", + "operationId": "WorkspaceSettings_Create", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/WorkspaceSettingName" + }, + { + "$ref": "#/parameters/WorkspaceSetting" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/WorkspaceSetting" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } } - }, - "definitions": { - "WorkspaceSettingList": { - "description": "List of workspace settings response", - "required": [ - "value" - ], - "properties": { - "value": { - "type": "array", - "description": "List of workspace settings", - "items": { - "$ref": "#/definitions/WorkspaceSetting" - } - }, - "nextLink": { - "readOnly": true, - "type": "string", - "description": "The URI to fetch the next page." - } + }, + "patch": { + "x-ms-examples": { + "Update a workspace setting data for subscription": { + "$ref": "./examples/WorkspaceSettings/UpdateWorkspaceSetting_example.json" + } + }, + "tags": [ + "Workspace Settings" + ], + "description": "Settings about where we should store your security data and logs", + "operationId": "WorkspaceSettings_Update", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/WorkspaceSettingName" + }, + { + "$ref": "#/parameters/WorkspaceSetting" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/WorkspaceSetting" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + } + }, + "delete": { + "x-ms-examples": { + "Delete a workspace setting data for resource group": { + "$ref": "./examples/WorkspaceSettings/DeleteWorkspaceSetting_example.json" + } }, - "WorkspaceSetting": { - "type": "object", - "description": "Configures where to store the OMS agent data for workspaces under a scope", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Workspace setting data", - "$ref": "#/definitions/WorkspaceSettingProperties" - } - }, - "allOf": [{ - "$ref": "../../../common/v1/types.json#/definitions/Resource" - }] + "tags": [ + "Workspace Settings" + ], + "description": "Deletes the custom workspace settings for this subscription. new VMs will report to the default workspace", + "operationId": "WorkspaceSettings_Delete", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/WorkspaceSettingName" + } + ], + "responses": { + "204": { + "description": "No Content" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } + } + } + }, + "definitions": { + "WorkspaceSettingList": { + "description": "List of workspace settings response", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "array", + "description": "List of workspace settings", + "items": { + "$ref": "#/definitions/WorkspaceSetting" + } }, - "WorkspaceSettingProperties": { - "type": "object", - "description": "Workspace setting data", - "properties": { - "workspaceId": { - "type": "string", - "description": "The full Azure ID of the workspace to save the data in" - }, - "scope": { - "type": "string", - "description": "All the VMs in this scope will send their security data to the mentioned workspace unless overridden by a setting with more specific scope" - } - }, - "required": [ - "workspaceId", - "scope" - ] + "nextLink": { + "readOnly": true, + "type": "string", + "description": "The URI to fetch the next page." + } + } + }, + "WorkspaceSetting": { + "type": "object", + "description": "Configures where to store the OMS agent data for workspaces under a scope", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Workspace setting data", + "$ref": "#/definitions/WorkspaceSettingProperties" } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" + } + ] }, - "parameters": { - "WorkspaceSettingName": { - "name": "workspaceSettingName", - "in": "path", - "required": true, - "type": "string", - "description": "Name of the security setting", - "x-ms-parameter-location": "method" + "WorkspaceSettingProperties": { + "type": "object", + "description": "Workspace setting data", + "properties": { + "workspaceId": { + "type": "string", + "description": "The full Azure ID of the workspace to save the data in" }, - "WorkspaceSetting": { - "name": "workspaceSetting", - "in": "body", - "required": true, - "description": "Security data setting object", - "schema": { - "$ref": "#/definitions/WorkspaceSetting" - }, - "x-ms-parameter-location": "method" + "scope": { + "type": "string", + "description": "All the VMs in this scope will send their security data to the mentioned workspace unless overridden by a setting with more specific scope" } + }, + "required": [ + "workspaceId", + "scope" + ] + } + }, + "parameters": { + "WorkspaceSettingName": { + "name": "workspaceSettingName", + "in": "path", + "required": true, + "type": "string", + "description": "Name of the security setting", + "x-ms-parameter-location": "method" + }, + "WorkspaceSetting": { + "name": "workspaceSetting", + "in": "body", + "required": true, + "description": "Security data setting object", + "schema": { + "$ref": "#/definitions/WorkspaceSetting" + }, + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json index 55b829b1d694..d8c1d6b16058 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json @@ -1,56 +1,58 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "regulatoryComplianceStandardName": "PCI-DSS-3.2", - "regulatoryComplianceControlName": "1.1" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/1.1/regulatoryComplianceAssessments/968548cb-02b3-8cd2-11f8-0cf64ab1a347", - "name": "968548cb-02b3-8cd2-11f8-0cf64ab1a347", - "type": "Microsoft.Security/regulatoryComplianceAssessment", - "properties": { - "description": "Troubleshoot missing scan data on your machines", - "assessmentType": "Assessment", - "assessmentDetailsLink": "https://management.azure.com/subscriptions/a27e854a-8578-4395-8eaf-6fc7849f3050/providers/Microsoft.Security/securityStatuses/968548cb-02b3-8cd2-11f8-0cf64ab1a347", - "state": "Failed", - "passedResources": 7, - "failedResources": 4, - "skippedResources": 0 - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/2/regulatoryComplianceAssessments/3bcd234d-c9c7-c2a2-89e0-c01f419c1a8a", - "name": "3bcd234d-c9c7-c2a2-89e0-c01f419c1a8a", - "type": "Microsoft.Security/regulatoryComplianceAssessment", - "properties": { - "description": "Resolve endpoint protection health issues on your machines", - "assessmentType": "Assessment", - "assessmentDetailsLink": "https://management.azure.com/subscriptions/a27e854a-8578-4395-8eaf-6fc7849f3050/providers/Microsoft.Security/securityStatuses/3bcd234d-c9c7-c2a2-89e0-c01f419c1a8a", - "state": "Skipped", - "passedResources": 0, - "failedResources": 0, - "skippedResources": 10 - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/2.1/regulatoryComplianceAssessments/d1db3318-01ff-16de-29eb-28b344515626", - "name": "d1db3318-01ff-16de-29eb-28b344515626", - "type": "Microsoft.Security/regulatoryComplianceAssessment", - "properties": { - "description": "Install monitoring agent on your machines", - "assessmentType": "Assessment", - "assessmentDetailsLink": "https://management.azure.com/subscriptions/a27e854a-8578-4395-8eaf-6fc7849f3050/providers/Microsoft.Security/securityStatuses/d1db3318-01ff-16de-29eb-28b344515626", - "state": "Passed", - "passedResources": 8, - "failedResources": 0, - "skippedResources": 0 - } - }] - } - } - } - } + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "regulatoryComplianceStandardName": "PCI-DSS-3.2", + "regulatoryComplianceControlName": "1.1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/1.1/regulatoryComplianceAssessments/968548cb-02b3-8cd2-11f8-0cf64ab1a347", + "name": "968548cb-02b3-8cd2-11f8-0cf64ab1a347", + "type": "Microsoft.Security/regulatoryComplianceAssessment", + "properties": { + "description": "Troubleshoot missing scan data on your machines", + "assessmentType": "Assessment", + "assessmentDetailsLink": "https://management.azure.com/subscriptions/a27e854a-8578-4395-8eaf-6fc7849f3050/providers/Microsoft.Security/securityStatuses/968548cb-02b3-8cd2-11f8-0cf64ab1a347", + "state": "Failed", + "passedResources": 7, + "failedResources": 4, + "skippedResources": 0 + } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/2/regulatoryComplianceAssessments/3bcd234d-c9c7-c2a2-89e0-c01f419c1a8a", + "name": "3bcd234d-c9c7-c2a2-89e0-c01f419c1a8a", + "type": "Microsoft.Security/regulatoryComplianceAssessment", + "properties": { + "description": "Resolve endpoint protection health issues on your machines", + "assessmentType": "Assessment", + "assessmentDetailsLink": "https://management.azure.com/subscriptions/a27e854a-8578-4395-8eaf-6fc7849f3050/providers/Microsoft.Security/securityStatuses/3bcd234d-c9c7-c2a2-89e0-c01f419c1a8a", + "state": "Skipped", + "passedResources": 0, + "failedResources": 0, + "skippedResources": 10 + } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/2.1/regulatoryComplianceAssessments/d1db3318-01ff-16de-29eb-28b344515626", + "name": "d1db3318-01ff-16de-29eb-28b344515626", + "type": "Microsoft.Security/regulatoryComplianceAssessment", + "properties": { + "description": "Install monitoring agent on your machines", + "assessmentType": "Assessment", + "assessmentDetailsLink": "https://management.azure.com/subscriptions/a27e854a-8578-4395-8eaf-6fc7849f3050/providers/Microsoft.Security/securityStatuses/d1db3318-01ff-16de-29eb-28b344515626", + "state": "Passed", + "passedResources": 8, + "failedResources": 0, + "skippedResources": 0 + } + } + ] + } + } + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessment_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessment_example.json index ad909db10220..6f4571721c1b 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessment_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessment_example.json @@ -1,27 +1,27 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "regulatoryComplianceStandardName": "PCI-DSS-3.2", - "regulatoryComplianceControlName": "1.1", - "regulatoryComplianceAssessmentName": "968548cb-02b3-8cd2-11f8-0cf64ab1a347" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/1.1/regulatoryComplianceAssessments/968548cb-02b3-8cd2-11f8-0cf64ab1a347", - "name": "968548cb-02b3-8cd2-11f8-0cf64ab1a347", - "type": "Microsoft.Security/regulatoryComplianceAssessment", - "properties": { - "description": "Troubleshoot missing scan data on your machines", - "assessmentType": "Assessment", - "assessmentDetailsLink": "https://management.azure.com/subscriptions/a27e854a-8578-4395-8eaf-6fc7849f3050/providers/Microsoft.Security/securityStatuses/968548cb-02b3-8cd2-11f8-0cf64ab1a347", - "state": "Failed", - "passedResources": 7, - "failedResources": 4, - "skippedResources": 0 - } - } - } - } - } \ No newline at end of file + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "regulatoryComplianceStandardName": "PCI-DSS-3.2", + "regulatoryComplianceControlName": "1.1", + "regulatoryComplianceAssessmentName": "968548cb-02b3-8cd2-11f8-0cf64ab1a347" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/1.1/regulatoryComplianceAssessments/968548cb-02b3-8cd2-11f8-0cf64ab1a347", + "name": "968548cb-02b3-8cd2-11f8-0cf64ab1a347", + "type": "Microsoft.Security/regulatoryComplianceAssessment", + "properties": { + "description": "Troubleshoot missing scan data on your machines", + "assessmentType": "Assessment", + "assessmentDetailsLink": "https://management.azure.com/subscriptions/a27e854a-8578-4395-8eaf-6fc7849f3050/providers/Microsoft.Security/securityStatuses/968548cb-02b3-8cd2-11f8-0cf64ab1a347", + "state": "Failed", + "passedResources": 7, + "failedResources": 4, + "skippedResources": 0 + } + } + } + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json index 7bbdbe4220ea..42008a12b9d0 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json @@ -1,49 +1,51 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "regulatoryComplianceStandardName": "PCI-DSS-3.2" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/1.1", - "name": "1.1", - "type": "Microsoft.Security/regulatoryComplianceControl", - "properties": { - "description": "Common Criteria Related to Organization and Management.", - "state": "Failed", - "passedAssessments": 7, - "failedAssessments": 4, - "skippedAssessments": 0 - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/2", - "name": "2", - "type": "Microsoft.Security/regulatoryComplianceControl", - "properties": { - "description": "Confidential information is protected during the system design, development, testing, implementation, and change processes in accordance with confidentiality commitments and requirements.", - "state": "Skipped", - "passedAssessments": 0, - "failedAssessments": 0, - "skippedAssessments": 10 - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/2.1", - "name": "2.1", - "type": "Microsoft.Security/regulatoryComplianceControl", - "properties": { - "description": "Changes to confidentiality commitments and requirements are communicated to internal and external users, vendors, and other third parties whose products and services are included in the system.", - "state": "Unsupported", - "passedAssessments": 0, - "failedAssessments": 0, - "skippedAssessments": 0 - } - }] - } - } - } - } \ No newline at end of file + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "regulatoryComplianceStandardName": "PCI-DSS-3.2" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/1.1", + "name": "1.1", + "type": "Microsoft.Security/regulatoryComplianceControl", + "properties": { + "description": "Common Criteria Related to Organization and Management.", + "state": "Failed", + "passedAssessments": 7, + "failedAssessments": 4, + "skippedAssessments": 0 + } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/2", + "name": "2", + "type": "Microsoft.Security/regulatoryComplianceControl", + "properties": { + "description": "Confidential information is protected during the system design, development, testing, implementation, and change processes in accordance with confidentiality commitments and requirements.", + "state": "Skipped", + "passedAssessments": 0, + "failedAssessments": 0, + "skippedAssessments": 10 + } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/2.1", + "name": "2.1", + "type": "Microsoft.Security/regulatoryComplianceControl", + "properties": { + "description": "Changes to confidentiality commitments and requirements are communicated to internal and external users, vendors, and other third parties whose products and services are included in the system.", + "state": "Unsupported", + "passedAssessments": 0, + "failedAssessments": 0, + "skippedAssessments": 0 + } + } + ] + } + } + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControl_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControl_example.json index 7ca93cf79394..2f31ccffd197 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControl_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControl_example.json @@ -1,24 +1,24 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "regulatoryComplianceStandardName": "PCI-DSS-3.2", - "regulatoryComplianceControlName": "1.1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/1.1", - "name": "1.1", - "type": "Microsoft.Security/regulatoryComplianceControl", - "properties": { - "description": "Common Criteria Related to Organization and Management", - "state": "Failed", - "passedAssessments": 7, - "failedAssessments": 4, - "skippedAssessments": 0 - } - } - } - } - } \ No newline at end of file + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "regulatoryComplianceStandardName": "PCI-DSS-3.2", + "regulatoryComplianceControlName": "1.1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2/regulatoryComplianceControls/1.1", + "name": "1.1", + "type": "Microsoft.Security/regulatoryComplianceControl", + "properties": { + "description": "Common Criteria Related to Organization and Management", + "state": "Failed", + "passedAssessments": 7, + "failedAssessments": 4, + "skippedAssessments": 0 + } + } + } + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandardList_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandardList_example.json index 42a64429cf99..2d730c54068b 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandardList_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandardList_example.json @@ -1,60 +1,62 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2", - "name": "PCI-DSS-3.2", - "type": "Microsoft.Security/regulatoryComplianceStandard", - "properties": { - "state": "Failed", - "passedControls": 7, - "failedControls": 4, - "skippedControls": 0, - "unsupportedControls": 0 - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/ISO-27001", - "name": "ISO-27001", - "type": "Microsoft.Security/regulatoryComplianceStandard", - "properties": { - "state": "Skipped", - "passedControls": 0, - "failedControls": 0, - "skippedControls": 10, - "unsupportedControls": 0 - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/AZURE-CIS", - "name": "AZURE-CIS", - "type": "Microsoft.Security/regulatoryComplianceStandard", - "properties": { - "state": "Unsupported", - "passedControls": 0, - "failedControls": 0, - "skippedControls": 0, - "unsupportedControls": 0 - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/SOC-TSP", - "name": "SOC-TSP", - "type": "Microsoft.Security/regulatoryComplianceStandard", - "properties": { - "state": "Passed", - "passedControls": 15, - "failedControls": 0, - "skippedControls": 0, - "unsupportedControls": 0 - } - }] - } - } - } - } \ No newline at end of file + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2", + "name": "PCI-DSS-3.2", + "type": "Microsoft.Security/regulatoryComplianceStandard", + "properties": { + "state": "Failed", + "passedControls": 7, + "failedControls": 4, + "skippedControls": 0, + "unsupportedControls": 0 + } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/ISO-27001", + "name": "ISO-27001", + "type": "Microsoft.Security/regulatoryComplianceStandard", + "properties": { + "state": "Skipped", + "passedControls": 0, + "failedControls": 0, + "skippedControls": 10, + "unsupportedControls": 0 + } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/AZURE-CIS", + "name": "AZURE-CIS", + "type": "Microsoft.Security/regulatoryComplianceStandard", + "properties": { + "state": "Unsupported", + "passedControls": 0, + "failedControls": 0, + "skippedControls": 0, + "unsupportedControls": 0 + } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/SOC-TSP", + "name": "SOC-TSP", + "type": "Microsoft.Security/regulatoryComplianceStandard", + "properties": { + "state": "Passed", + "passedControls": 15, + "failedControls": 0, + "skippedControls": 0, + "unsupportedControls": 0 + } + } + ] + } + } + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandard_example.json b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandard_example.json index 2003b2f03b86..3975ae2a31db 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandard_example.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandard_example.json @@ -1,23 +1,23 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "regulatoryComplianceStandardName": "PCI-DSS-3.2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2", - "name": "PCI-DSS-3.2", - "type": "Microsoft.Security/regulatoryComplianceStandard", - "properties": { - "state": "Failed", - "passedControls": 7, - "failedControls": 4, - "skippedControls": 0, - "unsupportedControls": 0 - } - } - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "regulatoryComplianceStandardName": "PCI-DSS-3.2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/regulatoryComplianceStandards/PCI-DSS-3.2", + "name": "PCI-DSS-3.2", + "type": "Microsoft.Security/regulatoryComplianceStandard", + "properties": { + "state": "Failed", + "passedControls": 7, + "failedControls": 4, + "skippedControls": 0, + "unsupportedControls": 0 + } + } + } + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/regulatoryCompliance.json b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/regulatoryCompliance.json index 18bf801876bb..78c15e9082f5 100644 --- a/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/regulatoryCompliance.json +++ b/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/regulatoryCompliance.json @@ -6,12 +6,20 @@ "version": "2019-01-01-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/RegulatoryCompliance/getRegulatoryComplianceStandardList_example.json" } }, - "tags": ["RegulatoryCompliance"], + "tags": [ + "RegulatoryCompliance" + ], "description": "Supported regulatory compliance standards details and state", "operationId": "RegulatoryComplianceStandards_List", "parameters": [ @@ -43,7 +53,7 @@ { "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" }, - { + { "$ref": "../../../common/v1/types.json#/parameters/ODataFilter" } ], @@ -61,9 +71,9 @@ } } }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } } }, "/subscriptions/{subscriptionId}/providers/Microsoft.Security/regulatoryComplianceStandards/{regulatoryComplianceStandardName}": { @@ -73,7 +83,9 @@ "$ref": "./examples/RegulatoryCompliance/getRegulatoryComplianceStandard_example.json" } }, - "tags": ["RegulatoryCompliance"], + "tags": [ + "RegulatoryCompliance" + ], "description": "Supported regulatory compliance details state for selected standard", "operationId": "RegulatoryComplianceStandards_Get", "parameters": [ @@ -98,7 +110,7 @@ "description": "Error response describing why the operation failed.", "schema": { "$ref": "../../../common/v1/types.json#/definitions/CloudError" -} + } } } } @@ -110,7 +122,9 @@ "$ref": "./examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json" } }, - "tags": ["RegulatoryCompliance"], + "tags": [ + "RegulatoryCompliance" + ], "description": "All supported regulatory compliance controls details and state for selected standard", "operationId": "RegulatoryComplianceControls_List", "parameters": [ @@ -123,7 +137,7 @@ { "$ref": "#/parameters/RegulatoryComplianceStandardName" }, - { + { "$ref": "../../../common/v1/types.json#/parameters/ODataFilter" } ], @@ -141,9 +155,9 @@ } } }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } } }, "/subscriptions/{subscriptionId}/providers/Microsoft.Security/regulatoryComplianceStandards/{regulatoryComplianceStandardName}/regulatoryComplianceControls/{regulatoryComplianceControlName}": { @@ -153,7 +167,9 @@ "$ref": "./examples/RegulatoryCompliance/getRegulatoryComplianceControl_example.json" } }, - "tags": ["RegulatoryCompliance"], + "tags": [ + "RegulatoryCompliance" + ], "description": "Selected regulatory compliance control details and state", "operationId": "RegulatoryComplianceControls_Get", "parameters": [ @@ -193,7 +209,9 @@ "$ref": "./examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json" } }, - "tags": ["RegulatoryCompliance"], + "tags": [ + "RegulatoryCompliance" + ], "description": "Details and state of assessments mapped to selected regulatory compliance control", "operationId": "RegulatoryComplianceAssessments_List", "parameters": [ @@ -209,7 +227,7 @@ { "$ref": "#/parameters/RegulatoryComplianceControlName" }, - { + { "$ref": "../../../common/v1/types.json#/parameters/ODataFilter" } ], @@ -227,9 +245,9 @@ } } }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } } }, "/subscriptions/{subscriptionId}/providers/Microsoft.Security/regulatoryComplianceStandards/{regulatoryComplianceStandardName}/regulatoryComplianceControls/{regulatoryComplianceControlName}/regulatoryComplianceAssessments/{regulatoryComplianceAssessmentName}": { @@ -239,7 +257,9 @@ "$ref": "./examples/RegulatoryCompliance/getRegulatoryComplianceAssessment_example.json" } }, - "tags": ["RegulatoryCompliance"], + "tags": [ + "RegulatoryCompliance" + ], "description": "Supported regulatory compliance details and state for selected assessment", "operationId": "RegulatoryComplianceAssessments_Get", "parameters": [ @@ -279,7 +299,9 @@ "definitions": { "RegulatoryComplianceStandardList": { "description": "List of regulatory compliance standards response", - "required": ["value"], + "required": [ + "value" + ], "properties": { "value": { "type": "array", @@ -317,7 +339,12 @@ "state": { "type": "string", "description": "Aggregative state based on the standard's supported controls states", - "enum": ["Passed", "Failed", "Skipped", "Unsupported"], + "enum": [ + "Passed", + "Failed", + "Skipped", + "Unsupported" + ], "x-ms-enum": { "name": "state", "modelAsString": true, @@ -365,7 +392,9 @@ }, "RegulatoryComplianceControlList": { "description": "List of regulatory compliance controls response", - "required": ["value"], + "required": [ + "value" + ], "properties": { "value": { "type": "array", @@ -409,7 +438,12 @@ "state": { "type": "string", "description": "Aggregative state based on the control's supported assessments states", - "enum": ["Passed", "Failed", "Skipped", "Unsupported"], + "enum": [ + "Passed", + "Failed", + "Skipped", + "Unsupported" + ], "x-ms-enum": { "name": "state", "modelAsString": true, @@ -452,7 +486,9 @@ }, "RegulatoryComplianceAssessmentList": { "description": "List of regulatory compliance assessment response", - "required": ["value"], + "required": [ + "value" + ], "properties": { "value": { "type": "array", @@ -505,7 +541,12 @@ "state": { "type": "string", "description": "Aggregative state based on the assessment's scanned resources states", - "enum": ["Passed", "Failed", "Skipped", "Unsupported"], + "enum": [ + "Passed", + "Failed", + "Skipped", + "Unsupported" + ], "x-ms-enum": { "name": "state", "modelAsString": true, diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/complianceResults.json b/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/complianceResults.json index ce831e3bf7f0..f554108df80f 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/complianceResults.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/complianceResults.json @@ -6,12 +6,22 @@ "version": "2017-08-01" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], - "security": [{ - "azure_auth": ["user_impersonation"] - }], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], "securityDefinitions": { "azure_auth": { "type": "oauth2", @@ -31,10 +41,13 @@ "$ref": "./examples/ComplianceResults/ListComplianceResults_example.json" } }, - "tags": ["Compliance Results"], + "tags": [ + "Compliance Results" + ], "description": "Security compliance results in the subscription", "operationId": "ComplianceResults_List", - "parameters": [{ + "parameters": [ + { "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" }, { @@ -67,10 +80,13 @@ "$ref": "./examples/ComplianceResults/GetComplianceResults_example.json" } }, - "tags": ["Compliance Results"], + "tags": [ + "Compliance Results" + ], "description": "Security Compliance Result", "operationId": "ComplianceResults_Get", - "parameters": [{ + "parameters": [ + { "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" }, { @@ -100,7 +116,9 @@ "definitions": { "ComplianceResultList": { "description": "List of compliance results response", - "required": ["value"], + "required": [ + "value" + ], "properties": { "value": { "type": "array", @@ -126,9 +144,11 @@ "$ref": "#/definitions/ComplianceResultProperties" } }, - "allOf": [{ - "$ref": "../../../common/v1/types.json#/definitions/Resource" - }] + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" + } + ] }, "ComplianceResultProperties": { "type": "object", @@ -138,11 +158,17 @@ "type": "string", "readOnly": true, "description": "The status of the resource regarding a single assessment", - "enum": ["Healthy", "NotApplicable", "OffByPolicy", "NotHealthy"], + "enum": [ + "Healthy", + "NotApplicable", + "OffByPolicy", + "NotHealthy" + ], "x-ms-enum": { "name": "resourceStatus", "modelAsString": true, - "values": [{ + "values": [ + { "value": "Healthy", "description": "This assessment on the resource is healthy" }, diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/examples/ComplianceResults/GetComplianceResults_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/examples/ComplianceResults/GetComplianceResults_example.json index efbeacc9e3a4..340f53a526de 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/examples/ComplianceResults/GetComplianceResults_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/examples/ComplianceResults/GetComplianceResults_example.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/examples/ComplianceResults/ListComplianceResults_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/examples/ComplianceResults/ListComplianceResults_example.json index a2d2785a6ff7..4858d6c285f2 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/examples/ComplianceResults/ListComplianceResults_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2017-08-01/examples/ComplianceResults/ListComplianceResults_example.json @@ -6,7 +6,8 @@ "responses": { "200": { "body": { - "value": [{ + "value": [ + { "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/complianceResults/DesignateMoreThanOneOwner", "name": "DesignateMoreThanOneOwner", "type": "Microsoft.Security/complianceResults", @@ -34,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/GetPricingByName_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/GetPricingByName_example.json index 59c97ee39c01..3444e71fb1a6 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/GetPricingByName_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/GetPricingByName_example.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2018-06-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "pricingName": "VirtualMachines" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/VirtualMachines", - "name": "VirtualMachines", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - } + "parameters": { + "api-version": "2018-06-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "pricingName": "VirtualMachines" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/VirtualMachines", + "name": "VirtualMachines", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/ListPricings_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/ListPricings_example.json index 8d6b9f32d2d6..2dc0d3f02223 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/ListPricings_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/ListPricings_example.json @@ -1,44 +1,46 @@ { - "parameters": { - "api-version": "2018-06-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/VirtualMachines", - "name": "VirtualMachines", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/SqlServers", - "name": "SqlServers", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/AppServices", - "name": "AppServices", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Free" - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/StorageAccounts", - "name": "StorageAccounts", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - }] + "parameters": { + "api-version": "2018-06-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/VirtualMachines", + "name": "VirtualMachines", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/SqlServers", + "name": "SqlServers", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" + } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/AppServices", + "name": "AppServices", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Free" + } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/StorageAccounts", + "name": "StorageAccounts", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" + } + } + ] + } } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/PutPricingByName_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/PutPricingByName_example.json index e94720f808dd..957038093df2 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/PutPricingByName_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/examples/Pricings/PutPricingByName_example.json @@ -1,27 +1,27 @@ { - "parameters": { - "api-version": "2018-06-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "pricingName": "VirtualMachines", - "pricing": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/VirtualMachines", - "name": "VirtualMachines", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } + "parameters": { + "api-version": "2018-06-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "pricingName": "VirtualMachines", + "pricing": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/VirtualMachines", + "name": "VirtualMachines", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/VirtualMachines", + "name": "VirtualMachines", + "type": "Microsoft.Security/pricings", + "properties": { + "pricingTier": "Standard" } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/VirtualMachines", - "name": "VirtualMachines", - "type": "Microsoft.Security/pricings", - "properties": { - "pricingTier": "Standard" - } - } - } - } -} \ No newline at end of file + } + } + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/pricings.json b/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/pricings.json index 7c61698cde8a..7e6fc2ebc866 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/pricings.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2018-06-01/pricings.json @@ -6,12 +6,20 @@ "version": "2018-06-01" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/Pricings/ListPricings_example.json" } }, - "tags": ["Pricings"], + "tags": [ + "Pricings" + ], "description": "Security pricing configurations in the subscription", "operationId": "Pricings_List", "parameters": [ @@ -67,7 +77,9 @@ "$ref": "./examples/Pricings/GetPricingByName_example.json" } }, - "tags": ["Pricings"], + "tags": [ + "Pricings" + ], "description": "Security pricing configuration in the subscription", "operationId": "Pricings_Get", "parameters": [ @@ -102,7 +114,9 @@ "$ref": "./examples/Pricings/PutPricingByName_example.json" } }, - "tags": ["Pricings"], + "tags": [ + "Pricings" + ], "description": "Security pricing configuration in the subscription", "operationId": "Pricings_Update", "parameters": [ @@ -139,7 +153,9 @@ "definitions": { "PricingList": { "description": "List of pricing configurations response", - "required": ["value"], + "required": [ + "value" + ], "properties": { "value": { "type": "array", @@ -173,7 +189,10 @@ "pricingTier": { "type": "string", "description": "The pricing tier value", - "enum": ["Free", "Standard"], + "enum": [ + "Free", + "Standard" + ], "x-ms-enum": { "name": "pricingTier", "modelAsString": true, @@ -196,7 +215,9 @@ "description": "The duration left for the subscriptions free trial period - in ISO 8601 format (e.g. P3Y6M4DT12H30M5S)." } }, - "required": ["pricingTier"] + "required": [ + "pricingTier" + ] } }, "parameters": { diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/alerts.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/alerts.json index 304d4fd4bb90..c7b90d3b5bf2 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/alerts.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/alerts.json @@ -1,681 +1,681 @@ { - "swagger": "2.0", - "info": { - "title": "Security Center", - "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", - "version": "2019-01-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" + "swagger": "2.0", + "info": { + "title": "Security Center", + "description": "API spec for Microsoft.Security (Azure Security Center) resource provider", + "version": "2019-01-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.Security/alerts": { + "get": { + "x-ms-examples": { + "Get security alerts on a subscription": { + "$ref": "./examples/Alerts/GetAlertsSubscription_example.json" + } + }, + "tags": [ + "Alerts" + ], + "description": "List all the alerts that are associated with the subscription", + "operationId": "Alerts_List", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ODataFilter" + }, + { + "$ref": "#/parameters/ODataSelect" + }, + { + "$ref": "#/parameters/ODataExpand" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AlertList" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/alerts": { - "get": { - "x-ms-examples": { - "Get security alerts on a subscription": { - "$ref": "./examples/Alerts/GetAlertsSubscription_example.json" - } - }, - "tags": [ - "Alerts" - ], - "description": "List all the alerts that are associated with the subscription", - "operationId": "Alerts_List", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ODataFilter" - }, - { - "$ref": "#/parameters/ODataSelect" - }, - { - "$ref": "#/parameters/ODataExpand" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AlertList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/alerts": { + "get": { + "x-ms-examples": { + "Get security alerts on a resource group": { + "$ref": "./examples/Alerts/GetAlertsResourceGroup_example.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/alerts": { - "get": { - "x-ms-examples": { - "Get security alerts on a resource group": { - "$ref": "./examples/Alerts/GetAlertsResourceGroup_example.json" - } - }, - "tags": [ - "Alerts" - ], - "description": "List all the alerts that are associated with the resource group", - "operationId": "Alerts_ListByResourceGroup", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/ODataFilter" - }, - { - "$ref": "#/parameters/ODataSelect" - }, - { - "$ref": "#/parameters/ODataExpand" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AlertList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "tags": [ + "Alerts" + ], + "description": "List all the alerts that are associated with the resource group", + "operationId": "Alerts_ListByResourceGroup", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/ODataFilter" + }, + { + "$ref": "#/parameters/ODataSelect" + }, + { + "$ref": "#/parameters/ODataExpand" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AlertList" } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/alerts": { - "get": { - "x-ms-examples": { - "Get security alerts on a subscription from a security data location": { - "$ref": "./examples/Alerts/GetAlertsSubscriptionsLocation_example.json" - } - }, - "tags": [ - "Alerts" - ], - "description": "List all the alerts that are associated with the subscription that are stored in a specific location", - "operationId": "Alerts_ListSubscriptionLevelAlertsByRegion", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "#/parameters/ODataFilter" - }, - { - "$ref": "#/parameters/ODataSelect" - }, - { - "$ref": "#/parameters/ODataExpand" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AlertList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/alerts": { + "get": { + "x-ms-examples": { + "Get security alerts on a subscription from a security data location": { + "$ref": "./examples/Alerts/GetAlertsSubscriptionsLocation_example.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/alerts": { - "get": { - "x-ms-examples": { - "Get security alerts on a resource group from a security data location": { - "$ref": "./examples/Alerts/GetAlertsResourceGroupLocation_example.json" - } - }, - "tags": [ - "Alerts" - ], - "description": "List all the alerts that are associated with the resource group that are stored in a specific location", - "operationId": "Alerts_ListResourceGroupLevelAlertsByRegion", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/ODataFilter" - }, - { - "$ref": "#/parameters/ODataSelect" - }, - { - "$ref": "#/parameters/ODataExpand" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AlertList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "tags": [ + "Alerts" + ], + "description": "List all the alerts that are associated with the subscription that are stored in a specific location", + "operationId": "Alerts_ListSubscriptionLevelAlertsByRegion", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "#/parameters/ODataFilter" + }, + { + "$ref": "#/parameters/ODataSelect" + }, + { + "$ref": "#/parameters/ODataExpand" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AlertList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/alerts": { + "get": { + "x-ms-examples": { + "Get security alerts on a resource group from a security data location": { + "$ref": "./examples/Alerts/GetAlertsResourceGroupLocation_example.json" + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/alerts/{alertName}": { - "get": { - "x-ms-examples": { - "Get security alert on a subscription from a security data location": { - "$ref": "./examples/Alerts/GetAlertSubscriptionLocation_example.json" - } - }, - "tags": [ - "Alerts" - ], - "description": "Get an alert that is associated with a subscription", - "operationId": "Alerts_GetSubscriptionLevelAlert", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "#/parameters/AlertName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Alert" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "tags": [ + "Alerts" + ], + "description": "List all the alerts that are associated with the resource group that are stored in a specific location", + "operationId": "Alerts_ListResourceGroupLevelAlertsByRegion", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/ODataFilter" + }, + { + "$ref": "#/parameters/ODataSelect" + }, + { + "$ref": "#/parameters/ODataExpand" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AlertList" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/alerts/{alertName}": { + "get": { + "x-ms-examples": { + "Get security alert on a subscription from a security data location": { + "$ref": "./examples/Alerts/GetAlertSubscriptionLocation_example.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/alerts/{alertName}": { - "get": { - "x-ms-examples": { - "Get security alert on a resource group from a security data location": { - "$ref": "./examples/Alerts/GetAlertResourceGroupLocation_example.json" - } - }, - "tags": [ - "Alerts" - ], - "description": "Get an alert that is associated a resource group or a resource in a resource group", - "operationId": "Alerts_GetResourceGroupLevelAlerts", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "#/parameters/AlertName" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Alert" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "tags": [ + "Alerts" + ], + "description": "Get an alert that is associated with a subscription", + "operationId": "Alerts_GetSubscriptionLevelAlert", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "#/parameters/AlertName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Alert" } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/alerts/{alertName}": { + "get": { + "x-ms-examples": { + "Get security alert on a resource group from a security data location": { + "$ref": "./examples/Alerts/GetAlertResourceGroupLocation_example.json" + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/alerts/{alertName}/{alertUpdateActionType}": { - "post": { - "x-ms-examples": { - "Update security alert state on a subscription from a security data location": { - "$ref": "./examples/Alerts/UpdateAlertSubscriptionLocation_example.json" - } - }, - "tags": [ - "Alerts" - ], - "description": "Update the alert's state", - "operationId": "Alerts_UpdateSubscriptionLevelAlertState", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "#/parameters/AlertName" - }, - { - "$ref": "#/parameters/AlertUpdateActionType" - } - ], - "responses": { - "204": { - "description": "No Content" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "tags": [ + "Alerts" + ], + "description": "Get an alert that is associated a resource group or a resource in a resource group", + "operationId": "Alerts_GetResourceGroupLevelAlerts", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "#/parameters/AlertName" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Alert" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/alerts/{alertName}/{alertUpdateActionType}": { + "post": { + "x-ms-examples": { + "Update security alert state on a subscription from a security data location": { + "$ref": "./examples/Alerts/UpdateAlertSubscriptionLocation_example.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/alerts/{alertName}/{alertUpdateActionType}": { - "post": { - "x-ms-examples": { - "Update security alert state on a resource group from a security data location": { - "$ref": "./examples/Alerts/UpdateAlertResourceGroupLocation_example.json" - } - }, - "tags": [ - "Alerts" - ], - "description": "Update the alert's state", - "operationId": "Alerts_UpdateResourceGroupLevelAlertState", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/AscLocation" - }, - { - "$ref": "#/parameters/AlertName" - }, - { - "$ref": "#/parameters/AlertUpdateActionType" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" - } - ], - "responses": { - "204": { - "description": "No Content" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "../../../common/v1/types.json#/definitions/CloudError" - } - } - } + "tags": [ + "Alerts" + ], + "description": "Update the alert's state", + "operationId": "Alerts_UpdateSubscriptionLevelAlertState", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "#/parameters/AlertName" + }, + { + "$ref": "#/parameters/AlertUpdateActionType" + } + ], + "responses": { + "204": { + "description": "No Content" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } } + } }, - "definitions": { - "AlertList": { - "type": "object", - "description": "List of security alerts", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/Alert" - } - }, - "nextLink": { - "readOnly": true, - "type": "string", - "description": "The URI to fetch the next page." - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/alerts/{alertName}/{alertUpdateActionType}": { + "post": { + "x-ms-examples": { + "Update security alert state on a resource group from a security data location": { + "$ref": "./examples/Alerts/UpdateAlertResourceGroupLocation_example.json" + } + }, + "tags": [ + "Alerts" + ], + "description": "Update the alert's state", + "operationId": "Alerts_UpdateResourceGroupLevelAlertState", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersion" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionId" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/AscLocation" + }, + { + "$ref": "#/parameters/AlertName" + }, + { + "$ref": "#/parameters/AlertUpdateActionType" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupName" + } + ], + "responses": { + "204": { + "description": "No Content" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "../../../common/v1/types.json#/definitions/CloudError" } + } + } + } + } + }, + "definitions": { + "AlertList": { + "type": "object", + "description": "List of security alerts", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/Alert" + } }, - "Alert": { - "type": "object", - "description": "Security alert", - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/AlertProperties" - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/Resource" - } + "nextLink": { + "readOnly": true, + "type": "string", + "description": "The URI to fetch the next page." + } + } + }, + "Alert": { + "type": "object", + "description": "Security alert", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/AlertProperties" + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" + } + ] + }, + "AlertProperties": { + "type": "object", + "description": "describes security alert properties.", + "properties": { + "state": { + "readOnly": true, + "type": "string", + "description": "State of the alert (Active, Dismissed etc.)" + }, + "reportedTimeUtc": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The time the incident was reported to Microsoft.Security in UTC" + }, + "vendorName": { + "readOnly": true, + "type": "string", + "description": "Name of the vendor that discovered the incident" + }, + "alertName": { + "readOnly": true, + "type": "string", + "description": "Name of the alert type" + }, + "alertDisplayName": { + "readOnly": true, + "type": "string", + "description": "Display name of the alert type" + }, + "detectedTimeUtc": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The time the incident was detected by the vendor" + }, + "description": { + "readOnly": true, + "type": "string", + "description": "Description of the incident and what it means" + }, + "remediationSteps": { + "readOnly": true, + "type": "string", + "description": "Recommended steps to reradiate the incident" + }, + "actionTaken": { + "readOnly": true, + "type": "string", + "description": "The action that was taken as a response to the alert (Active, Blocked etc.)" + }, + "reportedSeverity": { + "readOnly": true, + "type": "string", + "enum": [ + "Informational", + "Low", + "Medium", + "High" + ], + "x-ms-enum": { + "name": "reportedSeverity", + "modelAsString": true, + "values": [ + { + "value": "Informational" + }, + { + "value": "Low" + }, + { + "value": "Medium" + }, + { + "value": "High" + } ] + }, + "description": "Estimated severity of this alert" }, - "AlertProperties": { - "type": "object", - "description": "describes security alert properties.", - "properties": { - "state": { - "readOnly": true, - "type": "string", - "description": "State of the alert (Active, Dismissed etc.)" - }, - "reportedTimeUtc": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The time the incident was reported to Microsoft.Security in UTC" - }, - "vendorName": { - "readOnly": true, - "type": "string", - "description": "Name of the vendor that discovered the incident" - }, - "alertName": { - "readOnly": true, - "type": "string", - "description": "Name of the alert type" - }, - "alertDisplayName": { - "readOnly": true, - "type": "string", - "description": "Display name of the alert type" - }, - "detectedTimeUtc": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The time the incident was detected by the vendor" - }, - "description": { - "readOnly": true, - "type": "string", - "description": "Description of the incident and what it means" - }, - "remediationSteps": { - "readOnly": true, - "type": "string", - "description": "Recommended steps to reradiate the incident" - }, - "actionTaken": { - "readOnly": true, - "type": "string", - "description": "The action that was taken as a response to the alert (Active, Blocked etc.)" - }, - "reportedSeverity": { - "readOnly": true, - "type": "string", - "enum": [ - "Informational", - "Low", - "Medium", - "High" - ], - "x-ms-enum": { - "name": "reportedSeverity", - "modelAsString": true, - "values": [ - { - "value": "Informational" - }, - { - "value": "Low" - }, - { - "value": "Medium" - }, - { - "value": "High" - } - ] - }, - "description": "Estimated severity of this alert" - }, - "compromisedEntity": { - "readOnly": true, - "type": "string", - "description": "The entity that the incident happened on" - }, - "associatedResource": { - "readOnly": true, - "type": "string", - "description": "Azure resource ID of the associated resource" - }, - "extendedProperties": { - "$ref": "#/definitions/AlertExtendedProperties" - }, - "systemSource": { - "readOnly": true, - "type": "string", - "description": "The type of the alerted resource (Azure, Non-Azure)" - }, - "canBeInvestigated": { - "readOnly": true, - "type": "boolean", - "description": "Whether this alert can be investigated with Azure Security Center" - }, - "isIncident": { - "readOnly": true, - "type": "boolean", - "description": "Whether this alert is for incident type or not (otherwise - single alert)" - }, - "entities": { - "type": "array", - "description": "objects that are related to this alerts", - "items": { - "$ref": "#/definitions/AlertEntity" - } - }, - "confidenceScore": { - "readOnly": true, - "type": "number", - "format": "float", - "minimum": 0, - "maximum": 1, - "description": "level of confidence we have on the alert" - }, - "confidenceReasons": { - "type": "array", - "description": "reasons the alert got the confidenceScore value", - "items": { - "$ref": "#/definitions/AlertConfidenceReason" - } - }, - "subscriptionId": { - "readOnly": true, - "type": "string", - "description": "Azure subscription ID of the resource that had the security alert or the subscription ID of the workspace that this resource reports to" - }, - "instanceId": { - "readOnly": true, - "type": "string", - "description": "Instance ID of the alert." - }, - "workspaceArmId": { - "readOnly": true, - "type": "string", - "description": "Azure resource ID of the workspace that the alert was reported to." - }, - "correlationKey": { - "readOnly": true, - "type": "string", - "description": "Alerts with the same CorrelationKey will be grouped together in Ibiza." - } - } + "compromisedEntity": { + "readOnly": true, + "type": "string", + "description": "The entity that the incident happened on" }, - "AlertConfidenceReason": { - "type": "object", - "description": "Factors that increase our confidence that the alert is a true positive", - "properties": { - "type": { - "readOnly": true, - "type": "string", - "description": "Type of confidence factor" - }, - "reason": { - "readOnly": true, - "type": "string", - "description": "description of the confidence reason" - } - } + "associatedResource": { + "readOnly": true, + "type": "string", + "description": "Azure resource ID of the associated resource" }, - "AlertEntity": { - "type": "object", - "additionalProperties": true, - "description": "Changing set of properties depending on the entity type.", - "properties": { - "type": { - "readOnly": true, - "type": "string", - "description": "Type of entity" - } - } + "extendedProperties": { + "$ref": "#/definitions/AlertExtendedProperties" + }, + "systemSource": { + "readOnly": true, + "type": "string", + "description": "The type of the alerted resource (Azure, Non-Azure)" + }, + "canBeInvestigated": { + "readOnly": true, + "type": "boolean", + "description": "Whether this alert can be investigated with Azure Security Center" }, - "AlertExtendedProperties": { - "type": "object", - "additionalProperties": true, - "description": "Changing set of properties depending on the alert type." + "isIncident": { + "readOnly": true, + "type": "boolean", + "description": "Whether this alert is for incident type or not (otherwise - single alert)" + }, + "entities": { + "type": "array", + "description": "objects that are related to this alerts", + "items": { + "$ref": "#/definitions/AlertEntity" + } + }, + "confidenceScore": { + "readOnly": true, + "type": "number", + "format": "float", + "minimum": 0, + "maximum": 1, + "description": "level of confidence we have on the alert" + }, + "confidenceReasons": { + "type": "array", + "description": "reasons the alert got the confidenceScore value", + "items": { + "$ref": "#/definitions/AlertConfidenceReason" + } + }, + "subscriptionId": { + "readOnly": true, + "type": "string", + "description": "Azure subscription ID of the resource that had the security alert or the subscription ID of the workspace that this resource reports to" + }, + "instanceId": { + "readOnly": true, + "type": "string", + "description": "Instance ID of the alert." + }, + "workspaceArmId": { + "readOnly": true, + "type": "string", + "description": "Azure resource ID of the workspace that the alert was reported to." + }, + "correlationKey": { + "readOnly": true, + "type": "string", + "description": "Alerts with the same CorrelationKey will be grouped together in Ibiza." + } + } + }, + "AlertConfidenceReason": { + "type": "object", + "description": "Factors that increase our confidence that the alert is a true positive", + "properties": { + "type": { + "readOnly": true, + "type": "string", + "description": "Type of confidence factor" + }, + "reason": { + "readOnly": true, + "type": "string", + "description": "description of the confidence reason" } + } }, - "parameters": { - "ODataFilter": { - "name": "$filter", - "in": "query", - "required": false, - "type": "string", - "description": "OData filter. Optional.", - "x-ms-parameter-location": "method" - }, - "ODataSelect": { - "name": "$select", - "in": "query", - "required": false, - "type": "string", - "description": "OData select. Optional.", - "x-ms-parameter-location": "method" - }, - "ODataExpand": { - "name": "$expand", - "in": "query", - "required": false, - "type": "string", - "description": "OData expand. Optional.", - "x-ms-parameter-location": "method" - }, - "AlertName": { - "name": "alertName", - "in": "path", - "required": true, - "type": "string", - "description": "Name of the alert object", - "x-ms-parameter-location": "method" - }, - "AlertUpdateActionType": { - "name": "alertUpdateActionType", - "in": "path", - "required": true, - "type": "string", - "enum": [ - "Dismiss", - "Reactivate" - ], - "description": "Type of the action to do on the alert", - "x-ms-parameter-location": "method" + "AlertEntity": { + "type": "object", + "additionalProperties": true, + "description": "Changing set of properties depending on the entity type.", + "properties": { + "type": { + "readOnly": true, + "type": "string", + "description": "Type of entity" } + } + }, + "AlertExtendedProperties": { + "type": "object", + "additionalProperties": true, + "description": "Changing set of properties depending on the alert type." + } + }, + "parameters": { + "ODataFilter": { + "name": "$filter", + "in": "query", + "required": false, + "type": "string", + "description": "OData filter. Optional.", + "x-ms-parameter-location": "method" + }, + "ODataSelect": { + "name": "$select", + "in": "query", + "required": false, + "type": "string", + "description": "OData select. Optional.", + "x-ms-parameter-location": "method" + }, + "ODataExpand": { + "name": "$expand", + "in": "query", + "required": false, + "type": "string", + "description": "OData expand. Optional.", + "x-ms-parameter-location": "method" + }, + "AlertName": { + "name": "alertName", + "in": "path", + "required": true, + "type": "string", + "description": "Name of the alert object", + "x-ms-parameter-location": "method" + }, + "AlertUpdateActionType": { + "name": "alertUpdateActionType", + "in": "path", + "required": true, + "type": "string", + "enum": [ + "Dismiss", + "Reactivate" + ], + "description": "Type of the action to do on the alert", + "x-ms-parameter-location": "method" } + } } diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertResourceGroupLocation_example.json index ae09fc3ec57e..052abda63e3e 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertResourceGroupLocation_example.json @@ -1,74 +1,82 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg1", - "ascLocation": "westeurope", - "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg1", + "ascLocation": "westeurope", + "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ + { + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } + ], + "type": "ip" } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertSubscriptionLocation_example.json index e89d71092139..3050a4e1228a 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertSubscriptionLocation_example.json @@ -1,73 +1,81 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ + { + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } + ], + "type": "ip" } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsResourceGroupLocation_example.json index d6215cb137a4..381b5653dc99 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsResourceGroupLocation_example.json @@ -1,75 +1,85 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg1", - "ascLocation": "westeurope" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg1", + "ascLocation": "westeurope" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ + { + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } - }] + ], + "type": "ip" + } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsResourceGroup_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsResourceGroup_example.json index 913453136178..3641b911b3f9 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsResourceGroup_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsResourceGroup_example.json @@ -1,74 +1,84 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg1" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ + { + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } - }] + ], + "type": "ip" + } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsSubscription_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsSubscription_example.json index 401a68cdb5f7..60e85e506079 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsSubscription_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsSubscription_example.json @@ -1,153 +1,172 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" - } - }, + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/westeurope/alerts/2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "name": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "systemSource": "Azure", - "vendorName": "Microsoft", - "alertDisplayName": "Suspicious Screensaver process executed", - "alertName": "SuspiciousScreenSaver", - "detectedTimeUtc": "2018-05-07T13:51:45.0045913Z", - "description": "The process ‘%{process name}’ was observed executing from an uncommon location.\r\n\r\nFiles with the .scr extensions are screen saver files and are normally reside and execute from the Windows system directory.", - "remediationSteps": "1. Run Process Explorer and try to identify unknown running processes (see https://technet.microsoft.com/en-us/sysinternals/bb896653.aspx)\r\n2. Make sure the machine is completely updated and has an updated anti-malware application installed\r\n3. Run a full anti-malware scan and verify that the threat was removed\r\n4. Install and run Microsoft’s Malicious Software Removal Tool (see https://www.microsoft.com/en-us/download/malicious-software-removal-tool-details.aspx)\r\n5. Run Microsoft’s Autoruns utility and try to identify unknown applications that are configured to run at login (see https://technet.microsoft.com/en-us/sysinternals/bb963902.aspx)\r\n6. Escalate the alert to the information security team", - "actionTaken": "Detected", - "reportedSeverity": "Low", - "compromisedEntity": "vm2", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "extendedProperties": { - "domain name": "vm2", - "user name": "vm2\\contosoUser", - "process name": "c:\\users\\contosoUser\\scrsave.scr", - "command line": "c:\\users\\contosoUser\\scrsave.scr", - "parent process": "cmd.exe", - "process id": "0x4aec", - "account logon id": "0x61450d87", - "user SID": "S-1-5-21-2144575486-8928446540-5163864319-500", - "parent process id": "0x3c44", - "enrichment_tas_threat__reports": "{\"Kind\":\"MultiLink\",\"DisplayValueToUrlDictionary\":{\"Report: Suspicious Screen Saver Execution\":\"https://iflowreportsproda.blob.core.windows.net/reports/MSTI-TS-Suspicious-Screen-Saver-Execution.pdf?sv=2016-05-31&sr=b&sig=2igHPl764UM7aBHNaO9mPAnpzoXlwRw8YjpFLLuB2NE%3D&spr=https&st=2018-05-07T00%3A20%3A54Z&se=2018-05-08T00%3A35%3A54Z&sp=r\"}}", - "resourceType": "Virtual Machine" - }, - "state": "Active", - "reportedTimeUtc": "2018-05-07T13:51:48.3810457Z", - "workspaceArmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-21ff7fc3-e762-48dd-bd96-b551f6dcdd23-weu", - "confidenceScore": 0.3, - "confidenceReasons": [{ - "type": "Process", - "reason": "Suspicious process execution history for this subscription" - }, { - "type": "Process", - "reason": "Suspicious process execution history for this subscription" - }, { - "type": "Process", - "reason": "cmd.exe appeared in multiple alerts of the same type" - }], - "canBeInvestigated": true, - "entities": [{ - "dnsDomain": "", - "ntDomain": "", - "hostName": "vm2", - "netBiosName": "vm2", - "azureID": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", - "omsAgentID": "45b44640-3b94-4892-a28c-4a5cae27065a", - "operatingSystem": "Unknown", - "type": "host", - "OsVersion": null - }, { - "name": "contosoUser", - "ntDomain": "vm2", - "logonId": "0x61450d87", - "sid": "S-1-5-21-2144575486-8928446540-5163864319-500", - "type": "account" - }, { - "directory": "c:\\windows\\system32", - "name": "cmd.exe", - "type": "file" - }, { - "directory": "c:\\users\\contosoUser", - "name": "scrsave.scr", - "type": "file" - }, { - "processId": "0x4aec", - "commandLine": "c:\\users\\contosoUser\\scrsave.scr", - "creationTimeUtc": "2018-05-07T13:51:45.0045913Z", - "type": "process" - }], - "correlationKey": "4hnro6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s96++" - } + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } - ] + ], + "type": "ip" + } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/westeurope/alerts/2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "name": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "systemSource": "Azure", + "vendorName": "Microsoft", + "alertDisplayName": "Suspicious Screensaver process executed", + "alertName": "SuspiciousScreenSaver", + "detectedTimeUtc": "2018-05-07T13:51:45.0045913Z", + "description": "The process ‘%{process name}’ was observed executing from an uncommon location.\r\n\r\nFiles with the .scr extensions are screen saver files and are normally reside and execute from the Windows system directory.", + "remediationSteps": "1. Run Process Explorer and try to identify unknown running processes (see https://technet.microsoft.com/en-us/sysinternals/bb896653.aspx)\r\n2. Make sure the machine is completely updated and has an updated anti-malware application installed\r\n3. Run a full anti-malware scan and verify that the threat was removed\r\n4. Install and run Microsoft’s Malicious Software Removal Tool (see https://www.microsoft.com/en-us/download/malicious-software-removal-tool-details.aspx)\r\n5. Run Microsoft’s Autoruns utility and try to identify unknown applications that are configured to run at login (see https://technet.microsoft.com/en-us/sysinternals/bb963902.aspx)\r\n6. Escalate the alert to the information security team", + "actionTaken": "Detected", + "reportedSeverity": "Low", + "compromisedEntity": "vm2", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "extendedProperties": { + "domain name": "vm2", + "user name": "vm2\\contosoUser", + "process name": "c:\\users\\contosoUser\\scrsave.scr", + "command line": "c:\\users\\contosoUser\\scrsave.scr", + "parent process": "cmd.exe", + "process id": "0x4aec", + "account logon id": "0x61450d87", + "user SID": "S-1-5-21-2144575486-8928446540-5163864319-500", + "parent process id": "0x3c44", + "enrichment_tas_threat__reports": "{\"Kind\":\"MultiLink\",\"DisplayValueToUrlDictionary\":{\"Report: Suspicious Screen Saver Execution\":\"https://iflowreportsproda.blob.core.windows.net/reports/MSTI-TS-Suspicious-Screen-Saver-Execution.pdf?sv=2016-05-31&sr=b&sig=2igHPl764UM7aBHNaO9mPAnpzoXlwRw8YjpFLLuB2NE%3D&spr=https&st=2018-05-07T00%3A20%3A54Z&se=2018-05-08T00%3A35%3A54Z&sp=r\"}}", + "resourceType": "Virtual Machine" + }, + "state": "Active", + "reportedTimeUtc": "2018-05-07T13:51:48.3810457Z", + "workspaceArmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-21ff7fc3-e762-48dd-bd96-b551f6dcdd23-weu", + "confidenceScore": 0.3, + "confidenceReasons": [ + { + "type": "Process", + "reason": "Suspicious process execution history for this subscription" + }, + { + "type": "Process", + "reason": "Suspicious process execution history for this subscription" + }, + { + "type": "Process", + "reason": "cmd.exe appeared in multiple alerts of the same type" + } + ], + "canBeInvestigated": true, + "entities": [ + { + "dnsDomain": "", + "ntDomain": "", + "hostName": "vm2", + "netBiosName": "vm2", + "azureID": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", + "omsAgentID": "45b44640-3b94-4892-a28c-4a5cae27065a", + "operatingSystem": "Unknown", + "type": "host", + "OsVersion": null + }, + { + "name": "contosoUser", + "ntDomain": "vm2", + "logonId": "0x61450d87", + "sid": "S-1-5-21-2144575486-8928446540-5163864319-500", + "type": "account" + }, + { + "directory": "c:\\windows\\system32", + "name": "cmd.exe", + "type": "file" + }, + { + "directory": "c:\\users\\contosoUser", + "name": "scrsave.scr", + "type": "file" + }, + { + "processId": "0x4aec", + "commandLine": "c:\\users\\contosoUser\\scrsave.scr", + "creationTimeUtc": "2018-05-07T13:51:45.0045913Z", + "type": "process" + } + ], + "correlationKey": "4hnro6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s96++" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsSubscriptionsLocation_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsSubscriptionsLocation_example.json index c36b7a987110..9c13efa4ff44 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsSubscriptionsLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/GetAlertsSubscriptionsLocation_example.json @@ -1,157 +1,177 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope" - }, - "responses": { - "200": { - "body": { - "value": [{ - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "vendorName": "Microsoft", - "alertDisplayName": "Threat Intelligence Alert", - "alertName": "ThreatIntelligence", - "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", - "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", - "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", - "actionTaken": "Detected", - "reportedSeverity": "High", - "compromisedEntity": "vm1", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", - "extendedProperties": { - "user Name": "administrator", - "domain Name": "Contoso", - "attacker IP": "192.0.2.1", - "resourceType": "Virtual Machine" - }, - "state": "Dismissed", - "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", - "confidenceScore": 0.8, - "confidenceReasons": [{ - "type": "User", - "reason": "Some user reason" - }, { - "type": "Process", - "reason": "Some proccess reason" - }, { - "type": "Computer", - "reason": "Some computer reason" - }], - "canBeInvestigated": true, - "isIncident": false, - "entities": [{ - "address": "192.0.2.1", - "location": { - "countryCode": "gb", - "state": "wokingham", - "city": "sonning", - "longitude": -0.909, - "latitude": 51.468, - "asn": 6584 - }, - "threatIntelligence": [{ - "providerName": "Team Cymru", - "threatType": "C2", - "threatName": "rarog", - "confidence": 0.8, - "reportLink": "http://www.microsoft.com", - "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." - }], - "type": "ip" - }], - "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" - } - }, + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/alerts/2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "name": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "vendorName": "Microsoft", + "alertDisplayName": "Threat Intelligence Alert", + "alertName": "ThreatIntelligence", + "detectedTimeUtc": "2018-05-01T19:50:47.083633Z", + "description": "Process was detected running on the host and is considered to be suspicious, verify that the user run it", + "remediationSteps": "verify that the user invoked this process\r\nrun antimalware scan of the VM", + "actionTaken": "Detected", + "reportedSeverity": "High", + "compromisedEntity": "vm1", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "f144ee95-a3e5-42da-a279-967d115809aa", + "extendedProperties": { + "user Name": "administrator", + "domain Name": "Contoso", + "attacker IP": "192.0.2.1", + "resourceType": "Virtual Machine" + }, + "state": "Dismissed", + "reportedTimeUtc": "2018-05-02T05:36:12.2089889Z", + "confidenceScore": 0.8, + "confidenceReasons": [ + { + "type": "User", + "reason": "Some user reason" + }, + { + "type": "Process", + "reason": "Some proccess reason" + }, + { + "type": "Computer", + "reason": "Some computer reason" + } + ], + "canBeInvestigated": true, + "isIncident": false, + "entities": [ + { + "address": "192.0.2.1", + "location": { + "countryCode": "gb", + "state": "wokingham", + "city": "sonning", + "longitude": -0.909, + "latitude": 51.468, + "asn": 6584 + }, + "threatIntelligence": [ { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/westeurope/alerts/2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "name": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "type": "Microsoft.Security/Locations/alerts", - "properties": { - "systemSource": "Azure", - "vendorName": "Microsoft", - "alertDisplayName": "Suspicious Screensaver process executed", - "alertName": "SuspiciousScreenSaver", - "detectedTimeUtc": "2018-05-07T13:51:45.0045913Z", - "description": "The process ‘%{process name}’ was observed executing from an uncommon location.\r\n\r\nFiles with the .scr extensions are screen saver files and are normally reside and execute from the Windows system directory.", - "remediationSteps": "1. Run Process Explorer and try to identify unknown running processes (see https://technet.microsoft.com/en-us/sysinternals/bb896653.aspx)\r\n2. Make sure the machine is completely updated and has an updated anti-malware application installed\r\n3. Run a full anti-malware scan and verify that the threat was removed\r\n4. Install and run Microsoft’s Malicious Software Removal Tool (see https://www.microsoft.com/en-us/download/malicious-software-removal-tool-details.aspx)\r\n5. Run Microsoft’s Autoruns utility and try to identify unknown applications that are configured to run at login (see https://technet.microsoft.com/en-us/sysinternals/bb963902.aspx)\r\n6. Escalate the alert to the information security team", - "actionTaken": "Detected", - "reportedSeverity": "Low", - "compromisedEntity": "vm2", - "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "instanceId": "2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "extendedProperties": { - "domain name": "vm2", - "user name": "vm2\\contosoUser", - "process name": "c:\\users\\contosoUser\\scrsave.scr", - "command line": "c:\\users\\contosoUser\\scrsave.scr", - "parent process": "cmd.exe", - "process id": "0x4aec", - "account logon id": "0x61450d87", - "user SID": "S-1-5-21-2144575486-8928446540-5163864319-500", - "parent process id": "0x3c44", - "enrichment_tas_threat__reports": "{\"Kind\":\"MultiLink\",\"DisplayValueToUrlDictionary\":{\"Report: Suspicious Screen Saver Execution\":\"https://iflowreportsproda.blob.core.windows.net/reports/MSTI-TS-Suspicious-Screen-Saver-Execution.pdf?sv=2016-05-31&sr=b&sig=2igHPl764UM7aBHNaO9mPAnpzoXlwRw8YjpFLLuB2NE%3D&spr=https&st=2018-05-07T00%3A20%3A54Z&se=2018-05-08T00%3A35%3A54Z&sp=r\"}}", - "resourceType": "Virtual Machine" - }, - "state": "Active", - "reportedTimeUtc": "2018-05-07T13:51:48.3810457Z", - "workspaceArmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-21ff7fc3-e762-48dd-bd96-b551f6dcdd23-weu", - "confidenceScore": 0.3, - "confidenceReasons": [{ - "type": "Process", - "reason": "Suspicious process execution history for this subscription" - }, { - "type": "Process", - "reason": "Suspicious process execution history for this subscription" - }, { - "type": "Process", - "reason": "cmd.exe appeared in multiple alerts of the same type" - }], - "canBeInvestigated": true, - "entities": [{ - "dnsDomain": "", - "ntDomain": "", - "hostName": "vm2", - "netBiosName": "vm2", - "azureID": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", - "omsAgentID": "45b44640-3b94-4892-a28c-4a5cae27065a", - "operatingSystem": "Unknown", - "type": "host", - "OsVersion": null - }, { - "name": "contosoUser", - "ntDomain": "vm2", - "logonId": "0x61450d87", - "sid": "S-1-5-21-2144575486-8928446540-5163864319-500", - "type": "account" - }, { - "directory": "c:\\windows\\system32", - "name": "cmd.exe", - "type": "file" - }, { - "processId": "0x3c44", - "type": "process" - }, { - "directory": "c:\\users\\contosoUser", - "name": "scrsave.scr", - "type": "file" - }, { - "processId": "0x4aec", - "commandLine": "c:\\users\\contosoUser\\scrsave.scr", - "creationTimeUtc": "2018-05-07T13:51:45.0045913Z", - "type": "process" - }], - "correlationKey": "4hno6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0srk4" - } + "providerName": "Team Cymru", + "threatType": "C2", + "threatName": "rarog", + "confidence": 0.8, + "reportLink": "http://www.microsoft.com", + "threatDescription": "In bot armies, the controller is the server machine(s) that gives instructions to the controlled (zombied) hosts that connect to the command and control (C2) network. The controller host is usually running a botnet management application that is sending the commands to the zombied members of the bot army. These commands include, but are not limited to, the following: updating bitcoin wallet information, distributed denial-of-service (DDoS) target listings, updated C2 communication contact lists, and targeting data. C2 servers may be either directly controlled by the malware operators or run on hardware compromised by malware. There are multiple techniques for dynamically changing the control servers so that they are not isolated and brought down. Control servers utilize two general architectures: client-server and peer-to-peer. In a client-server model, all the hosts are controlled by a single server or a few control servers. In a peer-to-peer model, the infected hosts are both clients and servers, and they control other hosts so that instead of isolating the few control servers, all the hosts need to be removed." } - ] + ], + "type": "ip" + } + ], + "correlationKey": "Rkso6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0s9Jk=" } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg2/providers/Microsoft.Security/locations/westeurope/alerts/2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "name": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "type": "Microsoft.Security/Locations/alerts", + "properties": { + "systemSource": "Azure", + "vendorName": "Microsoft", + "alertDisplayName": "Suspicious Screensaver process executed", + "alertName": "SuspiciousScreenSaver", + "detectedTimeUtc": "2018-05-07T13:51:45.0045913Z", + "description": "The process ‘%{process name}’ was observed executing from an uncommon location.\r\n\r\nFiles with the .scr extensions are screen saver files and are normally reside and execute from the Windows system directory.", + "remediationSteps": "1. Run Process Explorer and try to identify unknown running processes (see https://technet.microsoft.com/en-us/sysinternals/bb896653.aspx)\r\n2. Make sure the machine is completely updated and has an updated anti-malware application installed\r\n3. Run a full anti-malware scan and verify that the threat was removed\r\n4. Install and run Microsoft’s Malicious Software Removal Tool (see https://www.microsoft.com/en-us/download/malicious-software-removal-tool-details.aspx)\r\n5. Run Microsoft’s Autoruns utility and try to identify unknown applications that are configured to run at login (see https://technet.microsoft.com/en-us/sysinternals/bb963902.aspx)\r\n6. Escalate the alert to the information security team", + "actionTaken": "Detected", + "reportedSeverity": "Low", + "compromisedEntity": "vm2", + "associatedResource": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "instanceId": "2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "extendedProperties": { + "domain name": "vm2", + "user name": "vm2\\contosoUser", + "process name": "c:\\users\\contosoUser\\scrsave.scr", + "command line": "c:\\users\\contosoUser\\scrsave.scr", + "parent process": "cmd.exe", + "process id": "0x4aec", + "account logon id": "0x61450d87", + "user SID": "S-1-5-21-2144575486-8928446540-5163864319-500", + "parent process id": "0x3c44", + "enrichment_tas_threat__reports": "{\"Kind\":\"MultiLink\",\"DisplayValueToUrlDictionary\":{\"Report: Suspicious Screen Saver Execution\":\"https://iflowreportsproda.blob.core.windows.net/reports/MSTI-TS-Suspicious-Screen-Saver-Execution.pdf?sv=2016-05-31&sr=b&sig=2igHPl764UM7aBHNaO9mPAnpzoXlwRw8YjpFLLuB2NE%3D&spr=https&st=2018-05-07T00%3A20%3A54Z&se=2018-05-08T00%3A35%3A54Z&sp=r\"}}", + "resourceType": "Virtual Machine" + }, + "state": "Active", + "reportedTimeUtc": "2018-05-07T13:51:48.3810457Z", + "workspaceArmId": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-21ff7fc3-e762-48dd-bd96-b551f6dcdd23-weu", + "confidenceScore": 0.3, + "confidenceReasons": [ + { + "type": "Process", + "reason": "Suspicious process execution history for this subscription" + }, + { + "type": "Process", + "reason": "Suspicious process execution history for this subscription" + }, + { + "type": "Process", + "reason": "cmd.exe appeared in multiple alerts of the same type" + } + ], + "canBeInvestigated": true, + "entities": [ + { + "dnsDomain": "", + "ntDomain": "", + "hostName": "vm2", + "netBiosName": "vm2", + "azureID": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourcegroups/myRg2/providers/microsoft.compute/virtualmachines/vm2", + "omsAgentID": "45b44640-3b94-4892-a28c-4a5cae27065a", + "operatingSystem": "Unknown", + "type": "host", + "OsVersion": null + }, + { + "name": "contosoUser", + "ntDomain": "vm2", + "logonId": "0x61450d87", + "sid": "S-1-5-21-2144575486-8928446540-5163864319-500", + "type": "account" + }, + { + "directory": "c:\\windows\\system32", + "name": "cmd.exe", + "type": "file" + }, + { + "processId": "0x3c44", + "type": "process" + }, + { + "directory": "c:\\users\\contosoUser", + "name": "scrsave.scr", + "type": "file" + }, + { + "processId": "0x4aec", + "commandLine": "c:\\users\\contosoUser\\scrsave.scr", + "creationTimeUtc": "2018-05-07T13:51:45.0045913Z", + "type": "process" + } + ], + "correlationKey": "4hno6LFWxzCll5tqrk4hnrBJ+MY1BX806W6q6+0srk4" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/UpdateAlertResourceGroupLocation_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/UpdateAlertResourceGroupLocation_example.json index 76854926020d..5001c9c3838c 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/UpdateAlertResourceGroupLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/UpdateAlertResourceGroupLocation_example.json @@ -1,14 +1,13 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "resourceGroupName": "myRg2", - "ascLocation": "westeurope", - "alertName": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", - "alertUpdateActionType": "Dismiss" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "myRg2", + "ascLocation": "westeurope", + "alertName": "2518765996949954086_2325cf9e-42a2-4f72-ae7f-9b863cba2d22", + "alertUpdateActionType": "Dismiss" + }, + "responses": { + "204": {} + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/UpdateAlertSubscriptionLocation_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/UpdateAlertSubscriptionLocation_example.json index 8ddb873327c4..0a9b56f4f1e3 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/UpdateAlertSubscriptionLocation_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Alerts/UpdateAlertSubscriptionLocation_example.json @@ -1,13 +1,12 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "ascLocation": "westeurope", - "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", - "alertUpdateActionType": "Dismiss" - }, - "responses": { - "204": { - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "ascLocation": "westeurope", + "alertName": "2518770965529163669_F144EE95-A3E5-42DA-A279-967D115809AA", + "alertUpdateActionType": "Dismiss" + }, + "responses": { + "204": {} + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/GetSetting_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/GetSetting_example.json index ecf99db3b5e5..31c7b88df1db 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/GetSetting_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/GetSetting_example.json @@ -1,20 +1,20 @@ { - "parameters": { - "api-version": "2019-01-01", - "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", - "settingName": "MCAS" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", - "name": "MCAS", - "kind": "DataExportSetting", - "type": "Microsoft.Security/settings", - "properties": { - "enabled": true - } - } + "parameters": { + "api-version": "2019-01-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "settingName": "MCAS" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", + "name": "MCAS", + "kind": "DataExportSetting", + "type": "Microsoft.Security/settings", + "properties": { + "enabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/GetSettings_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/GetSettings_example.json index 2b94584f383b..87d7aa5a6c58 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/GetSettings_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/GetSettings_example.json @@ -3,30 +3,30 @@ "api-version": "2019-01-01", "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23" }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", - "name": "MCAS", - "kind": "DataExportSetting", - "type": "Microsoft.Security/settings", - "properties": { - "enabled": true - } - }, - { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/WDATP", - "name": "WDATP", - "kind": "DataExportSetting", - "type": "Microsoft.Security/settings", - "properties": { - "enabled": false - } - } - ] + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", + "name": "MCAS", + "kind": "DataExportSetting", + "type": "Microsoft.Security/settings", + "properties": { + "enabled": true } - } + }, + { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/WDATP", + "name": "WDATP", + "kind": "DataExportSetting", + "type": "Microsoft.Security/settings", + "properties": { + "enabled": false + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/UpdateSetting_example.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/UpdateSetting_example.json index cbe282694ddd..789ebb7d6219 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/UpdateSetting_example.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/examples/Settings/UpdateSetting_example.json @@ -13,17 +13,17 @@ } } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", - "name": "MCAS", - "kind": "DataExportSetting", - "type": "Microsoft.Security/settings", - "properties": { - "enabled": true - } - } + "responses": { + "200": { + "body": { + "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", + "name": "MCAS", + "kind": "DataExportSetting", + "type": "Microsoft.Security/settings", + "properties": { + "enabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/settings.json b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/settings.json index c5647e35897a..15e9f74f8d87 100644 --- a/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/settings.json +++ b/specification/security/resource-manager/Microsoft.Security/stable/2019-01-01/settings.json @@ -6,12 +6,20 @@ "version": "2019-01-01" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], "security": [ { - "azure_auth": ["user_impersonation"] + "azure_auth": [ + "user_impersonation" + ] } ], "securityDefinitions": { @@ -33,7 +41,9 @@ "$ref": "./examples/Settings/GetSettings_example.json" } }, - "tags": ["Settings"], + "tags": [ + "Settings" + ], "description": "Settings about different configurations in security center", "operationId": "Settings_List", "parameters": [ @@ -70,7 +80,9 @@ "$ref": "./examples/Settings/GetSetting_example.json" } }, - "tags": ["Settings"], + "tags": [ + "Settings" + ], "description": "Settings of different configurations in security center", "operationId": "Settings_Get", "parameters": [ @@ -105,7 +117,9 @@ "$ref": "./examples/Settings/UpdateSetting_example.json" } }, - "tags": ["Settings"], + "tags": [ + "Settings" + ], "description": "updating settings about different configurations in security center", "operationId": "Settings_Update", "parameters": [ @@ -193,7 +207,10 @@ "kind": { "type": "string", "description": "the kind of the settings string (DataExportSetting)", - "enum": ["DataExportSetting", "AlertSuppressionSetting"], + "enum": [ + "DataExportSetting", + "AlertSuppressionSetting" + ], "x-ms-enum": { "name": "SettingKind", "modelAsString": true, @@ -208,7 +225,9 @@ } } }, - "required": ["kind"], + "required": [ + "kind" + ], "allOf": [ { "$ref": "../../../common/v1/types.json#/definitions/Resource" @@ -224,7 +243,9 @@ "description": "Is the data export setting is enabled" } }, - "required": ["enabled"] + "required": [ + "enabled" + ] } }, "parameters": { @@ -234,7 +255,10 @@ "required": true, "type": "string", "description": "Name of setting: (MCAS/WDATP)", - "enum": ["MCAS", "WDATP"], + "enum": [ + "MCAS", + "WDATP" + ], "x-ms-parameter-location": "method" }, "Setting": { diff --git a/specification/security/resource-manager/common/v1/types.json b/specification/security/resource-manager/common/v1/types.json index d39288b12ec5..6afed51f7d77 100644 --- a/specification/security/resource-manager/common/v1/types.json +++ b/specification/security/resource-manager/common/v1/types.json @@ -141,7 +141,6 @@ "in": "query", "required": true, "type": "string", - "description": "API version for the operation" }, "AscLocation": { diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/SecurityInsights.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/SecurityInsights.json index 062f46155e9a..9d25d68a7227 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/SecurityInsights.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/SecurityInsights.json @@ -1,3061 +1,3061 @@ { - "swagger": "2.0", - "info": { - "title": "Security Insights", - "description": "API spec for Microsoft.SecurityInsights (Azure Security Insights) resource provider", - "version": "2019-01-01-preview" - }, - "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" + "swagger": "2.0", + "info": { + "title": "Security Insights", + "description": "API spec for Microsoft.SecurityInsights (Azure Security Insights) resource provider", + "version": "2019-01-01-preview" + }, + "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": { + "/providers/Microsoft.SecurityInsights/operations": { + "get": { + "operationId": "Operations_List", + "description": "Lists all operations available Azure Security Insights Resource Provider.", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + } + ], + "produces": [ + "application/json" + ], + "responses": { + "200": { + "description": "OK. Successfully retrieved operations list.", + "schema": { + "$ref": "#/definitions/operationsList" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "paths": { - "/providers/Microsoft.SecurityInsights/operations": { - "get": { - "operationId": "Operations_List", - "description": "Lists all operations available Azure Security Insights Resource Provider.", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - } - ], - "produces": [ - "application/json" - ], - "responses": { - "200": { - "description": "OK. Successfully retrieved operations list.", - "schema": { - "$ref": "#/definitions/operationsList" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/alertRules": { - "get": { - "x-ms-examples": { - "Get all scheduled alert rules.": { - "$ref": "./examples/alertRules/GetScheduledAlertRules.json" - } - }, - "tags": [ - "Alert Rules" - ], - "description": "Gets all alert rules.", - "operationId": "AlertRules_List", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AlertRulesList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/alertRules": { + "get": { + "x-ms-examples": { + "Get all scheduled alert rules.": { + "$ref": "./examples/alertRules/GetScheduledAlertRules.json" + } + }, + "tags": [ + "Alert Rules" + ], + "description": "Gets all alert rules.", + "operationId": "AlertRules_List", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AlertRulesList" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/alertRules/{ruleId}": { - "get": { - "x-ms-examples": { - "Get a scheduled alert rule.": { - "$ref": "./examples/alertRules/GetScheduledAlertRuleById.json" - } - }, - "tags": [ - "Alert Rules" - ], - "description": "Gets the alert rule.", - "operationId": "AlertRules_Get", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/RuleId" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AlertRule" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Creates or updates a scheduled alert rule.": { - "$ref": "./examples/alertRules/CreateScheduledAlertRule.json" - } - }, - "tags": [ - "Alert Rules" - ], - "description": "Creates or updates the alert rule.", - "operationId": "AlertRules_CreateOrUpdate", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/RuleId" - }, - { - "$ref": "#/parameters/AlertRule" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AlertRule" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/AlertRule" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete a scheduled alert rule.": { - "$ref": "./examples/alertRules/DeleteScheduledAlertRule.json" - } - }, - "tags": [ - "Alert Rules" - ], - "description": "Delete the alert rule.", - "operationId": "AlertRules_Delete", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/RuleId" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/alertRules/{ruleId}/actions": { - "get": { - "x-ms-examples": { - "Get all actions of alert rule.": { - "$ref": "./examples/actions/GetAllActionsByAlertRule.json" - } - }, - "tags": [ - "Actions" - ], - "description": "Gets all actions of alert rule.", - "operationId": "Actions_ListByAlertRule", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/RuleId" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ActionsList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/alertRules/{ruleId}": { + "get": { + "x-ms-examples": { + "Get a scheduled alert rule.": { + "$ref": "./examples/alertRules/GetScheduledAlertRuleById.json" + } + }, + "tags": [ + "Alert Rules" + ], + "description": "Gets the alert rule.", + "operationId": "AlertRules_Get", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/RuleId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AlertRule" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/alertRules/{ruleId}/actions/{actionId}": { - "get": { - "x-ms-examples": { - "Get an action of alert rule.": { - "$ref": "./examples/actions/GetActionOfAlertRuleById.json" - } - }, - "tags": [ - "Actions" - ], - "description": "Gets the action of alert rule.", - "operationId": "AlertRules_GetAction", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/RuleId" - }, - { - "$ref": "#/parameters/ActionId" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Action" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Creates or updates an action of alert rule.": { - "$ref": "./examples/actions/CreateActionOfAlertRule.json" - } - }, - "tags": [ - "Actions" - ], - "description": "Creates or updates the action of alert rule.", - "operationId": "AlertRules_CreateOrUpdateAction", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/RuleId" - }, - { - "$ref": "#/parameters/ActionId" - }, - { - "$ref": "#/parameters/Action" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Action" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/Action" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete an action of alert rule.": { - "$ref": "./examples/actions/DeleteActionOfAlertRule.json" - } - }, - "tags": [ - "Actions" - ], - "description": "Delete the action of alert rule.", - "operationId": "AlertRules_DeleteAction", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/RuleId" - }, - { - "$ref": "#/parameters/ActionId" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/cases": { - "get": { - "x-ms-examples": { - "Get all cases.": { - "$ref": "./examples/cases/GetCases.json" - } - }, - "tags": [ - "Cases" - ], - "description": "Gets all cases.", - "operationId": "Cases_List", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/CaseList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + } + } + }, + "put": { + "x-ms-examples": { + "Creates or updates a scheduled alert rule.": { + "$ref": "./examples/alertRules/CreateScheduledAlertRule.json" + } + }, + "tags": [ + "Alert Rules" + ], + "description": "Creates or updates the alert rule.", + "operationId": "AlertRules_CreateOrUpdate", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/RuleId" + }, + { + "$ref": "#/parameters/AlertRule" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AlertRule" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/cases/{caseId}": { - "get": { - "x-ms-examples": { - "Get a case.": { - "$ref": "./examples/cases/GetCaseById.json" - } - }, - "tags": [ - "Cases" - ], - "description": "Gets a case.", - "operationId": "Cases_Get", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/CaseId" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Case" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Creates or updates a case.": { - "$ref": "./examples/cases/CreateCase.json" - } - }, - "tags": [ - "Cases" - ], - "description": "Creates or updates the case.", - "operationId": "Cases_CreateOrUpdate", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/CaseId" - }, - { - "$ref": "#/parameters/Case" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Case" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/Case" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete a case.": { - "$ref": "./examples/cases/DeleteCase.json" - } - }, - "tags": [ - "Cases" - ], - "description": "Delete the case.", - "operationId": "Cases_Delete", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/CaseId" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/AlertRule" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/bookmarks": { - "get": { - "x-ms-examples": { - "Get all bookmarks.": { - "$ref": "./examples/bookmarks/GetBookmarks.json" - } - }, - "tags": [ - "Bookmarks" - ], - "description": "Gets all bookmarks.", - "operationId": "Bookmarks_List", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/BookmarkList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/bookmarks/{bookmarkId}": { - "get": { - "x-ms-examples": { - "Get a bookmark.": { - "$ref": "./examples/bookmarks/GetBookmarkById.json" - } - }, - "tags": [ - "Bookmarks" - ], - "description": "Gets a bookmark.", - "operationId": "Bookmarks_Get", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/BookmarkId" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Bookmark" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Creates or updates a bookmark.": { - "$ref": "./examples/bookmarks/CreateBookmark.json" - } - }, - "tags": [ - "Bookmarks" - ], - "description": "Creates or updates the bookmark.", - "operationId": "Bookmarks_CreateOrUpdate", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/BookmarkId" - }, - { - "$ref": "#/parameters/Bookmark" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Bookmark" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/Bookmark" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete a bookmark.": { - "$ref": "./examples/bookmarks/DeleteBookmark.json" - } - }, - "tags": [ - "Bookmarks" - ], - "description": "Delete the bookmark.", - "operationId": "Bookmarks_Delete", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/BookmarkId" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } + } + } + }, + "delete": { + "x-ms-examples": { + "Delete a scheduled alert rule.": { + "$ref": "./examples/alertRules/DeleteScheduledAlertRule.json" + } + }, + "tags": [ + "Alert Rules" + ], + "description": "Delete the alert rule.", + "operationId": "AlertRules_Delete", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/RuleId" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/dataConnectors": { - "get": { - "x-ms-examples": { - "Get all data connectors.": { - "$ref": "./examples/dataConnectors/GetDataConnectors.json" - } - }, - "tags": [ - "Data Connectors" - ], - "description": "Gets all data connectors.", - "operationId": "DataConnectors_List", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DataConnectorList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/alertRules/{ruleId}/actions": { + "get": { + "x-ms-examples": { + "Get all actions of alert rule.": { + "$ref": "./examples/actions/GetAllActionsByAlertRule.json" + } + }, + "tags": [ + "Actions" + ], + "description": "Gets all actions of alert rule.", + "operationId": "Actions_ListByAlertRule", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/RuleId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ActionsList" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/dataConnectors/{dataConnectorId}": { - "get": { - "x-ms-examples": { - "Get an Office365 data connector.": { - "$ref": "./examples/dataConnectors/GetOfficeDataConnetorById.json" - }, - "Get a TI data connector.": { - "$ref": "./examples/dataConnectors/GetThreatIntelligenceById.json" - }, - "Get a MCAS data connector.": { - "$ref": "./examples/dataConnectors/GetMicrosoftCloudAppSecurityById.json" - }, - "Get a ASC data connector.": { - "$ref": "./examples/dataConnectors/GetAzureSecurityCenterById.json" - }, - "Get an AAD data connector.": { - "$ref": "./examples/dataConnectors/GetAzureActiveDirectoryById.json" - } - }, - "tags": [ - "Data Connectors" - ], - "description": "Gets a data connector.", - "operationId": "DataConnectors_Get", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/DataConnectorId" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DataConnector" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Creates or updates an Office365 data connector.": { - "$ref": "./examples/dataConnectors/CreateOfficeDataConnetor.json" - } - }, - "tags": [ - "Data Connectors" - ], - "description": "Creates or updates the data connector.", - "operationId": "DataConnectors_CreateOrUpdate", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/DataConnectorId" - }, - { - "$ref": "#/parameters/DataConnector" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DataConnector" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/DataConnector" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete an Office365 data connector.": { - "$ref": "./examples/dataConnectors/DeleteOfficeDataConnetor.json" - } - }, - "tags": [ - "Data Connectors" - ], - "description": "Delete the data connector.", - "operationId": "DataConnectors_Delete", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/DataConnectorId" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/entities": { - "get": { - "x-ms-examples": { - "Get all entities.": { - "$ref": "./examples/entities/GetEntities.json" - } - }, - "tags": [ - "Entities" - ], - "description": "Gets all entities.", - "operationId": "Entities_List", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/EntityList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/alertRules/{ruleId}/actions/{actionId}": { + "get": { + "x-ms-examples": { + "Get an action of alert rule.": { + "$ref": "./examples/actions/GetActionOfAlertRuleById.json" + } + }, + "tags": [ + "Actions" + ], + "description": "Gets the action of alert rule.", + "operationId": "AlertRules_GetAction", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/RuleId" + }, + { + "$ref": "#/parameters/ActionId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Action" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/entities/{entityId}": { - "get": { - "x-ms-examples": { - "Get an account entity.": { - "$ref": "./examples/entities/GetAccountEntityById.json" - }, - "Get an host entity.": { - "$ref": "./examples/entities/GetHostEntityById.json" - }, - "Get an file entity.": { - "$ref": "./examples/entities/GetFileEntityById.json" - } - }, - "tags": [ - "Entities" - ], - "description": "Gets an entity.", - "operationId": "Entities_Get", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/EntityId" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Entity" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/officeConsents": { - "get": { - "x-ms-examples": { - "Get all office consents.": { - "$ref": "./examples/officeConsents/GetOfficeConsents.json" - } - }, - "tags": [ - "Office Consents" - ], - "description": "Gets all office365 consents.", - "operationId": "OfficeConsents_List", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/OfficeConsentList" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + } + } + }, + "put": { + "x-ms-examples": { + "Creates or updates an action of alert rule.": { + "$ref": "./examples/actions/CreateActionOfAlertRule.json" + } + }, + "tags": [ + "Actions" + ], + "description": "Creates or updates the action of alert rule.", + "operationId": "AlertRules_CreateOrUpdateAction", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/RuleId" + }, + { + "$ref": "#/parameters/ActionId" + }, + { + "$ref": "#/parameters/Action" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Action" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/officeConsents/{consentId}": { - "get": { - "x-ms-examples": { - "Get an office consent.": { - "$ref": "./examples/officeConsents/GetOfficeConsentsById.json" - } - }, - "tags": [ - "Office Consents" - ], - "description": "Gets an office365 consent.", - "operationId": "OfficeConsents_Get", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/ConsentId" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/OfficeConsent" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "delete": { - "x-ms-examples": { - "Delete an office consent.": { - "$ref": "./examples/officeConsents/DeleteOfficeConsents.json" - } - }, - "tags": [ - "Office Consents" - ], - "description": "Delete the office365 consent.", - "operationId": "OfficeConsents_Delete", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/ConsentId" - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/Action" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/settings/{settingsName}": { - "get": { - "x-ms-examples": { - "Get UEBA settings.": { - "$ref": "./examples/settings/GetUebaSettings.json" - }, - "Get Fusion settings.": { - "$ref": "./examples/settings/GetFusionSettings.json" - } - }, - "tags": [ - "Settings" - ], - "description": "Gets a setting.", - "operationId": "ProductSettings_Get", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/SettingsName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Settings" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } - }, - "put": { - "x-ms-examples": { - "Update UEBA settings.": { - "$ref": "./examples/settings/UpdateUebaSettings.json" - } - }, - "tags": [ - "Settings" - ], - "description": "Updates the setting.", - "operationId": "ProductSettings_Update", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/SettingsName" - }, - { - "$ref": "#/parameters/Settings" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Settings" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/aggregations/{aggregationsName}": { - "get": { - "x-ms-examples": { - "Get aggregative data for all cases under the defined workspace, between the time range if specified.": { - "$ref": "./examples/aggregations/GetCasesAggregations.json" - } - }, - "tags": [ - "Aggregations" - ], - "description": "Get aggregative result for the given resources under the defined workspace", - "operationId": "CasesAggregations_Get", - "parameters": [ - { - "$ref": "#/parameters/ApiVersion" - }, - { - "$ref": "#/parameters/SubscriptionId" - }, - { - "$ref": "#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/OperationalInsightsResourceProvider" - }, - { - "$ref": "#/parameters/WorkspaceName" - }, - { - "$ref": "#/parameters/AggregationsName" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Aggregations" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/CloudError" - } - } - } + } + } + }, + "delete": { + "x-ms-examples": { + "Delete an action of alert rule.": { + "$ref": "./examples/actions/DeleteActionOfAlertRule.json" + } + }, + "tags": [ + "Actions" + ], + "description": "Delete the action of alert rule.", + "operationId": "AlertRules_DeleteAction", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/RuleId" + }, + { + "$ref": "#/parameters/ActionId" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } + } } + } }, - "definitions": { - "operation": { - "description": "Operation provided by provider", - "properties": { - "name": { - "type": "string", - "description": "Name of the operation" - }, - "display": { - "type": "object", - "description": "Properties of the operation", - "properties": { - "provider": { - "type": "string", - "description": "Provider name" - }, - "resource": { - "type": "string", - "description": "Resource name" - }, - "operation": { - "type": "string", - "description": "Operation name" - }, - "description": { - "type": "string", - "description": "Description of the operation" - } - } - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/cases": { + "get": { + "x-ms-examples": { + "Get all cases.": { + "$ref": "./examples/cases/GetCases.json" + } + }, + "tags": [ + "Cases" + ], + "description": "Gets all cases.", + "operationId": "Cases_List", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/CaseList" } - }, - "operationsList": { - "description": "Lists the operations available in the SecurityInsights RP.", - "properties": { - "nextLink": { - "description": "URL to fetch the next set of operations.", - "type": "string" - }, - "value": { - "description": "Array of operations", - "type": "array", - "items": { - "$ref": "#/definitions/operation" - } - } - }, - "required": [ - "value" - ] - }, - "CloudError": { - "x-ms-external": true, - "type": "object", - "description": "Error response structure.", - "properties": { - "error": { - "x-ms-client-flatten": true, - "description": "Error data", - "$ref": "#/definitions/CloudErrorBody" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } + } }, - "CloudErrorBody": { - "x-ms-external": true, - "type": "object", - "description": "Error details.", - "properties": { - "code": { - "readOnly": true, - "type": "string", - "description": "An identifier for the error. Codes are invariant and are intended to be consumed programmatically." - }, - "message": { - "readOnly": true, - "type": "string", - "description": "A message describing the error, intended to be suitable for display in a user interface." - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/cases/{caseId}": { + "get": { + "x-ms-examples": { + "Get a case.": { + "$ref": "./examples/cases/GetCaseById.json" + } + }, + "tags": [ + "Cases" + ], + "description": "Gets a case.", + "operationId": "Cases_Get", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/CaseId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Case" } - }, - "AlertRulesList": { - "description": "List all the alert rules.", - "properties": { - "nextLink": { - "readOnly": true, - "description": "URL to fetch the next set of alert rules.", - "type": "string" - }, - "value": { - "description": "Array of alert rules.", - "type": "array", - "items": { - "$ref": "#/definitions/AlertRule" - } - } - }, - "required": [ - "value" - ] - }, - "AlertRule": { - "type": "object", - "description": "Alert rule.", - "discriminator": "kind", - "allOf": [ - { - "$ref": "#/definitions/Resource" - }, - { - "$ref": "#/definitions/AlertRuleKind" - } - ], - "properties": { - "etag": { - "type": "string", - "description": "Etag of the alert rule." - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "AlertRuleKind": { - "type": "object", - "description": "Describes an Azure resource with kind.", - "properties": { - "kind": { - "type": "string", - "description": "The kind of the alert rule", - "enum": [ - "Scheduled" - ], - "x-ms-enum": { - "name": "AlertRuleKind", - "modelAsString": true, - "values": [ - { - "value": "Scheduled" - } - ] - } - } + } + } + }, + "put": { + "x-ms-examples": { + "Creates or updates a case.": { + "$ref": "./examples/cases/CreateCase.json" + } + }, + "tags": [ + "Cases" + ], + "description": "Creates or updates the case.", + "operationId": "Cases_CreateOrUpdate", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/CaseId" + }, + { + "$ref": "#/parameters/Case" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Case" } - }, - "ScheduledAlertRule": { - "x-ms-discriminator-value": "Scheduled", - "type": "object", - "description": "Represents scheduled alert rule.", - "allOf": [ - { - "$ref": "#/definitions/AlertRule" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Scheduled alert rule properties", - "$ref": "#/definitions/ScheduledAlertRuleProperties" - } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/Case" } - }, - "ScheduledAlertRuleProperties": { - "type": "object", - "description": "Alert rule property bag.", - "properties": { - "displayName": { - "type": "string", - "description": "The display name for alerts created by this alert rule." - }, - "description": { - "type": "string", - "description": "The description of the alert rule." - }, - "severity": { - "type": "string", - "enum": [ - "High", - "Medium", - "Low", - "Informational" - ], - "x-ms-enum": { - "name": "AlertSeverity", - "modelAsString": false, - "values": [ - { - "value": "High", - "description": "High severity" - }, - { - "value": "Medium", - "description": "Medium severity" - }, - { - "value": "Low", - "description": "Low severity" - }, - { - "value": "Informational", - "description": "Informational severity" - } - ] - }, - "description": "The severity for alerts created by this alert rule." - }, - "enabled": { - "type": "boolean", - "description": "Determines whether this alert rule is enabled or disabled." - }, - "query": { - "type": "string", - "description": "The query that creates alerts for this rule." - }, - "queryFrequency": { - "type": "string", - "format": "duration", - "description": "The frequency (in ISO 8601 duration format) for this alert rule to run." - }, - "queryPeriod": { - "type": "string", - "format": "duration", - "description": "The period (in ISO 8601 duration format) that this alert rule looks at." - }, - "triggerOperator": { - "type": "string", - "enum": [ - "GreaterThan", - "LessThan", - "Equal", - "NotEqual" - ], - "x-ms-enum": { - "name": "TriggerOperator", - "modelAsString": false - }, - "description": "The operation against the threshold that triggers alert rule." - }, - "triggerThreshold": { - "type": "integer", - "description": "The threshold triggers this alert rule." - }, - "suppressionEnabled": { - "type": "boolean", - "description": "Determines whether the suppression for this alert rule is enabled or disabled." - }, - "suppressionDuration": { - "type": "string", - "format": "duration", - "description": "The suppression (in ISO 8601 duration format) to wait since last time this alert rule been triggered." - }, - "lastModifiedUtc": { - "type": "string", - "readOnly": true, - "description": "The last time that this alert has been modified." - } - }, - "required": [ - "displayName", - "description", - "severity", - "enabled", - "query", - "queryFrequency", - "queryPeriod", - "triggerOperator", - "triggerThreshold", - "suppressionEnabled", - "suppressionDuration" - ] - }, - "ActionsList": { - "description": "List all the actions.", - "properties": { - "nextLink": { - "readOnly": true, - "description": "URL to fetch the next set of actions.", - "type": "string" - }, - "value": { - "description": "Array of actions.", - "type": "array", - "items": { - "$ref": "#/definitions/Action" - } - } - }, - "required": [ - "value" - ] - }, - "Action": { - "type": "object", - "description": "Action for alert rule.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "etag": { - "type": "string", - "description": "Etag of the action." - }, - "properties": { - "x-ms-client-flatten": true, - "description": "Action properties", - "$ref": "#/definitions/ActionProperties" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "ActionProperties": { - "type": "object", - "description": "Action property bag.", - "properties": { - "triggerUri": { - "type": "string", - "description": "The uri for the action to trigger." - } + } + } + }, + "delete": { + "x-ms-examples": { + "Delete a case.": { + "$ref": "./examples/cases/DeleteCase.json" + } + }, + "tags": [ + "Cases" + ], + "description": "Delete the case.", + "operationId": "Cases_Delete", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/CaseId" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "CaseList": { - "description": "List all the cases.", - "properties": { - "nextLink": { - "readOnly": true, - "description": "URL to fetch the next set of cases.", - "type": "string" - }, - "value": { - "description": "Array of cases.", - "type": "array", - "items": { - "$ref": "#/definitions/Case" - } - } - }, - "required": [ - "value" - ] - }, - "Case": { - "type": "object", - "description": "Represents a case in Azure Security Insights.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "etag": { - "type": "string", - "description": "Etag of the alert rule." - }, - "properties": { - "x-ms-client-flatten": true, - "description": "Case properties", - "$ref": "#/definitions/CaseProperties" - } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/bookmarks": { + "get": { + "x-ms-examples": { + "Get all bookmarks.": { + "$ref": "./examples/bookmarks/GetBookmarks.json" + } + }, + "tags": [ + "Bookmarks" + ], + "description": "Gets all bookmarks.", + "operationId": "Bookmarks_List", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/BookmarkList" } - }, - "CaseProperties": { - "type": "object", - "description": "Describes case properties", - "properties": { - "lastUpdatedTimeUtc": { - "type": "string", - "format": "date-time", - "description": "The last time the case was updated" - }, - "createdTimeUtc": { - "type": "string", - "format": "date-time", - "description": "The time the case was created" - }, - "endTimeUtc": { - "type": "string", - "format": "date-time", - "description": "The end time of the case" - }, - "startTimeUtc": { - "type": "string", - "format": "date-time", - "description": "The start time of the case" - }, - "labels": { - "type": "array", - "items": { - "$ref": "#/definitions/Label" - }, - "description": "List of labels relevant to this case" - }, - "description": { - "type": "string", - "description": "The description of the case" - }, - "title": { - "type": "string", - "description": "The title of the case" - }, - "assignedTo": { - "type": "object", - "description": "Describes a user that the case is assigned to", - "$ref": "#/definitions/UserInfo" - }, - "severity": { - "type": "string", - "description": "The severity of the case", - "enum": [ - "Critical", - "High", - "Medium", - "Low", - "Informational" - ], - "x-ms-enum": { - "name": "CaseSeverity", - "modelAsString": true, - "values": [ - { - "value": "Critical", - "description": "Critical severity" - }, - { - "value": "High", - "description": "High severity" - }, - { - "value": "Medium", - "description": "Medium severity" - }, - { - "value": "Low", - "description": "Low severity" - }, - { - "value": "Informational", - "description": "Informational severity" - } - ] - } - }, - "status": { - "type": "string", - "description": "The status of the case", - "enum": [ - "Draft", - "Open", - "InProgress", - "Closed" - ], - "x-ms-enum": { - "name": "CaseStatus", - "modelAsString": true, - "values": [ - { - "value": "Draft", - "description": "Case that wasn't promoted yet to active" - }, - { - "value": "Open", - "description": "An active case which isn't handled currently" - }, - { - "value": "InProgress", - "description": "An active case which is handled" - }, - { - "value": "Closed", - "description": "A non active case" - } - ] - } - }, - "closeReason": { - "type": "string", - "description": "The reason the case was closed", - "enum": [ - "Resolved", - "Dismissed", - "Other" - ], - "x-ms-enum": { - "name": "CloseReason", - "modelAsString": true, - "values": [ - { - "value": "Resolved", - "description": "Case was resolved" - }, - { - "value": "Dismissed", - "description": "Case was dismissed" - }, - { - "value": "Other", - "description": "Case was closed for another reason" - } - ] - } - } - }, - "required": [ - "title", - "severity", - "status" - ] - }, - "BookmarkList": { - "description": "List all the bookmarks.", - "properties": { - "nextLink": { - "readOnly": true, - "description": "URL to fetch the next set of cases.", - "type": "string" - }, - "value": { - "description": "Array of bookmarks.", - "type": "array", - "items": { - "$ref": "#/definitions/Bookmark" - } - } - }, - "required": [ - "value" - ] - }, - "Bookmark": { - "type": "object", - "description": "Represents a bookmark in Azure Security Insights.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "etag": { - "type": "string", - "description": "Etag of the bookmark." - }, - "properties": { - "x-ms-client-flatten": true, - "description": "Bookmark properties", - "$ref": "#/definitions/BookmarkProperties" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } + } }, - "BookmarkProperties": { - "type": "object", - "description": "Describes bookmark properties", - "properties": { - "displayName": { - "type": "string", - "description": "The display name of the bookmark" - }, - "lastUpdatedTimeUtc": { - "type": "string", - "format": "date-time", - "description": "The last time the bookmark was updated" - }, - "createdTimeUtc": { - "type": "string", - "format": "date-time", - "description": "The time the bookmark was created" - }, - "createdBy": { - "type": "object", - "description": "Describes a user that created the bookmark", - "$ref": "#/definitions/UserInfo" - }, - "updatedBy": { - "type": "object", - "description": "Describes a user that updated the bookmark", - "$ref": "#/definitions/UserInfo" - }, - "notes": { - "type": "string", - "description": "The notes of the bookmark" - }, - "labels": { - "type": "array", - "items": { - "$ref": "#/definitions/Label" - }, - "description": "List of labels relevant to this bookmark" - }, - "query": { - "type": "string", - "description": "The query of the bookmark." - } - }, - "required": [ - "displayName", - "query" - ] - }, - "UserInfo": { - "type": "object", - "description": "User information that made some action", - "properties": { - "objectId": { - "type": "string", - "format": "uuid", - "description": "The object id of the user." - }, - "email": { - "type": "string", - "description": "The email of the user." - }, - "name": { - "type": "string", - "description": "The name of the user." - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/bookmarks/{bookmarkId}": { + "get": { + "x-ms-examples": { + "Get a bookmark.": { + "$ref": "./examples/bookmarks/GetBookmarkById.json" + } + }, + "tags": [ + "Bookmarks" + ], + "description": "Gets a bookmark.", + "operationId": "Bookmarks_Get", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/BookmarkId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Bookmark" } - }, - "Label": { - "description": "Label that will be used to tag and filter on.", - "type": "string" - }, - "DataConnectorList": { - "description": "List all the data connectors.", - "properties": { - "nextLink": { - "readOnly": true, - "description": "URL to fetch the next set of data connectors.", - "type": "string" - }, - "value": { - "description": "Array of data connectors.", - "type": "array", - "items": { - "$ref": "#/definitions/DataConnector" - } - } - }, - "required": [ - "value" - ] - }, - "DataConnector": { - "type": "object", - "description": "Data connector.", - "discriminator": "kind", - "allOf": [ - { - "$ref": "#/definitions/Resource" - }, - { - "$ref": "#/definitions/DataConnectorKind" - } - ], - "properties": { - "etag": { - "type": "string", - "description": "Etag of the data connector." - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "DataConnectorKind": { - "type": "object", - "description": "Describes an Azure resource with kind.", - "properties": { - "kind": { - "type": "string", - "description": "The kind of the data connector", - "enum": [ - "AzureActiveDirectory", - "AzureSecurityCenter", - "MicrosoftCloudAppSecurity", - "ThreatIntelligence", - "Office365" - ], - "x-ms-enum": { - "name": "DataConnectorKind", - "modelAsString": true, - "values": [ - { - "value": "AzureActiveDirectory" - }, - { - "value": "AzureSecurityCenter" - }, - { - "value": "MicrosoftCloudAppSecurity" - }, - { - "value": "ThreatIntelligence" - }, - { - "value": "Office365" - } - ] - } - } + } + } + }, + "put": { + "x-ms-examples": { + "Creates or updates a bookmark.": { + "$ref": "./examples/bookmarks/CreateBookmark.json" + } + }, + "tags": [ + "Bookmarks" + ], + "description": "Creates or updates the bookmark.", + "operationId": "Bookmarks_CreateOrUpdate", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/BookmarkId" + }, + { + "$ref": "#/parameters/Bookmark" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Bookmark" } - }, - "DataConnectorTenantId": { - "type": "object", - "description": "Properties data connector on tenant level.", - "properties": { - "tenantId": { - "type": "string", - "description": "The tenant id to connect to, and get the data from." - } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/Bookmark" } - }, - "OfficeDataConnector": { - "x-ms-discriminator-value": "Office365", - "type": "object", - "description": "Represents office data connector.", - "allOf": [ - { - "$ref": "#/definitions/DataConnector" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Office data connector properties.", - "$ref": "#/definitions/OfficeDataConnectorProperties" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "OfficeDataConnectorProperties": { - "type": "object", - "description": "Office data connector properties.", - "allOf": [ - { - "$ref": "#/definitions/DataConnectorTenantId" - } - ], - "properties": { - "dataTypes": { - "description": "The available data types for the connector.", - "$ref": "#/definitions/OfficeDataConnectorDataTypes" - } + } + } + }, + "delete": { + "x-ms-examples": { + "Delete a bookmark.": { + "$ref": "./examples/bookmarks/DeleteBookmark.json" + } + }, + "tags": [ + "Bookmarks" + ], + "description": "Delete the bookmark.", + "operationId": "Bookmarks_Delete", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/BookmarkId" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "OfficeDataConnectorDataTypes": { - "type": "object", - "description": "The available data types for office data connector.", - "properties": { - "sharePoint": { - "type": "object", - "description": "SharePoint data type connection.", - "allOf": [ - { - "$ref": "#/definitions/DataConnectorDataTypeCommon" - } - ] - }, - "exchange": { - "type": "object", - "description": "Exchange data type connection.", - "allOf": [ - { - "$ref": "#/definitions/DataConnectorDataTypeCommon" - } - ] - } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/dataConnectors": { + "get": { + "x-ms-examples": { + "Get all data connectors.": { + "$ref": "./examples/dataConnectors/GetDataConnectors.json" + } + }, + "tags": [ + "Data Connectors" + ], + "description": "Gets all data connectors.", + "operationId": "DataConnectors_List", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DataConnectorList" } - }, - "TIDataConnector": { - "x-ms-discriminator-value": "ThreatIntelligence", - "type": "object", - "description": "Represents threat intelligence data connector.", - "allOf": [ - { - "$ref": "#/definitions/DataConnector" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "TI (Threat Intelligence) data connector properties.", - "$ref": "#/definitions/TIDataConnectorProperties" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } + } }, - "TIDataConnectorProperties": { - "type": "object", - "description": "TI (Threat Intelligence) data connector properties.", - "allOf": [ - { - "$ref": "#/definitions/DataConnectorTenantId" - } - ], - "properties": { - "dataTypes": { - "description": "The available data types for the connector.", - "$ref": "#/definitions/TIDataConnectorDataTypes" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/dataConnectors/{dataConnectorId}": { + "get": { + "x-ms-examples": { + "Get an Office365 data connector.": { + "$ref": "./examples/dataConnectors/GetOfficeDataConnetorById.json" + }, + "Get a TI data connector.": { + "$ref": "./examples/dataConnectors/GetThreatIntelligenceById.json" + }, + "Get a MCAS data connector.": { + "$ref": "./examples/dataConnectors/GetMicrosoftCloudAppSecurityById.json" + }, + "Get a ASC data connector.": { + "$ref": "./examples/dataConnectors/GetAzureSecurityCenterById.json" + }, + "Get an AAD data connector.": { + "$ref": "./examples/dataConnectors/GetAzureActiveDirectoryById.json" + } + }, + "tags": [ + "Data Connectors" + ], + "description": "Gets a data connector.", + "operationId": "DataConnectors_Get", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/DataConnectorId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DataConnector" } - }, - "TIDataConnectorDataTypes": { - "type": "object", - "description": "The available data types for TI (Threat Intelligence) data connector.", - "properties": { - "indicators": { - "type": "object", - "description": "Data type for indicators connection.", - "allOf": [ - { - "$ref": "#/definitions/DataConnectorDataTypeCommon" - } - ] - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "AADDataConnector": { - "x-ms-discriminator-value": "AzureActiveDirectory", - "type": "object", - "description": "Represents AAD (Azure Active Directory) data connector.", - "allOf": [ - { - "$ref": "#/definitions/DataConnector" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "AAD (Azure Active Directory) data connector properties.", - "$ref": "#/definitions/AADDataConnectorProperties" - } + } + } + }, + "put": { + "x-ms-examples": { + "Creates or updates an Office365 data connector.": { + "$ref": "./examples/dataConnectors/CreateOfficeDataConnetor.json" + } + }, + "tags": [ + "Data Connectors" + ], + "description": "Creates or updates the data connector.", + "operationId": "DataConnectors_CreateOrUpdate", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/DataConnectorId" + }, + { + "$ref": "#/parameters/DataConnector" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DataConnector" } - }, - "AADDataConnectorProperties": { - "type": "object", - "description": "AAD (Azure Active Directory) data connector properties.", - "allOf": [ - { - "$ref": "#/definitions/DataConnectorTenantId" - }, - { - "$ref": "#/definitions/DataConnectorWithAlertsProperties" - } - ] - }, - "ASCDataConnector": { - "x-ms-discriminator-value": "AzureSecurityCenter", - "type": "object", - "description": "Represents ASC (Azure Security Center) data connector.", - "allOf": [ - { - "$ref": "#/definitions/DataConnector" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "ASC (Azure Security Center) data connector properties.", - "$ref": "#/definitions/ASCDataConnectorProperties" - } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/DataConnector" } - }, - "ASCDataConnectorProperties": { - "type": "object", - "description": "MCAS (Microsoft Cloud App Security) data connector properties.", - "allOf": [ - { - "$ref": "#/definitions/DataConnectorWithAlertsProperties" - } - ], - "properties": { - "subscriptionId": { - "type": "string", - "description": "The subscription id to connect to, and get the data from." - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "MCASDataConnector": { - "x-ms-discriminator-value": "MicrosoftCloudAppSecurity", - "type": "object", - "description": "Represents MCAS (Microsoft Cloud App Security) data connector.", - "allOf": [ - { - "$ref": "#/definitions/DataConnector" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "MCAS (Microsoft Cloud App Security) data connector properties.", - "$ref": "#/definitions/MCASDataConnectorProperties" - } + } + } + }, + "delete": { + "x-ms-examples": { + "Delete an Office365 data connector.": { + "$ref": "./examples/dataConnectors/DeleteOfficeDataConnetor.json" + } + }, + "tags": [ + "Data Connectors" + ], + "description": "Delete the data connector.", + "operationId": "DataConnectors_Delete", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/DataConnectorId" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "MCASDataConnectorProperties": { - "type": "object", - "description": "MCAS (Microsoft Cloud App Security) data connector properties.", - "allOf": [ - { - "$ref": "#/definitions/DataConnectorTenantId" - }, - { - "$ref": "#/definitions/DataConnectorWithAlertsProperties" - } - ] - }, - "DataConnectorWithAlertsProperties": { - "type": "object", - "description": "Data connector properties.", - "properties": { - "dataTypes": { - "description": "The available data types for the connector.", - "$ref": "#/definitions/AlertsDataTypeOfDataConnector" - } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/entities": { + "get": { + "x-ms-examples": { + "Get all entities.": { + "$ref": "./examples/entities/GetEntities.json" + } + }, + "tags": [ + "Entities" + ], + "description": "Gets all entities.", + "operationId": "Entities_List", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/EntityList" } - }, - "AlertsDataTypeOfDataConnector": { - "type": "object", - "description": "Alerts data type for data connectors.", - "properties": { - "alerts": { - "type": "object", - "description": "Alerts data type connection.", - "allOf": [ - { - "$ref": "#/definitions/DataConnectorDataTypeCommon" - } - ] - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } + } }, - "DataConnectorDataTypeCommon": { - "type": "object", - "description": "Common field for data type in data connectors.", - "properties": { - "state": { - "type": "string", - "description": "Describe whether this data type connection is enabled or not.", - "enum": [ - "Enabled", - "Disabled" - ], - "x-ms-enum": { - "name": "DataTypeState", - "modelAsString": true - } - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/entities/{entityId}": { + "get": { + "x-ms-examples": { + "Get an account entity.": { + "$ref": "./examples/entities/GetAccountEntityById.json" + }, + "Get an host entity.": { + "$ref": "./examples/entities/GetHostEntityById.json" + }, + "Get an file entity.": { + "$ref": "./examples/entities/GetFileEntityById.json" + } + }, + "tags": [ + "Entities" + ], + "description": "Gets an entity.", + "operationId": "Entities_Get", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/EntityId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Entity" } - }, - "EntityList": { - "description": "List of all the entities.", - "properties": { - "nextLink": { - "readOnly": true, - "description": "URL to fetch the next set of entities.", - "type": "string" - }, - "value": { - "description": "Array of entities.", - "type": "array", - "items": { - "$ref": "#/definitions/Entity" - } - } - }, - "required": [ - "value" - ] - }, - "Entity": { - "type": "object", - "description": "Specific entity.", - "discriminator": "kind", - "allOf": [ - { - "$ref": "#/definitions/Resource" - }, - { - "$ref": "#/definitions/EntityKind" - } - ] - }, - "EntityKind": { - "type": "object", - "description": "Describes an Azure resource with kind.", - "properties": { - "kind": { - "type": "string", - "description": "The kind of the entity", - "enum": [ - "Account", - "Host", - "File" - ], - "x-ms-enum": { - "name": "EntityKind", - "modelAsString": true, - "values": [ - { - "value": "Account", - "description": "Entity represents account in the system." - }, - { - "value": "Host", - "description": "Entity represents host in the system." - }, - { - "value": "File", - "description": "Entity represents file in the system." - } - ] - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "AccountEntity": { - "x-ms-discriminator-value": "Account", - "type": "object", - "description": "Represents an account entity.", - "allOf": [ - { - "$ref": "#/definitions/Entity" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Account entity properties", - "$ref": "#/definitions/AccountEntityProperties" - } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/officeConsents": { + "get": { + "x-ms-examples": { + "Get all office consents.": { + "$ref": "./examples/officeConsents/GetOfficeConsents.json" + } + }, + "tags": [ + "Office Consents" + ], + "description": "Gets all office365 consents.", + "operationId": "OfficeConsents_List", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/OfficeConsentList" } - }, - "AccountEntityProperties": { - "type": "object", - "description": "Account entity property bag.", - "properties": { - "accountName": { - "type": "string", - "readOnly": true, - "description": "The name of the account. This field should hold only the name without any domain added to it, i.e. administrator." - }, - "ntDomain": { - "type": "string", - "readOnly": true, - "description": "The NetBIOS domain name as it appears in the alert format – domain\\username. Examples: NT AUTHORITY." - }, - "upnSuffix": { - "type": "string", - "readOnly": true, - "description": "The user principal name suffix for the account, in some cases it is also the domain name. Examples: contoso.com." - }, - "sid": { - "type": "string", - "readOnly": true, - "description": "The account security identifier, e.g. S-1-5-18." - }, - "aadTenantId": { - "type": "string", - "readOnly": true, - "description": "The Azure Active Directory tenant id." - }, - "aadUserId": { - "type": "string", - "readOnly": true, - "description": "The Azure Active Directory user id." - }, - "puid": { - "type": "string", - "readOnly": true, - "description": "The Azure Active Directory Passport User ID." - }, - "isDomainJoined": { - "type": "boolean", - "readOnly": true, - "description": "Determines whether this is a domain account." - }, - "objectGuid": { - "type": "string", - "readOnly": true, - "format": "uuid", - "description": "The objectGUID attribute is a single-value attribute that is the unique identifier for the object, assigned by active directory." - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } + } }, - "HostEntity": { - "x-ms-discriminator-value": "Host", - "type": "object", - "description": "Represents a host entity.", - "allOf": [ - { - "$ref": "#/definitions/Entity" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Host entity properties", - "$ref": "#/definitions/HostEntityProperties" - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/officeConsents/{consentId}": { + "get": { + "x-ms-examples": { + "Get an office consent.": { + "$ref": "./examples/officeConsents/GetOfficeConsentsById.json" + } + }, + "tags": [ + "Office Consents" + ], + "description": "Gets an office365 consent.", + "operationId": "OfficeConsents_Get", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/ConsentId" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/OfficeConsent" } - }, - "HostEntityProperties": { - "type": "object", - "description": "Host entity property bag.", - "properties": { - "dnsDomain": { - "type": "string", - "readOnly": true, - "description": "The DNS domain that this host belongs to. Should contain the compete DNS suffix for the domain" - }, - "ntDomain": { - "type": "string", - "readOnly": true, - "description": "The NT domain that this host belongs to." - }, - "hostName": { - "type": "string", - "readOnly": true, - "description": "The hostname without the domain suffix." - }, - "netBiosName": { - "type": "string", - "readOnly": true, - "description": "The host name (pre-windows2000)." - }, - "azureID": { - "type": "string", - "readOnly": true, - "description": "The azure resource id of the VM." - }, - "omsAgentID": { - "type": "string", - "readOnly": true, - "description": "The OMS agent id, if the host has OMS agent installed." - }, - "osFamily": { - "type": "string", - "enum": [ - "Linux", - "Windows", - "Android", - "IOS" - ], - "x-ms-enum": { - "name": "OSFamily", - "modelAsString": false, - "values": [ - { - "value": "Linux", - "description": "Host with Linux operating system." - }, - { - "value": "Windows", - "description": "Host with Windows operating system." - }, - { - "value": "Android", - "description": "Host with Android operating system." - }, - { - "value": "IOS", - "description": "Host with IOS operating system." - } - ] - }, - "description": "The operating system type." - }, - "osVersion": { - "type": "string", - "readOnly": true, - "description": "A free text representation of the operating system. This field is meant to hold specific versions the are more fine grained than OSFamily or future values not supported by OSFamily enumeration" - }, - "isDomainJoined": { - "type": "boolean", - "readOnly": true, - "description": "Determines whether this host belongs to a domain." - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "FileEntity": { - "x-ms-discriminator-value": "File", - "type": "object", - "description": "Represents a file entity.", - "allOf": [ - { - "$ref": "#/definitions/Entity" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "File entity properties", - "$ref": "#/definitions/FileEntityProperties" - } + } + } + }, + "delete": { + "x-ms-examples": { + "Delete an office consent.": { + "$ref": "./examples/officeConsents/DeleteOfficeConsents.json" + } + }, + "tags": [ + "Office Consents" + ], + "description": "Delete the office365 consent.", + "operationId": "OfficeConsents_Delete", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/ConsentId" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "FileEntityProperties": { - "type": "object", - "description": "File entity property bag.", - "properties": { - "directory": { - "type": "string", - "readOnly": true, - "description": "The full path to the file." - }, - "fileName": { - "type": "string", - "readOnly": true, - "description": "The file name without path (some alerts might not include path)." - } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/settings/{settingsName}": { + "get": { + "x-ms-examples": { + "Get UEBA settings.": { + "$ref": "./examples/settings/GetUebaSettings.json" + }, + "Get Fusion settings.": { + "$ref": "./examples/settings/GetFusionSettings.json" + } + }, + "tags": [ + "Settings" + ], + "description": "Gets a setting.", + "operationId": "ProductSettings_Get", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/SettingsName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Settings" } - }, - "OfficeConsentList": { - "description": "List of all the office365 consents.", - "properties": { - "nextLink": { - "readOnly": true, - "description": "URL to fetch the next set of office consents.", - "type": "string" - }, - "value": { - "description": "Array of the consents.", - "type": "array", - "items": { - "$ref": "#/definitions/OfficeConsent" - } - } - }, - "required": [ - "value" - ] - }, - "OfficeConsent": { - "type": "object", - "description": "Consent for Office365 tenant that already made.", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "Office consent properties", - "$ref": "#/definitions/OfficeConsentProperties" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } - }, - "OfficeConsentProperties": { - "type": "object", - "description": "Consent property bag.", - "properties": { - "tenantId": { - "type": "string", - "description": "The tenantId of the Office365 with the consent." - }, - "tenantName": { - "type": "string", - "readOnly": true, - "description": "The tenant name of the Office365 with the consent." - } + } + } + }, + "put": { + "x-ms-examples": { + "Update UEBA settings.": { + "$ref": "./examples/settings/UpdateUebaSettings.json" + } + }, + "tags": [ + "Settings" + ], + "description": "Updates the setting.", + "operationId": "ProductSettings_Update", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/SettingsName" + }, + { + "$ref": "#/parameters/Settings" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Settings" } - }, - "Resource": { - "x-ms-azure-resource": true, - "description": "An azure resource object", - "properties": { - "id": { - "type": "string", - "readOnly": true, - "description": "Azure resource Id" - }, - "type": { - "type": "string", - "readOnly": true, - "description": "Azure resource type" - }, - "name": { - "type": "string", - "readOnly": true, - "description": "Azure resource name" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{operationalInsightsResourceProvider}/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/aggregations/{aggregationsName}": { + "get": { + "x-ms-examples": { + "Get aggregative data for all cases under the defined workspace, between the time range if specified.": { + "$ref": "./examples/aggregations/GetCasesAggregations.json" + } + }, + "tags": [ + "Aggregations" + ], + "description": "Get aggregative result for the given resources under the defined workspace", + "operationId": "CasesAggregations_Get", + "parameters": [ + { + "$ref": "#/parameters/ApiVersion" + }, + { + "$ref": "#/parameters/SubscriptionId" + }, + { + "$ref": "#/parameters/ResourceGroupName" + }, + { + "$ref": "#/parameters/OperationalInsightsResourceProvider" + }, + { + "$ref": "#/parameters/WorkspaceName" + }, + { + "$ref": "#/parameters/AggregationsName" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Aggregations" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/CloudError" + } + } + } + } + } + }, + "definitions": { + "operation": { + "description": "Operation provided by provider", + "properties": { + "name": { + "type": "string", + "description": "Name of the operation" + }, + "display": { + "type": "object", + "description": "Properties of the operation", + "properties": { + "provider": { + "type": "string", + "description": "Provider name" + }, + "resource": { + "type": "string", + "description": "Resource name" + }, + "operation": { + "type": "string", + "description": "Operation name" + }, + "description": { + "type": "string", + "description": "Description of the operation" + } + } + } + } + }, + "operationsList": { + "description": "Lists the operations available in the SecurityInsights RP.", + "properties": { + "nextLink": { + "description": "URL to fetch the next set of operations.", + "type": "string" + }, + "value": { + "description": "Array of operations", + "type": "array", + "items": { + "$ref": "#/definitions/operation" + } + } + }, + "required": [ + "value" + ] + }, + "CloudError": { + "x-ms-external": true, + "type": "object", + "description": "Error response structure.", + "properties": { + "error": { + "x-ms-client-flatten": true, + "description": "Error data", + "$ref": "#/definitions/CloudErrorBody" + } + } + }, + "CloudErrorBody": { + "x-ms-external": true, + "type": "object", + "description": "Error details.", + "properties": { + "code": { + "readOnly": true, + "type": "string", + "description": "An identifier for the error. Codes are invariant and are intended to be consumed programmatically." + }, + "message": { + "readOnly": true, + "type": "string", + "description": "A message describing the error, intended to be suitable for display in a user interface." + } + } + }, + "AlertRulesList": { + "description": "List all the alert rules.", + "properties": { + "nextLink": { + "readOnly": true, + "description": "URL to fetch the next set of alert rules.", + "type": "string" + }, + "value": { + "description": "Array of alert rules.", + "type": "array", + "items": { + "$ref": "#/definitions/AlertRule" + } + } + }, + "required": [ + "value" + ] + }, + "AlertRule": { + "type": "object", + "description": "Alert rule.", + "discriminator": "kind", + "allOf": [ + { + "$ref": "#/definitions/Resource" }, - "Settings": { - "type": "object", - "description": "The Setting.", - "discriminator": "kind", - "allOf": [ - { - "$ref": "#/definitions/Resource" - }, - { - "$ref": "#/definitions/SettingsKind" - } + { + "$ref": "#/definitions/AlertRuleKind" + } + ], + "properties": { + "etag": { + "type": "string", + "description": "Etag of the alert rule." + } + } + }, + "AlertRuleKind": { + "type": "object", + "description": "Describes an Azure resource with kind.", + "properties": { + "kind": { + "type": "string", + "description": "The kind of the alert rule", + "enum": [ + "Scheduled" + ], + "x-ms-enum": { + "name": "AlertRuleKind", + "modelAsString": true, + "values": [ + { + "value": "Scheduled" + } + ] + } + } + } + }, + "ScheduledAlertRule": { + "x-ms-discriminator-value": "Scheduled", + "type": "object", + "description": "Represents scheduled alert rule.", + "allOf": [ + { + "$ref": "#/definitions/AlertRule" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Scheduled alert rule properties", + "$ref": "#/definitions/ScheduledAlertRuleProperties" + } + } + }, + "ScheduledAlertRuleProperties": { + "type": "object", + "description": "Alert rule property bag.", + "properties": { + "displayName": { + "type": "string", + "description": "The display name for alerts created by this alert rule." + }, + "description": { + "type": "string", + "description": "The description of the alert rule." + }, + "severity": { + "type": "string", + "enum": [ + "High", + "Medium", + "Low", + "Informational" + ], + "x-ms-enum": { + "name": "AlertSeverity", + "modelAsString": false, + "values": [ + { + "value": "High", + "description": "High severity" + }, + { + "value": "Medium", + "description": "Medium severity" + }, + { + "value": "Low", + "description": "Low severity" + }, + { + "value": "Informational", + "description": "Informational severity" + } + ] + }, + "description": "The severity for alerts created by this alert rule." + }, + "enabled": { + "type": "boolean", + "description": "Determines whether this alert rule is enabled or disabled." + }, + "query": { + "type": "string", + "description": "The query that creates alerts for this rule." + }, + "queryFrequency": { + "type": "string", + "format": "duration", + "description": "The frequency (in ISO 8601 duration format) for this alert rule to run." + }, + "queryPeriod": { + "type": "string", + "format": "duration", + "description": "The period (in ISO 8601 duration format) that this alert rule looks at." + }, + "triggerOperator": { + "type": "string", + "enum": [ + "GreaterThan", + "LessThan", + "Equal", + "NotEqual" + ], + "x-ms-enum": { + "name": "TriggerOperator", + "modelAsString": false + }, + "description": "The operation against the threshold that triggers alert rule." + }, + "triggerThreshold": { + "type": "integer", + "description": "The threshold triggers this alert rule." + }, + "suppressionEnabled": { + "type": "boolean", + "description": "Determines whether the suppression for this alert rule is enabled or disabled." + }, + "suppressionDuration": { + "type": "string", + "format": "duration", + "description": "The suppression (in ISO 8601 duration format) to wait since last time this alert rule been triggered." + }, + "lastModifiedUtc": { + "type": "string", + "readOnly": true, + "description": "The last time that this alert has been modified." + } + }, + "required": [ + "displayName", + "description", + "severity", + "enabled", + "query", + "queryFrequency", + "queryPeriod", + "triggerOperator", + "triggerThreshold", + "suppressionEnabled", + "suppressionDuration" + ] + }, + "ActionsList": { + "description": "List all the actions.", + "properties": { + "nextLink": { + "readOnly": true, + "description": "URL to fetch the next set of actions.", + "type": "string" + }, + "value": { + "description": "Array of actions.", + "type": "array", + "items": { + "$ref": "#/definitions/Action" + } + } + }, + "required": [ + "value" + ] + }, + "Action": { + "type": "object", + "description": "Action for alert rule.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "etag": { + "type": "string", + "description": "Etag of the action." + }, + "properties": { + "x-ms-client-flatten": true, + "description": "Action properties", + "$ref": "#/definitions/ActionProperties" + } + } + }, + "ActionProperties": { + "type": "object", + "description": "Action property bag.", + "properties": { + "triggerUri": { + "type": "string", + "description": "The uri for the action to trigger." + } + } + }, + "CaseList": { + "description": "List all the cases.", + "properties": { + "nextLink": { + "readOnly": true, + "description": "URL to fetch the next set of cases.", + "type": "string" + }, + "value": { + "description": "Array of cases.", + "type": "array", + "items": { + "$ref": "#/definitions/Case" + } + } + }, + "required": [ + "value" + ] + }, + "Case": { + "type": "object", + "description": "Represents a case in Azure Security Insights.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "etag": { + "type": "string", + "description": "Etag of the alert rule." + }, + "properties": { + "x-ms-client-flatten": true, + "description": "Case properties", + "$ref": "#/definitions/CaseProperties" + } + } + }, + "CaseProperties": { + "type": "object", + "description": "Describes case properties", + "properties": { + "lastUpdatedTimeUtc": { + "type": "string", + "format": "date-time", + "description": "The last time the case was updated" + }, + "createdTimeUtc": { + "type": "string", + "format": "date-time", + "description": "The time the case was created" + }, + "endTimeUtc": { + "type": "string", + "format": "date-time", + "description": "The end time of the case" + }, + "startTimeUtc": { + "type": "string", + "format": "date-time", + "description": "The start time of the case" + }, + "labels": { + "type": "array", + "items": { + "$ref": "#/definitions/Label" + }, + "description": "List of labels relevant to this case" + }, + "description": { + "type": "string", + "description": "The description of the case" + }, + "title": { + "type": "string", + "description": "The title of the case" + }, + "assignedTo": { + "type": "object", + "description": "Describes a user that the case is assigned to", + "$ref": "#/definitions/UserInfo" + }, + "severity": { + "type": "string", + "description": "The severity of the case", + "enum": [ + "Critical", + "High", + "Medium", + "Low", + "Informational" + ], + "x-ms-enum": { + "name": "CaseSeverity", + "modelAsString": true, + "values": [ + { + "value": "Critical", + "description": "Critical severity" + }, + { + "value": "High", + "description": "High severity" + }, + { + "value": "Medium", + "description": "Medium severity" + }, + { + "value": "Low", + "description": "Low severity" + }, + { + "value": "Informational", + "description": "Informational severity" + } + ] + } + }, + "status": { + "type": "string", + "description": "The status of the case", + "enum": [ + "Draft", + "Open", + "InProgress", + "Closed" + ], + "x-ms-enum": { + "name": "CaseStatus", + "modelAsString": true, + "values": [ + { + "value": "Draft", + "description": "Case that wasn't promoted yet to active" + }, + { + "value": "Open", + "description": "An active case which isn't handled currently" + }, + { + "value": "InProgress", + "description": "An active case which is handled" + }, + { + "value": "Closed", + "description": "A non active case" + } ] + } + }, + "closeReason": { + "type": "string", + "description": "The reason the case was closed", + "enum": [ + "Resolved", + "Dismissed", + "Other" + ], + "x-ms-enum": { + "name": "CloseReason", + "modelAsString": true, + "values": [ + { + "value": "Resolved", + "description": "Case was resolved" + }, + { + "value": "Dismissed", + "description": "Case was dismissed" + }, + { + "value": "Other", + "description": "Case was closed for another reason" + } + ] + } + } + }, + "required": [ + "title", + "severity", + "status" + ] + }, + "BookmarkList": { + "description": "List all the bookmarks.", + "properties": { + "nextLink": { + "readOnly": true, + "description": "URL to fetch the next set of cases.", + "type": "string" + }, + "value": { + "description": "Array of bookmarks.", + "type": "array", + "items": { + "$ref": "#/definitions/Bookmark" + } + } + }, + "required": [ + "value" + ] + }, + "Bookmark": { + "type": "object", + "description": "Represents a bookmark in Azure Security Insights.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "etag": { + "type": "string", + "description": "Etag of the bookmark." + }, + "properties": { + "x-ms-client-flatten": true, + "description": "Bookmark properties", + "$ref": "#/definitions/BookmarkProperties" + } + } + }, + "BookmarkProperties": { + "type": "object", + "description": "Describes bookmark properties", + "properties": { + "displayName": { + "type": "string", + "description": "The display name of the bookmark" + }, + "lastUpdatedTimeUtc": { + "type": "string", + "format": "date-time", + "description": "The last time the bookmark was updated" + }, + "createdTimeUtc": { + "type": "string", + "format": "date-time", + "description": "The time the bookmark was created" + }, + "createdBy": { + "type": "object", + "description": "Describes a user that created the bookmark", + "$ref": "#/definitions/UserInfo" + }, + "updatedBy": { + "type": "object", + "description": "Describes a user that updated the bookmark", + "$ref": "#/definitions/UserInfo" + }, + "notes": { + "type": "string", + "description": "The notes of the bookmark" + }, + "labels": { + "type": "array", + "items": { + "$ref": "#/definitions/Label" + }, + "description": "List of labels relevant to this bookmark" + }, + "query": { + "type": "string", + "description": "The query of the bookmark." + } + }, + "required": [ + "displayName", + "query" + ] + }, + "UserInfo": { + "type": "object", + "description": "User information that made some action", + "properties": { + "objectId": { + "type": "string", + "format": "uuid", + "description": "The object id of the user." + }, + "email": { + "type": "string", + "description": "The email of the user." + }, + "name": { + "type": "string", + "description": "The name of the user." + } + } + }, + "Label": { + "description": "Label that will be used to tag and filter on.", + "type": "string" + }, + "DataConnectorList": { + "description": "List all the data connectors.", + "properties": { + "nextLink": { + "readOnly": true, + "description": "URL to fetch the next set of data connectors.", + "type": "string" + }, + "value": { + "description": "Array of data connectors.", + "type": "array", + "items": { + "$ref": "#/definitions/DataConnector" + } + } + }, + "required": [ + "value" + ] + }, + "DataConnector": { + "type": "object", + "description": "Data connector.", + "discriminator": "kind", + "allOf": [ + { + "$ref": "#/definitions/Resource" }, - "SettingsKind": { - "type": "object", - "description": "Describes an Azure resource with kind.", - "properties": { - "kind": { - "type": "string", - "description": "The kind of the setting", - "enum": [ - "UebaSettings", - "ToggleSettings" - ], - "x-ms-enum": { - "name": "SettingKind", - "modelAsString": true - } - } + { + "$ref": "#/definitions/DataConnectorKind" + } + ], + "properties": { + "etag": { + "type": "string", + "description": "Etag of the data connector." + } + } + }, + "DataConnectorKind": { + "type": "object", + "description": "Describes an Azure resource with kind.", + "properties": { + "kind": { + "type": "string", + "description": "The kind of the data connector", + "enum": [ + "AzureActiveDirectory", + "AzureSecurityCenter", + "MicrosoftCloudAppSecurity", + "ThreatIntelligence", + "Office365" + ], + "x-ms-enum": { + "name": "DataConnectorKind", + "modelAsString": true, + "values": [ + { + "value": "AzureActiveDirectory" + }, + { + "value": "AzureSecurityCenter" + }, + { + "value": "MicrosoftCloudAppSecurity" + }, + { + "value": "ThreatIntelligence" + }, + { + "value": "Office365" + } + ] + } + } + } + }, + "DataConnectorTenantId": { + "type": "object", + "description": "Properties data connector on tenant level.", + "properties": { + "tenantId": { + "type": "string", + "description": "The tenant id to connect to, and get the data from." + } + } + }, + "OfficeDataConnector": { + "x-ms-discriminator-value": "Office365", + "type": "object", + "description": "Represents office data connector.", + "allOf": [ + { + "$ref": "#/definitions/DataConnector" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Office data connector properties.", + "$ref": "#/definitions/OfficeDataConnectorProperties" + } + } + }, + "OfficeDataConnectorProperties": { + "type": "object", + "description": "Office data connector properties.", + "allOf": [ + { + "$ref": "#/definitions/DataConnectorTenantId" + } + ], + "properties": { + "dataTypes": { + "description": "The available data types for the connector.", + "$ref": "#/definitions/OfficeDataConnectorDataTypes" + } + } + }, + "OfficeDataConnectorDataTypes": { + "type": "object", + "description": "The available data types for office data connector.", + "properties": { + "sharePoint": { + "type": "object", + "description": "SharePoint data type connection.", + "allOf": [ + { + "$ref": "#/definitions/DataConnectorDataTypeCommon" } - }, - "UebaSettings": { - "x-ms-discriminator-value": "UebaSettings", - "type": "object", - "description": "Represents settings for User and Entity Behavior Analytics enablement.", - "allOf": [ - { - "$ref": "#/definitions/Settings" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "User and Entity Behavior Analytics settings properties", - "$ref": "#/definitions/UebaSettingsProperties" - } + ] + }, + "exchange": { + "type": "object", + "description": "Exchange data type connection.", + "allOf": [ + { + "$ref": "#/definitions/DataConnectorDataTypeCommon" } - }, - "UebaSettingsProperties": { - "type": "object", - "description": "User and Entity Behavior Analytics settings property bag.", - "properties": { - "isEnabled": { - "type": "boolean", - "description": "Determines whether User and Entity Behavior Analytics is enabled for this workspace." - }, - "statusInMcas": { - "type": "string", - "readOnly": true, - "description": "Determines whether User and Entity Behavior Analytics is enabled from MCAS (Microsoft Cloud App Security).", - "enum": [ - "Enabled", - "Disabled" - ], - "x-ms-enum": { - "name": "StatusInMcas", - "modelAsString": true - } - }, - "atpLicenseStatus": { - "type": "boolean", - "readOnly": true, - "description": "Determines whether the tenant has ATP (Advanced Threat Protection) license.", - "enum": [ - "Enabled", - "Disabled" - ], - "x-ms-enum": { - "name": "LicenseStatus", - "modelAsString": true - } - } + ] + } + } + }, + "TIDataConnector": { + "x-ms-discriminator-value": "ThreatIntelligence", + "type": "object", + "description": "Represents threat intelligence data connector.", + "allOf": [ + { + "$ref": "#/definitions/DataConnector" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "TI (Threat Intelligence) data connector properties.", + "$ref": "#/definitions/TIDataConnectorProperties" + } + } + }, + "TIDataConnectorProperties": { + "type": "object", + "description": "TI (Threat Intelligence) data connector properties.", + "allOf": [ + { + "$ref": "#/definitions/DataConnectorTenantId" + } + ], + "properties": { + "dataTypes": { + "description": "The available data types for the connector.", + "$ref": "#/definitions/TIDataConnectorDataTypes" + } + } + }, + "TIDataConnectorDataTypes": { + "type": "object", + "description": "The available data types for TI (Threat Intelligence) data connector.", + "properties": { + "indicators": { + "type": "object", + "description": "Data type for indicators connection.", + "allOf": [ + { + "$ref": "#/definitions/DataConnectorDataTypeCommon" } + ] + } + } + }, + "AADDataConnector": { + "x-ms-discriminator-value": "AzureActiveDirectory", + "type": "object", + "description": "Represents AAD (Azure Active Directory) data connector.", + "allOf": [ + { + "$ref": "#/definitions/DataConnector" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "AAD (Azure Active Directory) data connector properties.", + "$ref": "#/definitions/AADDataConnectorProperties" + } + } + }, + "AADDataConnectorProperties": { + "type": "object", + "description": "AAD (Azure Active Directory) data connector properties.", + "allOf": [ + { + "$ref": "#/definitions/DataConnectorTenantId" }, - "ToggleSettings": { - "x-ms-discriminator-value": "ToggleSettings", - "type": "object", - "description": "Settings with single toggle.", - "allOf": [ - { - "$ref": "#/definitions/Settings" - } - ], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "description": "toggle properties", - "$ref": "#/definitions/ToggleSettingsProperties" - } - } + { + "$ref": "#/definitions/DataConnectorWithAlertsProperties" + } + ] + }, + "ASCDataConnector": { + "x-ms-discriminator-value": "AzureSecurityCenter", + "type": "object", + "description": "Represents ASC (Azure Security Center) data connector.", + "allOf": [ + { + "$ref": "#/definitions/DataConnector" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "ASC (Azure Security Center) data connector properties.", + "$ref": "#/definitions/ASCDataConnectorProperties" + } + } + }, + "ASCDataConnectorProperties": { + "type": "object", + "description": "MCAS (Microsoft Cloud App Security) data connector properties.", + "allOf": [ + { + "$ref": "#/definitions/DataConnectorWithAlertsProperties" + } + ], + "properties": { + "subscriptionId": { + "type": "string", + "description": "The subscription id to connect to, and get the data from." + } + } + }, + "MCASDataConnector": { + "x-ms-discriminator-value": "MicrosoftCloudAppSecurity", + "type": "object", + "description": "Represents MCAS (Microsoft Cloud App Security) data connector.", + "allOf": [ + { + "$ref": "#/definitions/DataConnector" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "MCAS (Microsoft Cloud App Security) data connector properties.", + "$ref": "#/definitions/MCASDataConnectorProperties" + } + } + }, + "MCASDataConnectorProperties": { + "type": "object", + "description": "MCAS (Microsoft Cloud App Security) data connector properties.", + "allOf": [ + { + "$ref": "#/definitions/DataConnectorTenantId" }, - "ToggleSettingsProperties": { - "type": "object", - "description": "toggle property bag.", - "properties": { - "isEnabled": { - "type": "boolean", - "description": "Determines whether the setting is enable or disabled." - } + { + "$ref": "#/definitions/DataConnectorWithAlertsProperties" + } + ] + }, + "DataConnectorWithAlertsProperties": { + "type": "object", + "description": "Data connector properties.", + "properties": { + "dataTypes": { + "description": "The available data types for the connector.", + "$ref": "#/definitions/AlertsDataTypeOfDataConnector" + } + } + }, + "AlertsDataTypeOfDataConnector": { + "type": "object", + "description": "Alerts data type for data connectors.", + "properties": { + "alerts": { + "type": "object", + "description": "Alerts data type connection.", + "allOf": [ + { + "$ref": "#/definitions/DataConnectorDataTypeCommon" } + ] + } + } + }, + "DataConnectorDataTypeCommon": { + "type": "object", + "description": "Common field for data type in data connectors.", + "properties": { + "state": { + "type": "string", + "description": "Describe whether this data type connection is enabled or not.", + "enum": [ + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "DataTypeState", + "modelAsString": true + } + } + } + }, + "EntityList": { + "description": "List of all the entities.", + "properties": { + "nextLink": { + "readOnly": true, + "description": "URL to fetch the next set of entities.", + "type": "string" + }, + "value": { + "description": "Array of entities.", + "type": "array", + "items": { + "$ref": "#/definitions/Entity" + } + } + }, + "required": [ + "value" + ] + }, + "Entity": { + "type": "object", + "description": "Specific entity.", + "discriminator": "kind", + "allOf": [ + { + "$ref": "#/definitions/Resource" }, - "Aggregations": { - "type": "object", - "description": "The aggregation.", - "discriminator": "kind", - "allOf": [ - { - "$ref": "#/definitions/Resource" - }, - { - "$ref": "#/definitions/AggregationsKind" - } + { + "$ref": "#/definitions/EntityKind" + } + ] + }, + "EntityKind": { + "type": "object", + "description": "Describes an Azure resource with kind.", + "properties": { + "kind": { + "type": "string", + "description": "The kind of the entity", + "enum": [ + "Account", + "Host", + "File" + ], + "x-ms-enum": { + "name": "EntityKind", + "modelAsString": true, + "values": [ + { + "value": "Account", + "description": "Entity represents account in the system." + }, + { + "value": "Host", + "description": "Entity represents host in the system." + }, + { + "value": "File", + "description": "Entity represents file in the system." + } + ] + } + } + } + }, + "AccountEntity": { + "x-ms-discriminator-value": "Account", + "type": "object", + "description": "Represents an account entity.", + "allOf": [ + { + "$ref": "#/definitions/Entity" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Account entity properties", + "$ref": "#/definitions/AccountEntityProperties" + } + } + }, + "AccountEntityProperties": { + "type": "object", + "description": "Account entity property bag.", + "properties": { + "accountName": { + "type": "string", + "readOnly": true, + "description": "The name of the account. This field should hold only the name without any domain added to it, i.e. administrator." + }, + "ntDomain": { + "type": "string", + "readOnly": true, + "description": "The NetBIOS domain name as it appears in the alert format – domain\\username. Examples: NT AUTHORITY." + }, + "upnSuffix": { + "type": "string", + "readOnly": true, + "description": "The user principal name suffix for the account, in some cases it is also the domain name. Examples: contoso.com." + }, + "sid": { + "type": "string", + "readOnly": true, + "description": "The account security identifier, e.g. S-1-5-18." + }, + "aadTenantId": { + "type": "string", + "readOnly": true, + "description": "The Azure Active Directory tenant id." + }, + "aadUserId": { + "type": "string", + "readOnly": true, + "description": "The Azure Active Directory user id." + }, + "puid": { + "type": "string", + "readOnly": true, + "description": "The Azure Active Directory Passport User ID." + }, + "isDomainJoined": { + "type": "boolean", + "readOnly": true, + "description": "Determines whether this is a domain account." + }, + "objectGuid": { + "type": "string", + "readOnly": true, + "format": "uuid", + "description": "The objectGUID attribute is a single-value attribute that is the unique identifier for the object, assigned by active directory." + } + } + }, + "HostEntity": { + "x-ms-discriminator-value": "Host", + "type": "object", + "description": "Represents a host entity.", + "allOf": [ + { + "$ref": "#/definitions/Entity" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Host entity properties", + "$ref": "#/definitions/HostEntityProperties" + } + } + }, + "HostEntityProperties": { + "type": "object", + "description": "Host entity property bag.", + "properties": { + "dnsDomain": { + "type": "string", + "readOnly": true, + "description": "The DNS domain that this host belongs to. Should contain the compete DNS suffix for the domain" + }, + "ntDomain": { + "type": "string", + "readOnly": true, + "description": "The NT domain that this host belongs to." + }, + "hostName": { + "type": "string", + "readOnly": true, + "description": "The hostname without the domain suffix." + }, + "netBiosName": { + "type": "string", + "readOnly": true, + "description": "The host name (pre-windows2000)." + }, + "azureID": { + "type": "string", + "readOnly": true, + "description": "The azure resource id of the VM." + }, + "omsAgentID": { + "type": "string", + "readOnly": true, + "description": "The OMS agent id, if the host has OMS agent installed." + }, + "osFamily": { + "type": "string", + "enum": [ + "Linux", + "Windows", + "Android", + "IOS" + ], + "x-ms-enum": { + "name": "OSFamily", + "modelAsString": false, + "values": [ + { + "value": "Linux", + "description": "Host with Linux operating system." + }, + { + "value": "Windows", + "description": "Host with Windows operating system." + }, + { + "value": "Android", + "description": "Host with Android operating system." + }, + { + "value": "IOS", + "description": "Host with IOS operating system." + } ] + }, + "description": "The operating system type." + }, + "osVersion": { + "type": "string", + "readOnly": true, + "description": "A free text representation of the operating system. This field is meant to hold specific versions the are more fine grained than OSFamily or future values not supported by OSFamily enumeration" + }, + "isDomainJoined": { + "type": "boolean", + "readOnly": true, + "description": "Determines whether this host belongs to a domain." + } + } + }, + "FileEntity": { + "x-ms-discriminator-value": "File", + "type": "object", + "description": "Represents a file entity.", + "allOf": [ + { + "$ref": "#/definitions/Entity" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "File entity properties", + "$ref": "#/definitions/FileEntityProperties" + } + } + }, + "FileEntityProperties": { + "type": "object", + "description": "File entity property bag.", + "properties": { + "directory": { + "type": "string", + "readOnly": true, + "description": "The full path to the file." + }, + "fileName": { + "type": "string", + "readOnly": true, + "description": "The file name without path (some alerts might not include path)." + } + } + }, + "OfficeConsentList": { + "description": "List of all the office365 consents.", + "properties": { + "nextLink": { + "readOnly": true, + "description": "URL to fetch the next set of office consents.", + "type": "string" + }, + "value": { + "description": "Array of the consents.", + "type": "array", + "items": { + "$ref": "#/definitions/OfficeConsent" + } + } + }, + "required": [ + "value" + ] + }, + "OfficeConsent": { + "type": "object", + "description": "Consent for Office365 tenant that already made.", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Office consent properties", + "$ref": "#/definitions/OfficeConsentProperties" + } + } + }, + "OfficeConsentProperties": { + "type": "object", + "description": "Consent property bag.", + "properties": { + "tenantId": { + "type": "string", + "description": "The tenantId of the Office365 with the consent." + }, + "tenantName": { + "type": "string", + "readOnly": true, + "description": "The tenant name of the Office365 with the consent." + } + } + }, + "Resource": { + "x-ms-azure-resource": true, + "description": "An azure resource object", + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Azure resource Id" + }, + "type": { + "type": "string", + "readOnly": true, + "description": "Azure resource type" + }, + "name": { + "type": "string", + "readOnly": true, + "description": "Azure resource name" + } + } + }, + "Settings": { + "type": "object", + "description": "The Setting.", + "discriminator": "kind", + "allOf": [ + { + "$ref": "#/definitions/Resource" }, - "AggregationsKind": { - "type": "object", - "description": "Describes an Azure resource with kind.", - "properties": { - "kind": { - "type": "string", - "description": "The kind of the setting", - "enum": [ - "CasesAggregation" - ], - "x-ms-enum": { - "name": "AggregationsKind", - "modelAsString": true - } - } - } + { + "$ref": "#/definitions/SettingsKind" } + ] }, - "parameters": { - "SubscriptionId": { - "name": "subscriptionId", - "in": "path", - "required": true, - "pattern": "^[0-9A-Fa-f]{8}-([0-9A-Fa-f]{4}-){3}[0-9A-Fa-f]{12}$", - "type": "string", - "description": "Azure subscription ID" - }, - "ResourceGroupName": { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group within the user's subscription. The name is case insensitive.", - "pattern": "^[-\\w\\._\\(\\)]+$", - "minLength": 1, - "maxLength": 90, - "x-ms-parameter-location": "method" - }, - "ApiVersion": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "enum": [ - "2019-01-01-preview" - ], - "description": "API version for the operation" - }, - "OperationalInsightsResourceProvider": { - "name": "operationalInsightsResourceProvider", - "in": "path", - "required": true, - "type": "string", - "description": "The namespace of workspaces resource provider- Microsoft.OperationalInsights.", - "x-ms-parameter-location": "method" - }, - "WorkspaceName": { - "name": "workspaceName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the workspace.", - "minLength": 1, - "maxLength": 90, - "x-ms-parameter-location": "method" - }, - "RuleId": { - "name": "ruleId", - "in": "path", - "required": true, - "type": "string", - "description": "Alert rule ID", - "x-ms-parameter-location": "method" - }, - "AlertRule": { - "name": "alertRule", - "in": "body", - "description": "The alert rule", - "required": true, - "schema": { - "$ref": "#/definitions/AlertRule" - }, - "x-ms-parameter-location": "method" - }, - "ActionId": { - "name": "actionId", - "in": "path", - "required": true, - "type": "string", - "description": "Action ID", - "x-ms-parameter-location": "method" - }, - "Action": { - "name": "action", - "in": "body", - "description": "The action", - "required": true, - "schema": { - "$ref": "#/definitions/Action" - }, - "x-ms-parameter-location": "method" - }, - "CaseId": { - "name": "caseId", - "in": "path", - "required": true, - "type": "string", - "description": "Case ID", - "x-ms-parameter-location": "method" - }, - "Case": { - "name": "case", - "in": "body", - "description": "The case", - "required": true, - "schema": { - "$ref": "#/definitions/Case" - }, - "x-ms-parameter-location": "method" - }, - "BookmarkId": { - "name": "bookmarkId", - "in": "path", - "required": true, - "type": "string", - "description": "Bookmark ID", - "x-ms-parameter-location": "method" - }, - "Bookmark": { - "name": "bookmark", - "in": "body", - "description": "The bookmark", - "required": true, - "schema": { - "$ref": "#/definitions/Bookmark" - }, - "x-ms-parameter-location": "method" - }, - "DataConnectorId": { - "name": "dataConnectorId", - "in": "path", - "required": true, - "type": "string", - "description": "Connector ID", - "x-ms-parameter-location": "method" - }, - "DataConnector": { - "name": "dataConnector", - "in": "body", - "description": "The data connector", - "required": true, - "schema": { - "$ref": "#/definitions/DataConnector" - }, - "x-ms-parameter-location": "method" - }, - "EntityId": { - "name": "entityId", - "in": "path", - "required": true, - "type": "string", - "description": "entity ID", - "x-ms-parameter-location": "method" - }, - "ConsentId": { - "name": "consentId", - "in": "path", - "required": true, - "type": "string", - "description": "consent ID", - "x-ms-parameter-location": "method" - }, - "SettingsName": { - "name": "settingsName", - "in": "path", - "required": true, - "type": "string", - "description": "The setting name. Supports- Fusion, UEBA", - "x-ms-parameter-location": "method" - }, - "Settings": { - "name": "settings", - "in": "body", - "description": "The setting", - "required": true, - "schema": { - "$ref": "#/definitions/Settings" - }, - "x-ms-parameter-location": "method" + "SettingsKind": { + "type": "object", + "description": "Describes an Azure resource with kind.", + "properties": { + "kind": { + "type": "string", + "description": "The kind of the setting", + "enum": [ + "UebaSettings", + "ToggleSettings" + ], + "x-ms-enum": { + "name": "SettingKind", + "modelAsString": true + } + } + } + }, + "UebaSettings": { + "x-ms-discriminator-value": "UebaSettings", + "type": "object", + "description": "Represents settings for User and Entity Behavior Analytics enablement.", + "allOf": [ + { + "$ref": "#/definitions/Settings" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "User and Entity Behavior Analytics settings properties", + "$ref": "#/definitions/UebaSettingsProperties" + } + } + }, + "UebaSettingsProperties": { + "type": "object", + "description": "User and Entity Behavior Analytics settings property bag.", + "properties": { + "isEnabled": { + "type": "boolean", + "description": "Determines whether User and Entity Behavior Analytics is enabled for this workspace." + }, + "statusInMcas": { + "type": "string", + "readOnly": true, + "description": "Determines whether User and Entity Behavior Analytics is enabled from MCAS (Microsoft Cloud App Security).", + "enum": [ + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "StatusInMcas", + "modelAsString": true + } + }, + "atpLicenseStatus": { + "type": "boolean", + "readOnly": true, + "description": "Determines whether the tenant has ATP (Advanced Threat Protection) license.", + "enum": [ + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "LicenseStatus", + "modelAsString": true + } + } + } + }, + "ToggleSettings": { + "x-ms-discriminator-value": "ToggleSettings", + "type": "object", + "description": "Settings with single toggle.", + "allOf": [ + { + "$ref": "#/definitions/Settings" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "toggle properties", + "$ref": "#/definitions/ToggleSettingsProperties" + } + } + }, + "ToggleSettingsProperties": { + "type": "object", + "description": "toggle property bag.", + "properties": { + "isEnabled": { + "type": "boolean", + "description": "Determines whether the setting is enable or disabled." + } + } + }, + "Aggregations": { + "type": "object", + "description": "The aggregation.", + "discriminator": "kind", + "allOf": [ + { + "$ref": "#/definitions/Resource" }, - "AggregationsName": { - "name": "aggregationsName", - "in": "path", - "required": true, - "type": "string", - "description": "The aggregation name. Supports - Cases", - "x-ms-parameter-location": "method" + { + "$ref": "#/definitions/AggregationsKind" } + ] + }, + "AggregationsKind": { + "type": "object", + "description": "Describes an Azure resource with kind.", + "properties": { + "kind": { + "type": "string", + "description": "The kind of the setting", + "enum": [ + "CasesAggregation" + ], + "x-ms-enum": { + "name": "AggregationsKind", + "modelAsString": true + } + } + } + } + }, + "parameters": { + "SubscriptionId": { + "name": "subscriptionId", + "in": "path", + "required": true, + "pattern": "^[0-9A-Fa-f]{8}-([0-9A-Fa-f]{4}-){3}[0-9A-Fa-f]{12}$", + "type": "string", + "description": "Azure subscription ID" + }, + "ResourceGroupName": { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the resource group within the user's subscription. The name is case insensitive.", + "pattern": "^[-\\w\\._\\(\\)]+$", + "minLength": 1, + "maxLength": 90, + "x-ms-parameter-location": "method" + }, + "ApiVersion": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "enum": [ + "2019-01-01-preview" + ], + "description": "API version for the operation" + }, + "OperationalInsightsResourceProvider": { + "name": "operationalInsightsResourceProvider", + "in": "path", + "required": true, + "type": "string", + "description": "The namespace of workspaces resource provider- Microsoft.OperationalInsights.", + "x-ms-parameter-location": "method" + }, + "WorkspaceName": { + "name": "workspaceName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the workspace.", + "minLength": 1, + "maxLength": 90, + "x-ms-parameter-location": "method" + }, + "RuleId": { + "name": "ruleId", + "in": "path", + "required": true, + "type": "string", + "description": "Alert rule ID", + "x-ms-parameter-location": "method" + }, + "AlertRule": { + "name": "alertRule", + "in": "body", + "description": "The alert rule", + "required": true, + "schema": { + "$ref": "#/definitions/AlertRule" + }, + "x-ms-parameter-location": "method" + }, + "ActionId": { + "name": "actionId", + "in": "path", + "required": true, + "type": "string", + "description": "Action ID", + "x-ms-parameter-location": "method" + }, + "Action": { + "name": "action", + "in": "body", + "description": "The action", + "required": true, + "schema": { + "$ref": "#/definitions/Action" + }, + "x-ms-parameter-location": "method" + }, + "CaseId": { + "name": "caseId", + "in": "path", + "required": true, + "type": "string", + "description": "Case ID", + "x-ms-parameter-location": "method" + }, + "Case": { + "name": "case", + "in": "body", + "description": "The case", + "required": true, + "schema": { + "$ref": "#/definitions/Case" + }, + "x-ms-parameter-location": "method" + }, + "BookmarkId": { + "name": "bookmarkId", + "in": "path", + "required": true, + "type": "string", + "description": "Bookmark ID", + "x-ms-parameter-location": "method" + }, + "Bookmark": { + "name": "bookmark", + "in": "body", + "description": "The bookmark", + "required": true, + "schema": { + "$ref": "#/definitions/Bookmark" + }, + "x-ms-parameter-location": "method" + }, + "DataConnectorId": { + "name": "dataConnectorId", + "in": "path", + "required": true, + "type": "string", + "description": "Connector ID", + "x-ms-parameter-location": "method" + }, + "DataConnector": { + "name": "dataConnector", + "in": "body", + "description": "The data connector", + "required": true, + "schema": { + "$ref": "#/definitions/DataConnector" + }, + "x-ms-parameter-location": "method" + }, + "EntityId": { + "name": "entityId", + "in": "path", + "required": true, + "type": "string", + "description": "entity ID", + "x-ms-parameter-location": "method" + }, + "ConsentId": { + "name": "consentId", + "in": "path", + "required": true, + "type": "string", + "description": "consent ID", + "x-ms-parameter-location": "method" + }, + "SettingsName": { + "name": "settingsName", + "in": "path", + "required": true, + "type": "string", + "description": "The setting name. Supports- Fusion, UEBA", + "x-ms-parameter-location": "method" + }, + "Settings": { + "name": "settings", + "in": "body", + "description": "The setting", + "required": true, + "schema": { + "$ref": "#/definitions/Settings" + }, + "x-ms-parameter-location": "method" + }, + "AggregationsName": { + "name": "aggregationsName", + "in": "path", + "required": true, + "type": "string", + "description": "The aggregation name. Supports - Cases", + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/CreateActionOfAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/CreateActionOfAlertRule.json index 3fb06abf0d3b..4e5e473e7387 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/CreateActionOfAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/CreateActionOfAlertRule.json @@ -1,44 +1,44 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", - "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "actionId": "912bec42-cb66-4c03-ac63-1761b6898c3e", - "action": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", - "name": "912bec42-cb66-4c03-ac63-1761b6898c3e", - "type": "Microsoft.SecurityInsights/alertRules/actions", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "triggerUri": "https://prod-31.northcentralus.logic.azure.com:443/workflows/cd3765391efd48549fd7681ded1d48d7/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=signature" - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", + "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "actionId": "912bec42-cb66-4c03-ac63-1761b6898c3e", + "action": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", + "name": "912bec42-cb66-4c03-ac63-1761b6898c3e", + "type": "Microsoft.SecurityInsights/alertRules/actions", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "triggerUri": "https://prod-31.northcentralus.logic.azure.com:443/workflows/cd3765391efd48549fd7681ded1d48d7/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=signature" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", + "name": "912bec42-cb66-4c03-ac63-1761b6898c3e", + "type": "Microsoft.SecurityInsights/alertRules/actions", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "triggerUri": "https://prod-31.northcentralus.logic.azure.com:443/workflows/cd3765391efd48549fd7681ded1d48d7/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=signature" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", - "name": "912bec42-cb66-4c03-ac63-1761b6898c3e", - "type": "Microsoft.SecurityInsights/alertRules/actions", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "triggerUri": "https://prod-31.northcentralus.logic.azure.com:443/workflows/cd3765391efd48549fd7681ded1d48d7/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=signature" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", - "name": "912bec42-cb66-4c03-ac63-1761b6898c3e", - "type": "Microsoft.SecurityInsights/alertRules/actions", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "triggerUri": "https://prod-31.northcentralus.logic.azure.com:443/workflows/cd3765391efd48549fd7681ded1d48d7/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=signature" - } - } + "201": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", + "name": "912bec42-cb66-4c03-ac63-1761b6898c3e", + "type": "Microsoft.SecurityInsights/alertRules/actions", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "triggerUri": "https://prod-31.northcentralus.logic.azure.com:443/workflows/cd3765391efd48549fd7681ded1d48d7/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=signature" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/DeleteActionOfAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/DeleteActionOfAlertRule.json index 03ce53ac30cd..af1bd0d03727 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/DeleteActionOfAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/DeleteActionOfAlertRule.json @@ -1,17 +1,15 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "actionId": "912bec42-cb66-4c03-ac63-1761b6898c3e" - }, - "responses": { - "200": { - }, - "204":{ - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "actionId": "912bec42-cb66-4c03-ac63-1761b6898c3e" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/GetActionOfAlertRuleById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/GetActionOfAlertRuleById.json index 405fa8b9dc23..50b202a87f29 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/GetActionOfAlertRuleById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/GetActionOfAlertRuleById.json @@ -1,24 +1,24 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "actionId": "912bec42-cb66-4c03-ac63-1761b6898c3e" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", - "name": "912bec42-cb66-4c03-ac63-1761b6898c3e", - "type": "Microsoft.SecurityInsights/alertRules/actions", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "triggerUri": "https://prod-31.northcentralus.logic.azure.com:443/workflows/cd3765391efd48549fd7681ded1d48d7/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=signature" - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "actionId": "912bec42-cb66-4c03-ac63-1761b6898c3e" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", + "name": "912bec42-cb66-4c03-ac63-1761b6898c3e", + "type": "Microsoft.SecurityInsights/alertRules/actions", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "triggerUri": "https://prod-31.northcentralus.logic.azure.com:443/workflows/cd3765391efd48549fd7681ded1d48d7/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=signature" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/GetAllActionsByAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/GetAllActionsByAlertRule.json index 1361d5a2e873..78e8b603206d 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/GetAllActionsByAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/actions/GetAllActionsByAlertRule.json @@ -1,27 +1,27 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", - "name": "912bec42-cb66-4c03-ac63-1761b6898c3e", - "type": "Microsoft.SecurityInsights/alertRules/actions", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "triggerUri": "https://prod-31.northcentralus.logic.azure.com:443/workflows/cd3765391efd48549fd7681ded1d48d7/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=signature" - } - } - ] + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", + "name": "912bec42-cb66-4c03-ac63-1761b6898c3e", + "type": "Microsoft.SecurityInsights/alertRules/actions", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "triggerUri": "https://prod-31.northcentralus.logic.azure.com:443/workflows/cd3765391efd48549fd7681ded1d48d7/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=signature" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/aggregations/GetCasesAggregations.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/aggregations/GetCasesAggregations.json index f67eaa7781d2..9da6e3021080 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/aggregations/GetCasesAggregations.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/aggregations/GetCasesAggregations.json @@ -1,35 +1,35 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", - "aggregationsName": "cases" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/aggregations/Cases", - "name": "Cases", - "type": "Microsoft.SecurityInsights/aggregations", - "kind": "CasesAggregation", - "properties": { - "aggregationBySeverity": { - "totalCriticalSeverity": 13, - "totalHighSeverity": 14, - "totalMediumSeverity": 4, - "totalLowSeverity": 15, - "totalInformationalSeverity": 26 - }, - "aggregationByStatus": { - "totalNewStatus": 42, - "totalInProgressStatus": 30, - "totalResolvedStatus": 2, - "totalDismissedStatus": 1 - } - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", + "aggregationsName": "cases" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/aggregations/Cases", + "name": "Cases", + "type": "Microsoft.SecurityInsights/aggregations", + "kind": "CasesAggregation", + "properties": { + "aggregationBySeverity": { + "totalCriticalSeverity": 13, + "totalHighSeverity": 14, + "totalMediumSeverity": 4, + "totalLowSeverity": 15, + "totalInformationalSeverity": 26 + }, + "aggregationByStatus": { + "totalNewStatus": 42, + "totalInProgressStatus": 30, + "totalResolvedStatus": 2, + "totalDismissedStatus": 1 + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/CreateScheduledAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/CreateScheduledAlertRule.json index 1c2c5b57986a..ea715332f89b 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/CreateScheduledAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/CreateScheduledAlertRule.json @@ -1,77 +1,77 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", - "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "alertRule": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/alertRules", - "kind": "Scheduled", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "displayName": "Rule2", - "description": "", - "severity": "High", - "enabled": true, - "query": "ProtectionStatus | extend HostCustomEntity = Computer | extend IPCustomEntity = ComputerIP_Hidden", - "queryFrequency": "PT1H", - "queryPeriod": "P2DT1H30M", - "triggerOperator": "GreaterThan", - "triggerThreshold": 0, - "suppressionDuration": "PT1H", - "suppressionEnabled": false - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", + "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "alertRule": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/alertRules", + "kind": "Scheduled", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "displayName": "Rule2", + "description": "", + "severity": "High", + "enabled": true, + "query": "ProtectionStatus | extend HostCustomEntity = Computer | extend IPCustomEntity = ComputerIP_Hidden", + "queryFrequency": "PT1H", + "queryPeriod": "P2DT1H30M", + "triggerOperator": "GreaterThan", + "triggerThreshold": 0, + "suppressionDuration": "PT1H", + "suppressionEnabled": false + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/alertRules", + "kind": "Scheduled", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "displayName": "Rule2", + "description": "", + "severity": "High", + "enabled": true, + "query": "ProtectionStatus | extend HostCustomEntity = Computer | extend IPCustomEntity = ComputerIP_Hidden", + "queryFrequency": "PT1H", + "queryPeriod": "P2DT1H30M", + "triggerOperator": "GreaterThan", + "triggerThreshold": 0, + "suppressionDuration": "PT1H", + "suppressionEnabled": false, + "lastModifiedUtc": "2019-01-01T13:15:30Z" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/alertRules", - "kind": "Scheduled", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "displayName": "Rule2", - "description": "", - "severity": "High", - "enabled": true, - "query": "ProtectionStatus | extend HostCustomEntity = Computer | extend IPCustomEntity = ComputerIP_Hidden", - "queryFrequency": "PT1H", - "queryPeriod": "P2DT1H30M", - "triggerOperator": "GreaterThan", - "triggerThreshold": 0, - "suppressionDuration": "PT1H", - "suppressionEnabled": false, - "lastModifiedUtc": "2019-01-01T13:15:30Z" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/alertRules", - "kind": "Scheduled", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "displayName": "Rule2", - "description": "", - "severity": "High", - "enabled": true, - "query": "ProtectionStatus | extend HostCustomEntity = Computer | extend IPCustomEntity = ComputerIP_Hidden", - "queryFrequency": "PT1H", - "queryPeriod": "P2DT1H30M", - "triggerOperator": "GreaterThan", - "triggerThreshold": 0, - "suppressionDuration": "PT1H", - "suppressionEnabled": false - } - } + "201": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/alertRules", + "kind": "Scheduled", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "displayName": "Rule2", + "description": "", + "severity": "High", + "enabled": true, + "query": "ProtectionStatus | extend HostCustomEntity = Computer | extend IPCustomEntity = ComputerIP_Hidden", + "queryFrequency": "PT1H", + "queryPeriod": "P2DT1H30M", + "triggerOperator": "GreaterThan", + "triggerThreshold": 0, + "suppressionDuration": "PT1H", + "suppressionEnabled": false } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/DeleteScheduledAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/DeleteScheduledAlertRule.json index 17f6dfb42ea8..8483cfc354d6 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/DeleteScheduledAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/DeleteScheduledAlertRule.json @@ -1,16 +1,14 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" - }, - "responses": { - "200": { - }, - "204":{ - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/GetScheduledAlertRuleById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/GetScheduledAlertRuleById.json index 4b9b4c80d7b8..21dd07939632 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/GetScheduledAlertRuleById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/GetScheduledAlertRuleById.json @@ -1,35 +1,35 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/alertRules", - "kind": "Scheduled", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "displayName": "Rule2", - "description": "", - "severity": "High", - "enabled": true, - "query": "ProtectionStatus | extend HostCustomEntity = Computer | extend IPCustomEntity = ComputerIP_Hidden", - "queryFrequency": "PT1H", - "queryPeriod": "P2DT1H30M", - "triggerOperator": "GreaterThan", - "triggerThreshold": 0, - "suppressionDuration": "PT1H", - "suppressionEnabled": false, - "lastModifiedUtc": "2019-01-01T13:15:30Z" - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/alertRules", + "kind": "Scheduled", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "displayName": "Rule2", + "description": "", + "severity": "High", + "enabled": true, + "query": "ProtectionStatus | extend HostCustomEntity = Computer | extend IPCustomEntity = ComputerIP_Hidden", + "queryFrequency": "PT1H", + "queryPeriod": "P2DT1H30M", + "triggerOperator": "GreaterThan", + "triggerThreshold": 0, + "suppressionDuration": "PT1H", + "suppressionEnabled": false, + "lastModifiedUtc": "2019-01-01T13:15:30Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/GetScheduledAlertRules.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/GetScheduledAlertRules.json index d9faec208679..53be777607c7 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/GetScheduledAlertRules.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/alertRules/GetScheduledAlertRules.json @@ -1,38 +1,38 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/alertRules", - "kind": "Scheduled", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "displayName": "Rule2", - "description": "", - "severity": "High", - "enabled": true, - "query": "ProtectionStatus | extend HostCustomEntity = Computer | extend IPCustomEntity = ComputerIP_Hidden", - "queryFrequency": "PT1H", - "queryPeriod": "P2DT1H30M", - "triggerOperator": "GreaterThan", - "triggerThreshold": 0, - "suppressionDuration": "PT1H", - "suppressionEnabled": false, - "lastModifiedUtc": "2019-01-01T13:15:30Z" - } - } - ] + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/alertRules", + "kind": "Scheduled", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "displayName": "Rule2", + "description": "", + "severity": "High", + "enabled": true, + "query": "ProtectionStatus | extend HostCustomEntity = Computer | extend IPCustomEntity = ComputerIP_Hidden", + "queryFrequency": "PT1H", + "queryPeriod": "P2DT1H30M", + "triggerOperator": "GreaterThan", + "triggerThreshold": 0, + "suppressionDuration": "PT1H", + "suppressionEnabled": false, + "lastModifiedUtc": "2019-01-01T13:15:30Z" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/CreateBookmark.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/CreateBookmark.json index 54898bc3d2d3..704f093f3c88 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/CreateBookmark.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/CreateBookmark.json @@ -1,88 +1,88 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", - "bookmarkId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "bookmark": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/bookmarks", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "displayName": "My bookmark", - "createdBy": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "updatedBy": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", - "createdTimeUtc": "2019-01-01T13:15:30Z", - "notes": "Found a suspicious activity", - "labels": "['Tag1', 'Tag2']", - "query": "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)" - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", + "bookmarkId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "bookmark": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/bookmarks", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "displayName": "My bookmark", + "createdBy": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "updatedBy": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", + "createdTimeUtc": "2019-01-01T13:15:30Z", + "notes": "Found a suspicious activity", + "labels": "['Tag1', 'Tag2']", + "query": "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/bookmarks", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "displayName": "My bookmark", + "createdBy": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "updatedBy": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", + "createdTimeUtc": "2019-01-01T13:15:30Z", + "notes": "Found a suspicious activity", + "labels": "['Tag1', 'Tag2']", + "query": "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/bookmarks", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "displayName": "My bookmark", - "createdBy": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "updatedBy": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", - "createdTimeUtc": "2019-01-01T13:15:30Z", - "notes": "Found a suspicious activity", - "labels": "['Tag1', 'Tag2']", - "query": "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/bookmarks", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "displayName": "My bookmark", - "createdBy": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "updatedBy": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", - "createdTimeUtc": "2019-01-01T13:15:30Z", - "notes": "Found a suspicious activity", - "labels": "['Tag1', 'Tag2']", - "query": "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)" - } - } + "201": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/bookmarks", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "displayName": "My bookmark", + "createdBy": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "updatedBy": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", + "createdTimeUtc": "2019-01-01T13:15:30Z", + "notes": "Found a suspicious activity", + "labels": "['Tag1', 'Tag2']", + "query": "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/DeleteBookmark.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/DeleteBookmark.json index af8d075b88bb..a8caa7a62607 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/DeleteBookmark.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/DeleteBookmark.json @@ -1,16 +1,14 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "bookmarkId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" - }, - "responses": { - "200": { - }, - "204":{ - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "bookmarkId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/GetBookmarkById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/GetBookmarkById.json index 1bd67bda4afa..57cc71487394 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/GetBookmarkById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/GetBookmarkById.json @@ -1,39 +1,39 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "bookmarkId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/bookmarks", - "kind": "Scheduled", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "displayName": "My bookmark", - "createdBy": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "updatedBy": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", - "createdTimeUtc": "2019-01-01T13:15:30Z", - "notes": "Found a suspicious activity", - "labels": "['Tag1', 'Tag2']", - "query": "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)" - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "bookmarkId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/bookmarks", + "kind": "Scheduled", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "displayName": "My bookmark", + "createdBy": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "updatedBy": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", + "createdTimeUtc": "2019-01-01T13:15:30Z", + "notes": "Found a suspicious activity", + "labels": "['Tag1', 'Tag2']", + "query": "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/GetBookmarks.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/GetBookmarks.json index b416777ebef2..c54665a18a5e 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/GetBookmarks.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/GetBookmarks.json @@ -1,41 +1,41 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/cases", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "displayName": "My bookmark", - "createdBy": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "updatedBy": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", - "createdTimeUtc": "2019-01-01T13:15:30Z", - "notes": "Found a suspicious activity", - "labels": "['Tag1', 'Tag2']", - "query": "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)" - } - } - ] + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/cases", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "displayName": "My bookmark", + "createdBy": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "updatedBy": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", + "createdTimeUtc": "2019-01-01T13:15:30Z", + "notes": "Found a suspicious activity", + "labels": "['Tag1', 'Tag2']", + "query": "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/CreateCase.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/CreateCase.json index c955b0613c8e..523280bea512 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/CreateCase.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/CreateCase.json @@ -1,86 +1,86 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", - "caseId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "case": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/cases/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/cases", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", - "createdTimeUtc": "2019-01-01T13:15:30Z", - "endTimeUtc": "2019-01-01T13:05:30Z", - "startTimeUtc": "2019-01-01T13:00:30Z", - "labels": "['Tag1', 'Tag2']", - "description": "This is a demo case", - "title": "My case", - "assignedTo": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "severity": "High", - "closeReason": "Resolved", - "status": "Closed" - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", + "caseId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "case": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/cases/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/cases", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", + "createdTimeUtc": "2019-01-01T13:15:30Z", + "endTimeUtc": "2019-01-01T13:05:30Z", + "startTimeUtc": "2019-01-01T13:00:30Z", + "labels": "['Tag1', 'Tag2']", + "description": "This is a demo case", + "title": "My case", + "assignedTo": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "severity": "High", + "closeReason": "Resolved", + "status": "Closed" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/cases/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/cases", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", + "createdTimeUtc": "2019-01-01T13:15:30Z", + "endTimeUtc": "2019-01-01T13:05:30Z", + "startTimeUtc": "2019-01-01T13:00:30Z", + "labels": "['Tag1', 'Tag2']", + "description": "This is a demo case", + "title": "My case", + "assignedTo": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "severity": "High", + "closeReason": "Resolved", + "status": "Closed" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/cases/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/cases", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", - "createdTimeUtc": "2019-01-01T13:15:30Z", - "endTimeUtc": "2019-01-01T13:05:30Z", - "startTimeUtc": "2019-01-01T13:00:30Z", - "labels": "['Tag1', 'Tag2']", - "description": "This is a demo case", - "title": "My case", - "assignedTo": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "severity": "High", - "closeReason": "Resolved", - "status": "Closed" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/alertRules", - "kind": "Scheduled", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", - "createdTimeUtc": "2019-01-01T13:15:30Z", - "endTimeUtc": "2019-01-01T13:05:30Z", - "startTimeUtc": "2019-01-01T13:00:30Z", - "labels": "['Tag1', 'Tag2']", - "description": "This is a demo case", - "title": "My case", - "assignedTo": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "severity": "High", - "closeReason": "Resolved", - "status": "Closed" - } - } + "201": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/alertRules", + "kind": "Scheduled", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", + "createdTimeUtc": "2019-01-01T13:15:30Z", + "endTimeUtc": "2019-01-01T13:05:30Z", + "startTimeUtc": "2019-01-01T13:00:30Z", + "labels": "['Tag1', 'Tag2']", + "description": "This is a demo case", + "title": "My case", + "assignedTo": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "severity": "High", + "closeReason": "Resolved", + "status": "Closed" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/DeleteCase.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/DeleteCase.json index 29f2510dbd93..8724e8edc2a2 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/DeleteCase.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/DeleteCase.json @@ -1,16 +1,14 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "caseId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" - }, - "responses": { - "200": { - }, - "204":{ - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "caseId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/GetCaseById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/GetCaseById.json index c9d598b72963..b110b1ec8835 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/GetCaseById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/GetCaseById.json @@ -1,37 +1,37 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/cases/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/cases", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", - "createdTimeUtc": "2019-01-01T13:15:30Z", - "endTimeUtc": "2019-01-01T13:05:30Z", - "startTimeUtc": "2019-01-01T13:00:30Z", - "labels": "['Tag1', 'Tag2']", - "description": "This is a demo case", - "title": "My case", - "assignedTo": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "severity": "High", - "closeReason": "Resolved", - "status": "Closed" - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "ruleId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/cases/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/cases", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", + "createdTimeUtc": "2019-01-01T13:15:30Z", + "endTimeUtc": "2019-01-01T13:05:30Z", + "startTimeUtc": "2019-01-01T13:00:30Z", + "labels": "['Tag1', 'Tag2']", + "description": "This is a demo case", + "title": "My case", + "assignedTo": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "severity": "High", + "closeReason": "Resolved", + "status": "Closed" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/GetCases.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/GetCases.json index 5c4746f08b93..2cd4af7f80b3 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/GetCases.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/GetCases.json @@ -1,40 +1,40 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/cases/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/cases", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", - "createdTimeUtc": "2019-01-01T13:15:30Z", - "endTimeUtc": "2019-01-01T13:05:30Z", - "startTimeUtc": "2019-01-01T13:00:30Z", - "labels": "['Tag1', 'Tag2']", - "description": "This is a demo case", - "title": "My case", - "assignedTo": { - "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", - "email": "john@contoso.com", - "name": "john doe" - }, - "severity": "High", - "closeReason": "Resolved", - "status": "Closed" - } - } - ] + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/cases/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/cases", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "lastUpdatedTimeUtc": "2019-01-01T13:15:30Z", + "createdTimeUtc": "2019-01-01T13:15:30Z", + "endTimeUtc": "2019-01-01T13:05:30Z", + "startTimeUtc": "2019-01-01T13:00:30Z", + "labels": "['Tag1', 'Tag2']", + "description": "This is a demo case", + "title": "My case", + "assignedTo": { + "objectId": "2046feea-040d-4a46-9e2b-91c2941bfa70", + "email": "john@contoso.com", + "name": "john doe" + }, + "severity": "High", + "closeReason": "Resolved", + "status": "Closed" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/CreateOfficeDataConnetor.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/CreateOfficeDataConnetor.json index 0db2ed3d5ede..efa14f9e4652 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/CreateOfficeDataConnetor.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/CreateOfficeDataConnetor.json @@ -1,70 +1,70 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", - "dataConnectorId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "dataConnector": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "Office365", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "sharePoint": { - "state": "Enabled" - }, - "exchange": { - "state": "Enabled" - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", + "dataConnectorId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "dataConnector": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "Office365", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "sharePoint": { + "state": "Enabled" + }, + "exchange": { + "state": "Enabled" + } + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "Office365", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "sharePoint": { + "state": "Enabled" + }, + "exchange": { + "state": "Enabled" } + } } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "Office365", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "sharePoint": { - "state": "Enabled" - }, - "exchange": { - "state": "Enabled" - } - } - } - } - }, - "201": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "Office365", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "sharePoint": { - "state": "Enabled" - }, - "exchange": { - "state": "Enabled" - } - } - } + "201": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "Office365", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "sharePoint": { + "state": "Enabled" + }, + "exchange": { + "state": "Enabled" } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/DeleteOfficeDataConnetor.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/DeleteOfficeDataConnetor.json index 1035c3b37a63..bbf6a13976c5 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/DeleteOfficeDataConnetor.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/DeleteOfficeDataConnetor.json @@ -1,16 +1,14 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "dataConnectorId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" - }, - "responses": { - "200": { - }, - "204":{ - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "dataConnectorId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetAzureActiveDirectoryById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetAzureActiveDirectoryById.json index d31b992564cc..e4e4e794bd45 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetAzureActiveDirectoryById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetAzureActiveDirectoryById.json @@ -1,29 +1,29 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "dataConnectorId": "f0cd27d2-5f03-4c06-ba31-d2dc82dcb51d" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/f0cd27d2-5f03-4c06-ba31-d2dc82dcb51d", - "name": "f0cd27d2-5f03-4c06-ba31-d2dc82dcb51d", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "AzureActiveDirectory", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "alerts": { - "state": "Enabled" - } - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "dataConnectorId": "f0cd27d2-5f03-4c06-ba31-d2dc82dcb51d" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/f0cd27d2-5f03-4c06-ba31-d2dc82dcb51d", + "name": "f0cd27d2-5f03-4c06-ba31-d2dc82dcb51d", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "AzureActiveDirectory", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "alerts": { + "state": "Enabled" } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetAzureSecurityCenterById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetAzureSecurityCenterById.json index f652df402f76..480a760109b6 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetAzureSecurityCenterById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetAzureSecurityCenterById.json @@ -1,29 +1,29 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "dataConnectorId": "763f9fa1-c2d3-4fa2-93e9-bccd4899aa12" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/763f9fa1-c2d3-4fa2-93e9-bccd4899aa12", - "name": "763f9fa1-c2d3-4fa2-93e9-bccd4899aa12", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "AzureSecurityCenter", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "subscriptionId": "c0688291-89d7-4bed-87a2-a7b1bff43f4c", - "dataTypes": { - "alerts": { - "state": "Enabled" - } - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "dataConnectorId": "763f9fa1-c2d3-4fa2-93e9-bccd4899aa12" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/763f9fa1-c2d3-4fa2-93e9-bccd4899aa12", + "name": "763f9fa1-c2d3-4fa2-93e9-bccd4899aa12", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "AzureSecurityCenter", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "subscriptionId": "c0688291-89d7-4bed-87a2-a7b1bff43f4c", + "dataTypes": { + "alerts": { + "state": "Enabled" } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetDataConnectors.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetDataConnectors.json index 4804e17a8958..a60bbb7918a5 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetDataConnectors.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetDataConnectors.json @@ -1,95 +1,95 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/763f9fa1-c2d3-4fa2-93e9-bccd4899aa12", - "name": "763f9fa1-c2d3-4fa2-93e9-bccd4899aa12", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "AzureSecurityCenter", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "dataTypes": { - "alerts": { - "state": "Enabled" - } - } - } - }, - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/c345bf40-8509-4ed2-b947-50cb773aaf04", - "name": "c345bf40-8509-4ed2-b947-50cb773aaf04", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "ThreatIntelligence", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "indicators": { - "state": "Enabled" - } - } - } - }, - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/f0cd27d2-5f03-4c06-ba31-d2dc82dcb51d", - "name": "f0cd27d2-5f03-4c06-ba31-d2dc82dcb51d", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "AzureActiveDirectory", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "alerts": { - "state": "Enabled" - } - } - } - }, - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "Office365", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "sharePoint": { - "state": "Enabled" - }, - "exchange": { - "state": "Enabled" - } - } - } - }, - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/b96d014d-b5c2-4a01-9aba-a8058f629d42", - "name": "b96d014d-b5c2-4a01-9aba-a8058f629d42", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "MicrosoftCloudAppSecurity", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "alerts": { - "state": "Enabled" - } - } - } - } - ] + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/763f9fa1-c2d3-4fa2-93e9-bccd4899aa12", + "name": "763f9fa1-c2d3-4fa2-93e9-bccd4899aa12", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "AzureSecurityCenter", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "dataTypes": { + "alerts": { + "state": "Enabled" + } + } } - } + }, + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/c345bf40-8509-4ed2-b947-50cb773aaf04", + "name": "c345bf40-8509-4ed2-b947-50cb773aaf04", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "ThreatIntelligence", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "indicators": { + "state": "Enabled" + } + } + } + }, + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/f0cd27d2-5f03-4c06-ba31-d2dc82dcb51d", + "name": "f0cd27d2-5f03-4c06-ba31-d2dc82dcb51d", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "AzureActiveDirectory", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "alerts": { + "state": "Enabled" + } + } + } + }, + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "Office365", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "sharePoint": { + "state": "Enabled" + }, + "exchange": { + "state": "Enabled" + } + } + } + }, + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/b96d014d-b5c2-4a01-9aba-a8058f629d42", + "name": "b96d014d-b5c2-4a01-9aba-a8058f629d42", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "MicrosoftCloudAppSecurity", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "alerts": { + "state": "Enabled" + } + } + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetMicrosoftCloudAppSecurityById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetMicrosoftCloudAppSecurityById.json index f1711376193c..f5f114c4f687 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetMicrosoftCloudAppSecurityById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetMicrosoftCloudAppSecurityById.json @@ -1,29 +1,29 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "dataConnectorId": "b96d014d-b5c2-4a01-9aba-a8058f629d42" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/b96d014d-b5c2-4a01-9aba-a8058f629d42", - "name": "b96d014d-b5c2-4a01-9aba-a8058f629d42", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "MicrosoftCloudAppSecurity", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "alerts": { - "state": "Enabled" - } - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "dataConnectorId": "b96d014d-b5c2-4a01-9aba-a8058f629d42" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/b96d014d-b5c2-4a01-9aba-a8058f629d42", + "name": "b96d014d-b5c2-4a01-9aba-a8058f629d42", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "MicrosoftCloudAppSecurity", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "alerts": { + "state": "Enabled" } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetOfficeDataConnetorById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetOfficeDataConnetorById.json index 22817ab18886..7a9e73d1c7ce 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetOfficeDataConnetorById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetOfficeDataConnetorById.json @@ -1,32 +1,32 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "dataConnectorId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "Office365", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "sharePoint": { - "state": "Enabled" - }, - "exchange": { - "state": "Enabled" - } - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "dataConnectorId": "73e01a99-5cd7-4139-a149-9f2736ff2ab5" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "name": "73e01a99-5cd7-4139-a149-9f2736ff2ab5", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "Office365", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "sharePoint": { + "state": "Enabled" + }, + "exchange": { + "state": "Enabled" } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetThreatIntelligenceById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetThreatIntelligenceById.json index bf5a9c731405..615ea1d33eef 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetThreatIntelligenceById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/dataConnectors/GetThreatIntelligenceById.json @@ -1,29 +1,29 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "dataConnectorId": "c345bf40-8509-4ed2-b947-50cb773aaf04" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/c345bf40-8509-4ed2-b947-50cb773aaf04", - "name": "c345bf40-8509-4ed2-b947-50cb773aaf04", - "type": "Microsoft.SecurityInsights/dataConnectors", - "kind": "ThreatIntelligence", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", - "dataTypes": { - "indicators": { - "state": "Enabled" - } - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "dataConnectorId": "c345bf40-8509-4ed2-b947-50cb773aaf04" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/c345bf40-8509-4ed2-b947-50cb773aaf04", + "name": "c345bf40-8509-4ed2-b947-50cb773aaf04", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "ThreatIntelligence", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "indicators": { + "state": "Enabled" } + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetAccountEntityById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetAccountEntityById.json index be352ea419df..5ee40b70c848 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetAccountEntityById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetAccountEntityById.json @@ -1,32 +1,32 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "entityId": "e1d3d618-e11f-478b-98e3-bb381539a8e1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/e1d3d618-e11f-478b-98e3-bb381539a8e1", - "name": "e1d3d618-e11f-478b-98e3-bb381539a8e1", - "type": "Microsoft.SecurityInsights/entities", - "kind": "Account", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "accountName": "administrator", - "ntDomain": "domain", - "upnSuffix": "contoso", - "sid": "S-1-5-18", - "aadTenantId": "70fbdad0-7441-4564-b2b5-2b8862d0fee0", - "aadUserId": "f7033626-2572-46b1-bba0-06646f4f95b3", - "puid": "ee3cb2d8-14ba-45ef-8009-d6f1cacfa04d", - "isDomainJoined": true, - "objectGuid": "11227b78-3c6e-436e-a2a2-02fc7662eca0" - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "entityId": "e1d3d618-e11f-478b-98e3-bb381539a8e1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/e1d3d618-e11f-478b-98e3-bb381539a8e1", + "name": "e1d3d618-e11f-478b-98e3-bb381539a8e1", + "type": "Microsoft.SecurityInsights/entities", + "kind": "Account", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "accountName": "administrator", + "ntDomain": "domain", + "upnSuffix": "contoso", + "sid": "S-1-5-18", + "aadTenantId": "70fbdad0-7441-4564-b2b5-2b8862d0fee0", + "aadUserId": "f7033626-2572-46b1-bba0-06646f4f95b3", + "puid": "ee3cb2d8-14ba-45ef-8009-d6f1cacfa04d", + "isDomainJoined": true, + "objectGuid": "11227b78-3c6e-436e-a2a2-02fc7662eca0" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetEntities.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetEntities.json index 9ff109a2a4a3..5a04c055c232 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetEntities.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetEntities.json @@ -1,64 +1,64 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/e1d3d618-e11f-478b-98e3-bb381539a8e1", - "name": "e1d3d618-e11f-478b-98e3-bb381539a8e1", - "type": "Microsoft.SecurityInsights/entities", - "kind": "Account", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "accountName": "administrator", - "ntDomain": "domain", - "upnSuffix": "contoso", - "sid": "S-1-5-18", - "aadTenantId": "70fbdad0-7441-4564-b2b5-2b8862d0fee0", - "aadUserId": "f7033626-2572-46b1-bba0-06646f4f95b3", - "puid": "ee3cb2d8-14ba-45ef-8009-d6f1cacfa04d", - "isDomainJoined": true, - "objectGuid": "11227b78-3c6e-436e-a2a2-02fc7662eca0" - } - }, - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/e1d3d618-e11f-478b-98e3-bb381539a8e1", - "name": "e1d3d618-e11f-478b-98e3-bb381539a8e1", - "type": "Microsoft.SecurityInsights/entities", - "kind": "Host", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "dnsDomain": "contoso", - "ntDomain": "domain", - "hostName": "vm1", - "netBiosName": "contoso", - "azureID": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", - "omsAgentID": "70fbdad0-7441-4564-b2b5-2b8862d0fee0", - "osFamily": "f7033626-2572-46b1-bba0-06646f4f95b3", - "osVersion": "ee3cb2d8-14ba-45ef-8009-d6f1cacfa04d", - "isDomainJoined": true - } - }, - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/af378b21-b4aa-4fe7-bc70-13f8621a322f", - "name": "af378b21-b4aa-4fe7-bc70-13f8621a322f", - "type": "Microsoft.SecurityInsights/entities", - "kind": "File", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "directory": "C:\\Windows\\System32", - "fileName": "cmd.exe" - } - } - ] + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/e1d3d618-e11f-478b-98e3-bb381539a8e1", + "name": "e1d3d618-e11f-478b-98e3-bb381539a8e1", + "type": "Microsoft.SecurityInsights/entities", + "kind": "Account", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "accountName": "administrator", + "ntDomain": "domain", + "upnSuffix": "contoso", + "sid": "S-1-5-18", + "aadTenantId": "70fbdad0-7441-4564-b2b5-2b8862d0fee0", + "aadUserId": "f7033626-2572-46b1-bba0-06646f4f95b3", + "puid": "ee3cb2d8-14ba-45ef-8009-d6f1cacfa04d", + "isDomainJoined": true, + "objectGuid": "11227b78-3c6e-436e-a2a2-02fc7662eca0" } - } + }, + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/e1d3d618-e11f-478b-98e3-bb381539a8e1", + "name": "e1d3d618-e11f-478b-98e3-bb381539a8e1", + "type": "Microsoft.SecurityInsights/entities", + "kind": "Host", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "dnsDomain": "contoso", + "ntDomain": "domain", + "hostName": "vm1", + "netBiosName": "contoso", + "azureID": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", + "omsAgentID": "70fbdad0-7441-4564-b2b5-2b8862d0fee0", + "osFamily": "f7033626-2572-46b1-bba0-06646f4f95b3", + "osVersion": "ee3cb2d8-14ba-45ef-8009-d6f1cacfa04d", + "isDomainJoined": true + } + }, + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/af378b21-b4aa-4fe7-bc70-13f8621a322f", + "name": "af378b21-b4aa-4fe7-bc70-13f8621a322f", + "type": "Microsoft.SecurityInsights/entities", + "kind": "File", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "directory": "C:\\Windows\\System32", + "fileName": "cmd.exe" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetFileEntityById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetFileEntityById.json index 4b1b667c9129..3b8d00fa0dd9 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetFileEntityById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetFileEntityById.json @@ -1,25 +1,25 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "entityId": "af378b21-b4aa-4fe7-bc70-13f8621a322f" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/af378b21-b4aa-4fe7-bc70-13f8621a322f", - "name": "af378b21-b4aa-4fe7-bc70-13f8621a322f", - "type": "Microsoft.SecurityInsights/entities", - "kind": "File", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "directory": "C:\\Windows\\System32", - "fileName": "cmd.exe" - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "entityId": "af378b21-b4aa-4fe7-bc70-13f8621a322f" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/af378b21-b4aa-4fe7-bc70-13f8621a322f", + "name": "af378b21-b4aa-4fe7-bc70-13f8621a322f", + "type": "Microsoft.SecurityInsights/entities", + "kind": "File", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "directory": "C:\\Windows\\System32", + "fileName": "cmd.exe" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetHostEntityById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetHostEntityById.json index 111d6b413de3..553f2f012d64 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetHostEntityById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetHostEntityById.json @@ -1,32 +1,32 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "entityId": "e1d3d618-e11f-478b-98e3-bb381539a8e1" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/e1d3d618-e11f-478b-98e3-bb381539a8e1", - "name": "e1d3d618-e11f-478b-98e3-bb381539a8e1", - "type": "Microsoft.SecurityInsights/entities", - "kind": "Host", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "dnsDomain": "contoso", - "ntDomain": "domain", - "hostName": "vm1", - "netBiosName": "contoso", - "azureID": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", - "omsAgentID": "70fbdad0-7441-4564-b2b5-2b8862d0fee0", - "osFamily": "f7033626-2572-46b1-bba0-06646f4f95b3", - "osVersion": "ee3cb2d8-14ba-45ef-8009-d6f1cacfa04d", - "isDomainJoined": true - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "entityId": "e1d3d618-e11f-478b-98e3-bb381539a8e1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/entities/e1d3d618-e11f-478b-98e3-bb381539a8e1", + "name": "e1d3d618-e11f-478b-98e3-bb381539a8e1", + "type": "Microsoft.SecurityInsights/entities", + "kind": "Host", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "dnsDomain": "contoso", + "ntDomain": "domain", + "hostName": "vm1", + "netBiosName": "contoso", + "azureID": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.Compute/virtualMachines/vm1", + "omsAgentID": "70fbdad0-7441-4564-b2b5-2b8862d0fee0", + "osFamily": "f7033626-2572-46b1-bba0-06646f4f95b3", + "osVersion": "ee3cb2d8-14ba-45ef-8009-d6f1cacfa04d", + "isDomainJoined": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/DeleteOfficeConsents.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/DeleteOfficeConsents.json index 477789d7db34..096d0cf9e7aa 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/DeleteOfficeConsents.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/DeleteOfficeConsents.json @@ -1,16 +1,14 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "consentId": "04e5fd05-ff86-4b97-b8d2-1c20933cb46c" - }, - "responses": { - "200": { - }, - "204":{ - } - } -} \ No newline at end of file + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "consentId": "04e5fd05-ff86-4b97-b8d2-1c20933cb46c" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/GetOfficeConsents.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/GetOfficeConsents.json index ff7084245c7d..f31dd95c33b1 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/GetOfficeConsents.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/GetOfficeConsents.json @@ -1,26 +1,26 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/officeConsents/04e5fd05-ff86-4b97-b8d2-1c20933cb46c", - "name": "04e5fd05-ff86-4b97-b8d2-1c20933cb46c", - "type": "Microsoft.SecurityInsights/officeConsents", - "properties": { - "tenantId": "5460b3d2-1e7b-4757-ad54-c858c7e3f252", - "tenantName": "Contoso" - } - } - ] + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/officeConsents/04e5fd05-ff86-4b97-b8d2-1c20933cb46c", + "name": "04e5fd05-ff86-4b97-b8d2-1c20933cb46c", + "type": "Microsoft.SecurityInsights/officeConsents", + "properties": { + "tenantId": "5460b3d2-1e7b-4757-ad54-c858c7e3f252", + "tenantName": "Contoso" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/GetOfficeConsentsById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/GetOfficeConsentsById.json index cb1b9f2e2db6..71ad587ce99d 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/GetOfficeConsentsById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/officeConsents/GetOfficeConsentsById.json @@ -1,23 +1,23 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "consentId": "04e5fd05-ff86-4b97-b8d2-1c20933cb46c" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/officeConsents/04e5fd05-ff86-4b97-b8d2-1c20933cb46c", - "name": "04e5fd05-ff86-4b97-b8d2-1c20933cb46c", - "type": "Microsoft.SecurityInsights/officeConsents", - "properties": { - "tenantId": "5460b3d2-1e7b-4757-ad54-c858c7e3f252", - "tenantName": "Contoso" - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "consentId": "04e5fd05-ff86-4b97-b8d2-1c20933cb46c" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/officeConsents/04e5fd05-ff86-4b97-b8d2-1c20933cb46c", + "name": "04e5fd05-ff86-4b97-b8d2-1c20933cb46c", + "type": "Microsoft.SecurityInsights/officeConsents", + "properties": { + "tenantId": "5460b3d2-1e7b-4757-ad54-c858c7e3f252", + "tenantName": "Contoso" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/GetFusionSettings.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/GetFusionSettings.json index aad55f542c19..e3bea3867310 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/GetFusionSettings.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/GetFusionSettings.json @@ -1,24 +1,24 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "settingsName": "Fusion" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/settings/Fusion", - "name": "Fusion", - "type": "Microsoft.SecurityInsights/settings", - "kind": "ToggleSettings", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "isEnabled": true - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "settingsName": "Fusion" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/settings/Fusion", + "name": "Fusion", + "type": "Microsoft.SecurityInsights/settings", + "kind": "ToggleSettings", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "isEnabled": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/GetUebaSettings.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/GetUebaSettings.json index 1b1d02e42a0b..615415059d28 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/GetUebaSettings.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/GetUebaSettings.json @@ -1,26 +1,26 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", - "settingsName": "UEBA" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/settings/UEBA", - "name": "UEBA", - "type": "Microsoft.SecurityInsights/settings", - "kind": "UebaSettings", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "isEnabled": true, - "statusInMcas": "Enabled", - "atpLicenseStatus": "Enabled" - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalIinsights", + "settingsName": "UEBA" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/settings/UEBA", + "name": "UEBA", + "type": "Microsoft.SecurityInsights/settings", + "kind": "UebaSettings", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "isEnabled": true, + "statusInMcas": "Enabled", + "atpLicenseStatus": "Enabled" } + } } -} \ No newline at end of file + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/UpdateUebaSettings.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/UpdateUebaSettings.json index e1b806ed1eb9..59b8b92e4892 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/UpdateUebaSettings.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/UpdateUebaSettings.json @@ -1,38 +1,38 @@ { - "parameters": { - "api-version": "2019-01-01-preview", - "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", - "resourceGroupName": "myRg", - "workspaceName": "myWorkspace", - "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", - "settingsName": "UEBA", - "settings": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/settings/UEBA", - "name": "UEBA", - "type": "Microsoft.SecurityInsights/settings", - "kind": "UebaSettings", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "isEnabled": true, - "statusInMcas": "Enabled", - "atpLicenseStatus": "Enabled" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/settings/UEBA", - "name": "UEBA", - "type": "Microsoft.SecurityInsights/settings", - "kind": "UebaSettings", - "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", - "properties": { - "isEnabled": true, - "statusInMcas": "Enabled", - "atpLicenseStatus": "Enabled" - } - } + "parameters": { + "api-version": "2019-01-01-preview", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "operationalInsightsResourceProvider": "Microsoft.OperationalInsights", + "settingsName": "UEBA", + "settings": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/settings/UEBA", + "name": "UEBA", + "type": "Microsoft.SecurityInsights/settings", + "kind": "UebaSettings", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "isEnabled": true, + "statusInMcas": "Enabled", + "atpLicenseStatus": "Enabled" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/settings/UEBA", + "name": "UEBA", + "type": "Microsoft.SecurityInsights/settings", + "kind": "UebaSettings", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "isEnabled": true, + "statusInMcas": "Enabled", + "atpLicenseStatus": "Enabled" } + } } -} \ No newline at end of file + } +} diff --git a/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/DisableConsoleExamples.json b/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/DisableConsoleExamples.json index 062479774669..550047d40f9a 100644 --- a/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/DisableConsoleExamples.json +++ b/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/DisableConsoleExamples.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2018-05-01", - "subscriptionId": "00000000-00000-0000-0000-000000000000", - "default": "default" + "parameters": { + "api-version": "2018-05-01", + "subscriptionId": "00000000-00000-0000-0000-000000000000", + "default": "default" + }, + "responses": { + "200": { + "body": { + "disabled": true + } }, - "responses": { - "200": { - "body": { - "disabled": true - } - }, - "default": { - "body": { - "errorMessage": "This message will contain details on failure" - } - } + "default": { + "body": { + "errorMessage": "This message will contain details on failure" + } } -} \ No newline at end of file + } +} diff --git a/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/EnableConsoleExamples.json b/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/EnableConsoleExamples.json index 05ca5ee88f45..9f4e66b11dbc 100644 --- a/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/EnableConsoleExamples.json +++ b/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/EnableConsoleExamples.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2018-05-01", - "subscriptionId": "00000000-00000-0000-0000-000000000000", - "default": "default" + "parameters": { + "api-version": "2018-05-01", + "subscriptionId": "00000000-00000-0000-0000-000000000000", + "default": "default" + }, + "responses": { + "200": { + "body": { + "disabled": false + } }, - "responses": { - "200": { - "body": { - "disabled": false - } - }, - "default": { - "body": { - "errorMessage": "This message will contain details on failure" - } - } + "default": { + "body": { + "errorMessage": "This message will contain details on failure" + } } -} \ No newline at end of file + } +} diff --git a/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/GetConsoleDisabledExamples.json b/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/GetConsoleDisabledExamples.json index 970c46eeb354..4927ca78fac7 100644 --- a/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/GetConsoleDisabledExamples.json +++ b/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/GetConsoleDisabledExamples.json @@ -1,19 +1,19 @@ { - "parameters": { - "api-version": "2018-05-01", - "subscriptionId": "00000000-00000-0000-0000-000000000000", - "default": "default" + "parameters": { + "api-version": "2018-05-01", + "subscriptionId": "00000000-00000-0000-0000-000000000000", + "default": "default" + }, + "responses": { + "200": { + "body": { + "disabled": true + } }, - "responses": { - "200": { - "body": { - "disabled": true - } - }, - "default": { - "body": { - "errorMessage": "This message contains details on failure" - } - } + "default": { + "body": { + "errorMessage": "This message contains details on failure" + } } -} \ No newline at end of file + } +} diff --git a/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/GetOperationsExample.json b/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/GetOperationsExample.json index f36e22c435ad..f9c5bb42b637 100644 --- a/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/GetOperationsExample.json +++ b/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/examples/GetOperationsExample.json @@ -1,13 +1,13 @@ { - "parameters": { - "api-version": "2018-05-01", - "subscriptionId": "00000000-00000-0000-0000-000000000000" - }, - "responses": { - "200": { - "body": { - "value": "Get operations response" - } - } + "parameters": { + "api-version": "2018-05-01", + "subscriptionId": "00000000-00000-0000-0000-000000000000" + }, + "responses": { + "200": { + "body": { + "value": "Get operations response" + } } -} \ No newline at end of file + } +} diff --git a/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/serialconsole.json b/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/serialconsole.json index 818186ba1c6b..c036e0aa80aa 100644 --- a/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/serialconsole.json +++ b/specification/serialconsole/resource-manager/Microsoft.SerialConsole/stable/2018-05-01/serialconsole.json @@ -1,280 +1,280 @@ { - "swagger": "2.0", - "info": { - "title": "MicrosoftSerialConsoleClient", - "version": "2018-05-01", - "description": "Azure Virtual Machine Serial Console allows you to access serial console of a Virtual Machine" - }, - "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" + "swagger": "2.0", + "info": { + "title": "MicrosoftSerialConsoleClient", + "version": "2018-05-01", + "description": "Azure Virtual Machine Serial Console allows you to access serial console of a Virtual Machine" + }, + "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.SerialConsole/operations": { + "get": { + "tags": [ + "SerialConsole" + ], + "operationId": "List_Operations", + "description": "Gets a list of Serial Console API operations.", + "x-ms-examples": { + "List all Serial Console management operations supported by Serial Console RP": { + "$ref": "./examples/GetOperationsExample.json" + } + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK - returns a JSON object", + "schema": { + "$ref": "#/definitions/SerialConsoleOperations" } + } } + } }, - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/operations": { - "get": { - "tags": [ - "SerialConsole" - ], - "operationId": "List_Operations", - "description": "Gets a list of Serial Console API operations.", - "x-ms-examples": { - "List all Serial Console management operations supported by Serial Console RP": { - "$ref": "./examples/GetOperationsExample.json" - } - }, - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK - returns a JSON object", - "schema": { - "$ref": "#/definitions/SerialConsoleOperations" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/consoleServices/{default}": { - "get": { - "tags": [ - "ConsoleDisabled" - ], - "operationId": "ListConsole_Disabled", - "description": "Gets if Serial Console is disabled for a subscription.", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/default" - } - ], - "responses": { - "200": { - "description": "OK - Returns a JSON object", - "schema": { - "$ref": "#/definitions/GetDisabledResult" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/DeploymentValidateResult" - } - } - }, - "x-ms-examples": { - "Successfully get whether or not Serial Console is disabled": { - "$ref": "./examples/GetConsoleDisabledExamples.json" - }, - "Get whether or not Serial Console is disabled and receive error": { - "$ref": "./examples/GetConsoleDisabledExamples.json" - } - } + "/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/consoleServices/{default}": { + "get": { + "tags": [ + "ConsoleDisabled" + ], + "operationId": "ListConsole_Disabled", + "description": "Gets if Serial Console is disabled for a subscription.", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/default" + } + ], + "responses": { + "200": { + "description": "OK - Returns a JSON object", + "schema": { + "$ref": "#/definitions/GetDisabledResult" } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/consoleServices/{default}/enableConsole": { - "post": { - "tags": [ - "EnableConsole" - ], - "operationId": "Console_EnableConsole", - "description": "Enables Serial Console for a subscription", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/default" - } - ], - "responses": { - "200": { - "description": "OK - Serial Console disabled", - "schema": { - "$ref": "#/definitions/SetDisabledResult" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/DeploymentValidateResult" - } - } - }, - "x-ms-examples": { - "Enable console successfully": { - "$ref": "./examples/EnableConsoleExamples.json" - }, - "Enable console with error": { - "$ref": "./examples/EnableConsoleExamples.json" - } - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/DeploymentValidateResult" } + } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/consoleServices/{default}/disableConsole": { - "post": { - "tags": [ - "DisableConsole" - ], - "operationId": "Console_DisableConsole", - "description": "Disables Serial Console for a subscription", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/default" - } - ], - "responses": { - "200": { - "description": "OK - Serial Console disabled", - "schema": { - "$ref": "#/definitions/SetDisabledResult" - } - }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/DeploymentValidateResult" - } - } - }, - "x-ms-examples": { - "Enable console successfully": { - "$ref": "./examples/DisableConsoleExamples.json" - }, - "Disable console with error": { - "$ref": "./examples/DisableConsoleExamples.json" - } - } - } + "x-ms-examples": { + "Successfully get whether or not Serial Console is disabled": { + "$ref": "./examples/GetConsoleDisabledExamples.json" + }, + "Get whether or not Serial Console is disabled and receive error": { + "$ref": "./examples/GetConsoleDisabledExamples.json" + } } + } }, - "definitions": { - "SerialConsoleGetResult": { - "title": "Serial Console GET Result", - "description": "Returns whether or not Serial Console is disabled.", - "properties": { - "value": { - "description": "Whether or not Serial Console is disabled.", - "type": "boolean" - } + "/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/consoleServices/{default}/enableConsole": { + "post": { + "tags": [ + "EnableConsole" + ], + "operationId": "Console_EnableConsole", + "description": "Enables Serial Console for a subscription", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/default" + } + ], + "responses": { + "200": { + "description": "OK - Serial Console disabled", + "schema": { + "$ref": "#/definitions/SetDisabledResult" } - }, - "GetDisabledResult": { - "title": "Get Disabled result", - "description": "Returns whether or not Serial Console is disabled for this given subscription", - "properties": { - "disabled": { - "description": "Disabled result", - "type": "boolean" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/DeploymentValidateResult" } + } }, - "SetDisabledResult": { - "title": "Set Disabled result", - "description": "Sets disable status and returns whether or not Serial Console is now disabled for this given subscription", - "properties": { - "disabled": { - "description": "Disabled result", - "type": "boolean" - } + "x-ms-examples": { + "Enable console successfully": { + "$ref": "./examples/EnableConsoleExamples.json" + }, + "Enable console with error": { + "$ref": "./examples/EnableConsoleExamples.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/consoleServices/{default}/disableConsole": { + "post": { + "tags": [ + "DisableConsole" + ], + "operationId": "Console_DisableConsole", + "description": "Disables Serial Console for a subscription", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/default" + } + ], + "responses": { + "200": { + "description": "OK - Serial Console disabled", + "schema": { + "$ref": "#/definitions/SetDisabledResult" } - }, - "DeploymentValidateResult": { - "title": "Details on Failure", - "description": "Details on Failure", - "properties": { - "errorMessage": { - "description": "Error message", - "type": "string" - } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/DeploymentValidateResult" } + } }, - "SerialConsoleOperations": { - "title": "Serial Console operations", - "description": "Serial Console operations", - "type": "object", - "properties": { - "value": { - "description": "Serial Console operations", - "type": "string" - } - } + "x-ms-examples": { + "Enable console successfully": { + "$ref": "./examples/DisableConsoleExamples.json" + }, + "Disable console with error": { + "$ref": "./examples/DisableConsoleExamples.json" + } } + } + } + }, + "definitions": { + "SerialConsoleGetResult": { + "title": "Serial Console GET Result", + "description": "Returns whether or not Serial Console is disabled.", + "properties": { + "value": { + "description": "Whether or not Serial Console is disabled.", + "type": "boolean" + } + } }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "The ID of the target subscription." - }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "The API version to use for this operation." - }, - "default" :{ - "name": "default", - "in": "path", - "required": true, - "type": "string", - "description": "Default string modeled as parameter for URL to work correctly.", - "enum": [ - "default" - ], - "x-ms-parameter-location": "method" + "GetDisabledResult": { + "title": "Get Disabled result", + "description": "Returns whether or not Serial Console is disabled for this given subscription", + "properties": { + "disabled": { + "description": "Disabled result", + "type": "boolean" } + } + }, + "SetDisabledResult": { + "title": "Set Disabled result", + "description": "Sets disable status and returns whether or not Serial Console is now disabled for this given subscription", + "properties": { + "disabled": { + "description": "Disabled result", + "type": "boolean" + } + } + }, + "DeploymentValidateResult": { + "title": "Details on Failure", + "description": "Details on Failure", + "properties": { + "errorMessage": { + "description": "Error message", + "type": "string" + } + } + }, + "SerialConsoleOperations": { + "title": "Serial Console operations", + "description": "Serial Console operations", + "type": "object", + "properties": { + "value": { + "description": "Serial Console operations", + "type": "string" + } + } + } + }, + "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "required": true, + "type": "string", + "description": "The ID of the target subscription." + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "The API version to use for this operation." + }, + "default": { + "name": "default", + "in": "path", + "required": true, + "type": "string", + "description": "Default string modeled as parameter for URL to work correctly.", + "enum": [ + "default" + ], + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/arm-service-map.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/arm-service-map.json index 2962a420069c..5337461d229c 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/arm-service-map.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/arm-service-map.json @@ -3420,4 +3420,4 @@ "maxLength": 36 } } -} \ No newline at end of file +} diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsGetGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsGetGet.json index 4e6dd14a8907..4524b45964f7 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsGetGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsGetGet.json @@ -1,39 +1,39 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "clientGroupName": "m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-c0a8010a_10000", - "startTime": "2018-01-08T21:26:53.7181136Z", - "endTime": "2018-01-08T21:28:53.7181136Z" - }, - "responses": { - "200": { - "body": { - "kind": "clientGroup", - "properties": { - "clientsOf": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, - "ipAddress": "192.168.1.10", - "portNumber": 10000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-c0a8010a_10000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_10000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-c0a8010a_10000", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-c0a8010a_10000" - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "clientGroupName": "m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-c0a8010a_10000", + "startTime": "2018-01-08T21:26:53.7181136Z", + "endTime": "2018-01-08T21:28:53.7181136Z" + }, + "responses": { + "200": { + "body": { + "kind": "clientGroup", + "properties": { + "clientsOf": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + "ipAddress": "192.168.1.10", + "portNumber": 10000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-c0a8010a_10000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_10000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-c0a8010a_10000", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-c0a8010a_10000" + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsGetMembersCountGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsGetMembersCountGet.json index c73e93aad3c5..499090e41912 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsGetMembersCountGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsGetMembersCountGet.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "clientGroupName": "m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000", - "startTime": "2018-01-08T21:51:48.301Z", - "endTime": "2018-01-08T21:52:03.301Z" - }, - "responses": { - "200": { - "body": { - "startTime": "2018-01-08T21:51:48.301Z", - "endTime": "2018-01-08T21:52:03.301Z", - "groupId": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000", - "count": 25, - "accuracy": "actual" - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "clientGroupName": "m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000", + "startTime": "2018-01-08T21:51:48.301Z", + "endTime": "2018-01-08T21:52:03.301Z" + }, + "responses": { + "200": { + "body": { + "startTime": "2018-01-08T21:51:48.301Z", + "endTime": "2018-01-08T21:52:03.301Z", + "groupId": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000", + "count": 25, + "accuracy": "actual" + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsListMembersGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsListMembersGet.json index af15f04b7eeb..734b6cd07e5b 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsListMembersGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/ClientGroups/SMClientGroupsListMembersGet.json @@ -1,594 +1,619 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "clientGroupName": "m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000", - "startTime": "2018-01-08T21:51:48.301Z", - "endTime": "2018-01-08T21:52:03.301Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "properties": { - "ipAddress": "1.1.0.0", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010000", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010000" - }, { - "properties": { - "ipAddress": "1.1.0.1", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010001", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010001" - }, { - "properties": { - "ipAddress": "1.1.0.2", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010002", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010002" - }, { - "properties": { - "ipAddress": "1.1.0.3", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010003", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010003" - }, { - "properties": { - "ipAddress": "1.1.0.4", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010004", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010004" - }, { - "properties": { - "ipAddress": "1.1.0.5", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010005", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010005" - }, { - "properties": { - "ipAddress": "1.1.0.6", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010006", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010006" - }, { - "properties": { - "ipAddress": "1.1.0.7", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010007", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010007" - }, { - "properties": { - "ipAddress": "1.1.0.8", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010008", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010008" - }, { - "properties": { - "ipAddress": "1.1.0.9", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010009", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010009" - }, { - "properties": { - "ipAddress": "1.1.0.10", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000a", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "0101000a" - }, { - "properties": { - "ipAddress": "1.1.0.11", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000b", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "0101000b" - }, { - "properties": { - "ipAddress": "1.1.0.12", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000c", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "0101000c" - }, { - "properties": { - "ipAddress": "1.1.0.13", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000d", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "0101000d" - }, { - "properties": { - "ipAddress": "1.1.0.14", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000e", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "0101000e" - }, { - "properties": { - "ipAddress": "1.1.0.15", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000f", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "0101000f" - }, { - "properties": { - "ipAddress": "1.1.0.16", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010010", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010010" - }, { - "properties": { - "ipAddress": "1.1.0.17", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010011", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010011" - }, { - "properties": { - "ipAddress": "1.1.0.18", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010012", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010012" - }, { - "properties": { - "ipAddress": "1.1.0.19", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010013", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010013" - }, { - "properties": { - "ipAddress": "1.1.0.20", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010014", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010014" - }, { - "properties": { - "ipAddress": "1.1.0.21", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010015", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010015" - }, { - "properties": { - "ipAddress": "1.1.0.22", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010016", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010016" - }, { - "properties": { - "ipAddress": "1.1.0.23", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010017", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010017" - }, { - "properties": { - "ipAddress": "1.1.0.24", - "port": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" - }, - "ipAddress": "192.168.1.10", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_8000" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010018", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", - "name": "01010018" - } - ] - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "clientGroupName": "m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000", + "startTime": "2018-01-08T21:51:48.301Z", + "endTime": "2018-01-08T21:52:03.301Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "ipAddress": "1.1.0.0", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010000", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010000" + }, + { + "properties": { + "ipAddress": "1.1.0.1", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010001", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010001" + }, + { + "properties": { + "ipAddress": "1.1.0.2", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010002", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010002" + }, + { + "properties": { + "ipAddress": "1.1.0.3", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010003", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010003" + }, + { + "properties": { + "ipAddress": "1.1.0.4", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010004", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010004" + }, + { + "properties": { + "ipAddress": "1.1.0.5", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010005", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010005" + }, + { + "properties": { + "ipAddress": "1.1.0.6", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010006", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010006" + }, + { + "properties": { + "ipAddress": "1.1.0.7", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010007", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010007" + }, + { + "properties": { + "ipAddress": "1.1.0.8", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010008", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010008" + }, + { + "properties": { + "ipAddress": "1.1.0.9", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010009", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010009" + }, + { + "properties": { + "ipAddress": "1.1.0.10", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000a", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "0101000a" + }, + { + "properties": { + "ipAddress": "1.1.0.11", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000b", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "0101000b" + }, + { + "properties": { + "ipAddress": "1.1.0.12", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000c", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "0101000c" + }, + { + "properties": { + "ipAddress": "1.1.0.13", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000d", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "0101000d" + }, + { + "properties": { + "ipAddress": "1.1.0.14", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000e", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "0101000e" + }, + { + "properties": { + "ipAddress": "1.1.0.15", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/0101000f", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "0101000f" + }, + { + "properties": { + "ipAddress": "1.1.0.16", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010010", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010010" + }, + { + "properties": { + "ipAddress": "1.1.0.17", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010011", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010011" + }, + { + "properties": { + "ipAddress": "1.1.0.18", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010012", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010012" + }, + { + "properties": { + "ipAddress": "1.1.0.19", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010013", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010013" + }, + { + "properties": { + "ipAddress": "1.1.0.20", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010014", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010014" + }, + { + "properties": { + "ipAddress": "1.1.0.21", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010015", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010015" + }, + { + "properties": { + "ipAddress": "1.1.0.22", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010016", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010016" + }, + { + "properties": { + "ipAddress": "1.1.0.23", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010017", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010017" + }, + { + "properties": { + "ipAddress": "1.1.0.24", + "port": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-12bc33c3-31ad-42e0-a08b-bd1c2531776b" + }, + "ipAddress": "192.168.1.10", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-12bc33c3-31ad-42e0-a08b-bd1c2531776b/ports/b-c0a8010a_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_8000" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-12bc33c3-31ad-42e0-a08b-bd1c2531776b!b!b-c0a8010a_8000/members/01010018", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups/members", + "name": "01010018" + } + ] + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsCreatePost.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsCreatePost.json index 1080fd71b69c..61076a8863e4 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsCreatePost.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsCreatePost.json @@ -1,48 +1,50 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineGroup": { - "kind": "machineGroup", - "properties": { - "displayName": "Foo", - "count": 1, - "machines": [{ - "kind": "ref:machinewithhints", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-2f2506f5-cf18-4dc6-98ba-d84ce2610ae0" - } - ] - }, - "etag": "e20e75b5-5765-48a5-9503-9d1b7fd20925" - } - }, - "responses": { - "201": { - "body": { - "kind": "machineGroup", - "properties": { - "groupType": "unknown", - "displayName": "Foo", - "count": 1, - "machines": [{ - "kind": "ref:machinewithhints", - "properties": { - "displayNameHint": "MachineName", - "osFamilyHint": "windows" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-2f2506f5-cf18-4dc6-98ba-d84ce2610ae0", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-2f2506f5-cf18-4dc6-98ba-d84ce2610ae0" - } - ] - }, - "etag": "e20e75b5-5765-48a5-9503-9d1b7fd20925", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/ccaf142f-57f7-4510-bd80-b073cd5dcdec", - "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", - "name": "ccaf142f-57f7-4510-bd80-b073cd5dcdec" - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineGroup": { + "kind": "machineGroup", + "properties": { + "displayName": "Foo", + "count": 1, + "machines": [ + { + "kind": "ref:machinewithhints", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-2f2506f5-cf18-4dc6-98ba-d84ce2610ae0" + } + ] + }, + "etag": "e20e75b5-5765-48a5-9503-9d1b7fd20925" + } + }, + "responses": { + "201": { + "body": { + "kind": "machineGroup", + "properties": { + "groupType": "unknown", + "displayName": "Foo", + "count": 1, + "machines": [ + { + "kind": "ref:machinewithhints", + "properties": { + "displayNameHint": "MachineName", + "osFamilyHint": "windows" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-2f2506f5-cf18-4dc6-98ba-d84ce2610ae0", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-2f2506f5-cf18-4dc6-98ba-d84ce2610ae0" + } + ] + }, + "etag": "e20e75b5-5765-48a5-9503-9d1b7fd20925", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/ccaf142f-57f7-4510-bd80-b073cd5dcdec", + "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", + "name": "ccaf142f-57f7-4510-bd80-b073cd5dcdec" + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsDeleteDelete.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsDeleteDelete.json index c6f6dd8767ec..c186da72014b 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsDeleteDelete.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsDeleteDelete.json @@ -1,12 +1,12 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineGroupName": "ccfbf4bf-dc08-4371-9e9b-00a8d875d45a" - }, - "responses": { - "204": {} - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineGroupName": "ccfbf4bf-dc08-4371-9e9b-00a8d875d45a" + }, + "responses": { + "204": {} + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsGetGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsGetGet.json index f6bd399d8d7b..3bb626ef929c 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsGetGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsGetGet.json @@ -1,37 +1,39 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineGroupName": "07597c56-5395-4815-839c-c4e7bddbac18" - }, - "responses": { - "200": { - "body": { - "kind": "machineGroup", - "properties": { - "groupType": "unknown", - "displayName": "Foo", - "count": 2, - "machines": [{ - "kind": "ref:machinewithhints", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, { - "kind": "ref:machinewithhints", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - ] - }, - "etag": "6e87df32-c683-492d-bd2a-6dcd69c3034f", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/07597c56-5395-4815-839c-c4e7bddbac18", - "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", - "name": "07597c56-5395-4815-839c-c4e7bddbac18" - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineGroupName": "07597c56-5395-4815-839c-c4e7bddbac18" + }, + "responses": { + "200": { + "body": { + "kind": "machineGroup", + "properties": { + "groupType": "unknown", + "displayName": "Foo", + "count": 2, + "machines": [ + { + "kind": "ref:machinewithhints", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + { + "kind": "ref:machinewithhints", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + ] + }, + "etag": "6e87df32-c683-492d-bd2a-6dcd69c3034f", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/07597c56-5395-4815-839c-c4e7bddbac18", + "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", + "name": "07597c56-5395-4815-839c-c4e7bddbac18" + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsListByWorkspaceGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsListByWorkspaceGet.json index bd24642a00b1..062dc883aece 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsListByWorkspaceGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsListByWorkspaceGet.json @@ -1,64 +1,70 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "startTime": "2018-01-08T19:17:49.333139Z", - "endTime": "2018-01-08T19:19:49.333139Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "machineGroup", - "properties": { - "groupType": "unknown", - "displayName": "Foo", - "count": 2, - "machines": [{ - "kind": "ref:machinewithhints", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, { - "kind": "ref:machinewithhints", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - ] - }, - "etag": "6e87df32-c683-492d-bd2a-6dcd69c3034f", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/07597c56-5395-4815-839c-c4e7bddbac18", - "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", - "name": "07597c56-5395-4815-839c-c4e7bddbac18" - }, { - "kind": "machineGroup", - "properties": { - "groupType": "unknown", - "displayName": "Bar", - "count": 2, - "machines": [{ - "kind": "ref:machinewithhints", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-573847EE-4D31-4936-A8B2-771372806C80" - }, { - "kind": "ref:machinewithhints", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123" - } - ] - }, - "etag": "9580746a-73bc-4c37-b3a0-5ac1f0ceefc2", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/4cac6673-1395-4fcd-975d-3bfe35ad57d2", - "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", - "name": "4cac6673-1395-4fcd-975d-3bfe35ad57d2" - } - ] - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "startTime": "2018-01-08T19:17:49.333139Z", + "endTime": "2018-01-08T19:19:49.333139Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "machineGroup", + "properties": { + "groupType": "unknown", + "displayName": "Foo", + "count": 2, + "machines": [ + { + "kind": "ref:machinewithhints", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + { + "kind": "ref:machinewithhints", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + ] + }, + "etag": "6e87df32-c683-492d-bd2a-6dcd69c3034f", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/07597c56-5395-4815-839c-c4e7bddbac18", + "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", + "name": "07597c56-5395-4815-839c-c4e7bddbac18" + }, + { + "kind": "machineGroup", + "properties": { + "groupType": "unknown", + "displayName": "Bar", + "count": 2, + "machines": [ + { + "kind": "ref:machinewithhints", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-573847EE-4D31-4936-A8B2-771372806C80" + }, + { + "kind": "ref:machinewithhints", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123" + } + ] + }, + "etag": "9580746a-73bc-4c37-b3a0-5ac1f0ceefc2", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/4cac6673-1395-4fcd-975d-3bfe35ad57d2", + "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", + "name": "4cac6673-1395-4fcd-975d-3bfe35ad57d2" + } + ] + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsUpdatePut.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsUpdatePut.json index 1822b3835144..3bb247bb8ee7 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsUpdatePut.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/MachineGroups/SMMachineGroupsUpdatePut.json @@ -1,49 +1,51 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineGroupName": "ccfbf4bf-dc08-4371-9e9b-00a8d875d45a", - "machineGroup": { - "kind": "machineGroup", - "properties": { - "displayName": "Foo", - "count": 1, - "machines": [{ - "kind": "ref:machinewithhints", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0fe4b501-7ac9-41d7-a4e1-1591a0789519" - } - ] - }, - "etag": "8cd3a8a1-4b1f-43fc-ae3c-b2c092561444" - } - }, - "responses": { - "200": { - "body": { - "kind": "machineGroup", - "properties": { - "groupType": "unknown", - "displayName": "Foo", - "count": 1, - "machines": [{ - "kind": "ref:machinewithhints", - "properties": { - "displayNameHint": "MachineName", - "osFamilyHint": "windows" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0fe4b501-7ac9-41d7-a4e1-1591a0789519", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-0fe4b501-7ac9-41d7-a4e1-1591a0789519" - } - ] - }, - "etag": "8cd3a8a1-4b1f-43fc-ae3c-b2c092561444", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/ccfbf4bf-dc08-4371-9e9b-00a8d875d45a", - "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", - "name": "ccfbf4bf-dc08-4371-9e9b-00a8d875d45a" - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineGroupName": "ccfbf4bf-dc08-4371-9e9b-00a8d875d45a", + "machineGroup": { + "kind": "machineGroup", + "properties": { + "displayName": "Foo", + "count": 1, + "machines": [ + { + "kind": "ref:machinewithhints", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0fe4b501-7ac9-41d7-a4e1-1591a0789519" + } + ] + }, + "etag": "8cd3a8a1-4b1f-43fc-ae3c-b2c092561444" + } + }, + "responses": { + "200": { + "body": { + "kind": "machineGroup", + "properties": { + "groupType": "unknown", + "displayName": "Foo", + "count": 1, + "machines": [ + { + "kind": "ref:machinewithhints", + "properties": { + "displayNameHint": "MachineName", + "osFamilyHint": "windows" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0fe4b501-7ac9-41d7-a4e1-1591a0789519", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-0fe4b501-7ac9-41d7-a4e1-1591a0789519" + } + ] + }, + "etag": "8cd3a8a1-4b1f-43fc-ae3c-b2c092561444", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/ccfbf4bf-dc08-4371-9e9b-00a8d875d45a", + "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", + "name": "ccfbf4bf-dc08-4371-9e9b-00a8d875d45a" + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/MachineGroups/SMMachinesListMachineGroupMembershipGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/MachineGroups/SMMachinesListMachineGroupMembershipGet.json index f3e9c3deb9b2..ede2567a2554 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/MachineGroups/SMMachinesListMachineGroupMembershipGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/MachineGroups/SMMachinesListMachineGroupMembershipGet.json @@ -1,42 +1,45 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "startTime": "2018-01-08T19:17:49.333139Z", - "endTime": "2018-01-08T19:19:49.333139Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "machineGroup", - "properties": { - "groupType": "unknown", - "displayName": "Foo", - "count": 2, - "machines": [{ - "kind": "ref:machinewithhints", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, { - "kind": "ref:machinewithhints", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - ] - }, - "etag": "6e87df32-c683-492d-bd2a-6dcd69c3034f", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/07597c56-5395-4815-839c-c4e7bddbac18", - "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", - "name": "07597c56-5395-4815-839c-c4e7bddbac18" - } - ] - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "startTime": "2018-01-08T19:17:49.333139Z", + "endTime": "2018-01-08T19:19:49.333139Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "machineGroup", + "properties": { + "groupType": "unknown", + "displayName": "Foo", + "count": 2, + "machines": [ + { + "kind": "ref:machinewithhints", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + { + "kind": "ref:machinewithhints", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + ] + }, + "etag": "6e87df32-c683-492d-bd2a-6dcd69c3034f", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/07597c56-5395-4815-839c-c4e7bddbac18", + "type": "Microsoft.OperationalInsights/workspaces/features/machineGroups", + "name": "07597c56-5395-4815-839c-c4e7bddbac18" + } + ] + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesListPortsGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesListPortsGet.json index fd7b4645af54..ae8c723b57bc 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesListPortsGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesListPortsGet.json @@ -1,70 +1,73 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "startTime": "2018-01-07T08:01:48.525Z", - "endTime": "2018-01-07T08:01:48.525Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" - }, - "displayName": ":8000", - "ipAddress": "192.168.1.1", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_8000" - }, { - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" - }, - "displayName": ":8001", - "ipAddress": "192.168.1.1", - "portNumber": 8001 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8001", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_8001" - }, { - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" - }, - "displayName": ":8002", - "ipAddress": "192.168.1.1", - "portNumber": 8002 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8002", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_8002" - } - ] - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "startTime": "2018-01-07T08:01:48.525Z", + "endTime": "2018-01-07T08:01:48.525Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" + }, + "displayName": ":8000", + "ipAddress": "192.168.1.1", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_8000" + }, + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" + }, + "displayName": ":8001", + "ipAddress": "192.168.1.1", + "portNumber": 8001 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8001", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_8001" + }, + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" + }, + "displayName": ":8002", + "ipAddress": "192.168.1.1", + "portNumber": 8002 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8002", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_8002" + } + ] + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsGetGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsGetGet.json index 5200ea112769..b8cc1fb22758 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsGetGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsGetGet.json @@ -1,32 +1,32 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "portName": "b-c0a80101_8000", - "startTime": "2018-01-07T08:01:48.525Z", - "endTime": "2018-01-07T08:01:48.525Z" - }, - "responses": { - "200": { - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" - }, - "displayName": ":8000", - "ipAddress": "192.168.1.1", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_8000" - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "portName": "b-c0a80101_8000", + "startTime": "2018-01-07T08:01:48.525Z", + "endTime": "2018-01-07T08:01:48.525Z" + }, + "responses": { + "200": { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" + }, + "displayName": ":8000", + "ipAddress": "192.168.1.1", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_8000" + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsGetLivenessGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsGetLivenessGet.json index 6977858aafcd..df8b6d15d6f7 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsGetLivenessGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsGetLivenessGet.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "portName": "b-c0a80101_8000", - "startTime": "2018-01-07T08:01:48.525Z", - "endTime": "2018-01-07T08:01:48.525Z" - }, - "responses": { - "200": { - "body": { - "startTime": "2018-01-07T08:01:48.525Z", - "endTime": "2018-01-07T08:01:48.525Z", - "live": true - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "portName": "b-c0a80101_8000", + "startTime": "2018-01-07T08:01:48.525Z", + "endTime": "2018-01-07T08:01:48.525Z" + }, + "responses": { + "200": { + "body": { + "startTime": "2018-01-07T08:01:48.525Z", + "endTime": "2018-01-07T08:01:48.525Z", + "live": true + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsListAcceptingProcessesGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsListAcceptingProcessesGet.json index 402f531323ae..e7b79dcf862c 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsListAcceptingProcessesGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsListAcceptingProcessesGet.json @@ -1,104 +1,108 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e", - "portName": "b-c0a80101_8000", - "startTime": "2018-01-08T18:37:39.936Z", - "endTime": "2018-01-08T18:37:54.936Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e" - }, - "executableName": "process", - "displayName": "process", - "startTime": "2018-01-08T18:27:39.936Z", - "group": "myproductname", - "details": { - "persistentKey": "1a502634-e7ca-4c56-b10d-545f60623ef2", - "poolId": 12, - "firstPid": 10, - "description": "mydescription", - "companyName": "mycompany", - "internalName": "myinternalname", - "productName": "myproductname", - "productVersion": "3.3.3.3", - "fileVersion": "1.2.3.4", - "commandLine": "cmdline", - "executablePath": "mypath", - "workingDirectory": "myworkingdir", - "services": [{ - "name": "foosvc", - "displayName": "Foo Service" - } - ], - "zoneName": "LinuxOnlyZone" - }, - "user": { - "userName": "myuser", - "userDomain": "mydomain" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e/processes/p-e832fd7598b913c9f6d751b977028248c48c35dc", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-e832fd7598b913c9f6d751b977028248c48c35dc" - }, { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e" - }, - "executableName": "process", - "displayName": "process", - "startTime": "2018-01-08T18:27:39.936Z", - "group": "myproductname", - "details": { - "persistentKey": "677cde70-5589-41f3-89b8-4b866ed5c86e", - "poolId": 12, - "firstPid": 10, - "description": "mydescription", - "companyName": "mycompany", - "internalName": "myinternalname", - "productName": "myproductname", - "productVersion": "3.3.3.3", - "fileVersion": "1.2.3.4", - "commandLine": "cmdline", - "executablePath": "mypath", - "workingDirectory": "myworkingdir", - "services": [{ - "name": "foosvc", - "displayName": "Foo Service" - } - ], - "zoneName": "LinuxOnlyZone" - }, - "user": { - "userName": "myuser", - "userDomain": "mydomain" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e/processes/p-fa195e268682d998e42071ff3346c09f0af4f9e8", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-fa195e268682d998e42071ff3346c09f0af4f9e8" - } - ] - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e", + "portName": "b-c0a80101_8000", + "startTime": "2018-01-08T18:37:39.936Z", + "endTime": "2018-01-08T18:37:54.936Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e" + }, + "executableName": "process", + "displayName": "process", + "startTime": "2018-01-08T18:27:39.936Z", + "group": "myproductname", + "details": { + "persistentKey": "1a502634-e7ca-4c56-b10d-545f60623ef2", + "poolId": 12, + "firstPid": 10, + "description": "mydescription", + "companyName": "mycompany", + "internalName": "myinternalname", + "productName": "myproductname", + "productVersion": "3.3.3.3", + "fileVersion": "1.2.3.4", + "commandLine": "cmdline", + "executablePath": "mypath", + "workingDirectory": "myworkingdir", + "services": [ + { + "name": "foosvc", + "displayName": "Foo Service" + } + ], + "zoneName": "LinuxOnlyZone" + }, + "user": { + "userName": "myuser", + "userDomain": "mydomain" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e/processes/p-e832fd7598b913c9f6d751b977028248c48c35dc", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-e832fd7598b913c9f6d751b977028248c48c35dc" + }, + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e" + }, + "executableName": "process", + "displayName": "process", + "startTime": "2018-01-08T18:27:39.936Z", + "group": "myproductname", + "details": { + "persistentKey": "677cde70-5589-41f3-89b8-4b866ed5c86e", + "poolId": 12, + "firstPid": 10, + "description": "mydescription", + "companyName": "mycompany", + "internalName": "myinternalname", + "productName": "myproductname", + "productVersion": "3.3.3.3", + "fileVersion": "1.2.3.4", + "commandLine": "cmdline", + "executablePath": "mypath", + "workingDirectory": "myworkingdir", + "services": [ + { + "name": "foosvc", + "displayName": "Foo Service" + } + ], + "zoneName": "LinuxOnlyZone" + }, + "user": { + "userName": "myuser", + "userDomain": "mydomain" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1bc28d72-0e81-4aff-b1e3-ae12e8da155e/processes/p-fa195e268682d998e42071ff3346c09f0af4f9e8", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-fa195e268682d998e42071ff3346c09f0af4f9e8" + } + ] + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsListConnectionsGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsListConnectionsGet.json index dfc01a66dbd9..8889a47631c7 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsListConnectionsGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Ports/SMMachinesPortsListConnectionsGet.json @@ -1,116 +1,118 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "portName": "b-c0a8010a_10000", - "startTime": "2018-01-08T23:05:16.7985488Z", - "endTime": "2018-01-08T23:07:16.7985488Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-9b60b5e7-fb98-4864-9a1f-51d26407f99b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-9b60b5e7-fb98-4864-9a1f-51d26407f99b" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-9b60b5e7-fb98-4864-9a1f-51d26407f99b/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, - "ipAddress": "192.168.1.10", - "portNumber": 10000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-c0a8010a_10000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_10000" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-9b60b5e7-fb98-4864-9a1f-51d26407f99b@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-9b60b5e7-fb98-4864-9a1f-51d26407f99b@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:clientgroup", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-c0a8010a_10000", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-c0a8010a_10000" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, - "ipAddress": "192.168.1.10", - "portNumber": 10000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-c0a8010a_10000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a8010a_10000" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000" - } - ] - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "portName": "b-c0a8010a_10000", + "startTime": "2018-01-08T23:05:16.7985488Z", + "endTime": "2018-01-08T23:07:16.7985488Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-9b60b5e7-fb98-4864-9a1f-51d26407f99b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-9b60b5e7-fb98-4864-9a1f-51d26407f99b" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-9b60b5e7-fb98-4864-9a1f-51d26407f99b/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + "ipAddress": "192.168.1.10", + "portNumber": 10000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-c0a8010a_10000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_10000" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-9b60b5e7-fb98-4864-9a1f-51d26407f99b@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-9b60b5e7-fb98-4864-9a1f-51d26407f99b@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:clientgroup", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-c0a8010a_10000", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-c0a8010a_10000" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + "ipAddress": "192.168.1.10", + "portNumber": 10000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-c0a8010a_10000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a8010a_10000" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a8010a_10000" + } + ] + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesListProcessesGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesListProcessesGet.json index 0948c4f40adb..172dbdea7fc5 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesListProcessesGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesListProcessesGet.json @@ -1,166 +1,169 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-36b83664-0822-4fb3-99a3-8332754f3eae", - "live": false, - "timestamp": "2018-01-07T07:45:45.1930000Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-36b83664-0822-4fb3-99a3-8332754f3eae" - }, - "executableName": "foo-bar", - "displayName": "foo-bar", - "startTime": "2018-01-10T21:04:56.8518962Z", - "role": "webServer", - "group": "Foo-bar Suite", - "details": { - "persistentKey": "77228e39-7348-4fac-8ce5-b83c7bcc52bc", - "poolId": 345, - "firstPid": 456, - "description": "A special process", - "companyName": "Microsoft", - "internalName": "foo-bar-internal", - "productName": "Foo-bar Suite", - "productVersion": "3.0.0.10", - "fileVersion": "1.2.3.4", - "commandLine": "foo-bar.exe -f -g -h do something", - "executablePath": "c:\\Program Files\\foobar\\bin\\boo-bar.exe", - "workingDirectory": "c:\\temp", - "zoneName": "zone name" - }, - "user": { - "userName": "SecretUser", - "userDomain": "REDMOND" - }, - "hosting": { - "kind": "provider:azure", - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "f4849088-01a2-420e-9709-d0b48ae31d87", - "roleName": "MyRoleName", - "roleType": "web" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae/processes/p-bbf99526b8fc5e7ee4f75568958a040d08489160", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-bbf99526b8fc5e7ee4f75568958a040d08489160" - }, { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-36b83664-0822-4fb3-99a3-8332754f3eae" - }, - "executableName": "foo-bar", - "displayName": "foo-bar", - "startTime": "2018-01-10T21:04:56.8518962Z", - "role": "webServer", - "group": "Foo-bar Suite", - "details": { - "persistentKey": "77228e39-7348-4fac-8ce5-b83c7bcc52bc", - "poolId": 345, - "firstPid": 456, - "description": "A special process", - "companyName": "Microsoft", - "internalName": "foo-bar-internal", - "productName": "Foo-bar Suite", - "productVersion": "3.0.0.10", - "fileVersion": "1.2.3.4", - "commandLine": "foo-bar.exe -f -g -h do something", - "executablePath": "c:\\Program Files\\foobar\\bin\\boo-bar.exe", - "workingDirectory": "c:\\temp", - "zoneName": "zone name" - }, - "user": { - "userName": "SecretUser", - "userDomain": "REDMOND" - }, - "hosting": { - "kind": "provider:azure", - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#2", - "deployment": "f4849088-01a2-420e-9709-d0b48ae31d87", - "roleName": "MyRoleName", - "roleType": "web" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae/processes/p-bbf99526b8fc5e7ee4f75568958a040d08489161", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-bbf99526b8fc5e7ee4f75568958a040d08489161" - }, { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-36b83664-0822-4fb3-99a3-8332754f3eae" - }, - "executableName": "foo-bar", - "displayName": "foo-bar", - "startTime": "2018-01-10T21:04:56.8518962Z", - "role": "webServer", - "group": "Foo-bar Suite", - "details": { - "persistentKey": "77228e39-7348-4fac-8ce5-b83c7bcc52bc", - "poolId": 345, - "firstPid": 456, - "description": "A special process", - "companyName": "Microsoft", - "internalName": "foo-bar-internal", - "productName": "Foo-bar Suite", - "productVersion": "3.0.0.10", - "fileVersion": "1.2.3.4", - "commandLine": "foo-bar.exe -f -g -h do something", - "executablePath": "c:\\Program Files\\foobar\\bin\\boo-bar.exe", - "workingDirectory": "c:\\temp", - "zoneName": "zone name" - }, - "user": { - "userName": "SecretUser", - "userDomain": "REDMOND" - }, - "hosting": { - "kind": "provider:azure", - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#3", - "deployment": "f4849088-01a2-420e-9709-d0b48ae31d87", - "roleName": "MyRoleName", - "roleType": "web" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae/processes/p-bbf99526b8fc5e7ee4f75568958a040d08489162", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-bbf99526b8fc5e7ee4f75568958a040d08489162" - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-36b83664-0822-4fb3-99a3-8332754f3eae", + "live": false, + "timestamp": "2018-01-07T07:45:45.1930000Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-36b83664-0822-4fb3-99a3-8332754f3eae" + }, + "executableName": "foo-bar", + "displayName": "foo-bar", + "startTime": "2018-01-10T21:04:56.8518962Z", + "role": "webServer", + "group": "Foo-bar Suite", + "details": { + "persistentKey": "77228e39-7348-4fac-8ce5-b83c7bcc52bc", + "poolId": 345, + "firstPid": 456, + "description": "A special process", + "companyName": "Microsoft", + "internalName": "foo-bar-internal", + "productName": "Foo-bar Suite", + "productVersion": "3.0.0.10", + "fileVersion": "1.2.3.4", + "commandLine": "foo-bar.exe -f -g -h do something", + "executablePath": "c:\\Program Files\\foobar\\bin\\boo-bar.exe", + "workingDirectory": "c:\\temp", + "zoneName": "zone name" + }, + "user": { + "userName": "SecretUser", + "userDomain": "REDMOND" + }, + "hosting": { + "kind": "provider:azure", + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "f4849088-01a2-420e-9709-d0b48ae31d87", + "roleName": "MyRoleName", + "roleType": "web" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae/processes/p-bbf99526b8fc5e7ee4f75568958a040d08489160", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-bbf99526b8fc5e7ee4f75568958a040d08489160" + }, + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-36b83664-0822-4fb3-99a3-8332754f3eae" + }, + "executableName": "foo-bar", + "displayName": "foo-bar", + "startTime": "2018-01-10T21:04:56.8518962Z", + "role": "webServer", + "group": "Foo-bar Suite", + "details": { + "persistentKey": "77228e39-7348-4fac-8ce5-b83c7bcc52bc", + "poolId": 345, + "firstPid": 456, + "description": "A special process", + "companyName": "Microsoft", + "internalName": "foo-bar-internal", + "productName": "Foo-bar Suite", + "productVersion": "3.0.0.10", + "fileVersion": "1.2.3.4", + "commandLine": "foo-bar.exe -f -g -h do something", + "executablePath": "c:\\Program Files\\foobar\\bin\\boo-bar.exe", + "workingDirectory": "c:\\temp", + "zoneName": "zone name" + }, + "user": { + "userName": "SecretUser", + "userDomain": "REDMOND" + }, + "hosting": { + "kind": "provider:azure", + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#2", + "deployment": "f4849088-01a2-420e-9709-d0b48ae31d87", + "roleName": "MyRoleName", + "roleType": "web" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae/processes/p-bbf99526b8fc5e7ee4f75568958a040d08489161", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-bbf99526b8fc5e7ee4f75568958a040d08489161" + }, + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-36b83664-0822-4fb3-99a3-8332754f3eae" + }, + "executableName": "foo-bar", + "displayName": "foo-bar", + "startTime": "2018-01-10T21:04:56.8518962Z", + "role": "webServer", + "group": "Foo-bar Suite", + "details": { + "persistentKey": "77228e39-7348-4fac-8ce5-b83c7bcc52bc", + "poolId": 345, + "firstPid": 456, + "description": "A special process", + "companyName": "Microsoft", + "internalName": "foo-bar-internal", + "productName": "Foo-bar Suite", + "productVersion": "3.0.0.10", + "fileVersion": "1.2.3.4", + "commandLine": "foo-bar.exe -f -g -h do something", + "executablePath": "c:\\Program Files\\foobar\\bin\\boo-bar.exe", + "workingDirectory": "c:\\temp", + "zoneName": "zone name" + }, + "user": { + "userName": "SecretUser", + "userDomain": "REDMOND" + }, + "hosting": { + "kind": "provider:azure", + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#3", + "deployment": "f4849088-01a2-420e-9709-d0b48ae31d87", + "roleName": "MyRoleName", + "roleType": "web" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae/processes/p-bbf99526b8fc5e7ee4f75568958a040d08489162", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-bbf99526b8fc5e7ee4f75568958a040d08489162" + } + ] + } + } + } +} diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesGetGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesGetGet.json index 341fb6db6f79..881653e1c630 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesGetGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesGetGet.json @@ -1,65 +1,65 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-36b83664-0822-4fb3-99a3-8332754f3eae", - "processName": "p-bbf99526b8fc5e7ee4f75568958a040d08489160", - "timestamp": "2018-01-10T22:45:45.1930000Z" - }, - "responses": { - "200": { - "body": { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-36b83664-0822-4fb3-99a3-8332754f3eae" - }, - "executableName": "foo-bar", - "displayName": "foo-bar", - "startTime": "2018-01-10T21:04:56.8518962Z", - "role": "webServer", - "group": "Foo-bar Suite", - "details": { - "persistentKey": "77228e39-7348-4fac-8ce5-b83c7bcc52bc", - "poolId": 345, - "firstPid": 456, - "description": "A special process", - "companyName": "Microsoft", - "internalName": "foo-bar-internal", - "productName": "Foo-bar Suite", - "productVersion": "3.0.0.10", - "fileVersion": "1.2.3.4", - "commandLine": "foo-bar.exe -f -g -h do something", - "executablePath": "c:\\Program Files\\foobar\\bin\\boo-bar.exe", - "workingDirectory": "c:\\temp", - "zoneName": "zone name" - }, - "user": { - "userName": "SecretUser", - "userDomain": "REDMOND" - }, - "hosting": { - "kind": "provider:azure", - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "f4849088-01a2-420e-9709-d0b48ae31d87", - "roleName": "MyRoleName", - "roleType": "web" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae/processes/p-bbf99526b8fc5e7ee4f75568958a040d08489160", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-bbf99526b8fc5e7ee4f75568958a040d08489160" - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-36b83664-0822-4fb3-99a3-8332754f3eae", + "processName": "p-bbf99526b8fc5e7ee4f75568958a040d08489160", + "timestamp": "2018-01-10T22:45:45.1930000Z" + }, + "responses": { + "200": { + "body": { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-36b83664-0822-4fb3-99a3-8332754f3eae" + }, + "executableName": "foo-bar", + "displayName": "foo-bar", + "startTime": "2018-01-10T21:04:56.8518962Z", + "role": "webServer", + "group": "Foo-bar Suite", + "details": { + "persistentKey": "77228e39-7348-4fac-8ce5-b83c7bcc52bc", + "poolId": 345, + "firstPid": 456, + "description": "A special process", + "companyName": "Microsoft", + "internalName": "foo-bar-internal", + "productName": "Foo-bar Suite", + "productVersion": "3.0.0.10", + "fileVersion": "1.2.3.4", + "commandLine": "foo-bar.exe -f -g -h do something", + "executablePath": "c:\\Program Files\\foobar\\bin\\boo-bar.exe", + "workingDirectory": "c:\\temp", + "zoneName": "zone name" + }, + "user": { + "userName": "SecretUser", + "userDomain": "REDMOND" + }, + "hosting": { + "kind": "provider:azure", + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "f4849088-01a2-420e-9709-d0b48ae31d87", + "roleName": "MyRoleName", + "roleType": "web" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/A9C800F7-342E-45B7-8EB4-6C9A6F7FE466/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/machines/m-36b83664-0822-4fb3-99a3-8332754f3eae/processes/p-bbf99526b8fc5e7ee4f75568958a040d08489160", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-bbf99526b8fc5e7ee4f75568958a040d08489160" + } + } + } +} diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesGetLivenessGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesGetLivenessGet.json index 825ed9dde3ff..02159e43533e 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesGetLivenessGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesGetLivenessGet.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-36b83664-0822-4fb3-99a3-8332754f3eae", - "processName": "p-bbf99526b8fc5e7ee4f75568958a040d08489160", - "startTime": "2018-01-07T07:07:27.6026938Z", - "endTime": "2018-01-07T07:09:27.6026938Z" - }, - "responses": { - "200": { - "body": { - "startTime": "2018-01-07T07:07:27.6026938Z", - "endTime": "2018-01-07T07:09:27.6026938Z", - "live": true - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-36b83664-0822-4fb3-99a3-8332754f3eae", + "processName": "p-bbf99526b8fc5e7ee4f75568958a040d08489160", + "startTime": "2018-01-07T07:07:27.6026938Z", + "endTime": "2018-01-07T07:09:27.6026938Z" + }, + "responses": { + "200": { + "body": { + "startTime": "2018-01-07T07:07:27.6026938Z", + "endTime": "2018-01-07T07:09:27.6026938Z", + "live": true + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesListAcceptingPortsGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesListAcceptingPortsGet.json index 4a6ce01052c0..f2795b3748b6 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesListAcceptingPortsGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesListAcceptingPortsGet.json @@ -1,71 +1,74 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "processName": "p-37d1761114556be465c44e2300bda03178a6189e", - "startTime": "2018-01-07T08:01:48.525Z", - "endTime": "2018-01-07T08:01:48.525Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" - }, - "displayName": ":8000", - "ipAddress": "192.168.1.1", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_8000" - }, { - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" - }, - "displayName": ":8001", - "ipAddress": "192.168.1.1", - "portNumber": 8001 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8001", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_8001" - }, { - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" - }, - "displayName": ":8002", - "ipAddress": "192.168.1.1", - "portNumber": 8002 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8002", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_8002" - } - ] - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "processName": "p-37d1761114556be465c44e2300bda03178a6189e", + "startTime": "2018-01-07T08:01:48.525Z", + "endTime": "2018-01-07T08:01:48.525Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" + }, + "displayName": ":8000", + "ipAddress": "192.168.1.1", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_8000" + }, + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" + }, + "displayName": ":8001", + "ipAddress": "192.168.1.1", + "portNumber": 8001 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8001", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_8001" + }, + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-999066c5-38c5-4f2f-9ce0-51d738cdc432" + }, + "displayName": ":8002", + "ipAddress": "192.168.1.1", + "portNumber": 8002 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-999066c5-38c5-4f2f-9ce0-51d738cdc432/ports/b-c0a80101_8002", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_8002" + } + ] + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesListConnectionsGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesListConnectionsGet.json index 8fcbec4b9879..f59ea27a5164 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesListConnectionsGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/Processes/SMMachinesProcessesListConnectionsGet.json @@ -1,220 +1,224 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "processName": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", - "startTime": "2018-01-07T08:09:15.1682041Z", - "endTime": "2018-01-07T08:11:15.1682041Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1010b884-f743-4292-abde-30ebfd0ae560", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-1010b884-f743-4292-abde-30ebfd0ae560" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1010b884-f743-4292-abde-30ebfd0ae560/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, - "ipAddress": "192.168.0.1", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-c0a80001_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80001_8000" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-1010b884-f743-4292-abde-30ebfd0ae560@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a80001_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-1010b884-f743-4292-abde-30ebfd0ae560@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a80001_8000" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:clientgroup", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!p!p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!p!p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, - "ipAddress": "192.168.0.1", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-c0a80001_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80001_8000" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a80001_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a80001_8000" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - }, - "ipAddress": "1.0.0.1", - "portNumber": 1000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-01000001_1000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-01000001_1000" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-01000001_1000", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-01000001_1000" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-573847EE-4D31-4936-A8B2-771372806C80" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80/processes/p-f107e3f1cb5d792e6abfed7832ba4e864f995cee", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-f107e3f1cb5d792e6abfed7832ba4e864f995cee" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-573847EE-4D31-4936-A8B2-771372806C80" - }, - "ipAddress": "1.0.0.1", - "portNumber": 1001 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80/ports/b-01000001_1001", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-01000001_1001" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-573847EE-4D31-4936-A8B2-771372806C80@p@p-f107e3f1cb5d792e6abfed7832ba4e864f995cee!m@m-573847EE-4D31-4936-A8B2-771372806C80@b@b-01000001_1001", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-573847EE-4D31-4936-A8B2-771372806C80@p@p-f107e3f1cb5d792e6abfed7832ba4e864f995cee!m@m-573847EE-4D31-4936-A8B2-771372806C80@b@b-01000001_1001" - } - ] - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "processName": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", + "startTime": "2018-01-07T08:09:15.1682041Z", + "endTime": "2018-01-07T08:11:15.1682041Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1010b884-f743-4292-abde-30ebfd0ae560", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-1010b884-f743-4292-abde-30ebfd0ae560" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1010b884-f743-4292-abde-30ebfd0ae560/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + "ipAddress": "192.168.0.1", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-c0a80001_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80001_8000" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-1010b884-f743-4292-abde-30ebfd0ae560@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a80001_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-1010b884-f743-4292-abde-30ebfd0ae560@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a80001_8000" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:clientgroup", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!p!p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!p!p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + "ipAddress": "192.168.0.1", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-c0a80001_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80001_8000" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a80001_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-c0a80001_8000" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + }, + "ipAddress": "1.0.0.1", + "portNumber": 1000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-01000001_1000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-01000001_1000" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-01000001_1000", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-01000001_1000" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-573847EE-4D31-4936-A8B2-771372806C80" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80/processes/p-f107e3f1cb5d792e6abfed7832ba4e864f995cee", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-f107e3f1cb5d792e6abfed7832ba4e864f995cee" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-573847EE-4D31-4936-A8B2-771372806C80" + }, + "ipAddress": "1.0.0.1", + "portNumber": 1001 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80/ports/b-01000001_1001", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-01000001_1001" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-573847EE-4D31-4936-A8B2-771372806C80@p@p-f107e3f1cb5d792e6abfed7832ba4e864f995cee!m@m-573847EE-4D31-4936-A8B2-771372806C80@b@b-01000001_1001", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f1dd514e73cda65d9a19a977aa4a9f6959427ab0!m@m-573847EE-4D31-4936-A8B2-771372806C80@p@p-f107e3f1cb5d792e6abfed7832ba4e864f995cee!m@m-573847EE-4D31-4936-A8B2-771372806C80@b@b-01000001_1001" + } + ] + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesGetGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesGetGet.json index 33181bb6f6a7..add7cd1aabc6 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesGetGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesGetGet.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "timestamp": "2018-01-07T07:01:16.1556059Z" - }, - "responses": { - "200": { - "body": { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "unknown", - "displayName": "my machine" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "timestamp": "2018-01-07T07:01:16.1556059Z" + }, + "responses": { + "200": { + "body": { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "unknown", + "displayName": "my machine" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesGetLivenessGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesGetLivenessGet.json index 4c2f6a7308f0..2d64f367a896 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesGetLivenessGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesGetLivenessGet.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "startTime": "2018-01-07T07:07:27.6026938Z", - "endTime": "2018-01-07T07:09:27.6026938Z" - }, - "responses": { - "200": { - "body": { - "startTime": "2018-01-07T07:07:27.6026938Z", - "endTime": "2018-01-07T07:09:27.6026938Z", - "live": true - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "startTime": "2018-01-07T07:07:27.6026938Z", + "endTime": "2018-01-07T07:09:27.6026938Z" + }, + "responses": { + "200": { + "body": { + "startTime": "2018-01-07T07:07:27.6026938Z", + "endTime": "2018-01-07T07:09:27.6026938Z", + "live": true + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesListByWorkspaceGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesListByWorkspaceGet.json index 9316f9051f93..e2db72992d3b 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesListByWorkspaceGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesListByWorkspaceGet.json @@ -1,1279 +1,1461 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "live": false, - "timestamp": "2018-01-05T21:36:07.009Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:36:07.009Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "0ec98f01-4f24-4a46-abfa-278571e916dc", - "dependencyAgentId": "d742e84a-e114-4b3d-b3ba-160d5cf4129b", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "cca1e83c-e0b8-454a-b39c-581ef1211c01", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "3eaa0b8c-65e4-4c9f-8cb8-d77b9bce910f", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "60bf38dd-4204-40ac-b4f6-b94065e957ea" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0ec98f01-4f24-4a46-abfa-278571e916dc", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-0ec98f01-4f24-4a46-abfa-278571e916dc" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:30:47.913Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "1e295878-4b4c-46ac-91d1-08e5fbd65361", - "dependencyAgentId": "3e285a31-7988-423b-a55b-8f5610ff0b12", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "8f19c2b2-2a98-42cf-b1bc-751fee767fc9", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "7b375bd0-69d7-4088-8211-e71c30b41f10", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "4bf527ba-20cc-4537-951d-c78664e61938" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1e295878-4b4c-46ac-91d1-08e5fbd65361", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-1e295878-4b4c-46ac-91d1-08e5fbd65361" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:30:47.913Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "6277eb91-c8de-4696-9f5e-d0658261422c", - "dependencyAgentId": "9d31bd18-720a-4ff9-8952-bdfec7872421", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "cd5943b5-d731-4389-a315-cb723fc2e125", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "45eb057c-dcd9-4a98-ba4a-1f20e89cd661", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "db085678-b544-497c-bde2-165f9ee269fa" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-6277eb91-c8de-4696-9f5e-d0658261422c", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-6277eb91-c8de-4696-9f5e-d0658261422c" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:30:22.372Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "8811e3c4-15db-45d3-8b76-23da80efeff3", - "dependencyAgentId": "a04d8f0b-df9a-46cb-a212-29c7576fd75d", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "79e84f1b-2172-490e-9fd4-6119d6678d95", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "f24d41a8-2f09-4f29-b2b1-65a4a7277297", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "832578ab-2d97-4412-babd-4976d3f144c2" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-8811e3c4-15db-45d3-8b76-23da80efeff3", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-8811e3c4-15db-45d3-8b76-23da80efeff3" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:30:47.913Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "55d6b873-b60c-4091-b735-0077f04c3b88", - "dependencyAgentId": "125f3f0b-1e2d-4045-a6d9-1cd12fb96b61", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "e1bf385f-b092-4a6d-abc4-d2a106fda204", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "4687fc36-e40b-4c40-bdee-5727367c0777", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "e1e97460-3f12-4511-b885-c561a1476217" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-55d6b873-b60c-4091-b735-0077f04c3b88", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-55d6b873-b60c-4091-b735-0077f04c3b88" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:30:22.372Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "29f030f7-d41c-4474-ad09-2271cbf18cfb", - "dependencyAgentId": "5e05f099-8ecd-44d3-8147-08088270f1c8", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "365102e6-1843-4f88-99b2-ec398c2b9ed2", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "4d912177-543c-4539-a185-3b47c52c6ca4", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "7a9dea89-0dfa-45d8-b984-a0a645c3b6a0" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-29f030f7-d41c-4474-ad09-2271cbf18cfb", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-29f030f7-d41c-4474-ad09-2271cbf18cfb" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:30:47.913Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "f39c1cbe-1d5d-4c3f-8963-26a00b57b099", - "dependencyAgentId": "aa0be2b5-5faf-43d2-a060-de7d7fe37c4b", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "623b84ba-0219-41af-b839-91acc23ec8e6", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "045ed792-6d9f-4798-94a1-9b6e32f5449a", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "e6ab7207-0446-4a61-af18-a2f2fc43ebcb" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f39c1cbe-1d5d-4c3f-8963-26a00b57b099", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f39c1cbe-1d5d-4c3f-8963-26a00b57b099" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:36:07.009Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "a57565a4-beaf-4c87-8a36-8d209d14cf9c", - "dependencyAgentId": "5471c74d-7d9d-4e18-b23f-fc523f5e0d68", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "f4d4bd5e-11ba-4971-8c5c-eb4553042b43", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "92e6c240-ba09-45ab-8bb3-bcc7b233c197", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "d5563a08-0d72-4e56-80a1-8c0d3888fa72" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-a57565a4-beaf-4c87-8a36-8d209d14cf9c", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-a57565a4-beaf-4c87-8a36-8d209d14cf9c" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "new name", - "computerName": "new name", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:30:47.913Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "92371907-1ea4-4e4b-9538-8754876c1fa3", - "dependencyAgentId": "fb8ebef9-e01a-4a00-a264-879fe4b33632", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "101bfb0e-75d1-4c5b-821e-987423463e6b", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "a241809b-50d8-4f8c-960d-75ec99cc79d9", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "d2edc020-02f5-4327-80ea-4443db018fe4" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-92371907-1ea4-4e4b-9538-8754876c1fa3", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-92371907-1ea4-4e4b-9538-8754876c1fa3" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:36:07.009Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "fb7d798d-ecbc-4cf8-9ad6-d6dde35cdb77", - "dependencyAgentId": "f068fe75-47d9-4c76-801a-0781893c250d", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "382bfc03-ece0-48e8-88dd-0c0049b0b093", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "5fc7b841-843c-4391-b5b6-5bc7e8e25028", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "52b6a8ca-3b0c-4ebf-a1f6-fec87b5b59c7" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-fb7d798d-ecbc-4cf8-9ad6-d6dde35cdb77", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-fb7d798d-ecbc-4cf8-9ad6-d6dde35cdb77" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:30:22.372Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "dcdbd51d-e423-4667-bce3-c1f78f0bec83", - "dependencyAgentId": "901407a9-0047-4b2d-8190-e546189fa1c8", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "e4e28557-bb79-4add-bd9a-adc4b1856aae", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "bd88f6a9-ead8-414a-a91c-a47fbeddb3d5", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "a344f76b-98d7-4d83-8a11-7ef9b04c6563" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-dcdbd51d-e423-4667-bce3-c1f78f0bec83", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-dcdbd51d-e423-4667-bce3-c1f78f0bec83" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:30:47.913Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "10cb867d-1b73-4b39-a9cf-31cdd2b00dab", - "dependencyAgentId": "e837d606-09ae-41fc-bc9a-5e8407d88942", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "3d8e1902-1875-428c-98d3-6fb02c96af47", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "594fd238-0d97-444b-a8fd-2e5087e3e97c", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "a6efc921-6c5e-4455-a83e-409a380d800f" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-10cb867d-1b73-4b39-a9cf-31cdd2b00dab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-10cb867d-1b73-4b39-a9cf-31cdd2b00dab" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "virtual", - "displayName": "name1", - "computerName": "name1", - "fullyQualifiedDomainName": "name1.foo.com", - "bootTime": "2018-01-05T21:30:47.913Z", - "timezone": { - "fullName": "some zone" - }, - "agent": { - "agentId": "e6ad2c87-c7e9-4663-bca2-ec5fd1e2d3ef", - "dependencyAgentId": "07a0ba0f-90c3-4d9b-a1bf-d1cf636eeb80", - "dependencyAgentVersion": "2.2.2.2", - "dependencyAgentRevision": "1234", - "rebootStatus": "rebooted", - "clockGranularity": 1 - }, - "resources": { - "physicalMemory": 4096, - "cpus": 2, - "cpuSpeed": 2000, - "cpuSpeedAccuracy": "actual" - }, - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "1.1.1.1", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.3", - "subnetMask": "255.255.255.0" - }, { - "ipAddress": "1.1.1.4", - "subnetMask": "255.255.255.0" - } - ], - "ipv6Interfaces": [{ - "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" - } - ], - "defaultIpv4Gateways": ["1.1.1.254", "1.1.1.255"], - "macAddresses": ["64:00:6A:65:E4:71"], - "dnsNames": ["name1", "name2", "name3"] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Microsoft Windows [Version 10.0.10586]", - "bitness": "64bit" - }, - "virtualMachine": { - "virtualMachineType": "hyperv", - "nativeMachineId": "vm-id", - "virtualMachineName": "vm-name-1", - "nativeHostMachineId": "physical-machine-id" - }, - "hosting": { - "kind": "provider:azure", - "vmId": "12345", - "location": "Earth", - "name": "AHostedVm", - "size": "SuperBig", - "updateDomain": "1", - "faultDomain": "1", - "subscriptionId": "123123", - "resourceGroup": "myResourceGroup", - "resourceId": "TestResourceId", - "image": { - "publisher": "AnImagePublisher", - "offering": "SuperFast", - "sku": "10101010", - "version": "1.0" - }, - "cloudService": { - "name": "MyCloudService", - "instanceId": "Instance#1", - "deployment": "72932bbb-6c12-4f06-8622-f11942aede02", - "roleName": "MyRoleName", - "roleType": "web" - }, - "vmScaleSet": { - "name": "MyVMSS", - "instanceId": "VmmssInstance#1", - "deployment": "4ae328aa-2638-4f60-9dbe-0384b2a33b3d", - "resourceId": "TestResourceId" - }, - "serviceFabricCluster": { - "name": "MyClusterName", - "clusterId": "6cbe41c5-4034-4376-b90d-4edbfc9d9375" - }, - "provider": "azure" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-e6ad2c87-c7e9-4663-bca2-ec5fd1e2d3ef", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-e6ad2c87-c7e9-4663-bca2-ec5fd1e2d3ef" - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "live": false, + "timestamp": "2018-01-05T21:36:07.009Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:36:07.009Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "0ec98f01-4f24-4a46-abfa-278571e916dc", + "dependencyAgentId": "d742e84a-e114-4b3d-b3ba-160d5cf4129b", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "cca1e83c-e0b8-454a-b39c-581ef1211c01", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "3eaa0b8c-65e4-4c9f-8cb8-d77b9bce910f", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "60bf38dd-4204-40ac-b4f6-b94065e957ea" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0ec98f01-4f24-4a46-abfa-278571e916dc", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-0ec98f01-4f24-4a46-abfa-278571e916dc" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:30:47.913Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "1e295878-4b4c-46ac-91d1-08e5fbd65361", + "dependencyAgentId": "3e285a31-7988-423b-a55b-8f5610ff0b12", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "8f19c2b2-2a98-42cf-b1bc-751fee767fc9", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "7b375bd0-69d7-4088-8211-e71c30b41f10", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "4bf527ba-20cc-4537-951d-c78664e61938" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-1e295878-4b4c-46ac-91d1-08e5fbd65361", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-1e295878-4b4c-46ac-91d1-08e5fbd65361" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:30:47.913Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "6277eb91-c8de-4696-9f5e-d0658261422c", + "dependencyAgentId": "9d31bd18-720a-4ff9-8952-bdfec7872421", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "cd5943b5-d731-4389-a315-cb723fc2e125", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "45eb057c-dcd9-4a98-ba4a-1f20e89cd661", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "db085678-b544-497c-bde2-165f9ee269fa" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-6277eb91-c8de-4696-9f5e-d0658261422c", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-6277eb91-c8de-4696-9f5e-d0658261422c" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:30:22.372Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "8811e3c4-15db-45d3-8b76-23da80efeff3", + "dependencyAgentId": "a04d8f0b-df9a-46cb-a212-29c7576fd75d", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "79e84f1b-2172-490e-9fd4-6119d6678d95", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "f24d41a8-2f09-4f29-b2b1-65a4a7277297", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "832578ab-2d97-4412-babd-4976d3f144c2" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-8811e3c4-15db-45d3-8b76-23da80efeff3", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-8811e3c4-15db-45d3-8b76-23da80efeff3" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:30:47.913Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "55d6b873-b60c-4091-b735-0077f04c3b88", + "dependencyAgentId": "125f3f0b-1e2d-4045-a6d9-1cd12fb96b61", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "e1bf385f-b092-4a6d-abc4-d2a106fda204", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "4687fc36-e40b-4c40-bdee-5727367c0777", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "e1e97460-3f12-4511-b885-c561a1476217" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-55d6b873-b60c-4091-b735-0077f04c3b88", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-55d6b873-b60c-4091-b735-0077f04c3b88" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:30:22.372Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "29f030f7-d41c-4474-ad09-2271cbf18cfb", + "dependencyAgentId": "5e05f099-8ecd-44d3-8147-08088270f1c8", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "365102e6-1843-4f88-99b2-ec398c2b9ed2", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "4d912177-543c-4539-a185-3b47c52c6ca4", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "7a9dea89-0dfa-45d8-b984-a0a645c3b6a0" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-29f030f7-d41c-4474-ad09-2271cbf18cfb", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-29f030f7-d41c-4474-ad09-2271cbf18cfb" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:30:47.913Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "f39c1cbe-1d5d-4c3f-8963-26a00b57b099", + "dependencyAgentId": "aa0be2b5-5faf-43d2-a060-de7d7fe37c4b", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "623b84ba-0219-41af-b839-91acc23ec8e6", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "045ed792-6d9f-4798-94a1-9b6e32f5449a", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "e6ab7207-0446-4a61-af18-a2f2fc43ebcb" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f39c1cbe-1d5d-4c3f-8963-26a00b57b099", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f39c1cbe-1d5d-4c3f-8963-26a00b57b099" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:36:07.009Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "a57565a4-beaf-4c87-8a36-8d209d14cf9c", + "dependencyAgentId": "5471c74d-7d9d-4e18-b23f-fc523f5e0d68", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "f4d4bd5e-11ba-4971-8c5c-eb4553042b43", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "92e6c240-ba09-45ab-8bb3-bcc7b233c197", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "d5563a08-0d72-4e56-80a1-8c0d3888fa72" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-a57565a4-beaf-4c87-8a36-8d209d14cf9c", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-a57565a4-beaf-4c87-8a36-8d209d14cf9c" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "new name", + "computerName": "new name", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:30:47.913Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "92371907-1ea4-4e4b-9538-8754876c1fa3", + "dependencyAgentId": "fb8ebef9-e01a-4a00-a264-879fe4b33632", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "101bfb0e-75d1-4c5b-821e-987423463e6b", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "a241809b-50d8-4f8c-960d-75ec99cc79d9", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "d2edc020-02f5-4327-80ea-4443db018fe4" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-92371907-1ea4-4e4b-9538-8754876c1fa3", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-92371907-1ea4-4e4b-9538-8754876c1fa3" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:36:07.009Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "fb7d798d-ecbc-4cf8-9ad6-d6dde35cdb77", + "dependencyAgentId": "f068fe75-47d9-4c76-801a-0781893c250d", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "382bfc03-ece0-48e8-88dd-0c0049b0b093", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "5fc7b841-843c-4391-b5b6-5bc7e8e25028", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "52b6a8ca-3b0c-4ebf-a1f6-fec87b5b59c7" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-fb7d798d-ecbc-4cf8-9ad6-d6dde35cdb77", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-fb7d798d-ecbc-4cf8-9ad6-d6dde35cdb77" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:30:22.372Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "dcdbd51d-e423-4667-bce3-c1f78f0bec83", + "dependencyAgentId": "901407a9-0047-4b2d-8190-e546189fa1c8", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "e4e28557-bb79-4add-bd9a-adc4b1856aae", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "bd88f6a9-ead8-414a-a91c-a47fbeddb3d5", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "a344f76b-98d7-4d83-8a11-7ef9b04c6563" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-dcdbd51d-e423-4667-bce3-c1f78f0bec83", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-dcdbd51d-e423-4667-bce3-c1f78f0bec83" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:30:47.913Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "10cb867d-1b73-4b39-a9cf-31cdd2b00dab", + "dependencyAgentId": "e837d606-09ae-41fc-bc9a-5e8407d88942", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "3d8e1902-1875-428c-98d3-6fb02c96af47", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "594fd238-0d97-444b-a8fd-2e5087e3e97c", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "a6efc921-6c5e-4455-a83e-409a380d800f" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-10cb867d-1b73-4b39-a9cf-31cdd2b00dab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-10cb867d-1b73-4b39-a9cf-31cdd2b00dab" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "virtual", + "displayName": "name1", + "computerName": "name1", + "fullyQualifiedDomainName": "name1.foo.com", + "bootTime": "2018-01-05T21:30:47.913Z", + "timezone": { + "fullName": "some zone" + }, + "agent": { + "agentId": "e6ad2c87-c7e9-4663-bca2-ec5fd1e2d3ef", + "dependencyAgentId": "07a0ba0f-90c3-4d9b-a1bf-d1cf636eeb80", + "dependencyAgentVersion": "2.2.2.2", + "dependencyAgentRevision": "1234", + "rebootStatus": "rebooted", + "clockGranularity": 1 + }, + "resources": { + "physicalMemory": 4096, + "cpus": 2, + "cpuSpeed": 2000, + "cpuSpeedAccuracy": "actual" + }, + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "1.1.1.1", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.3", + "subnetMask": "255.255.255.0" + }, + { + "ipAddress": "1.1.1.4", + "subnetMask": "255.255.255.0" + } + ], + "ipv6Interfaces": [ + { + "ipAddress": "2602:30a:2cb8:4830:414f:a76e:59e4:4fa7" + } + ], + "defaultIpv4Gateways": [ + "1.1.1.254", + "1.1.1.255" + ], + "macAddresses": [ + "64:00:6A:65:E4:71" + ], + "dnsNames": [ + "name1", + "name2", + "name3" + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Microsoft Windows [Version 10.0.10586]", + "bitness": "64bit" + }, + "virtualMachine": { + "virtualMachineType": "hyperv", + "nativeMachineId": "vm-id", + "virtualMachineName": "vm-name-1", + "nativeHostMachineId": "physical-machine-id" + }, + "hosting": { + "kind": "provider:azure", + "vmId": "12345", + "location": "Earth", + "name": "AHostedVm", + "size": "SuperBig", + "updateDomain": "1", + "faultDomain": "1", + "subscriptionId": "123123", + "resourceGroup": "myResourceGroup", + "resourceId": "TestResourceId", + "image": { + "publisher": "AnImagePublisher", + "offering": "SuperFast", + "sku": "10101010", + "version": "1.0" + }, + "cloudService": { + "name": "MyCloudService", + "instanceId": "Instance#1", + "deployment": "72932bbb-6c12-4f06-8622-f11942aede02", + "roleName": "MyRoleName", + "roleType": "web" + }, + "vmScaleSet": { + "name": "MyVMSS", + "instanceId": "VmmssInstance#1", + "deployment": "4ae328aa-2638-4f60-9dbe-0384b2a33b3d", + "resourceId": "TestResourceId" + }, + "serviceFabricCluster": { + "name": "MyClusterName", + "clusterId": "6cbe41c5-4034-4376-b90d-4edbfc9d9375" + }, + "provider": "azure" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-e6ad2c87-c7e9-4663-bca2-ec5fd1e2d3ef", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-e6ad2c87-c7e9-4663-bca2-ec5fd1e2d3ef" + } + ] + } + } + } +} diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesListConnectionsGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesListConnectionsGet.json index cb9171160b2a..4c7df0ce9b02 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesListConnectionsGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Machines/SMMachinesListConnectionsGet.json @@ -1,271 +1,276 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "startTime": "2018-01-07T07:31:38.4041029Z", - "endTime": "2018-01-07T07:31:38.4041029Z" - }, - "responses": { - "200": { - "body": { - "value": [{ - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123/processes/p-1a9dc431ad6048d83dade29fb72dfd9fbe2ee2b4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-1a9dc431ad6048d83dade29fb72dfd9fbe2ee2b4" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f107e3f1cb5d792e6abfed7832ba4e864f995cee", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-f107e3f1cb5d792e6abfed7832ba4e864f995cee" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, - "ipAddress": "1.0.0.1", - "portNumber": 9000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-01000001_9000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-01000001_9000" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123@p@p-1a9dc431ad6048d83dade29fb72dfd9fbe2ee2b4!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f107e3f1cb5d792e6abfed7832ba4e864f995cee!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_9000", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123@p@p-1a9dc431ad6048d83dade29fb72dfd9fbe2ee2b4!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f107e3f1cb5d792e6abfed7832ba4e864f995cee!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_9000" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:clientgroup", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-01000001_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-01000001_8000" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, - "ipAddress": "1.0.0.1", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-01000001_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-01000001_8000" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-08445135a7215e343f0f49b8d0b70c3b853ef87f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-08445135a7215e343f0f49b8d0b70c3b853ef87f" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - }, - "ipAddress": "2.0.0.1", - "portNumber": 1001 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-02000001_1001", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-02000001_1001" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-08445135a7215e343f0f49b8d0b70c3b853ef87f!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-02000001_1001", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-08445135a7215e343f0f49b8d0b70c3b853ef87f!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-02000001_1001" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-573847EE-4D31-4936-A8B2-771372806C80" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80/processes/p-daedaa0e25869b6cf36525d51c2d321335e69f71", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-daedaa0e25869b6cf36525d51c2d321335e69f71" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-573847EE-4D31-4936-A8B2-771372806C80" - }, - "ipAddress": "2.0.0.2", - "portNumber": 1002 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80/ports/b-02000002_1002", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-02000002_1002" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-573847EE-4D31-4936-A8B2-771372806C80@p@p-daedaa0e25869b6cf36525d51c2d321335e69f71!m@m-573847EE-4D31-4936-A8B2-771372806C80@b@b-02000002_1002", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-573847EE-4D31-4936-A8B2-771372806C80@p@p-daedaa0e25869b6cf36525d51c2d321335e69f71!m@m-573847EE-4D31-4936-A8B2-771372806C80@b@b-02000002_1002" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, - "ipAddress": "1.0.0.1", - "portNumber": 8000 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-01000001_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-01000001_8000" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000" - } - ] - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "machineName": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "startTime": "2018-01-07T07:31:38.4041029Z", + "endTime": "2018-01-07T07:31:38.4041029Z" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123/processes/p-1a9dc431ad6048d83dade29fb72dfd9fbe2ee2b4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-1a9dc431ad6048d83dade29fb72dfd9fbe2ee2b4" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-f107e3f1cb5d792e6abfed7832ba4e864f995cee", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-f107e3f1cb5d792e6abfed7832ba4e864f995cee" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + "ipAddress": "1.0.0.1", + "portNumber": 9000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-01000001_9000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-01000001_9000" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123@p@p-1a9dc431ad6048d83dade29fb72dfd9fbe2ee2b4!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f107e3f1cb5d792e6abfed7832ba4e864f995cee!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_9000", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-00377B1B-7F4D-4EF8-8E1B-5B683DA02123@p@p-1a9dc431ad6048d83dade29fb72dfd9fbe2ee2b4!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-f107e3f1cb5d792e6abfed7832ba4e864f995cee!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_9000" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:clientgroup", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-01000001_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-A4AB1C69-03E9-42D2-B822-B42555569FB4!b!b-01000001_8000" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + "ipAddress": "1.0.0.1", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-01000001_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-01000001_8000" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "c@m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-08445135a7215e343f0f49b8d0b70c3b853ef87f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-08445135a7215e343f0f49b8d0b70c3b853ef87f" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + }, + "ipAddress": "2.0.0.1", + "portNumber": 1001 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-02000001_1001", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-02000001_1001" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-08445135a7215e343f0f49b8d0b70c3b853ef87f!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-02000001_1001", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-08445135a7215e343f0f49b8d0b70c3b853ef87f!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-02000001_1001" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-573847EE-4D31-4936-A8B2-771372806C80" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80/processes/p-daedaa0e25869b6cf36525d51c2d321335e69f71", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-daedaa0e25869b6cf36525d51c2d321335e69f71" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-573847EE-4D31-4936-A8B2-771372806C80" + }, + "ipAddress": "2.0.0.2", + "portNumber": 1002 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-573847EE-4D31-4936-A8B2-771372806C80/ports/b-02000002_1002", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-02000002_1002" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-573847EE-4D31-4936-A8B2-771372806C80@p@p-daedaa0e25869b6cf36525d51c2d321335e69f71!m@m-573847EE-4D31-4936-A8B2-771372806C80@b@b-02000002_1002", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-573847EE-4D31-4936-A8B2-771372806C80@p@p-daedaa0e25869b6cf36525d51c2d321335e69f71!m@m-573847EE-4D31-4936-A8B2-771372806C80@b@b-02000002_1002" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + "ipAddress": "1.0.0.1", + "portNumber": 8000 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/ports/b-01000001_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-01000001_8000" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@b@b-01000001_8000" + } + ] + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateMachineGroupDependencyPost.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateMachineGroupDependencyPost.json index f50414e23e74..006920351228 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateMachineGroupDependencyPost.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateMachineGroupDependencyPost.json @@ -1,660 +1,688 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "request": { - "kind": "map:machine-group-dependency", - "machineGroupId": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/b90f6d8f-a9b9-4ac6-abeb-abd8fe10a6dc", - "filterProcesses": false, - "startTime": "2018-01-08T20:00:51.325Z", - "endTime": "2018-01-08T20:01:06.325Z" - } - }, - "responses": { - "200": { - "body": { - "startTime": "2018-01-08T20:00:51.325Z", - "endTime": "2018-01-08T20:01:06.325Z", - "map": { - "nodes": { - "machines": [{ - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "unknown", - "displayName": "192.168.0.1", - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "192.168.0.1", - "subnetMask": "255.255.255.255" - } - ] - }, - "operatingSystem": { - "family": "linux", - "fullName": "Ubuntu Server Linux 10.4.53", - "bitness": "64bit" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d3641418-6ac8-4024-8074-48f6d9db9825", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d3641418-6ac8-4024-8074-48f6d9db9825" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "unknown", - "displayName": "192.168.0.2", - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "192.168.0.2", - "subnetMask": "255.255.255.255" - } - ] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Windows 7", - "bitness": "32bit" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "unknown", - "displayName": "192.168.0.3", - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "192.168.0.3", - "subnetMask": "255.255.255.255" - } - ] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Windows Server 2012 SP2", - "bitness": "64bit" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" - }, { - "kind": "machine", - "properties": { - "monitoringState": "discovered", - "virtualizationState": "unknown", - "displayName": "unmonitored.server.com", - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "10.10.10.10", - "subnetMask": "255.255.255.255" - } - ], - "dnsNames": ["unmonitored.server.com"] - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - } - ], - "processes": [{ - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d3641418-6ac8-4024-8074-48f6d9db9825", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d3641418-6ac8-4024-8074-48f6d9db9825" - }, - "displayName": "???" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d3641418-6ac8-4024-8074-48f6d9db9825/processes/p-e12c75e851c715e7e5ee7e889d858cfc3661e91f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-e12c75e851c715e7e5ee7e889d858cfc3661e91f" - }, { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - }, - "executableName": "httpd", - "displayName": "Apache HTTP Server", - "role": "webServer", - "group": "Apache HTTP Server" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - }, { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - }, - "displayName": "???" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" - }, { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" - }, - "displayName": "???" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" - }, { - "kind": "process", - "properties": { - "monitoringState": "discovered", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - }, - "displayName": "Port 8880", - "role": "appServer", - "acceptorOf": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - }, - "ipAddress": "10.10.10.10", - "portNumber": 8880 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-0a0a0a0a_8880" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" - } - ], - "ports": [{ - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - }, - "displayName": ":90", - "ipAddress": "192.168.0.2", - "portNumber": 90 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/ports/b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80002_90" - }, { - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" - }, - "displayName": ":80", - "ipAddress": "192.168.0.3", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/ports/b-c0a80003_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80003_80" - }, { - "kind": "port", - "properties": { - "monitoringState": "discovered", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - }, - "displayName": ":8880", - "ipAddress": "10.10.10.10", - "portNumber": 8880 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-0a0a0a0a_8880" - } - ], - "clientGroups": [{ - "kind": "clientGroup", - "properties": { - "clientsOf": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - }, { - "kind": "clientGroup", - "properties": { - "clientsOf": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab!p!p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab!p!p-a53c0b2e1e6b779729257570076303b32b13add9" - } - ] - }, - "edges": { - "connections": [{ - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d3641418-6ac8-4024-8074-48f6d9db9825", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d3641418-6ac8-4024-8074-48f6d9db9825" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d3641418-6ac8-4024-8074-48f6d9db9825/processes/p-e12c75e851c715e7e5ee7e889d858cfc3661e91f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-e12c75e851c715e7e5ee7e889d858cfc3661e91f" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - }, - "ipAddress": "192.168.0.2", - "portNumber": 90 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/ports/b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80002_90" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-d3641418-6ac8-4024-8074-48f6d9db9825@p@p-e12c75e851c715e7e5ee7e889d858cfc3661e91f!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-d3641418-6ac8-4024-8074-48f6d9db9825@p@p-e12c75e851c715e7e5ee7e889d858cfc3661e91f!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:clientgroup", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - }, - "ipAddress": "192.168.0.2", - "portNumber": 90 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/ports/b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80002_90" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "c@m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:clientgroup", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab!p!p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab!p!p-a53c0b2e1e6b779729257570076303b32b13add9" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - }, - "ipAddress": "192.168.0.2", - "portNumber": 90 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/ports/b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80002_90" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "c@m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" - }, - "ipAddress": "192.168.0.3", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/ports/b-c0a80003_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80003_80" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@b@b-c0a80003_80", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@b@b-c0a80003_80" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - }, - "ipAddress": "10.10.10.10", - "portNumber": 8880 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-0a0a0a0a_8880" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880!m@t-0a0a0a0a@b@b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880!m@t-0a0a0a0a@b@b-0a0a0a0a_8880" - } - ], - "acceptors": [{ - "kind": "rel:acceptor", - "properties": { - "source": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" - }, - "ipAddress": "192.168.0.3", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/ports/b-c0a80003_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80003_80" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@b@b-c0a80003_80!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6", - "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", - "name": "m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@b@b-c0a80003_80!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6" - }, { - "kind": "rel:acceptor", - "properties": { - "source": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - }, - "ipAddress": "10.10.10.10", - "portNumber": 8880 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-0a0a0a0a_8880" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@t-0a0a0a0a@b@b-0a0a0a0a_8880!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", - "name": "m@t-0a0a0a0a@b@b-0a0a0a0a_8880!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880" - }, { - "kind": "rel:acceptor", - "properties": { - "source": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - }, - "ipAddress": "192.168.0.2", - "portNumber": 90 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/ports/b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80002_90" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", - "name": "m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9" - } - ] - } - } - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "request": { + "kind": "map:machine-group-dependency", + "machineGroupId": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/b90f6d8f-a9b9-4ac6-abeb-abd8fe10a6dc", + "filterProcesses": false, + "startTime": "2018-01-08T20:00:51.325Z", + "endTime": "2018-01-08T20:01:06.325Z" + } + }, + "responses": { + "200": { + "body": { + "startTime": "2018-01-08T20:00:51.325Z", + "endTime": "2018-01-08T20:01:06.325Z", + "map": { + "nodes": { + "machines": [ + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "unknown", + "displayName": "192.168.0.1", + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "192.168.0.1", + "subnetMask": "255.255.255.255" + } + ] + }, + "operatingSystem": { + "family": "linux", + "fullName": "Ubuntu Server Linux 10.4.53", + "bitness": "64bit" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d3641418-6ac8-4024-8074-48f6d9db9825", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d3641418-6ac8-4024-8074-48f6d9db9825" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "unknown", + "displayName": "192.168.0.2", + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "192.168.0.2", + "subnetMask": "255.255.255.255" + } + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Windows 7", + "bitness": "32bit" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "unknown", + "displayName": "192.168.0.3", + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "192.168.0.3", + "subnetMask": "255.255.255.255" + } + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Windows Server 2012 SP2", + "bitness": "64bit" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "discovered", + "virtualizationState": "unknown", + "displayName": "unmonitored.server.com", + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "10.10.10.10", + "subnetMask": "255.255.255.255" + } + ], + "dnsNames": [ + "unmonitored.server.com" + ] + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + } + ], + "processes": [ + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d3641418-6ac8-4024-8074-48f6d9db9825", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d3641418-6ac8-4024-8074-48f6d9db9825" + }, + "displayName": "???" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d3641418-6ac8-4024-8074-48f6d9db9825/processes/p-e12c75e851c715e7e5ee7e889d858cfc3661e91f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-e12c75e851c715e7e5ee7e889d858cfc3661e91f" + }, + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + }, + "executableName": "httpd", + "displayName": "Apache HTTP Server", + "role": "webServer", + "group": "Apache HTTP Server" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + }, + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + }, + "displayName": "???" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" + }, + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" + }, + "displayName": "???" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" + }, + { + "kind": "process", + "properties": { + "monitoringState": "discovered", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + }, + "displayName": "Port 8880", + "role": "appServer", + "acceptorOf": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + }, + "ipAddress": "10.10.10.10", + "portNumber": 8880 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-0a0a0a0a_8880" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" + } + ], + "ports": [ + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + }, + "displayName": ":90", + "ipAddress": "192.168.0.2", + "portNumber": 90 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/ports/b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80002_90" + }, + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" + }, + "displayName": ":80", + "ipAddress": "192.168.0.3", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/ports/b-c0a80003_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80003_80" + }, + { + "kind": "port", + "properties": { + "monitoringState": "discovered", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + }, + "displayName": ":8880", + "ipAddress": "10.10.10.10", + "portNumber": 8880 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-0a0a0a0a_8880" + } + ], + "clientGroups": [ + { + "kind": "clientGroup", + "properties": { + "clientsOf": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + }, + { + "kind": "clientGroup", + "properties": { + "clientsOf": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab!p!p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab!p!p-a53c0b2e1e6b779729257570076303b32b13add9" + } + ] + }, + "edges": { + "connections": [ + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d3641418-6ac8-4024-8074-48f6d9db9825", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d3641418-6ac8-4024-8074-48f6d9db9825" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d3641418-6ac8-4024-8074-48f6d9db9825/processes/p-e12c75e851c715e7e5ee7e889d858cfc3661e91f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-e12c75e851c715e7e5ee7e889d858cfc3661e91f" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + }, + "ipAddress": "192.168.0.2", + "portNumber": 90 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/ports/b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80002_90" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-d3641418-6ac8-4024-8074-48f6d9db9825@p@p-e12c75e851c715e7e5ee7e889d858cfc3661e91f!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-d3641418-6ac8-4024-8074-48f6d9db9825@p@p-e12c75e851c715e7e5ee7e889d858cfc3661e91f!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:clientgroup", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + }, + "ipAddress": "192.168.0.2", + "portNumber": 90 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/ports/b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80002_90" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "c@m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:clientgroup", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab!p!p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-f16c3a13-c1b4-453b-bff1-4607d18436ab!p!p-a53c0b2e1e6b779729257570076303b32b13add9" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + }, + "ipAddress": "192.168.0.2", + "portNumber": 90 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/ports/b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80002_90" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "c@m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" + }, + "ipAddress": "192.168.0.3", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/ports/b-c0a80003_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80003_80" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@b@b-c0a80003_80", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@b@b-c0a80003_80" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + }, + "ipAddress": "10.10.10.10", + "portNumber": 8880 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-0a0a0a0a_8880" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880!m@t-0a0a0a0a@b@b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880!m@t-0a0a0a0a@b@b-0a0a0a0a_8880" + } + ], + "acceptors": [ + { + "kind": "rel:acceptor", + "properties": { + "source": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" + }, + "ipAddress": "192.168.0.3", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/ports/b-c0a80003_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80003_80" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-80cf74cb-2828-42be-8eb1-d78fe35c662b" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-80cf74cb-2828-42be-8eb1-d78fe35c662b/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@b@b-c0a80003_80!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6", + "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", + "name": "m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@b@b-c0a80003_80!m@m-80cf74cb-2828-42be-8eb1-d78fe35c662b@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6" + }, + { + "kind": "rel:acceptor", + "properties": { + "source": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + }, + "ipAddress": "10.10.10.10", + "portNumber": 8880 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-0a0a0a0a_8880" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@t-0a0a0a0a@b@b-0a0a0a0a_8880!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", + "name": "m@t-0a0a0a0a@b@b-0a0a0a0a_8880!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880" + }, + { + "kind": "rel:acceptor", + "properties": { + "source": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + }, + "ipAddress": "192.168.0.2", + "portNumber": 90 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/ports/b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80002_90" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-f16c3a13-c1b4-453b-bff1-4607d18436ab" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-f16c3a13-c1b4-453b-bff1-4607d18436ab/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", + "name": "m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@b@b-c0a80002_90!m@m-f16c3a13-c1b4-453b-bff1-4607d18436ab@p@p-a53c0b2e1e6b779729257570076303b32b13add9" + } + ] + } + } + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateMachineListDependencyPost.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateMachineListDependencyPost.json index 9af2aeb6708c..c2f5063f40f3 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateMachineListDependencyPost.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateMachineListDependencyPost.json @@ -1,663 +1,691 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "request": { - "kind": "map:machine-list-dependency", - "machineIds": [ - "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b" - ], - "filterProcesses": false, - "startTime": "2018-01-08T20:07:49.78Z", - "endTime": "2018-01-08T20:08:04.78Z" - } - }, - "responses": { - "200": { - "body": { - "startTime": "2018-01-08T20:07:49.78Z", - "endTime": "2018-01-08T20:08:04.78Z", - "map": { - "nodes": { - "machines": [{ - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "unknown", - "displayName": "192.168.0.1", - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "192.168.0.1", - "subnetMask": "255.255.255.255" - } - ] - }, - "operatingSystem": { - "family": "linux", - "fullName": "Ubuntu Server Linux 10.4.53", - "bitness": "64bit" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-52d4f2f9-e684-4003-a774-9cf99898861b" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "unknown", - "displayName": "192.168.0.2", - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "192.168.0.2", - "subnetMask": "255.255.255.255" - } - ] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Windows 7", - "bitness": "32bit" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "unknown", - "displayName": "192.168.0.3", - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "192.168.0.3", - "subnetMask": "255.255.255.255" - } - ] - }, - "operatingSystem": { - "family": "windows", - "fullName": "Windows Server 2012 SP2", - "bitness": "64bit" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" - }, { - "kind": "machine", - "properties": { - "monitoringState": "discovered", - "virtualizationState": "unknown", - "displayName": "unmonitored.server.com", - "networking": { - "ipv4Interfaces": [{ - "ipAddress": "10.10.10.10", - "subnetMask": "255.255.255.255" - } - ], - "dnsNames": ["unmonitored.server.com"] - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - } - ], - "processes": [{ - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-52d4f2f9-e684-4003-a774-9cf99898861b" - }, - "displayName": "???" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b/processes/p-e12c75e851c715e7e5ee7e889d858cfc3661e91f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-e12c75e851c715e7e5ee7e889d858cfc3661e91f" - }, { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - }, - "executableName": "httpd", - "displayName": "Apache HTTP Server", - "role": "webServer", - "group": "Apache HTTP Server" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - }, { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - }, - "displayName": "???" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" - }, { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" - }, - "displayName": "???" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" - }, { - "kind": "process", - "properties": { - "monitoringState": "discovered", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - }, - "displayName": "Port 8880", - "role": "appServer", - "acceptorOf": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - }, - "ipAddress": "10.10.10.10", - "portNumber": 8880 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-0a0a0a0a_8880" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" - } - ], - "ports": [{ - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - }, - "displayName": ":90", - "ipAddress": "192.168.0.2", - "portNumber": 90 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/ports/b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80002_90" - }, { - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" - }, - "displayName": ":80", - "ipAddress": "192.168.0.3", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/ports/b-c0a80003_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80003_80" - }, { - "kind": "port", - "properties": { - "monitoringState": "discovered", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - }, - "displayName": ":8880", - "ipAddress": "10.10.10.10", - "portNumber": 8880 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-0a0a0a0a_8880" - } - ], - "clientGroups": [{ - "kind": "clientGroup", - "properties": { - "clientsOf": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - }, { - "kind": "clientGroup", - "properties": { - "clientsOf": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!p!p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!p!p-a53c0b2e1e6b779729257570076303b32b13add9" - } - ] - }, - "edges": { - "connections": [{ - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-52d4f2f9-e684-4003-a774-9cf99898861b" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b/processes/p-e12c75e851c715e7e5ee7e889d858cfc3661e91f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-e12c75e851c715e7e5ee7e889d858cfc3661e91f" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - }, - "ipAddress": "192.168.0.2", - "portNumber": 90 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/ports/b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80002_90" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-52d4f2f9-e684-4003-a774-9cf99898861b@p@p-e12c75e851c715e7e5ee7e889d858cfc3661e91f!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-52d4f2f9-e684-4003-a774-9cf99898861b@p@p-e12c75e851c715e7e5ee7e889d858cfc3661e91f!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:clientgroup", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - }, - "ipAddress": "192.168.0.2", - "portNumber": 90 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/ports/b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80002_90" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "c@m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:clientgroup", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!p!p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!p!p-a53c0b2e1e6b779729257570076303b32b13add9" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - }, - "ipAddress": "192.168.0.2", - "portNumber": 90 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/ports/b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80002_90" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "c@m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" - }, - "ipAddress": "192.168.0.3", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/ports/b-c0a80003_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80003_80" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@b@b-c0a80003_80", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@b@b-c0a80003_80" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - }, - "ipAddress": "10.10.10.10", - "portNumber": 8880 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-0a0a0a0a_8880" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880!m@t-0a0a0a0a@b@b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880!m@t-0a0a0a0a@b@b-0a0a0a0a_8880" - } - ], - "acceptors": [{ - "kind": "rel:acceptor", - "properties": { - "source": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" - }, - "ipAddress": "192.168.0.3", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/ports/b-c0a80003_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80003_80" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@b@b-c0a80003_80!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6", - "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", - "name": "m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@b@b-c0a80003_80!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6" - }, { - "kind": "rel:acceptor", - "properties": { - "source": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - }, - "ipAddress": "10.10.10.10", - "portNumber": 8880 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-0a0a0a0a_8880" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "t-0a0a0a0a" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@t-0a0a0a0a@b@b-0a0a0a0a_8880!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880", - "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", - "name": "m@t-0a0a0a0a@b@b-0a0a0a0a_8880!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880" - }, { - "kind": "rel:acceptor", - "properties": { - "source": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - }, - "ipAddress": "192.168.0.2", - "portNumber": 90 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/ports/b-c0a80002_90", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80002_90" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9", - "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", - "name": "m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9" - } - ] - } - } - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "request": { + "kind": "map:machine-list-dependency", + "machineIds": [ + "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b" + ], + "filterProcesses": false, + "startTime": "2018-01-08T20:07:49.78Z", + "endTime": "2018-01-08T20:08:04.78Z" + } + }, + "responses": { + "200": { + "body": { + "startTime": "2018-01-08T20:07:49.78Z", + "endTime": "2018-01-08T20:08:04.78Z", + "map": { + "nodes": { + "machines": [ + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "unknown", + "displayName": "192.168.0.1", + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "192.168.0.1", + "subnetMask": "255.255.255.255" + } + ] + }, + "operatingSystem": { + "family": "linux", + "fullName": "Ubuntu Server Linux 10.4.53", + "bitness": "64bit" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-52d4f2f9-e684-4003-a774-9cf99898861b" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "unknown", + "displayName": "192.168.0.2", + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "192.168.0.2", + "subnetMask": "255.255.255.255" + } + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Windows 7", + "bitness": "32bit" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "unknown", + "displayName": "192.168.0.3", + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "192.168.0.3", + "subnetMask": "255.255.255.255" + } + ] + }, + "operatingSystem": { + "family": "windows", + "fullName": "Windows Server 2012 SP2", + "bitness": "64bit" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "discovered", + "virtualizationState": "unknown", + "displayName": "unmonitored.server.com", + "networking": { + "ipv4Interfaces": [ + { + "ipAddress": "10.10.10.10", + "subnetMask": "255.255.255.255" + } + ], + "dnsNames": [ + "unmonitored.server.com" + ] + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + } + ], + "processes": [ + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-52d4f2f9-e684-4003-a774-9cf99898861b" + }, + "displayName": "???" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b/processes/p-e12c75e851c715e7e5ee7e889d858cfc3661e91f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-e12c75e851c715e7e5ee7e889d858cfc3661e91f" + }, + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + }, + "executableName": "httpd", + "displayName": "Apache HTTP Server", + "role": "webServer", + "group": "Apache HTTP Server" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + }, + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + }, + "displayName": "???" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" + }, + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" + }, + "displayName": "???" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" + }, + { + "kind": "process", + "properties": { + "monitoringState": "discovered", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + }, + "displayName": "Port 8880", + "role": "appServer", + "acceptorOf": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + }, + "ipAddress": "10.10.10.10", + "portNumber": 8880 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-0a0a0a0a_8880" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" + } + ], + "ports": [ + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + }, + "displayName": ":90", + "ipAddress": "192.168.0.2", + "portNumber": 90 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/ports/b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80002_90" + }, + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" + }, + "displayName": ":80", + "ipAddress": "192.168.0.3", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/ports/b-c0a80003_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80003_80" + }, + { + "kind": "port", + "properties": { + "monitoringState": "discovered", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + }, + "displayName": ":8880", + "ipAddress": "10.10.10.10", + "portNumber": 8880 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-0a0a0a0a_8880" + } + ], + "clientGroups": [ + { + "kind": "clientGroup", + "properties": { + "clientsOf": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + }, + { + "kind": "clientGroup", + "properties": { + "clientsOf": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!p!p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!p!p-a53c0b2e1e6b779729257570076303b32b13add9" + } + ] + }, + "edges": { + "connections": [ + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-52d4f2f9-e684-4003-a774-9cf99898861b" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-52d4f2f9-e684-4003-a774-9cf99898861b/processes/p-e12c75e851c715e7e5ee7e889d858cfc3661e91f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-e12c75e851c715e7e5ee7e889d858cfc3661e91f" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + }, + "ipAddress": "192.168.0.2", + "portNumber": 90 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/ports/b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80002_90" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-52d4f2f9-e684-4003-a774-9cf99898861b@p@p-e12c75e851c715e7e5ee7e889d858cfc3661e91f!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-52d4f2f9-e684-4003-a774-9cf99898861b@p@p-e12c75e851c715e7e5ee7e889d858cfc3661e91f!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:clientgroup", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + }, + "ipAddress": "192.168.0.2", + "portNumber": 90 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/ports/b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80002_90" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "c@m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:clientgroup", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!p!p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f!p!p-a53c0b2e1e6b779729257570076303b32b13add9" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + }, + "ipAddress": "192.168.0.2", + "portNumber": 90 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/ports/b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80002_90" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "c@m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" + }, + "ipAddress": "192.168.0.3", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/ports/b-c0a80003_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80003_80" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@b@b-c0a80003_80", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@b@b-c0a80003_80" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-508565aaf451d5e1e8dbf579493139cd50facb26", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-508565aaf451d5e1e8dbf579493139cd50facb26" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + }, + "ipAddress": "10.10.10.10", + "portNumber": 8880 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-0a0a0a0a_8880" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880!m@t-0a0a0a0a@b@b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-508565aaf451d5e1e8dbf579493139cd50facb26!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880!m@t-0a0a0a0a@b@b-0a0a0a0a_8880" + } + ], + "acceptors": [ + { + "kind": "rel:acceptor", + "properties": { + "source": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" + }, + "ipAddress": "192.168.0.3", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/ports/b-c0a80003_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80003_80" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-ca3ca15a-6fa3-4776-993b-28f95821cc44" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-ca3ca15a-6fa3-4776-993b-28f95821cc44/processes/p-d6e3705d92e552df838f6fe13c72153923fbf3c6", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d6e3705d92e552df838f6fe13c72153923fbf3c6" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@b@b-c0a80003_80!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6", + "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", + "name": "m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@b@b-c0a80003_80!m@m-ca3ca15a-6fa3-4776-993b-28f95821cc44@p@p-d6e3705d92e552df838f6fe13c72153923fbf3c6" + }, + { + "kind": "rel:acceptor", + "properties": { + "source": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + }, + "ipAddress": "10.10.10.10", + "portNumber": 8880 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/ports/b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-0a0a0a0a_8880" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "t-0a0a0a0a" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/t-0a0a0a0a/processes/ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "ts-m@t-0a0a0a0a@b@b-0a0a0a0a_8880" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@t-0a0a0a0a@b@b-0a0a0a0a_8880!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880", + "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", + "name": "m@t-0a0a0a0a@b@b-0a0a0a0a_8880!m@t-0a0a0a0a@p@ts-m@@t-0a0a0a0a@@b@@b-0a0a0a0a_8880" + }, + { + "kind": "rel:acceptor", + "properties": { + "source": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + }, + "ipAddress": "192.168.0.2", + "portNumber": 90 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/ports/b-c0a80002_90", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80002_90" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f/processes/p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-a53c0b2e1e6b779729257570076303b32b13add9" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9", + "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", + "name": "m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@b@b-c0a80002_90!m@m-d60cf4c2-047a-408e-a5ff-cf3d77928c9f@p@p-a53c0b2e1e6b779729257570076303b32b13add9" + } + ] + } + } + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateSingleMachineDependencyPost.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateSingleMachineDependencyPost.json index 5efa246b32f4..2e0f92444bee 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateSingleMachineDependencyPost.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Maps/SMMapsGenerateSingleMachineDependencyPost.json @@ -1,318 +1,329 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "request": { - "kind": "map:single-machine-dependency", - "machineId": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "startTime": "2018-01-08T19:50:39.0192315Z", - "endTime": "2018-01-08T19:52:39.0192315Z" - } - }, - "responses": { - "200": { - "body": { - "startTime": "2018-01-08T19:50:39.0192315Z", - "endTime": "2018-01-08T19:52:39.0192315Z", - "map": { - "nodes": { - "machines": [{ - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "unknown", - "displayName": "???" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, { - "kind": "machine", - "properties": { - "monitoringState": "monitored", - "virtualizationState": "unknown", - "displayName": "???" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - ], - "processes": [{ - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - }, - "displayName": "???" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" - }, { - "kind": "process", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - }, - "displayName": "???" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" - } - ], - "ports": [{ - "kind": "port", - "properties": { - "monitoringState": "monitored", - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - }, - "displayName": ":80", - "ipAddress": "192.168.1.1", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-c0a80101_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_80" - } - ], - "clientGroups": [{ - "kind": "clientGroup", - "properties": { - "clientsOf": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!p!p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!p!p-68cf5e3251379179122fa88e761e2acd5577c249" - }, { - "kind": "clientGroup", - "properties": { - "clientsOf": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - ] - }, - "edges": { - "connections": [{ - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - }, - "ipAddress": "192.168.1.1", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-c0a80101_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_80" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:clientgroup", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!p!p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!p!p-68cf5e3251379179122fa88e761e2acd5577c249" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - }, - "ipAddress": "192.168.1.1", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-c0a80101_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_80" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "c@m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80" - }, { - "kind": "rel:connection", - "properties": { - "source": { - "kind": "ref:clientgroup", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", - "name": "m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" - }, - "serverPort": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - }, - "ipAddress": "192.168.1.1", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-c0a80101_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_80" - }, - "failureState": "ok" - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80", - "type": "Microsoft.OperationalInsights/workspaces/features/connections", - "name": "c@m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80" - } - ], - "acceptors": [{ - "kind": "rel:acceptor", - "properties": { - "source": { - "kind": "ref:port", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - }, - "ipAddress": "192.168.1.1", - "portNumber": 80 - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-c0a80101_80", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", - "name": "b-c0a80101_80" - }, - "destination": { - "kind": "ref:process", - "properties": { - "machine": { - "kind": "ref:machine", - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", - "type": "Microsoft.OperationalInsights/workspaces/features/machines", - "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", - "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249", - "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", - "name": "m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249" - } - ] - } - } - } - } - } + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "request": { + "kind": "map:single-machine-dependency", + "machineId": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "startTime": "2018-01-08T19:50:39.0192315Z", + "endTime": "2018-01-08T19:52:39.0192315Z" + } + }, + "responses": { + "200": { + "body": { + "startTime": "2018-01-08T19:50:39.0192315Z", + "endTime": "2018-01-08T19:52:39.0192315Z", + "map": { + "nodes": { + "machines": [ + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "unknown", + "displayName": "???" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + { + "kind": "machine", + "properties": { + "monitoringState": "monitored", + "virtualizationState": "unknown", + "displayName": "???" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + ], + "processes": [ + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + }, + "displayName": "???" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" + }, + { + "kind": "process", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + }, + "displayName": "???" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" + } + ], + "ports": [ + { + "kind": "port", + "properties": { + "monitoringState": "monitored", + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + }, + "displayName": ":80", + "ipAddress": "192.168.1.1", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-c0a80101_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_80" + } + ], + "clientGroups": [ + { + "kind": "clientGroup", + "properties": { + "clientsOf": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!p!p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!p!p-68cf5e3251379179122fa88e761e2acd5577c249" + }, + { + "kind": "clientGroup", + "properties": { + "clientsOf": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + ] + }, + "edges": { + "connections": [ + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-A4AB1C69-03E9-42D2-B822-B42555569FB4" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-A4AB1C69-03E9-42D2-B822-B42555569FB4/processes/p-d642fef420c5baa4c72f53de9426f1ed699899e2", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-d642fef420c5baa4c72f53de9426f1ed699899e2" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + }, + "ipAddress": "192.168.1.1", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-c0a80101_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_80" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "m@m-A4AB1C69-03E9-42D2-B822-B42555569FB4@p@p-d642fef420c5baa4c72f53de9426f1ed699899e2!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:clientgroup", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!p!p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!p!p-68cf5e3251379179122fa88e761e2acd5577c249" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + }, + "ipAddress": "192.168.1.1", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-c0a80101_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_80" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "c@m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80" + }, + { + "kind": "rel:connection", + "properties": { + "source": { + "kind": "ref:clientgroup", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/clientGroups/m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/clientGroups", + "name": "m!m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" + }, + "serverPort": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + }, + "ipAddress": "192.168.1.1", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-c0a80101_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_80" + }, + "failureState": "ok" + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/connections/c@m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80", + "type": "Microsoft.OperationalInsights/workspaces/features/connections", + "name": "c@m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80" + } + ], + "acceptors": [ + { + "kind": "rel:acceptor", + "properties": { + "source": { + "kind": "ref:port", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + }, + "ipAddress": "192.168.1.1", + "portNumber": 80 + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/ports/b-c0a80101_80", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/ports", + "name": "b-c0a80101_80" + }, + "destination": { + "kind": "ref:process", + "properties": { + "machine": { + "kind": "ref:machine", + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B", + "type": "Microsoft.OperationalInsights/workspaces/features/machines", + "name": "m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B/processes/p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/machines/processes", + "name": "p-68cf5e3251379179122fa88e761e2acd5577c249" + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/acceptors/m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249", + "type": "Microsoft.OperationalInsights/workspaces/features/acceptors", + "name": "m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@b@b-c0a80101_80!m@m-21E1AC11-8AFF-4D2D-8A1F-72FEDA473F7B@p@p-68cf5e3251379179122fa88e761e2acd5577c249" + } + ] + } + } + } + } + } } diff --git a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Summaries/SMSummariesGetMachinesGet.json b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Summaries/SMSummariesGetMachinesGet.json index ce7e8f3a57f7..93457467d979 100644 --- a/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Summaries/SMSummariesGetMachinesGet.json +++ b/specification/service-map/resource-manager/Microsoft.OperationalInsights/preview/2015-11-01-preview/examples/Summaries/SMSummariesGetMachinesGet.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", - "resourceGroupName": "rg-sm", - "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", - "api-version": "2016-08-02", - "startTime": "2018-01-08T19:41:59.3360000Z", - "endTime": "2018-01-08T19:42:14.3360000Z" - }, - "responses": { - "200": { - "body": { - "properties": { - "startTime": "2018-01-08T19:41:59.336Z", - "endTime": "2018-01-08T19:42:14.336Z", - "total": 3, - "live": 3, - "os": { - "windows": 2, - "linux": 1 - } - }, - "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/summaries/machines", - "type": "Microsoft.OperationalInsights/workspaces/features/summaries", - "name": "machines" - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "63BE4E24-FDF0-4E9C-9342-6A5D5A359722", + "resourceGroupName": "rg-sm", + "workspaceName": "D6F79F14-E563-469B-84B5-9286D2803B2F", + "api-version": "2016-08-02", + "startTime": "2018-01-08T19:41:59.3360000Z", + "endTime": "2018-01-08T19:42:14.3360000Z" + }, + "responses": { + "200": { + "body": { + "properties": { + "startTime": "2018-01-08T19:41:59.336Z", + "endTime": "2018-01-08T19:42:14.336Z", + "total": 3, + "live": 3, + "os": { + "windows": 2, + "linux": 1 + } + }, + "id": "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/features/serviceMap/summaries/machines", + "type": "Microsoft.OperationalInsights/workspaces/features/summaries", + "name": "machines" + } + } + } +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIPFilterRuleListAll.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIPFilterRuleListAll.json index 4d2221f4b73c..7a3b8eb4f0b7 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIPFilterRuleListAll.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIPFilterRuleListAll.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleCreateorUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleCreateorUpdate.json index d0a18bd0deda..7adbb1b139e8 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleCreateorUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleCreateorUpdate.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleDelete.json index 91b4cda17551..3cf7783a59c7 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleDelete.json @@ -7,7 +7,7 @@ "ipFilterRuleName": "sdk-IPFilterRules-7337" }, "responses": { - "200": { }, - "204": { } + "200": {}, + "204": {} } } diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleGet.json index 4a15b3a1a812..4ddfdb1d1163 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleGet.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleUpdate.json index 28d5f8fcdf0a..e78812cb97b6 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/IPFilterRule/SBNameSpaceIpFilterRuleUpdate.json @@ -4,7 +4,7 @@ "resourceGroupName": "ResourceGroup", "api-version": "2018-01-01-preview", "subscriptionId": "Subscription", - "ipFilterRuleName": "sdk-IPFilterRules-7337", + "ipFilterRuleName": "sdk-IPFilterRules-7337", "parameters": { "properties": { "ipMask": "13.78.143.246/32", @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceCreate.json index 78c84c6e29ac..273a70b3260d 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceCreate.json @@ -65,4 +65,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceDelete.json index 1e52908a29b5..747d0b106269 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceListByResourceGroup.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceListByResourceGroup.json index 48fb81bf6fa2..5704dd8f2e78 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceListByResourceGroup.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceListByResourceGroup.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceUpdate.json index 52c5eea00c20..ae587b027e02 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/SBNameSpaceUpdate.json @@ -61,4 +61,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleDelete.json index 05cecc4b578a..e2f63871f214 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleDelete.json @@ -7,7 +7,7 @@ "virtualNetworkRuleName": "sdk-VirtualNetworkRules-9191" }, "responses": { - "200": { }, - "204": { } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleListAll.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleListAll.json index 19fca7304158..e7e1760dbb30 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleListAll.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleListAll.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleupdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleupdate.json index c39b4b3e5cf4..c3f73e9ee9a9 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleupdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNameSpaceVirtualNetworkRuleupdate.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetCreate.json index 8a55ca34ebe7..42609777372d 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetCreate.json @@ -62,15 +62,21 @@ "defaultAction": "Deny", "virtualNetworkRules": [ { - "subnet": { "id": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" }, + "subnet": { + "id": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" + }, "ignoreMissingVnetServiceEndpoint": true }, { - "subnet": { "id": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" }, + "subnet": { + "id": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" + }, "ignoreMissingVnetServiceEndpoint": false }, { - "subnet": { "id": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" }, + "subnet": { + "id": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" + }, "ignoreMissingVnetServiceEndpoint": false } ], diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetGet.json index d62458a0be9f..abae4c0e8780 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetGet.json @@ -15,15 +15,21 @@ "defaultAction": "Deny", "virtualNetworkRules": [ { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" + }, "ignoreMissingVnetServiceEndpoint": true }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" + }, "ignoreMissingVnetServiceEndpoint": false }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/alitest/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" + }, "ignoreMissingVnetServiceEndpoint": false } ], diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/SBOperations_List.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/SBOperations_List.json index 88fcc9192f96..503450fe0141 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/SBOperations_List.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/examples/SBOperations_List.json @@ -14,7 +14,7 @@ "operation": "Get namespace availability." } }, - { + { "name": "Microsoft.ServiceBus/register/action", "display": { "provider": "Microsoft Azure ServiceBus", @@ -298,4 +298,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/servicebus-preview.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/servicebus-preview.json index 79342ec7a4ad..a1c5d1f71e57 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/servicebus-preview.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2018-01-01-preview/servicebus-preview.json @@ -41,7 +41,9 @@ ], "operationId": "Operations_List", "x-ms-examples": { - "OperationsList": { "$ref": "./examples/SBOperations_List.json" } + "OperationsList": { + "$ref": "./examples/SBOperations_List.json" + } }, "description": "Lists all of the available ServiceBus REST API operations.", "parameters": [ @@ -75,7 +77,9 @@ ], "operationId": "Namespaces_List", "x-ms-examples": { - "NameSpaceList": { "$ref": "./examples/NameSpaces/SBNameSpaceList.json" } + "NameSpaceList": { + "$ref": "./examples/NameSpaces/SBNameSpaceList.json" + } }, "description": "Gets all the available namespaces within the subscription, irrespective of the resource groups.", "externalDocs": { @@ -115,7 +119,9 @@ ], "operationId": "Namespaces_ListByResourceGroup", "x-ms-examples": { - "NameSpaceListByResourceGroup": { "$ref": "./examples/NameSpaces/SBNameSpaceListByResourceGroup.json" } + "NameSpaceListByResourceGroup": { + "$ref": "./examples/NameSpaces/SBNameSpaceListByResourceGroup.json" + } }, "description": "Gets the available namespaces within a resource group.", "externalDocs": { @@ -158,7 +164,9 @@ ], "operationId": "Namespaces_CreateOrUpdate", "x-ms-examples": { - "NameSpaceCreate": { "$ref": "./examples/NameSpaces/SBNameSpaceCreate.json" } + "NameSpaceCreate": { + "$ref": "./examples/NameSpaces/SBNameSpaceCreate.json" + } }, "description": "Creates or updates a service namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "externalDocs": { @@ -222,7 +230,9 @@ ], "operationId": "Namespaces_Delete", "x-ms-examples": { - "NameSpaceDelete": { "$ref": "./examples/NameSpaces/SBNameSpaceDelete.json" } + "NameSpaceDelete": { + "$ref": "./examples/NameSpaces/SBNameSpaceDelete.json" + } }, "description": "Deletes an existing namespace. This operation also removes all associated resources under the namespace.", "externalDocs": { @@ -267,7 +277,9 @@ ], "operationId": "Namespaces_Get", "x-ms-examples": { - "NameSpaceGet": { "$ref": "./examples/NameSpaces/SBNameSpaceGet.json" } + "NameSpaceGet": { + "$ref": "./examples/NameSpaces/SBNameSpaceGet.json" + } }, "description": "Gets a description for the specified namespace.", "externalDocs": { @@ -308,7 +320,9 @@ ], "operationId": "Namespaces_Update", "x-ms-examples": { - "NameSpaceUpdate": { "$ref": "./examples/NameSpaces/SBNameSpaceUpdate.json" } + "NameSpaceUpdate": { + "$ref": "./examples/NameSpaces/SBNameSpaceUpdate.json" + } }, "description": "Updates a service namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "parameters": [ @@ -1349,4 +1363,4 @@ "description": "The Virtual Network Rule name." } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2014-09-01/servicebus.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2014-09-01/servicebus.json index 22c7a34b9d38..481b9423f245 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2014-09-01/servicebus.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2014-09-01/servicebus.json @@ -93,7 +93,7 @@ } } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.ServiceBus/CheckNameSpaceAvailability": { + "/subscriptions/{subscriptionId}/providers/Microsoft.ServiceBus/CheckNameSpaceAvailability": { "post": { "tags": [ "Namespaces" @@ -126,7 +126,7 @@ } } } - }, + }, "/subscriptions/{subscriptionId}/providers/Microsoft.ServiceBus/namespaces": { "get": { "tags": [ @@ -1946,7 +1946,7 @@ ], "description": "AuthorizationRule properties." }, - "SharedAccessAuthorizationRuleGetResource": { + "SharedAccessAuthorizationRuleGetResource": { "properties": { "properties": { "x-ms-client-flatten": true, diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleCreate.json index abd499e27289..1b3d8d507aba 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleCreate.json @@ -6,7 +6,7 @@ "api-version": "2016-07-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", "parameters": { - "location": "West US", + "location": "West US", "properties": { "rights": [ "Listen", @@ -21,8 +21,13 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace8341/AuthorizationRules/sdk-Authrules9875", "name": "sdk-Authrules9875", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleDelete.json index 0ebf2251245c..7b5848e3221c 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleDelete.json @@ -3,11 +3,11 @@ "namespaceName": "sdk-Namespace8341", "authorizationRuleName": "sdk-RelayAuthRules-01", "resourceGroupName": "Default-ServiceBus-WestUS", - "api-version": "2015-08-01", + "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" }, "responses": { "200": {}, - "204": {} + "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleGet.json index 100d6fcc4ff2..def3e151d713 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleGet.json @@ -1,7 +1,7 @@ { "parameters": { "namespaceName": "sdk-Namespace8341", - "authorizationRuleName": "sdk-Authrules9875", + "authorizationRuleName": "sdk-Authrules9875", "resourceGroupName": "sdk-Namespace8341", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" @@ -12,8 +12,13 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace8341/AuthorizationRules/sdk-Authrules9875", "name": "sdk-Authrules9875", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleListAll.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleListAll.json index 30c0d3a3a1e6..14537ab91c48 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleListAll.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleListAll.json @@ -4,7 +4,7 @@ "resourceGroupName": "Default-ServiceBus-WestUS", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" - }, + }, "responses": { "200": { "body": { @@ -13,17 +13,28 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace8341/AuthorizationRules/RootManageSharedAccessKey", "name": "RootManageSharedAccessKey", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen", "Manage", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Manage", + "Send" + ] + } }, { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace8341/AuthorizationRules/sdk-Authrules9875", "name": "sdk-Authrules9875", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } ], "nextLink": "" } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleListKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleListKey.json index 785b6401bd02..b482077ec756 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleListKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleListKey.json @@ -6,7 +6,7 @@ "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" }, - "responses": { + "responses": { "200": { "body": { "primaryConnectionString": "Endpoint=sb://sdk-namespace8341.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules9875;SharedAccessKey=############################################", @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleRegenerateKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleRegenerateKey.json index 6ab1e549e9e0..1b5530d26df2 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleRegenerateKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleRegenerateKey.json @@ -3,7 +3,7 @@ "namespaceName": "sdk-Namespace8341", "authorizationRuleName": "sdk-RelayAuthRules-01", "resourceGroupName": "Default-ServiceBus-WestUS", - "api-version": "2015-08-01", + "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", "parameters": { "Policykey": "PrimaryKey" @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleUpdate.json index f0bb23ec943d..013c1fee1046 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceAuthorizationRuleUpdate.json @@ -4,7 +4,7 @@ "authorizationRuleName": "sdk-Authrules9875", "resourceGroupName": "Default-ServiceBus-WestUS", "api-version": "2015-08-01", - "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", + "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", "parameters": { "location": "West US", "properties": { @@ -20,8 +20,12 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace8341/AuthorizationRules/sdk-Authrules9875", "name": "sdk-Authrules9875", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen" ] } + "properties": { + "rights": [ + "Listen" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceCheckNameAvailability.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceCheckNameAvailability.json index 184ad6f5d6d2..9bd7aec63a96 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceCheckNameAvailability.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceCheckNameAvailability.json @@ -3,7 +3,7 @@ "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", "parameters": { - "name": "sdk-Namespace1321" + "name": "sdk-Namespace1321" } }, "responses": { @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceCreate.json index 9cbce0bed97b..70ab1e6f8696 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceCreate.json @@ -4,7 +4,7 @@ "resourceGroupName": "Default-ServiceBus-WestUS", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", - "parameters": { + "parameters": { "sku": { "name": "Standard", "tier": "Standard" @@ -36,7 +36,7 @@ } } }, - "201": { + "201": { "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace7816", "name": "sdk-Namespace7816", @@ -55,6 +55,6 @@ } } }, - "202" : {} + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceDelete.json index 9a65be51f554..ac7153aae4f0 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceDelete.json @@ -1,5 +1,5 @@ { - "parameters": { + "parameters": { "namespaceName": "sdk-Namespace1471", "resourceGroupName": "Default-ServiceBus-WestUS", "api-version": "2015-08-01", @@ -7,7 +7,7 @@ }, "responses": { "200": {}, - "202": {}, - "204": {} + "202": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceGet.json index 2a302772335d..6b8d7fb76af6 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceGet.json @@ -6,7 +6,7 @@ "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" }, "responses": { - "200": { + "200": { "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace1471", "name": "sdk-Namespace1471", diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceList.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceList.json index 3857865b2a3e..07225057ea79 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceList.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceList.json @@ -6,7 +6,7 @@ "responses": { "200": { "body": { - "value": [ + "value": [ { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5018", "name": "sdk-Namespace-5018", diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceListByResourceGroup.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceListByResourceGroup.json index 5379169a5654..ce3ef8c4c6c4 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceListByResourceGroup.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceListByResourceGroup.json @@ -8,7 +8,7 @@ "200": { "body": { "value": [ - { + { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5018", "name": "sdk-Namespace-5018", "type": "Microsoft.ServiceBus/namespaces", @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceUpdate.json index 446840260125..bf627091eb78 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBNameSpaceUpdate.json @@ -5,12 +5,12 @@ "api-version": "2015-08-01", "subscriptionId": "8c246e6a-cbc6-4a87-aff1-d6a886f376ef", "location": "West US", - "parameters":{ - "tags": { - "tag3": "value3", - "tag4": "value4" - } - } + "parameters": { + "tags": { + "tag3": "value3", + "tag4": "value4" + } + } }, "responses": { "200": { @@ -22,16 +22,16 @@ "tags": { "tag3": "value3", "tag4": "value4" - }, + }, "properties": { "provisioningState": "", "createdAt": "2017-03-12T07:39:13.31Z", "serviceBusEndpoint": "https://sdk-Namespace1471.servicebus.windows.net:443/", "updatedAt": "2017-03-12T07:39:35.443Z" - } } - }, - "201": { + } + }, + "201": { "body": { "id": "", "name": "", @@ -40,15 +40,15 @@ "tags": { "tag3": "value3", "tag4": "value4" - }, + }, "properties": { "provisioningState": "", "createdAt": "2017-03-12T07:39:13.31Z", "serviceBusEndpoint": "https://sdk-Namespace1471.servicebus.windows.net:443/", "updatedAt": "2017-03-12T07:39:35.443Z" - } } - }, - "202": {} - } - } \ No newline at end of file + } + }, + "202": {} + } +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBOperations_List.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBOperations_List.json index 91fd78e770ce..728f57608244 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBOperations_List.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBOperations_List.json @@ -15,7 +15,7 @@ "description": "Checks availability of namespace under given subscription." } }, - { + { "name": "Microsoft.ServiceBus/register/action", "display": { "provider": "Microsoft Azure ServiceBus", @@ -334,4 +334,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleCreate.json index 64dad98ea0dd..6dfc6bd839ea 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleCreate.json @@ -15,14 +15,19 @@ } } }, - "responses": { + "responses": { "200": { "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace6556/queues/sdk-Queues3136/authorizationRules/sdk-Authrules7319", "name": "sdk-Authrules7319", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleDelete.json index 93817e771830..221dda70709a 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleDelete.json @@ -3,12 +3,12 @@ "resourceGroupName": "Default-ServiceBus-WestUS", "namespaceName": "sdk-Namespace6556", "queueName": "sdk-Queues3136", - "authorizationRuleName": "sdk-Authrules7319", + "authorizationRuleName": "sdk-Authrules7319", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" }, "responses": { "200": {}, - "204": {} + "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleGet.json index 3a5e2451bd81..0d00d819f4b5 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleGet.json @@ -6,15 +6,20 @@ "authorizationRuleName": "sdk-Authrules7319", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" - }, + }, "responses": { "200": { "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace6556/queues/sdk-Queues3136/authorizationRules/sdk-Authrules7319", "name": "sdk-Authrules7319", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleListAll.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleListAll.json index eff7ff0d3631..340b1b69f670 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleListAll.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleListAll.json @@ -8,16 +8,21 @@ }, "responses": { "200": { - "body": { + "body": { "value": [ { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace6556/queues/sdk-Queues3136/authorizationRules/sdk-Authrules7319", "name": "sdk-Authrules7319", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } ] } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleListKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleListKey.json index b93fa183d393..9c4f77c231b2 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleListKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleListKey.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleRegenerateKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleRegenerateKey.json index d8c7c628115e..deeb3b035cea 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleRegenerateKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleRegenerateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleUpdate.json index 150d233fbe18..6930bef4a488 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueAuthorizationRuleUpdate.json @@ -9,7 +9,7 @@ "parameters": { "location": "West US", "properties": { - "rights": [ + "rights": [ "Listen" ] } @@ -21,8 +21,12 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace6556/queues/sdk-Queues3136/authorizationRules/sdk-Authrules7319", "name": "sdk-Authrules7319", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen" ] } + "properties": { + "rights": [ + "Listen" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueCreate.json index 76c6d197808e..e95ce136c9a5 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueCreate.json @@ -2,16 +2,16 @@ "parameters": { "namespaceName": "sdk-Namespace3082", "resourceGroupName": "Default-ServiceBus-WestUS", - "queueName": "sdk-Queues8544", + "queueName": "sdk-Queues8544", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", - "parameters":{ - "properties": { - "enableExpress": false, - "enablePartitioning": false - }, - "location": "West US" - } + "parameters": { + "properties": { + "enableExpress": false, + "enablePartitioning": false + }, + "location": "West US" + } }, "responses": { "200": { @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueDelete.json index 0c3a814a3430..c125eeca3b84 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueDelete.json @@ -5,9 +5,9 @@ "queueName": "sdk-Queues8544", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" - }, + }, "responses": { "200": {}, - "204": {} + "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueGet.json index 975b8807255d..e1e2440a4895 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueGet.json @@ -1,7 +1,7 @@ { "parameters": { "namespaceName": "sdk-Namespace3082", - "resourceGroupName": "Default-ServiceBus-WestUS", + "resourceGroupName": "Default-ServiceBus-WestUS", "queueName": "sdk-Queues8544", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueListByNameSpace.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueListByNameSpace.json index 46ded725ab55..4ad8481ff5a8 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueListByNameSpace.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueListByNameSpace.json @@ -10,7 +10,7 @@ "body": { "value": [ { - "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace7626/queues/sdk-queues7173", + "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace7626/queues/sdk-queues7173", "name": "sdk-queues7173", "type": "Microsoft.ServiceBus/Queues", "properties": { @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueUpdate.json index ec21b6579692..e0ef5b3eeab3 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBQueueUpdate.json @@ -14,7 +14,7 @@ "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace3082/queues/sdk-Queues8544", "name": "sdk-Queues8544", - "type": "Microsoft.ServiceBus/Queues", + "type": "Microsoft.ServiceBus/Queues", "properties": { "maxSizeInMegabytes": 1024, "enableExpress": true @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionCreate.json index 035ecb847425..232aa1dcf788 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionCreate.json @@ -6,9 +6,9 @@ "subscriptionName": "sdk-Subscriptions3374", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", - "parameters": { - "location": "West US" - } + "parameters": { + "location": "West US" + } }, "responses": { "200": { @@ -26,7 +26,7 @@ "maxDeliveryCount": 10, "enableBatchedOperations": true, "status": "Active", - "createdAt": "2017-03-12T16:54:30.4Z", + "createdAt": "2017-03-12T16:54:30.4Z", "updatedAt": "2017-03-12T16:54:30.45Z", "accessedAt": "2017-03-12T16:54:30.45Z", "autoDeleteOnIdle": "10675199.02:48:05.4775807" @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionDelete.json index 00273dc27ab8..daf46ac51217 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionDelete.json @@ -9,6 +9,6 @@ }, "responses": { "200": {}, - "204": {} + "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionListByTopic.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionListByTopic.json index 4376f8b5d938..89d195307dcd 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionListByTopic.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionListByTopic.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionUpdate.json index 21e227be2313..4b7a7ae27d61 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBSubscriptionUpdate.json @@ -8,9 +8,9 @@ "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", "properties": { "enableBatchedOperations": true - } + } }, - "responses": { + "responses": { "200": { "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace2500/topics/sdk-Topics2565/subscriptions/sdk-Subscriptions3374", @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleCreate.json index f4fb14de9c31..b7d98c261403 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleCreate.json @@ -11,7 +11,7 @@ "rights": [ "Listen", "Send" - ] + ] } } }, @@ -21,8 +21,13 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace8408/topics/sdk-Topics2075/authorizationRules/sdk-Authrules5067", "name": "sdk-Authrules5067", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleDelete.json index 746170ed79f0..8292be3db50e 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleDelete.json @@ -9,6 +9,6 @@ }, "responses": { "200": {}, - "204": {} + "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleGet.json index b12709cbc763..b277c353f4d7 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleGet.json @@ -8,13 +8,18 @@ "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" }, "responses": { - "200": { + "200": { "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace8408/topics/sdk-Topics2075/authorizationRules/sdk-Authrules5067", "name": "sdk-Authrules5067", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleListAll.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleListAll.json index 755364298715..c77e625c2ce7 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleListAll.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleListAll.json @@ -8,16 +8,21 @@ }, "responses": { "200": { - "body": { + "body": { "value": [ { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace8408/topics/sdk-Topics2075/authorizationRules/sdk-Authrules5067", "name": "sdk-Authrules5067", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } ] } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleListKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleListKey.json index 42cf41b75c26..4c055d7a6a59 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleListKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleListKey.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleRegenerateKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleRegenerateKey.json index c27dcd53bd82..b6d64fe34e61 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleRegenerateKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleRegenerateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleUpdate.json index 50ea6013de35..de2fb190d27d 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicAuthorizationRuleUpdate.json @@ -16,13 +16,17 @@ } }, "responses": { - "200": { + "200": { "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace8408/topics/sdk-Topics2075/authorizationRules/sdk-Authrules5067", "name": "sdk-Authrules5067", "type": "Microsoft.ServiceBus/AuthorizationRules", - "properties": { "rights": [ "Listen" ] } + "properties": { + "rights": [ + "Listen" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicCreate.json index d832734ba991..fef83dbc23e2 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicCreate.json @@ -5,12 +5,12 @@ "topicName": "sdk-Topics1377", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", - "parameters": { - "location": "West US" - } + "parameters": { + "location": "West US" + } }, "responses": { - "200": { + "200": { "body": { "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace4191/topics/sdk-Topics1377", "name": "sdk-Topics1377", @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicDelete.json index 5db3b7df9596..17e38b4ddaa2 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicDelete.json @@ -8,6 +8,6 @@ }, "responses": { "200": {}, - "204": {} + "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicGet.json index f1fd4a6c0ff8..3ed78507ed75 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicGet.json @@ -5,7 +5,7 @@ "topicName": "sdk-Topics1377", "api-version": "2015-08-01", "subscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" - }, + }, "responses": { "200": { "body": { diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicListByNameSpace.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicListByNameSpace.json index dbf4665179e8..edfeabaf6850 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicListByNameSpace.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicListByNameSpace.json @@ -21,7 +21,7 @@ "enableBatchedOperations": true, "sizeInBytes": 0, "status": "Active", - "createdAt": "2017-03-12T16:54:30.4Z", + "createdAt": "2017-03-12T16:54:30.4Z", "updatedAt": "2017-03-12T16:54:30.45Z", "accessedAt": "0001-01-01T00:00:00Z", "supportOrdering": true, @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicUpdate.json index 8fd7e747e79a..6559a81c6431 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBTopicUpdate.json @@ -15,11 +15,11 @@ "id": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace4191/topics/sdk-Topics1377", "name": "sdk-Topics1377", "type": "Microsoft.ServiceBus/Topic", - "properties": { + "properties": { "maxSizeInMegabytes": 1024, "enableExpress": true } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/servicebus.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/servicebus.json index f3174704e7b5..05cfc763b9d3 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/servicebus.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/servicebus.json @@ -41,7 +41,9 @@ ], "operationId": "Operations_List", "x-ms-examples": { - "OperationsList": { "$ref": "./examples/SBOperations_List.json" } + "OperationsList": { + "$ref": "./examples/SBOperations_List.json" + } }, "description": "Lists all of the available ServiceBus REST API operations.", "parameters": [ @@ -69,7 +71,9 @@ ], "operationId": "Namespaces_CheckNameAvailability", "x-ms-examples": { - "NameSpaceCheckNameAvailability": { "$ref": "./examples/SBNameSpaceCheckNameAvailability.json" } + "NameSpaceCheckNameAvailability": { + "$ref": "./examples/SBNameSpaceCheckNameAvailability.json" + } }, "description": "Check the give namespace name availability.", "parameters": [ @@ -106,7 +110,9 @@ ], "operationId": "Namespaces_ListBySubscription", "x-ms-examples": { - "NameSpaceList": { "$ref": "./examples/SBNameSpaceList.json" } + "NameSpaceList": { + "$ref": "./examples/SBNameSpaceList.json" + } }, "description": "Gets all the available namespaces within the subscription, irrespective of the resource groups.", "externalDocs": { @@ -140,7 +146,9 @@ ], "operationId": "Namespaces_ListByResourceGroup", "x-ms-examples": { - "NameSpaceListByResourceGroup": { "$ref": "./examples/SBNameSpaceListByResourceGroup.json" } + "NameSpaceListByResourceGroup": { + "$ref": "./examples/SBNameSpaceListByResourceGroup.json" + } }, "description": "Gets the available namespaces within a resource group.", "externalDocs": { @@ -177,7 +185,9 @@ ], "operationId": "Namespaces_CreateOrUpdate", "x-ms-examples": { - "NameSpaceCreate": { "$ref": "./examples/SBNameSpaceCreate.json" } + "NameSpaceCreate": { + "$ref": "./examples/SBNameSpaceCreate.json" + } }, "description": "Creates or updates a service namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "externalDocs": { @@ -235,7 +245,9 @@ ], "operationId": "Namespaces_Delete", "x-ms-examples": { - "NameSpaceDelete": { "$ref": "./examples/SBNameSpaceDelete.json" } + "NameSpaceDelete": { + "$ref": "./examples/SBNameSpaceDelete.json" + } }, "description": "Deletes an existing namespace. This operation also removes all associated resources under the namespace.", "externalDocs": { @@ -274,7 +286,9 @@ ], "operationId": "Namespaces_Get", "x-ms-examples": { - "NameSpaceGet": { "$ref": "./examples/SBNameSpaceGet.json" } + "NameSpaceGet": { + "$ref": "./examples/SBNameSpaceGet.json" + } }, "description": "Gets a description for the specified namespace.", "externalDocs": { @@ -309,7 +323,9 @@ ], "operationId": "Namespaces_Update", "x-ms-examples": { - "NameSpaceUpdate": { "$ref": "./examples/SBNameSpaceUpdate.json" } + "NameSpaceUpdate": { + "$ref": "./examples/SBNameSpaceUpdate.json" + } }, "description": "Updates a service namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "parameters": [ @@ -361,7 +377,9 @@ ], "operationId": "Namespaces_ListAuthorizationRules", "x-ms-examples": { - "NameSpaceAuthorizationRuleListAll": { "$ref": "./examples/SBNameSpaceAuthorizationRuleListAll.json" } + "NameSpaceAuthorizationRuleListAll": { + "$ref": "./examples/SBNameSpaceAuthorizationRuleListAll.json" + } }, "description": "Gets the authorization rules for a namespace.", "externalDocs": { @@ -401,7 +419,9 @@ ], "operationId": "Namespaces_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleCreate": { "$ref": "./examples/SBNameSpaceAuthorizationRuleCreate.json" } + "NameSpaceAuthorizationRuleCreate": { + "$ref": "./examples/SBNameSpaceAuthorizationRuleCreate.json" + } }, "description": "Creates or updates an authorization rule for a namespace.", "externalDocs": { @@ -448,7 +468,9 @@ ], "operationId": "Namespaces_DeleteAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleDelete": { "$ref": "./examples/SBNameSpaceAuthorizationRuleDelete.json" } + "NameSpaceAuthorizationRuleDelete": { + "$ref": "./examples/SBNameSpaceAuthorizationRuleDelete.json" + } }, "description": "Deletes a namespace authorization rule.", "externalDocs": { @@ -486,7 +508,9 @@ ], "operationId": "Namespaces_GetAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleGet": { "$ref": "./examples/SBNameSpaceAuthorizationRuleGet.json" } + "NameSpaceAuthorizationRuleGet": { + "$ref": "./examples/SBNameSpaceAuthorizationRuleGet.json" + } }, "description": "Gets an authorization rule for a namespace by rule name.", "externalDocs": { @@ -526,7 +550,9 @@ ], "operationId": "Namespaces_ListKeys", "x-ms-examples": { - "NameSpaceAuthorizationRuleListKey": { "$ref": "./examples/SBNameSpaceAuthorizationRuleListKey.json" } + "NameSpaceAuthorizationRuleListKey": { + "$ref": "./examples/SBNameSpaceAuthorizationRuleListKey.json" + } }, "description": "Gets the primary and secondary connection strings for the namespace.", "externalDocs": { @@ -566,7 +592,9 @@ ], "operationId": "Namespaces_RegenerateKeys", "x-ms-examples": { - "NameSpaceAuthorizationRuleRegenerateKey": { "$ref": "./examples/SBNameSpaceAuthorizationRuleRegenerateKey.json" } + "NameSpaceAuthorizationRuleRegenerateKey": { + "$ref": "./examples/SBNameSpaceAuthorizationRuleRegenerateKey.json" + } }, "description": "Regenerates the primary or secondary connection strings for the namespace.", "externalDocs": { @@ -615,7 +643,9 @@ ], "operationId": "Queues_ListAll", "x-ms-examples": { - "QueueListByNameSpace": { "$ref": "./examples/SBQueueListByNameSpace.json" } + "QueueListByNameSpace": { + "$ref": "./examples/SBQueueListByNameSpace.json" + } }, "description": "Gets the queues within a namespace.", "externalDocs": { @@ -655,7 +685,9 @@ ], "operationId": "Queues_CreateOrUpdate", "x-ms-examples": { - "QueueCreate": { "$ref": "./examples/SBQueueCreate.json" } + "QueueCreate": { + "$ref": "./examples/SBQueueCreate.json" + } }, "description": "Creates or updates a Service Bus queue. This operation is idempotent.", "externalDocs": { @@ -702,7 +734,9 @@ ], "operationId": "Queues_Delete", "x-ms-examples": { - "QueueDelete": { "$ref": "./examples/SBQueueDelete.json" } + "QueueDelete": { + "$ref": "./examples/SBQueueDelete.json" + } }, "description": "Deletes a queue from the specified namespace in a resource group.", "externalDocs": { @@ -740,7 +774,9 @@ ], "operationId": "Queues_Get", "x-ms-examples": { - "QueueGet": { "$ref": "./examples/SBQueueGet.json" } + "QueueGet": { + "$ref": "./examples/SBQueueGet.json" + } }, "description": "Returns a description for the specified queue.", "externalDocs": { @@ -780,7 +816,9 @@ ], "operationId": "Queues_ListAuthorizationRules", "x-ms-examples": { - "QueueAuthorizationRuleListAll": { "$ref": "./examples/SBQueueAuthorizationRuleListAll.json" } + "QueueAuthorizationRuleListAll": { + "$ref": "./examples/SBQueueAuthorizationRuleListAll.json" + } }, "description": "Gets all authorization rules for a queue.", "externalDocs": { @@ -823,7 +861,9 @@ ], "operationId": "Queues_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "QueueAuthorizationRuleCreate": { "$ref": "./examples/SBQueueAuthorizationRuleCreate.json" } + "QueueAuthorizationRuleCreate": { + "$ref": "./examples/SBQueueAuthorizationRuleCreate.json" + } }, "description": "Creates an authorization rule for a queue.", "parameters": [ @@ -864,13 +904,15 @@ } } }, - "post": { + "post": { "tags": [ "Queues" ], "operationId": "Queues_PostAuthorizationRule", "x-ms-examples": { - "QueueAuthorizationRuleGet": { "$ref": "./examples/SBQueueAuthorizationRuleGet.json" } + "QueueAuthorizationRuleGet": { + "$ref": "./examples/SBQueueAuthorizationRuleGet.json" + } }, "description": "Gets an authorization rule for a queue by rule name.", "externalDocs": { @@ -911,7 +953,9 @@ ], "operationId": "Queues_DeleteAuthorizationRule", "x-ms-examples": { - "QueueAuthorizationRuleDelete": { "$ref": "./examples/SBQueueAuthorizationRuleDelete.json" } + "QueueAuthorizationRuleDelete": { + "$ref": "./examples/SBQueueAuthorizationRuleDelete.json" + } }, "description": "Deletes a queue authorization rule.", "externalDocs": { @@ -952,7 +996,9 @@ ], "operationId": "Queues_GetAuthorizationRule", "x-ms-examples": { - "QueueAuthorizationRuleGet": { "$ref": "./examples/SBQueueAuthorizationRuleGet.json" } + "QueueAuthorizationRuleGet": { + "$ref": "./examples/SBQueueAuthorizationRuleGet.json" + } }, "description": "Gets an authorization rule for a queue by rule name.", "externalDocs": { @@ -995,7 +1041,9 @@ ], "operationId": "Queues_ListKeys", "x-ms-examples": { - "QueueAuthorizationRuleListKey": { "$ref": "./examples/SBQueueAuthorizationRuleListKey.json" } + "QueueAuthorizationRuleListKey": { + "$ref": "./examples/SBQueueAuthorizationRuleListKey.json" + } }, "description": "Primary and secondary connection strings to the queue.", "externalDocs": { @@ -1038,7 +1086,9 @@ ], "operationId": "Queues_RegenerateKeys", "x-ms-examples": { - "QueueAuthorizationRuleRegenerateKey": { "$ref": "./examples/SBQueueAuthorizationRuleRegenerateKey.json" } + "QueueAuthorizationRuleRegenerateKey": { + "$ref": "./examples/SBQueueAuthorizationRuleRegenerateKey.json" + } }, "description": "Regenerates the primary or secondary connection strings to the queue.", "externalDocs": { @@ -1090,7 +1140,9 @@ ], "operationId": "Topics_ListAll", "x-ms-examples": { - "TopicGet": { "$ref": "./examples/SBTopicListByNameSpace.json" } + "TopicGet": { + "$ref": "./examples/SBTopicListByNameSpace.json" + } }, "description": "Gets all the topics in a namespace.", "externalDocs": { @@ -1130,7 +1182,9 @@ ], "operationId": "Topics_CreateOrUpdate", "x-ms-examples": { - "TopicCreate": { "$ref": "./examples/SBTopicCreate.json" } + "TopicCreate": { + "$ref": "./examples/SBTopicCreate.json" + } }, "description": "Creates a topic in the specified namespace.", "externalDocs": { @@ -1177,7 +1231,9 @@ ], "operationId": "Topics_Delete", "x-ms-examples": { - "TopicDelete": { "$ref": "./examples/SBTopicDelete.json" } + "TopicDelete": { + "$ref": "./examples/SBTopicDelete.json" + } }, "description": "Deletes a topic from the specified namespace and resource group.", "externalDocs": { @@ -1215,7 +1271,9 @@ ], "operationId": "Topics_Get", "x-ms-examples": { - "TopicGet": { "$ref": "./examples/SBTopicGet.json" } + "TopicGet": { + "$ref": "./examples/SBTopicGet.json" + } }, "description": "Returns a description for the specified topic.", "externalDocs": { @@ -1255,7 +1313,9 @@ ], "operationId": "Topics_ListAuthorizationRules", "x-ms-examples": { - "TopicAuthorizationRuleListAll": { "$ref": "./examples/SBTopicAuthorizationRuleListAll.json" } + "TopicAuthorizationRuleListAll": { + "$ref": "./examples/SBTopicAuthorizationRuleListAll.json" + } }, "description": "Gets authorization rules for a topic.", "externalDocs": { @@ -1298,7 +1358,9 @@ ], "operationId": "Topics_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "TopicAuthorizationRuleCreate": { "$ref": "./examples/SBTopicAuthorizationRuleCreate.json" } + "TopicAuthorizationRuleCreate": { + "$ref": "./examples/SBTopicAuthorizationRuleCreate.json" + } }, "description": "Creates an authorization rule for the specified topic.", "externalDocs": { @@ -1342,13 +1404,15 @@ } } }, - "post": { + "post": { "tags": [ "Topics" ], "operationId": "Topics_PostAuthorizationRule", "x-ms-examples": { - "TopicAuthorizationRuleGet": { "$ref": "./examples/SBTopicAuthorizationRuleGet.json" } + "TopicAuthorizationRuleGet": { + "$ref": "./examples/SBTopicAuthorizationRuleGet.json" + } }, "description": "Returns the specified authorization rule.", "externalDocs": { @@ -1389,7 +1453,9 @@ ], "operationId": "Topics_GetAuthorizationRule", "x-ms-examples": { - "TopicAuthorizationRuleGet": { "$ref": "./examples/SBTopicAuthorizationRuleGet.json" } + "TopicAuthorizationRuleGet": { + "$ref": "./examples/SBTopicAuthorizationRuleGet.json" + } }, "description": "Returns the specified authorization rule.", "externalDocs": { @@ -1430,7 +1496,9 @@ ], "operationId": "Topics_DeleteAuthorizationRule", "x-ms-examples": { - "TopicAuthorizationRuleDelete": { "$ref": "./examples/SBTopicAuthorizationRuleDelete.json" } + "TopicAuthorizationRuleDelete": { + "$ref": "./examples/SBTopicAuthorizationRuleDelete.json" + } }, "description": "Deletes a topic authorization rule.", "externalDocs": { @@ -1473,7 +1541,9 @@ ], "operationId": "Topics_ListKeys", "x-ms-examples": { - "TopicAuthorizationRuleListKey": { "$ref": "./examples/SBTopicAuthorizationRuleListKey.json" } + "TopicAuthorizationRuleListKey": { + "$ref": "./examples/SBTopicAuthorizationRuleListKey.json" + } }, "description": "Gets the primary and secondary connection strings for the topic.", "externalDocs": { @@ -1516,7 +1586,9 @@ ], "operationId": "Topics_RegenerateKeys", "x-ms-examples": { - "TopicAuthorizationRuleRegenerateKey": { "$ref": "./examples/SBTopicAuthorizationRuleRegenerateKey.json" } + "TopicAuthorizationRuleRegenerateKey": { + "$ref": "./examples/SBTopicAuthorizationRuleRegenerateKey.json" + } }, "description": "Regenerates primary or secondary connection strings for the topic.", "externalDocs": { @@ -1568,7 +1640,9 @@ ], "operationId": "Subscriptions_ListAll", "x-ms-examples": { - "SubscriptionListByTopic": { "$ref": "./examples/SBSubscriptionListByTopic.json" } + "SubscriptionListByTopic": { + "$ref": "./examples/SBSubscriptionListByTopic.json" + } }, "description": "List all the subscriptions under a specified topic.", "externalDocs": { @@ -1611,7 +1685,9 @@ ], "operationId": "Subscriptions_CreateOrUpdate", "x-ms-examples": { - "SubscriptionCreate": { "$ref": "./examples/SBSubscriptionCreate.json" } + "SubscriptionCreate": { + "$ref": "./examples/SBSubscriptionCreate.json" + } }, "description": "Creates a topic subscription.", "externalDocs": { @@ -1661,7 +1737,9 @@ ], "operationId": "Subscriptions_Delete", "x-ms-examples": { - "SubscriptionDelete": { "$ref": "./examples/SBSubscriptionDelete.json" } + "SubscriptionDelete": { + "$ref": "./examples/SBSubscriptionDelete.json" + } }, "description": "Deletes a subscription from the specified topic.", "externalDocs": { @@ -1702,7 +1780,9 @@ ], "operationId": "Subscriptions_Get", "x-ms-examples": { - "SubscriptionGet": { "$ref": "./examples/SBSubscriptionGet.json" } + "SubscriptionGet": { + "$ref": "./examples/SBSubscriptionGet.json" + } }, "description": "Returns a subscription description for the specified topic.", "externalDocs": { @@ -2747,4 +2827,3 @@ } } } - diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationCompleteMigration.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationCompleteMigration.json index 1e039b1dca68..d8618343ea63 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationCompleteMigration.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationCompleteMigration.json @@ -7,6 +7,6 @@ "subscriptionId": "SubscriptionId" }, "responses": { - "200": { } + "200": {} } } diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationCreateAndStartMigration.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationCreateAndStartMigration.json index 989694a20475..778890963f1d 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationCreateAndStartMigration.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationCreateAndStartMigration.json @@ -26,6 +26,6 @@ } } }, - "201": { } + "201": {} } } diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationDelete.json index 54a403aa1e17..e1f0ce6dcc58 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationDelete.json @@ -7,7 +7,7 @@ "subscriptionId": "SubscriptionId" }, "responses": { - "200": { }, - "204": { } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationList.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationList.json index 2e970d15565e..725559e42782 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationList.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationList.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationRevert.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationRevert.json index 51c5263efe18..d8618343ea63 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationRevert.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Migrationconfigurations/SBMigrationconfigurationRevert.json @@ -7,6 +7,6 @@ "subscriptionId": "SubscriptionId" }, "responses": { - "200": { } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleCreate.json index 483c848a227a..c873dbff441b 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleCreate.json @@ -20,8 +20,13 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6914/AuthorizationRules/sdk-AuthRules-1788", "name": "sdk-AuthRules-1788", "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleDelete.json index 70f32a893ef6..4ed4c62347ef 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleGet.json index dcc04edf560c..64d2275fe48a 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleGet.json @@ -12,8 +12,13 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6914/AuthorizationRules/sdk-AuthRules-1788/", "name": "sdk-AuthRules-1788", "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleListAll.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleListAll.json index 33b4a233985a..1f64aebc1829 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleListAll.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleListAll.json @@ -13,16 +13,27 @@ "id": "https://sbgm.windows-int.net/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6914/AuthorizationRules?api-version=2017-04-01/RootManageSharedAccessKey", "name": "RootManageSharedAccessKey", "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Manage", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Manage", + "Send" + ] + } }, { "id": "https://sbgm.windows-int.net/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6914/AuthorizationRules?api-version=2017-04-01/sdk-AuthRules-1788", "name": "sdk-AuthRules-1788", "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } ] } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleListKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleListKey.json index d82412935e41..6fa04c005c49 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleListKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleListKey.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleRegenerateKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleRegenerateKey.json index 4371ad67a37f..2051ad0acd89 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleRegenerateKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleRegenerateKey.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleUpdate.json index 6ecda00a4fd4..853948e113ee 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceAuthorizationRuleUpdate.json @@ -19,8 +19,12 @@ "id": "https://sbgm.windows-int.net/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6914/AuthorizationRules/sdk-AuthRules-1788?api-version=2017-04-01", "name": "sdk-AuthRules-1788", "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen" ] } + "properties": { + "rights": [ + "Listen" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceCheckNameAvailability.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceCheckNameAvailability.json index e54c5ea9fcc9..5f1e316b88af 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceCheckNameAvailability.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceCheckNameAvailability.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceCreate.json index 78c84c6e29ac..273a70b3260d 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceCreate.json @@ -65,4 +65,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceDelete.json index 1e52908a29b5..747d0b106269 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceListByResourceGroup.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceListByResourceGroup.json index 48fb81bf6fa2..5704dd8f2e78 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceListByResourceGroup.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceListByResourceGroup.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceUpdate.json index 52c5eea00c20..ae587b027e02 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNameSpaceUpdate.json @@ -61,4 +61,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNamespaceMigrate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNamespaceMigrate.json index ea2bd96d69c4..28f41b62bf98 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNamespaceMigrate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/SBNamespaceMigrate.json @@ -9,6 +9,6 @@ } }, "responses": { - "200": { } + "200": {} } } diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetCreate.json index 2bc46fa6cb2d..076b325021a3 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetCreate.json @@ -62,15 +62,21 @@ "defaultAction": "Deny", "virtualNetworkRules": [ { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" + }, "ignoreMissingVnetServiceEndpoint": true }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" + }, "ignoreMissingVnetServiceEndpoint": false }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" + }, "ignoreMissingVnetServiceEndpoint": false } ], @@ -100,4 +106,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetGet.json index a9659eeb10fc..850e9cf5d483 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/NameSpaces/VirtualNetworkRule/SBNetworkRuleSetGet.json @@ -15,15 +15,21 @@ "defaultAction": "Deny", "virtualNetworkRules": [ { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet2" + }, "ignoreMissingVnetServiceEndpoint": true }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet3" + }, "ignoreMissingVnetServiceEndpoint": false }, { - "subnet": { "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" }, + "subnet": { + "id": "/subscriptions/subscriptionid/resourcegroups/resourcegroupid/providers/Microsoft.Network/virtualNetworks/myvn/subnets/subnet6" + }, "ignoreMissingVnetServiceEndpoint": false } ], @@ -53,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleCreate.json index 744b217ec9f3..3e8fcec7c30a 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleCreate.json @@ -21,8 +21,13 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7982/queues/sdk-Queues-2317/authorizationRules/sdk-AuthRules-5800", "name": "sdk-AuthRules-5800", "type": "Microsoft.ServiceBus/Namespaces/Queues/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleDelete.json index 58e2d7998283..2253817df1b6 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleGet.json index b2352487003a..531d4fff28a9 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleGet.json @@ -13,8 +13,13 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7982/queues/sdk-Queues-2317/authorizationRules/sdk-AuthRules-5800", "name": "sdk-AuthRules-5800", "type": "Microsoft.ServiceBus/Namespaces/Queues/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleListAll.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleListAll.json index 2c415193af2b..7d18896a6fb3 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleListAll.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleListAll.json @@ -14,10 +14,15 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7982/queues/sdk-Queues-2317/authorizationRules/sdk-AuthRules-5800", "name": "sdk-AuthRules-5800", "type": "Microsoft.ServiceBus/Namespaces/Queues/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } ] } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleListKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleListKey.json index 9a58296f83dc..50e15edca30c 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleListKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleListKey.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleRegenerateKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleRegenerateKey.json index dc2c2ade85e1..03d3f4f0bb9d 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleRegenerateKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleRegenerateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleUpdate.json index 3bcdf3015327..ff377711a48d 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueAuthorizationRuleUpdate.json @@ -20,8 +20,12 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7982/queues/sdk-Queues-2317/authorizationRules/sdk-AuthRules-5800", "name": "sdk-AuthRules-5800", "type": "Microsoft.ServiceBus/Namespaces/Queues/AuthorizationRules", - "properties": { "rights": [ "Listen" ] } + "properties": { + "rights": [ + "Listen" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueCreate.json index 1b12c98c7af0..046d26c85f32 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueCreate.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueDelete.json index 3f60ef3090f9..8f1f9abe5c74 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueDelete.json @@ -10,4 +10,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueListByNameSpace.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueListByNameSpace.json index 0858b67b1d30..e954ec5c3ab2 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueListByNameSpace.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueListByNameSpace.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueUpdate.json index a0160a9cc53b..4fd9b6bcefee 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Queues/SBQueueUpdate.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate.json index 8414ede8b974..7ffc5cf48463 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate.json @@ -7,7 +7,7 @@ "ruleName": "sdk-Rules-6571", "api-version": "2017-04-01", "subscriptionId": "subscriptionId", - "parameters": { } + "parameters": {} }, "responses": { "200": { @@ -16,7 +16,7 @@ "name": "sdk-Rules-6571", "type": "Microsoft.ServiceBus/Namespaces/Topics/Subscriptions/Rules", "properties": { - "action": { }, + "action": {}, "filterType": "SqlFilter", "sqlFilter": { "sqlExpression": "1=1", @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate_CorrelationFilter.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate_CorrelationFilter.json index 844dd80eeb2d..ae940f4c6982 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate_CorrelationFilter.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate_CorrelationFilter.json @@ -25,9 +25,13 @@ "name": "sdk-Rules-6571", "type": "Microsoft.ServiceBus/Namespaces/Topics/Subscriptions/Rules", "properties": { - "action": { }, + "action": {}, "filterType": "CorrelationFilter", - "correlationFilter": { "properties": { "queueHint": "Crop" } } + "correlationFilter": { + "properties": { + "queueHint": "Crop" + } + } } } } diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate_SqlFilter.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate_SqlFilter.json index 2d5145fa2cd7..ee8eaaf261b4 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate_SqlFilter.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleCreate_SqlFilter.json @@ -23,7 +23,7 @@ "name": "sdk-Rules-6571", "type": "Microsoft.ServiceBus/Namespaces/Topics/Subscriptions/Rules", "properties": { - "action": { }, + "action": {}, "filterType": "SqlFilter", "sqlFilter": { "sqlExpression": "myproperty=test", diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleDelete.json index 9eb6175eb55d..e4f3677e87e7 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleDelete.json @@ -12,4 +12,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleListBySubscription.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleListBySubscription.json index 5144e2f23b18..151762301949 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleListBySubscription.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Rules/RuleListBySubscription.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SBOperations_List.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SBOperations_List.json index 88fcc9192f96..503450fe0141 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SBOperations_List.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SBOperations_List.json @@ -14,7 +14,7 @@ "operation": "Get namespace availability." } }, - { + { "name": "Microsoft.ServiceBus/register/action", "display": { "provider": "Microsoft Azure ServiceBus", @@ -298,4 +298,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SkuRegions/EventHubs.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SkuRegions/EventHubs.json index 49ac931039da..c542e6cfa19a 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SkuRegions/EventHubs.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SkuRegions/EventHubs.json @@ -7,7 +7,7 @@ }, "responses": { "200": { - "body": { + "body": { "value": [ { "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-716/eventhubs/sdk-eventhub-10", @@ -19,7 +19,12 @@ "status": "Active", "createdAt": "2017-06-28T02:45:55.877Z", "updatedAt": "2017-06-28T02:46:05.877Z", - "partitionIds": [ "0", "1", "2", "3" ], + "partitionIds": [ + "0", + "1", + "2", + "3" + ], "captureDescription": { "enabled": true, "encoding": "Avro", @@ -40,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SkuRegions/SkuRegions.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SkuRegions/SkuRegions.json index f83e71f0a150..9fdd2547fd92 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SkuRegions/SkuRegions.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/SkuRegions/SkuRegions.json @@ -2,12 +2,12 @@ "parameters": { "api-version": "2017-04-01", "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", - "sku": "Basic" + "sku": "Basic" }, "responses": { "200": { "body": { - "value": [ + "value": [ { "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/providers/Microsoft.ServiceBus/sku/Basic/regions/CentralUS", "name": "Central US", diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionCreate.json index 0ee1c0e83507..15438f35186a 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionCreate.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionDelete.json index 12040375051e..db28183d56d3 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionListByTopic.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionListByTopic.json index 34a2631e56c1..b0d60dd2aaf1 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionListByTopic.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionListByTopic.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionUpdate.json index 1d6bd2b20e7c..ef2ce1c4f578 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Subscriptions/SBSubscriptionUpdate.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleCreate.json index d65ef41542e8..880d3079a365 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleCreate.json @@ -21,8 +21,13 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6261/topics/sdk-Topics-1984/authorizationRules/sdk-AuthRules-4310", "name": "sdk-AuthRules-4310", "type": "Microsoft.ServiceBus/Namespaces/Topics/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleDelete.json index c05efd4f9e73..9260c6ba3522 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleDelete.json @@ -11,4 +11,4 @@ "200": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleGet.json index 6bcf13c524c7..44eac29d1dc8 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleGet.json @@ -13,8 +13,13 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6261/topics/sdk-Topics-1984/authorizationRules/sdk-AuthRules-4310", "name": "sdk-AuthRules-4310", "type": "Microsoft.ServiceBus/Namespaces/Topics/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleListAll.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleListAll.json index 6f4a5657dbdb..19494428b1aa 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleListAll.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleListAll.json @@ -14,10 +14,15 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6261/topics/sdk-Topics-1984/authorizationRules/sdk-AuthRules-4310", "name": "sdk-AuthRules-4310", "type": "Microsoft.ServiceBus/Namespaces/Topics/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } + "properties": { + "rights": [ + "Listen", + "Send" + ] + } } ] } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleListKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleListKey.json index 2f9d8f431064..18e85573ce4a 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleListKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleListKey.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleRegenerateKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleRegenerateKey.json index 51744711c886..3ec75c010815 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleRegenerateKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleRegenerateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleUpdate.json index fcd3e4084167..5b6cfcd95b94 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicAuthorizationRuleUpdate.json @@ -20,8 +20,12 @@ "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6261/topics/sdk-Topics-1984/authorizationRules/sdk-AuthRules-4310", "name": "sdk-AuthRules-4310", "type": "Microsoft.ServiceBus/Namespaces/Topics/AuthorizationRules", - "properties": { "rights": [ "Listen" ] } + "properties": { + "rights": [ + "Listen" + ] + } } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicCreate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicCreate.json index f9d86102850a..b0079c09a8d7 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicCreate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicCreate.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicDelete.json index ebba9e051dbd..220a0c3b3acb 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicDelete.json @@ -8,5 +8,6 @@ }, "responses": { "200": {}, - "204": {} } -} \ No newline at end of file + "204": {} + } +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicListByNameSpace.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicListByNameSpace.json index 1acf697b0db1..9923581a7030 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicListByNameSpace.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicListByNameSpace.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicUpdate.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicUpdate.json index 25f2c24d9f56..f8e08eb7ddd4 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicUpdate.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/Topics/SBTopicUpdate.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleGet.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleGet.json index 5a5af975ecc2..aadd2ccaf3f3 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleGet.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleGet.json @@ -10,11 +10,16 @@ "responses": { "200": { "body": { - "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-4879", - "name": "sdk-Authrules-4879", - "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - } + "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-4879", + "name": "sdk-Authrules-4879", + "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListAll.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListAll.json index 13bd24456fdc..3709fd28a635 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListAll.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListAll.json @@ -9,33 +9,54 @@ "responses": { "200": { "body": { - "value": [ - { - "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/RootManageSharedAccessKey", - "name": "RootManageSharedAccessKey", - "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Manage", "Send" ] } - }, - { - "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-1067", - "name": "sdk-Authrules-1067", - "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - }, - { - "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-1684", - "name": "sdk-Authrules-1684", - "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - }, - { - "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-4879", - "name": "sdk-Authrules-4879", - "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", - "properties": { "rights": [ "Listen", "Send" ] } - } - ] - } + "value": [ + { + "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/RootManageSharedAccessKey", + "name": "RootManageSharedAccessKey", + "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Manage", + "Send" + ] + } + }, + { + "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-1067", + "name": "sdk-Authrules-1067", + "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + }, + { + "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-1684", + "name": "sdk-Authrules-1684", + "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + }, + { + "id": "/subscriptions/exampleSubscriptionId/resourceGroups/exampleResourceGroup/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9080/disasterRecoveryConfigs/sdk-DisasterRecovery-4047/AuthorizationRules/sdk-Authrules-4879", + "name": "sdk-Authrules-4879", + "type": "Microsoft.ServiceBus/Namespaces/AuthorizationRules", + "properties": { + "rights": [ + "Listen", + "Send" + ] + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListKey.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListKey.json index 7a0f84b9447a..0a737fe403ff 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListKey.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListKey.json @@ -10,12 +10,12 @@ "responses": { "200": { "body": { - "aliasPrimaryConnectionString": "Endpoint=sb://sdk-disasterrecovery-4047.servicebus.windows-int.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=############################################", - "aliasSecondaryConnectionString": "Endpoint=sb://sdk-disasterrecovery-4047.servicebus.windows-int.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=############################################", + "aliasPrimaryConnectionString": "Endpoint=sb://sdk-disasterrecovery-4047.servicebus.windows-int.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=############################################", + "aliasSecondaryConnectionString": "Endpoint=sb://sdk-disasterrecovery-4047.servicebus.windows-int.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=############################################", "primaryKey": "############################################", "secondaryKey": "############################################", "keyName": "sdk-Authrules-1746" } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasCheckNameAvailability.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasCheckNameAvailability.json index eb55819824ba..002c618a643b 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasCheckNameAvailability.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasCheckNameAvailability.json @@ -4,8 +4,8 @@ "subscriptionId": "exampleSubscriptionId", "namespaceName": "sdk-Namespace-9080", "resourceGroupName": "exampleResourceGroup", - "parameters": { - "name": "sdk-DisasterRecovery-9474" + "parameters": { + "name": "sdk-DisasterRecovery-9474" } }, "responses": { @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasDelete.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasDelete.json index b5aa995963cd..b0940231d28d 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasDelete.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasDelete.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasFailOver.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasFailOver.json index df7d155d71b8..9eebc2078df1 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasFailOver.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasFailOver.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasList.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasList.json index ea2881f7a662..66ab8cb338ba 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasList.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/examples/disasterRecoveryConfigs/SBAliasList.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/servicebus.json b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/servicebus.json index 4759d4311bbc..749a1454cf39 100644 --- a/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/servicebus.json +++ b/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2017-04-01/servicebus.json @@ -41,7 +41,9 @@ ], "operationId": "Operations_List", "x-ms-examples": { - "OperationsList": { "$ref": "./examples/SBOperations_List.json" } + "OperationsList": { + "$ref": "./examples/SBOperations_List.json" + } }, "description": "Lists all of the available ServiceBus REST API operations.", "parameters": [ @@ -75,7 +77,9 @@ ], "operationId": "Namespaces_CheckNameAvailability", "x-ms-examples": { - "NameSpaceCheckNameAvailability": { "$ref": "./examples/NameSpaces/SBNameSpaceCheckNameAvailability.json" } + "NameSpaceCheckNameAvailability": { + "$ref": "./examples/NameSpaces/SBNameSpaceCheckNameAvailability.json" + } }, "description": "Check the give namespace name availability.", "parameters": [ @@ -118,7 +122,9 @@ ], "operationId": "Namespaces_List", "x-ms-examples": { - "NameSpaceList": { "$ref": "./examples/NameSpaces/SBNameSpaceList.json" } + "NameSpaceList": { + "$ref": "./examples/NameSpaces/SBNameSpaceList.json" + } }, "description": "Gets all the available namespaces within the subscription, irrespective of the resource groups.", "externalDocs": { @@ -158,7 +164,9 @@ ], "operationId": "Namespaces_ListByResourceGroup", "x-ms-examples": { - "NameSpaceListByResourceGroup": { "$ref": "./examples/NameSpaces/SBNameSpaceListByResourceGroup.json" } + "NameSpaceListByResourceGroup": { + "$ref": "./examples/NameSpaces/SBNameSpaceListByResourceGroup.json" + } }, "description": "Gets the available namespaces within a resource group.", "externalDocs": { @@ -201,7 +209,9 @@ ], "operationId": "Namespaces_CreateOrUpdate", "x-ms-examples": { - "NameSpaceCreate": { "$ref": "./examples/NameSpaces/SBNameSpaceCreate.json" } + "NameSpaceCreate": { + "$ref": "./examples/NameSpaces/SBNameSpaceCreate.json" + } }, "description": "Creates or updates a service namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "externalDocs": { @@ -265,7 +275,9 @@ ], "operationId": "Namespaces_Delete", "x-ms-examples": { - "NameSpaceDelete": { "$ref": "./examples/NameSpaces/SBNameSpaceDelete.json" } + "NameSpaceDelete": { + "$ref": "./examples/NameSpaces/SBNameSpaceDelete.json" + } }, "description": "Deletes an existing namespace. This operation also removes all associated resources under the namespace.", "externalDocs": { @@ -310,7 +322,9 @@ ], "operationId": "Namespaces_Get", "x-ms-examples": { - "NameSpaceGet": { "$ref": "./examples/NameSpaces/SBNameSpaceGet.json" } + "NameSpaceGet": { + "$ref": "./examples/NameSpaces/SBNameSpaceGet.json" + } }, "description": "Gets a description for the specified namespace.", "externalDocs": { @@ -351,7 +365,9 @@ ], "operationId": "Namespaces_Update", "x-ms-examples": { - "NameSpaceUpdate": { "$ref": "./examples/NameSpaces/SBNameSpaceUpdate.json" } + "NameSpaceUpdate": { + "$ref": "./examples/NameSpaces/SBNameSpaceUpdate.json" + } }, "description": "Updates a service namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.", "parameters": [ @@ -409,7 +425,9 @@ ], "operationId": "Namespaces_ListAuthorizationRules", "x-ms-examples": { - "NameSpaceAuthorizationRuleListAll": { "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleListAll.json" } + "NameSpaceAuthorizationRuleListAll": { + "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleListAll.json" + } }, "description": "Gets the authorization rules for a namespace.", "externalDocs": { @@ -455,7 +473,9 @@ ], "operationId": "Namespaces_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleCreate": { "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleCreate.json" } + "NameSpaceAuthorizationRuleCreate": { + "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleCreate.json" + } }, "description": "Creates or updates an authorization rule for a namespace.", "externalDocs": { @@ -508,7 +528,9 @@ ], "operationId": "Namespaces_DeleteAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleDelete": { "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleDelete.json" } + "NameSpaceAuthorizationRuleDelete": { + "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleDelete.json" + } }, "description": "Deletes a namespace authorization rule.", "externalDocs": { @@ -552,7 +574,9 @@ ], "operationId": "Namespaces_GetAuthorizationRule", "x-ms-examples": { - "NameSpaceAuthorizationRuleGet": { "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleGet.json" } + "NameSpaceAuthorizationRuleGet": { + "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleGet.json" + } }, "description": "Gets an authorization rule for a namespace by rule name.", "externalDocs": { @@ -598,7 +622,9 @@ ], "operationId": "Namespaces_ListKeys", "x-ms-examples": { - "NameSpaceAuthorizationRuleListKey": { "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleListKey.json" } + "NameSpaceAuthorizationRuleListKey": { + "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleListKey.json" + } }, "description": "Gets the primary and secondary connection strings for the namespace.", "externalDocs": { @@ -644,7 +670,9 @@ ], "operationId": "Namespaces_RegenerateKeys", "x-ms-examples": { - "NameSpaceAuthorizationRuleRegenerateKey": { "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleRegenerateKey.json" } + "NameSpaceAuthorizationRuleRegenerateKey": { + "$ref": "./examples/NameSpaces/SBNameSpaceAuthorizationRuleRegenerateKey.json" + } }, "description": "Regenerates the primary or secondary connection strings for the namespace.", "externalDocs": { @@ -699,7 +727,9 @@ ], "operationId": "Namespaces_Migrate", "x-ms-examples": { - "NameSpaceUpdate": { "$ref": "./examples/NameSpaces/SBNamespaceMigrate.json" } + "NameSpaceUpdate": { + "$ref": "./examples/NameSpaces/SBNamespaceMigrate.json" + } }, "description": "This operation Migrate the given namespace to provided name type", "parameters": [ @@ -745,7 +775,9 @@ ], "operationId": "DisasterRecoveryConfigs_CheckNameAvailability", "x-ms-examples": { - "AliasNameAvailability": { "$ref": "./examples/disasterRecoveryConfigs/SBAliasCheckNameAvailability.json" } + "AliasNameAvailability": { + "$ref": "./examples/disasterRecoveryConfigs/SBAliasCheckNameAvailability.json" + } }, "description": "Check the give namespace name availability.", "parameters": [ @@ -794,7 +826,9 @@ ], "operationId": "DisasterRecoveryConfigs_List", "x-ms-examples": { - "SBAliasList": { "$ref": "./examples/disasterRecoveryConfigs/SBAliasList.json" } + "SBAliasList": { + "$ref": "./examples/disasterRecoveryConfigs/SBAliasList.json" + } }, "description": "Gets all Alias(Disaster Recovery configurations)", "parameters": [ @@ -837,7 +871,9 @@ ], "operationId": "DisasterRecoveryConfigs_CreateOrUpdate", "x-ms-examples": { - "SBAliasCreate": { "$ref": "./examples/disasterRecoveryConfigs/SBAliasCreate.json" } + "SBAliasCreate": { + "$ref": "./examples/disasterRecoveryConfigs/SBAliasCreate.json" + } }, "description": "Creates or updates a new Alias(Disaster Recovery configuration)", "parameters": [ @@ -890,7 +926,9 @@ ], "operationId": "DisasterRecoveryConfigs_Delete", "x-ms-examples": { - "SBAliasDelete": { "$ref": "./examples/disasterRecoveryConfigs/SBAliasDelete.json" } + "SBAliasDelete": { + "$ref": "./examples/disasterRecoveryConfigs/SBAliasDelete.json" + } }, "description": "Deletes an Alias(Disaster Recovery configuration)", "parameters": [ @@ -928,7 +966,9 @@ ], "operationId": "DisasterRecoveryConfigs_Get", "x-ms-examples": { - "SBAliasGet": { "$ref": "./examples/disasterRecoveryConfigs/SBAliasGet.json" } + "SBAliasGet": { + "$ref": "./examples/disasterRecoveryConfigs/SBAliasGet.json" + } }, "description": "Retrieves Alias(Disaster Recovery configuration) for primary or secondary namespace", "parameters": [ @@ -971,7 +1011,9 @@ ], "operationId": "DisasterRecoveryConfigs_BreakPairing", "x-ms-examples": { - "SBEHAliasBreakPairing": { "$ref": "./examples/disasterRecoveryConfigs/SBEHAliasBreakPairing.json" } + "SBEHAliasBreakPairing": { + "$ref": "./examples/disasterRecoveryConfigs/SBEHAliasBreakPairing.json" + } }, "description": "This operation disables the Disaster Recovery and stops replicating changes from primary to secondary namespaces", "parameters": [ @@ -1011,7 +1053,9 @@ ], "operationId": "DisasterRecoveryConfigs_FailOver", "x-ms-examples": { - "SBAliasFailOver": { "$ref": "./examples/disasterRecoveryConfigs/SBAliasFailOver.json" } + "SBAliasFailOver": { + "$ref": "./examples/disasterRecoveryConfigs/SBAliasFailOver.json" + } }, "description": "Invokes GEO DR failover and reconfigure the alias to point to the secondary namespace", "parameters": [ @@ -1051,7 +1095,9 @@ ], "operationId": "DisasterRecoveryConfigs_ListAuthorizationRules", "x-ms-examples": { - "NameSpaceAuthorizationRuleListAll": { "$ref": "./examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListAll.json" } + "NameSpaceAuthorizationRuleListAll": { + "$ref": "./examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListAll.json" + } }, "description": "Gets the authorization rules for a namespace.", "externalDocs": { @@ -1100,7 +1146,9 @@ ], "operationId": "DisasterRecoveryConfigs_GetAuthorizationRule", "x-ms-examples": { - "DisasterRecoveryConfigsAuthorizationRuleGet": { "$ref": "./examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleGet.json" } + "DisasterRecoveryConfigsAuthorizationRuleGet": { + "$ref": "./examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleGet.json" + } }, "description": "Gets an authorization rule for a namespace by rule name.", "externalDocs": { @@ -1149,7 +1197,9 @@ ], "operationId": "DisasterRecoveryConfigs_ListKeys", "x-ms-examples": { - "DisasterRecoveryConfigsAuthorizationRuleListKey": { "$ref": "./examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListKey.json" } + "DisasterRecoveryConfigsAuthorizationRuleListKey": { + "$ref": "./examples/disasterRecoveryConfigs/SBAliasAuthorizationRuleListKey.json" + } }, "description": "Gets the primary and secondary connection strings for the namespace.", "externalDocs": { @@ -1198,7 +1248,9 @@ ], "operationId": "MigrationConfigs_List", "x-ms-examples": { - "MigrationConfigurationsList": { "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationList.json" } + "MigrationConfigurationsList": { + "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationList.json" + } }, "description": "Gets all migrationConfigurations", "parameters": [ @@ -1241,7 +1293,9 @@ ], "operationId": "MigrationConfigs_CreateAndStartMigration", "x-ms-examples": { - "MigrationConfigurationsStartMigration": { "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationCreateAndStartMigration.json" } + "MigrationConfigurationsStartMigration": { + "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationCreateAndStartMigration.json" + } }, "description": "Creates Migration configuration and starts migration of entities from Standard to Premium namespace", "parameters": [ @@ -1295,7 +1349,9 @@ ], "operationId": "MigrationConfigs_Delete", "x-ms-examples": { - "MigrationConfigurationsDelete": { "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationDelete.json" } + "MigrationConfigurationsDelete": { + "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationDelete.json" + } }, "description": "Deletes a MigrationConfiguration", "parameters": [ @@ -1336,7 +1392,9 @@ ], "operationId": "MigrationConfigs_Get", "x-ms-examples": { - "MigrationConfigurationsGet": { "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationGet.json" } + "MigrationConfigurationsGet": { + "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationGet.json" + } }, "description": "Retrieves Migration Config", "parameters": [ @@ -1379,7 +1437,9 @@ ], "operationId": "MigrationConfigs_CompleteMigration", "x-ms-examples": { - "MigrationConfigurationsCompleteMigration": { "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationCompleteMigration.json" } + "MigrationConfigurationsCompleteMigration": { + "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationCompleteMigration.json" + } }, "description": "This operation Completes Migration of entities by pointing the connection strings to Premium namespace and any entities created after the operation will be under Premium Namespace. CompleteMigration operation will fail when entity migration is in-progress.", "parameters": [ @@ -1419,7 +1479,9 @@ ], "operationId": "MigrationConfigs_Revert", "x-ms-examples": { - "MigrationConfigurationsRevert": { "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationRevert.json" } + "MigrationConfigurationsRevert": { + "$ref": "./examples/Migrationconfigurations/SBMigrationconfigurationRevert.json" + } }, "description": "This operation reverts Migration", "parameters": [ @@ -1459,7 +1521,9 @@ ], "operationId": "Queues_ListByNamespace", "x-ms-examples": { - "QueueListByNameSpace": { "$ref": "./examples/Queues/SBQueueListByNameSpace.json" } + "QueueListByNameSpace": { + "$ref": "./examples/Queues/SBQueueListByNameSpace.json" + } }, "description": "Gets the queues within a namespace.", "externalDocs": { @@ -1511,7 +1575,9 @@ ], "operationId": "Queues_CreateOrUpdate", "x-ms-examples": { - "QueueCreate": { "$ref": "./examples/Queues/SBQueueCreate.json" } + "QueueCreate": { + "$ref": "./examples/Queues/SBQueueCreate.json" + } }, "description": "Creates or updates a Service Bus queue. This operation is idempotent.", "externalDocs": { @@ -1564,7 +1630,9 @@ ], "operationId": "Queues_Delete", "x-ms-examples": { - "QueueDelete": { "$ref": "./examples/Queues/SBQueueDelete.json" } + "QueueDelete": { + "$ref": "./examples/Queues/SBQueueDelete.json" + } }, "description": "Deletes a queue from the specified namespace in a resource group.", "externalDocs": { @@ -1608,7 +1676,9 @@ ], "operationId": "Queues_Get", "x-ms-examples": { - "QueueGet": { "$ref": "./examples/Queues/SBQueueGet.json" } + "QueueGet": { + "$ref": "./examples/Queues/SBQueueGet.json" + } }, "description": "Returns a description for the specified queue.", "externalDocs": { @@ -1654,7 +1724,9 @@ ], "operationId": "Queues_ListAuthorizationRules", "x-ms-examples": { - "QueueAuthorizationRuleListAll": { "$ref": "./examples/Queues/SBQueueAuthorizationRuleListAll.json" } + "QueueAuthorizationRuleListAll": { + "$ref": "./examples/Queues/SBQueueAuthorizationRuleListAll.json" + } }, "description": "Gets all authorization rules for a queue.", "externalDocs": { @@ -1703,7 +1775,9 @@ ], "operationId": "Queues_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "QueueAuthorizationRuleCreate": { "$ref": "./examples/Queues/SBQueueAuthorizationRuleCreate.json" } + "QueueAuthorizationRuleCreate": { + "$ref": "./examples/Queues/SBQueueAuthorizationRuleCreate.json" + } }, "description": "Creates an authorization rule for a queue.", "parameters": [ @@ -1756,7 +1830,9 @@ ], "operationId": "Queues_DeleteAuthorizationRule", "x-ms-examples": { - "QueueAuthorizationRuleDelete": { "$ref": "./examples/Queues/SBQueueAuthorizationRuleDelete.json" } + "QueueAuthorizationRuleDelete": { + "$ref": "./examples/Queues/SBQueueAuthorizationRuleDelete.json" + } }, "description": "Deletes a queue authorization rule.", "externalDocs": { @@ -1803,7 +1879,9 @@ ], "operationId": "Queues_GetAuthorizationRule", "x-ms-examples": { - "QueueAuthorizationRuleGet": { "$ref": "./examples/Queues/SBQueueAuthorizationRuleGet.json" } + "QueueAuthorizationRuleGet": { + "$ref": "./examples/Queues/SBQueueAuthorizationRuleGet.json" + } }, "description": "Gets an authorization rule for a queue by rule name.", "externalDocs": { @@ -1852,7 +1930,9 @@ ], "operationId": "Queues_ListKeys", "x-ms-examples": { - "QueueAuthorizationRuleListKey": { "$ref": "./examples/Queues/SBQueueAuthorizationRuleListKey.json" } + "QueueAuthorizationRuleListKey": { + "$ref": "./examples/Queues/SBQueueAuthorizationRuleListKey.json" + } }, "description": "Primary and secondary connection strings to the queue.", "externalDocs": { @@ -1901,7 +1981,9 @@ ], "operationId": "Queues_RegenerateKeys", "x-ms-examples": { - "QueueAuthorizationRuleRegenerateKey": { "$ref": "./examples/Queues/SBQueueAuthorizationRuleRegenerateKey.json" } + "QueueAuthorizationRuleRegenerateKey": { + "$ref": "./examples/Queues/SBQueueAuthorizationRuleRegenerateKey.json" + } }, "description": "Regenerates the primary or secondary connection strings to the queue.", "externalDocs": { @@ -1959,7 +2041,9 @@ ], "operationId": "Topics_ListByNamespace", "x-ms-examples": { - "TopicGet": { "$ref": "./examples/Topics/SBTopicListByNameSpace.json" } + "TopicGet": { + "$ref": "./examples/Topics/SBTopicListByNameSpace.json" + } }, "description": "Gets all the topics in a namespace.", "externalDocs": { @@ -2011,7 +2095,9 @@ ], "operationId": "Topics_CreateOrUpdate", "x-ms-examples": { - "TopicCreate": { "$ref": "./examples/Topics/SBTopicCreate.json" } + "TopicCreate": { + "$ref": "./examples/Topics/SBTopicCreate.json" + } }, "description": "Creates a topic in the specified namespace.", "externalDocs": { @@ -2064,7 +2150,9 @@ ], "operationId": "Topics_Delete", "x-ms-examples": { - "TopicDelete": { "$ref": "./examples/Topics/SBTopicDelete.json" } + "TopicDelete": { + "$ref": "./examples/Topics/SBTopicDelete.json" + } }, "description": "Deletes a topic from the specified namespace and resource group.", "externalDocs": { @@ -2108,7 +2196,9 @@ ], "operationId": "Topics_Get", "x-ms-examples": { - "TopicGet": { "$ref": "./examples/Topics/SBTopicGet.json" } + "TopicGet": { + "$ref": "./examples/Topics/SBTopicGet.json" + } }, "description": "Returns a description for the specified topic.", "externalDocs": { @@ -2154,7 +2244,9 @@ ], "operationId": "Topics_ListAuthorizationRules", "x-ms-examples": { - "TopicAuthorizationRuleListAll": { "$ref": "./examples/Topics/SBTopicAuthorizationRuleListAll.json" } + "TopicAuthorizationRuleListAll": { + "$ref": "./examples/Topics/SBTopicAuthorizationRuleListAll.json" + } }, "description": "Gets authorization rules for a topic.", "externalDocs": { @@ -2203,7 +2295,9 @@ ], "operationId": "Topics_CreateOrUpdateAuthorizationRule", "x-ms-examples": { - "TopicAuthorizationRuleCreate": { "$ref": "./examples/Topics/SBTopicAuthorizationRuleCreate.json" } + "TopicAuthorizationRuleCreate": { + "$ref": "./examples/Topics/SBTopicAuthorizationRuleCreate.json" + } }, "description": "Creates an authorization rule for the specified topic.", "externalDocs": { @@ -2259,7 +2353,9 @@ ], "operationId": "Topics_GetAuthorizationRule", "x-ms-examples": { - "TopicAuthorizationRuleGet": { "$ref": "./examples/Topics/SBTopicAuthorizationRuleGet.json" } + "TopicAuthorizationRuleGet": { + "$ref": "./examples/Topics/SBTopicAuthorizationRuleGet.json" + } }, "description": "Returns the specified authorization rule.", "externalDocs": { @@ -2306,7 +2402,9 @@ ], "operationId": "Topics_DeleteAuthorizationRule", "x-ms-examples": { - "TopicAuthorizationRuleDelete": { "$ref": "./examples/Topics/SBTopicAuthorizationRuleDelete.json" } + "TopicAuthorizationRuleDelete": { + "$ref": "./examples/Topics/SBTopicAuthorizationRuleDelete.json" + } }, "description": "Deletes a topic authorization rule.", "externalDocs": { @@ -2355,7 +2453,9 @@ ], "operationId": "Topics_ListKeys", "x-ms-examples": { - "TopicAuthorizationRuleListKey": { "$ref": "./examples/Topics/SBTopicAuthorizationRuleListKey.json" } + "TopicAuthorizationRuleListKey": { + "$ref": "./examples/Topics/SBTopicAuthorizationRuleListKey.json" + } }, "description": "Gets the primary and secondary connection strings for the topic.", "externalDocs": { @@ -2404,7 +2504,9 @@ ], "operationId": "Topics_RegenerateKeys", "x-ms-examples": { - "TopicAuthorizationRuleRegenerateKey": { "$ref": "./examples/Topics/SBTopicAuthorizationRuleRegenerateKey.json" } + "TopicAuthorizationRuleRegenerateKey": { + "$ref": "./examples/Topics/SBTopicAuthorizationRuleRegenerateKey.json" + } }, "description": "Regenerates primary or secondary connection strings for the topic.", "externalDocs": { @@ -2462,7 +2564,9 @@ ], "operationId": "Subscriptions_ListByTopic", "x-ms-examples": { - "SubscriptionListByTopic": { "$ref": "./examples/Subscriptions/SBSubscriptionListByTopic.json" } + "SubscriptionListByTopic": { + "$ref": "./examples/Subscriptions/SBSubscriptionListByTopic.json" + } }, "description": "List all the subscriptions under a specified topic.", "externalDocs": { @@ -2517,7 +2621,9 @@ ], "operationId": "Subscriptions_CreateOrUpdate", "x-ms-examples": { - "SubscriptionCreate": { "$ref": "./examples/Subscriptions/SBSubscriptionCreate.json" } + "SubscriptionCreate": { + "$ref": "./examples/Subscriptions/SBSubscriptionCreate.json" + } }, "description": "Creates a topic subscription.", "externalDocs": { @@ -2573,7 +2679,9 @@ ], "operationId": "Subscriptions_Delete", "x-ms-examples": { - "SubscriptionDelete": { "$ref": "./examples/Subscriptions/SBSubscriptionDelete.json" } + "SubscriptionDelete": { + "$ref": "./examples/Subscriptions/SBSubscriptionDelete.json" + } }, "description": "Deletes a subscription from the specified topic.", "externalDocs": { @@ -2620,7 +2728,9 @@ ], "operationId": "Subscriptions_Get", "x-ms-examples": { - "SubscriptionGet": { "$ref": "./examples/Subscriptions/SBSubscriptionGet.json" } + "SubscriptionGet": { + "$ref": "./examples/Subscriptions/SBSubscriptionGet.json" + } }, "description": "Returns a subscription description for the specified topic.", "externalDocs": { @@ -2669,7 +2779,9 @@ ], "operationId": "Rules_ListBySubscriptions", "x-ms-examples": { - "RulesListBySubscriptions": { "$ref": "./examples/Rules/RuleListBySubscription.json" } + "RulesListBySubscriptions": { + "$ref": "./examples/Rules/RuleListBySubscription.json" + } }, "description": "List all the rules within given topic-subscription", "parameters": [ @@ -2724,9 +2836,15 @@ ], "operationId": "Rules_CreateOrUpdate", "x-ms-examples": { - "RulesCreateOrUpdate": { "$ref": "./examples/Rules/RuleCreate.json" }, - "RulesCreateSqlFilter": { "$ref": "./examples/Rules/RuleCreate_SqlFilter.json" }, - "RulesCreateCorrelationFilter": { "$ref": "./examples/Rules/RuleCreate_CorrelationFilter.json" } + "RulesCreateOrUpdate": { + "$ref": "./examples/Rules/RuleCreate.json" + }, + "RulesCreateSqlFilter": { + "$ref": "./examples/Rules/RuleCreate_SqlFilter.json" + }, + "RulesCreateCorrelationFilter": { + "$ref": "./examples/Rules/RuleCreate_CorrelationFilter.json" + } }, "description": "Creates a new rule and updates an existing rule", "parameters": [ @@ -2782,7 +2900,9 @@ ], "operationId": "Rules_Delete", "x-ms-examples": { - "RulesDelete": { "$ref": "./examples/Rules/RuleDelete.json" } + "RulesDelete": { + "$ref": "./examples/Rules/RuleDelete.json" + } }, "description": "Deletes an existing rule.", "parameters": [ @@ -2829,7 +2949,9 @@ ], "operationId": "Rules_Get", "x-ms-examples": { - "RulesGet": { "$ref": "./examples/Rules/RuleGet.json" } + "RulesGet": { + "$ref": "./examples/Rules/RuleGet.json" + } }, "description": "Retrieves the description for the specified rule.", "externalDocs": { @@ -2881,7 +3003,9 @@ ], "operationId": "Regions_ListBySku", "x-ms-examples": { - "RegionsListBySku": { "$ref": "./examples/SkuRegions/SkuRegions.json" } + "RegionsListBySku": { + "$ref": "./examples/SkuRegions/SkuRegions.json" + } }, "description": "Gets the available Regions for a given sku", "parameters": [ @@ -2921,7 +3045,9 @@ ], "operationId": "PremiumMessagingRegions_List", "x-ms-examples": { - "PremiumMessagingRegionsList": { "$ref": "./examples/SkuRegions/PremiumMessagingRegions.json" } + "PremiumMessagingRegionsList": { + "$ref": "./examples/SkuRegions/PremiumMessagingRegions.json" + } }, "description": "Gets the available premium messaging regions for servicebus ", "parameters": [ @@ -2958,7 +3084,9 @@ ], "operationId": "EventHubs_ListByNamespace", "x-ms-examples": { - "RulesCreateOrUpdate": { "$ref": "./examples/SkuRegions/EventHubs.json" } + "RulesCreateOrUpdate": { + "$ref": "./examples/SkuRegions/EventHubs.json" + } }, "description": "Gets all the Event Hubs in a service bus Namespace.", "parameters": [ @@ -4268,7 +4396,6 @@ "captureDescription": { "$ref": "#/definitions/CaptureDescription", "description": "Properties of capture description" - } }, "description": "Properties supplied to the Create Or Update Event Hub operation." diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-1.json index dc2775e07732..8745ed2793a7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-1.json @@ -7,7 +7,6 @@ "BackupPartitionDescription": {} }, "responses": { - "202": { - } + "202": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-2.json index 48e257f80657..d859b271ef43 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-2.json @@ -10,10 +10,9 @@ "ConnectionString": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", "ContainerName": "BackupContainer" } - } + } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-3.json index c827d97d6c81..871358b05e5c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/BackupPartition-3.json @@ -11,10 +11,9 @@ "PrimaryUserName": "mydomain\\backupaccount", "PrimaryPassword": "abcd1234" } - } + } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateApplication-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateApplication-1.json index bccda97daa0e..815b59ce3e50 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateApplication-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateApplication-1.json @@ -10,7 +10,6 @@ } }, "responses": { - "201": { - } + "201": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateBackupPolicy-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateBackupPolicy-1.json index e12077c344f5..d303c4a734f2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateBackupPolicy-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateBackupPolicy-1.json @@ -11,8 +11,8 @@ "ScheduleKind": "TimeBased", "ScheduleFrequencyType": "Daily", "RunTimes": [ - "0001-01-01T09:00:00Z", - "0001-01-01T17:00:00Z" + "0001-01-01T09:00:00Z", + "0001-01-01T17:00:00Z" ] }, "Storage": { @@ -21,10 +21,9 @@ "ConnectionString": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", "ContainerName": "BackupContainer" } - } + } }, "responses": { - "201": { - } + "201": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateBackupPolicy-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateBackupPolicy-2.json index 8d6b8c0b2f65..92069091d80d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateBackupPolicy-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateBackupPolicy-2.json @@ -18,10 +18,9 @@ "PrimaryUserName": "backupaccount", "PrimaryPassword": "abcd1234" } - } + } }, "responses": { - "201": { - } + "201": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateName-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateName-1.json index bde8440d7677..39588770e334 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateName-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateName-1.json @@ -8,7 +8,6 @@ } }, "responses": { - "201": { - } + "201": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-1.json index c6186d87241b..88c214abd88c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-1.json @@ -1,21 +1,21 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a basic stateless Service Fabric service.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateless", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test1", - "ServiceTypeName": "StatelessFrontendService", - "PartitionDescription": { - "PartitionScheme": "Singleton" - }, - "InstanceCount": 4 - } - }, - "responses": { - "202": {} + "operationId": "CreateService", + "description": "This example shows how to create a basic stateless Service Fabric service.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateless", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test1", + "ServiceTypeName": "StatelessFrontendService", + "PartitionDescription": { + "PartitionScheme": "Singleton" + }, + "InstanceCount": 4 } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-2.json index 8549e33566a4..b909e6c58b05 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-2.json @@ -1,23 +1,23 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a basic stateful Service Fabric service.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateful", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test2", - "ServiceTypeName": "StatefulBackendService", - "PartitionDescription": { - "PartitionScheme": "Singleton" - }, - "TargetReplicaSetSize": 3, - "MinReplicaSetSize": 2, - "HasPersistedState": false - } - }, - "responses": { - "202": {} + "operationId": "CreateService", + "description": "This example shows how to create a basic stateful Service Fabric service.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateful", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test2", + "ServiceTypeName": "StatefulBackendService", + "PartitionDescription": { + "PartitionScheme": "Singleton" + }, + "TargetReplicaSetSize": 3, + "MinReplicaSetSize": 2, + "HasPersistedState": false } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-3.json index 5d7ea2bbafed..74461b9b5eef 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-3.json @@ -1,47 +1,47 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a stateless Service Fabric service with a dns name definied and auto scaling based on cpu usage.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateless", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test1", - "ServiceTypeName": "StatelessFrontendService", - "InitializationData": [], - "PartitionDescription": { - "PartitionScheme": "Singleton" - }, - "InstanceCount": 2, - "PlacementConstraints": "Color==Blue", - "CorrelationScheme": [], - "ServiceLoadMetrics": [], - "ServicePlacementPolicies": [], - "DefaultMoveCost": "Low", - "IsDefaultMoveCostSpecified": true, - "ServicePackageActivationMode": "ExclusiveProcess", - "ServiceDnsName": "test1.test", - "ScalingPolicies": [ - { - "ScalingTrigger": { - "Kind": "AveragePartitionLoad", - "MetricName": "servicefabric:\/_CpuCores", - "LowerLoadThreshold": 0.300000, - "UpperLoadThreshold": 0.800000, - "ScaleIntervalInSeconds": 600 - }, - "ScalingMechanism": { - "Kind": "PartitionInstanceCount", - "MinInstanceCount": 1, - "MaxInstanceCount": 6, - "ScaleIncrement": 2 - } - } - ] + "operationId": "CreateService", + "description": "This example shows how to create a stateless Service Fabric service with a dns name definied and auto scaling based on cpu usage.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateless", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test1", + "ServiceTypeName": "StatelessFrontendService", + "InitializationData": [], + "PartitionDescription": { + "PartitionScheme": "Singleton" + }, + "InstanceCount": 2, + "PlacementConstraints": "Color==Blue", + "CorrelationScheme": [], + "ServiceLoadMetrics": [], + "ServicePlacementPolicies": [], + "DefaultMoveCost": "Low", + "IsDefaultMoveCostSpecified": true, + "ServicePackageActivationMode": "ExclusiveProcess", + "ServiceDnsName": "test1.test", + "ScalingPolicies": [ + { + "ScalingTrigger": { + "Kind": "AveragePartitionLoad", + "MetricName": "servicefabric:\/_CpuCores", + "LowerLoadThreshold": 0.300000, + "UpperLoadThreshold": 0.800000, + "ScaleIntervalInSeconds": 600 + }, + "ScalingMechanism": { + "Kind": "PartitionInstanceCount", + "MinInstanceCount": 1, + "MaxInstanceCount": 6, + "ScaleIncrement": 2 + } } - }, - "responses": { - "202": {} + ] } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-4.json index 6201d55060d9..a83ca1445d09 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/CreateService-4.json @@ -1,44 +1,46 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a stateful Service Fabric service with named partitions and scaling enabled based on memory usage.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateful", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test2", - "ServiceTypeName": "StatefulBackendService", - "InitializationData": [], - "PartitionDescription": { - "PartitionScheme": "NamedPartitionSchemeDescription", - "Count" : 1, - "Names" : ["0"] - }, - "TargetReplicaSetSize": 3, - "MinReplicaSetSize" : 2, - "HasPersistedState" : true, - "ServicePackageActivationMode": "ExclusiveProcess", - "ScalingPolicies": [ - { - "ScalingTrigger": { - "Kind": "AverageServiceLoad", - "MetricName": "servicefabric:\/_MemoryInMB", - "LowerLoadThreshold": 500, - "UpperLoadThreshold": 900, - "ScaleIntervalInSeconds": 600 - }, - "ScalingMechanism": { - "Kind": "AddRemoveIncrementalNamedPartition", - "MinPartitionCount": 1, - "MaxPartitionCount": 3, - "ScaleIncrement": 1 - } - } - ] + "operationId": "CreateService", + "description": "This example shows how to create a stateful Service Fabric service with named partitions and scaling enabled based on memory usage.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateful", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test2", + "ServiceTypeName": "StatefulBackendService", + "InitializationData": [], + "PartitionDescription": { + "PartitionScheme": "NamedPartitionSchemeDescription", + "Count": 1, + "Names": [ + "0" + ] + }, + "TargetReplicaSetSize": 3, + "MinReplicaSetSize": 2, + "HasPersistedState": true, + "ServicePackageActivationMode": "ExclusiveProcess", + "ScalingPolicies": [ + { + "ScalingTrigger": { + "Kind": "AverageServiceLoad", + "MetricName": "servicefabric:\/_MemoryInMB", + "LowerLoadThreshold": 500, + "UpperLoadThreshold": 900, + "ScaleIntervalInSeconds": 600 + }, + "ScalingMechanism": { + "Kind": "AddRemoveIncrementalNamedPartition", + "MinPartitionCount": 1, + "MaxPartitionCount": 3, + "ScaleIncrement": 1 + } } - }, - "responses": { - "202": {} + ] } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DeleteBackupPolicy.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DeleteBackupPolicy.json index bb4a059aca02..26f33f04c56c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DeleteBackupPolicy.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DeleteBackupPolicy.json @@ -6,7 +6,6 @@ "backupPolicyName": "SampleBackupPolicy" }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisableApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisableApplicationBackup.json index 9c3f79dfcc49..273a1951e664 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisableApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisableApplicationBackup.json @@ -6,7 +6,6 @@ "applicationId": "CalcApp" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisablePartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisablePartitionBackup.json index d28c57331359..3cf33b6209a3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisablePartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisablePartitionBackup.json @@ -6,7 +6,6 @@ "partitionId": "1daae3f5-7fd6-42e9-b1ba-8c05f873994d" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisableServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisableServiceBackup.json index a8d579114a69..48b9cc0cb1f3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisableServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/DisableServiceBackup.json @@ -6,7 +6,6 @@ "serviceId": "CalcApp/CalcService" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnableApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnableApplicationBackup.json index 32d2aebf9790..a6b43cb6e308 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnableApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnableApplicationBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnablePartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnablePartitionBackup.json index 681f1a34a1c5..f2a9b189f12f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnablePartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnablePartitionBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnableServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnableServiceBackup.json index a70aabb7eccc..d42a6ff9b16e 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnableServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/EnableServiceBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetAllEntitiesBackedUpByPolicy-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetAllEntitiesBackedUpByPolicy-1.json index cdc5bde7b7fd..742d46154ca4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetAllEntitiesBackedUpByPolicy-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetAllEntitiesBackedUpByPolicy-1.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/DemoApp", - "Items": [ + "Items": [ { "EntityKind": "Application", "ApplicationName": "fabric:/CalcApp" diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetAllEntitiesBackedUpByPolicy-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetAllEntitiesBackedUpByPolicy-2.json index a40150e05c98..553a958b0072 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetAllEntitiesBackedUpByPolicy-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetAllEntitiesBackedUpByPolicy-2.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "EntityKind": "Service", "ServiceName": "fabric:/VotingApp/VotingActorService" diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupConfigurationInfo-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupConfigurationInfo-1.json index 2cc70dd82d79..ad9642ceb0d0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupConfigurationInfo-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupConfigurationInfo-1.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService", - "Items": [ + "Items": [ { "Kind": "Application", "PolicyName": "BackupPolicy1", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupConfigurationInfo-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupConfigurationInfo-2.json index f1620fd55a75..f8ec47d1f9d3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupConfigurationInfo-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupConfigurationInfo-2.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "Kind": "Partition", "PolicyName": "BackupPolicy2", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-1.json index 7cee9f28ad86..501297608aa0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-1.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-2.json index b0973826caf5..67598e40b07d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-2.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-3.json index f2c47a889359..e0e56db4aee1 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-3.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-4.json index 0a79fb01b512..363c1fd07f6f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationBackupList-4.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", "BackupChainId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationEventList.json index bd67cca12878..85c202a77007 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ApplicationCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationInfoList-1.json index df1f287e4104..2ca46b64e3a4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationInfoList-1.json @@ -7,11 +7,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/samples/PQueueApp1", - "Items": [ + "Items": [ { "Id": "samples~CalculatorApp", "Name": "fabric:/samples/CalculatorApp", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationInfoList-2.json index 7b5ab210e830..c0755d26e14b 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-1.json index a230d74d2b54..bcb6a4e5e3b7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-1.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "PersistentQueueApp+2.0", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-2.json index c02bd96ace75..a7c38cdedbe7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-3.json index 325dc1b5ca6d..473565e56c6d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationTypeInfoList-3.json @@ -7,51 +7,50 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ { "Name": "CalculatorApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "CalculatorApp", "Version": "2.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "GatewayApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "PersistentQueueApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "PersistentQueueApp", "Version": "2.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "VolatileQueueApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "VolatileQueueApp", "Version": "2.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" } ] diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationsEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationsEventList.json index 3e7ec703a345..d6f2b74664c0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationsEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetApplicationsEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ApplicationCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyByName.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyByName.json index d48c65c8ed6a..c2246344e4d6 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyByName.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyByName.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Name": "DailyAzureBackupPolicy", "AutoRestoreOnDataLoss": false, @@ -29,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyList-1.json index b18863fab4d7..0e123390e2cf 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyList-1.json @@ -7,12 +7,11 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "FileShare10MinBackupPolicy", "Items": [ - { + { "Name": "DailyAzureBackupPolicy", "AutoRestoreOnDataLoss": false, "MaxIncrementalBackups": 3, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyList-2.json index 3895a2315c81..f864ffb69169 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupPolicyList-2.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "AutoRestoreOnDataLoss": false, "Name": "SampleBackupPolicy", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupsFromBackupLocation-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupsFromBackupLocation-1.json index 8b1acfc03d76..44cc073d35e9 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupsFromBackupLocation-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupsFromBackupLocation-1.json @@ -18,11 +18,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupsFromBackupLocation-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupsFromBackupLocation-2.json index b435bfc2fc58..23c31a7784a0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupsFromBackupLocation-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetBackupsFromBackupLocation-2.json @@ -19,11 +19,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", "BackupChainId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetChaosEvents.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetChaosEvents.json index 3a486b6fe298..4e5d7bb0b4e3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetChaosEvents.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetChaosEvents.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "History": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetClusterEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetClusterEventList.json index b3eaef4069de..a65e32512638 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetClusterEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetClusterEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ClusterUpgradeStart", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-1.json index 49a23ee30dc4..1be29fb8e6ef 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-1.json @@ -10,11 +10,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Content": "HTTP Server started listening on port 8080\r\n" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-2.json index 0b1aec4546b8..669943a0d4cb 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-2.json @@ -11,11 +11,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Content": "UTC Time Now: 04\/02\/2018 22:06:31\r\nUTC Time Now: 04\/02\/2018 22:06:32\r\nUTC Time Now: 04\/02\/2018 22:06:33\r\nUTC Time Now: 04\/02\/2018 22:06:344\r\nUTC Time Now: 04\/02\/2018 22:06:35\r\nUTC Time Now: 04\/02\/2018 22:06:36\r\nUTC Time Now: 04\/02\/2018 22:06:37\r\nUTC Time Now: 04\/02\/2018 22:06:38\r\nUTC Time Now: 04\/02\/2018 22:06:39\r\nUTC Time Now: 04\/02\/2018 22:06:40\r\n" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-3.json index 68b1c3fff841..2ca6cad4f774 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetContainerLogsDeployedOnNode-3.json @@ -11,11 +11,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Content": "Exception encountered: System.Net.Http.HttpRequestException: Response status code does not indicate success: 500 (Internal Server Error).\r\n\tat System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\r\n" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDataLossProgress-Running.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDataLossProgress-Running.json index c303852becce..90590fff4f2f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDataLossProgress-Running.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDataLossProgress-Running.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Running" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDataLossProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDataLossProgress.json index 429c33c8f7b6..89d341f05c26 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDataLossProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDataLossProgress.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "InvokeDataLossResult": { @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoByName-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoByName-1.json index dad6050c027e..87c8485a607c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoByName-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoByName-1.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-1.json index 452ac7b15380..c19d4e2a841c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-1.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/samples/PQueueApp1", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-2.json index 4bdb8b879f78..7f6320e69e6d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-2.json @@ -8,20 +8,19 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ { - "Id": "samples~VQueueApp1", - "Name": "fabric:/samples/VQueueApp1", - "TypeName": "VolatileQueueApp", - "Status": "Active", - "WorkDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\work", - "LogDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\log", - "TempDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\temp", - "HealthState": "Unknown" + "Id": "samples~VQueueApp1", + "Name": "fabric:/samples/VQueueApp1", + "TypeName": "VolatileQueueApp", + "Status": "Active", + "WorkDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\work", + "LogDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\log", + "TempDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\temp", + "HealthState": "Unknown" } ] } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-3.json index 0d1b40c1148a..01cad866d3c1 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetDeployedApplicationInfoList-3.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetFaultOperationList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetFaultOperationList.json index 692f55108319..c7194dad614a 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetFaultOperationList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetFaultOperationList.json @@ -8,46 +8,44 @@ }, "responses": { "200": { - "headers": { - }, - "body": - [ - { - "OperationId": "00000000-0000-0000-0000-000000000010", - "State": "Completed", - "Type": "PartitionDataLoss" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000020", - "State": "Completed", - "Type": "PartitionQuorumLoss" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000030", - "State": "Completed", - "Type": "PartitionRestart" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000500", - "State": "Faulted", - "Type": "NodeTransition" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000700", - "State": "Completed", - "Type": "NodeTransition" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000710", - "State": "Completed", - "Type": "NodeTransition" - }, - { - "OperationId": "88ef90f9-0b94-46b0-b817-a6ea20c07f8a", - "State": "Completed", - "Type": "PartitionRestart" - } - ] + "headers": {}, + "body": [ + { + "OperationId": "00000000-0000-0000-0000-000000000010", + "State": "Completed", + "Type": "PartitionDataLoss" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000020", + "State": "Completed", + "Type": "PartitionQuorumLoss" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000030", + "State": "Completed", + "Type": "PartitionRestart" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000500", + "State": "Faulted", + "Type": "NodeTransition" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000700", + "State": "Completed", + "Type": "NodeTransition" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000710", + "State": "Completed", + "Type": "NodeTransition" + }, + { + "OperationId": "88ef90f9-0b94-46b0-b817-a6ea20c07f8a", + "State": "Completed", + "Type": "PartitionRestart" + } + ] } } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetImageStoreContent.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetImageStoreContent.json index 457cfd7986aa..7e912c407a79 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetImageStoreContent.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetImageStoreContent.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "StoreFiles": [ { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeEventList.json index a21108addcbb..f143ad167be8 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "NodeOpening", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeInfoList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeInfoList.json index 3169bff0fae6..512558ee8320 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeInfoList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeInfoList.json @@ -6,170 +6,169 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { - "ContinuationToken": "", - "Items": [ - { - "Name": "_Node_4", - "IpAddressOrFQDN": "localhost", - "Type": "NodeType4", - "CodeVersion": "5.6.135.9494", - "ConfigVersion": "1.0", - "NodeStatus": "Up", - "NodeUpTimeInSeconds": "526996", - "HealthState": "Ok", - "IsSeedNode": false, - "UpgradeDomain": "4", - "FaultDomain": "fd:/4", - "Id": { - "Id": "4f4e3698a196896b5efe8156cc4e1351" - }, - "InstanceId": "131353697443064929", - "NodeDeactivationInfo": { - "NodeDeactivationIntent": "Invalid", - "NodeDeactivationStatus": "None", - "NodeDeactivationTask": [], - "PendingSafetyChecks": [] - }, - "IsStopped": false, - "NodeDownTimeInSeconds": "0", - "NodeUpAt": "2018-01-10T19:10:59.812Z", - "NodeDownAt": "0001-01-01T00:00:00.000Z" + "ContinuationToken": "", + "Items": [ + { + "Name": "_Node_4", + "IpAddressOrFQDN": "localhost", + "Type": "NodeType4", + "CodeVersion": "5.6.135.9494", + "ConfigVersion": "1.0", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "526996", + "HealthState": "Ok", + "IsSeedNode": false, + "UpgradeDomain": "4", + "FaultDomain": "fd:/4", + "Id": { + "Id": "4f4e3698a196896b5efe8156cc4e1351" }, - { - "Name": "_Node_3", - "IpAddressOrFQDN": "localhost", - "Type": "NodeType3", - "CodeVersion": "5.6.135.9494", - "ConfigVersion": "1.0", - "NodeStatus": "Up", - "NodeUpTimeInSeconds": "526954", - "HealthState": "Ok", - "IsSeedNode": false, - "UpgradeDomain": "3", - "FaultDomain": "fd:/3", - "Id": { - "Id": "6b5c3db003a0bd126f7b8a86fc3916a4" - }, - "InstanceId": "131353697864903666", - "NodeDeactivationInfo": { - "NodeDeactivationIntent": "Invalid", - "NodeDeactivationStatus": "None", - "NodeDeactivationTask": [], - "PendingSafetyChecks": [] - }, - "IsStopped": false, - "NodeDownTimeInSeconds": "0", - "NodeUpAt": "2018-01-10T19:10:59.812Z", - "NodeDownAt": "0001-01-01T00:00:00.000Z" + "InstanceId": "131353697443064929", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] }, - { - "Name": "_Node_2", - "IpAddressOrFQDN": "localhost", - "Type": "NodeType2", - "CodeVersion": "5.6.135.9494", - "ConfigVersion": "1.0", - "NodeStatus": "Disabled", - "NodeUpTimeInSeconds": "1710571", - "HealthState": "Ok", - "IsSeedNode": true, - "UpgradeDomain": "2", - "FaultDomain": "fd:/2", - "Id": { - "Id": "876a44d9185bf9416336b22e5d37cde8" - }, - "InstanceId": "131341861291227632", - "NodeDeactivationInfo": { - "NodeDeactivationIntent": "Pause", - "NodeDeactivationStatus": "Completed", - "NodeDeactivationTask": [ - { - "NodeDeactivationTaskId": { - "Id": "876a44d9185bf9416336b22e5d37cde8", - "NodeDeactivationTaskType": "Client" - }, - "NodeDeactivationIntent": "Pause" - } - ], - "PendingSafetyChecks": [] - }, - "IsStopped": false, - "NodeDownTimeInSeconds": "0", - "NodeUpAt": "2018-01-10T19:10:59.812Z", - "NodeDownAt": "0001-01-01T00:00:00.000Z" + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-01-10T19:10:59.812Z", + "NodeDownAt": "0001-01-01T00:00:00.000Z" + }, + { + "Name": "_Node_3", + "IpAddressOrFQDN": "localhost", + "Type": "NodeType3", + "CodeVersion": "5.6.135.9494", + "ConfigVersion": "1.0", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "526954", + "HealthState": "Ok", + "IsSeedNode": false, + "UpgradeDomain": "3", + "FaultDomain": "fd:/3", + "Id": { + "Id": "6b5c3db003a0bd126f7b8a86fc3916a4" }, - { - "Name": "_Node_1", - "IpAddressOrFQDN": "localhost", - "Type": "NodeType1", - "CodeVersion": "5.6.135.9494", - "ConfigVersion": "1.0", - "NodeStatus": "Disabling", - "NodeUpTimeInSeconds": "1710571", - "HealthState": "Ok", - "IsSeedNode": true, - "UpgradeDomain": "1", - "FaultDomain": "fd:/1", - "Id": { - "Id": "a3784be1d81710242ed0a9632647b4f7" - }, - "InstanceId": "131341861290236579", - "NodeDeactivationInfo": { - "NodeDeactivationIntent": "Pause", - "NodeDeactivationStatus": "SafetyCheckInProgress", - "NodeDeactivationTask": [ - { - "NodeDeactivationTaskId": { - "Id": "a3784be1d81710242ed0a9632647b4f7", - "NodeDeactivationTaskType": "Client" - }, - "NodeDeactivationIntent": "Pause" - } - ], - "PendingSafetyChecks": [ - { - "SafetyCheck": { - "Kind": "EnsureSeedNodeQuorum" - } + "InstanceId": "131353697864903666", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-01-10T19:10:59.812Z", + "NodeDownAt": "0001-01-01T00:00:00.000Z" + }, + { + "Name": "_Node_2", + "IpAddressOrFQDN": "localhost", + "Type": "NodeType2", + "CodeVersion": "5.6.135.9494", + "ConfigVersion": "1.0", + "NodeStatus": "Disabled", + "NodeUpTimeInSeconds": "1710571", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "2", + "FaultDomain": "fd:/2", + "Id": { + "Id": "876a44d9185bf9416336b22e5d37cde8" + }, + "InstanceId": "131341861291227632", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Pause", + "NodeDeactivationStatus": "Completed", + "NodeDeactivationTask": [ + { + "NodeDeactivationTaskId": { + "Id": "876a44d9185bf9416336b22e5d37cde8", + "NodeDeactivationTaskType": "Client" + }, + "NodeDeactivationIntent": "Pause" + } + ], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-01-10T19:10:59.812Z", + "NodeDownAt": "0001-01-01T00:00:00.000Z" + }, + { + "Name": "_Node_1", + "IpAddressOrFQDN": "localhost", + "Type": "NodeType1", + "CodeVersion": "5.6.135.9494", + "ConfigVersion": "1.0", + "NodeStatus": "Disabling", + "NodeUpTimeInSeconds": "1710571", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "1", + "FaultDomain": "fd:/1", + "Id": { + "Id": "a3784be1d81710242ed0a9632647b4f7" + }, + "InstanceId": "131341861290236579", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Pause", + "NodeDeactivationStatus": "SafetyCheckInProgress", + "NodeDeactivationTask": [ + { + "NodeDeactivationTaskId": { + "Id": "a3784be1d81710242ed0a9632647b4f7", + "NodeDeactivationTaskType": "Client" + }, + "NodeDeactivationIntent": "Pause" + } + ], + "PendingSafetyChecks": [ + { + "SafetyCheck": { + "Kind": "EnsureSeedNodeQuorum" } - ] - }, - "IsStopped": false, - "NodeDownTimeInSeconds": "0", - "NodeUpAt": "2018-01-10T19:10:59.812Z", - "NodeDownAt": "0001-01-01T00:00:00.000Z" + } + ] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-01-10T19:10:59.812Z", + "NodeDownAt": "0001-01-01T00:00:00.000Z" + }, + { + "Name": "_Node_0", + "IpAddressOrFQDN": "localhost", + "Type": "NodeType0", + "CodeVersion": "5.6.135.9494", + "ConfigVersion": "1.0", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "1710571", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "0", + "FaultDomain": "fd:/0", + "Id": { + "Id": "bf865279ba277deb864a976fbf4c200e" + }, + "InstanceId": "131341861289826291", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] }, - { - "Name": "_Node_0", - "IpAddressOrFQDN": "localhost", - "Type": "NodeType0", - "CodeVersion": "5.6.135.9494", - "ConfigVersion": "1.0", - "NodeStatus": "Up", - "NodeUpTimeInSeconds": "1710571", - "HealthState": "Ok", - "IsSeedNode": true, - "UpgradeDomain": "0", - "FaultDomain": "fd:/0", - "Id": { - "Id": "bf865279ba277deb864a976fbf4c200e" - }, - "InstanceId": "131341861289826291", - "NodeDeactivationInfo": { - "NodeDeactivationIntent": "Invalid", - "NodeDeactivationStatus": "None", - "NodeDeactivationTask": [], - "PendingSafetyChecks": [] - }, - "IsStopped": false, - "NodeDownTimeInSeconds": "0", - "NodeUpAt": "2018-01-10T19:10:59.812Z", - "NodeDownAt": "0001-01-01T00:00:00.000Z" - } - ] - } + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-01-10T19:10:59.812Z", + "NodeDownAt": "0001-01-01T00:00:00.000Z" + } + ] + } } } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeTransitionProgress-Running.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeTransitionProgress-Running.json index 64d4642700ea..62ad5c37ec58 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeTransitionProgress-Running.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeTransitionProgress-Running.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Running" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeTransitionProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeTransitionProgress.json index 5ee8818ce76a..474ab826b8df 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeTransitionProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodeTransitionProgress.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "NodeTransitionResult": { @@ -22,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodesEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodesEventList.json index aae5dea1cc1c..4355d9961558 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodesEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetNodesEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "NodeOpening", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupConfigurationInfo.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupConfigurationInfo.json index 48ffda64fa66..c7e119b0e7a7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupConfigurationInfo.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupConfigurationInfo.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Kind": "Partition", "PolicyName": "BackupPolicy2", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-1.json index 95228d16752f..6f6c7931f845 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-1.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-2.json index a8b808b8db3d..8d56fd96a576 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-2.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "be06a49c-be67-4eb1-a602-b983605be862", "BackupChainId": "be06a49c-be67-4eb1-a602-b983605be862", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-3.json index 607b42eaa2cb..45a0dbe1568d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-3.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-4.json index 0444cd5e8266..9ac35bb79efd 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupList-4.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "be06a49c-be67-4eb1-a602-b983605be862", "BackupChainId": "be06a49c-be67-4eb1-a602-b983605be862", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupProgress.json index 9e0b2545db60..3b9b131b8afd 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionBackupProgress.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "BackupState": "Success", "TimeStampUtc": "2018-01-01T09:00:55Z", @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionEventList.json index aae33c4b1e00..59e619f72f17 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "PartitionReconfigurationCompleted", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionRestartProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionRestartProgress.json index 4453caa242d6..074289b470a2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionRestartProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionRestartProgress.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "RestartPartitionResult": { @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionRestoreProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionRestoreProgress.json index cd6099ad4d61..62e13304aa16 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionRestoreProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionRestoreProgress.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "RestoreState": "Success", "TimeStampUtc": "2018-01-01T09:00:55Z", @@ -21,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionsEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionsEventList.json index dd7f4311823f..7d500da4e26f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionsEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPartitionsEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "PartitionReconfigurationCompleted", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfo-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfo-1.json index fd0e63e316bf..ca5def4be2fb 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfo-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfo-1.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Name": "CalculatorAppData", "Value": { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-1.json index 9d4f74b46e80..5729c6a4e4a2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-1.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "PersistentQueueAppData$131439231986491349", "IsConsistent": true, @@ -36,7 +35,6 @@ } } ] - } } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-2.json index 405aeca605ff..6a172f23f09a 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "PersistentQueueAppData$131439231986491349", "IsConsistent": true, @@ -33,7 +32,13 @@ "Name": "PersistentQueueAppData", "Value": { "Kind": "Binary", - "Data": [6, 7, 8, 9, 10] + "Data": [ + 6, + 7, + 8, + 9, + 10 + ] }, "Metadata": { "TypeId": "Binary", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-3.json index 51a4fcb919b4..ce12465b6ce6 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetPropertyInfoList-3.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetQuorumLossProgress-Running.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetQuorumLossProgress-Running.json index 059c51840fc9..203fb157db03 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetQuorumLossProgress-Running.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetQuorumLossProgress-Running.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Running" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetQuorumLossProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetQuorumLossProgress.json index 3e848d89bc8d..c86fd0d2b31d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetQuorumLossProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetQuorumLossProgress.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "InvokeQuorumLossResult": { @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetReplicaEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetReplicaEventList.json index a89b8578ab44..37455c6cbf93 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetReplicaEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetReplicaEventList.json @@ -10,8 +10,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "StatefulReplicaHealthReportCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetReplicasEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetReplicasEventList.json index 793b6d201db5..9dd8bfcefce5 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetReplicasEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetReplicasEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "StatefulReplicaHealthReportCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupConfigurationInfo-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupConfigurationInfo-1.json index 9e7a54d9b89f..63026d5e9432 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupConfigurationInfo-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupConfigurationInfo-1.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d", - "Items": [ + "Items": [ { "Kind": "Service", "PolicyName": "BackupPolicy1", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupConfigurationInfo-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupConfigurationInfo-2.json index 126c01ad5d60..a9bf85884db2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupConfigurationInfo-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupConfigurationInfo-2.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "Kind": "Partition", "PolicyName": "BackupPolicy1", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-1.json index cb0c6c85b6a5..3291f1a1a943 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-1.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-2.json index 03d20cfcca7e..d8b8c99093b8 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-2.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-3.json index 3e0d3827a229..1b5870db7131 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-3.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-4.json index 15482f3db270..a4bc56a73369 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceBackupList-4.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", "BackupChainId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceEventList.json index ae7adcc98ecf..eb2f04b29fdb 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServiceEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ServiceCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServicesEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServicesEventList.json index bd4b7353165e..4b759f1352da 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServicesEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetServicesEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ServiceCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-1.json index 3d315a557a9f..282319140d86 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-1.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-2.json index 6dbd9309980a..15391854f370 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-3.json index 3265fc8a3c13..bf07c9c58bc4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetSubNameInfoList-3.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetUploadSessionById.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetUploadSessionById.json index 21ce39b90dd9..c565a13cfcbc 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetUploadSessionById.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetUploadSessionById.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "UploadSessions": [ { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetUploadSessionByPath.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetUploadSessionByPath.json index 82743551c7cb..8dc66b6d107d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetUploadSessionByPath.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/GetUploadSessionByPath.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "UploadSessions": [ { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/InvokeContainerApi.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/InvokeContainerApi.json index cdaf407acf69..bfe285758eec 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/InvokeContainerApi.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/InvokeContainerApi.json @@ -1,27 +1,27 @@ { - "operationId": "InvokeContainerApi", - "description": "This example shows how to call container API with HTTP GET for a code package deployed on a node.", - "parameters": { - "api-version": "6.2", - "nodeName": "Node01", - "applicationId": "samples/winnodejs", - "ServiceManifestName": "NodeServicePackage", - "CodePackageName": "NodeService.Code", - "CodePackageInstanceId": "131668159770315380", - "ContainerApiRequestBody": { - "UriPath": "/containers/{id}/logs?stdout=true&stderr=true" - } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "ContainerApiResult": { - "Status": 200, - "Content-Type": "text/plain; charset=utf-8", - "Body": "vEthernet (Container NIC ec5c19b2) 172.17.201.44\n" - } - } + "operationId": "InvokeContainerApi", + "description": "This example shows how to call container API with HTTP GET for a code package deployed on a node.", + "parameters": { + "api-version": "6.2", + "nodeName": "Node01", + "applicationId": "samples/winnodejs", + "ServiceManifestName": "NodeServicePackage", + "CodePackageName": "NodeService.Code", + "CodePackageInstanceId": "131668159770315380", + "ContainerApiRequestBody": { + "UriPath": "/containers/{id}/logs?stdout=true&stderr=true" + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "ContainerApiResult": { + "Status": 200, + "Content-Type": "text/plain; charset=utf-8", + "Body": "vEthernet (Container NIC ec5c19b2) 172.17.201.44\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/InvokeContainerApi_Post.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/InvokeContainerApi_Post.json index 1af58111eb46..0042fd341de0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/InvokeContainerApi_Post.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/InvokeContainerApi_Post.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/PutProperty-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/PutProperty-1.json index f2e3d3252d09..8eee209e7c7b 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/PutProperty-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/PutProperty-1.json @@ -8,12 +8,18 @@ "PropertyName": "AppData", "Value": { "Kind": "Binary", - "Data": [0, 1, 2, 3, 4, 5] + "Data": [ + 0, + 1, + 2, + 3, + 4, + 5 + ] } } }, "responses": { - "200": { - } + "200": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/PutProperty-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/PutProperty-2.json index 85713723d090..5db6a9ad77f7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/PutProperty-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/PutProperty-2.json @@ -14,7 +14,6 @@ } }, "responses": { - "200": { - } + "200": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/RestorePartition.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/RestorePartition.json index 2517de87856f..bcf0866b5cfa 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/RestorePartition.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/RestorePartition.json @@ -15,7 +15,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumeApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumeApplicationBackup.json index c2c11c4f9d0a..3786ff3d7b54 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumeApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumeApplicationBackup.json @@ -6,7 +6,6 @@ "applicationId": "CalcApp" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumePartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumePartitionBackup.json index f902b478d32e..1ce9278a4639 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumePartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumePartitionBackup.json @@ -6,7 +6,6 @@ "partitionId": "1daae3f5-7fd6-42e9-b1ba-8c05f873994d" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumeServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumeServiceBackup.json index 69ea5b861c11..c97f824b47e1 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumeServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/ResumeServiceBackup.json @@ -6,7 +6,6 @@ "serviceId": "CalcApp/CalcService" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SubmitPropertyBatch-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SubmitPropertyBatch-1.json index af100a680c95..da4ac83317d4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SubmitPropertyBatch-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SubmitPropertyBatch-1.json @@ -21,7 +21,13 @@ "PropertyName": "PersistentQueueAppData", "Value": { "Kind": "Binary", - "Data": [1, 2, 3, 4, 5] + "Data": [ + 1, + 2, + 3, + 4, + 5 + ] }, "CustomTypeId": "InitializationData" }, @@ -35,8 +41,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Kind": "Successful", "Properties": { @@ -55,8 +60,7 @@ } }, "409": { - "headers": { - }, + "headers": {}, "body": { "Kind": "Failed", "ErrorMessage": "FABRIC_E_PROPERTY_CHECK_FAILED", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendApplicationBackup.json index 862c3b5387d8..9bb3da5e03aa 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendApplicationBackup.json @@ -6,7 +6,6 @@ "applicationId": "CalcApp" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendPartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendPartitionBackup.json index 74e24683205a..e34dfbeeead2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendPartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendPartitionBackup.json @@ -6,7 +6,6 @@ "partitionId": "1daae3f5-7fd6-42e9-b1ba-8c05f873994d" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendServiceBackup.json index f39d03482610..212b0345344d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/SuspendServiceBackup.json @@ -6,7 +6,6 @@ "serviceId": "CalcApp/CalcService" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateBackupPolicy.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateBackupPolicy.json index 5421b431a968..aed3191828a9 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateBackupPolicy.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateBackupPolicy.json @@ -12,8 +12,8 @@ "ScheduleKind": "TimeBased", "ScheduleFrequencyType": "Daily", "RunTimes": [ - "0001-01-01T09:00:00Z", - "0001-01-01T17:00:00Z" + "0001-01-01T09:00:00Z", + "0001-01-01T17:00:00Z" ] }, "Storage": { @@ -22,10 +22,9 @@ "ConnectionString": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", "ContainerName": "BackupContainer" } - } + } }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateService-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateService-1.json index 3a748e8e3e20..6d14c7ebe614 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateService-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateService-1.json @@ -1,34 +1,34 @@ { - "operationId": "UpdateService", - "description": "This example shows how to update placement and load balancing related settings of a stateless Service Fabric service.", - "parameters": { - "serviceId": "test~test1", - "api-version": "6.0", - "ServiceUpdateDescription": { - "ServiceKind": "Stateless", - "Flags": "1568", - "PlacementConstraints": "Color==Red", - "DefaultMoveCost": "High", - "ScalingPolicies": [ - { - "ScalingTrigger": { - "Kind": "AveragePartitionLoad", - "MetricName": "servicefabric:\/_CpuCores", - "LowerLoadThreshold": 0.500000, - "UpperLoadThreshold": 0.800000, - "ScaleIntervalInSeconds": 900 - }, - "ScalingMechanism": { - "Kind": "PartitionInstanceCount", - "MinInstanceCount": 4, - "MaxInstanceCount": 6, - "ScaleIncrement": 2 - } - } - ] + "operationId": "UpdateService", + "description": "This example shows how to update placement and load balancing related settings of a stateless Service Fabric service.", + "parameters": { + "serviceId": "test~test1", + "api-version": "6.0", + "ServiceUpdateDescription": { + "ServiceKind": "Stateless", + "Flags": "1568", + "PlacementConstraints": "Color==Red", + "DefaultMoveCost": "High", + "ScalingPolicies": [ + { + "ScalingTrigger": { + "Kind": "AveragePartitionLoad", + "MetricName": "servicefabric:\/_CpuCores", + "LowerLoadThreshold": 0.500000, + "UpperLoadThreshold": 0.800000, + "ScaleIntervalInSeconds": 900 + }, + "ScalingMechanism": { + "Kind": "PartitionInstanceCount", + "MinInstanceCount": 4, + "MaxInstanceCount": 6, + "ScaleIncrement": 2 + } } - }, - "responses": { - "200": {} + ] } -} \ No newline at end of file + }, + "responses": { + "200": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateService-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateService-2.json index 4329ddddf400..cdb1368dbdd6 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateService-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/examples/UpdateService-2.json @@ -1,17 +1,17 @@ { - "operationId": "UpdateService", - "description": "This example shows how to update placement and load balancing related settings of a stateful Service Fabric service.", - "parameters": { - "serviceId": "test~test2", - "api-version": "6.0", - "ServiceUpdateDescription": { - "ServiceKind": "Stateful", - "Flags": "40", - "PlacementConstraints": "Color==Green", - "StandByReplicaKeepDurationSeconds": "1000" - } - }, - "responses": { - "200": {} + "operationId": "UpdateService", + "description": "This example shows how to update placement and load balancing related settings of a stateful Service Fabric service.", + "parameters": { + "serviceId": "test~test2", + "api-version": "6.0", + "ServiceUpdateDescription": { + "ServiceKind": "Stateful", + "Flags": "40", + "PlacementConstraints": "Color==Green", + "StandByReplicaKeepDurationSeconds": "1000" } -} \ No newline at end of file + }, + "responses": { + "200": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-1.json index dc2775e07732..8745ed2793a7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-1.json @@ -7,7 +7,6 @@ "BackupPartitionDescription": {} }, "responses": { - "202": { - } + "202": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-2.json index 48e257f80657..d859b271ef43 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-2.json @@ -10,10 +10,9 @@ "ConnectionString": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", "ContainerName": "BackupContainer" } - } + } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-3.json index c827d97d6c81..871358b05e5c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/BackupPartition-3.json @@ -11,10 +11,9 @@ "PrimaryUserName": "mydomain\\backupaccount", "PrimaryPassword": "abcd1234" } - } + } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateApplication-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateApplication-1.json index bccda97daa0e..815b59ce3e50 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateApplication-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateApplication-1.json @@ -10,7 +10,6 @@ } }, "responses": { - "201": { - } + "201": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateBackupPolicy-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateBackupPolicy-1.json index e12077c344f5..d303c4a734f2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateBackupPolicy-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateBackupPolicy-1.json @@ -11,8 +11,8 @@ "ScheduleKind": "TimeBased", "ScheduleFrequencyType": "Daily", "RunTimes": [ - "0001-01-01T09:00:00Z", - "0001-01-01T17:00:00Z" + "0001-01-01T09:00:00Z", + "0001-01-01T17:00:00Z" ] }, "Storage": { @@ -21,10 +21,9 @@ "ConnectionString": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", "ContainerName": "BackupContainer" } - } + } }, "responses": { - "201": { - } + "201": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateBackupPolicy-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateBackupPolicy-2.json index 8d6b8c0b2f65..92069091d80d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateBackupPolicy-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateBackupPolicy-2.json @@ -18,10 +18,9 @@ "PrimaryUserName": "backupaccount", "PrimaryPassword": "abcd1234" } - } + } }, "responses": { - "201": { - } + "201": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateName-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateName-1.json index bde8440d7677..39588770e334 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateName-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateName-1.json @@ -8,7 +8,6 @@ } }, "responses": { - "201": { - } + "201": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-1.json index c6186d87241b..88c214abd88c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-1.json @@ -1,21 +1,21 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a basic stateless Service Fabric service.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateless", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test1", - "ServiceTypeName": "StatelessFrontendService", - "PartitionDescription": { - "PartitionScheme": "Singleton" - }, - "InstanceCount": 4 - } - }, - "responses": { - "202": {} + "operationId": "CreateService", + "description": "This example shows how to create a basic stateless Service Fabric service.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateless", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test1", + "ServiceTypeName": "StatelessFrontendService", + "PartitionDescription": { + "PartitionScheme": "Singleton" + }, + "InstanceCount": 4 } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-2.json index 8549e33566a4..b909e6c58b05 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-2.json @@ -1,23 +1,23 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a basic stateful Service Fabric service.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateful", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test2", - "ServiceTypeName": "StatefulBackendService", - "PartitionDescription": { - "PartitionScheme": "Singleton" - }, - "TargetReplicaSetSize": 3, - "MinReplicaSetSize": 2, - "HasPersistedState": false - } - }, - "responses": { - "202": {} + "operationId": "CreateService", + "description": "This example shows how to create a basic stateful Service Fabric service.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateful", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test2", + "ServiceTypeName": "StatefulBackendService", + "PartitionDescription": { + "PartitionScheme": "Singleton" + }, + "TargetReplicaSetSize": 3, + "MinReplicaSetSize": 2, + "HasPersistedState": false } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-3.json index 5d7ea2bbafed..74461b9b5eef 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-3.json @@ -1,47 +1,47 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a stateless Service Fabric service with a dns name definied and auto scaling based on cpu usage.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateless", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test1", - "ServiceTypeName": "StatelessFrontendService", - "InitializationData": [], - "PartitionDescription": { - "PartitionScheme": "Singleton" - }, - "InstanceCount": 2, - "PlacementConstraints": "Color==Blue", - "CorrelationScheme": [], - "ServiceLoadMetrics": [], - "ServicePlacementPolicies": [], - "DefaultMoveCost": "Low", - "IsDefaultMoveCostSpecified": true, - "ServicePackageActivationMode": "ExclusiveProcess", - "ServiceDnsName": "test1.test", - "ScalingPolicies": [ - { - "ScalingTrigger": { - "Kind": "AveragePartitionLoad", - "MetricName": "servicefabric:\/_CpuCores", - "LowerLoadThreshold": 0.300000, - "UpperLoadThreshold": 0.800000, - "ScaleIntervalInSeconds": 600 - }, - "ScalingMechanism": { - "Kind": "PartitionInstanceCount", - "MinInstanceCount": 1, - "MaxInstanceCount": 6, - "ScaleIncrement": 2 - } - } - ] + "operationId": "CreateService", + "description": "This example shows how to create a stateless Service Fabric service with a dns name definied and auto scaling based on cpu usage.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateless", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test1", + "ServiceTypeName": "StatelessFrontendService", + "InitializationData": [], + "PartitionDescription": { + "PartitionScheme": "Singleton" + }, + "InstanceCount": 2, + "PlacementConstraints": "Color==Blue", + "CorrelationScheme": [], + "ServiceLoadMetrics": [], + "ServicePlacementPolicies": [], + "DefaultMoveCost": "Low", + "IsDefaultMoveCostSpecified": true, + "ServicePackageActivationMode": "ExclusiveProcess", + "ServiceDnsName": "test1.test", + "ScalingPolicies": [ + { + "ScalingTrigger": { + "Kind": "AveragePartitionLoad", + "MetricName": "servicefabric:\/_CpuCores", + "LowerLoadThreshold": 0.300000, + "UpperLoadThreshold": 0.800000, + "ScaleIntervalInSeconds": 600 + }, + "ScalingMechanism": { + "Kind": "PartitionInstanceCount", + "MinInstanceCount": 1, + "MaxInstanceCount": 6, + "ScaleIncrement": 2 + } } - }, - "responses": { - "202": {} + ] } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-4.json index 6201d55060d9..a83ca1445d09 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/CreateService-4.json @@ -1,44 +1,46 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a stateful Service Fabric service with named partitions and scaling enabled based on memory usage.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateful", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test2", - "ServiceTypeName": "StatefulBackendService", - "InitializationData": [], - "PartitionDescription": { - "PartitionScheme": "NamedPartitionSchemeDescription", - "Count" : 1, - "Names" : ["0"] - }, - "TargetReplicaSetSize": 3, - "MinReplicaSetSize" : 2, - "HasPersistedState" : true, - "ServicePackageActivationMode": "ExclusiveProcess", - "ScalingPolicies": [ - { - "ScalingTrigger": { - "Kind": "AverageServiceLoad", - "MetricName": "servicefabric:\/_MemoryInMB", - "LowerLoadThreshold": 500, - "UpperLoadThreshold": 900, - "ScaleIntervalInSeconds": 600 - }, - "ScalingMechanism": { - "Kind": "AddRemoveIncrementalNamedPartition", - "MinPartitionCount": 1, - "MaxPartitionCount": 3, - "ScaleIncrement": 1 - } - } - ] + "operationId": "CreateService", + "description": "This example shows how to create a stateful Service Fabric service with named partitions and scaling enabled based on memory usage.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateful", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test2", + "ServiceTypeName": "StatefulBackendService", + "InitializationData": [], + "PartitionDescription": { + "PartitionScheme": "NamedPartitionSchemeDescription", + "Count": 1, + "Names": [ + "0" + ] + }, + "TargetReplicaSetSize": 3, + "MinReplicaSetSize": 2, + "HasPersistedState": true, + "ServicePackageActivationMode": "ExclusiveProcess", + "ScalingPolicies": [ + { + "ScalingTrigger": { + "Kind": "AverageServiceLoad", + "MetricName": "servicefabric:\/_MemoryInMB", + "LowerLoadThreshold": 500, + "UpperLoadThreshold": 900, + "ScaleIntervalInSeconds": 600 + }, + "ScalingMechanism": { + "Kind": "AddRemoveIncrementalNamedPartition", + "MinPartitionCount": 1, + "MaxPartitionCount": 3, + "ScaleIncrement": 1 + } } - }, - "responses": { - "202": {} + ] } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DeleteBackupPolicy.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DeleteBackupPolicy.json index bb4a059aca02..26f33f04c56c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DeleteBackupPolicy.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DeleteBackupPolicy.json @@ -6,7 +6,6 @@ "backupPolicyName": "SampleBackupPolicy" }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisableApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisableApplicationBackup.json index 9c3f79dfcc49..273a1951e664 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisableApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisableApplicationBackup.json @@ -6,7 +6,6 @@ "applicationId": "CalcApp" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisablePartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisablePartitionBackup.json index d28c57331359..3cf33b6209a3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisablePartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisablePartitionBackup.json @@ -6,7 +6,6 @@ "partitionId": "1daae3f5-7fd6-42e9-b1ba-8c05f873994d" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisableServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisableServiceBackup.json index a8d579114a69..48b9cc0cb1f3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisableServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/DisableServiceBackup.json @@ -6,7 +6,6 @@ "serviceId": "CalcApp/CalcService" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnableApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnableApplicationBackup.json index 32d2aebf9790..a6b43cb6e308 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnableApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnableApplicationBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnablePartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnablePartitionBackup.json index 681f1a34a1c5..f2a9b189f12f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnablePartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnablePartitionBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnableServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnableServiceBackup.json index a70aabb7eccc..d42a6ff9b16e 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnableServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/EnableServiceBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetAllEntitiesBackedUpByPolicy-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetAllEntitiesBackedUpByPolicy-1.json index cdc5bde7b7fd..742d46154ca4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetAllEntitiesBackedUpByPolicy-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetAllEntitiesBackedUpByPolicy-1.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/DemoApp", - "Items": [ + "Items": [ { "EntityKind": "Application", "ApplicationName": "fabric:/CalcApp" diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetAllEntitiesBackedUpByPolicy-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetAllEntitiesBackedUpByPolicy-2.json index a40150e05c98..553a958b0072 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetAllEntitiesBackedUpByPolicy-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetAllEntitiesBackedUpByPolicy-2.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "EntityKind": "Service", "ServiceName": "fabric:/VotingApp/VotingActorService" diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupConfigurationInfo-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupConfigurationInfo-1.json index 2cc70dd82d79..ad9642ceb0d0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupConfigurationInfo-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupConfigurationInfo-1.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService", - "Items": [ + "Items": [ { "Kind": "Application", "PolicyName": "BackupPolicy1", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupConfigurationInfo-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupConfigurationInfo-2.json index f1620fd55a75..f8ec47d1f9d3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupConfigurationInfo-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupConfigurationInfo-2.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "Kind": "Partition", "PolicyName": "BackupPolicy2", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-1.json index 7cee9f28ad86..501297608aa0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-1.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-2.json index b0973826caf5..67598e40b07d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-2.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-3.json index f2c47a889359..e0e56db4aee1 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-3.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-4.json index 0a79fb01b512..363c1fd07f6f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationBackupList-4.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", "BackupChainId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationEventList.json index bd67cca12878..85c202a77007 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ApplicationCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationInfoList-1.json index df1f287e4104..2ca46b64e3a4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationInfoList-1.json @@ -7,11 +7,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/samples/PQueueApp1", - "Items": [ + "Items": [ { "Id": "samples~CalculatorApp", "Name": "fabric:/samples/CalculatorApp", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationInfoList-2.json index 7b5ab210e830..c0755d26e14b 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-1.json index a230d74d2b54..bcb6a4e5e3b7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-1.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "PersistentQueueApp+2.0", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-2.json index c02bd96ace75..a7c38cdedbe7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-3.json index 325dc1b5ca6d..473565e56c6d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationTypeInfoList-3.json @@ -7,51 +7,50 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ { "Name": "CalculatorApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "CalculatorApp", "Version": "2.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "GatewayApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "PersistentQueueApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "PersistentQueueApp", "Version": "2.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "VolatileQueueApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "VolatileQueueApp", "Version": "2.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" } ] diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationsEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationsEventList.json index 3e7ec703a345..d6f2b74664c0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationsEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetApplicationsEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ApplicationCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyByName.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyByName.json index d48c65c8ed6a..c2246344e4d6 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyByName.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyByName.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Name": "DailyAzureBackupPolicy", "AutoRestoreOnDataLoss": false, @@ -29,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyList-1.json index b18863fab4d7..0e123390e2cf 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyList-1.json @@ -7,12 +7,11 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "FileShare10MinBackupPolicy", "Items": [ - { + { "Name": "DailyAzureBackupPolicy", "AutoRestoreOnDataLoss": false, "MaxIncrementalBackups": 3, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyList-2.json index 3895a2315c81..f864ffb69169 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupPolicyList-2.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "AutoRestoreOnDataLoss": false, "Name": "SampleBackupPolicy", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupsFromBackupLocation-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupsFromBackupLocation-1.json index 8b1acfc03d76..44cc073d35e9 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupsFromBackupLocation-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupsFromBackupLocation-1.json @@ -18,11 +18,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupsFromBackupLocation-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupsFromBackupLocation-2.json index b435bfc2fc58..23c31a7784a0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupsFromBackupLocation-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetBackupsFromBackupLocation-2.json @@ -19,11 +19,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", "BackupChainId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetChaosEvents.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetChaosEvents.json index 3a486b6fe298..4e5d7bb0b4e3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetChaosEvents.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetChaosEvents.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "History": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetClusterEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetClusterEventList.json index b3eaef4069de..a65e32512638 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetClusterEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetClusterEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ClusterUpgradeStart", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-1.json index 49a23ee30dc4..1be29fb8e6ef 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-1.json @@ -10,11 +10,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Content": "HTTP Server started listening on port 8080\r\n" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-2.json index 0b1aec4546b8..669943a0d4cb 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-2.json @@ -11,11 +11,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Content": "UTC Time Now: 04\/02\/2018 22:06:31\r\nUTC Time Now: 04\/02\/2018 22:06:32\r\nUTC Time Now: 04\/02\/2018 22:06:33\r\nUTC Time Now: 04\/02\/2018 22:06:344\r\nUTC Time Now: 04\/02\/2018 22:06:35\r\nUTC Time Now: 04\/02\/2018 22:06:36\r\nUTC Time Now: 04\/02\/2018 22:06:37\r\nUTC Time Now: 04\/02\/2018 22:06:38\r\nUTC Time Now: 04\/02\/2018 22:06:39\r\nUTC Time Now: 04\/02\/2018 22:06:40\r\n" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-3.json index 68b1c3fff841..2ca6cad4f774 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetContainerLogsDeployedOnNode-3.json @@ -11,11 +11,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Content": "Exception encountered: System.Net.Http.HttpRequestException: Response status code does not indicate success: 500 (Internal Server Error).\r\n\tat System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\r\n" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDataLossProgress-Running.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDataLossProgress-Running.json index c303852becce..90590fff4f2f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDataLossProgress-Running.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDataLossProgress-Running.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Running" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDataLossProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDataLossProgress.json index 429c33c8f7b6..89d341f05c26 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDataLossProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDataLossProgress.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "InvokeDataLossResult": { @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoByName-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoByName-1.json index dad6050c027e..87c8485a607c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoByName-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoByName-1.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-1.json index 452ac7b15380..c19d4e2a841c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-1.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/samples/PQueueApp1", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-2.json index 4bdb8b879f78..7f6320e69e6d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-2.json @@ -8,20 +8,19 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ { - "Id": "samples~VQueueApp1", - "Name": "fabric:/samples/VQueueApp1", - "TypeName": "VolatileQueueApp", - "Status": "Active", - "WorkDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\work", - "LogDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\log", - "TempDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\temp", - "HealthState": "Unknown" + "Id": "samples~VQueueApp1", + "Name": "fabric:/samples/VQueueApp1", + "TypeName": "VolatileQueueApp", + "Status": "Active", + "WorkDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\work", + "LogDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\log", + "TempDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\temp", + "HealthState": "Unknown" } ] } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-3.json index 0d1b40c1148a..01cad866d3c1 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetDeployedApplicationInfoList-3.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetFaultOperationList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetFaultOperationList.json index 692f55108319..c7194dad614a 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetFaultOperationList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetFaultOperationList.json @@ -8,46 +8,44 @@ }, "responses": { "200": { - "headers": { - }, - "body": - [ - { - "OperationId": "00000000-0000-0000-0000-000000000010", - "State": "Completed", - "Type": "PartitionDataLoss" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000020", - "State": "Completed", - "Type": "PartitionQuorumLoss" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000030", - "State": "Completed", - "Type": "PartitionRestart" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000500", - "State": "Faulted", - "Type": "NodeTransition" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000700", - "State": "Completed", - "Type": "NodeTransition" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000710", - "State": "Completed", - "Type": "NodeTransition" - }, - { - "OperationId": "88ef90f9-0b94-46b0-b817-a6ea20c07f8a", - "State": "Completed", - "Type": "PartitionRestart" - } - ] + "headers": {}, + "body": [ + { + "OperationId": "00000000-0000-0000-0000-000000000010", + "State": "Completed", + "Type": "PartitionDataLoss" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000020", + "State": "Completed", + "Type": "PartitionQuorumLoss" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000030", + "State": "Completed", + "Type": "PartitionRestart" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000500", + "State": "Faulted", + "Type": "NodeTransition" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000700", + "State": "Completed", + "Type": "NodeTransition" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000710", + "State": "Completed", + "Type": "NodeTransition" + }, + { + "OperationId": "88ef90f9-0b94-46b0-b817-a6ea20c07f8a", + "State": "Completed", + "Type": "PartitionRestart" + } + ] } } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetImageStoreContent.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetImageStoreContent.json index 457cfd7986aa..7e912c407a79 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetImageStoreContent.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetImageStoreContent.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "StoreFiles": [ { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeEventList.json index a21108addcbb..f143ad167be8 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "NodeOpening", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList-1.json index be0a9a5d9509..c494bff622c5 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList-1.json @@ -1,73 +1,72 @@ { - "operationId":"GetNodeInfoList", - "description":"This example shows how to get information about the nodes in the cluster when the number of results returned is limited by the MaxResults parameter.", - "parameters":{ - "api-version":"6.3", - "MaxResults":2 - }, - "responses":{ - "200":{ - "headers":{ - }, - "body":{ - "ContinuationToken":"2acb9f55540659b1c95f27cc128ab326", - "Items":[ - { - "Name":"_testnode_1", - "IpAddressOrFQDN":"10.0.0.5", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"102016", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"1", - "FaultDomain":"fd:/1", - "Id":{ - "Id":"ebd986a1134b3643a8117fb41b259bf" - }, - "InstanceId":"131738274982501335", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T20:31:39.842Z", - "NodeDownAt":"2018-06-18T20:31:37.374Z" - }, - { - "Name":"_testnode_0", - "IpAddressOrFQDN":"10.0.0.4", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"105483", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"0", - "FaultDomain":"fd:/0", - "Id":{ - "Id":"2acb9f55540659b1c95f27cc128ab326" - }, - "InstanceId":"131738240209152398", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T19:33:52.944Z", - "NodeDownAt":"2018-06-18T19:33:39.514Z" - } - ] - } + "operationId": "GetNodeInfoList", + "description": "This example shows how to get information about the nodes in the cluster when the number of results returned is limited by the MaxResults parameter.", + "parameters": { + "api-version": "6.3", + "MaxResults": 2 + }, + "responses": { + "200": { + "headers": {}, + "body": { + "ContinuationToken": "2acb9f55540659b1c95f27cc128ab326", + "Items": [ + { + "Name": "_testnode_1", + "IpAddressOrFQDN": "10.0.0.5", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "102016", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "1", + "FaultDomain": "fd:/1", + "Id": { + "Id": "ebd986a1134b3643a8117fb41b259bf" + }, + "InstanceId": "131738274982501335", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T20:31:39.842Z", + "NodeDownAt": "2018-06-18T20:31:37.374Z" + }, + { + "Name": "_testnode_0", + "IpAddressOrFQDN": "10.0.0.4", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "105483", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "0", + "FaultDomain": "fd:/0", + "Id": { + "Id": "2acb9f55540659b1c95f27cc128ab326" + }, + "InstanceId": "131738240209152398", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T19:33:52.944Z", + "NodeDownAt": "2018-06-18T19:33:39.514Z" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList-2.json index fb689851f34d..79bbd1bf1af7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList-2.json @@ -1,100 +1,99 @@ { - "operationId":"GetNodeInfoList", - "description":"This example shows how to get information about nodes in the cluster which appear on a sequential page, by using the ContinuationToken parameter.", - "parameters":{ - "api-version":"6.3", - "ContinuationToken":"2acb9f55540659b1c95f27cc128ab326" - }, - "responses":{ - "200":{ - "headers":{ - }, - "body":{ - "ContinuationToken":"", - "Items":[ - { - "Name":"_Node_4", - "IpAddressOrFQDN":"10.0.0.8", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"101547", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"4", - "FaultDomain":"fd:/4", - "Id":{ - "Id":"ba9383d728221add7fa996bf67b757fb" - }, - "InstanceId":"131737415865259763", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-17T20:40:07.378Z", - "NodeDownAt":"2018-06-17T20:33:11.877Z" - }, - { - "Name":"_Node_3", - "IpAddressOrFQDN":"10.0.0.7", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"15615", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"3", - "FaultDomain":"fd:/3", - "Id":{ - "Id":"d6a18a0935a3e39aeae2a049eb97255d" - }, - "InstanceId":"131738275300526952", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T20:32:18.884Z", - "NodeDownAt":"2018-06-18T20:31:59.128Z" - }, - { - "Name":"_Node_2", - "IpAddressOrFQDN":"10.0.0.6", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"19819", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"2", - "FaultDomain":"fd:/2", - "Id":{ - "Id":"f2af91e5e9c8254dedb75b1424a9e3fc" - }, - "InstanceId":"131738233282843485", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T19:22:15.272Z", - "NodeDownAt":"2018-06-18T19:22:02.740Z" - } - ] - } + "operationId": "GetNodeInfoList", + "description": "This example shows how to get information about nodes in the cluster which appear on a sequential page, by using the ContinuationToken parameter.", + "parameters": { + "api-version": "6.3", + "ContinuationToken": "2acb9f55540659b1c95f27cc128ab326" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "ContinuationToken": "", + "Items": [ + { + "Name": "_Node_4", + "IpAddressOrFQDN": "10.0.0.8", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "101547", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "4", + "FaultDomain": "fd:/4", + "Id": { + "Id": "ba9383d728221add7fa996bf67b757fb" + }, + "InstanceId": "131737415865259763", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-17T20:40:07.378Z", + "NodeDownAt": "2018-06-17T20:33:11.877Z" + }, + { + "Name": "_Node_3", + "IpAddressOrFQDN": "10.0.0.7", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "15615", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "3", + "FaultDomain": "fd:/3", + "Id": { + "Id": "d6a18a0935a3e39aeae2a049eb97255d" + }, + "InstanceId": "131738275300526952", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T20:32:18.884Z", + "NodeDownAt": "2018-06-18T20:31:59.128Z" + }, + { + "Name": "_Node_2", + "IpAddressOrFQDN": "10.0.0.6", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "19819", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "2", + "FaultDomain": "fd:/2", + "Id": { + "Id": "f2af91e5e9c8254dedb75b1424a9e3fc" + }, + "InstanceId": "131738233282843485", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T19:22:15.272Z", + "NodeDownAt": "2018-06-18T19:22:02.740Z" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList.json index 6e19eaa4d9a3..d38a618440a9 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeInfoList.json @@ -1,153 +1,152 @@ { - "operationId":"GetNodeInfoList", - "description":"This example shows how to get information about all the nodes in the cluster when the information fits in a single response message without the need for paging through ContinuationToken parameter.", - "parameters":{ - "api-version":"6.3" - }, - "responses":{ - "200":{ - "headers":{ - }, - "body":{ - "ContinuationToken":"", - "Items":[ - { - "Name":"_Node_1", - "IpAddressOrFQDN":"10.0.0.5", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"15275", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"1", - "FaultDomain":"fd:/1", - "Id":{ - "Id":"ebd986a1134b3643a8117fb41b259bf" - }, - "InstanceId":"131738274982501335", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T20:31:39.842Z", - "NodeDownAt":"2018-06-18T20:31:37.374Z" - }, - { - "Name":"_Node_0", - "IpAddressOrFQDN":"10.0.0.4", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"18742", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"0", - "FaultDomain":"fd:/0", - "Id":{ - "Id":"2acb9f55540659b1c95f27cc128ab326" - }, - "InstanceId":"131738240209152398", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T19:33:52.944Z", - "NodeDownAt":"2018-06-18T19:33:39.514Z" - }, - { - "Name":"_Node_4", - "IpAddressOrFQDN":"10.0.0.8", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"101168", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"4", - "FaultDomain":"fd:/4", - "Id":{ - "Id":"ba9383d728221add7fa996bf67b757fb" - }, - "InstanceId":"131737415865259763", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-17T20:40:07.378Z", - "NodeDownAt":"2018-06-17T20:33:11.877Z" - }, - { - "Name":"_Node_3", - "IpAddressOrFQDN":"10.0.0.7", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"15236", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"3", - "FaultDomain":"fd:/3", - "Id":{ - "Id":"d6a18a0935a3e39aeae2a049eb97255d" - }, - "InstanceId":"131738275300526952", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T20:32:18.884Z", - "NodeDownAt":"2018-06-18T20:31:59.128Z" - }, - { - "Name":"_Node_2", - "IpAddressOrFQDN":"10.0.0.6", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"19440", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"2", - "FaultDomain":"fd:/2", - "Id":{ - "Id":"f2af91e5e9c8254dedb75b1424a9e3fc" - }, - "InstanceId":"131738233282843485", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T19:22:15.272Z", - "NodeDownAt":"2018-06-18T19:22:02.740Z" - } - ] - } + "operationId": "GetNodeInfoList", + "description": "This example shows how to get information about all the nodes in the cluster when the information fits in a single response message without the need for paging through ContinuationToken parameter.", + "parameters": { + "api-version": "6.3" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "ContinuationToken": "", + "Items": [ + { + "Name": "_Node_1", + "IpAddressOrFQDN": "10.0.0.5", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "15275", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "1", + "FaultDomain": "fd:/1", + "Id": { + "Id": "ebd986a1134b3643a8117fb41b259bf" + }, + "InstanceId": "131738274982501335", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T20:31:39.842Z", + "NodeDownAt": "2018-06-18T20:31:37.374Z" + }, + { + "Name": "_Node_0", + "IpAddressOrFQDN": "10.0.0.4", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "18742", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "0", + "FaultDomain": "fd:/0", + "Id": { + "Id": "2acb9f55540659b1c95f27cc128ab326" + }, + "InstanceId": "131738240209152398", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T19:33:52.944Z", + "NodeDownAt": "2018-06-18T19:33:39.514Z" + }, + { + "Name": "_Node_4", + "IpAddressOrFQDN": "10.0.0.8", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "101168", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "4", + "FaultDomain": "fd:/4", + "Id": { + "Id": "ba9383d728221add7fa996bf67b757fb" + }, + "InstanceId": "131737415865259763", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-17T20:40:07.378Z", + "NodeDownAt": "2018-06-17T20:33:11.877Z" + }, + { + "Name": "_Node_3", + "IpAddressOrFQDN": "10.0.0.7", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "15236", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "3", + "FaultDomain": "fd:/3", + "Id": { + "Id": "d6a18a0935a3e39aeae2a049eb97255d" + }, + "InstanceId": "131738275300526952", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T20:32:18.884Z", + "NodeDownAt": "2018-06-18T20:31:59.128Z" + }, + { + "Name": "_Node_2", + "IpAddressOrFQDN": "10.0.0.6", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "19440", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "2", + "FaultDomain": "fd:/2", + "Id": { + "Id": "f2af91e5e9c8254dedb75b1424a9e3fc" + }, + "InstanceId": "131738233282843485", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T19:22:15.272Z", + "NodeDownAt": "2018-06-18T19:22:02.740Z" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeTransitionProgress-Running.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeTransitionProgress-Running.json index 64d4642700ea..62ad5c37ec58 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeTransitionProgress-Running.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeTransitionProgress-Running.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Running" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeTransitionProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeTransitionProgress.json index 5ee8818ce76a..474ab826b8df 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeTransitionProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodeTransitionProgress.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "NodeTransitionResult": { @@ -22,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodesEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodesEventList.json index aae5dea1cc1c..4355d9961558 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodesEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetNodesEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "NodeOpening", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupConfigurationInfo.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupConfigurationInfo.json index 48ffda64fa66..c7e119b0e7a7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupConfigurationInfo.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupConfigurationInfo.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Kind": "Partition", "PolicyName": "BackupPolicy2", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-1.json index 95228d16752f..6f6c7931f845 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-1.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-2.json index a8b808b8db3d..8d56fd96a576 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-2.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "be06a49c-be67-4eb1-a602-b983605be862", "BackupChainId": "be06a49c-be67-4eb1-a602-b983605be862", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-3.json index 607b42eaa2cb..45a0dbe1568d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-3.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-4.json index 0444cd5e8266..9ac35bb79efd 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupList-4.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "be06a49c-be67-4eb1-a602-b983605be862", "BackupChainId": "be06a49c-be67-4eb1-a602-b983605be862", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupProgress.json index 9e0b2545db60..3b9b131b8afd 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionBackupProgress.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "BackupState": "Success", "TimeStampUtc": "2018-01-01T09:00:55Z", @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionEventList.json index aae33c4b1e00..59e619f72f17 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "PartitionReconfigurationCompleted", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionRestartProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionRestartProgress.json index 4453caa242d6..074289b470a2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionRestartProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionRestartProgress.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "RestartPartitionResult": { @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionRestoreProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionRestoreProgress.json index cd6099ad4d61..62e13304aa16 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionRestoreProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionRestoreProgress.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "RestoreState": "Success", "TimeStampUtc": "2018-01-01T09:00:55Z", @@ -21,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionsEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionsEventList.json index dd7f4311823f..7d500da4e26f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionsEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPartitionsEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "PartitionReconfigurationCompleted", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfo-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfo-1.json index fd0e63e316bf..ca5def4be2fb 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfo-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfo-1.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Name": "CalculatorAppData", "Value": { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-1.json index 9d4f74b46e80..5729c6a4e4a2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-1.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "PersistentQueueAppData$131439231986491349", "IsConsistent": true, @@ -36,7 +35,6 @@ } } ] - } } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-2.json index 405aeca605ff..6a172f23f09a 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "PersistentQueueAppData$131439231986491349", "IsConsistent": true, @@ -33,7 +32,13 @@ "Name": "PersistentQueueAppData", "Value": { "Kind": "Binary", - "Data": [6, 7, 8, 9, 10] + "Data": [ + 6, + 7, + 8, + 9, + 10 + ] }, "Metadata": { "TypeId": "Binary", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-3.json index 51a4fcb919b4..ce12465b6ce6 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetPropertyInfoList-3.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetQuorumLossProgress-Running.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetQuorumLossProgress-Running.json index 059c51840fc9..203fb157db03 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetQuorumLossProgress-Running.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetQuorumLossProgress-Running.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Running" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetQuorumLossProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetQuorumLossProgress.json index 3e848d89bc8d..c86fd0d2b31d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetQuorumLossProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetQuorumLossProgress.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "InvokeQuorumLossResult": { @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetReplicaEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetReplicaEventList.json index a89b8578ab44..37455c6cbf93 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetReplicaEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetReplicaEventList.json @@ -10,8 +10,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "StatefulReplicaHealthReportCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetReplicasEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetReplicasEventList.json index 793b6d201db5..9dd8bfcefce5 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetReplicasEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetReplicasEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "StatefulReplicaHealthReportCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupConfigurationInfo-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupConfigurationInfo-1.json index 9e7a54d9b89f..63026d5e9432 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupConfigurationInfo-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupConfigurationInfo-1.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d", - "Items": [ + "Items": [ { "Kind": "Service", "PolicyName": "BackupPolicy1", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupConfigurationInfo-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupConfigurationInfo-2.json index 126c01ad5d60..a9bf85884db2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupConfigurationInfo-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupConfigurationInfo-2.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "Kind": "Partition", "PolicyName": "BackupPolicy1", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-1.json index cb0c6c85b6a5..3291f1a1a943 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-1.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-2.json index 03d20cfcca7e..d8b8c99093b8 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-2.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-3.json index 3e0d3827a229..1b5870db7131 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-3.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", - "Items": [ + "Items": [ { "BackupId": "3a056ac9-7206-43c3-8424-6f6103003eba", "BackupChainId": "3a056ac9-7206-43c3-8424-6f6103003eba", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-4.json index 15482f3db270..a4bc56a73369 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceBackupList-4.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "BackupId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", "BackupChainId": "0ff4fdbe-131c-4dfb-8249-7b4029ddc014", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceEventList.json index ae7adcc98ecf..eb2f04b29fdb 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServiceEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ServiceCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServicesEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServicesEventList.json index bd4b7353165e..4b759f1352da 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServicesEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetServicesEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ServiceCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-1.json index 3d315a557a9f..282319140d86 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-1.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-2.json index 6dbd9309980a..15391854f370 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-3.json index 3265fc8a3c13..bf07c9c58bc4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetSubNameInfoList-3.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetUploadSessionById.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetUploadSessionById.json index 21ce39b90dd9..c565a13cfcbc 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetUploadSessionById.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetUploadSessionById.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "UploadSessions": [ { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetUploadSessionByPath.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetUploadSessionByPath.json index 82743551c7cb..8dc66b6d107d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetUploadSessionByPath.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/GetUploadSessionByPath.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "UploadSessions": [ { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/InvokeContainerApi.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/InvokeContainerApi.json index cdaf407acf69..bfe285758eec 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/InvokeContainerApi.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/InvokeContainerApi.json @@ -1,27 +1,27 @@ { - "operationId": "InvokeContainerApi", - "description": "This example shows how to call container API with HTTP GET for a code package deployed on a node.", - "parameters": { - "api-version": "6.2", - "nodeName": "Node01", - "applicationId": "samples/winnodejs", - "ServiceManifestName": "NodeServicePackage", - "CodePackageName": "NodeService.Code", - "CodePackageInstanceId": "131668159770315380", - "ContainerApiRequestBody": { - "UriPath": "/containers/{id}/logs?stdout=true&stderr=true" - } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "ContainerApiResult": { - "Status": 200, - "Content-Type": "text/plain; charset=utf-8", - "Body": "vEthernet (Container NIC ec5c19b2) 172.17.201.44\n" - } - } + "operationId": "InvokeContainerApi", + "description": "This example shows how to call container API with HTTP GET for a code package deployed on a node.", + "parameters": { + "api-version": "6.2", + "nodeName": "Node01", + "applicationId": "samples/winnodejs", + "ServiceManifestName": "NodeServicePackage", + "CodePackageName": "NodeService.Code", + "CodePackageInstanceId": "131668159770315380", + "ContainerApiRequestBody": { + "UriPath": "/containers/{id}/logs?stdout=true&stderr=true" + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "ContainerApiResult": { + "Status": 200, + "Content-Type": "text/plain; charset=utf-8", + "Body": "vEthernet (Container NIC ec5c19b2) 172.17.201.44\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/InvokeContainerApi_Post.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/InvokeContainerApi_Post.json index 1af58111eb46..0042fd341de0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/InvokeContainerApi_Post.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/InvokeContainerApi_Post.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/PutProperty-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/PutProperty-1.json index f2e3d3252d09..8eee209e7c7b 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/PutProperty-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/PutProperty-1.json @@ -8,12 +8,18 @@ "PropertyName": "AppData", "Value": { "Kind": "Binary", - "Data": [0, 1, 2, 3, 4, 5] + "Data": [ + 0, + 1, + 2, + 3, + 4, + 5 + ] } } }, "responses": { - "200": { - } + "200": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/PutProperty-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/PutProperty-2.json index 85713723d090..5db6a9ad77f7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/PutProperty-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/PutProperty-2.json @@ -14,7 +14,6 @@ } }, "responses": { - "200": { - } + "200": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/CreateOrUpdateApplicationResource.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/CreateOrUpdateApplicationResource.json index 3450bd4503a7..458048b6298d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/CreateOrUpdateApplicationResource.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/CreateOrUpdateApplicationResource.json @@ -43,4 +43,4 @@ "201": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/CreateOrUpdateVolumeResource.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/CreateOrUpdateVolumeResource.json index d447312a9818..a656c31cca11 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/CreateOrUpdateVolumeResource.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/CreateOrUpdateVolumeResource.json @@ -21,4 +21,4 @@ "201": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/DeleteApplicationResource.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/DeleteApplicationResource.json index 4b2156c02a4e..a7dd835dead1 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/DeleteApplicationResource.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/DeleteApplicationResource.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/DeleteVolumeResource.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/DeleteVolumeResource.json index f981f61405f9..66515e1b1d2e 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/DeleteVolumeResource.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/DeleteVolumeResource.json @@ -1,13 +1,13 @@ { - "operationId": "DeleteVolumeResource", - "description": "This example shows how to delete an existing volume resource. If the volume resource does not exit, an empty response with 204 status code is returned.", - "parameters": { - "volumeResourceName": "meshDemoVolume", - "api-version": "6.3-preview" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} \ No newline at end of file + "operationId": "DeleteVolumeResource", + "description": "This example shows how to delete an existing volume resource. If the volume resource does not exit, an empty response with 204 status code is returned.", + "parameters": { + "volumeResourceName": "meshDemoVolume", + "api-version": "6.3-preview" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetApplicationResource.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetApplicationResource.json index e36748d07114..996803abe6e2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetApplicationResource.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetApplicationResource.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetReplica.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetReplica.json index e60ba88bef4e..ee34b33d7e50 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetReplica.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetReplica.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetReplicas.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetReplicas.json index f59de11738d8..a1629876b72f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetReplicas.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetReplicas.json @@ -1,86 +1,86 @@ { "operationId": "GetReplica", "description": "This example shows how to get the information about all replicas of a given service of an application..", - "parameters": { - "api-version": "6.3-preview", + "parameters": { + "api-version": "6.3-preview", "applicationResourceName": "helloWorldApp", "serviceResourceName": "helloWorldService" - }, - "responses": { - "200": { - "body": { - "ContinuationToken": "", + }, + "responses": { + "200": { + "body": { + "ContinuationToken": "", "Items": [ - { - "osType": "Linux", - "codePackages": [ - { - "name": "helloWorldCode", - "image": "seabreeze/sbz-helloworld:1.0-alpine", - "endpoints": [ - { - "name": "helloWorldListener", - "port": 80 - } - ], - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 - } + { + "osType": "Linux", + "codePackages": [ + { + "name": "helloWorldCode", + "image": "seabreeze/sbz-helloworld:1.0-alpine", + "endpoints": [ + { + "name": "helloWorldListener", + "port": 80 + } + ], + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 + } + }, + "instanceView": { + "restartCount": 1, + "currentState": { + "state": "Running", + "exitCode": "0" }, - "instanceView": { - "restartCount": 1, - "currentState": { - "state": "Running", - "exitCode": "0" - }, - "previousState": { - "state": "NotSpecified", - "exitCode": "0" - } + "previousState": { + "state": "NotSpecified", + "exitCode": "0" } } - ], - "networkRefs": [], - "replicaName": "1" - }, - { - "osType": "Linux", - "codePackages": [ - { - "name": "helloWorldCode", - "image": "seabreeze/sbz-helloworld:1.0-alpine", - "endpoints": [ - { - "name": "helloWorldListener", - "port": 80 - } - ], - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 - } + } + ], + "networkRefs": [], + "replicaName": "1" + }, + { + "osType": "Linux", + "codePackages": [ + { + "name": "helloWorldCode", + "image": "seabreeze/sbz-helloworld:1.0-alpine", + "endpoints": [ + { + "name": "helloWorldListener", + "port": 80 + } + ], + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 + } + }, + "instanceView": { + "restartCount": 1, + "currentState": { + "state": "Running", + "exitCode": "0" }, - "instanceView": { - "restartCount": 1, - "currentState": { - "state": "Running", - "exitCode": "0" - }, - "previousState": { - "state": "NotSpecified", - "exitCode": "0" - } + "previousState": { + "state": "NotSpecified", + "exitCode": "0" } } - ], - "networkRefs": [], - "replicaName": "0" - } - ] - } + } + ], + "networkRefs": [], + "replicaName": "0" + } + ] } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetService.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetService.json index 52b7d883b774..0b26f3e40347 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetService.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetService.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetServices.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetServices.json index d8967583f096..0b6783d9e0b0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetServices.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetServices.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetVolumeResource.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetVolumeResource.json index c2aa93b5bff7..872cac09f158 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetVolumeResource.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/Resource/GetVolumeResource.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/RestorePartition.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/RestorePartition.json index 2517de87856f..bcf0866b5cfa 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/RestorePartition.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/RestorePartition.json @@ -15,7 +15,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumeApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumeApplicationBackup.json index c2c11c4f9d0a..3786ff3d7b54 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumeApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumeApplicationBackup.json @@ -6,7 +6,6 @@ "applicationId": "CalcApp" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumePartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumePartitionBackup.json index f902b478d32e..1ce9278a4639 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumePartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumePartitionBackup.json @@ -6,7 +6,6 @@ "partitionId": "1daae3f5-7fd6-42e9-b1ba-8c05f873994d" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumeServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumeServiceBackup.json index 69ea5b861c11..c97f824b47e1 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumeServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/ResumeServiceBackup.json @@ -6,7 +6,6 @@ "serviceId": "CalcApp/CalcService" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/StartClusterConfigurationUpgrade-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/StartClusterConfigurationUpgrade-1.json index bbb6034fc8e4..2f8fd59a474e 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/StartClusterConfigurationUpgrade-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/StartClusterConfigurationUpgrade-1.json @@ -32,11 +32,9 @@ } ] } - } }, "responses": { - "202": { - } + "202": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SubmitPropertyBatch-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SubmitPropertyBatch-1.json index af100a680c95..da4ac83317d4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SubmitPropertyBatch-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SubmitPropertyBatch-1.json @@ -21,7 +21,13 @@ "PropertyName": "PersistentQueueAppData", "Value": { "Kind": "Binary", - "Data": [1, 2, 3, 4, 5] + "Data": [ + 1, + 2, + 3, + 4, + 5 + ] }, "CustomTypeId": "InitializationData" }, @@ -35,8 +41,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Kind": "Successful", "Properties": { @@ -55,8 +60,7 @@ } }, "409": { - "headers": { - }, + "headers": {}, "body": { "Kind": "Failed", "ErrorMessage": "FABRIC_E_PROPERTY_CHECK_FAILED", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendApplicationBackup.json index 862c3b5387d8..9bb3da5e03aa 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendApplicationBackup.json @@ -6,7 +6,6 @@ "applicationId": "CalcApp" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendPartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendPartitionBackup.json index 74e24683205a..e34dfbeeead2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendPartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendPartitionBackup.json @@ -6,7 +6,6 @@ "partitionId": "1daae3f5-7fd6-42e9-b1ba-8c05f873994d" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendServiceBackup.json index f39d03482610..212b0345344d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/SuspendServiceBackup.json @@ -6,7 +6,6 @@ "serviceId": "CalcApp/CalcService" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateBackupPolicy.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateBackupPolicy.json index 5421b431a968..aed3191828a9 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateBackupPolicy.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateBackupPolicy.json @@ -12,8 +12,8 @@ "ScheduleKind": "TimeBased", "ScheduleFrequencyType": "Daily", "RunTimes": [ - "0001-01-01T09:00:00Z", - "0001-01-01T17:00:00Z" + "0001-01-01T09:00:00Z", + "0001-01-01T17:00:00Z" ] }, "Storage": { @@ -22,10 +22,9 @@ "ConnectionString": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", "ContainerName": "BackupContainer" } - } + } }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateService-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateService-1.json index 3a748e8e3e20..6d14c7ebe614 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateService-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateService-1.json @@ -1,34 +1,34 @@ { - "operationId": "UpdateService", - "description": "This example shows how to update placement and load balancing related settings of a stateless Service Fabric service.", - "parameters": { - "serviceId": "test~test1", - "api-version": "6.0", - "ServiceUpdateDescription": { - "ServiceKind": "Stateless", - "Flags": "1568", - "PlacementConstraints": "Color==Red", - "DefaultMoveCost": "High", - "ScalingPolicies": [ - { - "ScalingTrigger": { - "Kind": "AveragePartitionLoad", - "MetricName": "servicefabric:\/_CpuCores", - "LowerLoadThreshold": 0.500000, - "UpperLoadThreshold": 0.800000, - "ScaleIntervalInSeconds": 900 - }, - "ScalingMechanism": { - "Kind": "PartitionInstanceCount", - "MinInstanceCount": 4, - "MaxInstanceCount": 6, - "ScaleIncrement": 2 - } - } - ] + "operationId": "UpdateService", + "description": "This example shows how to update placement and load balancing related settings of a stateless Service Fabric service.", + "parameters": { + "serviceId": "test~test1", + "api-version": "6.0", + "ServiceUpdateDescription": { + "ServiceKind": "Stateless", + "Flags": "1568", + "PlacementConstraints": "Color==Red", + "DefaultMoveCost": "High", + "ScalingPolicies": [ + { + "ScalingTrigger": { + "Kind": "AveragePartitionLoad", + "MetricName": "servicefabric:\/_CpuCores", + "LowerLoadThreshold": 0.500000, + "UpperLoadThreshold": 0.800000, + "ScaleIntervalInSeconds": 900 + }, + "ScalingMechanism": { + "Kind": "PartitionInstanceCount", + "MinInstanceCount": 4, + "MaxInstanceCount": 6, + "ScaleIncrement": 2 + } } - }, - "responses": { - "200": {} + ] } -} \ No newline at end of file + }, + "responses": { + "200": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateService-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateService-2.json index 4329ddddf400..cdb1368dbdd6 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateService-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/examples/UpdateService-2.json @@ -1,17 +1,17 @@ { - "operationId": "UpdateService", - "description": "This example shows how to update placement and load balancing related settings of a stateful Service Fabric service.", - "parameters": { - "serviceId": "test~test2", - "api-version": "6.0", - "ServiceUpdateDescription": { - "ServiceKind": "Stateful", - "Flags": "40", - "PlacementConstraints": "Color==Green", - "StandByReplicaKeepDurationSeconds": "1000" - } - }, - "responses": { - "200": {} + "operationId": "UpdateService", + "description": "This example shows how to update placement and load balancing related settings of a stateful Service Fabric service.", + "parameters": { + "serviceId": "test~test2", + "api-version": "6.0", + "ServiceUpdateDescription": { + "ServiceKind": "Stateful", + "Flags": "40", + "PlacementConstraints": "Color==Green", + "StandByReplicaKeepDurationSeconds": "1000" } -} \ No newline at end of file + }, + "responses": { + "200": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/servicefabric.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/servicefabric.json index 50671d0c5bc7..3838da5fbcfc 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/servicefabric.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.3/servicefabric.json @@ -25884,4 +25884,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-1.json index 83a821cf558d..2a7638588821 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-1.json @@ -7,7 +7,6 @@ "BackupPartitionDescription": {} }, "responses": { - "202": { - } + "202": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-2.json index 0c5e27edc6d6..9aa037a4d490 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-2.json @@ -10,10 +10,9 @@ "ConnectionString": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", "ContainerName": "BackupContainer" } - } + } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-3.json index 2e3c6d010b83..3d9ef05b08e4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/BackupPartition-3.json @@ -11,10 +11,9 @@ "PrimaryUserName": "mydomain\\backupaccount", "PrimaryPassword": "abcd1234" } - } + } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateApplication-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateApplication-1.json index bccda97daa0e..815b59ce3e50 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateApplication-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateApplication-1.json @@ -10,7 +10,6 @@ } }, "responses": { - "201": { - } + "201": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateBackupPolicy-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateBackupPolicy-1.json index b2210fff6b8b..a2bb056ee6d0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateBackupPolicy-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateBackupPolicy-1.json @@ -26,10 +26,9 @@ "MinimumNumberOfBackups": 20, "RetentionDuration": "P3M" } - } + } }, "responses": { - "201": { - } + "201": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateBackupPolicy-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateBackupPolicy-2.json index af61f734902c..f688def9e59e 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateBackupPolicy-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateBackupPolicy-2.json @@ -26,7 +26,6 @@ } }, "responses": { - "201": { - } + "201": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateName-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateName-1.json index bde8440d7677..39588770e334 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateName-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateName-1.json @@ -8,7 +8,6 @@ } }, "responses": { - "201": { - } + "201": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-1.json index c6186d87241b..88c214abd88c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-1.json @@ -1,21 +1,21 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a basic stateless Service Fabric service.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateless", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test1", - "ServiceTypeName": "StatelessFrontendService", - "PartitionDescription": { - "PartitionScheme": "Singleton" - }, - "InstanceCount": 4 - } - }, - "responses": { - "202": {} + "operationId": "CreateService", + "description": "This example shows how to create a basic stateless Service Fabric service.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateless", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test1", + "ServiceTypeName": "StatelessFrontendService", + "PartitionDescription": { + "PartitionScheme": "Singleton" + }, + "InstanceCount": 4 } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-2.json index 8549e33566a4..b909e6c58b05 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-2.json @@ -1,23 +1,23 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a basic stateful Service Fabric service.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateful", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test2", - "ServiceTypeName": "StatefulBackendService", - "PartitionDescription": { - "PartitionScheme": "Singleton" - }, - "TargetReplicaSetSize": 3, - "MinReplicaSetSize": 2, - "HasPersistedState": false - } - }, - "responses": { - "202": {} + "operationId": "CreateService", + "description": "This example shows how to create a basic stateful Service Fabric service.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateful", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test2", + "ServiceTypeName": "StatefulBackendService", + "PartitionDescription": { + "PartitionScheme": "Singleton" + }, + "TargetReplicaSetSize": 3, + "MinReplicaSetSize": 2, + "HasPersistedState": false } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-3.json index 5d7ea2bbafed..74461b9b5eef 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-3.json @@ -1,47 +1,47 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a stateless Service Fabric service with a dns name definied and auto scaling based on cpu usage.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateless", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test1", - "ServiceTypeName": "StatelessFrontendService", - "InitializationData": [], - "PartitionDescription": { - "PartitionScheme": "Singleton" - }, - "InstanceCount": 2, - "PlacementConstraints": "Color==Blue", - "CorrelationScheme": [], - "ServiceLoadMetrics": [], - "ServicePlacementPolicies": [], - "DefaultMoveCost": "Low", - "IsDefaultMoveCostSpecified": true, - "ServicePackageActivationMode": "ExclusiveProcess", - "ServiceDnsName": "test1.test", - "ScalingPolicies": [ - { - "ScalingTrigger": { - "Kind": "AveragePartitionLoad", - "MetricName": "servicefabric:\/_CpuCores", - "LowerLoadThreshold": 0.300000, - "UpperLoadThreshold": 0.800000, - "ScaleIntervalInSeconds": 600 - }, - "ScalingMechanism": { - "Kind": "PartitionInstanceCount", - "MinInstanceCount": 1, - "MaxInstanceCount": 6, - "ScaleIncrement": 2 - } - } - ] + "operationId": "CreateService", + "description": "This example shows how to create a stateless Service Fabric service with a dns name definied and auto scaling based on cpu usage.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateless", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test1", + "ServiceTypeName": "StatelessFrontendService", + "InitializationData": [], + "PartitionDescription": { + "PartitionScheme": "Singleton" + }, + "InstanceCount": 2, + "PlacementConstraints": "Color==Blue", + "CorrelationScheme": [], + "ServiceLoadMetrics": [], + "ServicePlacementPolicies": [], + "DefaultMoveCost": "Low", + "IsDefaultMoveCostSpecified": true, + "ServicePackageActivationMode": "ExclusiveProcess", + "ServiceDnsName": "test1.test", + "ScalingPolicies": [ + { + "ScalingTrigger": { + "Kind": "AveragePartitionLoad", + "MetricName": "servicefabric:\/_CpuCores", + "LowerLoadThreshold": 0.300000, + "UpperLoadThreshold": 0.800000, + "ScaleIntervalInSeconds": 600 + }, + "ScalingMechanism": { + "Kind": "PartitionInstanceCount", + "MinInstanceCount": 1, + "MaxInstanceCount": 6, + "ScaleIncrement": 2 + } } - }, - "responses": { - "202": {} + ] } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-4.json index 6201d55060d9..a83ca1445d09 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/CreateService-4.json @@ -1,44 +1,46 @@ { - "operationId": "CreateService", - "description": "This example shows how to create a stateful Service Fabric service with named partitions and scaling enabled based on memory usage.", - "parameters": { - "applicationId": "test", - "api-version": "6.0", - "ServiceDescription": { - "ServiceKind": "Stateful", - "ApplicationName": "fabric:\/test", - "ServiceName": "fabric:\/test\/test2", - "ServiceTypeName": "StatefulBackendService", - "InitializationData": [], - "PartitionDescription": { - "PartitionScheme": "NamedPartitionSchemeDescription", - "Count" : 1, - "Names" : ["0"] - }, - "TargetReplicaSetSize": 3, - "MinReplicaSetSize" : 2, - "HasPersistedState" : true, - "ServicePackageActivationMode": "ExclusiveProcess", - "ScalingPolicies": [ - { - "ScalingTrigger": { - "Kind": "AverageServiceLoad", - "MetricName": "servicefabric:\/_MemoryInMB", - "LowerLoadThreshold": 500, - "UpperLoadThreshold": 900, - "ScaleIntervalInSeconds": 600 - }, - "ScalingMechanism": { - "Kind": "AddRemoveIncrementalNamedPartition", - "MinPartitionCount": 1, - "MaxPartitionCount": 3, - "ScaleIncrement": 1 - } - } - ] + "operationId": "CreateService", + "description": "This example shows how to create a stateful Service Fabric service with named partitions and scaling enabled based on memory usage.", + "parameters": { + "applicationId": "test", + "api-version": "6.0", + "ServiceDescription": { + "ServiceKind": "Stateful", + "ApplicationName": "fabric:\/test", + "ServiceName": "fabric:\/test\/test2", + "ServiceTypeName": "StatefulBackendService", + "InitializationData": [], + "PartitionDescription": { + "PartitionScheme": "NamedPartitionSchemeDescription", + "Count": 1, + "Names": [ + "0" + ] + }, + "TargetReplicaSetSize": 3, + "MinReplicaSetSize": 2, + "HasPersistedState": true, + "ServicePackageActivationMode": "ExclusiveProcess", + "ScalingPolicies": [ + { + "ScalingTrigger": { + "Kind": "AverageServiceLoad", + "MetricName": "servicefabric:\/_MemoryInMB", + "LowerLoadThreshold": 500, + "UpperLoadThreshold": 900, + "ScaleIntervalInSeconds": 600 + }, + "ScalingMechanism": { + "Kind": "AddRemoveIncrementalNamedPartition", + "MinPartitionCount": 1, + "MaxPartitionCount": 3, + "ScaleIncrement": 1 + } } - }, - "responses": { - "202": {} + ] } -} \ No newline at end of file + }, + "responses": { + "202": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DeleteBackupPolicy.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DeleteBackupPolicy.json index 734395ce32b1..d4796b5ede08 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DeleteBackupPolicy.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DeleteBackupPolicy.json @@ -6,7 +6,6 @@ "backupPolicyName": "SampleBackupPolicy" }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisableApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisableApplicationBackup.json index bd8540b36fee..964fdaa8c3f3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisableApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisableApplicationBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisablePartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisablePartitionBackup.json index b623b3e43f27..1f6cc6b32ed3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisablePartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisablePartitionBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisableServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisableServiceBackup.json index fe100058077b..14ca9acf4e25 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisableServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/DisableServiceBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnableApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnableApplicationBackup.json index 2cd0f437db33..b0e24cd35f67 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnableApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnableApplicationBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnablePartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnablePartitionBackup.json index 3daf064a898d..739bd06ce60e 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnablePartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnablePartitionBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnableServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnableServiceBackup.json index bebbe3f6f9f6..0fe38fd714bc 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnableServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/EnableServiceBackup.json @@ -9,7 +9,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetAllEntitiesBackedUpByPolicy-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetAllEntitiesBackedUpByPolicy-1.json index 8141cd283aef..9f4e37d7fdf9 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetAllEntitiesBackedUpByPolicy-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetAllEntitiesBackedUpByPolicy-1.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/DemoApp", - "Items": [ + "Items": [ { "EntityKind": "Application", "ApplicationName": "fabric:/CalcApp" diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetAllEntitiesBackedUpByPolicy-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetAllEntitiesBackedUpByPolicy-2.json index b7fc80ecf216..18f3467fc9ed 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetAllEntitiesBackedUpByPolicy-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetAllEntitiesBackedUpByPolicy-2.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "EntityKind": "Service", "ServiceName": "fabric:/VotingApp/VotingActorService" diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupConfigurationInfo-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupConfigurationInfo-1.json index 56a5d760f94a..3d396dbf082d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupConfigurationInfo-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupConfigurationInfo-1.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService", - "Items": [ + "Items": [ { "Kind": "Application", "PolicyName": "BackupPolicy1", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupConfigurationInfo-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupConfigurationInfo-2.json index 506f8ec3cbc8..1ca86bee1983 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupConfigurationInfo-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupConfigurationInfo-2.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "Kind": "Partition", "PolicyName": "BackupPolicy2", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-1.json index df8b305698a5..bc89f402c6bd 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-1.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ @@ -27,7 +26,7 @@ }, "BackupLocation": "CalcApp\\CalcService\\1daae3f5-7fd6-42e9-b1ba-8c05f873994d\\2018-01-01 09.00.55.zip", "BackupType": "Full", - "ServiceManifestVersion":"1.0.0", + "ServiceManifestVersion": "1.0.0", "EpochOfLastBackupRecord": { "DataLossVersion": "131462452931584510", "ConfigurationVersion": "8589934592" diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-2.json index 4bb4eb8152a0..adb11bc306b8 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-3.json index b21f672bf8e1..189ba7d18cbf 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-3.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-4.json index 49839d6d22d1..537af235a0e2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationBackupList-4.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationEventList.json index f7be3e08c391..32bca288ae42 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ApplicationCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationInfoList-1.json index df1f287e4104..2ca46b64e3a4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationInfoList-1.json @@ -7,11 +7,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/samples/PQueueApp1", - "Items": [ + "Items": [ { "Id": "samples~CalculatorApp", "Name": "fabric:/samples/CalculatorApp", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationInfoList-2.json index 7b5ab210e830..c0755d26e14b 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-1.json index a230d74d2b54..bcb6a4e5e3b7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-1.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "PersistentQueueApp+2.0", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-2.json index c02bd96ace75..a7c38cdedbe7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-3.json index 325dc1b5ca6d..473565e56c6d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationTypeInfoList-3.json @@ -7,51 +7,50 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ { "Name": "CalculatorApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "CalculatorApp", "Version": "2.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "GatewayApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "PersistentQueueApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "PersistentQueueApp", "Version": "2.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "VolatileQueueApp", "Version": "1.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" }, { "Name": "VolatileQueueApp", "Version": "2.0", - "DefaultParameterList": [ ], + "DefaultParameterList": [], "Status": "Available" } ] diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationsEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationsEventList.json index d21ba988e49c..fa65ec159120 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationsEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetApplicationsEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ApplicationCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyByName.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyByName.json index 3b9df80414d6..411b836109b2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyByName.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyByName.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Name": "DailyAzureBackupPolicy", "AutoRestoreOnDataLoss": false, @@ -34,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyList-1.json index c98bf5102ced..d4ac30f0658a 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyList-1.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "FileShare10MinBackupPolicy", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyList-2.json index c0346ecc51fa..ad0e9a860ae4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupPolicyList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupsFromBackupLocation-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupsFromBackupLocation-1.json index 2bd4583d415f..6925de02aeb5 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupsFromBackupLocation-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupsFromBackupLocation-1.json @@ -18,8 +18,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupsFromBackupLocation-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupsFromBackupLocation-2.json index f123c428fff8..190f318797ab 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupsFromBackupLocation-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetBackupsFromBackupLocation-2.json @@ -19,8 +19,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetChaosEvents.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetChaosEvents.json index 3a486b6fe298..4e5d7bb0b4e3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetChaosEvents.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetChaosEvents.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "History": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetClusterEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetClusterEventList.json index 78918cf57d29..3a122bb8aec0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetClusterEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetClusterEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ClusterUpgradeStarted", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetClusterVersion-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetClusterVersion-1.json index 7d6eda2a23a6..fd3b6fbf55b8 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetClusterVersion-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetClusterVersion-1.json @@ -6,8 +6,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Version": "6.4.514.9494" } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-1.json index 49a23ee30dc4..1be29fb8e6ef 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-1.json @@ -10,11 +10,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Content": "HTTP Server started listening on port 8080\r\n" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-2.json index 0b1aec4546b8..669943a0d4cb 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-2.json @@ -11,11 +11,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Content": "UTC Time Now: 04\/02\/2018 22:06:31\r\nUTC Time Now: 04\/02\/2018 22:06:32\r\nUTC Time Now: 04\/02\/2018 22:06:33\r\nUTC Time Now: 04\/02\/2018 22:06:344\r\nUTC Time Now: 04\/02\/2018 22:06:35\r\nUTC Time Now: 04\/02\/2018 22:06:36\r\nUTC Time Now: 04\/02\/2018 22:06:37\r\nUTC Time Now: 04\/02\/2018 22:06:38\r\nUTC Time Now: 04\/02\/2018 22:06:39\r\nUTC Time Now: 04\/02\/2018 22:06:40\r\n" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-3.json index 9809a8a2d740..2ca6cad4f774 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetContainerLogsDeployedOnNode-3.json @@ -11,8 +11,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Content": "Exception encountered: System.Net.Http.HttpRequestException: Response status code does not indicate success: 500 (Internal Server Error).\r\n\tat System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\r\n" } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDataLossProgress-Running.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDataLossProgress-Running.json index c303852becce..90590fff4f2f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDataLossProgress-Running.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDataLossProgress-Running.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Running" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDataLossProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDataLossProgress.json index 429c33c8f7b6..89d341f05c26 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDataLossProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDataLossProgress.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "InvokeDataLossResult": { @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-1.json index 452ac7b15380..c19d4e2a841c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-1.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/samples/PQueueApp1", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-2.json index 4bdb8b879f78..7f6320e69e6d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-2.json @@ -8,20 +8,19 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ { - "Id": "samples~VQueueApp1", - "Name": "fabric:/samples/VQueueApp1", - "TypeName": "VolatileQueueApp", - "Status": "Active", - "WorkDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\work", - "LogDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\log", - "TempDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\temp", - "HealthState": "Unknown" + "Id": "samples~VQueueApp1", + "Name": "fabric:/samples/VQueueApp1", + "TypeName": "VolatileQueueApp", + "Status": "Active", + "WorkDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\work", + "LogDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\log", + "TempDirectory": "C:\\SfDevCluster\\Data\\_App\\_Node_0\\VolatileQueueApp_App2\\temp", + "HealthState": "Unknown" } ] } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-3.json index 0d1b40c1148a..01cad866d3c1 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetDeployedApplicationInfoList-3.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetFaultOperationList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetFaultOperationList.json index 692f55108319..c7194dad614a 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetFaultOperationList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetFaultOperationList.json @@ -8,46 +8,44 @@ }, "responses": { "200": { - "headers": { - }, - "body": - [ - { - "OperationId": "00000000-0000-0000-0000-000000000010", - "State": "Completed", - "Type": "PartitionDataLoss" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000020", - "State": "Completed", - "Type": "PartitionQuorumLoss" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000030", - "State": "Completed", - "Type": "PartitionRestart" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000500", - "State": "Faulted", - "Type": "NodeTransition" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000700", - "State": "Completed", - "Type": "NodeTransition" - }, - { - "OperationId": "00000000-0000-0000-0000-000000000710", - "State": "Completed", - "Type": "NodeTransition" - }, - { - "OperationId": "88ef90f9-0b94-46b0-b817-a6ea20c07f8a", - "State": "Completed", - "Type": "PartitionRestart" - } - ] + "headers": {}, + "body": [ + { + "OperationId": "00000000-0000-0000-0000-000000000010", + "State": "Completed", + "Type": "PartitionDataLoss" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000020", + "State": "Completed", + "Type": "PartitionQuorumLoss" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000030", + "State": "Completed", + "Type": "PartitionRestart" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000500", + "State": "Faulted", + "Type": "NodeTransition" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000700", + "State": "Completed", + "Type": "NodeTransition" + }, + { + "OperationId": "00000000-0000-0000-0000-000000000710", + "State": "Completed", + "Type": "NodeTransition" + }, + { + "OperationId": "88ef90f9-0b94-46b0-b817-a6ea20c07f8a", + "State": "Completed", + "Type": "PartitionRestart" + } + ] } } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetImageStoreContent.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetImageStoreContent.json index 457cfd7986aa..7e912c407a79 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetImageStoreContent.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetImageStoreContent.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "StoreFiles": [ { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeEventList.json index 73f1e60e4e3c..4368ae718d58 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "NodeOpenSucceeded", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList-1.json index be0a9a5d9509..c494bff622c5 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList-1.json @@ -1,73 +1,72 @@ { - "operationId":"GetNodeInfoList", - "description":"This example shows how to get information about the nodes in the cluster when the number of results returned is limited by the MaxResults parameter.", - "parameters":{ - "api-version":"6.3", - "MaxResults":2 - }, - "responses":{ - "200":{ - "headers":{ - }, - "body":{ - "ContinuationToken":"2acb9f55540659b1c95f27cc128ab326", - "Items":[ - { - "Name":"_testnode_1", - "IpAddressOrFQDN":"10.0.0.5", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"102016", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"1", - "FaultDomain":"fd:/1", - "Id":{ - "Id":"ebd986a1134b3643a8117fb41b259bf" - }, - "InstanceId":"131738274982501335", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T20:31:39.842Z", - "NodeDownAt":"2018-06-18T20:31:37.374Z" - }, - { - "Name":"_testnode_0", - "IpAddressOrFQDN":"10.0.0.4", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"105483", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"0", - "FaultDomain":"fd:/0", - "Id":{ - "Id":"2acb9f55540659b1c95f27cc128ab326" - }, - "InstanceId":"131738240209152398", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T19:33:52.944Z", - "NodeDownAt":"2018-06-18T19:33:39.514Z" - } - ] - } + "operationId": "GetNodeInfoList", + "description": "This example shows how to get information about the nodes in the cluster when the number of results returned is limited by the MaxResults parameter.", + "parameters": { + "api-version": "6.3", + "MaxResults": 2 + }, + "responses": { + "200": { + "headers": {}, + "body": { + "ContinuationToken": "2acb9f55540659b1c95f27cc128ab326", + "Items": [ + { + "Name": "_testnode_1", + "IpAddressOrFQDN": "10.0.0.5", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "102016", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "1", + "FaultDomain": "fd:/1", + "Id": { + "Id": "ebd986a1134b3643a8117fb41b259bf" + }, + "InstanceId": "131738274982501335", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T20:31:39.842Z", + "NodeDownAt": "2018-06-18T20:31:37.374Z" + }, + { + "Name": "_testnode_0", + "IpAddressOrFQDN": "10.0.0.4", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "105483", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "0", + "FaultDomain": "fd:/0", + "Id": { + "Id": "2acb9f55540659b1c95f27cc128ab326" + }, + "InstanceId": "131738240209152398", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T19:33:52.944Z", + "NodeDownAt": "2018-06-18T19:33:39.514Z" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList-2.json index fb689851f34d..79bbd1bf1af7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList-2.json @@ -1,100 +1,99 @@ { - "operationId":"GetNodeInfoList", - "description":"This example shows how to get information about nodes in the cluster which appear on a sequential page, by using the ContinuationToken parameter.", - "parameters":{ - "api-version":"6.3", - "ContinuationToken":"2acb9f55540659b1c95f27cc128ab326" - }, - "responses":{ - "200":{ - "headers":{ - }, - "body":{ - "ContinuationToken":"", - "Items":[ - { - "Name":"_Node_4", - "IpAddressOrFQDN":"10.0.0.8", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"101547", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"4", - "FaultDomain":"fd:/4", - "Id":{ - "Id":"ba9383d728221add7fa996bf67b757fb" - }, - "InstanceId":"131737415865259763", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-17T20:40:07.378Z", - "NodeDownAt":"2018-06-17T20:33:11.877Z" - }, - { - "Name":"_Node_3", - "IpAddressOrFQDN":"10.0.0.7", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"15615", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"3", - "FaultDomain":"fd:/3", - "Id":{ - "Id":"d6a18a0935a3e39aeae2a049eb97255d" - }, - "InstanceId":"131738275300526952", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T20:32:18.884Z", - "NodeDownAt":"2018-06-18T20:31:59.128Z" - }, - { - "Name":"_Node_2", - "IpAddressOrFQDN":"10.0.0.6", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"19819", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"2", - "FaultDomain":"fd:/2", - "Id":{ - "Id":"f2af91e5e9c8254dedb75b1424a9e3fc" - }, - "InstanceId":"131738233282843485", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T19:22:15.272Z", - "NodeDownAt":"2018-06-18T19:22:02.740Z" - } - ] - } + "operationId": "GetNodeInfoList", + "description": "This example shows how to get information about nodes in the cluster which appear on a sequential page, by using the ContinuationToken parameter.", + "parameters": { + "api-version": "6.3", + "ContinuationToken": "2acb9f55540659b1c95f27cc128ab326" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "ContinuationToken": "", + "Items": [ + { + "Name": "_Node_4", + "IpAddressOrFQDN": "10.0.0.8", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "101547", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "4", + "FaultDomain": "fd:/4", + "Id": { + "Id": "ba9383d728221add7fa996bf67b757fb" + }, + "InstanceId": "131737415865259763", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-17T20:40:07.378Z", + "NodeDownAt": "2018-06-17T20:33:11.877Z" + }, + { + "Name": "_Node_3", + "IpAddressOrFQDN": "10.0.0.7", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "15615", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "3", + "FaultDomain": "fd:/3", + "Id": { + "Id": "d6a18a0935a3e39aeae2a049eb97255d" + }, + "InstanceId": "131738275300526952", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T20:32:18.884Z", + "NodeDownAt": "2018-06-18T20:31:59.128Z" + }, + { + "Name": "_Node_2", + "IpAddressOrFQDN": "10.0.0.6", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "19819", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "2", + "FaultDomain": "fd:/2", + "Id": { + "Id": "f2af91e5e9c8254dedb75b1424a9e3fc" + }, + "InstanceId": "131738233282843485", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T19:22:15.272Z", + "NodeDownAt": "2018-06-18T19:22:02.740Z" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList.json index 4b6353a74314..d38a618440a9 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeInfoList.json @@ -1,152 +1,152 @@ { - "operationId":"GetNodeInfoList", - "description":"This example shows how to get information about all the nodes in the cluster when the information fits in a single response message without the need for paging through ContinuationToken parameter.", - "parameters":{ - "api-version":"6.3" - }, - "responses":{ - "200":{ - "headers":{}, - "body":{ - "ContinuationToken":"", - "Items":[ - { - "Name":"_Node_1", - "IpAddressOrFQDN":"10.0.0.5", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"15275", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"1", - "FaultDomain":"fd:/1", - "Id":{ - "Id":"ebd986a1134b3643a8117fb41b259bf" - }, - "InstanceId":"131738274982501335", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T20:31:39.842Z", - "NodeDownAt":"2018-06-18T20:31:37.374Z" - }, - { - "Name":"_Node_0", - "IpAddressOrFQDN":"10.0.0.4", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"18742", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"0", - "FaultDomain":"fd:/0", - "Id":{ - "Id":"2acb9f55540659b1c95f27cc128ab326" - }, - "InstanceId":"131738240209152398", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T19:33:52.944Z", - "NodeDownAt":"2018-06-18T19:33:39.514Z" - }, - { - "Name":"_Node_4", - "IpAddressOrFQDN":"10.0.0.8", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"101168", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"4", - "FaultDomain":"fd:/4", - "Id":{ - "Id":"ba9383d728221add7fa996bf67b757fb" - }, - "InstanceId":"131737415865259763", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-17T20:40:07.378Z", - "NodeDownAt":"2018-06-17T20:33:11.877Z" - }, - { - "Name":"_Node_3", - "IpAddressOrFQDN":"10.0.0.7", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"15236", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"3", - "FaultDomain":"fd:/3", - "Id":{ - "Id":"d6a18a0935a3e39aeae2a049eb97255d" - }, - "InstanceId":"131738275300526952", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T20:32:18.884Z", - "NodeDownAt":"2018-06-18T20:31:59.128Z" - }, - { - "Name":"_Node_2", - "IpAddressOrFQDN":"10.0.0.6", - "Type":"testnode", - "CodeVersion":"6.3.139.9494", - "ConfigVersion":"5", - "NodeStatus":"Up", - "NodeUpTimeInSeconds":"19440", - "HealthState":"Ok", - "IsSeedNode":true, - "UpgradeDomain":"2", - "FaultDomain":"fd:/2", - "Id":{ - "Id":"f2af91e5e9c8254dedb75b1424a9e3fc" - }, - "InstanceId":"131738233282843485", - "NodeDeactivationInfo":{ - "NodeDeactivationIntent":"Invalid", - "NodeDeactivationStatus":"None", - "NodeDeactivationTask":[], - "PendingSafetyChecks":[] - }, - "IsStopped":false, - "NodeDownTimeInSeconds":"0", - "NodeUpAt":"2018-06-18T19:22:15.272Z", - "NodeDownAt":"2018-06-18T19:22:02.740Z" - } - ] - } + "operationId": "GetNodeInfoList", + "description": "This example shows how to get information about all the nodes in the cluster when the information fits in a single response message without the need for paging through ContinuationToken parameter.", + "parameters": { + "api-version": "6.3" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "ContinuationToken": "", + "Items": [ + { + "Name": "_Node_1", + "IpAddressOrFQDN": "10.0.0.5", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "15275", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "1", + "FaultDomain": "fd:/1", + "Id": { + "Id": "ebd986a1134b3643a8117fb41b259bf" + }, + "InstanceId": "131738274982501335", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T20:31:39.842Z", + "NodeDownAt": "2018-06-18T20:31:37.374Z" + }, + { + "Name": "_Node_0", + "IpAddressOrFQDN": "10.0.0.4", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "18742", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "0", + "FaultDomain": "fd:/0", + "Id": { + "Id": "2acb9f55540659b1c95f27cc128ab326" + }, + "InstanceId": "131738240209152398", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T19:33:52.944Z", + "NodeDownAt": "2018-06-18T19:33:39.514Z" + }, + { + "Name": "_Node_4", + "IpAddressOrFQDN": "10.0.0.8", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "101168", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "4", + "FaultDomain": "fd:/4", + "Id": { + "Id": "ba9383d728221add7fa996bf67b757fb" + }, + "InstanceId": "131737415865259763", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-17T20:40:07.378Z", + "NodeDownAt": "2018-06-17T20:33:11.877Z" + }, + { + "Name": "_Node_3", + "IpAddressOrFQDN": "10.0.0.7", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "15236", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "3", + "FaultDomain": "fd:/3", + "Id": { + "Id": "d6a18a0935a3e39aeae2a049eb97255d" + }, + "InstanceId": "131738275300526952", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T20:32:18.884Z", + "NodeDownAt": "2018-06-18T20:31:59.128Z" + }, + { + "Name": "_Node_2", + "IpAddressOrFQDN": "10.0.0.6", + "Type": "testnode", + "CodeVersion": "6.3.139.9494", + "ConfigVersion": "5", + "NodeStatus": "Up", + "NodeUpTimeInSeconds": "19440", + "HealthState": "Ok", + "IsSeedNode": true, + "UpgradeDomain": "2", + "FaultDomain": "fd:/2", + "Id": { + "Id": "f2af91e5e9c8254dedb75b1424a9e3fc" + }, + "InstanceId": "131738233282843485", + "NodeDeactivationInfo": { + "NodeDeactivationIntent": "Invalid", + "NodeDeactivationStatus": "None", + "NodeDeactivationTask": [], + "PendingSafetyChecks": [] + }, + "IsStopped": false, + "NodeDownTimeInSeconds": "0", + "NodeUpAt": "2018-06-18T19:22:15.272Z", + "NodeDownAt": "2018-06-18T19:22:02.740Z" + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeTransitionProgress-Running.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeTransitionProgress-Running.json index 64d4642700ea..62ad5c37ec58 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeTransitionProgress-Running.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeTransitionProgress-Running.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Running" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeTransitionProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeTransitionProgress.json index 5ee8818ce76a..474ab826b8df 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeTransitionProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodeTransitionProgress.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "NodeTransitionResult": { @@ -22,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodesEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodesEventList.json index 3445e66b19e1..7aed70b97f31 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodesEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetNodesEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "NodeOpenSucceeded", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupConfigurationInfo.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupConfigurationInfo.json index 4ba53f251e26..dd97740de85f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupConfigurationInfo.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupConfigurationInfo.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Kind": "Partition", "PolicyName": "BackupPolicy2", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-1.json index 84881cf2c134..2c5fb63a2bc3 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-1.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-2.json index af84f7ccced2..cc627b382457 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-3.json index 7958dd62abdb..2cddad80321f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-3.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-4.json index 59d6333c7abd..c73aaece09c8 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupList-4.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupProgress.json index f51653dcd2f7..9d0df23312a6 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionBackupProgress.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "BackupState": "Success", "TimeStampUtc": "2018-01-01T09:00:55Z", @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionEventList.json index dd72d489d8e5..bbfca06712e9 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "PartitionReconfigured", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionRestartProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionRestartProgress.json index 4453caa242d6..074289b470a2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionRestartProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionRestartProgress.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "RestartPartitionResult": { @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionRestoreProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionRestoreProgress.json index 4d15204cfe9c..da52d1a100b9 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionRestoreProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionRestoreProgress.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "RestoreState": "Success", "TimeStampUtc": "2018-01-01T09:00:55Z", @@ -21,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionsEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionsEventList.json index 4e515bf4e57f..e49c5e402b00 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionsEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPartitionsEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "PartitionReconfigured", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfo-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfo-1.json index fd0e63e316bf..ca5def4be2fb 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfo-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfo-1.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Name": "CalculatorAppData", "Value": { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-1.json index 9d4f74b46e80..5729c6a4e4a2 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-1.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "PersistentQueueAppData$131439231986491349", "IsConsistent": true, @@ -36,7 +35,6 @@ } } ] - } } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-2.json index 405aeca605ff..6a172f23f09a 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "PersistentQueueAppData$131439231986491349", "IsConsistent": true, @@ -33,7 +32,13 @@ "Name": "PersistentQueueAppData", "Value": { "Kind": "Binary", - "Data": [6, 7, 8, 9, 10] + "Data": [ + 6, + 7, + 8, + 9, + 10 + ] }, "Metadata": { "TypeId": "Binary", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-3.json index 51a4fcb919b4..ce12465b6ce6 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetPropertyInfoList-3.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetQuorumLossProgress-Running.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetQuorumLossProgress-Running.json index 059c51840fc9..203fb157db03 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetQuorumLossProgress-Running.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetQuorumLossProgress-Running.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Running" } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetQuorumLossProgress.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetQuorumLossProgress.json index 3e848d89bc8d..c86fd0d2b31d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetQuorumLossProgress.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetQuorumLossProgress.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "State": "Completed", "InvokeQuorumLossResult": { @@ -23,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetReplicaEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetReplicaEventList.json index 9f292eb30588..a3b517117bac 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetReplicaEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetReplicaEventList.json @@ -10,8 +10,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "StatefulReplicaNewHealthReport", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetReplicasEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetReplicasEventList.json index 9ec7e03e34ee..1d2e9212dfcc 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetReplicasEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetReplicasEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "StatefulReplicaNewHealthReport", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupConfigurationInfo-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupConfigurationInfo-1.json index 974a8131aef9..ab37c65b803f 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupConfigurationInfo-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupConfigurationInfo-1.json @@ -8,11 +8,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d", - "Items": [ + "Items": [ { "Kind": "Service", "PolicyName": "BackupPolicy1", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupConfigurationInfo-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupConfigurationInfo-2.json index 28c3db9277d0..76e7e948550d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupConfigurationInfo-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupConfigurationInfo-2.json @@ -9,11 +9,10 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", - "Items": [ + "Items": [ { "Kind": "Partition", "PolicyName": "BackupPolicy1", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-1.json index 6959a0cd07b8..b561b1b20f84 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-1.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-2.json index 375b4e105cab..df570db76649 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-3.json index 558040128c8f..5b162231a889 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-3.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "fabric:/CalcApp/CalcService#1daae3f5-7fd6-42e9-b1ba-8c05f873994d#7903dc2a-228d-44b0-b7c8-a13a6c9b46bd", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-4.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-4.json index e756ddb87b80..7420d61aca49 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-4.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceBackupList-4.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "Items": [ diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceEventList.json index b38adb0693d1..fdaa115873cd 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServiceEventList.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ServiceCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServicesEventList.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServicesEventList.json index 0b7046bc888e..2d5863180a5a 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServicesEventList.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetServicesEventList.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": [ { "Kind": "ServiceCreated", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-1.json index 3d315a557a9f..282319140d86 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-1.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-2.json index 6dbd9309980a..15391854f370 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-2.json @@ -8,8 +8,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-3.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-3.json index 3265fc8a3c13..bf07c9c58bc4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-3.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetSubNameInfoList-3.json @@ -9,8 +9,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "ContinuationToken": "", "IsConsistent": true, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetUploadSessionById.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetUploadSessionById.json index 21ce39b90dd9..c565a13cfcbc 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetUploadSessionById.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetUploadSessionById.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "UploadSessions": [ { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetUploadSessionByPath.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetUploadSessionByPath.json index 82743551c7cb..8dc66b6d107d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetUploadSessionByPath.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/GetUploadSessionByPath.json @@ -7,8 +7,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "UploadSessions": [ { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/InvokeContainerApi.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/InvokeContainerApi.json index cdaf407acf69..bfe285758eec 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/InvokeContainerApi.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/InvokeContainerApi.json @@ -1,27 +1,27 @@ { - "operationId": "InvokeContainerApi", - "description": "This example shows how to call container API with HTTP GET for a code package deployed on a node.", - "parameters": { - "api-version": "6.2", - "nodeName": "Node01", - "applicationId": "samples/winnodejs", - "ServiceManifestName": "NodeServicePackage", - "CodePackageName": "NodeService.Code", - "CodePackageInstanceId": "131668159770315380", - "ContainerApiRequestBody": { - "UriPath": "/containers/{id}/logs?stdout=true&stderr=true" - } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "ContainerApiResult": { - "Status": 200, - "Content-Type": "text/plain; charset=utf-8", - "Body": "vEthernet (Container NIC ec5c19b2) 172.17.201.44\n" - } - } + "operationId": "InvokeContainerApi", + "description": "This example shows how to call container API with HTTP GET for a code package deployed on a node.", + "parameters": { + "api-version": "6.2", + "nodeName": "Node01", + "applicationId": "samples/winnodejs", + "ServiceManifestName": "NodeServicePackage", + "CodePackageName": "NodeService.Code", + "CodePackageInstanceId": "131668159770315380", + "ContainerApiRequestBody": { + "UriPath": "/containers/{id}/logs?stdout=true&stderr=true" + } + }, + "responses": { + "200": { + "headers": {}, + "body": { + "ContainerApiResult": { + "Status": 200, + "Content-Type": "text/plain; charset=utf-8", + "Body": "vEthernet (Container NIC ec5c19b2) 172.17.201.44\n" } + } } -} \ No newline at end of file + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/InvokeContainerApi_Post.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/InvokeContainerApi_Post.json index 1af58111eb46..0042fd341de0 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/InvokeContainerApi_Post.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/InvokeContainerApi_Post.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/PutProperty-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/PutProperty-1.json index f2e3d3252d09..8eee209e7c7b 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/PutProperty-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/PutProperty-1.json @@ -8,12 +8,18 @@ "PropertyName": "AppData", "Value": { "Kind": "Binary", - "Data": [0, 1, 2, 3, 4, 5] + "Data": [ + 0, + 1, + 2, + 3, + 4, + 5 + ] } } }, "responses": { - "200": { - } + "200": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/PutProperty-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/PutProperty-2.json index 85713723d090..5db6a9ad77f7 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/PutProperty-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/PutProperty-2.json @@ -14,7 +14,6 @@ } }, "responses": { - "200": { - } + "200": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/Replicas/get.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/Replicas/get.json index 312e3792ca45..bb373e90c328 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/Replicas/get.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/Replicas/get.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/Replicas/list.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/Replicas/list.json index 6d965820ecec..1fe9b30fb836 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/Replicas/list.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/Replicas/list.json @@ -102,4 +102,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/get.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/get.json index f75d8fe37ce6..45224d3a66f8 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/get.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/get.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/list.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/list.json index b819af670bf6..3df5e396c764 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/list.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/Services/list.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/create_update.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/create_update.json index 0f9fcd229229..576e23b9b8f8 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/create_update.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/create_update.json @@ -78,4 +78,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/delete.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/delete.json index a548ef13b131..b51511b0865d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/delete.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/delete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/get.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/get.json index b9829b2b3cfb..09c0d7e15897 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/get.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/get.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/list.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/list.json index 7266fa64a8e9..77e1b1852a9b 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/list.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Applications/list.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Gateways/create_update.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Gateways/create_update.json index 70174652dcf6..2ded194ec7cc 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Gateways/create_update.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Gateways/create_update.json @@ -5,7 +5,7 @@ "api-version": "6.4-preview", "gatewayResourceName": "sampleGateway", "gatewayResourceDescription": { - "name": "sampleGateway", + "name": "sampleGateway", "properties": { "description": "Service Fabric Mesh sample gateway.", "sourceNetwork": { @@ -184,7 +184,7 @@ } ], "status": "Creating", - "ipAddress": "" + "ipAddress": "" } } }, diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Gateways/delete.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Gateways/delete.json index 4970189b8334..63ed69926752 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Gateways/delete.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Gateways/delete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/create_update.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/create_update.json index 5d3c5fa5fd4a..faf2a3960b48 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/create_update.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/create_update.json @@ -38,4 +38,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/delete.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/delete.json index 279ef9c5e465..aea2170b7316 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/delete.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/delete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/get.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/get.json index 1e6810b720f7..1afaee298e7d 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/get.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/get.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/list.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/list.json index 17f1be739309..6cf521d8582c 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/list.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Networks/list.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/list.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/list.json index 3ea55d35b2b9..b46d7f8ff341 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/list.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/list.json @@ -16,7 +16,7 @@ "kind": "inlinedValue", "contentType": "text/plain", "description": "Mongo DB connection string for backend database!", - "status": "Ready" + "status": "Ready" } }, { diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/create.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/create.json index fdc732de74b1..8cd0824452fd 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/create.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/create.json @@ -29,8 +29,6 @@ } } }, - "202": { - } + "202": {} } } - diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/delete.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/delete.json index 19d0b8e234ac..ad4b3ef9540b 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/delete.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/delete.json @@ -1,6 +1,6 @@ { "operationId": "MeshSecretValue_Delete", - "description":"This example shows how to delete a secret value. If the specified named value exists and is deleted successfully, an empty response with 200 status code is returned. If the specified named value does not exist, an empty response with 204 status code is returned.", + "description": "This example shows how to delete a secret value. If the specified named value exists and is deleted successfully, an empty response with 200 status code is returned. If the specified named value does not exist, an empty response with 204 status code is returned.", "parameters": { "api-version": "6.4-preview", "secretResourceName": "dbConnectionString", @@ -12,4 +12,3 @@ "204": {} } } - diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/get.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/get.json index cf221a2399db..a6491634ef44 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/get.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Secrets/values/get.json @@ -1,6 +1,6 @@ { "operationId": "MeshSecretValue_Get", - "description":"This example shows how to get the specified secret value resource. If the specified named value exists, its information is returned along with status code 200. The information does not include the value. To get the unecnrypted value use ListMeshSecretValue operation. If the specified named value does not exist, an error is returned with an appropriate status code.", + "description": "This example shows how to get the specified secret value resource. If the specified named value exists, its information is returned along with status code 200. The information does not include the value. To get the unecnrypted value use ListMeshSecretValue operation. If the specified named value does not exist, an error is returned with an appropriate status code.", "parameters": { "api-version": "6.4-preview", "secretResourceName": "dbConnectionString", @@ -11,10 +11,9 @@ "body": { "name": "v1", "properties": { - "value": null + "value": null } } } } } - diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/create_update.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/create_update.json index 38f7e21cfe2f..a8dabbef9064 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/create_update.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/create_update.json @@ -49,4 +49,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/delete.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/delete.json index cbe91046c7d2..efaa1f836ae1 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/delete.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/delete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/get.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/get.json index a14338981ff6..9d08f3b00a82 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/get.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/get.json @@ -16,7 +16,7 @@ "accountName": "sbzdemoaccount", "accountKey": null, "shareName": "sharel" - }, + }, "status": "Ready" } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/list.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/list.json index d780c41fe274..3bf83798904b 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/list.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/Resources/Volumes/list.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/RestorePartition.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/RestorePartition.json index 75eb2f15bbdc..1e97e0557113 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/RestorePartition.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/RestorePartition.json @@ -15,7 +15,6 @@ } }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumeApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumeApplicationBackup.json index 9bd11e91b899..b25a7ac545ec 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumeApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumeApplicationBackup.json @@ -6,7 +6,6 @@ "applicationId": "CalcApp" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumePartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumePartitionBackup.json index 50bfbdff95f4..feb701118438 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumePartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumePartitionBackup.json @@ -6,7 +6,6 @@ "partitionId": "1daae3f5-7fd6-42e9-b1ba-8c05f873994d" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumeServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumeServiceBackup.json index daa0878df285..9037dfa23d9e 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumeServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/ResumeServiceBackup.json @@ -6,7 +6,6 @@ "serviceId": "CalcApp/CalcService" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/StartClusterConfigurationUpgrade-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/StartClusterConfigurationUpgrade-1.json index bbb6034fc8e4..2f8fd59a474e 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/StartClusterConfigurationUpgrade-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/StartClusterConfigurationUpgrade-1.json @@ -32,11 +32,9 @@ } ] } - } }, "responses": { - "202": { - } + "202": {} } } diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SubmitPropertyBatch-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SubmitPropertyBatch-1.json index af100a680c95..da4ac83317d4 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SubmitPropertyBatch-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SubmitPropertyBatch-1.json @@ -21,7 +21,13 @@ "PropertyName": "PersistentQueueAppData", "Value": { "Kind": "Binary", - "Data": [1, 2, 3, 4, 5] + "Data": [ + 1, + 2, + 3, + 4, + 5 + ] }, "CustomTypeId": "InitializationData" }, @@ -35,8 +41,7 @@ }, "responses": { "200": { - "headers": { - }, + "headers": {}, "body": { "Kind": "Successful", "Properties": { @@ -55,8 +60,7 @@ } }, "409": { - "headers": { - }, + "headers": {}, "body": { "Kind": "Failed", "ErrorMessage": "FABRIC_E_PROPERTY_CHECK_FAILED", diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendApplicationBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendApplicationBackup.json index 271b8ab320ef..75bdad71a95e 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendApplicationBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendApplicationBackup.json @@ -6,7 +6,6 @@ "applicationId": "CalcApp" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendPartitionBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendPartitionBackup.json index 817ec8ff3960..b14619dd6fe8 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendPartitionBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendPartitionBackup.json @@ -6,7 +6,6 @@ "partitionId": "1daae3f5-7fd6-42e9-b1ba-8c05f873994d" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendServiceBackup.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendServiceBackup.json index b4df0c95acac..14d0575c509e 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendServiceBackup.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/SuspendServiceBackup.json @@ -6,7 +6,6 @@ "serviceId": "CalcApp/CalcService" }, "responses": { - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateBackupPolicy.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateBackupPolicy.json index febfc611cfba..3129817ddb68 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateBackupPolicy.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateBackupPolicy.json @@ -24,13 +24,12 @@ }, "RetentionPolicy": { "RetentionPolicyType": "Basic", - "MinimumNumberOfBackups": 60, + "MinimumNumberOfBackups": 60, "RetentionDuration": "P30D" } - } + } }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateService-1.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateService-1.json index 3a748e8e3e20..6d14c7ebe614 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateService-1.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateService-1.json @@ -1,34 +1,34 @@ { - "operationId": "UpdateService", - "description": "This example shows how to update placement and load balancing related settings of a stateless Service Fabric service.", - "parameters": { - "serviceId": "test~test1", - "api-version": "6.0", - "ServiceUpdateDescription": { - "ServiceKind": "Stateless", - "Flags": "1568", - "PlacementConstraints": "Color==Red", - "DefaultMoveCost": "High", - "ScalingPolicies": [ - { - "ScalingTrigger": { - "Kind": "AveragePartitionLoad", - "MetricName": "servicefabric:\/_CpuCores", - "LowerLoadThreshold": 0.500000, - "UpperLoadThreshold": 0.800000, - "ScaleIntervalInSeconds": 900 - }, - "ScalingMechanism": { - "Kind": "PartitionInstanceCount", - "MinInstanceCount": 4, - "MaxInstanceCount": 6, - "ScaleIncrement": 2 - } - } - ] + "operationId": "UpdateService", + "description": "This example shows how to update placement and load balancing related settings of a stateless Service Fabric service.", + "parameters": { + "serviceId": "test~test1", + "api-version": "6.0", + "ServiceUpdateDescription": { + "ServiceKind": "Stateless", + "Flags": "1568", + "PlacementConstraints": "Color==Red", + "DefaultMoveCost": "High", + "ScalingPolicies": [ + { + "ScalingTrigger": { + "Kind": "AveragePartitionLoad", + "MetricName": "servicefabric:\/_CpuCores", + "LowerLoadThreshold": 0.500000, + "UpperLoadThreshold": 0.800000, + "ScaleIntervalInSeconds": 900 + }, + "ScalingMechanism": { + "Kind": "PartitionInstanceCount", + "MinInstanceCount": 4, + "MaxInstanceCount": 6, + "ScaleIncrement": 2 + } } - }, - "responses": { - "200": {} + ] } -} \ No newline at end of file + }, + "responses": { + "200": {} + } +} diff --git a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateService-2.json b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateService-2.json index 4329ddddf400..cdb1368dbdd6 100644 --- a/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateService-2.json +++ b/specification/servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.4/examples/UpdateService-2.json @@ -1,17 +1,17 @@ { - "operationId": "UpdateService", - "description": "This example shows how to update placement and load balancing related settings of a stateful Service Fabric service.", - "parameters": { - "serviceId": "test~test2", - "api-version": "6.0", - "ServiceUpdateDescription": { - "ServiceKind": "Stateful", - "Flags": "40", - "PlacementConstraints": "Color==Green", - "StandByReplicaKeepDurationSeconds": "1000" - } - }, - "responses": { - "200": {} + "operationId": "UpdateService", + "description": "This example shows how to update placement and load balancing related settings of a stateful Service Fabric service.", + "parameters": { + "serviceId": "test~test2", + "api-version": "6.0", + "ServiceUpdateDescription": { + "ServiceKind": "Stateful", + "Flags": "40", + "PlacementConstraints": "Color==Green", + "StandByReplicaKeepDurationSeconds": "1000" } -} \ No newline at end of file + }, + "responses": { + "200": {} + } +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/application.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/application.json index 30690491c9e2..858df34b1508 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/application.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/application.json @@ -2138,4 +2138,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/servicefabric.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/servicefabric.json index 3e8c042e4309..9e2d6e28af4e 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/servicefabric.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/servicefabric.json @@ -2254,4 +2254,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/application.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/application.json index bde45d8c7bd2..d2d8c769a12e 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/application.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/application.json @@ -2196,4 +2196,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/cluster.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/cluster.json index 881f3e53fab2..e674cfcc9652 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/cluster.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/cluster.json @@ -1531,4 +1531,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/examples/ClusterPutOperation_example_max.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/examples/ClusterPutOperation_example_max.json index f360edb30a13..c44bb8c331f9 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/examples/ClusterPutOperation_example_max.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2019-03-01-preview/examples/ClusterPutOperation_example_max.json @@ -448,4 +448,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterDeleteOperation_example.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterDeleteOperation_example.json index 43b4e50c4489..2275f5070f8d 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterDeleteOperation_example.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterDeleteOperation_example.json @@ -7,6 +7,6 @@ }, "responses": { "200": {}, - "204":{} + "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterGetOperation_example.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterGetOperation_example.json index 8dec6391d607..a27c8d9eec22 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterGetOperation_example.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterGetOperation_example.json @@ -164,4 +164,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterListByResourceGroupOperation_exmaple.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterListByResourceGroupOperation_exmaple.json index 479f2e87b2ca..e1e369001876 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterListByResourceGroupOperation_exmaple.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterListByResourceGroupOperation_exmaple.json @@ -117,4 +117,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterListOperation_example.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterListOperation_example.json index c1dcfbad779a..6a2a5b096e7c 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterListOperation_example.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterListOperation_example.json @@ -241,4 +241,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPatchOperation_exmaple.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPatchOperation_exmaple.json index 428c84350920..cb5974e0161e 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPatchOperation_exmaple.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPatchOperation_exmaple.json @@ -29,7 +29,7 @@ } }, "responses": { - "202":{}, + "202": {}, "200": { "headers": {}, "body": { @@ -117,4 +117,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPutOperation_exmaple_max.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPutOperation_exmaple_max.json index 66e218bc6f1a..d96cb06897b5 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPutOperation_exmaple_max.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPutOperation_exmaple_max.json @@ -268,4 +268,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPutOperation_exmaple_min.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPutOperation_exmaple_min.json index f497e005e9a9..f276e5ac1531 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPutOperation_exmaple_min.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterPutOperation_exmaple_min.json @@ -46,7 +46,7 @@ } }, "responses": { - "202":{}, + "202": {}, "200": { "headers": {}, "body": { @@ -195,4 +195,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsGet_example.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsGet_example.json index c627e2e657fc..2844084881d8 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsGet_example.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsGet_example.json @@ -10,13 +10,13 @@ "200": { "headers": {}, "body": { - "id": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/environments/Windows/clusterVersions/5.6.210.9494", - "name": "5.6.210.9494", - "type": "Microsoft.ServiceFabric/locations/environments/clusterVersions", - "properties": { - "codeVersion": "5.6.210.9494", - "supportExpiryUtc": "9999-12-31T23:59:59.9999999", - "environment": "Windows" + "id": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/environments/Windows/clusterVersions/5.6.210.9494", + "name": "5.6.210.9494", + "type": "Microsoft.ServiceFabric/locations/environments/clusterVersions", + "properties": { + "codeVersion": "5.6.210.9494", + "supportExpiryUtc": "9999-12-31T23:59:59.9999999", + "environment": "Windows" } } } diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsListByEnvironment_example.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsListByEnvironment_example.json index 3071a9975a0e..478a87b58694 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsListByEnvironment_example.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsListByEnvironment_example.json @@ -94,4 +94,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsListByVersion_example.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsListByVersion_example.json index c37fa62c35d9..da41071dade5 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsListByVersion_example.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsListByVersion_example.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsList_example.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsList_example.json index ffa714bef00d..474656856650 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsList_example.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2016-09-01/examples/ClusterVersionsList_example.json @@ -143,4 +143,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2018-02-01/cluster.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2018-02-01/cluster.json index 5d0db11d74cc..e2738f9a1fd3 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2018-02-01/cluster.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2018-02-01/cluster.json @@ -1518,4 +1518,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2018-02-01/examples/ClusterPutOperation_example_max.json b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2018-02-01/examples/ClusterPutOperation_example_max.json index dfef2314dceb..6d9a22da548f 100644 --- a/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2018-02-01/examples/ClusterPutOperation_example_max.json +++ b/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/stable/2018-02-01/examples/ClusterPutOperation_example_max.json @@ -443,4 +443,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationCreateOrUpdate.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationCreateOrUpdate.json index 3e33d3bf56f1..02701a496177 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationCreateOrUpdate.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationCreateOrUpdate.json @@ -1,83 +1,83 @@ { - "operationId":"Application_Create", - "description":"This example shows how to create or update an application resource.", + "operationId": "Application_Create", + "description": "This example shows how to create or update an application resource.", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview", - "applicationName": "helloWorldApp", - "applicationResourceDescription": { - "properties": { - "description": "SeaBreeze HelloWorld Application!", - "services": [ - { - "properties": { - "osType": "linux", - "codePackages": [ - { - "name": "helloWorldCode", - "image": "seabreeze/sbz-helloworld:1.0-alpine", - "endpoints": [ - { - "name": "helloWorldListener", - "port": 80 - } - ], - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 - } + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview", + "applicationName": "helloWorldApp", + "applicationResourceDescription": { + "properties": { + "description": "SeaBreeze HelloWorld Application!", + "services": [ + { + "properties": { + "osType": "linux", + "codePackages": [ + { + "name": "helloWorldCode", + "image": "seabreeze/sbz-helloworld:1.0-alpine", + "endpoints": [ + { + "name": "helloWorldListener", + "port": 80 + } + ], + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 } } - ], - "description": "SeaBreeze Hello World Service.", - "replicaCount": 1 - }, - "name": "helloWorldService" - } - ] - }, + } + ], + "description": "SeaBreeze Hello World Service.", + "replicaCount": 1 + }, + "name": "helloWorldService" + } + ] + }, + "tags": {}, + "location": "EastUS" + } + }, + "responses": { + "201": { + "body": { + "type": "Microsoft.ServiceFabricMesh/applications", + "location": "EastUS", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/myHelloWorldApp", + "name": "myHelloWorldApp", "tags": {}, - "location": "EastUS" + "properties": { + "provisioningState": "Updating", + "description": "SeaBreeze HelloWorld Application!", + "healthState": "Ok", + "serviceNames": [ + "helloWorldService" + ], + "status": "Invalid" + } } }, - "responses": { - "201": { - "body": { - "type": "Microsoft.ServiceFabricMesh/applications", - "location": "EastUS", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/myHelloWorldApp", - "name": "myHelloWorldApp", - "tags": {}, - "properties": { - "provisioningState": "Updating", - "description": "SeaBreeze HelloWorld Application!", - "healthState": "Ok", - "serviceNames": [ - "helloWorldService" - ], - "status": "Invalid" - } - } - }, - "200": { - "body": { - "type": "Microsoft.ServiceFabricMesh/applications", - "location": "EastUS", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/myHelloWorldApp", - "name": "myHelloWorldApp", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "description": "SeaBreeze HelloWorld Application!", - "healthState": "Ok", - "serviceNames": [ - "helloWorldService" - ], - "status": "Invalid" - } + "200": { + "body": { + "type": "Microsoft.ServiceFabricMesh/applications", + "location": "EastUS", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/myHelloWorldApp", + "name": "myHelloWorldApp", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "description": "SeaBreeze HelloWorld Application!", + "healthState": "Ok", + "serviceNames": [ + "helloWorldService" + ], + "status": "Invalid" } } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationDelete.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationDelete.json index 70d385aabeb3..0d6ce83139b0 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationDelete.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationDelete.json @@ -1,16 +1,14 @@ { - "operationId":"Application_Delete", - "description":"This example shows how to delete an existing application resource. If the application resource exists and is deleted successfully, an empty response with 200 status code is returned. If the application resource does not exit, an empty response with 204 status code is returned.", + "operationId": "Application_Delete", + "description": "This example shows how to delete an existing application resource. If the application resource exists and is deleted successfully, an empty response with 200 status code is returned. If the application resource does not exit, an empty response with 204 status code is returned.", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-07-01-preview", - "resourceGroupName": "sbz_demo", - "applicationName": "helloWorldAppWindows" - }, - "responses": { - "200": {}, - "204": {} - } + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-07-01-preview", + "resourceGroupName": "sbz_demo", + "applicationName": "helloWorldAppWindows" + }, + "responses": { + "200": {}, + "204": {} } - - +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationGet.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationGet.json index e7cb3ca44884..337355651753 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationGet.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationGet.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview", - "applicationName": "demo1" - }, - "responses": { - "200": { - "body": { - "type": "Microsoft.ServiceFabricMesh/applications", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldAppWindows", - "name": "helloWorldAppWindows", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "description": "SeaBreeze HelloWorld Application!", - "healthState": "Ok", - "serviceNames": [ - "helloWorldService" - ], - "status": "Ready" - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview", + "applicationName": "demo1" + }, + "responses": { + "200": { + "body": { + "type": "Microsoft.ServiceFabricMesh/applications", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldAppWindows", + "name": "helloWorldAppWindows", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "description": "SeaBreeze HelloWorld Application!", + "healthState": "Ok", + "serviceNames": [ + "helloWorldService" + ], + "status": "Ready" } } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationsByResourceGroup.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationsByResourceGroup.json index 77fad4690360..1816a7b46720 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationsByResourceGroup.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationsByResourceGroup.json @@ -1,47 +1,47 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "type": "Microsoft.ServiceFabricMesh/applications", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldApp", - "name": "helloWorldApp", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "description": "SeaBreeze HelloWorld Application!", - "healthState": "Ok", - "serviceNames": [ - "helloWorldService" - ], - "status": "Ready" - } - }, - { - "type": "Microsoft.ServiceFabricMesh/applications", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldAppWindows", - "name": "helloWorldAppWindows", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "description": "SeaBreeze HelloWorld Application!", - "healthState": "Ok", - "serviceNames": [ - "helloWorldService" - ], - "status": "Ready" - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "type": "Microsoft.ServiceFabricMesh/applications", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldApp", + "name": "helloWorldApp", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "description": "SeaBreeze HelloWorld Application!", + "healthState": "Ok", + "serviceNames": [ + "helloWorldService" + ], + "status": "Ready" } - ] - } + }, + { + "type": "Microsoft.ServiceFabricMesh/applications", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldAppWindows", + "name": "helloWorldAppWindows", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "description": "SeaBreeze HelloWorld Application!", + "healthState": "Ok", + "serviceNames": [ + "helloWorldService" + ], + "status": "Ready" + } + } + ] } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationsBySubscriptionId.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationsBySubscriptionId.json index 1a8dc2267ca6..305b958374b4 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationsBySubscriptionId.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ApplicationsBySubscriptionId.json @@ -172,4 +172,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkCreateOrUpdate.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkCreateOrUpdate.json index 6fb26b519568..5a36717d4843 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkCreateOrUpdate.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkCreateOrUpdate.json @@ -1,76 +1,76 @@ { - "operationId": "Network_Create", - "description": "This example shows how to create a network resource with custom address range and a load balanced public endpoint.", - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview", - "networkName": "helloWorldNetworkWindows", - "networkResourceDescription": { + "operationId": "Network_Create", + "description": "This example shows how to create a network resource with custom address range and a load balanced public endpoint.", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview", + "networkName": "helloWorldNetworkWindows", + "networkResourceDescription": { + "properties": { + "addressPrefix": "10.0.0.4/22", + "ingressConfig": { + "layer4": [ + { + "publicPort": "80", + "applicationName": "helloWorldAppWindows", + "serviceName": "helloWorldService", + "endpointName": "helloWorldListener" + } + ] + } + }, + "location": "eastus" + } + }, + "responses": { + "200": { + "body": { + "type": "Microsoft.ServiceFabricMesh/networks", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows", + "name": "helloWorldNetworkWindows", + "tags": {}, "properties": { + "provisioningState": "Succeeded", "addressPrefix": "10.0.0.4/22", "ingressConfig": { + "qosLevel": "Bronze", "layer4": [ { - "publicPort": "80", + "publicPort": 80, "applicationName": "helloWorldAppWindows", "serviceName": "helloWorldService", "endpointName": "helloWorldListener" } ] } - }, - "location": "eastus" + } } }, - "responses": { - "200": { - "body": { - "type": "Microsoft.ServiceFabricMesh/networks", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows", - "name": "helloWorldNetworkWindows", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.4/22", - "ingressConfig": { - "qosLevel": "Bronze", - "layer4": [ - { - "publicPort": 80, - "applicationName": "helloWorldAppWindows", - "serviceName": "helloWorldService", - "endpointName": "helloWorldListener" - } - ] - } - } - } - }, - "201": { - "body": { - "type": "Microsoft.ServiceFabricMesh/networks", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows", - "name": "helloWorldNetworkWindows", - "tags": {}, - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.4/22", - "ingressConfig": { - "qosLevel": "Bronze", - "layer4": [ - { - "publicPort": 80, - "applicationName": "helloWorldAppWindows", - "serviceName": "helloWorldService", - "endpointName": "helloWorldListener" - } - ] - } + "201": { + "body": { + "type": "Microsoft.ServiceFabricMesh/networks", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows", + "name": "helloWorldNetworkWindows", + "tags": {}, + "properties": { + "provisioningState": "Updating", + "addressPrefix": "10.0.0.4/22", + "ingressConfig": { + "qosLevel": "Bronze", + "layer4": [ + { + "publicPort": 80, + "applicationName": "helloWorldAppWindows", + "serviceName": "helloWorldService", + "endpointName": "helloWorldListener" + } + ] } } } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkDelete.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkDelete.json index f76cb79ee602..7c6075d329ee 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkDelete.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkDelete.json @@ -1,14 +1,14 @@ { - "operationId":"Network_Delete", - "description":"This example shows how to delete an existing network resource. If the network resource exists and is deleted successfully, an empty response with 200 status code is returned. If the network resource does not exit, an empty response with 204 status code is returned.", - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-07-01-preview", - "resourceGroupName": "sbz_demo", - "networkName": "helloWorldNetworkWindows" - }, - "responses": { - "200": {}, - "204": {} - } + "operationId": "Network_Delete", + "description": "This example shows how to delete an existing network resource. If the network resource exists and is deleted successfully, an empty response with 200 status code is returned. If the network resource does not exit, an empty response with 204 status code is returned.", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-07-01-preview", + "resourceGroupName": "sbz_demo", + "networkName": "helloWorldNetworkWindows" + }, + "responses": { + "200": {}, + "204": {} + } } diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkGet.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkGet.json index bc6ed0061f86..f6426af526ab 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkGet.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworkGet.json @@ -1,35 +1,35 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview", - "networkName": "helloWorldNetworkWindows" - }, - "responses": { - "200": { - "body": { - "type": "Microsoft.ServiceFabricMesh/networks", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows", - "name": "helloWorldNetworkWindows", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.4/22", - "ingressConfig": { - "qosLevel": "Bronze", - "publicIPAddress": "52.191.255.103", - "layer4": [ - { - "publicPort": 80, - "applicationName": "helloWorldAppWindows", - "serviceName": "helloWorldService", - "endpointName": "helloWorldListener" - } - ] - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview", + "networkName": "helloWorldNetworkWindows" + }, + "responses": { + "200": { + "body": { + "type": "Microsoft.ServiceFabricMesh/networks", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows", + "name": "helloWorldNetworkWindows", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "addressPrefix": "10.0.0.4/22", + "ingressConfig": { + "qosLevel": "Bronze", + "publicIPAddress": "52.191.255.103", + "layer4": [ + { + "publicPort": 80, + "applicationName": "helloWorldAppWindows", + "serviceName": "helloWorldService", + "endpointName": "helloWorldListener" + } + ] } } } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworksByResourceGroup.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworksByResourceGroup.json index 47d92154ad44..1a425435a70b 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworksByResourceGroup.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworksByResourceGroup.json @@ -1,61 +1,61 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "type": "Microsoft.ServiceFabricMesh/networks", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork", - "name": "helloWorldNetwork", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.4/22", - "ingressConfig": { - "qosLevel": "Bronze", - "publicIPAddress": "52.191.12.219", - "layer4": [ - { - "publicPort": 80, - "applicationName": "helloWorldApp", - "serviceName": "helloWorldService", - "endpointName": "helloWorldListener" - } - ] - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "type": "Microsoft.ServiceFabricMesh/networks", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork", + "name": "helloWorldNetwork", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "addressPrefix": "10.0.0.4/22", + "ingressConfig": { + "qosLevel": "Bronze", + "publicIPAddress": "52.191.12.219", + "layer4": [ + { + "publicPort": 80, + "applicationName": "helloWorldApp", + "serviceName": "helloWorldService", + "endpointName": "helloWorldListener" + } + ] } - }, - { - "type": "Microsoft.ServiceFabricMesh/networks", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows", - "name": "helloWorldNetworkWindows", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.4/22", - "ingressConfig": { - "qosLevel": "Bronze", - "publicIPAddress": "52.191.255.103", - "layer4": [ - { - "publicPort": 80, - "applicationName": "helloWorldAppWindows", - "serviceName": "helloWorldService", - "endpointName": "helloWorldListener" - } - ] - } + } + }, + { + "type": "Microsoft.ServiceFabricMesh/networks", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows", + "name": "helloWorldNetworkWindows", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "addressPrefix": "10.0.0.4/22", + "ingressConfig": { + "qosLevel": "Bronze", + "publicIPAddress": "52.191.255.103", + "layer4": [ + { + "publicPort": 80, + "applicationName": "helloWorldAppWindows", + "serviceName": "helloWorldService", + "endpointName": "helloWorldListener" + } + ] } } - ] - } + } + ] } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworksBySubscriptionId.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworksBySubscriptionId.json index b1bf29402e9f..d378e4d9f4df 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworksBySubscriptionId.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/NetworksBySubscriptionId.json @@ -1,60 +1,60 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-07-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "type": "Microsoft.ServiceFabricMesh/networks", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/{resourceGroup}/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork", - "name": "helloWorldNetwork", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.4/22", - "ingressConfig": { - "qosLevel": "Bronze", - "publicIPAddress": "52.191.12.219", - "layer4": [ - { - "publicPort": 80, - "applicationName": "helloWorldApp", - "serviceName": "helloWorldService", - "endpointName": "helloWorldListener" - } - ] - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-07-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "type": "Microsoft.ServiceFabricMesh/networks", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/{resourceGroup}/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork", + "name": "helloWorldNetwork", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "addressPrefix": "10.0.0.4/22", + "ingressConfig": { + "qosLevel": "Bronze", + "publicIPAddress": "52.191.12.219", + "layer4": [ + { + "publicPort": 80, + "applicationName": "helloWorldApp", + "serviceName": "helloWorldService", + "endpointName": "helloWorldListener" + } + ] } - }, - { - "type": "Microsoft.ServiceFabricMesh/networks", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/{resourceGroup}/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows", - "name": "helloWorldNetworkWindows", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.4/22", - "ingressConfig": { - "qosLevel": "Bronze", - "publicIPAddress": "52.191.255.103", - "layer4": [ - { - "publicPort": 80, - "applicationName": "helloWorldAppWindows", - "serviceName": "helloWorldService", - "endpointName": "helloWorldListener" - } - ] - } + } + }, + { + "type": "Microsoft.ServiceFabricMesh/networks", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/{resourceGroup}/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows", + "name": "helloWorldNetworkWindows", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "addressPrefix": "10.0.0.4/22", + "ingressConfig": { + "qosLevel": "Bronze", + "publicIPAddress": "52.191.255.103", + "layer4": [ + { + "publicPort": 80, + "applicationName": "helloWorldAppWindows", + "serviceName": "helloWorldService", + "endpointName": "helloWorldListener" + } + ] } } - ] - } + } + ] } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ReplicaGet.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ReplicaGet.json index e6259087c844..c6a01f57d14c 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ReplicaGet.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ReplicaGet.json @@ -1,109 +1,109 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview", - "applicationName": "helloWorldApp", - "serviceName": "helloWorldService", - "replicaName": "1" - }, - "responses": { - "200": { - "body": { - "osType": "Linux", - "codePackages": [ - { - "name": "helloWorldCode", - "image": "seabreeze/sbz-helloworld:1.0-alpine", - "endpoints": [ - { - "name": "helloWorldListener", - "port": 80 - } - ], - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview", + "applicationName": "helloWorldApp", + "serviceName": "helloWorldService", + "replicaName": "1" + }, + "responses": { + "200": { + "body": { + "osType": "Linux", + "codePackages": [ + { + "name": "helloWorldCode", + "image": "seabreeze/sbz-helloworld:1.0-alpine", + "endpoints": [ + { + "name": "helloWorldListener", + "port": 80 + } + ], + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 + } + }, + "instanceView": { + "restartCount": 1, + "currentState": { + "state": "Running", + "exitCode": "0" }, - "instanceView": { - "restartCount": 1, - "currentState": { - "state": "Running", - "exitCode": "0" - }, - "previousState": { - "state": "NotSpecified", - "exitCode": "0" + "previousState": { + "state": "NotSpecified", + "exitCode": "0" + }, + "events": [ + { + "count": 3, + "firstTimestamp": "2018-04-05T22:37:20.9016844", + "lastTimestamp": "2018-04-06T06:36:06.0887046", + "name": "Created", + "message": "Container created and started.", + "type": "Normal" }, - "events": [ - { - "count": 3, - "firstTimestamp": "2018-04-05T22:37:20.9016844", - "lastTimestamp": "2018-04-06T06:36:06.0887046", - "name": "Created", - "message": "Container created and started.", - "type": "Normal" - }, - { - "count": 1, - "firstTimestamp": "2018-04-06T06:34:00.6622454", - "lastTimestamp": "2018-04-06T06:34:00.6622454", - "name": "Stopped", - "message": "Container was stopped.", - "type": "Normal" - } - ] + { + "count": 1, + "firstTimestamp": "2018-04-06T06:34:00.6622454", + "lastTimestamp": "2018-04-06T06:34:00.6622454", + "name": "Stopped", + "message": "Container was stopped.", + "type": "Normal" + } + ] + } + }, + { + "name": "helloWorldSideCar", + "image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine", + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 } }, - { - "name": "helloWorldSideCar", - "image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine", - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 - } + "instanceView": { + "restartCount": 1, + "currentState": { + "state": "Running", + "exitCode": "0" }, - "instanceView": { - "restartCount": 1, - "currentState": { - "state": "Running", - "exitCode": "0" - }, - "previousState": { - "state": "NotSpecified", - "exitCode": "0" + "previousState": { + "state": "NotSpecified", + "exitCode": "0" + }, + "events": [ + { + "count": 3, + "firstTimestamp": "2018-04-05T22:37:20.906688", + "lastTimestamp": "2018-04-06T06:36:06.0827003", + "name": "Created", + "message": "Container created and started.", + "type": "Normal" }, - "events": [ - { - "count": 3, - "firstTimestamp": "2018-04-05T22:37:20.906688", - "lastTimestamp": "2018-04-06T06:36:06.0827003", - "name": "Created", - "message": "Container created and started.", - "type": "Normal" - }, - { - "count": 1, - "firstTimestamp": "2018-04-06T06:34:00.656241", - "lastTimestamp": "2018-04-06T06:34:00.656241", - "name": "Stopped", - "message": "Container was stopped.", - "type": "Normal" - } - ] - } - } - ], - "networkRefs": [ - { - "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork" + { + "count": 1, + "firstTimestamp": "2018-04-06T06:34:00.656241", + "lastTimestamp": "2018-04-06T06:34:00.656241", + "name": "Stopped", + "message": "Container was stopped.", + "type": "Normal" + } + ] } - ], - "replicaName": "1" - } + } + ], + "networkRefs": [ + { + "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork" + } + ], + "replicaName": "1" } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ReplicasGetAll.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ReplicasGetAll.json index 49ddd753eff5..3653b4319ff2 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ReplicasGetAll.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ReplicasGetAll.json @@ -1,207 +1,207 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview", - "applicationName": "helloWorldApp", - "serviceName": "helloWorldService" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "osType": "Linux", - "codePackages": [ - { - "name": "helloWorldCode", - "image": "seabreeze/sbz-helloworld:1.0-alpine", - "endpoints": [ - { - "name": "helloWorldListener", - "port": 80 - } - ], - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview", + "applicationName": "helloWorldApp", + "serviceName": "helloWorldService" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "osType": "Linux", + "codePackages": [ + { + "name": "helloWorldCode", + "image": "seabreeze/sbz-helloworld:1.0-alpine", + "endpoints": [ + { + "name": "helloWorldListener", + "port": 80 + } + ], + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 + } + }, + "instanceView": { + "restartCount": 1, + "currentState": { + "state": "Running", + "exitCode": "0" }, - "instanceView": { - "restartCount": 1, - "currentState": { - "state": "Running", - "exitCode": "0" - }, - "previousState": { - "state": "NotSpecified", - "exitCode": "0" + "previousState": { + "state": "NotSpecified", + "exitCode": "0" + }, + "events": [ + { + "count": 3, + "firstTimestamp": "2018-04-05T22:37:20.9016844", + "lastTimestamp": "2018-04-06T06:36:06.0887046", + "name": "Created", + "message": "Container created and started.", + "type": "Normal" }, - "events": [ - { - "count": 3, - "firstTimestamp": "2018-04-05T22:37:20.9016844", - "lastTimestamp": "2018-04-06T06:36:06.0887046", - "name": "Created", - "message": "Container created and started.", - "type": "Normal" - }, - { - "count": 1, - "firstTimestamp": "2018-04-06T06:34:00.6622454", - "lastTimestamp": "2018-04-06T06:34:00.6622454", - "name": "Stopped", - "message": "Container was stopped.", - "type": "Normal" - } - ] + { + "count": 1, + "firstTimestamp": "2018-04-06T06:34:00.6622454", + "lastTimestamp": "2018-04-06T06:34:00.6622454", + "name": "Stopped", + "message": "Container was stopped.", + "type": "Normal" + } + ] + } + }, + { + "name": "helloWorldSideCar", + "image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine", + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 } }, - { - "name": "helloWorldSideCar", - "image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine", - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 - } + "instanceView": { + "restartCount": 1, + "currentState": { + "state": "Running", + "exitCode": "0" }, - "instanceView": { - "restartCount": 1, - "currentState": { - "state": "Running", - "exitCode": "0" - }, - "previousState": { - "state": "NotSpecified", - "exitCode": "0" + "previousState": { + "state": "NotSpecified", + "exitCode": "0" + }, + "events": [ + { + "count": 3, + "firstTimestamp": "2018-04-05T22:37:20.906688", + "lastTimestamp": "2018-04-06T06:36:06.0827003", + "name": "Created", + "message": "Container created and started.", + "type": "Normal" }, - "events": [ - { - "count": 3, - "firstTimestamp": "2018-04-05T22:37:20.906688", - "lastTimestamp": "2018-04-06T06:36:06.0827003", - "name": "Created", - "message": "Container created and started.", - "type": "Normal" - }, - { - "count": 1, - "firstTimestamp": "2018-04-06T06:34:00.656241", - "lastTimestamp": "2018-04-06T06:34:00.656241", - "name": "Stopped", - "message": "Container was stopped.", - "type": "Normal" - } - ] - } - } - ], - "networkRefs": [ - { - "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork" - } - ], - "replicaName": "1" - }, - { - "osType": "Linux", - "codePackages": [ - { - "name": "helloWorldCode", - "image": "seabreeze/sbz-helloworld:1.0-alpine", - "endpoints": [ { - "name": "helloWorldListener", - "port": 80 - } - ], - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 + "count": 1, + "firstTimestamp": "2018-04-06T06:34:00.656241", + "lastTimestamp": "2018-04-06T06:34:00.656241", + "name": "Stopped", + "message": "Container was stopped.", + "type": "Normal" } + ] + } + } + ], + "networkRefs": [ + { + "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork" + } + ], + "replicaName": "1" + }, + { + "osType": "Linux", + "codePackages": [ + { + "name": "helloWorldCode", + "image": "seabreeze/sbz-helloworld:1.0-alpine", + "endpoints": [ + { + "name": "helloWorldListener", + "port": 80 + } + ], + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 + } + }, + "instanceView": { + "restartCount": 1, + "currentState": { + "state": "Running", + "exitCode": "0" }, - "instanceView": { - "restartCount": 1, - "currentState": { - "state": "Running", - "exitCode": "0" - }, - "previousState": { - "state": "NotSpecified", - "exitCode": "0" + "previousState": { + "state": "NotSpecified", + "exitCode": "0" + }, + "events": [ + { + "count": 3, + "firstTimestamp": "2018-04-05T22:37:20.9016844", + "lastTimestamp": "2018-04-06T06:36:06.0887046", + "name": "Created", + "message": "Container created and started.", + "type": "Normal" }, - "events": [ - { - "count": 3, - "firstTimestamp": "2018-04-05T22:37:20.9016844", - "lastTimestamp": "2018-04-06T06:36:06.0887046", - "name": "Created", - "message": "Container created and started.", - "type": "Normal" - }, - { - "count": 1, - "firstTimestamp": "2018-04-06T06:34:00.6622454", - "lastTimestamp": "2018-04-06T06:34:00.6622454", - "name": "Stopped", - "message": "Container was stopped.", - "type": "Normal" - } - ] + { + "count": 1, + "firstTimestamp": "2018-04-06T06:34:00.6622454", + "lastTimestamp": "2018-04-06T06:34:00.6622454", + "name": "Stopped", + "message": "Container was stopped.", + "type": "Normal" + } + ] + } + }, + { + "name": "helloWorldSideCar", + "image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine", + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 } }, - { - "name": "helloWorldSideCar", - "image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine", - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 - } + "instanceView": { + "restartCount": 1, + "currentState": { + "state": "Running", + "exitCode": "0" }, - "instanceView": { - "restartCount": 1, - "currentState": { - "state": "Running", - "exitCode": "0" - }, - "previousState": { - "state": "NotSpecified", - "exitCode": "0" + "previousState": { + "state": "NotSpecified", + "exitCode": "0" + }, + "events": [ + { + "count": 3, + "firstTimestamp": "2018-04-05T22:37:20.906688", + "lastTimestamp": "2018-04-06T06:36:06.0827003", + "name": "Created", + "message": "Container created and started.", + "type": "Normal" }, - "events": [ - { - "count": 3, - "firstTimestamp": "2018-04-05T22:37:20.906688", - "lastTimestamp": "2018-04-06T06:36:06.0827003", - "name": "Created", - "message": "Container created and started.", - "type": "Normal" - }, - { - "count": 1, - "firstTimestamp": "2018-04-06T06:34:00.656241", - "lastTimestamp": "2018-04-06T06:34:00.656241", - "name": "Stopped", - "message": "Container was stopped.", - "type": "Normal" - } - ] - } - } - ], - "networkRefs": [ - { - "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork" + { + "count": 1, + "firstTimestamp": "2018-04-06T06:34:00.656241", + "lastTimestamp": "2018-04-06T06:34:00.656241", + "name": "Stopped", + "message": "Container was stopped.", + "type": "Normal" + } + ] } - ], - "replicaName": "0" - } - ] - } + } + ], + "networkRefs": [ + { + "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork" + } + ], + "replicaName": "0" + } + ] } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ServiceGet.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ServiceGet.json index 10ddf3cfc5db..13018df299c0 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ServiceGet.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ServiceGet.json @@ -1,57 +1,57 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview", - "applicationName": "helloWorldApp", - "serviceName": "helloWorldService" - }, - "responses": { - "200": { - "body": { - "name": "helloWorldService", - "type": "Microsoft.ServiceFabricMesh/services", - "properties": { - "osType": "Linux", - "codePackages": [ - { - "name": "helloWorldCode", - "image": "seabreeze/sbz-helloworld:1.0-alpine", - "endpoints": [ - { - "name": "helloWorldListener", - "port": 80 - } - ], - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview", + "applicationName": "helloWorldApp", + "serviceName": "helloWorldService" + }, + "responses": { + "200": { + "body": { + "name": "helloWorldService", + "type": "Microsoft.ServiceFabricMesh/services", + "properties": { + "osType": "Linux", + "codePackages": [ + { + "name": "helloWorldCode", + "image": "seabreeze/sbz-helloworld:1.0-alpine", + "endpoints": [ + { + "name": "helloWorldListener", + "port": 80 } - }, - { - "name": "helloWorldSideCar", - "image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine", - "resources": { - "requests": { - "memoryInGB": 1, - "cpu": 1 - } + ], + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 } } - ], - "networkRefs": [ - { - "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork" + }, + { + "name": "helloWorldSideCar", + "image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine", + "resources": { + "requests": { + "memoryInGB": 1, + "cpu": 1 + } } - ], - "description": "SeaBreeze Hello World Service.", - "replicaCount": 2, - "healthState": "Ok", - "status": "Unknown" - } + } + ], + "networkRefs": [ + { + "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork" + } + ], + "description": "SeaBreeze Hello World Service.", + "replicaCount": 2, + "healthState": "Ok", + "status": "Unknown" } } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ServiceList.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ServiceList.json index c8fbe35869fd..57519d6ed70d 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ServiceList.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/ServiceList.json @@ -1,6 +1,6 @@ { - "operationId":"Service_ListByApplicationName", - "description":"This example shows how to list all services of a given application.", + "operationId": "Service_ListByApplicationName", + "description": "This example shows how to list all services of a given application.", "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "sbz_demo", @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeCreate.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeCreate.json index 50326bbbee3a..6b795d651181 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeCreate.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeCreate.json @@ -1,58 +1,58 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview", - "volumeName": "sbzDemoVolume", - "volumeResourceDescription": { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview", + "volumeName": "sbzDemoVolume", + "volumeResourceDescription": { + "properties": { + "description": "File share backed by Azure Files storage.", + "azureFileParameters": { + "accountName": "sbzdemoaccount", + "accountKey": "provide-account-key-here", + "shareName": "sharel" + }, + "provider": "SFAzureFile" + }, + "location": "eastus" + } + }, + "responses": { + "200": { + "body": { + "type": "Microsoft.ServiceFabricMesh/volumes", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/volumes/sbzDemoVolume", + "name": "sbzDemoVolume", + "tags": {}, "properties": { + "provisioningState": "Succeeded", "description": "File share backed by Azure Files storage.", + "provider": "SFAzureFile", "azureFileParameters": { - "accountName": "sbzdemoaccount", - "accountKey": "provide-account-key-here", - "shareName": "sharel" - }, - "provider": "SFAzureFile" - }, - "location": "eastus" - } - }, - "responses": { - "200": { - "body": { - "type": "Microsoft.ServiceFabricMesh/volumes", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/volumes/sbzDemoVolume", - "name": "sbzDemoVolume", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "description": "File share backed by Azure Files storage.", - "provider": "SFAzureFile", - "azureFileParameters": { - "shareName": "sharel", - "accountName": "sbzdemoaccount" - } + "shareName": "sharel", + "accountName": "sbzdemoaccount" } } - }, - "201": { - "body": { - "type": "Microsoft.ServiceFabricMesh/volumes", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/volumes/sbzDemoVolume", - "name": "sbzDemoVolume", - "tags": {}, - "properties": { - "provisioningState": "Updating", - "description": "File share backed by Azure Files storage.", - "provider": "SFAzureFile", - "azureFileParameters": { - "shareName": "sharel", - "accountName": "sbzdemoaccount" - } + } + }, + "201": { + "body": { + "type": "Microsoft.ServiceFabricMesh/volumes", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/volumes/sbzDemoVolume", + "name": "sbzDemoVolume", + "tags": {}, + "properties": { + "provisioningState": "Updating", + "description": "File share backed by Azure Files storage.", + "provider": "SFAzureFile", + "azureFileParameters": { + "shareName": "sharel", + "accountName": "sbzdemoaccount" } } } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeDelete.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeDelete.json index 8fcb4aa54144..ceb9ff2d7f92 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeDelete.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeDelete.json @@ -1,14 +1,14 @@ { - "operationId":"Volume_Delete", - "description":"This example shows how to delete an existing volume resource. If the volume resource exists and is deleted successfully, an empty response with 200 status code is returned. If the volume resource does not exit, an empty response with 204 status code is returned.", - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-07-01-preview", - "resourceGroupName": "sbz_demo", - "volumeName": "sbzDemoVolume" - }, - "responses": { - "200": {}, - "204": {} - } + "operationId": "Volume_Delete", + "description": "This example shows how to delete an existing volume resource. If the volume resource exists and is deleted successfully, an empty response with 200 status code is returned. If the volume resource does not exit, an empty response with 204 status code is returned.", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-07-01-preview", + "resourceGroupName": "sbz_demo", + "volumeName": "sbzDemoVolume" + }, + "responses": { + "200": {}, + "204": {} + } } diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeGet.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeGet.json index def023970eb5..0c5be540761f 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeGet.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumeGet.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview", - "volumeName": "sbzDemoVolume" - }, - "responses": { - "200": { - "body": { - "type": "Microsoft.ServiceFabricMesh/volumes", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/volumes/sbzDemoVolume", - "name": "sbzDemoVolume", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "description": "File share backed by Azure Files storage.", - "provider": "SFAzureFile", - "azureFileParameters": { - "shareName": "sharel", - "accountName": "sbzdemoaccount" - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview", + "volumeName": "sbzDemoVolume" + }, + "responses": { + "200": { + "body": { + "type": "Microsoft.ServiceFabricMesh/volumes", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/volumes/sbzDemoVolume", + "name": "sbzDemoVolume", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "description": "File share backed by Azure Files storage.", + "provider": "SFAzureFile", + "azureFileParameters": { + "shareName": "sharel", + "accountName": "sbzdemoaccount" } } } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumesByResourceGroup.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumesByResourceGroup.json index 39b4dca5f5ee..6a13f8e78da4 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumesByResourceGroup.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumesByResourceGroup.json @@ -1,47 +1,47 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "resourceGroupName": "sbz_demo", - "api-version": "2018-07-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "type": "Microsoft.ServiceFabricMesh/volumes", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/volumes/sbzDemoVolume2", - "name": "sbzDemoShare", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "description": "File share backed by Azure Files storage.", - "provider": "SFAzureFile", - "azureFileParameters": { - "shareName": "sharel", - "accountName": "sbzdemoaccount" - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "sbz_demo", + "api-version": "2018-07-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "type": "Microsoft.ServiceFabricMesh/volumes", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/volumes/sbzDemoVolume2", + "name": "sbzDemoShare", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "description": "File share backed by Azure Files storage.", + "provider": "SFAzureFile", + "azureFileParameters": { + "shareName": "sharel", + "accountName": "sbzdemoaccount" } - }, - { - "type": "Microsoft.ServiceFabricMesh/volumes", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/volumes/sbzDemoVolume", - "name": "sbzDemoVolume", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "description": "File share backed by Azure Files storage.", - "provider": "SFAzureFile", - "azureFileParameters": { - "shareName": "sharel", - "accountName": "sbzdemoaccount" - } + } + }, + { + "type": "Microsoft.ServiceFabricMesh/volumes", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/volumes/sbzDemoVolume", + "name": "sbzDemoVolume", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "description": "File share backed by Azure Files storage.", + "provider": "SFAzureFile", + "azureFileParameters": { + "shareName": "sharel", + "accountName": "sbzdemoaccount" } } - ] - } + } + ] } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumesBySubscriptionId.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumesBySubscriptionId.json index 7d86747bed0e..6f12c49ce5cd 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumesBySubscriptionId.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/examples/VolumesBySubscriptionId.json @@ -1,46 +1,46 @@ { - "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2018-07-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "type": "Microsoft.ServiceFabricMesh/volumes", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbzdemo/providers/Microsoft.ServiceFabricMesh/volumes/mysharel", - "name": "mysharel", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "description": "File share backed by Azure Files storage.", - "provider": "SFAzureFile", - "azureFileParameters": { - "shareName": "sharel", - "accountName": "sbzdemoaccount" - } + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2018-07-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "type": "Microsoft.ServiceFabricMesh/volumes", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbzdemo/providers/Microsoft.ServiceFabricMesh/volumes/mysharel", + "name": "mysharel", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "description": "File share backed by Azure Files storage.", + "provider": "SFAzureFile", + "azureFileParameters": { + "shareName": "sharel", + "accountName": "sbzdemoaccount" } - }, - { - "type": "Microsoft.ServiceFabricMesh/volumes", - "location": "eastus", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbzdemo/providers/Microsoft.ServiceFabricMesh/volumes/mysharew", - "name": "mysharew", - "tags": {}, - "properties": { - "provisioningState": "Succeeded", - "description": "File share backed by Azure Files storage.", - "provider": "SFAzureFile", - "azureFileParameters": { - "shareName": "sharew", - "accountName": "sbzdemoaccount" - } + } + }, + { + "type": "Microsoft.ServiceFabricMesh/volumes", + "location": "eastus", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbzdemo/providers/Microsoft.ServiceFabricMesh/volumes/mysharew", + "name": "mysharew", + "tags": {}, + "properties": { + "provisioningState": "Succeeded", + "description": "File share backed by Azure Files storage.", + "provider": "SFAzureFile", + "azureFileParameters": { + "shareName": "sharew", + "accountName": "sbzdemoaccount" } } - ] - } + } + ] } } - } \ No newline at end of file + } +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/servicefabricmesh.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/servicefabricmesh.json index abe173b81466..a535cd5e071c 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/servicefabricmesh.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-07-01-preview/servicefabricmesh.json @@ -2242,4 +2242,4 @@ "description": "Number of lines to show from the end of the logs. Default is 100." } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/create_update.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/create_update.json index 7f2184d6377d..6b6ac3c3cc27 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/create_update.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/create_update.json @@ -91,4 +91,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/delete.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/delete.json index 46ea5b8772d7..b27b102b9032 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/delete.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/delete.json @@ -12,4 +12,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/get.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/get.json index f77465d92d24..6d831fa754df 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/get.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/get.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/list_byResourceGroup.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/list_byResourceGroup.json index f9fbcdf4dfb4..41af6f7168db 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/list_byResourceGroup.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/list_byResourceGroup.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/list_bySubscriptionId.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/list_bySubscriptionId.json index 35641a7abda2..eaff9cc00ec5 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/list_bySubscriptionId.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/list_bySubscriptionId.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/get.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/get.json index 3bce4656e1cf..9c08ad25157f 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/get.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/get.json @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/list.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/list.json index 5ed68640fcec..93189437ee77 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/list.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/list.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/replicas/get.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/replicas/get.json index 48eab2177d7e..4ed376b7724d 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/replicas/get.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/replicas/get.json @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/replicas/list.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/replicas/list.json index 01e400bedc14..4de430d6ef8b 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/replicas/list.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/applications/services/replicas/list.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/create_update.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/create_update.json index 676e25cab1a7..f7ae9364fc54 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/create_update.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/create_update.json @@ -202,4 +202,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/delete.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/delete.json index 5a34eb59eb41..f40498990359 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/delete.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/delete.json @@ -12,4 +12,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/get.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/get.json index c2c1eccd8a40..a3a77e567420 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/get.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/get.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/list_byResourceGroup.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/list_byResourceGroup.json index 51f751f14017..dab12ae7ed4c 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/list_byResourceGroup.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/gateways/list_byResourceGroup.json @@ -79,4 +79,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/create_update.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/create_update.json index ba69f964b944..f712e98b39bf 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/create_update.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/create_update.json @@ -51,4 +51,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/delete.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/delete.json index 7b9d67c99a7b..08b106455a70 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/delete.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/delete.json @@ -12,4 +12,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/get.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/get.json index 5ce76e4460a0..9430c777d304 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/get.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/get.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/list_byResourceGroup.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/list_byResourceGroup.json index 02e02e71c87d..289d34d092ba 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/list_byResourceGroup.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/list_byResourceGroup.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/list_bySubscriptionId.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/list_bySubscriptionId.json index ab5f8421f290..09c18cbbe141 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/list_bySubscriptionId.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/networks/list_bySubscriptionId.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/create_update.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/create_update.json index 40c3ac11fe74..83d8c94e426a 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/create_update.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/create_update.json @@ -51,4 +51,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/get.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/get.json index f9f50d67158a..ed49a340b598 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/get.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/get.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/list_byResourceGroup.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/list_byResourceGroup.json index 305fb6cc2519..756fd12f3586 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/list_byResourceGroup.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/list_byResourceGroup.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/list_bySubscriptionId.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/list_bySubscriptionId.json index 73064905e3f8..f9c1b96a47f5 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/list_bySubscriptionId.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/list_bySubscriptionId.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/create.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/create.json index b4821b8cb84d..39326feca31a 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/create.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/create.json @@ -41,4 +41,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/delete.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/delete.json index 9f4932be62f1..36eff5a5f62a 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/delete.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/delete.json @@ -13,4 +13,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/get.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/get.json index 5b7becbf76b0..0d6d08be4631 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/get.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/get.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/list.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/list.json index 905890b8a9b3..cfce09bfdead 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/list.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/list.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/list_value.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/list_value.json index f341e143f0b1..4251a3e7ecbb 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/list_value.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/secrets/values/list_value.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/volumes/delete.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/volumes/delete.json index 7e3f7f4d7c59..ac54d3b45588 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/volumes/delete.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/examples/volumes/delete.json @@ -12,4 +12,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/servicefabricmesh.json b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/servicefabricmesh.json index 48ae0d6e78c5..e76448ade46b 100644 --- a/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/servicefabricmesh.json +++ b/specification/servicefabricmesh/resource-manager/Microsoft.ServiceFabricMesh/preview/2018-09-01-preview/servicefabricmesh.json @@ -3951,4 +3951,4 @@ "description": "Number of lines to show from the end of the logs. Default is 100." } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/CheckNameAvailability.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/CheckNameAvailability.json index 8dca2c87bb84..05b04de628a5 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/CheckNameAvailability.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/CheckNameAvailability.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/CreateOrUpdate.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/CreateOrUpdate.json index d4b8ba5e4e13..2446709ef47b 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/CreateOrUpdate.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/CreateOrUpdate.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Delete.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Delete.json index 16ab9c5dd1a4..6c35e6e5d76a 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Delete.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Delete.json @@ -13,4 +13,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Get.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Get.json index b2df3e1aacd4..6e830484a5ff 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Get.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Get.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListByResourceGroup.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListByResourceGroup.json index 3c7b9a17a185..6079b3aa76d2 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListByResourceGroup.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListByResourceGroup.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListBySubscription.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListBySubscription.json index c92dbcd8eb33..93f6e323a0a7 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListBySubscription.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListBySubscription.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListKeys.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListKeys.json index d3b0c75cb72d..4fbd8e09ddef 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListKeys.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListKeys.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListOperations.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListOperations.json index 231eaf16f9f1..24321add42af 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListOperations.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListOperations.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListUsagesByLocation.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListUsagesByLocation.json index cb85c4af03ae..b01cd051253d 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListUsagesByLocation.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/ListUsagesByLocation.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/RegenerateKey.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/RegenerateKey.json index bb7ddab4a546..bf7196b6997a 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/RegenerateKey.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/RegenerateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Update.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Update.json index 2356120e0344..717267e71e99 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Update.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/examples/Update.json @@ -51,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/signalr.json b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/signalr.json index 6956340076d9..0a661c94b9f3 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/signalr.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/preview/2018-03-01-preview/signalr.json @@ -1,930 +1,930 @@ { "swagger": "2.0", "info": { - "version": "2018-03-01-preview", - "title": "SignalRManagementClient", - "description": "REST API for Azure SignalR Service" + "version": "2018-03-01-preview", + "title": "SignalRManagementClient", + "description": "REST API for Azure SignalR Service" }, "host": "management.azure.com", "schemes": [ - "https" + "https" ], "consumes": [ - "application/json" + "application/json" ], "produces": [ - "application/json" + "application/json" ], "paths": { - "/providers/Microsoft.SignalRService/operations": { - "get": { - "tags": [ - "SignalR" - ], - "description": "Lists all of the available REST API operations of the Microsoft.SignalRService provider.", - "operationId": "Operations_List", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Success. The response describes the list of operations.", - "schema": { - "$ref": "#/definitions/OperationList" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-examples": { - "ListOperations": { - "$ref": "./examples/ListOperations.json" - } - } + "/providers/Microsoft.SignalRService/operations": { + "get": { + "tags": [ + "SignalR" + ], + "description": "Lists all of the available REST API operations of the Microsoft.SignalRService provider.", + "operationId": "Operations_List", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.SignalRService/locations/{location}/checkNameAvailability": { - "post": { - "tags": [ - "SignalR" - ], - "description": "Checks that the SignalR name is valid and is not already in use.", - "operationId": "SignalR_CheckNameAvailability", - "parameters": [ - { - "name": "location", - "in": "path", - "description": "the region", - "required": true, - "type": "string" - }, - { - "name": "parameters", - "in": "body", - "description": "Parameters supplied to the operation.", - "required": false, - "schema": { - "$ref": "#/definitions/NameAvailabilityParameters" - } - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Success. The response describes the name availability.", - "schema": { - "$ref": "#/definitions/NameAvailability" - } - } - }, - "x-ms-examples": { - "CheckNameAvailability": { - "$ref": "./examples/CheckNameAvailability.json" - } - } + ], + "responses": { + "200": { + "description": "Success. The response describes the list of operations.", + "schema": { + "$ref": "#/definitions/OperationList" + } } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.SignalRService/SignalR": { - "get": { - "tags": [ - "SignalR" - ], - "description": "Handles requests to list all resources in a subscription.", - "operationId": "SignalR_ListBySubscription", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "Success. The response describes the list of SignalR services in the subscription.", - "schema": { - "$ref": "#/definitions/SignalRResourceList" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-examples": { - "ListBySubscription": { - "$ref": "./examples/ListBySubscription.json" - } - } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "ListOperations": { + "$ref": "./examples/ListOperations.json" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR": { - "get": { - "tags": [ - "SignalR" - ], - "description": "Handles requests to list all resources in a resource group.", - "operationId": "SignalR_ListByResourceGroup", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - } - ], - "responses": { - "200": { - "description": "Success. The response describes the list of SignalR services in a resourceGroup.", - "schema": { - "$ref": "#/definitions/SignalRResourceList" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-examples": { - "ListByResourceGroup": { - "$ref": "./examples/ListByResourceGroup.json" - } - } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.SignalRService/locations/{location}/checkNameAvailability": { + "post": { + "tags": [ + "SignalR" + ], + "description": "Checks that the SignalR name is valid and is not already in use.", + "operationId": "SignalR_CheckNameAvailability", + "parameters": [ + { + "name": "location", + "in": "path", + "description": "the region", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the operation.", + "required": false, + "schema": { + "$ref": "#/definitions/NameAvailabilityParameters" + } + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR/{resourceName}/listKeys": { - "post": { - "tags": [ - "SignalR" - ], - "description": "Get the access keys of the SignalR resource.", - "operationId": "SignalR_ListKeys", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/SignalRServiceName" - } - ], - "responses": { - "200": { - "description": "Success. The response describes SignalR service access keys.", - "schema": { - "$ref": "#/definitions/SignalRKeys" - } - } - }, - "x-ms-examples": { - "ListKeys": { - "$ref": "./examples/ListKeys.json" - } - } + ], + "responses": { + "200": { + "description": "Success. The response describes the name availability.", + "schema": { + "$ref": "#/definitions/NameAvailability" + } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR/{resourceName}/regenerateKey": { - "post": { - "tags": [ - "SignalR" - ], - "description": "Regenerate SignalR service access key. PrimaryKey and SecondaryKey cannot be regenerated at the same time.", - "operationId": "SignalR_RegenerateKey", - "parameters": [ - { - "name": "parameters", - "in": "body", - "description": "Parameter that describes the Regenerate Key Operation.", - "required": false, - "schema": { - "$ref": "#/definitions/RegenerateKeyParameters" - } - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/SignalRServiceName" - } - ], - "responses": { - "201": { - "description": "Created and an async operation is executing in background to make the new key to take effect. The response contains new keys and a Location header to query the async operation result.", - "schema": { - "$ref": "#/definitions/SignalRKeys" - } - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "RegenerateKey": { - "$ref": "./examples/RegenerateKey.json" - } - } + }, + "x-ms-examples": { + "CheckNameAvailability": { + "$ref": "./examples/CheckNameAvailability.json" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR/{resourceName}": { - "get": { - "tags": [ - "SignalR" - ], - "description": "Get the SignalR service and its properties.", - "operationId": "SignalR_Get", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/SignalRServiceName" - } - ], - "responses": { - "200": { - "description": "Success. The response describe the corresponding SignalR service.", - "schema": { - "$ref": "#/definitions/SignalRResource" - } - } - }, - "x-ms-examples": { - "Get": { - "$ref": "./examples/Get.json" - } - } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.SignalRService/SignalR": { + "get": { + "tags": [ + "SignalR" + ], + "description": "Handles requests to list all resources in a subscription.", + "operationId": "SignalR_ListBySubscription", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" }, - "put": { - "tags": [ - "SignalR" - ], - "description": "Create a new SignalR service and update an exiting SignalR service.", - "operationId": "SignalR_CreateOrUpdate", - "parameters": [ - { - "name": "parameters", - "in": "body", - "description": "Parameters for the create or update operation", - "required": false, - "schema": { - "$ref": "#/definitions/SignalRCreateParameters" - } - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/SignalRServiceName" - } - ], - "responses": { - "201": { - "description": "Created. The response describes the new service and contains a Location header to query the operation result.", - "schema": { - "$ref": "#/definitions/SignalRResource" - } - }, - "202": { - "description": "Accepted. The response indicates the exiting SignalR service is now updating and contains a Location header to query the operation result.." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "CreateOrUpdate": { - "$ref": "./examples/CreateOrUpdate.json" - } - } + { + "$ref": "#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Success. The response describes the list of SignalR services in the subscription.", + "schema": { + "$ref": "#/definitions/SignalRResourceList" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "ListBySubscription": { + "$ref": "./examples/ListBySubscription.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR": { + "get": { + "tags": [ + "SignalR" + ], + "description": "Handles requests to list all resources in a resource group.", + "operationId": "SignalR_ListByResourceGroup", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" }, - "delete": { - "tags": [ - "SignalR" - ], - "description": "Operation to delete a SignalR service.", - "operationId": "SignalR_Delete", - "parameters": [ - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/SignalRServiceName" - } - ], - "responses": { - "202": { - "description": "Accepted. The response indicates the delete operation is performed in the background." - }, - "204": { - "description": "Success. The response indicates the resource is already deleted." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Delete": { - "$ref": "./examples/Delete.json" - } - } + { + "$ref": "#/parameters/SubscriptionIdParameter" }, - "patch": { - "tags": [ - "SignalR" - ], - "description": "Operation to update an exiting SignalR service.", - "operationId": "SignalR_Update", - "parameters": [ - { - "name": "parameters", - "in": "body", - "description": "Parameters for the update operation", - "required": false, - "schema": { - "$ref": "#/definitions/SignalRUpdateParameters" - } - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/SignalRServiceName" - } - ], - "responses": { - "200": { - "description": "Success. The response describes a SignalR service which is not up-to-date.", - "schema": { - "$ref": "#/definitions/SignalRResource" - } - }, - "202": { - "description": "Accepted. The response indicates the exiting SignalR service is now updating and contains a Location header to query the operation result.." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Update": { - "$ref": "./examples/Update.json" - } - } + { + "$ref": "#/parameters/ResourceGroupParameter" } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.SignalRService/locations/{location}/usages": { - "get": { - "tags": [ - "SignalR" - ], - "description": "List usage quotas for Azure SignalR service by location.", - "operationId": "Usages_List", - "parameters": [ - { - "name": "location", - "in": "path", - "description": "the location like \"eastus\"", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" + ], + "responses": { + "200": { + "description": "Success. The response describes the list of SignalR services in a resourceGroup.", + "schema": { + "$ref": "#/definitions/SignalRResourceList" } - ], - "responses": { - "200": { - "description": "Success. The response describe the usage quotas of a subscription in specified region.", - "schema": { - "$ref": "#/definitions/SignalRUsageList" - } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "ListByResourceGroup": { + "$ref": "./examples/ListByResourceGroup.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR/{resourceName}/listKeys": { + "post": { + "tags": [ + "SignalR" + ], + "description": "Get the access keys of the SignalR resource.", + "operationId": "SignalR_ListKeys", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/SignalRServiceName" + } + ], + "responses": { + "200": { + "description": "Success. The response describes SignalR service access keys.", + "schema": { + "$ref": "#/definitions/SignalRKeys" } + } + }, + "x-ms-examples": { + "ListKeys": { + "$ref": "./examples/ListKeys.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR/{resourceName}/regenerateKey": { + "post": { + "tags": [ + "SignalR" + ], + "description": "Regenerate SignalR service access key. PrimaryKey and SecondaryKey cannot be regenerated at the same time.", + "operationId": "SignalR_RegenerateKey", + "parameters": [ + { + "name": "parameters", + "in": "body", + "description": "Parameter that describes the Regenerate Key Operation.", + "required": false, + "schema": { + "$ref": "#/definitions/RegenerateKeyParameters" + } + }, + { + "$ref": "#/parameters/ApiVersionParameter" }, - "x-ms-pageable": { - "nextLinkName": "nextLink" + { + "$ref": "#/parameters/SubscriptionIdParameter" }, - "x-ms-examples": { - "ListUsagesByLocation": { - "$ref": "./examples/ListUsagesByLocation.json" + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/SignalRServiceName" + } + ], + "responses": { + "201": { + "description": "Created and an async operation is executing in background to make the new key to take effect. The response contains new keys and a Location header to query the async operation result.", + "schema": { + "$ref": "#/definitions/SignalRKeys" } } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "RegenerateKey": { + "$ref": "./examples/RegenerateKey.json" + } } } - }, - "definitions": { - "OperationList": { - "description": "Result of the request to list REST API operations. It contains a list of operations.", - "type": "object", - "properties": { - "value": { - "description": "List of operations supported by the resource provider.", - "type": "array", - "items": { - "$ref": "#/definitions/Operation" - } - }, - "nextLink": { - "description": "The URL the client should use to fetch the next page (per server side paging).\r\nIt's null for now, added for future use.", - "type": "string" - } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR/{resourceName}": { + "get": { + "tags": [ + "SignalR" + ], + "description": "Get the SignalR service and its properties.", + "operationId": "SignalR_Get", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/SignalRServiceName" } - }, - "Operation": { - "description": "REST API operation supported by SignalR resource provider.", - "type": "object", - "properties": { - "name": { - "description": "Name of the operation with format: {provider}/{resource}/{operation}", - "type": "string" - }, - "display": { - "$ref": "#/definitions/OperationDisplay", - "description": "The object that describes the operation." - }, - "origin": { - "description": "Optional. The intended executor of the operation; governs the display of the operation in the RBAC UX and the audit logs UX.", - "type": "string" - }, - "properties": { - "$ref": "#/definitions/OperationProperties", - "description": "Extra properties for the operation.", - "x-ms-client-flatten": false - } + ], + "responses": { + "200": { + "description": "Success. The response describe the corresponding SignalR service.", + "schema": { + "$ref": "#/definitions/SignalRResource" + } } - }, - "OperationDisplay": { - "description": "The object that describes a operation.", - "type": "object", - "properties": { - "provider": { - "description": "Friendly name of the resource provider", - "type": "string" - }, - "resource": { - "description": "Resource type on which the operation is performed.", - "type": "string" - }, - "operation": { - "description": "The localized friendly name for the operation.", - "type": "string" - }, - "description": { - "description": "The localized friendly description for the operation", - "type": "string" - } + }, + "x-ms-examples": { + "Get": { + "$ref": "./examples/Get.json" } + } }, - "OperationProperties": { - "description": "Extra Operation properties.", - "type": "object", - "properties": { - "serviceSpecification": { - "$ref": "#/definitions/ServiceSpecification", - "description": "The service specifications." - } + "put": { + "tags": [ + "SignalR" + ], + "description": "Create a new SignalR service and update an exiting SignalR service.", + "operationId": "SignalR_CreateOrUpdate", + "parameters": [ + { + "name": "parameters", + "in": "body", + "description": "Parameters for the create or update operation", + "required": false, + "schema": { + "$ref": "#/definitions/SignalRCreateParameters" + } + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/SignalRServiceName" } - }, - "ServiceSpecification": { - "description": "An object that describes a specification.", - "type": "object", - "properties": { - "metricSpecifications": { - "description": "Specifications of the Metrics for Azure Monitoring.", - "type": "array", - "items": { - "$ref": "#/definitions/MetricSpecification" - } - } + ], + "responses": { + "201": { + "description": "Created. The response describes the new service and contains a Location header to query the operation result.", + "schema": { + "$ref": "#/definitions/SignalRResource" + } + }, + "202": { + "description": "Accepted. The response indicates the exiting SignalR service is now updating and contains a Location header to query the operation result.." } - }, - "MetricSpecification": { - "description": "Specifications of the Metrics for Azure Monitoring.", - "type": "object", - "properties": { - "name": { - "description": "Name of the metric.", - "type": "string" - }, - "displayName": { - "description": "Localized friendly display name of the metric.", - "type": "string" - }, - "displayDescription": { - "description": "Localized friendly description of the metric.", - "type": "string" - }, - "unit": { - "description": "The unit that makes sense for the metric.", - "type": "string" - }, - "aggregationType": { - "description": "Only provide one value for this field. Valid values: Average, Minimum, Maximum, Total, Count.", - "type": "string" - }, - "fillGapWithZero": { - "description": "Optional. If set to true, then zero will be returned for time duration where no metric is emitted/published. \r\nEx. a metric that returns the number of times a particular error code was emitted. The error code may not appear \r\noften, instead of the RP publishing 0, Shoebox can auto fill in 0s for time periods where nothing was emitted.", - "type": "string" - }, - "category": { - "description": "The name of the metric category that the metric belongs to. A metric can only belong to a single category.", - "type": "string" - }, - "dimensions": { - "description": "The dimensions of the metrics.", - "type": "array", - "items": { - "$ref": "#/definitions/Dimension" - } - } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "CreateOrUpdate": { + "$ref": "./examples/CreateOrUpdate.json" } + } }, - "Dimension": { - "description": "Specifications of the Dimension of metrics.", - "type": "object", - "properties": { - "name": { - "description": "The public facing name of the dimension.", - "type": "string" - }, - "displayName": { - "description": "Localized friendly display name of the dimension.", - "type": "string" - }, - "internalName": { - "description": "Name of the dimension as it appears in MDM.", - "type": "string" - }, - "toBeExportedForShoebox": { - "description": "A Boolean flag indicating whether this dimension should be included for the shoebox export scenario.", - "type": "boolean" - } + "delete": { + "tags": [ + "SignalR" + ], + "description": "Operation to delete a SignalR service.", + "operationId": "SignalR_Delete", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/SignalRServiceName" } - }, - "NameAvailabilityParameters": { - "description": "Data POST-ed to the nameAvailability action", - "required": [ - "type", - "name" - ], - "type": "object", - "properties": { - "type": { - "description": "The resource type. Should be always \"Microsoft.SignalRService/SignalR\".", - "type": "string" - }, - "name": { - "description": "The SignalR service name to validate. e.g.\"my-signalR-name-here\"", - "type": "string" - } + ], + "responses": { + "202": { + "description": "Accepted. The response indicates the delete operation is performed in the background." + }, + "204": { + "description": "Success. The response indicates the resource is already deleted." } - }, - "NameAvailability": { - "description": "Result of the request to check name availability. It contains a flag and possible reason of failure.", - "type": "object", - "properties": { - "nameAvailable": { - "description": "Indicates whether the name is available or not.", - "type": "boolean" - }, - "reason": { - "description": "The reason of the availability. Required if name is not available.", - "type": "string" - }, - "message": { - "description": "The message of the operation.", - "type": "string" - } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Delete": { + "$ref": "./examples/Delete.json" } + } }, - "SignalRResourceList": { - "description": "Object that includes an array of SignalR services and a possible link for next set.", - "type": "object", - "properties": { - "value": { - "description": "List of SignalR services", - "type": "array", - "items": { - "$ref": "#/definitions/SignalRResource" - } - }, - "nextLink": { - "description": "The URL the client should use to fetch the next page (per server side paging).\r\nIt's null for now, added for future use.", - "type": "string" - } + "patch": { + "tags": [ + "SignalR" + ], + "description": "Operation to update an exiting SignalR service.", + "operationId": "SignalR_Update", + "parameters": [ + { + "name": "parameters", + "in": "body", + "description": "Parameters for the update operation", + "required": false, + "schema": { + "$ref": "#/definitions/SignalRUpdateParameters" + } + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/SignalRServiceName" } - }, - "SignalRResource": { - "description": "A class represent a SignalR service resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/TrackedResource" - } - ], - "properties": { - "sku": { - "$ref": "#/definitions/ResourceSku", - "description": "SKU of the service." - }, - "properties": { - "$ref": "#/definitions/SignalRProperties", - "description": "The properties of the service.", - "x-ms-client-flatten": true - }, - "id": { - "description": "Fully qualified resource Id for the resource.", - "type": "string", - "readOnly": true - }, - "name": { - "description": "The name of the resource.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "The type of the service - e.g. \"Microsoft.SignalRService/SignalR\"", - "type": "string", - "readOnly": true - } + ], + "responses": { + "200": { + "description": "Success. The response describes a SignalR service which is not up-to-date.", + "schema": { + "$ref": "#/definitions/SignalRResource" + } + }, + "202": { + "description": "Accepted. The response indicates the exiting SignalR service is now updating and contains a Location header to query the operation result.." } - }, - "TrackedResource": { - "description": "The resource model definition for a ARM tracked top level resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "location": { - "description": "The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.", - "type": "string", - "x-ms-mutability": [ - "read", - "create" - ] - }, - "tags": { - "description": "Tags of the service which is a list of key value pairs that describe the resource.", - "type": "object", - "additionalProperties": { - "type": "string" - }, - "x-ms-mutability": [ - "read", - "create", - "update" - ] - } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Update": { + "$ref": "./examples/Update.json" } - }, - "Resource": { - "description": "The core properties of ARM resources.", - "type": "object", - "properties": { - "id": { - "description": "Fully qualified resource Id for the resource.", - "type": "string", - "readOnly": true - }, - "name": { - "description": "The name of the resource.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "The type of the service - e.g. \"Microsoft.SignalRService/SignalR\"", - "type": "string", - "readOnly": true - } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.SignalRService/locations/{location}/usages": { + "get": { + "tags": [ + "SignalR" + ], + "description": "List usage quotas for Azure SignalR service by location.", + "operationId": "Usages_List", + "parameters": [ + { + "name": "location", + "in": "path", + "description": "the location like \"eastus\"", + "required": true, + "type": "string" }, - "x-ms-azure-resource": true - }, - "ResourceSku": { - "description": "The billing information of the resource.(e.g. basic vs. standard)", - "required": [ - "name" - ], - "type": "object", - "properties": { - "name": { - "description": "The name of the SKU. This is typically a letter + number code, such as A0 or P3. Required (if sku is specified)", - "type": "string" - }, - "tier": { - "description": "Optional tier of this particular SKU. `Basic` is deprecated, use `Standard` instead for Basic tier", - "enum": [ - "Free", - "Basic", - "Standard", - "Premium" - ], - "type": "string", - "x-ms-enum": { - "name": "SignalRSkuTier", - "modelAsString": true - } - }, - "size": { - "description": "Optional, string. When the name field is the combination of tier and some other value, this would be the standalone code.", - "type": "string" - }, - "family": { - "description": "Optional, string. If the service has different generations of hardware, for the same SKU, then that can be captured here.", - "type": "string" - }, - "capacity": { - "format": "int32", - "description": "Optional, integer. If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not \r\npossible for the resource this may be omitted.", - "type": "integer" - } + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" } - }, - "SignalRProperties": { - "description": "A class that describes the properties of the SignalR service that should contain more read-only properties than AzSignalR.Models.SignalRCreateOrUpdateProperties", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/SignalRCreateOrUpdateProperties" - } - ], - "properties": { - "provisioningState": { - "description": "Provisioning state of the resource.", - "enum": [ - "Unknown", - "Succeeded", - "Failed", - "Canceled", - "Running", - "Creating", - "Updating", - "Deleting", - "Moving" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "ProvisioningState", - "modelAsString": true - } - }, - "externalIP": { - "description": "The publicly accessible IP of the SignalR service.", - "type": "string", - "readOnly": true - }, - "hostName": { - "description": "FQDN of the SignalR service instance. Format: xxx.service.signalr.net", - "type": "string", - "readOnly": true - }, - "publicPort": { - "format": "int32", - "description": "The publicly accessibly port of the SignalR service which is designed for browser/client side usage.", - "type": "integer", - "readOnly": true - }, - "serverPort": { - "format": "int32", - "description": "The publicly accessibly port of the SignalR service which is designed for customer server side usage.", - "type": "integer", - "readOnly": true - }, - "version": { - "description": "Version of the SignalR resource. Probably you need the same or higher version of client SDKs.", - "type": "string" - } + ], + "responses": { + "200": { + "description": "Success. The response describe the usage quotas of a subscription in specified region.", + "schema": { + "$ref": "#/definitions/SignalRUsageList" + } } - }, - "SignalRCreateOrUpdateProperties": { - "description": "Settings used to provision or configure the resource.", - "type": "object", - "properties": { - "hostNamePrefix": { - "description": "Prefix for the hostName of the SignalR service. Retained for future use.\r\nThe hostname will be of format: <hostNamePrefix>.service.signalr.net.", - "type": "string" - } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "ListUsagesByLocation": { + "$ref": "./examples/ListUsagesByLocation.json" } - }, - "SignalRKeys": { - "description": "A class represents the access keys of SignalR service.", - "type": "object", - "properties": { - "primaryKey": { - "description": "The primary access key.", - "type": "string" - }, - "secondaryKey": { - "description": "The secondary access key.", - "type": "string" - }, - "primaryConnectionString": { - "description": "SignalR connection string constructed via the primaryKey", - "type": "string" - }, - "secondaryConnectionString": { - "description": "SignalR connection string constructed via the secondaryKey", - "type": "string" - } + } + } + } + }, + "definitions": { + "OperationList": { + "description": "Result of the request to list REST API operations. It contains a list of operations.", + "type": "object", + "properties": { + "value": { + "description": "List of operations supported by the resource provider.", + "type": "array", + "items": { + "$ref": "#/definitions/Operation" } - }, - "RegenerateKeyParameters": { - "description": "Parameters describes the request to regenerate access keys", - "type": "object", - "properties": { - "keyType": { - "description": "The keyType to regenerate. Must be either 'primary' or 'secondary'(case-insensitive).", - "enum": [ - "Primary", - "Secondary" - ], - "type": "string", - "x-ms-enum": { - "name": "KeyType", - "modelAsString": true - } - } + }, + "nextLink": { + "description": "The URL the client should use to fetch the next page (per server side paging).\r\nIt's null for now, added for future use.", + "type": "string" + } + } + }, + "Operation": { + "description": "REST API operation supported by SignalR resource provider.", + "type": "object", + "properties": { + "name": { + "description": "Name of the operation with format: {provider}/{resource}/{operation}", + "type": "string" + }, + "display": { + "$ref": "#/definitions/OperationDisplay", + "description": "The object that describes the operation." + }, + "origin": { + "description": "Optional. The intended executor of the operation; governs the display of the operation in the RBAC UX and the audit logs UX.", + "type": "string" + }, + "properties": { + "$ref": "#/definitions/OperationProperties", + "description": "Extra properties for the operation.", + "x-ms-client-flatten": false + } + } + }, + "OperationDisplay": { + "description": "The object that describes a operation.", + "type": "object", + "properties": { + "provider": { + "description": "Friendly name of the resource provider", + "type": "string" + }, + "resource": { + "description": "Resource type on which the operation is performed.", + "type": "string" + }, + "operation": { + "description": "The localized friendly name for the operation.", + "type": "string" + }, + "description": { + "description": "The localized friendly description for the operation", + "type": "string" + } + } + }, + "OperationProperties": { + "description": "Extra Operation properties.", + "type": "object", + "properties": { + "serviceSpecification": { + "$ref": "#/definitions/ServiceSpecification", + "description": "The service specifications." + } + } + }, + "ServiceSpecification": { + "description": "An object that describes a specification.", + "type": "object", + "properties": { + "metricSpecifications": { + "description": "Specifications of the Metrics for Azure Monitoring.", + "type": "array", + "items": { + "$ref": "#/definitions/MetricSpecification" } + } + } + }, + "MetricSpecification": { + "description": "Specifications of the Metrics for Azure Monitoring.", + "type": "object", + "properties": { + "name": { + "description": "Name of the metric.", + "type": "string" + }, + "displayName": { + "description": "Localized friendly display name of the metric.", + "type": "string" + }, + "displayDescription": { + "description": "Localized friendly description of the metric.", + "type": "string" + }, + "unit": { + "description": "The unit that makes sense for the metric.", + "type": "string" + }, + "aggregationType": { + "description": "Only provide one value for this field. Valid values: Average, Minimum, Maximum, Total, Count.", + "type": "string" + }, + "fillGapWithZero": { + "description": "Optional. If set to true, then zero will be returned for time duration where no metric is emitted/published. \r\nEx. a metric that returns the number of times a particular error code was emitted. The error code may not appear \r\noften, instead of the RP publishing 0, Shoebox can auto fill in 0s for time periods where nothing was emitted.", + "type": "string" + }, + "category": { + "description": "The name of the metric category that the metric belongs to. A metric can only belong to a single category.", + "type": "string" + }, + "dimensions": { + "description": "The dimensions of the metrics.", + "type": "array", + "items": { + "$ref": "#/definitions/Dimension" + } + } + } + }, + "Dimension": { + "description": "Specifications of the Dimension of metrics.", + "type": "object", + "properties": { + "name": { + "description": "The public facing name of the dimension.", + "type": "string" + }, + "displayName": { + "description": "Localized friendly display name of the dimension.", + "type": "string" + }, + "internalName": { + "description": "Name of the dimension as it appears in MDM.", + "type": "string" + }, + "toBeExportedForShoebox": { + "description": "A Boolean flag indicating whether this dimension should be included for the shoebox export scenario.", + "type": "boolean" + } + } + }, + "NameAvailabilityParameters": { + "description": "Data POST-ed to the nameAvailability action", + "required": [ + "type", + "name" + ], + "type": "object", + "properties": { + "type": { + "description": "The resource type. Should be always \"Microsoft.SignalRService/SignalR\".", + "type": "string" + }, + "name": { + "description": "The SignalR service name to validate. e.g.\"my-signalR-name-here\"", + "type": "string" + } + } + }, + "NameAvailability": { + "description": "Result of the request to check name availability. It contains a flag and possible reason of failure.", + "type": "object", + "properties": { + "nameAvailable": { + "description": "Indicates whether the name is available or not.", + "type": "boolean" + }, + "reason": { + "description": "The reason of the availability. Required if name is not available.", + "type": "string" + }, + "message": { + "description": "The message of the operation.", + "type": "string" + } + } + }, + "SignalRResourceList": { + "description": "Object that includes an array of SignalR services and a possible link for next set.", + "type": "object", + "properties": { + "value": { + "description": "List of SignalR services", + "type": "array", + "items": { + "$ref": "#/definitions/SignalRResource" + } + }, + "nextLink": { + "description": "The URL the client should use to fetch the next page (per server side paging).\r\nIt's null for now, added for future use.", + "type": "string" + } + } + }, + "SignalRResource": { + "description": "A class represent a SignalR service resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/TrackedResource" + } + ], + "properties": { + "sku": { + "$ref": "#/definitions/ResourceSku", + "description": "SKU of the service." + }, + "properties": { + "$ref": "#/definitions/SignalRProperties", + "description": "The properties of the service.", + "x-ms-client-flatten": true + }, + "id": { + "description": "Fully qualified resource Id for the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "The name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "The type of the service - e.g. \"Microsoft.SignalRService/SignalR\"", + "type": "string", + "readOnly": true + } + } + }, + "TrackedResource": { + "description": "The resource model definition for a ARM tracked top level resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "location": { + "description": "The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.", + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "tags": { + "description": "Tags of the service which is a list of key value pairs that describe the resource.", + "type": "object", + "additionalProperties": { + "type": "string" + }, + "x-ms-mutability": [ + "read", + "create", + "update" + ] + } + } + }, + "Resource": { + "description": "The core properties of ARM resources.", + "type": "object", + "properties": { + "id": { + "description": "Fully qualified resource Id for the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "The name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "The type of the service - e.g. \"Microsoft.SignalRService/SignalR\"", + "type": "string", + "readOnly": true + } }, - "SignalRCreateParameters": { - "description": "Parameters for SignalR service create/update operation.\r\n\r\nKeep the same schema as AzSignalR.Models.SignalRResource", - "required": [ - "location" + "x-ms-azure-resource": true + }, + "ResourceSku": { + "description": "The billing information of the resource.(e.g. basic vs. standard)", + "required": [ + "name" + ], + "type": "object", + "properties": { + "name": { + "description": "The name of the SKU. This is typically a letter + number code, such as A0 or P3. Required (if sku is specified)", + "type": "string" + }, + "tier": { + "description": "Optional tier of this particular SKU. `Basic` is deprecated, use `Standard` instead for Basic tier", + "enum": [ + "Free", + "Basic", + "Standard", + "Premium" ], - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/SignalRUpdateParameters" - } + "type": "string", + "x-ms-enum": { + "name": "SignalRSkuTier", + "modelAsString": true + } + }, + "size": { + "description": "Optional, string. When the name field is the combination of tier and some other value, this would be the standalone code.", + "type": "string" + }, + "family": { + "description": "Optional, string. If the service has different generations of hardware, for the same SKU, then that can be captured here.", + "type": "string" + }, + "capacity": { + "format": "int32", + "description": "Optional, integer. If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not \r\npossible for the resource this may be omitted.", + "type": "integer" + } + } + }, + "SignalRProperties": { + "description": "A class that describes the properties of the SignalR service that should contain more read-only properties than AzSignalR.Models.SignalRCreateOrUpdateProperties", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/SignalRCreateOrUpdateProperties" + } + ], + "properties": { + "provisioningState": { + "description": "Provisioning state of the resource.", + "enum": [ + "Unknown", + "Succeeded", + "Failed", + "Canceled", + "Running", + "Creating", + "Updating", + "Deleting", + "Moving" ], - "properties": { - "location": { - "description": "Azure GEO region: e.g. West US | East US | North Central US | South Central US | West Europe | North Europe | East Asia | Southeast Asia | etc. \r\nThe geo region of a resource never changes after it is created.", - "type": "string" - } + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": true } - }, - "SignalRUpdateParameters": { - "description": "Parameters for SignalR service update operation", + }, + "externalIP": { + "description": "The publicly accessible IP of the SignalR service.", + "type": "string", + "readOnly": true + }, + "hostName": { + "description": "FQDN of the SignalR service instance. Format: xxx.service.signalr.net", + "type": "string", + "readOnly": true + }, + "publicPort": { + "format": "int32", + "description": "The publicly accessibly port of the SignalR service which is designed for browser/client side usage.", + "type": "integer", + "readOnly": true + }, + "serverPort": { + "format": "int32", + "description": "The publicly accessibly port of the SignalR service which is designed for customer server side usage.", + "type": "integer", + "readOnly": true + }, + "version": { + "description": "Version of the SignalR resource. Probably you need the same or higher version of client SDKs.", + "type": "string" + } + } + }, + "SignalRCreateOrUpdateProperties": { + "description": "Settings used to provision or configure the resource.", + "type": "object", + "properties": { + "hostNamePrefix": { + "description": "Prefix for the hostName of the SignalR service. Retained for future use.\r\nThe hostname will be of format: <hostNamePrefix>.service.signalr.net.", + "type": "string" + } + } + }, + "SignalRKeys": { + "description": "A class represents the access keys of SignalR service.", + "type": "object", + "properties": { + "primaryKey": { + "description": "The primary access key.", + "type": "string" + }, + "secondaryKey": { + "description": "The secondary access key.", + "type": "string" + }, + "primaryConnectionString": { + "description": "SignalR connection string constructed via the primaryKey", + "type": "string" + }, + "secondaryConnectionString": { + "description": "SignalR connection string constructed via the secondaryKey", + "type": "string" + } + } + }, + "RegenerateKeyParameters": { + "description": "Parameters describes the request to regenerate access keys", + "type": "object", + "properties": { + "keyType": { + "description": "The keyType to regenerate. Must be either 'primary' or 'secondary'(case-insensitive).", + "enum": [ + "Primary", + "Secondary" + ], + "type": "string", + "x-ms-enum": { + "name": "KeyType", + "modelAsString": true + } + } + } + }, + "SignalRCreateParameters": { + "description": "Parameters for SignalR service create/update operation.\r\n\r\nKeep the same schema as AzSignalR.Models.SignalRResource", + "required": [ + "location" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/SignalRUpdateParameters" + } + ], + "properties": { + "location": { + "description": "Azure GEO region: e.g. West US | East US | North Central US | South Central US | West Europe | North Europe | East Asia | Southeast Asia | etc. \r\nThe geo region of a resource never changes after it is created.", + "type": "string" + } + } + }, + "SignalRUpdateParameters": { + "description": "Parameters for SignalR service update operation", + "type": "object", + "properties": { + "tags": { + "description": "A list of key value pairs that describe the resource.", "type": "object", - "properties": { - "tags": { - "description": "A list of key value pairs that describe the resource.", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "sku": { - "$ref": "#/definitions/ResourceSku", - "description": "The billing information of the resource.(e.g. basic vs. standard)" - }, - "properties": { - "$ref": "#/definitions/SignalRCreateOrUpdateProperties", - "description": "Settings used to provision or configure the resource", - "x-ms-client-flatten": false - } + "additionalProperties": { + "type": "string" } + }, + "sku": { + "$ref": "#/definitions/ResourceSku", + "description": "The billing information of the resource.(e.g. basic vs. standard)" + }, + "properties": { + "$ref": "#/definitions/SignalRCreateOrUpdateProperties", + "description": "Settings used to provision or configure the resource", + "x-ms-client-flatten": false + } + } }, "SignalRUsageList": { "description": "Object that includes an array of SignalR resource usages and a possible link for next set.", @@ -987,56 +987,56 @@ } }, "parameters": { - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "Client Api Version.", - "required": true, - "type": "string", - "enum": [ - "2018-03-01-preview" - ] - }, - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "description": "Gets subscription Id which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", - "required": true, - "type": "string" - }, - "ResourceGroupParameter": { - "name": "resourceGroupName", - "in": "path", - "description": "The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "SignalRServiceName": { - "name": "resourceName", - "in": "path", - "description": "The name of the SignalR resource.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - } + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "description": "Client Api Version.", + "required": true, + "type": "string", + "enum": [ + "2018-03-01-preview" + ] + }, + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "description": "Gets subscription Id which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + "required": true, + "type": "string" + }, + "ResourceGroupParameter": { + "name": "resourceGroupName", + "in": "path", + "description": "The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "SignalRServiceName": { + "name": "resourceName", + "in": "path", + "description": "The name of the SignalR resource.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + } }, "securityDefinitions": { - "azure_auth": { - "flow": "implicit", - "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "scopes": { - "user_impersonation": "impersonate your user account" - }, - "type": "oauth2", - "description": "Azure Active Directory OAuth2 Flow" - } + "azure_auth": { + "flow": "implicit", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "scopes": { + "user_impersonation": "impersonate your user account" + }, + "type": "oauth2", + "description": "Azure Active Directory OAuth2 Flow" + } }, "security": [ - { - "azure_auth": [ - "user_impersonation" - ] - } + { + "azure_auth": [ + "user_impersonation" + ] + } ] -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/Operations_List.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/Operations_List.json index 39a0332b74e8..2d82aa54b0d8 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/Operations_List.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/Operations_List.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_CheckNameAvailability.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_CheckNameAvailability.json index eec9026b6f70..db3ef52f8391 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_CheckNameAvailability.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_CheckNameAvailability.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_CreateOrUpdate.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_CreateOrUpdate.json index 2cd719be22c0..ad34eb93d140 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_CreateOrUpdate.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_CreateOrUpdate.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Delete.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Delete.json index 4134abc4a053..225dc4f4e7cf 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Delete.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Delete.json @@ -13,4 +13,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Get.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Get.json index d39b052e4e9b..434e03dc6cbf 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Get.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Get.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListByResourceGroup.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListByResourceGroup.json index 958a5f6934f6..ccd96cc467d0 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListByResourceGroup.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListByResourceGroup.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListBySubscription.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListBySubscription.json index 3b08c07a8c86..ff858e6204cf 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListBySubscription.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListBySubscription.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListKeys.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListKeys.json index aac543c0adf8..a4ed7d20e9a1 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListKeys.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_ListKeys.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_RegenerateKey.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_RegenerateKey.json index c3e7d2fc9f32..8c454f0e9548 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_RegenerateKey.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_RegenerateKey.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Restart.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Restart.json index 4134abc4a053..225dc4f4e7cf 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Restart.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Restart.json @@ -13,4 +13,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Update.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Update.json index 309c2bf945aa..fc5f666aa6de 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Update.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/SignalR_Update.json @@ -65,4 +65,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/Usages_List.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/Usages_List.json index fe01ea5d39da..81728de0e5d5 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/Usages_List.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/examples/Usages_List.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/signalr.json b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/signalr.json index 711ddccd0463..6404524ff2fb 100644 --- a/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/signalr.json +++ b/specification/signalr/resource-manager/Microsoft.SignalRService/stable/2018-10-01/signalr.json @@ -1120,4 +1120,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json index cdea72b402e9..50f16158c996 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json @@ -992,4 +992,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json index 21da90edee76..914d197ebf0c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json @@ -303,4 +303,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json index 36d4ab97e409..f3fd894573c8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json @@ -283,4 +283,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json index a4c1c410c18d..467ba51596dd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json @@ -312,4 +312,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json index b64b083e3e6a..ec376c42b9d8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json @@ -318,4 +318,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorGet.json index 5dc9e1ba5206..5a04af427c17 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorGet.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "databaseName": "IndexAdvisor_test_3", - "advisorName": "CreateIndex", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/databases/advisors", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "recommendationsStatus": "Ok", - "lastChecked": "2017-06-20T00:24:39Z" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "databaseName": "IndexAdvisor_test_3", + "advisorName": "CreateIndex", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/databases/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "recommendationsStatus": "Ok", + "lastChecked": "2017-06-20T00:24:39Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorList.json index b5107d2e8e57..bed81d63f6bd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorList.json @@ -1,83 +1,83 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "databaseName": "IndexAdvisor_test_3", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/databases/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Database", - "recommendationsStatus": "Ok", - "lastChecked": "2017-06-20T00:24:39Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex", - "name": "DropIndex", - "type": "Microsoft.Sql/servers/databases/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Database", - "recommendationsStatus": "DbSeemsTuned", - "lastChecked": "2017-06-19T20:42:43Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DbParameterization", - "name": "DbParameterization", - "type": "Microsoft.Sql/servers/databases/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Enabled", - "autoExecuteStatusInheritedFrom": "Database", - "recommendationsStatus": "DbParameterizationIssue", - "lastChecked": "2017-06-19T19:13:03Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/SchemaIssue", - "name": "SchemaIssue", - "type": "Microsoft.Sql/servers/databases/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "PublicPreview", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default", - "recommendationsStatus": "SchemaIsNotConsistent", - "lastChecked": "2017-06-20T14:00:32Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/ForceLastGoodPlan", - "name": "ForceLastGoodPlan", - "type": "Microsoft.Sql/servers/databases/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "PrivatePreview", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "databaseName": "IndexAdvisor_test_3", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/databases/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Database", + "recommendationsStatus": "Ok", + "lastChecked": "2017-06-20T00:24:39Z" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex", + "name": "DropIndex", + "type": "Microsoft.Sql/servers/databases/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Database", + "recommendationsStatus": "DbSeemsTuned", + "lastChecked": "2017-06-19T20:42:43Z" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DbParameterization", + "name": "DbParameterization", + "type": "Microsoft.Sql/servers/databases/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Enabled", + "autoExecuteStatusInheritedFrom": "Database", + "recommendationsStatus": "DbParameterizationIssue", + "lastChecked": "2017-06-19T19:13:03Z" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/SchemaIssue", + "name": "SchemaIssue", + "type": "Microsoft.Sql/servers/databases/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "PublicPreview", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default", + "recommendationsStatus": "SchemaIsNotConsistent", + "lastChecked": "2017-06-20T14:00:32Z" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/ForceLastGoodPlan", + "name": "ForceLastGoodPlan", + "type": "Microsoft.Sql/servers/databases/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "PrivatePreview", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default" + } } + ] } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorUpdate.json index b5bc13cc70a8..3aa3700636d5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAdvisorUpdate.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "databaseName": "IndexAdvisor_test_3", + "advisorName": "CreateIndex", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "databaseName": "IndexAdvisor_test_3", - "advisorName": "CreateIndex", - "api-version": "2015-05-01-preview", - "parameters": { - "properties" : { - "autoExecuteStatus" : "Disabled" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/databases/advisors", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "recommendationsStatus": "Ok", - "lastChecked": "2017-06-20T00:24:39Z" - } - } + "properties": { + "autoExecuteStatus": "Disabled" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/databases/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "recommendationsStatus": "Ok", + "lastChecked": "2017-06-20T00:24:39Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningGet.json index 021b7b09f2eb..191c5a54469f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningGet.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningUpdateMax.json index 8834d0cfeb65..5788cc8e273b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningUpdateMax.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningUpdateMin.json index 6e662b2924a8..33eded7b0300 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAutomaticTuningUpdateMin.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json index 2d4883bd79ed..ae0dcecf831f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json @@ -8,8 +8,8 @@ "api-version": "2015-05-01-preview", "parameters": { "properties": { - "state": "Enabled", - "IsAzureMonitorTargetEnabled": true + "state": "Enabled", + "IsAzureMonitorTargetEnabled": true } } }, @@ -20,14 +20,18 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "isAzureMonitorTargetEnabled": true, - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP","FAILED_DATABASE_AUTHENTICATION_GROUP","BATCH_COMPLETED_GROUP"] + "properties": { + "state": "Enabled", + "isAzureMonitorTargetEnabled": true, + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ] } } }, @@ -37,16 +41,20 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "isAzureMonitorTargetEnabled": true, - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP","FAILED_DATABASE_AUTHENTICATION_GROUP","BATCH_COMPLETED_GROUP"] + "properties": { + "state": "Enabled", + "isAzureMonitorTargetEnabled": true, + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ] } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMax.json index 194627f146a2..7bfa3b938cce 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMax.json @@ -8,14 +8,18 @@ "api-version": "2015-05-01-preview", "parameters": { "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 6, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups":["DATABASE_LOGOUT_GROUP","DATABASE_ROLE_MEMBER_CHANGE_GROUP", "UPDATE on database::TestDatabaseName by public"], - "isAzureMonitorTargetEnabled": true + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 6, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "DATABASE_LOGOUT_GROUP", + "DATABASE_ROLE_MEMBER_CHANGE_GROUP", + "UPDATE on database::TestDatabaseName by public" + ], + "isAzureMonitorTargetEnabled": true } } }, @@ -26,15 +30,19 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": ["DATABASE_LOGOUT_GROUP", "DATABASE_ROLE_MEMBER_CHANGE_GROUP", "UPDATE on database::TestDatabaseName by public"], - "isAzureMonitorTargetEnabled": true + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "DATABASE_LOGOUT_GROUP", + "DATABASE_ROLE_MEMBER_CHANGE_GROUP", + "UPDATE on database::TestDatabaseName by public" + ], + "isAzureMonitorTargetEnabled": true } } }, @@ -44,17 +52,21 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "DATABASE_LOGOUT_GROUP", "DATABASE_ROLE_MEMBER_CHANGE_GROUP", "UPDATE on database::TestDatabaseName by public" ], - "isAzureMonitorTargetEnabled": true + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "DATABASE_LOGOUT_GROUP", + "DATABASE_ROLE_MEMBER_CHANGE_GROUP", + "UPDATE on database::TestDatabaseName by public" + ], + "isAzureMonitorTargetEnabled": true } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMin.json index 59cb4bb1d947..03709b48f11d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMin.json @@ -8,9 +8,9 @@ "api-version": "2015-05-01-preview", "parameters": { "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } } }, @@ -21,14 +21,18 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP","FAILED_DATABASE_AUTHENTICATION_GROUP","BATCH_COMPLETED_GROUP"] + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ] } } }, @@ -38,16 +42,20 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP","FAILED_DATABASE_AUTHENTICATION_GROUP","BATCH_COMPLETED_GROUP"] + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ] } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingGet.json index 246b2fb4a226..dae05c903d9a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingGet.json @@ -9,20 +9,20 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/auditingSettings", - "kind": "V12", - "properties": { - "state": "Disabled", - "storageEndpoint": "", - "retentionDays": 0, - "auditActionsAndGroups": [], - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/auditingSettings", + "kind": "V12", + "properties": { + "state": "Disabled", + "storageEndpoint": "", + "retentionDays": 0, + "auditActionsAndGroups": [], + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionGet.json index 47b8086f826d..c778e73a95d0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionGet.json @@ -1,62 +1,62 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "databaseName": "IndexAdvisor_test_3", - "advisorName": "CreateIndex", - "recommendedActionName": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "name": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:04Z", - "lastRefresh": "2017-03-01T14:38:04Z", - "state": { - "currentValue": "Active", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B] ON [CRM].[DataPoints] ([Name],[Money],[Power]) INCLUDE ([Hour], [System], [LastChanged]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 1440.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 209.3125 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints]", - "indexColumns": "[Name],[Money],[Power]", - "includedColumns": "[Hour], [System], [LastChanged]" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "databaseName": "IndexAdvisor_test_3", + "advisorName": "CreateIndex", + "recommendedActionName": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "name": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:04Z", + "lastRefresh": "2017-03-01T14:38:04Z", + "state": { + "currentValue": "Active", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B] ON [CRM].[DataPoints] ([Name],[Money],[Power]) INCLUDE ([Hour], [System], [LastChanged]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 1440.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 209.3125 } + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints]", + "indexColumns": "[Name],[Money],[Power]", + "includedColumns": "[Hour], [System], [LastChanged]" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionList.json index 8306344333b4..e0ee10a15183 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionList.json @@ -1,197 +1,197 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "databaseName": "IndexAdvisor_test_3", - "advisorName": "CreateIndex", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "name": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:04Z", - "lastRefresh": "2017-03-01T14:38:04Z", - "state": { - "currentValue": "Active", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B] ON [CRM].[DataPoints] ([Name],[Money],[Power]) INCLUDE ([Hour], [System], [LastChanged]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 1440.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 209.3125 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints]", - "indexColumns": "[Name],[Money],[Power]", - "includedColumns": "[Hour], [System], [LastChanged]" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", - "name": "IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Success", - "actionInitiatedBy": "User", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionStartTime": "2017-03-01T14:38:05Z", - "executeActionDuration": "PT1M", - "executeActionInitiatedBy": "User", - "executeActionInitiatedTime": "2017-03-01T14:38:05Z", - "score": 3, - "implementationDetails": { - "method": "TSql", - "script": "DROP INDEX [nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC] ON [dbo].[DataPoints]" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 5040.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 120.0 - } - ], - "observedImpact": [ - { - "dimensionName": "AffectedQueriesCpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": -12.7, - "changeValueRelative": -0.9 - }, - { - "dimensionName": "CpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": -12.7, - "changeValueRelative": -0.3175 - }, - { - "dimensionName": "QueriesWithImprovedPerformance", - "unit": "Count", - "absoluteValue": 12.0 - }, - { - "dimensionName": "QueriesWithRegressedPerformance", - "unit": "Count", - "absoluteValue": 1.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 130.742187 - }, - { - "dimensionName": "VerificationProgress", - "unit": "Percent", - "absoluteValue": 0.0 - } - ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC", - "indexType": "NONCLUSTERED", - "schema": "[dbo]", - "table": "[DataPoints]", - "indexColumns": "[Name],[Money]", - "includedColumns": "[Power],[Pineapple]", - "indexActionStartTime": "2017-03-01T14:38:05.337", - "indexActionDuration": "00:01:00" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", - "name": "IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Active", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "score": 3, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE] ON [dbo].[Employees] ([City], [State]) INCLUDE ([Postal]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 17.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 128.0 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE", - "indexType": "NONCLUSTERED", - "schema": "[dbo]", - "table": "[Employees]", - "indexColumns": "[City], [State]", - "includedColumns": "[Postal]" - } - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "databaseName": "IndexAdvisor_test_3", + "advisorName": "CreateIndex", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "name": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:04Z", + "lastRefresh": "2017-03-01T14:38:04Z", + "state": { + "currentValue": "Active", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B] ON [CRM].[DataPoints] ([Name],[Money],[Power]) INCLUDE ([Hour], [System], [LastChanged]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 1440.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 209.3125 + } + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints]", + "indexColumns": "[Name],[Money],[Power]", + "includedColumns": "[Hour], [System], [LastChanged]" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", + "name": "IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Success", + "actionInitiatedBy": "User", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionStartTime": "2017-03-01T14:38:05Z", + "executeActionDuration": "PT1M", + "executeActionInitiatedBy": "User", + "executeActionInitiatedTime": "2017-03-01T14:38:05Z", + "score": 3, + "implementationDetails": { + "method": "TSql", + "script": "DROP INDEX [nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC] ON [dbo].[DataPoints]" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 5040.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 120.0 + } + ], + "observedImpact": [ + { + "dimensionName": "AffectedQueriesCpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": -12.7, + "changeValueRelative": -0.9 + }, + { + "dimensionName": "CpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": -12.7, + "changeValueRelative": -0.3175 + }, + { + "dimensionName": "QueriesWithImprovedPerformance", + "unit": "Count", + "absoluteValue": 12.0 + }, + { + "dimensionName": "QueriesWithRegressedPerformance", + "unit": "Count", + "absoluteValue": 1.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 130.742187 + }, + { + "dimensionName": "VerificationProgress", + "unit": "Percent", + "absoluteValue": 0.0 + } + ], + "timeSeries": [], + "details": { + "indexName": "nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC", + "indexType": "NONCLUSTERED", + "schema": "[dbo]", + "table": "[DataPoints]", + "indexColumns": "[Name],[Money]", + "includedColumns": "[Power],[Pineapple]", + "indexActionStartTime": "2017-03-01T14:38:05.337", + "indexActionDuration": "00:01:00" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", + "name": "IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Active", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "score": 3, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE] ON [dbo].[Employees] ([City], [State]) INCLUDE ([Postal]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 17.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 128.0 + } + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE", + "indexType": "NONCLUSTERED", + "schema": "[dbo]", + "table": "[Employees]", + "indexColumns": "[City], [State]", + "includedColumns": "[Postal]" + } + } } + ] } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionListExpand.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionListExpand.json index e5072aa377fc..3f771c203104 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionListExpand.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionListExpand.json @@ -1,625 +1,625 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "databaseName": "IndexAdvisor_test_3", - "advisorName": "CreateIndex", - "api-version": "2015-05-01-preview", - "$expand": "recommendedActions" - }, - "responses": { - "200": { - "body": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/databases/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Database", - "recommendationsStatus": "Ok", - "lastChecked": "2017-06-20T16:39:16Z", - "recommendedActions": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "name": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:04Z", - "lastRefresh": "2017-03-01T14:38:04Z", - "state": { - "currentValue": "Active", - "lastModified": "2017-06-20T15:15:40Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B] ON [CRM].[DataPoints] ([Name],[Money],[Power]) INCLUDE ([Hour], [System], [LastChanged]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 1440.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 209.3125 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints]", - "indexColumns": "[Name],[Money],[Power]", - "includedColumns": "[Hour], [System], [LastChanged]" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", - "name": "IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Success", - "actionInitiatedBy": "User", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionStartTime": "2017-03-01T14:38:05Z", - "executeActionDuration": "PT1M", - "executeActionInitiatedBy": "User", - "executeActionInitiatedTime": "2017-03-01T14:38:05Z", - "score": 3, - "implementationDetails": { - "method": "TSql", - "script": "DROP INDEX [nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC] ON [dbo].[DataPoints]" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 5040.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 120.0 - } - ], - "observedImpact": [ - { - "dimensionName": "AffectedQueriesCpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": -12.7, - "changeValueRelative": -0.9 - }, - { - "dimensionName": "CpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": -12.7, - "changeValueRelative": -0.3175 - }, - { - "dimensionName": "QueriesWithImprovedPerformance", - "unit": "Count", - "absoluteValue": 12.0 - }, - { - "dimensionName": "QueriesWithRegressedPerformance", - "unit": "Count", - "absoluteValue": 1.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 130.742187 - }, - { - "dimensionName": "VerificationProgress", - "unit": "Percent", - "absoluteValue": 0.0 - } - ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC", - "indexType": "NONCLUSTERED", - "schema": "[dbo]", - "table": "[DataPoints]", - "indexColumns": "[Name],[Money]", - "includedColumns": "[Power],[Pineapple]", - "indexActionStartTime": "2017-03-01T14:38:05.337", - "indexActionDuration": "00:01:00" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", - "name": "IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Active", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "score": 3, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE] ON [dbo].[Employees] ([City], [State]) INCLUDE ([Postal]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 17.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 128.0 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE", - "indexType": "NONCLUSTERED", - "schema": "[dbo]", - "table": "[Employees]", - "indexColumns": "[City], [State]", - "includedColumns": "[Postal]" - } - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "databaseName": "IndexAdvisor_test_3", + "advisorName": "CreateIndex", + "api-version": "2015-05-01-preview", + "$expand": "recommendedActions" + }, + "responses": { + "200": { + "body": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/databases/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Database", + "recommendationsStatus": "Ok", + "lastChecked": "2017-06-20T16:39:16Z", + "recommendedActions": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "name": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:04Z", + "lastRefresh": "2017-03-01T14:38:04Z", + "state": { + "currentValue": "Active", + "lastModified": "2017-06-20T15:15:40Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B] ON [CRM].[DataPoints] ([Name],[Money],[Power]) INCLUDE ([Hour], [System], [LastChanged]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 1440.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 209.3125 } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex", - "name": "DropIndex", - "type": "Microsoft.Sql/servers/databases/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Database", - "recommendationsStatus": "DbSeemsTuned", - "lastChecked": "2017-06-19T20:42:43Z", - "recommendedActions": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints1]_13ADA5F354E9E14A983B", - "name": "IR_[CRM]_[DataPoints1]_13ADA5F354E9E14A983B", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "Unused", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Pending", - "actionInitiatedBy": "System", - "lastModified": "2017-03-23T14:14:35Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionInitiatedBy": "System", - "executeActionInitiatedTime": "2017-03-23T14:14:35Z", - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "DROP INDEX [IX_FF] ON [CRM].[DataPoints1]" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 645.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 342.0 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "IX_FF", - "originalIndexName": "IX_COM_SKU_SKUDepartmentID", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints1]", - "indexColumns": "[Protocol],[SessionId]", - "includedColumns": "[Apple]" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints1]_29AEA82685D24704DE1A", - "name": "IR_[CRM]_[DataPoints1]_29AEA82685D24704DE1A", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "Duplicate", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Pending", - "actionInitiatedBy": "System", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionInitiatedBy": "System", - "executeActionInitiatedTime": "2017-03-01T14:38:05Z", - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "DROP INDEX [MyIndex123] ON [CRM].[DataPoints1]" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 803.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 144.6875 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "MyIndex123", - "originalIndexName": "IX_COM_SKU_SKUDepartmentID", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints1]", - "indexColumns": "[Cookies],[SessionId]", - "includedColumns": "[Apple]" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints2]_E4B21F229379807E531A", - "name": "IR_[CRM]_[DataPoints2]_E4B21F229379807E531A", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "Duplicate", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Success", - "actionInitiatedBy": "User", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionStartTime": "2017-03-01T14:38:05Z", - "executeActionDuration": "PT1M", - "executeActionInitiatedBy": "User", - "executeActionInitiatedTime": "2017-03-01T14:38:05Z", - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [MyIndex321] ON [CRM].[DataPoints2] ([Cookies],[SessionId],[Protocol]) INCLUDE ([Apple]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 705.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 342.0 - } - ], - "observedImpact": [ - { - "dimensionName": "AffectedQueriesCpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": 0.0, - "changeValueRelative": 0.0 - }, - { - "dimensionName": "CpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": 0.0, - "changeValueRelative": 0.0 - }, - { - "dimensionName": "QueriesWithImprovedPerformance", - "unit": "Count", - "absoluteValue": 0.0 - }, - { - "dimensionName": "QueriesWithRegressedPerformance", - "unit": "Count", - "absoluteValue": 0.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": -342.0 - }, - { - "dimensionName": "VerificationProgress", - "unit": "Percent", - "absoluteValue": 0.0 - } - ], - "timeSeries": [ ], - "details": { - "indexName": "MyIndex321", - "originalIndexName": "IX_COM_SKU_SKUDepartmentID", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints2]", - "indexColumns": "[Cookies],[SessionId],[Protocol]", - "includedColumns": "[Apple]", - "indexActionStartTime": "2017-03-01T14:38:05.697", - "indexActionDuration": "00:01:00" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex/recommendedActions/IR_[dbo]_[FactFinance]_13ADA5F354E9E14A983B", - "name": "IR_[dbo]_[FactFinance]_13ADA5F354E9E14A983B", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "Duplicate", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Success", - "actionInitiatedBy": "System", - "lastModified": "2017-02-28T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionStartTime": "2017-03-01T14:38:05Z", - "executeActionDuration": "PT1M", - "executeActionInitiatedBy": "System", - "executeActionInitiatedTime": "2017-03-01T14:38:05Z", - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [IX_FF] ON [dbo].[FactFinance] ([FinanceKey],[DateKey]) INCLUDE ([OrganizationKey]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 705.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 342.0 - } - ], - "observedImpact": [ - { - "dimensionName": "AffectedQueriesCpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": 0.0, - "changeValueRelative": 0.0 - }, - { - "dimensionName": "CpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": 0.0, - "changeValueRelative": 0.0 - }, - { - "dimensionName": "QueriesWithImprovedPerformance", - "unit": "Count", - "absoluteValue": 0.0 - }, - { - "dimensionName": "QueriesWithRegressedPerformance", - "unit": "Count", - "absoluteValue": 0.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": -342.0 - }, - { - "dimensionName": "VerificationProgress", - "unit": "Percent", - "absoluteValue": 0.0 - } - ], - "timeSeries": [ ], - "details": { - "indexName": "IX_FF", - "originalIndexName": "IX_COM_SKU_SKUDepartmentID", - "indexType": "NONCLUSTERED", - "schema": "[dbo]", - "table": "[FactFinance]", - "indexColumns": "[FinanceKey],[DateKey]", - "includedColumns": "[OrganizationKey]", - "indexActionStartTime": "2017-03-01T14:38:05.837", - "indexActionDuration": "00:01:00" - } - } - } - ] + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints]", + "indexColumns": "[Name],[Money],[Power]", + "includedColumns": "[Hour], [System], [LastChanged]" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", + "name": "IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Success", + "actionInitiatedBy": "User", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionStartTime": "2017-03-01T14:38:05Z", + "executeActionDuration": "PT1M", + "executeActionInitiatedBy": "User", + "executeActionInitiatedTime": "2017-03-01T14:38:05Z", + "score": 3, + "implementationDetails": { + "method": "TSql", + "script": "DROP INDEX [nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC] ON [dbo].[DataPoints]" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 5040.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 120.0 + } + ], + "observedImpact": [ + { + "dimensionName": "AffectedQueriesCpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": -12.7, + "changeValueRelative": -0.9 + }, + { + "dimensionName": "CpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": -12.7, + "changeValueRelative": -0.3175 + }, + { + "dimensionName": "QueriesWithImprovedPerformance", + "unit": "Count", + "absoluteValue": 12.0 + }, + { + "dimensionName": "QueriesWithRegressedPerformance", + "unit": "Count", + "absoluteValue": 1.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 130.742187 + }, + { + "dimensionName": "VerificationProgress", + "unit": "Percent", + "absoluteValue": 0.0 } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DbParameterization", - "name": "DbParameterization", - "type": "Microsoft.Sql/servers/databases/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Enabled", - "autoExecuteStatusInheritedFrom": "Database", - "recommendationsStatus": "DbParameterizationIssue", - "lastChecked": "2017-06-19T19:13:03Z", - "recommendedActions": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DbParameterization/recommendedActions/ForceDbParameterization", - "name": "ForceDbParameterization", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:37:44Z", - "lastRefresh": "2017-03-01T14:37:44Z", - "state": { - "currentValue": "Pending", - "actionInitiatedBy": "System", - "lastModified": "2017-05-11T15:08:31Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionInitiatedBy": "System", - "executeActionInitiatedTime": "2017-05-11T15:08:31Z", - "score": 3, - "implementationDetails": { - "method": "TSql", - "script": "ALTER DATABASE [IndexAdvisor_test_3] SET PARAMETERIZATION FORCED" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "CpuSavings", - "unit": "Percent", - "changeValueAbsolute": 22.5613696939135 - }, - { - "dimensionName": "QueryDurationDecrease", - "unit": "secs", - "changeValueAbsolute": 0.701823681806341 - } - ], - "observedImpact": [ ], - "timeSeries": [ ] - } - } - ] + ], + "timeSeries": [], + "details": { + "indexName": "nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC", + "indexType": "NONCLUSTERED", + "schema": "[dbo]", + "table": "[DataPoints]", + "indexColumns": "[Name],[Money]", + "includedColumns": "[Power],[Pineapple]", + "indexActionStartTime": "2017-03-01T14:38:05.337", + "indexActionDuration": "00:01:00" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", + "name": "IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Active", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "score": 3, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE] ON [dbo].[Employees] ([City], [State]) INCLUDE ([Postal]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 17.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 128.0 } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/SchemaIssue", - "name": "SchemaIssue", - "type": "Microsoft.Sql/servers/databases/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "PublicPreview", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default", - "recommendationsStatus": "SchemaIsNotConsistent", - "lastChecked": "2017-06-20T18:50:21Z", - "recommendedActions": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/SchemaIssue/recommendedActions/SchemaProblem_1A258C5714A7410C9D23", - "name": "SchemaProblem_1A258C5714A7410C9D23", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "SchemaProblem", - "validSince": "2017-03-01T14:37:48Z", - "lastRefresh": "2017-06-07T22:19:53Z", - "state": { - "currentValue": "Active", - "lastModified": "2017-03-01T14:37:48Z" - }, - "isExecutableAction": false, - "isRevertableAction": false, - "isArchivedAction": false, - "score": 3, - "implementationDetails": { }, - "errorDetails": { }, - "estimatedImpact": [ ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "sqlErrorNumber": 208, - "sqlErrorMessage": "Invalid object name 'dbo.Companies'.", - "sqlErrorCount": 342482 - } - } - } - ] + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE", + "indexType": "NONCLUSTERED", + "schema": "[dbo]", + "table": "[Employees]", + "indexColumns": "[City], [State]", + "includedColumns": "[Postal]" + } + } + } + ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex", + "name": "DropIndex", + "type": "Microsoft.Sql/servers/databases/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Database", + "recommendationsStatus": "DbSeemsTuned", + "lastChecked": "2017-06-19T20:42:43Z", + "recommendedActions": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints1]_13ADA5F354E9E14A983B", + "name": "IR_[CRM]_[DataPoints1]_13ADA5F354E9E14A983B", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "Unused", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Pending", + "actionInitiatedBy": "System", + "lastModified": "2017-03-23T14:14:35Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionInitiatedBy": "System", + "executeActionInitiatedTime": "2017-03-23T14:14:35Z", + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "DROP INDEX [IX_FF] ON [CRM].[DataPoints1]" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 645.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 342.0 + } + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "IX_FF", + "originalIndexName": "IX_COM_SKU_SKUDepartmentID", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints1]", + "indexColumns": "[Protocol],[SessionId]", + "includedColumns": "[Apple]" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints1]_29AEA82685D24704DE1A", + "name": "IR_[CRM]_[DataPoints1]_29AEA82685D24704DE1A", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "Duplicate", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Pending", + "actionInitiatedBy": "System", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionInitiatedBy": "System", + "executeActionInitiatedTime": "2017-03-01T14:38:05Z", + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "DROP INDEX [MyIndex123] ON [CRM].[DataPoints1]" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 803.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 144.6875 + } + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "MyIndex123", + "originalIndexName": "IX_COM_SKU_SKUDepartmentID", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints1]", + "indexColumns": "[Cookies],[SessionId]", + "includedColumns": "[Apple]" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints2]_E4B21F229379807E531A", + "name": "IR_[CRM]_[DataPoints2]_E4B21F229379807E531A", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "Duplicate", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Success", + "actionInitiatedBy": "User", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionStartTime": "2017-03-01T14:38:05Z", + "executeActionDuration": "PT1M", + "executeActionInitiatedBy": "User", + "executeActionInitiatedTime": "2017-03-01T14:38:05Z", + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [MyIndex321] ON [CRM].[DataPoints2] ([Cookies],[SessionId],[Protocol]) INCLUDE ([Apple]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 705.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 342.0 } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/ForceLastGoodPlan", - "name": "ForceLastGoodPlan", - "type": "Microsoft.Sql/servers/databases/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "PrivatePreview", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default", - "recommendedActions": [ ] + ], + "observedImpact": [ + { + "dimensionName": "AffectedQueriesCpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": 0.0, + "changeValueRelative": 0.0 + }, + { + "dimensionName": "CpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": 0.0, + "changeValueRelative": 0.0 + }, + { + "dimensionName": "QueriesWithImprovedPerformance", + "unit": "Count", + "absoluteValue": 0.0 + }, + { + "dimensionName": "QueriesWithRegressedPerformance", + "unit": "Count", + "absoluteValue": 0.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": -342.0 + }, + { + "dimensionName": "VerificationProgress", + "unit": "Percent", + "absoluteValue": 0.0 } + ], + "timeSeries": [], + "details": { + "indexName": "MyIndex321", + "originalIndexName": "IX_COM_SKU_SKUDepartmentID", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints2]", + "indexColumns": "[Cookies],[SessionId],[Protocol]", + "includedColumns": "[Apple]", + "indexActionStartTime": "2017-03-01T14:38:05.697", + "indexActionDuration": "00:01:00" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex/recommendedActions/IR_[dbo]_[FactFinance]_13ADA5F354E9E14A983B", + "name": "IR_[dbo]_[FactFinance]_13ADA5F354E9E14A983B", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "Duplicate", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Success", + "actionInitiatedBy": "System", + "lastModified": "2017-02-28T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionStartTime": "2017-03-01T14:38:05Z", + "executeActionDuration": "PT1M", + "executeActionInitiatedBy": "System", + "executeActionInitiatedTime": "2017-03-01T14:38:05Z", + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [IX_FF] ON [dbo].[FactFinance] ([FinanceKey],[DateKey]) INCLUDE ([OrganizationKey]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 705.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 342.0 + } + ], + "observedImpact": [ + { + "dimensionName": "AffectedQueriesCpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": 0.0, + "changeValueRelative": 0.0 + }, + { + "dimensionName": "CpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": 0.0, + "changeValueRelative": 0.0 + }, + { + "dimensionName": "QueriesWithImprovedPerformance", + "unit": "Count", + "absoluteValue": 0.0 + }, + { + "dimensionName": "QueriesWithRegressedPerformance", + "unit": "Count", + "absoluteValue": 0.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": -342.0 + }, + { + "dimensionName": "VerificationProgress", + "unit": "Percent", + "absoluteValue": 0.0 + } + ], + "timeSeries": [], + "details": { + "indexName": "IX_FF", + "originalIndexName": "IX_COM_SKU_SKUDepartmentID", + "indexType": "NONCLUSTERED", + "schema": "[dbo]", + "table": "[FactFinance]", + "indexColumns": "[FinanceKey],[DateKey]", + "includedColumns": "[OrganizationKey]", + "indexActionStartTime": "2017-03-01T14:38:05.837", + "indexActionDuration": "00:01:00" + } + } + } + ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DbParameterization", + "name": "DbParameterization", + "type": "Microsoft.Sql/servers/databases/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Enabled", + "autoExecuteStatusInheritedFrom": "Database", + "recommendationsStatus": "DbParameterizationIssue", + "lastChecked": "2017-06-19T19:13:03Z", + "recommendedActions": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DbParameterization/recommendedActions/ForceDbParameterization", + "name": "ForceDbParameterization", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:37:44Z", + "lastRefresh": "2017-03-01T14:37:44Z", + "state": { + "currentValue": "Pending", + "actionInitiatedBy": "System", + "lastModified": "2017-05-11T15:08:31Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionInitiatedBy": "System", + "executeActionInitiatedTime": "2017-05-11T15:08:31Z", + "score": 3, + "implementationDetails": { + "method": "TSql", + "script": "ALTER DATABASE [IndexAdvisor_test_3] SET PARAMETERIZATION FORCED" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "CpuSavings", + "unit": "Percent", + "changeValueAbsolute": 22.5613696939135 + }, + { + "dimensionName": "QueryDurationDecrease", + "unit": "secs", + "changeValueAbsolute": 0.701823681806341 + } + ], + "observedImpact": [], + "timeSeries": [] + } + } + ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/SchemaIssue", + "name": "SchemaIssue", + "type": "Microsoft.Sql/servers/databases/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "PublicPreview", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default", + "recommendationsStatus": "SchemaIsNotConsistent", + "lastChecked": "2017-06-20T18:50:21Z", + "recommendedActions": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/SchemaIssue/recommendedActions/SchemaProblem_1A258C5714A7410C9D23", + "name": "SchemaProblem_1A258C5714A7410C9D23", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "SchemaProblem", + "validSince": "2017-03-01T14:37:48Z", + "lastRefresh": "2017-06-07T22:19:53Z", + "state": { + "currentValue": "Active", + "lastModified": "2017-03-01T14:37:48Z" + }, + "isExecutableAction": false, + "isRevertableAction": false, + "isArchivedAction": false, + "score": 3, + "implementationDetails": {}, + "errorDetails": {}, + "estimatedImpact": [], + "observedImpact": [], + "timeSeries": [], + "details": { + "sqlErrorNumber": 208, + "sqlErrorMessage": "Invalid object name 'dbo.Companies'.", + "sqlErrorCount": 342482 + } } + } ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/ForceLastGoodPlan", + "name": "ForceLastGoodPlan", + "type": "Microsoft.Sql/servers/databases/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "PrivatePreview", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default", + "recommendedActions": [] + } } + ] } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionUpdate.json index 16c59d2c0124..6dee4cbd5a92 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseRecommendedActionUpdate.json @@ -1,72 +1,72 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "databaseName": "IndexAdvisor_test_3", + "advisorName": "CreateIndex", + "recommendedActionName": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "databaseName": "IndexAdvisor_test_3", - "advisorName": "CreateIndex", - "recommendedActionName": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "state": { - "currentValue": "Pending" - } - } + "properties": { + "state": { + "currentValue": "Pending" } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "name": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:04Z", - "lastRefresh": "2017-03-01T14:38:04Z", - "state": { - "currentValue": "Pending", - "actionInitiatedBy": "User", - "lastModified": "2017-06-20T15:11:15Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionInitiatedBy": "User", - "executeActionInitiatedTime": "2017-06-20T15:11:15Z", - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B] ON [CRM].[DataPoints] ([Name],[Money],[Power]) INCLUDE ([Hour], [System], [LastChanged]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 1440.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 209.3125 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints]", - "indexColumns": "[Name],[Money],[Power]", - "includedColumns": "[Hour], [System], [LastChanged]" - } - } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex/recommendedActions/IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "name": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "type": "Microsoft.Sql/servers/databases/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:04Z", + "lastRefresh": "2017-03-01T14:38:04Z", + "state": { + "currentValue": "Pending", + "actionInitiatedBy": "User", + "lastModified": "2017-06-20T15:11:15Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionInitiatedBy": "User", + "executeActionInitiatedTime": "2017-06-20T15:11:15Z", + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B] ON [CRM].[DataPoints] ([Name],[Money],[Power]) INCLUDE ([Hour], [System], [LastChanged]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 1440.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 209.3125 } + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints]", + "indexColumns": "[Name],[Money],[Power]", + "includedColumns": "[Hour], [System], [LastChanged]" + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorCreateOrUpdateKeyVault.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorCreateOrUpdateKeyVault.json index 10144976a6fd..b9857c81ea30 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorCreateOrUpdateKeyVault.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorCreateOrUpdateKeyVault.json @@ -1,31 +1,31 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "encryptionProtectorName": "current", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "encryptionProtectorName": "current", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "serverKeyType": "AzureKeyVault", - "serverKeyName": "someVault_someKey_01234567890123456789012345678901" - } + "properties": { + "serverKeyType": "AzureKeyVault", + "serverKeyName": "someVault_someKey_01234567890123456789012345678901" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/encryptionProtector/current", + "name": "current", + "type": "Microsoft.Sql/servers/encryptionProtector", + "location": "West US", + "kind": "azurekeyvault", + "properties": { + "serverKeyName": "someVault_someKey_01234567890123456789012345678901", + "serverKeyType": "AzureKeyVault" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/encryptionProtector/current", - "name": "current", - "type": "Microsoft.Sql/servers/encryptionProtector", - "location": "West US", - "kind": "azurekeyvault", - "properties": { - "serverKeyName": "someVault_someKey_01234567890123456789012345678901", - "serverKeyType": "AzureKeyVault" - } - } - }, - "202": { } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorCreateOrUpdateServiceManaged.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorCreateOrUpdateServiceManaged.json index 48f97f52cb53..8ced9a688df8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorCreateOrUpdateServiceManaged.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorCreateOrUpdateServiceManaged.json @@ -1,31 +1,31 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "encryptionProtectorName": "current", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "encryptionProtectorName": "current", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "serverKeyType": "ServiceManaged", - "serverKeyName": "ServiceManaged" - } + "properties": { + "serverKeyType": "ServiceManaged", + "serverKeyName": "ServiceManaged" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/encryptionProtector/current", + "name": "current", + "type": "Microsoft.Sql/servers/encryptionProtector", + "location": "West US", + "kind": "servicemanaged", + "properties": { + "serverKeyName": "ServiceManaged", + "serverKeyType": "ServiceManaged" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/encryptionProtector/current", - "name": "current", - "type": "Microsoft.Sql/servers/encryptionProtector", - "location": "West US", - "kind": "servicemanaged", - "properties": { - "serverKeyName": "ServiceManaged", - "serverKeyType": "ServiceManaged" - } - } - }, - "202": { } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorGet.json index 2c2943386d5f..81c5c1363ea3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorGet.json @@ -3,7 +3,7 @@ "subscriptionId": "00000000-1111-2222-3333-444444444444", "resourceGroupName": "sqlcrudtest-7398", "serverName": "sqlcrudtest-4645", - "encryptionProtectorName": "current", + "encryptionProtectorName": "current", "api-version": "2015-05-01-preview" }, "responses": { @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorList.json index c4fd09cf1bfb..6db301596a7c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/EncryptionProtectorList.json @@ -21,8 +21,8 @@ "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901" } } - ] + ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupCreateOrUpdate.json index 8153390ddffe..fc791611ae2b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupCreateOrUpdate.json @@ -16,7 +16,7 @@ }, "partnerServers": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server" } ], "databases": [ @@ -27,66 +27,66 @@ } }, "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/failoverGroups/failover-group-test-3", - "name": "failover-group-test-3", - "type": "Microsoft.Sql/servers/failoverGroups", - "location": "Japan East", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerServers": [ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", - "location":"Japan West", - "replicationRole":"Secondary" - } - ], - "databases": [ - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/databases/testdb-1", - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/databases/testdb-2" - ] + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/failoverGroups/failover-group-test-3", + "name": "failover-group-test-3", + "type": "Microsoft.Sql/servers/failoverGroups", + "location": "Japan East", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerServers": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", + "location": "Japan West", + "replicationRole": "Secondary" } + ], + "databases": [ + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/databases/testdb-1", + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/databases/testdb-2" + ] } + } }, "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/failoverGroups/failover-group-test-3", - "name": "failover-group-test-3", - "type": "Microsoft.Sql/servers/failoverGroups", - "location": "Japan East", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerServers": [ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", - "location":"Japan West", - "replicationRole":"Secondary" - } - ], - "databases": [ - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/databases/testdb-1", - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/databases/testdb-2" - ] + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/failoverGroups/failover-group-test-3", + "name": "failover-group-test-3", + "type": "Microsoft.Sql/servers/failoverGroups", + "location": "Japan East", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerServers": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", + "location": "Japan West", + "replicationRole": "Secondary" } + ], + "databases": [ + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/databases/testdb-1", + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/databases/testdb-2" + ] } + } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupDelete.json index 60c5ceabb65d..10e7c6312935 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupDelete.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupFailover.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupFailover.json index 91a8443984be..83ae014b1fa2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupFailover.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupFailover.json @@ -7,36 +7,36 @@ "api-version": "2015-05-01-preview" }, "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/failoverGroups/failover-group-test-3", - "name": "failover-group-test-3", - "type": "Microsoft.Sql/servers/failoverGroups", - "location": "Japan West", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 120 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerServers": [ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server", - "location":"Japan East", - "replicationRole":"Secondary" - } - ], - "databases": [ - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/databases/testdb-1", - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/databases/testdb-2" - ] + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/failoverGroups/failover-group-test-3", + "name": "failover-group-test-3", + "type": "Microsoft.Sql/servers/failoverGroups", + "location": "Japan West", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 120 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerServers": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server", + "location": "Japan East", + "replicationRole": "Secondary" } + ], + "databases": [ + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/databases/testdb-1", + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/databases/testdb-2" + ] } + } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupForceFailoverAllowDataLoss.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupForceFailoverAllowDataLoss.json index 91a8443984be..83ae014b1fa2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupForceFailoverAllowDataLoss.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupForceFailoverAllowDataLoss.json @@ -7,36 +7,36 @@ "api-version": "2015-05-01-preview" }, "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/failoverGroups/failover-group-test-3", - "name": "failover-group-test-3", - "type": "Microsoft.Sql/servers/failoverGroups", - "location": "Japan West", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 120 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerServers": [ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server", - "location":"Japan East", - "replicationRole":"Secondary" - } - ], - "databases": [ - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/databases/testdb-1", - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/databases/testdb-2" - ] + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/failoverGroups/failover-group-test-3", + "name": "failover-group-test-3", + "type": "Microsoft.Sql/servers/failoverGroups", + "location": "Japan West", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 120 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerServers": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server", + "location": "Japan East", + "replicationRole": "Secondary" } + ], + "databases": [ + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/databases/testdb-1", + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server/databases/testdb-2" + ] } + } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupGet.json index 7e123d0e0327..0553e79a8214 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupGet.json @@ -8,31 +8,31 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/failoverGroups/failover-group-test", - "name": "failover-group-test", - "type": "Microsoft.Sql/servers/failoverGroups", - "location": "Japan East", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerServers": [ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", - "location":"Japan West", - "replicationRole":"Secondary" - } - ], - "databases": [] + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/failoverGroups/failover-group-test", + "name": "failover-group-test", + "type": "Microsoft.Sql/servers/failoverGroups", + "location": "Japan East", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerServers": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", + "location": "Japan West", + "replicationRole": "Secondary" } + ], + "databases": [] } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupList.json index 5f1a76c1c66f..dfd2d035fdd0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupList.json @@ -26,9 +26,9 @@ "replicationState": "CATCH_UP", "partnerServers": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", - "location":"Japan West", - "replicationRole":"Secondary" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", + "location": "Japan West", + "replicationRole": "Secondary" } ], "databases": [] @@ -51,16 +51,16 @@ "replicationState": "CATCH_UP", "partnerServers": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", - "location":"Japan West", - "replicationRole":"Secondary" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", + "location": "Japan West", + "replicationRole": "Secondary" } ], "databases": [] } - } + } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupUpdate.json index 3691e44e71c8..e772d3df3eaf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FailoverGroupUpdate.json @@ -18,35 +18,35 @@ } }, "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/failoverGroups/failover-group-test-3", - "name": "failover-group-test-3", - "type": "Microsoft.Sql/servers/failoverGroups", - "location": "Japan East", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 120 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerServers": [ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", - "location":"Japan West", - "replicationRole":"Secondary" - } - ], - "databases": [ - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/databases/testdb-1" - ] + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/failoverGroups/failover-group-test-3", + "name": "failover-group-test-3", + "type": "Microsoft.Sql/servers/failoverGroups", + "location": "Japan East", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 120 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerServers": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-secondary-server", + "location": "Japan West", + "replicationRole": "Secondary" } + ], + "databases": [ + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/failover-group-primary-server/databases/testdb-1" + ] } - }, + } + }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleCreate.json index 88b04c6ff4a0..83cedbdced63 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleCreate.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleDelete.json index ea931a438ff2..51ab66f29b0e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleGet.json index d244c64544af..712b47f68183 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleList.json index 3668a81c246c..f378b326a06b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleList.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleReplace.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleReplace.json index 02adc653e914..99c90881eebf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleReplace.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleReplace.json @@ -1,20 +1,21 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "firewallrulecrudtest-12", + "serverName": "firewallrulecrudtest-6285", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "firewallrulecrudtest-12", - "serverName": "firewallrulecrudtest-6285", - "api-version": "2015-05-01-preview", - "parameters": { - "values": [{ - "name": "firewallrulecrudtest-5370 ", - "properties": { - "startIpAddress": "0.0.0.0", - "endIpAddress": "100.0.0.0" - } - }] + "values": [ + { + "name": "firewallrulecrudtest-5370 ", + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "100.0.0.0" + } } - - }, + ] + } + }, "responses": { "200": { "body": { @@ -29,4 +30,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleUpdate.json index cef7a28fec3f..554600d97158 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/FirewallRuleUpdate.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceCreateMax.json index 45ba619264f4..1552d4b274c1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceCreateMax.json @@ -1,17 +1,17 @@ { - "parameters" : { - "subscriptionId" : "20D7082A-0FC7-4468-82BD-542694D5042B", - "resourceGroupName" : "testrg", - "managedInstanceName" : "testinstance", - "api-version" : "2015-05-01-preview", - "parameters" : { - "tags" : { - "tagKey1" : "TagValue1" + "parameters": { + "subscriptionId": "20D7082A-0FC7-4468-82BD-542694D5042B", + "resourceGroupName": "testrg", + "managedInstanceName": "testinstance", + "api-version": "2015-05-01-preview", + "parameters": { + "tags": { + "tagKey1": "TagValue1" }, - "location" : "Japan East", - "sku" : { - "name" : "GP_Gen5", - "tier" : "GeneralPurpose" + "location": "Japan East", + "sku": { + "name": "GP_Gen5", + "tier": "GeneralPurpose" }, "properties": { "administratorLogin": "dummylogin", @@ -29,7 +29,7 @@ } } }, - "responses" : { + "responses": { "200": { "body": { "sku": { @@ -62,7 +62,7 @@ "type": "Microsoft.Sql/managedInstances" } }, - "201" : { + "201": { "body": { "sku": { "name": "GP_Gen5", @@ -94,6 +94,6 @@ "type": "Microsoft.Sql/managedInstances" } }, - "202" : {} + "202": {} } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceCreateMin.json index 02d525123917..c60a761edaa3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceCreateMin.json @@ -43,9 +43,7 @@ "dnsZone": "1b4e2caff2530" }, "location": "japaneast", - "tags": { - - }, + "tags": {}, "id": "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance", "name": "testinstance", "type": "Microsoft.Sql/managedInstances" @@ -73,9 +71,7 @@ "dnsZone": "1b4e2caff2530" }, "location": "japaneast", - "tags": { - - }, + "tags": {}, "id": "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance", "name": "testinstance", "type": "Microsoft.Sql/managedInstances" @@ -83,4 +79,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceDelete.json index 1b1db6fb5f6a..88db0c8b5a4f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceDelete.json @@ -1,17 +1,17 @@ { - "parameters" : { - "subscriptionId" : "20D7082A-0FC7-4468-82BD-542694D5042B", - "resourceGroupName" : "testrg", - "managedInstanceName" : "testinstance", - "api-version" : "2015-05-01-preview" + "parameters": { + "subscriptionId": "20D7082A-0FC7-4468-82BD-542694D5042B", + "resourceGroupName": "testrg", + "managedInstanceName": "testinstance", + "api-version": "2015-05-01-preview" }, - "responses" : { - "200" : { - "body" : "" + "responses": { + "200": { + "body": "" }, - "202" : {}, - "204" : { - "body" : "" + "202": {}, + "204": { + "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceGet.json index 6951eb9f6334..d81c083a4af4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceGet.json @@ -1,12 +1,12 @@ { - "parameters" : { - "subscriptionId" : "20d7082a-0fc7-4468-82bd-542694d5042b", - "resourceGroupName" : "testrg", - "managedInstanceName" : "testinstance", - "api-version" : "2015-05-01-preview" + "parameters": { + "subscriptionId": "20d7082a-0fc7-4468-82bd-542694d5042b", + "resourceGroupName": "testrg", + "managedInstanceName": "testinstance", + "api-version": "2015-05-01-preview" }, - "responses" : { - "200" : { + "responses": { + "200": { "body": { "sku": { "name": "GP_Gen4", @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceList.json index d34540b24f5b..640b037c3ba0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceList.json @@ -1,11 +1,11 @@ { - "parameters" : { + "parameters": { "subscriptionId": "20D7082A-0FC7-4468-82BD-542694D5042B", - "api-version" : "2015-05-01-preview" + "api-version": "2015-05-01-preview" }, - "responses" : { - "200" : { - "body" : { + "responses": { + "200": { + "body": { "value": [ { "location": "japaneast", @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceListByInstancePool.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceListByInstancePool.json index 078955c03c4c..6854701b04b7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceListByInstancePool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceListByInstancePool.json @@ -65,4 +65,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceListByResourceGroup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceListByResourceGroup.json index 57fc3c367920..a08933264aac 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceListByResourceGroup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceListByResourceGroup.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceUpdateMax.json index 672c99ee76bd..f60ec5b9c93e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceUpdateMax.json @@ -1,17 +1,17 @@ { - "parameters" : { - "subscriptionId" : "20D7082A-0FC7-4468-82BD-542694D5042B", - "resourceGroupName" : "testrg", - "managedInstanceName" : "testinstance", - "api-version" : "2015-05-01-preview", - "parameters" : { - "tags" : { - "tagKey1" : "TagValue1" + "parameters": { + "subscriptionId": "20D7082A-0FC7-4468-82BD-542694D5042B", + "resourceGroupName": "testrg", + "managedInstanceName": "testinstance", + "api-version": "2015-05-01-preview", + "parameters": { + "tags": { + "tagKey1": "TagValue1" }, - "sku" : { - "name" : "GP_Gen4", - "tier" : "GeneralPurpose", - "capacity" : 8 + "sku": { + "name": "GP_Gen4", + "tier": "GeneralPurpose", + "capacity": 8 }, "properties": { "administratorLogin": "dummylogin", @@ -25,8 +25,8 @@ } } }, - "responses" : { - "200" : { + "responses": { + "200": { "body": { "tags": { "tagKey1": "TagValue1" @@ -57,6 +57,6 @@ } } }, - "202" : {} + "202": {} } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceUpdateMin.json index c755d6f3158b..b67afb7b384f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ManagedInstanceUpdateMin.json @@ -1,8 +1,8 @@ { "parameters": { - "subscriptionId" : "20D7082A-0FC7-4468-82BD-542694D5042B", - "resourceGroupName" : "testrg", - "managedInstanceName" : "testinstance", + "subscriptionId": "20D7082A-0FC7-4468-82BD-542694D5042B", + "resourceGroupName": "testrg", + "managedInstanceName": "testinstance", "api-version": "2015-05-01-preview", "parameters": { "tags": { @@ -44,4 +44,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorGet.json index 5c53228b412b..0b5a03f11e28 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorGet.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "advisorName": "CreateIndex", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "advisorName": "CreateIndex", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorList.json index 8b37c041f99e..2382764eff11 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorList.json @@ -1,74 +1,74 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex", - "name": "DropIndex", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DbParameterization", - "name": "DbParameterization", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/SchemaIssue", - "name": "SchemaIssue", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "PublicPreview", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/ForceLastGoodPlan", - "name": "ForceLastGoodPlan", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "PrivatePreview", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex", + "name": "DropIndex", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DbParameterization", + "name": "DbParameterization", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/SchemaIssue", + "name": "SchemaIssue", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "PublicPreview", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/ForceLastGoodPlan", + "name": "ForceLastGoodPlan", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "PrivatePreview", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default" + } } + ] } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorUpdate.json index ca9c83e2e472..602a0a8ec2a8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerAdvisorUpdate.json @@ -1,30 +1,30 @@ { - "parameters" : { - "subscriptionId" : "00000000-1111-2222-3333-444444444444", - "resourceGroupName" : "workloadinsight-demos", - "serverName" : "misosisvr", - "advisorName" : "CreateIndex", - "api-version" : "2015-05-01-preview", - "parameters" : { - "properties" : { - "autoExecuteStatus" : "Disabled" - } - } - }, - "responses" : { - "200" : { - "body" : { - "kind" : "", - "properties" : { - "advisorStatus" : "GA", - "autoExecuteStatus" : "Disabled", - "autoExecuteStatusInheritedFrom" : "Server" - }, - "location" : "East Asia", - "id" : "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", - "name" : "CreateIndex", - "type" : "Microsoft.Sql/servers/advisors" - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "advisorName": "CreateIndex", + "api-version": "2015-05-01-preview", + "parameters": { + "properties": { + "autoExecuteStatus": "Disabled" + } + } + }, + "responses": { + "200": { + "body": { + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Server" + }, + "location": "East Asia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/advisors" + } + } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerCreateMax.json index b5fcc8866d50..fbe464975c3a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerCreateMax.json @@ -57,4 +57,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerCreateMin.json index 905d494a2846..cc18a631a676 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerCreateMin.json @@ -45,4 +45,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerDelete.json index 4b6af1da783f..2dd4eb5578fc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerGet.json index 1080906c242b..57afb4bab41f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerGet.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyCreateOrUpdate.json index 5ede49beff47..558c44cd4827 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyCreateOrUpdate.json @@ -1,48 +1,48 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "keyName": "someVault_someKey_01234567890123456789012345678901", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "keyName": "someVault_someKey_01234567890123456789012345678901", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "serverKeyType": "AzureKeyVault", - "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901" - } + "properties": { + "serverKeyType": "AzureKeyVault", + "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers/keys", + "location": "Japan East", + "kind": "azurekeyvault", + "properties": { + "serverKeyType": "AzureKeyVault", + "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", + "thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD", + "creationDate": "2017-05-01T00:00:00.0Z" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers/keys", - "location": "Japan East", - "kind": "azurekeyvault", - "properties": { - "serverKeyType": "AzureKeyVault", - "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", - "thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD", - "creationDate": "2017-05-01T00:00:00.0Z" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers/keys", - "location": "Japan East", - "kind": "azurekeyvault", - "properties": { - "serverKeyType": "AzureKeyVault", - "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", - "thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD", - "creationDate": "2017-05-01T00:00:00.0Z" - } - } - }, - "202": { } - } -} \ No newline at end of file + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers/keys", + "location": "Japan East", + "kind": "azurekeyvault", + "properties": { + "serverKeyType": "AzureKeyVault", + "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", + "thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD", + "creationDate": "2017-05-01T00:00:00.0Z" + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyDelete.json index 46b4c0611e65..5762754693a7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyDelete.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyGet.json index d3ff57e6a151..1619b8ae3882 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyGet.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyList.json index c8d6d212d815..1934d5232ebd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerKeyList.json @@ -45,8 +45,8 @@ "serverKeyType": "ServiceManaged" } } - ] + ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerList.json index 05bc1ee40c4c..bac27b255d27 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerList.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerListByResourceGroup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerListByResourceGroup.json index d3d8cc1083cb..2a58fe8078eb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerListByResourceGroup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerListByResourceGroup.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerRecommendedActionListExpand.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerRecommendedActionListExpand.json index b1dc1ae5f4b2..dc0241d75402 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerRecommendedActionListExpand.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerRecommendedActionListExpand.json @@ -1,626 +1,626 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "api-version": "2015-05-01-preview", - "$expand": "recommendedActions" - }, - "responses": { - "200": { - "body": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Server", - "recommendedActions": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex/recommendedActions/IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "name": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", - "type": "Microsoft.Sql/servers/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:04Z", - "lastRefresh": "2017-03-01T14:38:04Z", - "state": { - "currentValue": "Active", - "lastModified": "2017-06-20T15:15:40Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B] ON [CRM].[DataPoints] ([Name],[Money],[Power]) INCLUDE ([Hour], [System], [LastChanged]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 1440.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 209.3125 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints]", - "indexColumns": "[Name],[Money],[Power]", - "includedColumns": "[Hour], [System], [LastChanged]", - "databaseName": "IndexAdvisor_test_3" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex/recommendedActions/IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", - "name": "IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", - "type": "Microsoft.Sql/servers/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Active", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "score": 3, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE] ON [dbo].[Employees] ([City], [State]) INCLUDE ([Postal]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 17.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 128.0 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE", - "indexType": "NONCLUSTERED", - "schema": "[dbo]", - "table": "[Employees]", - "indexColumns": "[City], [State]", - "includedColumns": "[Postal]", - "databaseName": "IndexAdvisor_test_3" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex/recommendedActions/IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", - "name": "IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", - "type": "Microsoft.Sql/servers/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Success", - "actionInitiatedBy": "User", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionStartTime": "2017-03-01T14:38:05Z", - "executeActionDuration": "PT1M", - "executeActionInitiatedBy": "User", - "executeActionInitiatedTime": "2017-03-01T14:38:05Z", - "score": 3, - "implementationDetails": { - "method": "TSql", - "script": "DROP INDEX [nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC] ON [dbo].[DataPoints]" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 5040.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 120.0 - } - ], - "observedImpact": [ - { - "dimensionName": "AffectedQueriesCpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": -12.7, - "changeValueRelative": -0.9 - }, - { - "dimensionName": "CpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": -12.7, - "changeValueRelative": -0.3175 - }, - { - "dimensionName": "QueriesWithImprovedPerformance", - "unit": "Count", - "absoluteValue": 12.0 - }, - { - "dimensionName": "QueriesWithRegressedPerformance", - "unit": "Count", - "absoluteValue": 1.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 130.742187 - }, - { - "dimensionName": "VerificationProgress", - "unit": "Percent", - "absoluteValue": 0.0 - } - ], - "timeSeries": [ ], - "details": { - "indexName": "nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC", - "indexType": "NONCLUSTERED", - "schema": "[dbo]", - "table": "[DataPoints]", - "indexColumns": "[Name],[Money]", - "includedColumns": "[Power],[Pineapple]", - "indexActionStartTime": "2017-03-01T14:38:05.337", - "indexActionDuration": "00:01:00", - "databaseName": "IndexAdvisor_test_3" - } - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "api-version": "2015-05-01-preview", + "$expand": "recommendedActions" + }, + "responses": { + "200": { + "body": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Server", + "recommendedActions": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex/recommendedActions/IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "name": "IR_[CRM]_[DataPoints]_4821CD2F9510D98184BB", + "type": "Microsoft.Sql/servers/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:04Z", + "lastRefresh": "2017-03-01T14:38:04Z", + "state": { + "currentValue": "Active", + "lastModified": "2017-06-20T15:15:40Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B] ON [CRM].[DataPoints] ([Name],[Money],[Power]) INCLUDE ([Hour], [System], [LastChanged]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 1440.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 209.3125 } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex", - "name": "DropIndex", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default", - "recommendedActions": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints1]_29AEA82685D24704DE1A", - "name": "IR_[CRM]_[DataPoints1]_29AEA82685D24704DE1A", - "type": "Microsoft.Sql/servers/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "Duplicate", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Pending", - "actionInitiatedBy": "System", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionInitiatedBy": "System", - "executeActionInitiatedTime": "2017-03-01T14:38:05Z", - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "DROP INDEX [MyIndex123] ON [CRM].[DataPoints1]" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 803.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 144.6875 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "MyIndex123", - "originalIndexName": "IX_COM_SKU_SKUDepartmentID", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints1]", - "indexColumns": "[Cookies],[SessionId]", - "includedColumns": "[Apple]", - "databaseName": "IndexAdvisor_test_3" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints2]_E4B21F229379807E531A", - "name": "IR_[CRM]_[DataPoints2]_E4B21F229379807E531A", - "type": "Microsoft.Sql/servers/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "Duplicate", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Success", - "actionInitiatedBy": "User", - "lastModified": "2017-03-01T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionStartTime": "2017-03-01T14:38:05Z", - "executeActionDuration": "PT1M", - "executeActionInitiatedBy": "User", - "executeActionInitiatedTime": "2017-03-01T14:38:05Z", - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [MyIndex321] ON [CRM].[DataPoints2] ([Cookies],[SessionId],[Protocol]) INCLUDE ([Apple]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 705.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 342.0 - } - ], - "observedImpact": [ - { - "dimensionName": "AffectedQueriesCpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": 0.0, - "changeValueRelative": 0.0 - }, - { - "dimensionName": "CpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": 0.0, - "changeValueRelative": 0.0 - }, - { - "dimensionName": "QueriesWithImprovedPerformance", - "unit": "Count", - "absoluteValue": 0.0 - }, - { - "dimensionName": "QueriesWithRegressedPerformance", - "unit": "Count", - "absoluteValue": 0.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": -342.0 - }, - { - "dimensionName": "VerificationProgress", - "unit": "Percent", - "absoluteValue": 0.0 - } - ], - "timeSeries": [ ], - "details": { - "indexName": "MyIndex321", - "originalIndexName": "IX_COM_SKU_SKUDepartmentID", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints2]", - "indexColumns": "[Cookies],[SessionId],[Protocol]", - "includedColumns": "[Apple]", - "indexActionStartTime": "2017-03-01T14:38:05.697", - "indexActionDuration": "00:01:00", - "databaseName": "IndexAdvisor_test_3" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex/recommendedActions/IR_[dbo]_[FactFinance]_13ADA5F354E9E14A983B", - "name": "IR_[dbo]_[FactFinance]_13ADA5F354E9E14A983B", - "type": "Microsoft.Sql/servers/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "Duplicate", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Success", - "actionInitiatedBy": "System", - "lastModified": "2017-02-28T14:38:05Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionStartTime": "2017-03-01T14:38:05Z", - "executeActionDuration": "PT1M", - "executeActionInitiatedBy": "System", - "executeActionInitiatedTime": "2017-03-01T14:38:05Z", - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "CREATE NONCLUSTERED INDEX [IX_FF] ON [dbo].[FactFinance] ([FinanceKey],[DateKey]) INCLUDE ([OrganizationKey]) WITH (ONLINE = ON)" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 705.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 342.0 - } - ], - "observedImpact": [ - { - "dimensionName": "AffectedQueriesCpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": 0.0, - "changeValueRelative": 0.0 - }, - { - "dimensionName": "CpuUtilization", - "unit": "CpuCores", - "changeValueAbsolute": 0.0, - "changeValueRelative": 0.0 - }, - { - "dimensionName": "QueriesWithImprovedPerformance", - "unit": "Count", - "absoluteValue": 0.0 - }, - { - "dimensionName": "QueriesWithRegressedPerformance", - "unit": "Count", - "absoluteValue": 0.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": -342.0 - }, - { - "dimensionName": "VerificationProgress", - "unit": "Percent", - "absoluteValue": 0.0 - } - ], - "timeSeries": [ ], - "details": { - "indexName": "IX_FF", - "originalIndexName": "IX_COM_SKU_SKUDepartmentID", - "indexType": "NONCLUSTERED", - "schema": "[dbo]", - "table": "[FactFinance]", - "indexColumns": "[FinanceKey],[DateKey]", - "includedColumns": "[OrganizationKey]", - "indexActionStartTime": "2017-03-01T14:38:05.837", - "indexActionDuration": "00:01:00", - "databaseName": "IndexAdvisor_test_3" - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints1]_13ADA5F354E9E14A983B", - "name": "IR_[CRM]_[DataPoints1]_13ADA5F354E9E14A983B", - "type": "Microsoft.Sql/servers/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "Unused", - "validSince": "2017-03-01T14:38:05Z", - "lastRefresh": "2017-03-01T14:38:05Z", - "state": { - "currentValue": "Pending", - "actionInitiatedBy": "System", - "lastModified": "2017-03-23T14:14:35Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionInitiatedBy": "System", - "executeActionInitiatedTime": "2017-03-23T14:14:35Z", - "score": 1, - "implementationDetails": { - "method": "TSql", - "script": "DROP INDEX [IX_FF] ON [CRM].[DataPoints1]" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "ActionDuration", - "unit": "Seconds", - "absoluteValue": 645.0 - }, - { - "dimensionName": "SpaceChange", - "unit": "Megabytes", - "absoluteValue": 342.0 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "indexName": "IX_FF", - "originalIndexName": "IX_COM_SKU_SKUDepartmentID", - "indexType": "NONCLUSTERED", - "schema": "[CRM]", - "table": "[DataPoints1]", - "indexColumns": "[Protocol],[SessionId]", - "includedColumns": "[Apple]", - "databaseName": "IndexAdvisor_test_3" - } - } - } - ] + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "nci_wi_DataPoints_B892614093BAC56295EF6018BD4CB51B", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints]", + "indexColumns": "[Name],[Money],[Power]", + "includedColumns": "[Hour], [System], [LastChanged]", + "databaseName": "IndexAdvisor_test_3" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex/recommendedActions/IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", + "name": "IR_[dbo]_[Employees]_560E15A98D14CA09BDFB", + "type": "Microsoft.Sql/servers/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Active", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "score": 3, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE] ON [dbo].[Employees] ([City], [State]) INCLUDE ([Postal]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 17.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 128.0 + } + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "nci_wi_Employees_8C18C2AF4267DC77793040782641CCDE", + "indexType": "NONCLUSTERED", + "schema": "[dbo]", + "table": "[Employees]", + "indexColumns": "[City], [State]", + "includedColumns": "[Postal]", + "databaseName": "IndexAdvisor_test_3" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex/recommendedActions/IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", + "name": "IR_[dbo]_[DataPoints]_F5D2F347AA22DB46E4CC", + "type": "Microsoft.Sql/servers/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Success", + "actionInitiatedBy": "User", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionStartTime": "2017-03-01T14:38:05Z", + "executeActionDuration": "PT1M", + "executeActionInitiatedBy": "User", + "executeActionInitiatedTime": "2017-03-01T14:38:05Z", + "score": 3, + "implementationDetails": { + "method": "TSql", + "script": "DROP INDEX [nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC] ON [dbo].[DataPoints]" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 5040.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 120.0 } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DbParameterization", - "name": "DbParameterization", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "GA", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default", - "recommendedActions": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DbParameterization/recommendedActions/ForceDbParameterization", - "name": "ForceDbParameterization", - "type": "Microsoft.Sql/servers/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "", - "validSince": "2017-03-01T14:37:44Z", - "lastRefresh": "2017-03-01T14:37:44Z", - "state": { - "currentValue": "Pending", - "actionInitiatedBy": "System", - "lastModified": "2017-05-11T15:08:31Z" - }, - "isExecutableAction": true, - "isRevertableAction": true, - "isArchivedAction": false, - "executeActionInitiatedBy": "System", - "executeActionInitiatedTime": "2017-05-11T15:08:31Z", - "score": 3, - "implementationDetails": { - "method": "TSql", - "script": "ALTER DATABASE [IndexAdvisor_test_3] SET PARAMETERIZATION FORCED" - }, - "errorDetails": { }, - "estimatedImpact": [ - { - "dimensionName": "CpuSavings", - "unit": "Percent", - "changeValueAbsolute": 22.5613696939135 - }, - { - "dimensionName": "QueryDurationDecrease", - "unit": "secs", - "changeValueAbsolute": 0.701823681806341 - } - ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "databaseName": "IndexAdvisor_test_3" - } - } - } - ] + ], + "observedImpact": [ + { + "dimensionName": "AffectedQueriesCpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": -12.7, + "changeValueRelative": -0.9 + }, + { + "dimensionName": "CpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": -12.7, + "changeValueRelative": -0.3175 + }, + { + "dimensionName": "QueriesWithImprovedPerformance", + "unit": "Count", + "absoluteValue": 12.0 + }, + { + "dimensionName": "QueriesWithRegressedPerformance", + "unit": "Count", + "absoluteValue": 1.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 130.742187 + }, + { + "dimensionName": "VerificationProgress", + "unit": "Percent", + "absoluteValue": 0.0 } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/SchemaIssue", - "name": "SchemaIssue", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "PublicPreview", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default", - "recommendedActions": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/SchemaIssue/recommendedActions/SchemaProblem_1A258C5714A7410C9D23", - "name": "SchemaProblem_1A258C5714A7410C9D23", - "type": "Microsoft.Sql/servers/advisors/recommendedActions", - "location": "East Asia", - "kind": "", - "properties": { - "recommendationReason": "SchemaProblem", - "validSince": "2017-03-01T14:37:48Z", - "lastRefresh": "2017-06-07T22:19:53Z", - "state": { - "currentValue": "Active", - "lastModified": "2017-03-01T14:37:48Z" - }, - "isExecutableAction": false, - "isRevertableAction": false, - "isArchivedAction": false, - "score": 3, - "implementationDetails": { }, - "errorDetails": { }, - "estimatedImpact": [ ], - "observedImpact": [ ], - "timeSeries": [ ], - "details": { - "sqlErrorNumber": 208, - "sqlErrorMessage": "Invalid object name 'dbo.Companies'.", - "sqlErrorCount": 342482, - "databaseName": "IndexAdvisor_test_3" - } - } - } - ] + ], + "timeSeries": [], + "details": { + "indexName": "nci_wi_DataPoints_609E4B7D6A3813990ED44B28B340C8FC", + "indexType": "NONCLUSTERED", + "schema": "[dbo]", + "table": "[DataPoints]", + "indexColumns": "[Name],[Money]", + "includedColumns": "[Power],[Pineapple]", + "indexActionStartTime": "2017-03-01T14:38:05.337", + "indexActionDuration": "00:01:00", + "databaseName": "IndexAdvisor_test_3" + } + } + } + ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex", + "name": "DropIndex", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default", + "recommendedActions": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints1]_29AEA82685D24704DE1A", + "name": "IR_[CRM]_[DataPoints1]_29AEA82685D24704DE1A", + "type": "Microsoft.Sql/servers/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "Duplicate", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Pending", + "actionInitiatedBy": "System", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionInitiatedBy": "System", + "executeActionInitiatedTime": "2017-03-01T14:38:05Z", + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "DROP INDEX [MyIndex123] ON [CRM].[DataPoints1]" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 803.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 144.6875 } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/ForceLastGoodPlan", - "name": "ForceLastGoodPlan", - "type": "Microsoft.Sql/servers/advisors", - "location": "East Asia", - "kind": "", - "properties": { - "advisorStatus": "PrivatePreview", - "autoExecuteStatus": "Disabled", - "autoExecuteStatusInheritedFrom": "Default", - "recommendedActions": [ ] + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "MyIndex123", + "originalIndexName": "IX_COM_SKU_SKUDepartmentID", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints1]", + "indexColumns": "[Cookies],[SessionId]", + "includedColumns": "[Apple]", + "databaseName": "IndexAdvisor_test_3" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints2]_E4B21F229379807E531A", + "name": "IR_[CRM]_[DataPoints2]_E4B21F229379807E531A", + "type": "Microsoft.Sql/servers/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "Duplicate", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Success", + "actionInitiatedBy": "User", + "lastModified": "2017-03-01T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionStartTime": "2017-03-01T14:38:05Z", + "executeActionDuration": "PT1M", + "executeActionInitiatedBy": "User", + "executeActionInitiatedTime": "2017-03-01T14:38:05Z", + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [MyIndex321] ON [CRM].[DataPoints2] ([Cookies],[SessionId],[Protocol]) INCLUDE ([Apple]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 705.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 342.0 + } + ], + "observedImpact": [ + { + "dimensionName": "AffectedQueriesCpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": 0.0, + "changeValueRelative": 0.0 + }, + { + "dimensionName": "CpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": 0.0, + "changeValueRelative": 0.0 + }, + { + "dimensionName": "QueriesWithImprovedPerformance", + "unit": "Count", + "absoluteValue": 0.0 + }, + { + "dimensionName": "QueriesWithRegressedPerformance", + "unit": "Count", + "absoluteValue": 0.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": -342.0 + }, + { + "dimensionName": "VerificationProgress", + "unit": "Percent", + "absoluteValue": 0.0 + } + ], + "timeSeries": [], + "details": { + "indexName": "MyIndex321", + "originalIndexName": "IX_COM_SKU_SKUDepartmentID", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints2]", + "indexColumns": "[Cookies],[SessionId],[Protocol]", + "includedColumns": "[Apple]", + "indexActionStartTime": "2017-03-01T14:38:05.697", + "indexActionDuration": "00:01:00", + "databaseName": "IndexAdvisor_test_3" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex/recommendedActions/IR_[dbo]_[FactFinance]_13ADA5F354E9E14A983B", + "name": "IR_[dbo]_[FactFinance]_13ADA5F354E9E14A983B", + "type": "Microsoft.Sql/servers/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "Duplicate", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Success", + "actionInitiatedBy": "System", + "lastModified": "2017-02-28T14:38:05Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionStartTime": "2017-03-01T14:38:05Z", + "executeActionDuration": "PT1M", + "executeActionInitiatedBy": "System", + "executeActionInitiatedTime": "2017-03-01T14:38:05Z", + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "CREATE NONCLUSTERED INDEX [IX_FF] ON [dbo].[FactFinance] ([FinanceKey],[DateKey]) INCLUDE ([OrganizationKey]) WITH (ONLINE = ON)" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 705.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 342.0 } + ], + "observedImpact": [ + { + "dimensionName": "AffectedQueriesCpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": 0.0, + "changeValueRelative": 0.0 + }, + { + "dimensionName": "CpuUtilization", + "unit": "CpuCores", + "changeValueAbsolute": 0.0, + "changeValueRelative": 0.0 + }, + { + "dimensionName": "QueriesWithImprovedPerformance", + "unit": "Count", + "absoluteValue": 0.0 + }, + { + "dimensionName": "QueriesWithRegressedPerformance", + "unit": "Count", + "absoluteValue": 0.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": -342.0 + }, + { + "dimensionName": "VerificationProgress", + "unit": "Percent", + "absoluteValue": 0.0 + } + ], + "timeSeries": [], + "details": { + "indexName": "IX_FF", + "originalIndexName": "IX_COM_SKU_SKUDepartmentID", + "indexType": "NONCLUSTERED", + "schema": "[dbo]", + "table": "[FactFinance]", + "indexColumns": "[FinanceKey],[DateKey]", + "includedColumns": "[OrganizationKey]", + "indexActionStartTime": "2017-03-01T14:38:05.837", + "indexActionDuration": "00:01:00", + "databaseName": "IndexAdvisor_test_3" + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex/recommendedActions/IR_[CRM]_[DataPoints1]_13ADA5F354E9E14A983B", + "name": "IR_[CRM]_[DataPoints1]_13ADA5F354E9E14A983B", + "type": "Microsoft.Sql/servers/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "Unused", + "validSince": "2017-03-01T14:38:05Z", + "lastRefresh": "2017-03-01T14:38:05Z", + "state": { + "currentValue": "Pending", + "actionInitiatedBy": "System", + "lastModified": "2017-03-23T14:14:35Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionInitiatedBy": "System", + "executeActionInitiatedTime": "2017-03-23T14:14:35Z", + "score": 1, + "implementationDetails": { + "method": "TSql", + "script": "DROP INDEX [IX_FF] ON [CRM].[DataPoints1]" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "ActionDuration", + "unit": "Seconds", + "absoluteValue": 645.0 + }, + { + "dimensionName": "SpaceChange", + "unit": "Megabytes", + "absoluteValue": 342.0 + } + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "indexName": "IX_FF", + "originalIndexName": "IX_COM_SKU_SKUDepartmentID", + "indexType": "NONCLUSTERED", + "schema": "[CRM]", + "table": "[DataPoints1]", + "indexColumns": "[Protocol],[SessionId]", + "includedColumns": "[Apple]", + "databaseName": "IndexAdvisor_test_3" + } + } + } + ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DbParameterization", + "name": "DbParameterization", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "GA", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default", + "recommendedActions": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DbParameterization/recommendedActions/ForceDbParameterization", + "name": "ForceDbParameterization", + "type": "Microsoft.Sql/servers/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "", + "validSince": "2017-03-01T14:37:44Z", + "lastRefresh": "2017-03-01T14:37:44Z", + "state": { + "currentValue": "Pending", + "actionInitiatedBy": "System", + "lastModified": "2017-05-11T15:08:31Z" + }, + "isExecutableAction": true, + "isRevertableAction": true, + "isArchivedAction": false, + "executeActionInitiatedBy": "System", + "executeActionInitiatedTime": "2017-05-11T15:08:31Z", + "score": 3, + "implementationDetails": { + "method": "TSql", + "script": "ALTER DATABASE [IndexAdvisor_test_3] SET PARAMETERIZATION FORCED" + }, + "errorDetails": {}, + "estimatedImpact": [ + { + "dimensionName": "CpuSavings", + "unit": "Percent", + "changeValueAbsolute": 22.5613696939135 + }, + { + "dimensionName": "QueryDurationDecrease", + "unit": "secs", + "changeValueAbsolute": 0.701823681806341 + } + ], + "observedImpact": [], + "timeSeries": [], + "details": { + "databaseName": "IndexAdvisor_test_3" + } + } + } + ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/SchemaIssue", + "name": "SchemaIssue", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "PublicPreview", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default", + "recommendedActions": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/SchemaIssue/recommendedActions/SchemaProblem_1A258C5714A7410C9D23", + "name": "SchemaProblem_1A258C5714A7410C9D23", + "type": "Microsoft.Sql/servers/advisors/recommendedActions", + "location": "East Asia", + "kind": "", + "properties": { + "recommendationReason": "SchemaProblem", + "validSince": "2017-03-01T14:37:48Z", + "lastRefresh": "2017-06-07T22:19:53Z", + "state": { + "currentValue": "Active", + "lastModified": "2017-03-01T14:37:48Z" + }, + "isExecutableAction": false, + "isRevertableAction": false, + "isArchivedAction": false, + "score": 3, + "implementationDetails": {}, + "errorDetails": {}, + "estimatedImpact": [], + "observedImpact": [], + "timeSeries": [], + "details": { + "sqlErrorNumber": 208, + "sqlErrorMessage": "Invalid object name 'dbo.Companies'.", + "sqlErrorCount": 342482, + "databaseName": "IndexAdvisor_test_3" + } } + } ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/ForceLastGoodPlan", + "name": "ForceLastGoodPlan", + "type": "Microsoft.Sql/servers/advisors", + "location": "East Asia", + "kind": "", + "properties": { + "advisorStatus": "PrivatePreview", + "autoExecuteStatus": "Disabled", + "autoExecuteStatusInheritedFrom": "Default", + "recommendedActions": [] + } } + ] } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerUpdateMax.json index e49fc127294b..0df67afe1759 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerUpdateMax.json @@ -39,4 +39,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerUpdateMin.json index f1d6971479a2..ed6885769e72 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/ServerUpdateMin.json @@ -33,4 +33,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SubscriptionUsageGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SubscriptionUsageGet.json index 2a1a92cb6eaa..ff8475496a91 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SubscriptionUsageGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SubscriptionUsageGet.json @@ -1,30 +1,23 @@ { - "parameters": - { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "WestUS", - "usageName": "ServerQuota", - "api-version": "2015-05-01-preview" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "WestUS", + "usageName": "ServerQuota", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "displayName": "Regional Server Quota for West US", + "currentValue": 1.0, + "limit": 20.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", + "name": "ServerQuota", + "type": "Microsoft.Sql/locations/usages" + } } - , - "responses": - { - "200": - { - "body": - { - "properties": - { - "displayName": "Regional Server Quota for West US", - "currentValue": 1.0, - "limit": 20.0, - "unit": "Count" - } - , - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", - "name": "ServerQuota", - "type": "Microsoft.Sql/locations/usages" - } - } - } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SubscriptionUsageListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SubscriptionUsageListByLocation.json index c4933a612680..92ea1b8c7259 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SubscriptionUsageListByLocation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SubscriptionUsageListByLocation.json @@ -1,44 +1,48 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "WestUS", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [{ - "properties": { - "displayName": "Regional Server Quota for West US", - "currentValue": 1.0, - "limit": 20.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", - "name": "ServerQuota", - "type": "Microsoft.Sql/locations/usages" - }, { - "properties": { - "displayName": "Free Database Count per Subscription for West US", - "currentValue": 0.0, - "limit": 1.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseCount", - "name": "SubscriptionFreeDatabaseCount", - "type": "Microsoft.Sql/locations/usages" - }, { - "properties": { - "displayName": "Free to Basic Database Upgrade count-down in West US", - "currentValue": 365.0, - "limit": 365.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseDaysLeft", - "name": "SubscriptionFreeDatabaseDaysLeft", - "type": "Microsoft.Sql/locations/usages" - }] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "WestUS", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "displayName": "Regional Server Quota for West US", + "currentValue": 1.0, + "limit": 20.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", + "name": "ServerQuota", + "type": "Microsoft.Sql/locations/usages" + }, + { + "properties": { + "displayName": "Free Database Count per Subscription for West US", + "currentValue": 0.0, + "limit": 1.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseCount", + "name": "SubscriptionFreeDatabaseCount", + "type": "Microsoft.Sql/locations/usages" + }, + { + "properties": { + "displayName": "Free to Basic Database Upgrade count-down in West US", + "currentValue": 365.0, + "limit": 365.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseDaysLeft", + "name": "SubscriptionFreeDatabaseDaysLeft", + "type": "Microsoft.Sql/locations/usages" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentCreate.json index 35a9bb835ddc..495bace0df8d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentCreate.json @@ -1,47 +1,47 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncagentcrud-65440", + "serverName": "syncagentcrud-8475", + "syncAgentName": "syncagentcrud-3187", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncagentcrud-65440", - "serverName": "syncagentcrud-8475", - "syncAgentName": "syncagentcrud-3187", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", - "state": "NeverConnected", - "isUpToDate": true, - "expiryTime": "9999-12-31T23:59:59.9999999Z", - "version": "4.2.0.0" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", - "name": "syncagent", - "type": "Microsoft.Sql/servers/syncAgents" - } + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", + "state": "NeverConnected", + "isUpToDate": true, + "expiryTime": "9999-12-31T23:59:59.9999999Z", + "version": "4.2.0.0" }, - "201": { - "body": { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", - "state": "NeverConnected", - "isUpToDate": true, - "expiryTime": "9999-12-31T23:59:59.9999999Z", - "version": "4.2.0.0" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", - "name": "syncagent", - "type": "Microsoft.Sql/servers/syncAgents" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", + "name": "syncagent", + "type": "Microsoft.Sql/servers/syncAgents" + } + }, + "201": { + "body": { + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", + "state": "NeverConnected", + "isUpToDate": true, + "expiryTime": "9999-12-31T23:59:59.9999999Z", + "version": "4.2.0.0" }, - "202": { - "body": "" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", + "name": "syncagent", + "type": "Microsoft.Sql/servers/syncAgents" + } + }, + "202": { + "body": "" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentCreateOrUpdate.json index 35a9bb835ddc..495bace0df8d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentCreateOrUpdate.json @@ -1,47 +1,47 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncagentcrud-65440", + "serverName": "syncagentcrud-8475", + "syncAgentName": "syncagentcrud-3187", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncagentcrud-65440", - "serverName": "syncagentcrud-8475", - "syncAgentName": "syncagentcrud-3187", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", - "state": "NeverConnected", - "isUpToDate": true, - "expiryTime": "9999-12-31T23:59:59.9999999Z", - "version": "4.2.0.0" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", - "name": "syncagent", - "type": "Microsoft.Sql/servers/syncAgents" - } + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", + "state": "NeverConnected", + "isUpToDate": true, + "expiryTime": "9999-12-31T23:59:59.9999999Z", + "version": "4.2.0.0" }, - "201": { - "body": { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", - "state": "NeverConnected", - "isUpToDate": true, - "expiryTime": "9999-12-31T23:59:59.9999999Z", - "version": "4.2.0.0" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", - "name": "syncagent", - "type": "Microsoft.Sql/servers/syncAgents" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", + "name": "syncagent", + "type": "Microsoft.Sql/servers/syncAgents" + } + }, + "201": { + "body": { + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", + "state": "NeverConnected", + "isUpToDate": true, + "expiryTime": "9999-12-31T23:59:59.9999999Z", + "version": "4.2.0.0" }, - "202": { - "body": "" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", + "name": "syncagent", + "type": "Microsoft.Sql/servers/syncAgents" + } + }, + "202": { + "body": "" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentDelete.json index d352f0116a17..9e69538042b9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentDelete.json @@ -1,21 +1,20 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncagentcrud-65440", - "serverName": "syncagentcrud-8475", - "syncAgentName": "syncagentcrud-3187", - "api-version": "2015-05-01-preview" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncagentcrud-65440", + "serverName": "syncagentcrud-8475", + "syncAgentName": "syncagentcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": "" }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "202": { + "body": "" + }, + "204": { + "body": "" } + } } - diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGenerateKey.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGenerateKey.json index d5abe59b8df2..8323e16bd9d4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGenerateKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGenerateKey.json @@ -1,16 +1,16 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncagentcrud-65440", - "serverName": "syncagentcrud-8475", - "syncAgentName": "syncagentcrud-3187", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "syncAgentKey": "865f9998-6dae-4214-bbb1-4796b7c76ca0:0Axt2fR1GSYDQPcSbS72bYH9jzWus2Kbm1phxvCvwpH=:fU5mbtZLp387bUK8z4qOTUewbP7MuFUXoWr09xlbUCwguFCkjWWuXw6yoSCKxWRAKbB=" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncagentcrud-65440", + "serverName": "syncagentcrud-8475", + "syncAgentName": "syncagentcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "syncAgentKey": "865f9998-6dae-4214-bbb1-4796b7c76ca0:0Axt2fR1GSYDQPcSbS72bYH9jzWus2Kbm1phxvCvwpH=:fU5mbtZLp387bUK8z4qOTUewbP7MuFUXoWr09xlbUCwguFCkjWWuXw6yoSCKxWRAKbB=" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGet.json index 6285b037f57c..d14fe5a1eeb5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGet.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncagentcrud-65440", - "serverName": "syncagentcrud-8475", - "syncAgentName": "syncagentcrud-3187", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", - "state": "NeverConnected", - "isUpToDate": true, - "expiryTime": "9999-12-31T23:59:59.9999999Z", - "version": "4.2.0.0" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", - "name": "syncagent", - "type": "Microsoft.Sql/servers/syncAgents" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncagentcrud-65440", + "serverName": "syncagentcrud-8475", + "syncAgentName": "syncagentcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", + "state": "NeverConnected", + "isUpToDate": true, + "expiryTime": "9999-12-31T23:59:59.9999999Z", + "version": "4.2.0.0" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", + "name": "syncagent", + "type": "Microsoft.Sql/servers/syncAgents" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGetLinkedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGetLinkedDatabases.json index 003ff274aabe..c71885ec946e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGetLinkedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentGetLinkedDatabases.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncagentcrud-65440", - "serverName": "syncagentcrud-8475", - "syncAgentName": "syncagentcrud-3187", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "databaseType": "SqlServerDatabase", - "databaseId": "55555555-6666-7777-8888-999999999999", - "description": "", - "serverName": "DummySqlServer", - "databaseName": "DummySqlServerDb", - "userName": "DummyUser" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187/linkedDatabases/55555555-6666-7777-8888-999999999999" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncagentcrud-65440", + "serverName": "syncagentcrud-8475", + "syncAgentName": "syncagentcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "databaseType": "SqlServerDatabase", + "databaseId": "55555555-6666-7777-8888-999999999999", + "description": "", + "serverName": "DummySqlServer", + "databaseName": "DummySqlServerDb", + "userName": "DummyUser" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187/linkedDatabases/55555555-6666-7777-8888-999999999999" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentListByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentListByServer.json index 1d16aceda674..197bf8ee04fa 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentListByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentListByServer.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncagentcrud-65440", - "serverName": "syncagentcrud-8475", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", - "state": "NeverConnected", - "isUpToDate": true, - "expiryTime": "9999-12-31T23:59:59.9999999Z", - "version": "4.2.0.0" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", - "name": "syncagent", - "type": "Microsoft.Sql/servers/syncAgents" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncagentcrud-65440", + "serverName": "syncagentcrud-8475", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", + "state": "NeverConnected", + "isUpToDate": true, + "expiryTime": "9999-12-31T23:59:59.9999999Z", + "version": "4.2.0.0" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", + "name": "syncagent", + "type": "Microsoft.Sql/servers/syncAgents" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentUpdate.json index 35a9bb835ddc..495bace0df8d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncAgentUpdate.json @@ -1,47 +1,47 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncagentcrud-65440", + "serverName": "syncagentcrud-8475", + "syncAgentName": "syncagentcrud-3187", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncagentcrud-65440", - "serverName": "syncagentcrud-8475", - "syncAgentName": "syncagentcrud-3187", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", - "state": "NeverConnected", - "isUpToDate": true, - "expiryTime": "9999-12-31T23:59:59.9999999Z", - "version": "4.2.0.0" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", - "name": "syncagent", - "type": "Microsoft.Sql/servers/syncAgents" - } + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", + "state": "NeverConnected", + "isUpToDate": true, + "expiryTime": "9999-12-31T23:59:59.9999999Z", + "version": "4.2.0.0" }, - "201": { - "body": { - "properties": { - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", - "state": "NeverConnected", - "isUpToDate": true, - "expiryTime": "9999-12-31T23:59:59.9999999Z", - "version": "4.2.0.0" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", - "name": "syncagent", - "type": "Microsoft.Sql/servers/syncAgents" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", + "name": "syncagent", + "type": "Microsoft.Sql/servers/syncAgents" + } + }, + "201": { + "body": { + "properties": { + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/databases/sync", + "state": "NeverConnected", + "isUpToDate": true, + "expiryTime": "9999-12-31T23:59:59.9999999Z", + "version": "4.2.0.0" }, - "202": { - "body": "" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/syncagentcrud-8475/syncAgents/syncagentcrud-3187", + "name": "syncagent", + "type": "Microsoft.Sql/servers/syncAgents" + } + }, + "202": { + "body": "" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCancelSync.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCancelSync.json index ea12e4ef2804..14b9f783a4f8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCancelSync.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCancelSync.json @@ -1,13 +1,13 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCreate.json index 87c283049ae5..effe921ae286 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCreate.json @@ -1,54 +1,54 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "syncState": "NotReady" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", - "name": "syncgroupcrud-3187", - "type": "Microsoft.Sql/servers/databases/syncGroups" - } + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "syncState": "NotReady" }, - "201": { - "body": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "syncState": "NotReady" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", - "name": "syncgroupcrud-3187", - "type": "Microsoft.Sql/servers/databases/syncGroups" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", + "name": "syncgroupcrud-3187", + "type": "Microsoft.Sql/servers/databases/syncGroups" + } + }, + "201": { + "body": { + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "syncState": "NotReady" }, - "202": { - "body": "" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", + "name": "syncgroupcrud-3187", + "type": "Microsoft.Sql/servers/databases/syncGroups" + } + }, + "202": { + "body": "" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCreateOrUpdate.json index 87c283049ae5..effe921ae286 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupCreateOrUpdate.json @@ -1,54 +1,54 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "syncState": "NotReady" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", - "name": "syncgroupcrud-3187", - "type": "Microsoft.Sql/servers/databases/syncGroups" - } + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "syncState": "NotReady" }, - "201": { - "body": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "syncState": "NotReady" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", - "name": "syncgroupcrud-3187", - "type": "Microsoft.Sql/servers/databases/syncGroups" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", + "name": "syncgroupcrud-3187", + "type": "Microsoft.Sql/servers/databases/syncGroups" + } + }, + "201": { + "body": { + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "syncState": "NotReady" }, - "202": { - "body": "" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", + "name": "syncgroupcrud-3187", + "type": "Microsoft.Sql/servers/databases/syncGroups" + } + }, + "202": { + "body": "" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupDelete.json index 1dadeb070eda..238ffe162c60 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupDelete.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": "" }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "202": { + "body": "" + }, + "204": { + "body": "" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGet.json index 96c329cdb494..b2103eb956d5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGet.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "syncState": "NotReady" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", - "name": "syncgroupcrud-3187", - "type": "Microsoft.Sql/servers/databases/syncGroups" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "syncState": "NotReady" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", + "name": "syncgroupcrud-3187", + "type": "Microsoft.Sql/servers/databases/syncGroups" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetHubSchema.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetHubSchema.json index 95e3ee2026bd..5c162fd9eebb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetHubSchema.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetHubSchema.json @@ -1,47 +1,47 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "tables": [ - { - "columns": [ - { - "dataSize": "4", - "dataType": "int", - "hasError": false, - "isPrimaryKey": false, - "name": "intField", - "quotedName": "[intField]" - }, - { - "dataSize": "100", - "dataType": "nvarchar", - "hasError": false, - "isPrimaryKey": false, - "name": "charField", - "quotedName": "[charField]" - } - ], - "errorId": "Schema_TableHasNoPrimaryKey", - "hasError": true, - "name": "dbo.myTable", - "quotedName": "[dbo].[myTable]" - } - ], - "lastUpdateTime": "2017-05-30T07:16:08.21Z" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "tables": [ + { + "columns": [ + { + "dataSize": "4", + "dataType": "int", + "hasError": false, + "isPrimaryKey": false, + "name": "intField", + "quotedName": "[intField]" + }, + { + "dataSize": "100", + "dataType": "nvarchar", + "hasError": false, + "isPrimaryKey": false, + "name": "charField", + "quotedName": "[charField]" + } + ], + "errorId": "Schema_TableHasNoPrimaryKey", + "hasError": true, + "name": "dbo.myTable", + "quotedName": "[dbo].[myTable]" + } + ], + "lastUpdateTime": "2017-05-30T07:16:08.21Z" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetLog.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetLog.json index 57977785b1eb..661e80db3c6d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetLog.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetLog.json @@ -1,37 +1,37 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "startTime": "2017-01-01T00:00:00", - "endTime": "2017-12-31T00:00:00", - "type": "All", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "timestamp": "2017-05-30T07:16:08.25Z", - "type": "Success", - "source": "syncgroupcrud-8475.database.windows.net/hub", - "details": "Schema information obtained successfully.", - "tracingId": "c0480c8e-6269-424e-9404-b00efce0ebae", - "operationStatus": "SchemaRefreshSuccess" - }, - { - "timestamp": "2017-05-30T07:03:37.5733333Z", - "type": "Error", - "source": "syncgroupcrud-8475.database.windows.net/member", - "details": "Getting schema information for the database failed with the exception \"Failed to connect to server .\nInner exception: SqlException Error Code: -2146232060 - SqlError Number:53, Message: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) \nInner exception: The network path was not found\n For more information, provide tracing ID ‘cd3aa28c-0c31-471f-8a77-f1b21c908cbd’ to customer support.\"", - "tracingId": "cd3aa28c-0c31-471f-8a77-f1b21c908cbd", - "operationStatus": "SchemaRefreshFailure" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "startTime": "2017-01-01T00:00:00", + "endTime": "2017-12-31T00:00:00", + "type": "All", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "timestamp": "2017-05-30T07:16:08.25Z", + "type": "Success", + "source": "syncgroupcrud-8475.database.windows.net/hub", + "details": "Schema information obtained successfully.", + "tracingId": "c0480c8e-6269-424e-9404-b00efce0ebae", + "operationStatus": "SchemaRefreshSuccess" + }, + { + "timestamp": "2017-05-30T07:03:37.5733333Z", + "type": "Error", + "source": "syncgroupcrud-8475.database.windows.net/member", + "details": "Getting schema information for the database failed with the exception \"Failed to connect to server .\nInner exception: SqlException Error Code: -2146232060 - SqlError Number:53, Message: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) \nInner exception: The network path was not found\n For more information, provide tracing ID ‘cd3aa28c-0c31-471f-8a77-f1b21c908cbd’ to customer support.\"", + "tracingId": "cd3aa28c-0c31-471f-8a77-f1b21c908cbd", + "operationStatus": "SchemaRefreshFailure" + } + ] + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetSyncDatabaseId.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetSyncDatabaseId.json index d67991ef5937..72b077f559b8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetSyncDatabaseId.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupGetSyncDatabaseId.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "westus", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "westus", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328" + } + ] + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupListByDatabase.json index de9ea8599ae9..c72084023a04 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupListByDatabase.json @@ -1,43 +1,43 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "syncState": "NotReady" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", - "name": "syncgroupcrud-3187", - "type": "Microsoft.Sql/servers/databases/syncGroups" - }, - { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "syncState": "NotReady" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-5374", - "name": "syncgroupcrud-5374", - "type": "Microsoft.Sql/servers/databases/syncGroups" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "syncState": "NotReady" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", + "name": "syncgroupcrud-3187", + "type": "Microsoft.Sql/servers/databases/syncGroups" + }, + { + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "syncState": "NotReady" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-5374", + "name": "syncgroupcrud-5374", + "type": "Microsoft.Sql/servers/databases/syncGroups" + } + ] + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupPatch.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupPatch.json index 2fdb149db237..df336358a198 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupPatch.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupPatch.json @@ -1,40 +1,40 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "hubDatabasePassword": "hubPassword" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "syncState": "NotReady" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", - "name": "syncgroup", - "type": "Microsoft.Sql/servers/databases/syncGroups" - } + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "hubDatabasePassword": "hubPassword" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "syncState": "NotReady" }, - "202": { - "body": "" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", + "name": "syncgroup", + "type": "Microsoft.Sql/servers/databases/syncGroups" + } + }, + "202": { + "body": "" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupRefreshHubSchema.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupRefreshHubSchema.json index 05b1992fb350..747eb50d734f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupRefreshHubSchema.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupRefreshHubSchema.json @@ -1,15 +1,14 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { }, - "202": { } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": {}, + "202": {} + } } - diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupTriggerSync.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupTriggerSync.json index ea12e4ef2804..14b9f783a4f8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupTriggerSync.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupTriggerSync.json @@ -1,13 +1,13 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupUpdate.json index 87c283049ae5..effe921ae286 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncGroupUpdate.json @@ -1,54 +1,54 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "syncState": "NotReady" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", - "name": "syncgroupcrud-3187", - "type": "Microsoft.Sql/servers/databases/syncGroups" - } + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "syncState": "NotReady" }, - "201": { - "body": { - "properties": { - "interval": -1, - "lastSyncTime": "0001-01-01T08:00:00Z", - "conflictResolutionPolicy": "HubWin", - "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", - "hubDatabaseUserName": "hubUser", - "syncState": "NotReady" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", - "name": "syncgroupcrud-3187", - "type": "Microsoft.Sql/servers/databases/syncGroups" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", + "name": "syncgroupcrud-3187", + "type": "Microsoft.Sql/servers/databases/syncGroups" + } + }, + "201": { + "body": { + "properties": { + "interval": -1, + "lastSyncTime": "0001-01-01T08:00:00Z", + "conflictResolutionPolicy": "HubWin", + "syncDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328", + "hubDatabaseUserName": "hubUser", + "syncState": "NotReady" }, - "202": { - "body": "" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-3521/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187", + "name": "syncgroupcrud-3187", + "type": "Microsoft.Sql/servers/databases/syncGroups" + } + }, + "202": { + "body": "" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberCreate.json index 11cf6bdf8aa7..9fda57b47f65 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberCreate.json @@ -1,54 +1,54 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "syncMemberName": "syncgroupcrud-4879", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "syncMemberName": "syncgroupcrud-4879", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", - "name": "syncgroupcrud-4879", - "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" - } + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" }, - "201": { - "body": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", - "name": "syncgroupcrud-4879", - "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", + "name": "syncgroupcrud-4879", + "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" + } + }, + "201": { + "body": { + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", + "name": "syncgroupcrud-4879", + "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberCreateOrUpdate.json index 11cf6bdf8aa7..9fda57b47f65 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberCreateOrUpdate.json @@ -1,54 +1,54 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "syncMemberName": "syncgroupcrud-4879", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "syncMemberName": "syncgroupcrud-4879", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", - "name": "syncgroupcrud-4879", - "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" - } + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" }, - "201": { - "body": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", - "name": "syncgroupcrud-4879", - "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", + "name": "syncgroupcrud-4879", + "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" + } + }, + "201": { + "body": { + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", + "name": "syncgroupcrud-4879", + "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberDelete.json index 685cda3f376d..e4202edea494 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberDelete.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "syncMemberName": "syncgroupcrud-4879", - "api-version": "2015-05-01-preview" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "syncMemberName": "syncgroupcrud-4879", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": "" }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "202": { + "body": "" + }, + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberGet.json index 78a1dd7cb07d..ffd7eb45d996 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberGet.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "syncMemberName": "syncgroupcrud-4879", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", - "name": "syncgroupcrud-4879", - "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "syncMemberName": "syncgroupcrud-4879", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", + "name": "syncgroupcrud-4879", + "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberGetSchema.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberGetSchema.json index 13f52aae6770..b5ab949f3c2f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberGetSchema.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberGetSchema.json @@ -1,48 +1,48 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "syncMemberName": "syncgroupcrud-4879", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "tables": [ - { - "columns": [ - { - "dataSize": "4", - "dataType": "int", - "hasError": false, - "isPrimaryKey": false, - "name": "intField", - "quotedName": "[intField]" - }, - { - "dataSize": "100", - "dataType": "nvarchar", - "hasError": false, - "isPrimaryKey": false, - "name": "charField", - "quotedName": "[charField]" - } - ], - "errorId": "Schema_TableHasNoPrimaryKey", - "hasError": true, - "name": "dbo.myTable", - "quotedName": "[dbo].[myTable]" - } - ], - "lastUpdateTime": "2017-05-30T07:16:08.21Z" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "syncMemberName": "syncgroupcrud-4879", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "tables": [ + { + "columns": [ + { + "dataSize": "4", + "dataType": "int", + "hasError": false, + "isPrimaryKey": false, + "name": "intField", + "quotedName": "[intField]" + }, + { + "dataSize": "100", + "dataType": "nvarchar", + "hasError": false, + "isPrimaryKey": false, + "name": "charField", + "quotedName": "[charField]" + } + ], + "errorId": "Schema_TableHasNoPrimaryKey", + "hasError": true, + "name": "dbo.myTable", + "quotedName": "[dbo].[myTable]" + } + ], + "lastUpdateTime": "2017-05-30T07:16:08.21Z" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberListBySyncGroup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberListBySyncGroup.json index 8c927884ad7f..47c9cbeb312f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberListBySyncGroup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberListBySyncGroup.json @@ -1,31 +1,31 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", - "name": "syncgroupcrud-4879", - "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", + "name": "syncgroupcrud-4879", + "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" + } + ] + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberPatch.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberPatch.json index dae69b194609..261342aacbea 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberPatch.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberPatch.json @@ -1,39 +1,39 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "syncMemberName": "syncgroupcrud-4879", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "syncMemberName": "syncgroupcrud-4879", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", - "name": "syncgroupcrud-4879", - "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" - } - }, - "202": {} + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" + } } + }, + "responses": { + "200": { + "body": { + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", + "name": "syncgroupcrud-4879", + "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberRefreshSchema.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberRefreshSchema.json index b5400a1667fe..4a606be9f911 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberRefreshSchema.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberRefreshSchema.json @@ -1,15 +1,15 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "syncMemberName": "syncgroupcrud-4879", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { }, - "202": { } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "syncMemberName": "syncgroupcrud-4879", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": {}, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberUpdate.json index 11cf6bdf8aa7..9fda57b47f65 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/SyncMemberUpdate.json @@ -1,54 +1,54 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "syncgroupcrud-65440", + "serverName": "syncgroupcrud-8475", + "databaseName": "syncgroupcrud-4328", + "syncGroupName": "syncgroupcrud-3187", + "syncMemberName": "syncgroupcrud-4879", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "syncgroupcrud-65440", - "serverName": "syncgroupcrud-8475", - "databaseName": "syncgroupcrud-4328", - "syncGroupName": "syncgroupcrud-3187", - "syncMemberName": "syncgroupcrud-4879", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", - "name": "syncgroupcrud-4879", - "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" - } + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" }, - "201": { - "body": { - "properties": { - "databaseType": "AzureSqlDatabase", - "serverName": "syncgroupcrud-3379.database.windows.net", - "databaseName": "syncgroupcrud-7421", - "userName": "myUser", - "syncDirection": "Bidirectional", - "syncState": "UnProvisioned" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", - "name": "syncgroupcrud-4879", - "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", + "name": "syncgroupcrud-4879", + "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" + } + }, + "201": { + "body": { + "properties": { + "databaseType": "AzureSqlDatabase", + "serverName": "syncgroupcrud-3379.database.windows.net", + "databaseName": "syncgroupcrud-7421", + "userName": "myUser", + "syncDirection": "Bidirectional", + "syncState": "UnProvisioned" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879", + "name": "syncgroupcrud-4879", + "type": "Microsoft.Sql/servers/databases/syncGroups/syncMembers" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterDelete.json index 3f42e93cfa03..a74d86bebcd1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterDelete.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "20d7082a-0fc7-4468-82bd-542694d5042b", - "resourceGroupName": "testrg", - "virtualClusterName": "vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", - "api-version": "2015-05-01-preview" + "parameters": { + "subscriptionId": "20d7082a-0fc7-4468-82bd-542694d5042b", + "resourceGroupName": "testrg", + "virtualClusterName": "vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": "" }, - "responses" : { - "200" : { - "body" : "" - }, - "202" : {}, - "204" : { - "body" : "" - } + "202": {}, + "204": { + "body": "" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterGet.json index db15c5f86827..0ecd2b9c0ea1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterGet.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "20d7082a-0fc7-4468-82bd-542694d5042b", - "resourceGroupName": "testrg", - "virtualClusterName": "vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "properties": { - "subnetId": "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", - "family": "Gen4", - "childResources": [ - "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance1", - "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance2" - ] - }, - "location": "westeurope", - "id": "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/virtualClusters/vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", - "name": "vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", - "type": "Microsoft.Sql/virtualClusters" - } - } + "parameters": { + "subscriptionId": "20d7082a-0fc7-4468-82bd-542694d5042b", + "resourceGroupName": "testrg", + "virtualClusterName": "vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "subnetId": "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", + "family": "Gen4", + "childResources": [ + "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance1", + "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance2" + ] + }, + "location": "westeurope", + "id": "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/virtualClusters/vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", + "name": "vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", + "type": "Microsoft.Sql/virtualClusters" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterList.json index f0a6716337b5..761f92f9c717 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterList.json @@ -1,37 +1,39 @@ { - "parameters" : { - "subscriptionId" : "20d7082a-0fc7-4468-82bd-542694d5042b", - "api-version" : "2015-05-01-preview" + "parameters": { + "subscriptionId": "20d7082a-0fc7-4468-82bd-542694d5042b", + "api-version": "2015-05-01-preview" }, - "responses" : { - "200" : { - "body" : { - "value" : [{ - "properties" : { + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { "subnetId": "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", "family": "Gen4", - "childResources" : [ + "childResources": [ "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance1", "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance2" ] }, - "location" : "westeurope", - "id" : "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/virtualClusters/vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", - "name" : "vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", - "type" : "Microsoft.Sql/virtualClusters" - }, { - "properties" : { + "location": "westeurope", + "id": "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/virtualClusters/vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", + "name": "vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", + "type": "Microsoft.Sql/virtualClusters" + }, + { + "properties": { "subnetId": "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2", "family": "Gen5", - "childResources" : [ + "childResources": [ "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance3", "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance4" ] }, - "location" : "westeurope", + "location": "westeurope", "id": "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/virtualClusters/vc-subnet2-14b795bd-9c8f-46ec-adb8-2b8eff56ac16", - "name" : "vc-subnet1-14b795bd-9c8f-46ec-adb8-2b8eff56ac16", - "type" : "Microsoft.Sql/virtualClusters" + "name": "vc-subnet1-14b795bd-9c8f-46ec-adb8-2b8eff56ac16", + "type": "Microsoft.Sql/virtualClusters" } ] } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterListByResourceGroup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterListByResourceGroup.json index 09c91aaad600..f855ba32614c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterListByResourceGroup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterListByResourceGroup.json @@ -1,38 +1,40 @@ { - "parameters" : { - "subscriptionId" : "20d7082a-0fc7-4468-82bd-542694d5042b", - "resourceGroupName" : "testrg", - "api-version" : "2015-05-01-preview" + "parameters": { + "subscriptionId": "20d7082a-0fc7-4468-82bd-542694d5042b", + "resourceGroupName": "testrg", + "api-version": "2015-05-01-preview" }, - "responses" : { - "200" : { - "body" : { - "value" : [{ - "properties" : { + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { "subnetId": "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", "family": "Gen4", - "childResources" : [ + "childResources": [ "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance1", "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance2" ] }, - "location" : "westeurope", - "id" : "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/virtualClusters/vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", - "name" : "vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", - "type" : "Microsoft.Sql/virtualClusters" - }, { - "properties" : { + "location": "westeurope", + "id": "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/virtualClusters/vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", + "name": "vc-subnet1-f769ed71-b3ad-491a-a9d5-26eeceaa6be2", + "type": "Microsoft.Sql/virtualClusters" + }, + { + "properties": { "subnetId": "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2", "family": "Gen4", - "childResources" : [ + "childResources": [ "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance3", "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance4" ] }, - "location" : "westeurope", - "id" : "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/virtualClusters/vc-subnet2-14b795bd-9c8f-46ec-adb8-2b8eff56ac16", - "name" : "vc-subnet1-14b795bd-9c8f-46ec-adb8-2b8eff56ac16", - "type" : "Microsoft.Sql/virtualClusters" + "location": "westeurope", + "id": "/subscriptions/20d7082a-0fc7-4468-82bd-542694d5042b/resourceGroups/testrg/providers/Microsoft.Sql/virtualClusters/vc-subnet2-14b795bd-9c8f-46ec-adb8-2b8eff56ac16", + "name": "vc-subnet1-14b795bd-9c8f-46ec-adb8-2b8eff56ac16", + "type": "Microsoft.Sql/virtualClusters" } ] } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterUpdate.json index ca3bb3311102..d96b651bbffa 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualClusterUpdate.json @@ -31,4 +31,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json index 9a5a48c9db0f..cf3d8ca0b193 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesCreateOrUpdate.json @@ -6,35 +6,35 @@ "virtualNetworkRuleName": "vnet-firewall-rule", "api-version": "2015-05-01-preview", "parameters": { - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } } }, "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.Sql/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.Sql/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - }, - "202": {} + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.Sql/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.Sql/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + }, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesDelete.json index 2a8b48dd5594..2d286d52e7c8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesDelete.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default", - "serverName": "vnet-test-svr", - "virtualNetworkRuleName": "vnet-firewall-rule", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default", + "serverName": "vnet-test-svr", + "virtualNetworkRuleName": "vnet-firewall-rule", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": "" + }, + "202": { + "body": "" + }, + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesGet.json index 05c8cbd8f9fe..d27a47ec7447 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesGet.json @@ -7,17 +7,17 @@ "api-version": "2015-05-01-preview" }, "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.Sql/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.Sql/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesList.json index 7b823b01651d..0d8cbc16e7da 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/VirtualNetworkRulesList.json @@ -7,31 +7,31 @@ "api-version": "2015-05-01-preview" }, "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.Sql/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", - "name": "vnet-firewall-rule", - "type": "Microsoft.Sql/servers/virtualNetworkRules", - "properties": { - "ignoreMissingVnetServiceEndpoint": false, - "state": "Ready", - "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" - } - } - ] - } + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.Sql/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/vnet-test-svr/virtualNetworkRules/vnet-firewall-rule", + "name": "vnet-firewall-rule", + "type": "Microsoft.Sql/servers/virtualNetworkRules", + "properties": { + "ignoreMissingVnetServiceEndpoint": false, + "state": "Ready", + "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" + } + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json index d7f263977af6..665da874d583 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json @@ -671,4 +671,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json index 84c6984bc775..33d05daca8f3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json @@ -438,4 +438,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json index 321227b07447..f88d4ef6e03f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json @@ -199,4 +199,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json index 9bb9a5bf3e96..0b5fce2f1b7f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json @@ -354,4 +354,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json index a0a386c83c18..6b0a93e10d67 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json @@ -444,4 +444,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json index fb223eb22bc2..c4b17aff90e0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json @@ -569,4 +569,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json index aeffda81a886..17c59eea5683 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json @@ -1072,4 +1072,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json index 419a1b9835d4..0d1dc1e26313 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json @@ -763,4 +763,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json index 9508cd8d5489..117d2fbb9cfe 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json @@ -257,4 +257,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json index c220bbf2fca3..0636163c2904 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json @@ -371,4 +371,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json index 2a0b9b040157..b7cdcc5dcc4d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json @@ -450,4 +450,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json index 4c45ce963829..2be97f2395f5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json @@ -428,4 +428,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json index d2689712b89b..a53d44f96e12 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json @@ -406,4 +406,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json index 0c60a68988ee..ff9e4d00883a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json @@ -440,4 +440,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json index 24664c4631eb..eb8c8e3bbef4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json @@ -371,4 +371,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json index 8db4117553d7..2dccfe7db6d6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json @@ -838,4 +838,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json index 7af807867dbf..4f0e0b5b98de 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json @@ -335,4 +335,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json index ccd361e0df59..81fed9409b2c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json @@ -199,4 +199,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json index 2fb99ff46b5a..b4e0d88f6557 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json @@ -411,4 +411,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json index 8a97f00afc0c..725c54f4dde6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json @@ -449,4 +449,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json index 63cca91c8cbf..738d9589c329 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json @@ -978,4 +978,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CancelDatabaseOperation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CancelDatabaseOperation.json index 884b2b396790..0ed12e4708b8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CancelDatabaseOperation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CancelDatabaseOperation.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CancelJobExecution.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CancelJobExecution.json index 0fcc35717d61..2bf4fef8ed0c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CancelJobExecution.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CancelJobExecution.json @@ -1,14 +1,14 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ColumnSensitivityLabelDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ColumnSensitivityLabelDelete.json index d696fb91ed5e..c718e2921d3c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ColumnSensitivityLabelDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ColumnSensitivityLabelDelete.json @@ -1,17 +1,16 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "myRG", - "serverName": "myServer", - "databaseName": "myDatabase", - "schemaName": "dbo", - "tableName": "myTable", - "columnName": "myColumn", - "sensitivityLabelSource": "current", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "myRG", + "serverName": "myServer", + "databaseName": "myDatabase", + "schemaName": "dbo", + "tableName": "myTable", + "columnName": "myColumn", + "sensitivityLabelSource": "current", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ColumnSensitivityLabelGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ColumnSensitivityLabelGet.json index c887c51473ac..e80432f59b71 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ColumnSensitivityLabelGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ColumnSensitivityLabelGet.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CompleteManagedRestore.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CompleteManagedRestore.json index 404be24e99b4..af4192e8f44b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CompleteManagedRestore.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CompleteManagedRestore.json @@ -1,15 +1,15 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "southeastasia", - "operationId": "111111111-2222-8888-5555-777777777777/completeRestore", - "api-version": "2017-03-01-preview", - "parameters": { - "lastBackupName": "testdb1_log4" - } - }, - "responses": { - "200": {}, - "202": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "southeastasia", + "operationId": "111111111-2222-8888-5555-777777777777/completeRestore", + "api-version": "2017-03-01-preview", + "parameters": { + "lastBackupName": "testdb1_log4" + } + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseCopyMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseCopyMode.json index c888714f0480..71d59de32294 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseCopyMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseCopyMode.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbcopy", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbcopy", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Copy", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Copy", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseDefaultMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseDefaultMode.json index b8736ea03a02..ba5deae797c3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseDefaultMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseDefaultMode.json @@ -1,70 +1,70 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Default", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824 - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Default", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824 + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } -} \ No newline at end of file + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseMin.json index 871367c58ee5..e790ea99765b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseMin.json @@ -1,61 +1,61 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia" - } + "location": "southeastasia" + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabasePITRMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabasePITRMode.json index cad9460c0e21..ac1df30711b7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabasePITRMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabasePITRMode.json @@ -1,70 +1,70 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbpitr", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbpitr", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "PointInTimeRestore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "restorePointInTime": "2017-07-14T05:35:31.503Z" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "PointInTimeRestore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "restorePointInTime": "2017-07-14T05:35:31.503Z" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", + "name": "dbpitr", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", - "name": "dbpitr", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", - "name": "dbpitr", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", + "name": "dbpitr", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRecoveryMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRecoveryMode.json index 2d02dcf5926d..a4f8cee34bc7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRecoveryMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRecoveryMode.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbrestore", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbrestore", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Restore", - "restorableDroppedDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb2,131444841315030000" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Restore", + "restorableDroppedDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb2,131444841315030000" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRestoreMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRestoreMode.json index 5be22c3fb50e..93a6d13ce5db 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRestoreMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRestoreMode.json @@ -1,70 +1,70 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbrestore", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbrestore", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Restore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "sourceDatabaseDeletionDate": "2017-07-14T06:41:06.613Z" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Restore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "sourceDatabaseDeletionDate": "2017-07-14T06:41:06.613Z" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRestoreMode2.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRestoreMode2.json index 1d68ff631a3e..71d59de32294 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRestoreMode2.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseRestoreMode2.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbcopy", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbcopy", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Copy", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Copy", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } -} \ No newline at end of file + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseSecondaryMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseSecondaryMode.json index b7f18f6e0ac5..e9b2a0ce6a61 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseSecondaryMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateDatabaseSecondaryMode.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Secondary", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Secondary", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateJobExecution.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateJobExecution.json index 33bd949cbf77..80321fa3785f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateJobExecution.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateJobExecution.json @@ -26,4 +26,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgent.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgent.json index 6995dde1d0d0..2122d3d3549e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgent.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgent.json @@ -1,40 +1,40 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "api-version":"2017-03-01-preview", - "parameters":{ - "location":"southeastasia", - "properties":{ - "databaseId":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia", + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", + "name": "agent1", + "type": "Microsoft.Sql/servers/jobAgents", + "location": "southeastasia", + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" } + } }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", - "name":"agent1", - "type":"Microsoft.Sql/servers/jobAgents", - "location":"southeastasia", - "properties":{ - "databaseId":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - } - } - }, - "201":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", - "name":"agent1", - "type":"Microsoft.Sql/servers/jobAgents", - "location":"southeastasia", - "properties":{ - "databaseId":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - } - } - }, - "202":{ } - } + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", + "name": "agent1", + "type": "Microsoft.Sql/servers/jobAgents", + "location": "southeastasia", + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" + } + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgentMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgentMax.json index d10eabe8ce18..88c95a486ba3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgentMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgentMax.json @@ -1,61 +1,61 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "api-version": "2017-03-01-preview", - "parameters":{ - "location": "southeastasia", - "sku": { - "name": "Agent", - "capacity": 100 - }, - "properties": { - "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - }, - "tags": { - "octopus": "agent" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "Agent", + "capacity": 100 + }, + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" + }, + "tags": { + "octopus": "agent" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", + "name": "agent1", + "type": "Microsoft.Sql/servers/jobAgents", + "location": "southeastasia", + "sku": { + "name": "Agent", + "capacity": 100 + }, + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" + }, + "tags": { + "octopus": "agent" } + } }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", - "name":"agent1", - "type":"Microsoft.Sql/servers/jobAgents", - "location": "southeastasia", - "sku": { - "name": "Agent", - "capacity": 100 - }, - "properties": { - "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - }, - "tags": { - "octopus": "agent" - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", + "name": "agent1", + "type": "Microsoft.Sql/servers/jobAgents", + "location": "southeastasia", + "sku": { + "name": "Agent", + "capacity": 100 }, - "201":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", - "name":"agent1", - "type":"Microsoft.Sql/servers/jobAgents", - "location": "southeastasia", - "sku": { - "name": "Agent", - "capacity": 100 - }, - "properties": { - "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - }, - "tags": { - "octopus": "agent" - } - } + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" }, - "202":{ } - } -} \ No newline at end of file + "tags": { + "octopus": "agent" + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgentMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgentMin.json index ecdef5bbcadc..c20c41630f08 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgentMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobAgentMin.json @@ -1,48 +1,48 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "group1", - "serverName": "server1", - "jobAgentName": "agent1", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "properties": { - "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - } + "location": "southeastasia", + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", + "name": "agent1", + "type": "Microsoft.Sql/servers/jobAgents", + "location": "southeastasia", + "sku": { + "name": "Agent", + "capacity": 100 + }, + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", - "name": "agent1", - "type": "Microsoft.Sql/servers/jobAgents", - "location": "southeastasia", - "sku": { - "name": "Agent", - "capacity": 100 - }, - "properties": { - "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", - "name": "agent1", - "type": "Microsoft.Sql/servers/jobAgents", - "location": "southeastasia", - "sku": { - "name": "Agent", - "capacity": 100 - }, - "properties": { - "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", + "name": "agent1", + "type": "Microsoft.Sql/servers/jobAgents", + "location": "southeastasia", + "sku": { + "name": "Agent", + "capacity": 100 }, - "202": { } - } -} \ No newline at end of file + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobCredential.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobCredential.json index 59fd0c72e315..107e6d996bf8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobCredential.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobCredential.json @@ -1,38 +1,38 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "credentialName":"cred1", - "api-version":"2017-03-01-preview", - "parameters":{ - "properties":{ - "username":"myuser", - "password":"" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "credentialName": "cred1", + "api-version": "2017-03-01-preview", + "parameters": { + "properties": { + "username": "myuser", + "password": "" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "name": "cred1", + "type": "Microsoft.Sql/servers/jobAccounts/credentials", + "properties": { + "username": "myuser" } + } }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "name":"cred1", - "type":"Microsoft.Sql/servers/jobAccounts/credentials", - "properties":{ - "username":"myuser" - } - } - }, - "201":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "name":"cred1", - "type":"Microsoft.Sql/servers/jobAccounts/credentials", - "properties":{ - "username":"myuser" - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "name": "cred1", + "type": "Microsoft.Sql/servers/jobAccounts/credentials", + "properties": { + "username": "myuser" } + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobExecution.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobExecution.json index ebda400ac79d..03a79336f39b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobExecution.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobExecution.json @@ -43,4 +43,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobMax.json index 47ccbb14a422..51e71dcbbc1c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobMax.json @@ -1,60 +1,60 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "api-version":"2017-03-01-preview", - "parameters":{ - "properties":{ - "description":"my favourite job", - "schedule":{ - "startTime":"2015-09-24T18:30:01Z", - "endTime":"2015-09-24T23:59:59Z", - "type":"Recurring", - "interval":"PT5M", - "enabled":true - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "api-version": "2017-03-01-preview", + "parameters": { + "properties": { + "description": "my favourite job", + "schedule": { + "startTime": "2015-09-24T18:30:01Z", + "endTime": "2015-09-24T23:59:59Z", + "type": "Recurring", + "interval": "PT5M", + "enabled": true } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", + "name": "job1", + "type": "Microsoft.Sql/servers/jobAccounts/jobs", + "properties": { + "description": "my favourite job", + "version": 0, + "schedule": { + "startTime": "2015-09-24T18:30:01Z", + "endTime": "2015-09-24T23:59:59Z", + "type": "Recurring", + "interval": "PT5M", + "enabled": true + } + } + } }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", - "name":"job1", - "type":"Microsoft.Sql/servers/jobAccounts/jobs", - "properties":{ - "description":"my favourite job", - "version":0, - "schedule":{ - "startTime":"2015-09-24T18:30:01Z", - "endTime":"2015-09-24T23:59:59Z", - "type":"Recurring", - "interval":"PT5M", - "enabled":true - } - } - } - }, - "201":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", - "name":"job1", - "type":"Microsoft.Sql/servers/jobAccounts/jobs", - "properties":{ - "description":"my favourite job", - "version":0, - "schedule":{ - "startTime":"2015-09-24T18:30:01Z", - "endTime":"2015-09-24T23:59:59Z", - "type":"Recurring", - "interval":"PT5M", - "enabled":true - } - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", + "name": "job1", + "type": "Microsoft.Sql/servers/jobAccounts/jobs", + "properties": { + "description": "my favourite job", + "version": 0, + "schedule": { + "startTime": "2015-09-24T18:30:01Z", + "endTime": "2015-09-24T23:59:59Z", + "type": "Recurring", + "interval": "PT5M", + "enabled": true + } } + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobMin.json index 6e54f084af4f..28ff9ea4b0f4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobMin.json @@ -1,47 +1,47 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "api-version":"2017-03-01-preview", - "parameters":{ } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "api-version": "2017-03-01-preview", + "parameters": {} + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", + "name": "job1", + "type": "Microsoft.Sql/servers/jobAccounts/jobs", + "properties": { + "description": "", + "version": 0, + "schedule": { + "startTime": "0001-01-01T00:00:00Z", + "endTime": "9999-12-31T11:59:59Z", + "type": "Once", + "enabled": false + } + } + } }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", - "name":"job1", - "type":"Microsoft.Sql/servers/jobAccounts/jobs", - "properties":{ - "description":"", - "version":0, - "schedule":{ - "startTime":"0001-01-01T00:00:00Z", - "endTime":"9999-12-31T11:59:59Z", - "type":"Once", - "enabled":false - } - } - } - }, - "201":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", - "name":"job1", - "type":"Microsoft.Sql/servers/jobAccounts/jobs", - "properties":{ - "description":"", - "version":0, - "schedule":{ - "startTime":"0001-01-01T00:00:00Z", - "endTime":"9999-12-31T11:59:59Z", - "type":"Once", - "enabled":false - } - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", + "name": "job1", + "type": "Microsoft.Sql/servers/jobAccounts/jobs", + "properties": { + "description": "", + "version": 0, + "schedule": { + "startTime": "0001-01-01T00:00:00Z", + "endTime": "9999-12-31T11:59:59Z", + "type": "Once", + "enabled": false + } } + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobStepMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobStepMax.json index 1c2cc554d055..77dc2f335409 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobStepMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobStepMax.json @@ -1,110 +1,110 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "stepName":"step1", - "api-version":"2017-03-01-preview", - "parameters":{ - "properties":{ - "stepId":1, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 2" - }, - "output":{ - "type":"SqlDatabase", - "subscriptionId":"3501b905-a848-4b5d-96e8-b253f62d735a", - "resourceGroupName":"group3", - "serverName":"server3", - "databaseName":"database3", - "schemaName":"myschema1234", - "tableName":"mytable5678", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" - }, - "executionOptions":{ - "timeoutSeconds":1234, - "retryAttempts":42, - "initialRetryIntervalSeconds":11, - "maximumRetryIntervalSeconds":222, - "retryIntervalBackoffMultiplier":3.0 - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "stepName": "step1", + "api-version": "2017-03-01-preview", + "parameters": { + "properties": { + "stepId": 1, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 2" + }, + "output": { + "type": "SqlDatabase", + "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", + "resourceGroupName": "group3", + "serverName": "server3", + "databaseName": "database3", + "schemaName": "myschema1234", + "tableName": "mytable5678", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" + }, + "executionOptions": { + "timeoutSeconds": 1234, + "retryAttempts": 42, + "initialRetryIntervalSeconds": 11, + "maximumRetryIntervalSeconds": 222, + "retryIntervalBackoffMultiplier": 3.0 } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "stepId": 1, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 2" + }, + "output": { + "type": "SqlDatabase", + "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", + "resourceGroupName": "group3", + "serverName": "server3", + "databaseName": "database3", + "schemaName": "myschema1234", + "tableName": "mytable5678", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" + }, + "executionOptions": { + "timeoutSeconds": 1234, + "retryAttempts": 42, + "initialRetryIntervalSeconds": 11, + "maximumRetryIntervalSeconds": 222, + "retryIntervalBackoffMultiplier": 3.0 + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", + "name": "step1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/steps" + } }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "stepId":1, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 2" - }, - "output":{ - "type": "SqlDatabase", - "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", - "resourceGroupName": "group3", - "serverName": "server3", - "databaseName": "database3", - "schemaName": "myschema1234", - "tableName": "mytable5678", - "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" - }, - "executionOptions":{ - "timeoutSeconds":1234, - "retryAttempts":42, - "initialRetryIntervalSeconds":11, - "maximumRetryIntervalSeconds":222, - "retryIntervalBackoffMultiplier":3.0 - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", - "name":"step1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/steps" - } + "201": { + "body": { + "properties": { + "stepId": 1, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 2" + }, + "output": { + "type": "SqlDatabase", + "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", + "resourceGroupName": "group3", + "serverName": "server3", + "databaseName": "database3", + "schemaName": "myschema1234", + "tableName": "mytable5678", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" + }, + "executionOptions": { + "timeoutSeconds": 1234, + "retryAttempts": 42, + "initialRetryIntervalSeconds": 11, + "maximumRetryIntervalSeconds": 222, + "retryIntervalBackoffMultiplier": 3.0 + } }, - "201":{ - "body":{ - "properties":{ - "stepId":1, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 2" - }, - "output":{ - "type": "SqlDatabase", - "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", - "resourceGroupName": "group3", - "serverName": "server3", - "databaseName": "database3", - "schemaName": "myschema1234", - "tableName": "mytable5678", - "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" - }, - "executionOptions":{ - "timeoutSeconds":1234, - "retryAttempts":42, - "initialRetryIntervalSeconds":11, - "maximumRetryIntervalSeconds":222, - "retryIntervalBackoffMultiplier":3.0 - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", - "name":"step1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/steps" - } - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", + "name": "step1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/steps" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobStepMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobStepMin.json index 63a3c89525dc..81efbf05cb7e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobStepMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobStepMin.json @@ -1,70 +1,70 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "stepName":"step1", - "api-version":"2017-03-01-preview", - "parameters":{ - "properties":{ - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup0", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0", - "action":{ - "value":"select 1" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "stepName": "step1", + "api-version": "2017-03-01-preview", + "parameters": { + "properties": { + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup0", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0", + "action": { + "value": "select 1" } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "stepId": 1, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup0", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 1" + }, + "executionOptions": { + "timeoutSeconds": 43200, + "retryAttempts": 10, + "initialRetryIntervalSeconds": 1, + "maximumRetryIntervalSeconds": 120, + "retryIntervalBackoffMultiplier": 2.0 + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", + "name": "step1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/steps" + } }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "stepId":1, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup0", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 1" - }, - "executionOptions":{ - "timeoutSeconds":43200, - "retryAttempts":10, - "initialRetryIntervalSeconds":1, - "maximumRetryIntervalSeconds":120, - "retryIntervalBackoffMultiplier":2.0 - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", - "name":"step1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/steps" - } + "201": { + "body": { + "properties": { + "stepId": 1, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup0", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 1" + }, + "executionOptions": { + "timeoutSeconds": 43200, + "retryAttempts": 10, + "initialRetryIntervalSeconds": 1, + "maximumRetryIntervalSeconds": 120, + "retryIntervalBackoffMultiplier": 2.0 + } }, - "201":{ - "body":{ - "properties":{ - "stepId":1, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup0", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 1" - }, - "executionOptions":{ - "timeoutSeconds":43200, - "retryAttempts":10, - "initialRetryIntervalSeconds":1, - "maximumRetryIntervalSeconds":120, - "retryIntervalBackoffMultiplier":2.0 - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", - "name":"step1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/steps" - } - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", + "name": "step1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/steps" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobTargetGroupMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobTargetGroupMax.json index 7913341cb690..c387e9ff832b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobTargetGroupMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobTargetGroupMax.json @@ -1,121 +1,121 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "targetGroupName":"targetGroup1", - "api-version":"2017-03-01-preview", - "parameters":{ - "properties":{ - "members":[ - { - "membershipType":"Exclude", - "type":"SqlDatabase", - "serverName":"server1", - "databaseName":"database1" - }, - { - "membershipType":"Include", - "type":"SqlServer", - "serverName":"server1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - }, - { - "membershipType":"Include", - "type":"SqlElasticPool", - "serverName":"server2", - "elasticPoolName":"pool1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - }, - { - "membershipType":"Include", - "type":"SqlShardMap", - "serverName":"server3", - "shardMapName":"shardMap1", - "databaseName":"database1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "targetGroupName": "targetGroup1", + "api-version": "2017-03-01-preview", + "parameters": { + "properties": { + "members": [ + { + "membershipType": "Exclude", + "type": "SqlDatabase", + "serverName": "server1", + "databaseName": "database1" + }, + { + "membershipType": "Include", + "type": "SqlServer", + "serverName": "server1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + }, + { + "membershipType": "Include", + "type": "SqlElasticPool", + "serverName": "server2", + "elasticPoolName": "pool1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + }, + { + "membershipType": "Include", + "type": "SqlShardMap", + "serverName": "server3", + "shardMapName": "shardMap1", + "databaseName": "database1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "members": [ + { + "membershipType": "Exclude", + "type": "SqlDatabase", + "serverName": "server1", + "databaseName": "database1" + }, + { + "membershipType": "Include", + "type": "SqlServer", + "serverName": "server1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + }, + { + "membershipType": "Include", + "type": "SqlElasticPool", + "serverName": "server2", + "elasticPoolName": "pool1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + }, + { + "membershipType": "Include", + "type": "SqlShardMap", + "serverName": "server3", + "shardMapName": "shardMap1", + "databaseName": "database1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" } - } + ] + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "name": "targetGroup1", + "type": "Microsoft.Sql/servers/jobAgents/targetGroups" + } }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "members":[ - { - "membershipType":"Exclude", - "type":"SqlDatabase", - "serverName":"server1", - "databaseName":"database1" - }, - { - "membershipType":"Include", - "type":"SqlServer", - "serverName":"server1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - }, - { - "membershipType":"Include", - "type":"SqlElasticPool", - "serverName":"server2", - "elasticPoolName":"pool1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - }, - { - "membershipType":"Include", - "type":"SqlShardMap", - "serverName":"server3", - "shardMapName":"shardMap1", - "databaseName":"database1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - } - ] - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "name":"targetGroup1", - "type":"Microsoft.Sql/servers/jobAgents/targetGroups" + "201": { + "body": { + "properties": { + "members": [ + { + "membershipType": "Exclude", + "type": "SqlDatabase", + "serverName": "server1", + "databaseName": "database1" + }, + { + "membershipType": "Include", + "type": "SqlServer", + "serverName": "server1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + }, + { + "membershipType": "Include", + "type": "SqlElasticPool", + "serverName": "server2", + "elasticPoolName": "pool1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + }, + { + "membershipType": "Include", + "type": "SqlShardMap", + "serverName": "server3", + "shardMapName": "shardMap1", + "databaseName": "database1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" } + ] }, - "201":{ - "body":{ - "properties":{ - "members":[ - { - "membershipType":"Exclude", - "type":"SqlDatabase", - "serverName":"server1", - "databaseName":"database1" - }, - { - "membershipType":"Include", - "type":"SqlServer", - "serverName":"server1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - }, - { - "membershipType":"Include", - "type":"SqlElasticPool", - "serverName":"server2", - "elasticPoolName":"pool1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - }, - { - "membershipType":"Include", - "type":"SqlShardMap", - "serverName":"server3", - "shardMapName":"shardMap1", - "databaseName":"database1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - } - ] - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "name":"targetGroup1", - "type":"Microsoft.Sql/servers/jobAgents/targetGroups" - } - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "name": "targetGroup1", + "type": "Microsoft.Sql/servers/jobAgents/targetGroups" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobTargetGroupMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobTargetGroupMin.json index 91cebdfb494c..bfe7f79e776f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobTargetGroupMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/CreateOrUpdateJobTargetGroupMin.json @@ -1,40 +1,37 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "targetGroupName":"targetGroup1", - "api-version":"2017-03-01-preview", - "parameters":{ - "properties":{ - "members":[ - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "targetGroupName": "targetGroup1", + "api-version": "2017-03-01-preview", + "parameters": { + "properties": { + "members": [] + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "members": [] + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "name": "targetGroup1", + "type": "Microsoft.Sql/servers/jobAgents/targetGroups" + } }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "members":[ - ] - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "name":"targetGroup1", - "type":"Microsoft.Sql/servers/jobAgents/targetGroups" - } + "201": { + "body": { + "properties": { + "members": [] }, - "201":{ - "body":{ - "properties":{ - "members":[ - ] - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "name":"targetGroup1", - "type":"Microsoft.Sql/servers/jobAgents/targetGroups" - } - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "name": "targetGroup1", + "type": "Microsoft.Sql/servers/jobAgents/targetGroups" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DataWarehouseRestorePointsGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DataWarehouseRestorePointsGet.json index 539a3c876321..589ae075c29c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DataWarehouseRestorePointsGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DataWarehouseRestorePointsGet.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "restorePointName": "131546477590000000", + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "restorePointName": "131546477590000000", + "location": "japaneast", + "serverName": "testserver", + "databaseName": "testDatabase", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131546477590000000", + "name": "131546477590000000", + "type": "Microsoft.Sql/servers/databases/restorePoints", "location": "japaneast", - "serverName": "testserver", - "databaseName": "testDatabase", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131546477590000000", - "name": "131546477590000000", - "type": "Microsoft.Sql/servers/databases/restorePoints", - "location": "japaneast", - "properties" : { - "restorePointType": "DISCRETE", - "restorePointCreationDate": "2017-03-10T08:00:00.000Z", - "restorePointLabel": "mylabel" - } - } + "properties": { + "restorePointType": "DISCRETE", + "restorePointCreationDate": "2017-03-10T08:00:00.000Z", + "restorePointLabel": "mylabel" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DataWarehouseRestorePointsListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DataWarehouseRestorePointsListByDatabase.json index c31110212b1d..014cc23197e3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DataWarehouseRestorePointsListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DataWarehouseRestorePointsListByDatabase.json @@ -1,50 +1,50 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "location": "japaneast", - "serverName": "testserver", - "databaseName": "testDatabase", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131546477590000000", - "name": "131546477590000000", - "type": "Microsoft.Sql/servers/databases/restorePoints", - "location": "japaneast", - "properties" : { - "restorePointType": "DISCRETE", - "restorePointCreationDate": "2017-03-10T08:00:00.000Z", - "restorePointLabel": "mylabel1" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131553636140000000", - "name": "131553636140000000", - "type": "Microsoft.Sql/servers/databases/restorePoints", - "location": "japaneast", - "properties" : { - "restorePointType": "DISCRETE", - "restorePointCreationDate": "2017-11-17T03:40:14Z", - "restorePointLabel": "mylabel2" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131553619750000000", - "name": "131553619750000000", - "type": "Microsoft.Sql/servers/databases/restorePoints", - "location": "japaneast", - "properties" : { - "restorePointType": "DISCRETE", - "restorePointCreationDate": "2017-11-17T03:12:55Z" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "location": "japaneast", + "serverName": "testserver", + "databaseName": "testDatabase", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131546477590000000", + "name": "131546477590000000", + "type": "Microsoft.Sql/servers/databases/restorePoints", + "location": "japaneast", + "properties": { + "restorePointType": "DISCRETE", + "restorePointCreationDate": "2017-03-10T08:00:00.000Z", + "restorePointLabel": "mylabel1" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131553636140000000", + "name": "131553636140000000", + "type": "Microsoft.Sql/servers/databases/restorePoints", + "location": "japaneast", + "properties": { + "restorePointType": "DISCRETE", + "restorePointCreationDate": "2017-11-17T03:40:14Z", + "restorePointLabel": "mylabel2" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131553619750000000", + "name": "131553619750000000", + "type": "Microsoft.Sql/servers/databases/restorePoints", + "location": "japaneast", + "properties": { + "restorePointType": "DISCRETE", + "restorePointCreationDate": "2017-11-17T03:12:55Z" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json index 2d4883bd79ed..ae0dcecf831f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json @@ -8,8 +8,8 @@ "api-version": "2015-05-01-preview", "parameters": { "properties": { - "state": "Enabled", - "IsAzureMonitorTargetEnabled": true + "state": "Enabled", + "IsAzureMonitorTargetEnabled": true } } }, @@ -20,14 +20,18 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "isAzureMonitorTargetEnabled": true, - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP","FAILED_DATABASE_AUTHENTICATION_GROUP","BATCH_COMPLETED_GROUP"] + "properties": { + "state": "Enabled", + "isAzureMonitorTargetEnabled": true, + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ] } } }, @@ -37,16 +41,20 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "isAzureMonitorTargetEnabled": true, - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP","FAILED_DATABASE_AUTHENTICATION_GROUP","BATCH_COMPLETED_GROUP"] + "properties": { + "state": "Enabled", + "isAzureMonitorTargetEnabled": true, + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ] } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMax.json index 194627f146a2..7bfa3b938cce 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMax.json @@ -8,14 +8,18 @@ "api-version": "2015-05-01-preview", "parameters": { "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 6, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups":["DATABASE_LOGOUT_GROUP","DATABASE_ROLE_MEMBER_CHANGE_GROUP", "UPDATE on database::TestDatabaseName by public"], - "isAzureMonitorTargetEnabled": true + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 6, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "DATABASE_LOGOUT_GROUP", + "DATABASE_ROLE_MEMBER_CHANGE_GROUP", + "UPDATE on database::TestDatabaseName by public" + ], + "isAzureMonitorTargetEnabled": true } } }, @@ -26,15 +30,19 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": ["DATABASE_LOGOUT_GROUP", "DATABASE_ROLE_MEMBER_CHANGE_GROUP", "UPDATE on database::TestDatabaseName by public"], - "isAzureMonitorTargetEnabled": true + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "DATABASE_LOGOUT_GROUP", + "DATABASE_ROLE_MEMBER_CHANGE_GROUP", + "UPDATE on database::TestDatabaseName by public" + ], + "isAzureMonitorTargetEnabled": true } } }, @@ -44,17 +52,21 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "DATABASE_LOGOUT_GROUP", "DATABASE_ROLE_MEMBER_CHANGE_GROUP", "UPDATE on database::TestDatabaseName by public" ], - "isAzureMonitorTargetEnabled": true + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "DATABASE_LOGOUT_GROUP", + "DATABASE_ROLE_MEMBER_CHANGE_GROUP", + "UPDATE on database::TestDatabaseName by public" + ], + "isAzureMonitorTargetEnabled": true } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMin.json index e609623afef2..a33e1aeaadea 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMin.json @@ -8,9 +8,9 @@ "api-version": "2015-05-01-preview", "parameters": { "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } } }, @@ -21,15 +21,19 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", "FAILED_DATABASE_AUTHENTICATION_GROUP", "BATCH_COMPLETED_GROUP" ], - "isAzureMonitorTargetEnabled": true + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ], + "isAzureMonitorTargetEnabled": true } } }, @@ -39,17 +43,21 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/auditingSettings", "kind": "V12", - "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "storageAccountAccessKey": "", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", "FAILED_DATABASE_AUTHENTICATION_GROUP", "BATCH_COMPLETED_GROUP" ], - "isAzureMonitorTargetEnabled": true + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "storageAccountAccessKey": "", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ], + "isAzureMonitorTargetEnabled": true } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingGet.json index 7e5d6e712101..0c5a321a808b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingGet.json @@ -9,21 +9,21 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/auditingSettings", - "kind": "V12", - "properties": { - "state": "Disabled", - "storageEndpoint": "", - "retentionDays": 0, - "auditActionsAndGroups": [], - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "isAzureMonitorTargetEnabled": true - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/auditingSettings", + "kind": "V12", + "properties": { + "state": "Disabled", + "storageEndpoint": "", + "retentionDays": 0, + "auditActionsAndGroups": [], + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "isAzureMonitorTargetEnabled": true } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsDelete.json index 8e8c4a46a4fa..69a0c2a954e2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsDelete.json @@ -1,14 +1,14 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "restorePointName": "131546477590000000", - "location": "japaneast", - "serverName": "testserver", - "databaseName": "testDatabase", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "restorePointName": "131546477590000000", + "location": "japaneast", + "serverName": "testserver", + "databaseName": "testDatabase", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsGet.json index 831adeef822f..cdd592b3b860 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsGet.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "restorePointName": "131546477590000000", + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "restorePointName": "131546477590000000", + "location": "japaneast", + "serverName": "testserver", + "databaseName": "testDatabase", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/ContinuousRestorePoint", + "name": "ContinuousRestorePoint", + "type": "Microsoft.Sql/servers/databases/restorePoints", "location": "japaneast", - "serverName": "testserver", - "databaseName": "testDatabase", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/ContinuousRestorePoint", - "name": "ContinuousRestorePoint", - "type": "Microsoft.Sql/servers/databases/restorePoints", - "location": "japaneast", - "properties" : { - "restorePointType": "CONTINUOUS", - "earliestRestoreDate": "2017-03-10T08:00:00.000Z" - } - } + "properties": { + "restorePointType": "CONTINUOUS", + "earliestRestoreDate": "2017-03-10T08:00:00.000Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsListByDatabase.json index d2f9abda921b..0d4870074574 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsListByDatabase.json @@ -1,27 +1,27 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"sqlcrudtest-6730", - "serverName":"sqlcrudtest-9007", - "databaseName":"3481", - "api-version":"2017-03-01-preview" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6730", + "serverName": "sqlcrudtest-9007", + "databaseName": "3481", + "api-version": "2017-03-01-preview" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/restorepoints/ContinuousRestorePoint", - "name":"ContinuousRestorePoint", - "location":"West US", - "type":"Microsoft.Sql/servers/databases/restorePoints", - "properties":{ - "restorePointType":"CONTINUOUS", - "earliestRestoreDate":"2017-06-12T00:00:00Z" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/restorepoints/ContinuousRestorePoint", + "name": "ContinuousRestorePoint", + "location": "West US", + "type": "Microsoft.Sql/servers/databases/restorePoints", + "properties": { + "restorePointType": "CONTINUOUS", + "earliestRestoreDate": "2017-06-12T00:00:00Z" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsPost.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsPost.json index 078430371eae..76b88edfcafa 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsPost.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseRestorePointsPost.json @@ -1,28 +1,28 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "location": "japaneast", + "serverName": "testserver", + "databaseName": "testDatabase", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", + "restorePointLabel": "mylabel" + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131546477590000000", + "name": "131546477590000000", + "type": "Microsoft.Sql/servers/databases/restorePoints", "location": "japaneast", - "serverName": "testserver", - "databaseName": "testDatabase", - "api-version": "2017-03-01-preview", - "parameters": { - "restorePointLabel":"mylabel" - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131546477590000000", - "name": "131546477590000000", - "type": "Microsoft.Sql/servers/databases/restorePoints", - "location": "japaneast", - "properties" : { - "restorePointType": "DISCRETE", - "restorePointCreationDate": "2017-03-10T08:00:00.000Z", - "restorePointLabel": "mylabel" - } - } + "properties": { + "restorePointType": "DISCRETE", + "restorePointCreationDate": "2017-03-10T08:00:00.000Z", + "restorePointLabel": "mylabel" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateContainerSasKeyMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateContainerSasKeyMin.json index 121ad41dc081..f965b7069e44 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateContainerSasKeyMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateContainerSasKeyMin.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateMax.json index 75862b1e65c3..581f3981b2e6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateMax.json @@ -10,11 +10,14 @@ "properties": { "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", "storageContainerSasKey": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", - "storageAccountAccessKey": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "storageAccountAccessKey": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } @@ -30,7 +33,10 @@ "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } @@ -45,10 +51,13 @@ "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateStorageAccessKeyMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateStorageAccessKeyMin.json index 30ee42d4206c..6c9d4029348d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateStorageAccessKeyMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateStorageAccessKeyMin.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentDelete.json index b6cfa2303d4e..7e258a5fc00c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentDelete.json @@ -1,14 +1,13 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "serverName": "vulnerabilityaseessmenttest-6440", - "databaseName": "testdb", - "vulnerabilityAssessmentName": "default", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "serverName": "vulnerabilityaseessmenttest-6440", + "databaseName": "testdb", + "vulnerabilityAssessmentName": "default", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentGet.json index 2c583ee4a055..cbd6d36f31bb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentGet.json @@ -1,27 +1,30 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "serverName": "vulnerabilityaseessmenttest-6440", - "databaseName": "testdb", - "vulnerabilityAssessmentName": "default", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityaseessmenttest-6440/databases/testdb/vulnerabilityAssessments/default", - "name": "default", - "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments", - "properties": { - "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", - "recurringScans": { - "isEnabled": true, - "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "serverName": "vulnerabilityaseessmenttest-6440", + "databaseName": "testdb", + "vulnerabilityAssessmentName": "default", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityaseessmenttest-6440/databases/testdb/vulnerabilityAssessments/default", + "name": "default", + "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments", + "properties": { + "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "recurringScans": { + "isEnabled": true, + "emailSubscriptionAdmins": true, + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentListByDatabase.json index c70a2a22b9a6..a64d095a5982 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentListByDatabase.json @@ -1,31 +1,34 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "serverName": "vulnerabilityaseessmenttest-6440", - "databaseName": "testdb", - "vulnerabilityAssessmentName": "default", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityaseessmenttest-6440/databases/testdb/vulnerabilityAssessments/default", - "name": "default", - "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments", - "properties": { - "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", - "recurringScans": { - "isEnabled": true, - "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "serverName": "vulnerabilityaseessmenttest-6440", + "databaseName": "testdb", + "vulnerabilityAssessmentName": "default", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityaseessmenttest-6440/databases/testdb/vulnerabilityAssessments/default", + "name": "default", + "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments", + "properties": { + "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "recurringScans": { + "isEnabled": true, + "emailSubscriptionAdmins": true, + "emails": [ + "email1@mail.com", + "email2@mail.com" ] + } } - } + } + ] + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineCreate.json index fccb1034117b..3b8be60300d0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineCreate.json @@ -12,13 +12,23 @@ "properties": { "baselineResults": [ { - "result": [ "userA", "SELECT" ] + "result": [ + "userA", + "SELECT" + ] }, { - "result": [ "userB", "SELECT" ] + "result": [ + "userB", + "SELECT" + ] }, { - "result": [ "userC", "SELECT", "tableId_4" ] + "result": [ + "userC", + "SELECT", + "tableId_4" + ] } ] } @@ -33,17 +43,27 @@ "properties": { "baselineResults": [ { - "result": [ "userA", "SELECT" ] + "result": [ + "userA", + "SELECT" + ] }, { - "result": [ "userB", "SELECT" ] + "result": [ + "userB", + "SELECT" + ] }, { - "result": [ "userC", "SELECT", "tableId_4" ] + "result": [ + "userC", + "SELECT", + "tableId_4" + ] } ] } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineDelete.json index 157beb7fcb9c..fb4f53e70895 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineDelete.json @@ -10,7 +10,6 @@ "api-version": "2017-03-01-preview" }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineGet.json index 1602407dad65..84f44738539e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentRuleBaselineGet.json @@ -18,17 +18,27 @@ "properties": { "baselineResults": [ { - "result": [ "userA", "SELECT" ] + "result": [ + "userA", + "SELECT" + ] }, { - "result": [ "userB", "SELECT" ] + "result": [ + "userB", + "SELECT" + ] }, { - "result": [ "userC", "SELECT", "tableId_4" ] + "result": [ + "userC", + "SELECT", + "tableId_4" + ] } ] } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteDatabase.json index ed35085e9ec4..c70d7532b66e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteDatabase.json @@ -1,14 +1,14 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { }, - "204": { }, - "202": { } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {}, + "204": {}, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJob.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJob.json index b924799c02bd..a61cd9d5098b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJob.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJob.json @@ -1,14 +1,14 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ }, - "204":{ } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobAgent.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobAgent.json index 621272a80253..29c012426cba 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobAgent.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobAgent.json @@ -1,14 +1,14 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ }, - "202":{ }, - "204":{ } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobCredential.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobCredential.json index 9de9c1a375c0..bf81940c06df 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobCredential.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobCredential.json @@ -1,14 +1,14 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "credentialName":"cred1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ }, - "204":{ } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "credentialName": "cred1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobStep.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobStep.json index dee50fcd08fa..2cde1f5e3c81 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobStep.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobStep.json @@ -1,15 +1,15 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "stepName":"step1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ }, - "204":{ } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "stepName": "step1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobTargetGroup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobTargetGroup.json index b93e3f88e032..c841f2b02a49 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobTargetGroup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DeleteJobTargetGroup.json @@ -1,14 +1,14 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "targetGroupName":"targetGroup1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ }, - "204":{ } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "targetGroupName": "targetGroup1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {}, + "204": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExportDatabase.json index 6d6e5567030d..f6580629df21 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExportDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExportDatabase.json @@ -1,37 +1,37 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", - "storageUri": "https://test.blob.core.windows.net/test.bacpac", - "administratorLogin": "login", - "administratorLoginPassword": "password", - "authenticationType": "Sql" - } - }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Export", - "queuedTime": "7/13/2017 8:33:27 PM", - "lastModifiedTime": "7/13/2017 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } - }, - "202": {} + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql" } + }, + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Export", + "queuedTime": "7/13/2017 8:33:27 PM", + "lastModifiedTime": "7/13/2017 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseAzureMonitorAuditingCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseAzureMonitorAuditingCreateMin.json index 14d01b0281a1..3c31571b6545 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseAzureMonitorAuditingCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseAzureMonitorAuditingCreateMin.json @@ -20,12 +20,16 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/extendedAuditingSettings", "properties": { - "state": "Enabled", - "isAzureMonitorTargetEnabled": true, - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP","FAILED_DATABASE_AUTHENTICATION_GROUP","BATCH_COMPLETED_GROUP"] + "state": "Enabled", + "isAzureMonitorTargetEnabled": true, + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ] } } }, @@ -35,14 +39,18 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/extendedAuditingSettings", "properties": { - "state": "Enabled", - "isAzureMonitorTargetEnabled": true, - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP","FAILED_DATABASE_AUTHENTICATION_GROUP","BATCH_COMPLETED_GROUP"] + "state": "Enabled", + "isAzureMonitorTargetEnabled": true, + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ] } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingCreateMax.json index 880fdabb023b..229fc8d69795 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingCreateMax.json @@ -8,15 +8,19 @@ "api-version": "2017-03-01-preview", "parameters": { "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 6, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "DATABASE_LOGOUT_GROUP", "DATABASE_ROLE_MEMBER_CHANGE_GROUP", "UPDATE on database::TestDatabaseName by public" ], - "predicateExpression": "statement = 'select 1'", - "isAzureMonitorTargetEnabled": true + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 6, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "DATABASE_LOGOUT_GROUP", + "DATABASE_ROLE_MEMBER_CHANGE_GROUP", + "UPDATE on database::TestDatabaseName by public" + ], + "predicateExpression": "statement = 'select 1'", + "isAzureMonitorTargetEnabled": true } } }, @@ -27,14 +31,18 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/extendedAuditingSettings", "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "DATABASE_LOGOUT_GROUP", "DATABASE_ROLE_MEMBER_CHANGE_GROUP", "UPDATE on database::TestDatabaseName by public" ], - "predicateExpression": "statement = 'select 1'", - "isAzureMonitorTargetEnabled": true + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "DATABASE_LOGOUT_GROUP", + "DATABASE_ROLE_MEMBER_CHANGE_GROUP", + "UPDATE on database::TestDatabaseName by public" + ], + "predicateExpression": "statement = 'select 1'", + "isAzureMonitorTargetEnabled": true } } }, @@ -44,16 +52,20 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/extendedAuditingSettings", "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "DATABASE_LOGOUT_GROUP", "DATABASE_ROLE_MEMBER_CHANGE_GROUP", "UPDATE on database::TestDatabaseName by public" ], - "predicateExpression": "statement = 'select 1'", - "isAzureMonitorTargetEnabled": true + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "DATABASE_LOGOUT_GROUP", + "DATABASE_ROLE_MEMBER_CHANGE_GROUP", + "UPDATE on database::TestDatabaseName by public" + ], + "predicateExpression": "statement = 'select 1'", + "isAzureMonitorTargetEnabled": true } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingCreateMin.json index c45b3514c1d3..af1a8b0e97d7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingCreateMin.json @@ -8,9 +8,9 @@ "api-version": "2017-03-01-preview", "parameters": { "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } } }, @@ -21,13 +21,17 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/extendedAuditingSettings", "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", "FAILED_DATABASE_AUTHENTICATION_GROUP", "BATCH_COMPLETED_GROUP" ], - "isAzureMonitorTargetEnabled": false + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ], + "isAzureMonitorTargetEnabled": false } } }, @@ -37,15 +41,19 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/extendedAuditingSettings", "properties": { - "state":"Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 0, - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", "FAILED_DATABASE_AUTHENTICATION_GROUP", "BATCH_COMPLETED_GROUP" ], - "isAzureMonitorTargetEnabled": false + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 0, + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ], + "isAzureMonitorTargetEnabled": false } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingGet.json index 1b5a16828782..6b5ac989be3f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedDatabaseBlobAuditingGet.json @@ -9,21 +9,21 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/extendedAuditingSettings", - "properties": { - "state": "Disabled", - "storageEndpoint": "", - "retentionDays": 0, - "auditActionsAndGroups": [], - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "predicateExpression": "statement = 'select 1'", - "isAzureMonitorTargetEnabled": false - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/extendedAuditingSettings", + "properties": { + "state": "Disabled", + "storageEndpoint": "", + "retentionDays": 0, + "auditActionsAndGroups": [], + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "predicateExpression": "statement = 'select 1'", + "isAzureMonitorTargetEnabled": false } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingCreateMax.json index 53bc860a3920..2b5ab9c1ccb1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingCreateMax.json @@ -1,45 +1,53 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-4799", + "serverName": "blobauditingtest-6440", + "blobAuditingPolicyName": "default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "blobauditingtest-4799", - "serverName": "blobauditingtest-6440", - "blobAuditingPolicyName": "default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 6, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", "FAILED_DATABASE_AUTHENTICATION_GROUP", "BATCH_COMPLETED_GROUP" ], - "predicateExpression": "object_name = 'SensitiveData'", - "isAzureMonitorTargetEnabled": true - } + "properties": { + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 6, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ], + "predicateExpression": "object_name = 'SensitiveData'", + "isAzureMonitorTargetEnabled": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-4799/providers/Microsoft.Sql/servers/blobauditingtest-6440/extendedAuditingSettings/default", + "name": "default", + "type": "Microsoft.Sql/servers/extendedAuditingSettings", + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 6, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ], + "predicateExpression": "object_name = 'SensitiveData'", + "isAzureMonitorTargetEnabled": true } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-4799/providers/Microsoft.Sql/servers/blobauditingtest-6440/extendedAuditingSettings/default", - "name": "default", - "type": "Microsoft.Sql/servers/extendedAuditingSettings", - "properties": { - "state": "Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 6, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", "FAILED_DATABASE_AUTHENTICATION_GROUP", "BATCH_COMPLETED_GROUP" ], - "predicateExpression": "object_name = 'SensitiveData'", - "isAzureMonitorTargetEnabled": true - } - } - }, - "202": { - "startTime": "2017-11-22T09:34:54.72Z", - "operation": "UpsertServerEngineAuditingPolicy" - } + "202": { + "startTime": "2017-11-22T09:34:54.72Z", + "operation": "UpsertServerEngineAuditingPolicy" } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingCreateMin.json index e95c459688bb..0666af4b48ea 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingCreateMin.json @@ -1,38 +1,42 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-4799", + "serverName": "blobauditingtest-6440", + "blobAuditingPolicyName": "default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "blobauditingtest-4799", - "serverName": "blobauditingtest-6440", - "blobAuditingPolicyName": "default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-4799/providers/Microsoft.Sql/servers/blobauditingtest-6440/extendedAuditingSettings/default", + "name": "default", + "type": "Microsoft.Sql/servers/extendedAuditingSettings", + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 6, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ], + "isAzureMonitorTargetEnabled": false } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-4799/providers/Microsoft.Sql/servers/blobauditingtest-6440/extendedAuditingSettings/default", - "name": "default", - "type": "Microsoft.Sql/servers/extendedAuditingSettings", - "properties": { - "state": "Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 6, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", "FAILED_DATABASE_AUTHENTICATION_GROUP", "BATCH_COMPLETED_GROUP" ], - "isAzureMonitorTargetEnabled": false - } - } - }, - "202": { - "startTime": "2017-11-22T09:34:54.72Z", - "operation": "UpsertServerEngineAuditingPolicy" - } + "202": { + "startTime": "2017-11-22T09:34:54.72Z", + "operation": "UpsertServerEngineAuditingPolicy" } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingGet.json index fe470ca3be68..6b0e4ee7e98d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ExtendedServerBlobAuditingGet.json @@ -8,21 +8,21 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/extendedAuditingSettings/default", - "name": "default", - "type": "Microsoft.Sql/servers/extendedAuditingSettings", - "properties": { - "state": "Disabled", - "storageEndpoint": "", - "retentionDays": 0, - "auditActionsAndGroups": [], - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "predicateExpression": "object_name = 'SensitiveData'", - "isAzureMonitorTargetEnabled": false - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/extendedAuditingSettings/default", + "name": "default", + "type": "Microsoft.Sql/servers/extendedAuditingSettings", + "properties": { + "state": "Disabled", + "storageEndpoint": "", + "retentionDays": 0, + "auditActionsAndGroups": [], + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "predicateExpression": "object_name = 'SensitiveData'", + "isAzureMonitorTargetEnabled": false } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetDataWarehouseUserActivities.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetDataWarehouseUserActivities.json index a0f45d02041c..30faf4f2971e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetDataWarehouseUserActivities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetDataWarehouseUserActivities.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "dataWarehouseUserActivityName": "current" - }, - "responses": { - "200": { - "body": { - "properties":{ - "activeQueriesCount":0 - }, - "id":"subscriptions/326affc3-21f4-4471-a545-e37430b70113/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/testsvr/databases/dwdb01/dataWarehouseUserActivities/current", - "name":"current", - "type":"Microsoft.Sql/servers/databases/dataWarehouseUserActivities" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", + "dataWarehouseUserActivityName": "current" + }, + "responses": { + "200": { + "body": { + "properties": { + "activeQueriesCount": 0 + }, + "id": "subscriptions/326affc3-21f4-4471-a545-e37430b70113/resourceGroups/Default-SQL-Onebox/providers/Microsoft.Sql/servers/testsvr/databases/dwdb01/dataWarehouseUserActivities/current", + "name": "current", + "type": "Microsoft.Sql/servers/databases/dataWarehouseUserActivities" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetDatabase.json index 70e9298d0244..8d643600cda9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetDatabase.json @@ -1,34 +1,34 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJob.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJob.json index 577437a4fb07..bdd765f78994 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJob.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJob.json @@ -1,29 +1,29 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", - "name":"job1", - "type":"Microsoft.Sql/servers/jobAccounts/jobs", - "properties":{ - "description":"my favourite job", - "version":0, - "schedule":{ - "startTime":"2015-09-24T18:30:01Z", - "endTime":"2015-09-24T23:59:59Z", - "type":"Once", - "enabled":true - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", + "name": "job1", + "type": "Microsoft.Sql/servers/jobAccounts/jobs", + "properties": { + "description": "my favourite job", + "version": 0, + "schedule": { + "startTime": "2015-09-24T18:30:01Z", + "endTime": "2015-09-24T23:59:59Z", + "type": "Once", + "enabled": true + } } + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobAgent.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobAgent.json index b98c93872916..bffd13c28b3f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobAgent.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobAgent.json @@ -1,26 +1,26 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", - "name":"agent1", - "type":"Microsoft.Sql/servers/jobAgents", - "location": "southeastasia", - "sku": { - "name": "Agent", - "capacity": 100 - }, - "properties":{ - "databaseId":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", + "name": "agent1", + "type": "Microsoft.Sql/servers/jobAgents", + "location": "southeastasia", + "sku": { + "name": "Agent", + "capacity": 100 + }, + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobCredential.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobCredential.json index 69798a51034e..25f444031182 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobCredential.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobCredential.json @@ -1,22 +1,22 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "credentialName":"cred1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "name":"cred1", - "type":"Microsoft.Sql/servers/jobAccounts/credentials", - "properties":{ - "username":"myuser" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "credentialName": "cred1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "name": "cred1", + "type": "Microsoft.Sql/servers/jobAccounts/credentials", + "properties": { + "username": "myuser" } + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecution.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecution.json index 1779769b1655..d07fe3797e9d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecution.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecution.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecutionStep.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecutionStep.json index f0490f13d46f..9ad65d6cd1d3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecutionStep.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecutionStep.json @@ -1,35 +1,35 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "stepName":"step1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "jobVersion":1, - "stepName":"step1", - "stepId":1, - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "lifecycle":"Succeeded", - "provisioningState":"Succeeded", - "createTime":"2017-12-27T04:33:15.7189151Z", - "startTime":"2017-12-27T04:33:16.176937Z", - "endTime":"2017-12-27T04:33:19.0600862Z", - "currentAttempts":1, - "currentAttemptStartTime":"2017-12-27T04:33:17.4840068Z", - "lastMessage":"Step 1 succeeded." - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/executions/5555-6666-7777-8888-999999999999/steps/step1", - "name":"step1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/executions/steps" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "stepName": "step1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "jobVersion": 1, + "stepName": "step1", + "stepId": 1, + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "lifecycle": "Succeeded", + "provisioningState": "Succeeded", + "createTime": "2017-12-27T04:33:15.7189151Z", + "startTime": "2017-12-27T04:33:16.176937Z", + "endTime": "2017-12-27T04:33:19.0600862Z", + "currentAttempts": 1, + "currentAttemptStartTime": "2017-12-27T04:33:17.4840068Z", + "lastMessage": "Step 1 succeeded." + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/executions/5555-6666-7777-8888-999999999999/steps/step1", + "name": "step1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/executions/steps" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecutionTarget.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecutionTarget.json index 0e373fb91bcc..94d957f71541 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecutionTarget.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobExecutionTarget.json @@ -1,41 +1,41 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "stepName":"step1", - "targetId":"aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "jobVersion":1, - "stepName":"step1", - "stepId":1, - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "lifecycle":"Succeeded", - "provisioningState":"Succeeded", - "createTime":"2017-11-05T04:33:17.5133333Z", - "startTime":"2017-11-05T04:33:18.1230403Z", - "endTime":"2017-11-05T04:33:18.7031029Z", - "currentAttempts":1, - "currentAttemptStartTime":"2017-11-05T04:33:18.2391013Z", - "lastMessage":"Step 1 succeeded execution on target (server 'server1', database 'database1').", - "target":{ - "type":"SqlDatabase", - "serverName":"server1", - "databaseName":"database1" - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/executions/5555-6666-7777-8888-999999999999/steps/step1/targets/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "name":"aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "type":"Microsoft.Sql/servers/jobAgents/jobs/executions/steps/targets" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "stepName": "step1", + "targetId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "jobVersion": 1, + "stepName": "step1", + "stepId": 1, + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "lifecycle": "Succeeded", + "provisioningState": "Succeeded", + "createTime": "2017-11-05T04:33:17.5133333Z", + "startTime": "2017-11-05T04:33:18.1230403Z", + "endTime": "2017-11-05T04:33:18.7031029Z", + "currentAttempts": 1, + "currentAttemptStartTime": "2017-11-05T04:33:18.2391013Z", + "lastMessage": "Step 1 succeeded execution on target (server 'server1', database 'database1').", + "target": { + "type": "SqlDatabase", + "serverName": "server1", + "databaseName": "database1" + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/executions/5555-6666-7777-8888-999999999999/steps/step1/targets/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "name": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "type": "Microsoft.Sql/servers/jobAgents/jobs/executions/steps/targets" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobStepByJob.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobStepByJob.json index 331fc0690c64..cf4aeb03baf1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobStepByJob.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobStepByJob.json @@ -1,47 +1,47 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "stepName":"step1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "stepId":1, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 2" - }, - "output":{ - "type":"SqlDatabase", - "subscriptionId":"3501b905-a848-4b5d-96e8-b253f62d735a", - "resourceGroupName":"group3", - "serverName":"server3", - "databaseName":"database3", - "schemaName":"myschema1234", - "tableName":"mytable5678", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" - }, - "executionOptions":{ - "timeoutSeconds":1234, - "retryAttempts":42, - "initialRetryIntervalSeconds":11, - "maximumRetryIntervalSeconds":222, - "retryIntervalBackoffMultiplier":3.0 - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", - "name":"step1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/steps" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "stepName": "step1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "stepId": 1, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 2" + }, + "output": { + "type": "SqlDatabase", + "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", + "resourceGroupName": "group3", + "serverName": "server3", + "databaseName": "database3", + "schemaName": "myschema1234", + "tableName": "mytable5678", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" + }, + "executionOptions": { + "timeoutSeconds": 1234, + "retryAttempts": 42, + "initialRetryIntervalSeconds": 11, + "maximumRetryIntervalSeconds": 222, + "retryIntervalBackoffMultiplier": 3.0 + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", + "name": "step1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/steps" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobStepByVersion.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobStepByVersion.json index 4b5a5b272c58..449deeaa08f4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobStepByVersion.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobStepByVersion.json @@ -1,48 +1,48 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "jobVersion":"1", - "stepName":"step1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "stepId":1, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 2" - }, - "output":{ - "type":"SqlDatabase", - "subscriptionId":"3501b905-a848-4b5d-96e8-b253f62d735a", - "resourceGroupName":"group3", - "serverName":"server3", - "databaseName":"database3", - "schemaName":"myschema1234", - "tableName":"mytable5678", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" - }, - "executionOptions":{ - "timeoutSeconds":1234, - "retryAttempts":42, - "initialRetryIntervalSeconds":11, - "maximumRetryIntervalSeconds":222, - "retryIntervalBackoffMultiplier":3.0 - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/1/steps/step1", - "name":"step1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/versions/steps" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "jobVersion": "1", + "stepName": "step1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "stepId": 1, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 2" + }, + "output": { + "type": "SqlDatabase", + "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", + "resourceGroupName": "group3", + "serverName": "server3", + "databaseName": "database3", + "schemaName": "myschema1234", + "tableName": "mytable5678", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" + }, + "executionOptions": { + "timeoutSeconds": 1234, + "retryAttempts": 42, + "initialRetryIntervalSeconds": 11, + "maximumRetryIntervalSeconds": 222, + "retryIntervalBackoffMultiplier": 3.0 + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/1/steps/step1", + "name": "step1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/versions/steps" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobTargetGroup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobTargetGroup.json index e79a3037415c..cf554d1cd657 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobTargetGroup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobTargetGroup.json @@ -1,50 +1,50 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "targetGroupName":"targetGroup1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "properties":{ - "members":[ - { - "membershipType":"Exclude", - "type":"SqlDatabase", - "serverName":"server1", - "databaseName":"database1" - }, - { - "membershipType":"Include", - "type":"SqlServer", - "serverName":"server1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - }, - { - "membershipType":"Include", - "type":"SqlElasticPool", - "serverName":"server2", - "elasticPoolName":"pool1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - }, - { - "membershipType":"Include", - "type":"SqlShardMap", - "serverName":"server3", - "shardMapName":"shardMap1", - "databaseName":"database1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - } - ] - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "name":"targetGroup1", - "type":"Microsoft.Sql/servers/jobAgents/targetGroups" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "targetGroupName": "targetGroup1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "members": [ + { + "membershipType": "Exclude", + "type": "SqlDatabase", + "serverName": "server1", + "databaseName": "database1" + }, + { + "membershipType": "Include", + "type": "SqlServer", + "serverName": "server1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + }, + { + "membershipType": "Include", + "type": "SqlElasticPool", + "serverName": "server2", + "elasticPoolName": "pool1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + }, + { + "membershipType": "Include", + "type": "SqlShardMap", + "serverName": "server3", + "shardMapName": "shardMap1", + "databaseName": "database1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" } - } + ] + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "name": "targetGroup1", + "type": "Microsoft.Sql/servers/jobAgents/targetGroups" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobVersion.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobVersion.json index 56143c2846b6..4d0b82cad566 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobVersion.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetJobVersion.json @@ -1,20 +1,20 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "jobVersion":"1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/1", - "name":"1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/versions" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "jobVersion": "1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/1", + "name": "1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/versions" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetListManagedShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetListManagedShortTermRetentionPolicy.json index 0c6e8f5f9f8d..874c7f63b767 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetListManagedShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetListManagedShortTermRetentionPolicy.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetListManagedShortTermRetentionPolicyRestorableDropped.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetListManagedShortTermRetentionPolicyRestorableDropped.json index 35f09cae6cfc..17813b508e39 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetListManagedShortTermRetentionPolicyRestorableDropped.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetListManagedShortTermRetentionPolicyRestorableDropped.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "testsvr", - "restorableDroppedDatabaseId": "testdb,131403269876900000", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "testsvr", + "restorableDroppedDatabaseId": "testdb,131403269876900000", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetManagedShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetManagedShortTermRetentionPolicy.json index 6f2e17aaa06a..f42700edba01 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetManagedShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetManagedShortTermRetentionPolicy.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "testsvr", - "databaseName": "testdb", - "policyName": "default", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "testsvr", + "databaseName": "testdb", + "policyName": "default", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetManagedShortTermRetentionPolicyRestorableDropped.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetManagedShortTermRetentionPolicyRestorableDropped.json index 02d39ec2858f..a7e0ecb2f360 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetManagedShortTermRetentionPolicyRestorableDropped.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetManagedShortTermRetentionPolicyRestorableDropped.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "testsvr", - "restorableDroppedDatabaseId": "testdb,131403269876900000", - "policyName": "default", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "testsvr", + "restorableDroppedDatabaseId": "testdb,131403269876900000", + "policyName": "default", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetRestorableDroppedManagedDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetRestorableDroppedManagedDatabase.json index 3c68f0f2d4e8..0de3fa5714d4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetRestorableDroppedManagedDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/GetRestorableDroppedManagedDatabase.json @@ -15,8 +15,7 @@ "deletionDate": "2017-05-27T02:49:47.690Z" }, "location": "southeastasia", - "id": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/restorableDroppedDatabases/testdb,131403269876900000", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/restorableDroppedDatabases/testdb,131403269876900000", "name": "testdb,131403269876900000", "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases" } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabaseOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabaseOperations.json index aa63a9bef18a..5727d8a96595 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabaseOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabaseOperations.json @@ -1,51 +1,51 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/databases/testdb/operations/11111111-1111-1111-1111-111111111111", - "name": "11111111-1111-1111-1111-111111111111", - "type": "Microsoft.Sql/servers/databases/operations", - "properties": { - "databaseName": "testdb", - "operation": "UpdateLogicalDatabase", - "operationFriendlyName": "ALTER DATABASE", - "percentComplete": 100, - "serverName": "sqlcrudtest-4645", - "startTime": "2017-06-01T09:10:08.10Z", - "state": "Succeeded", - "estimatedCompletionTime": "2017-06-01T13:10:10Z", - "description": "UpdateLogicalDatabase on 'testdb', target ServiceLevelObjective S3", - "isCancellable": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/databases/testdb/operations/55555555-5555-5555-5555-555555555555", - "name": "55555555-5555-5555-5555-555555555555", - "type": "Microsoft.Sql/servers/databases/operations", - "properties": { - "databaseName": "testdb", - "operation": "UpdateLogicalDatabase", - "operationFriendlyName": "ALTER DATABASE", - "percentComplete": 19, - "serverName": "sqlcrudtest-4645", - "startTime": "2017-06-01T10:10:08.10Z", - "state": "InProgress", - "estimatedCompletionTime": "2017-06-01T13:10:10Z", - "description": "UpdateLogicalDatabase on 'testdb', target ServiceLevelObjective S3", - "isCancellable": true - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/databases/testdb/operations/11111111-1111-1111-1111-111111111111", + "name": "11111111-1111-1111-1111-111111111111", + "type": "Microsoft.Sql/servers/databases/operations", + "properties": { + "databaseName": "testdb", + "operation": "UpdateLogicalDatabase", + "operationFriendlyName": "ALTER DATABASE", + "percentComplete": 100, + "serverName": "sqlcrudtest-4645", + "startTime": "2017-06-01T09:10:08.10Z", + "state": "Succeeded", + "estimatedCompletionTime": "2017-06-01T13:10:10Z", + "description": "UpdateLogicalDatabase on 'testdb', target ServiceLevelObjective S3", + "isCancellable": false } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/databases/testdb/operations/55555555-5555-5555-5555-555555555555", + "name": "55555555-5555-5555-5555-555555555555", + "type": "Microsoft.Sql/servers/databases/operations", + "properties": { + "databaseName": "testdb", + "operation": "UpdateLogicalDatabase", + "operationFriendlyName": "ALTER DATABASE", + "percentComplete": 19, + "serverName": "sqlcrudtest-4645", + "startTime": "2017-06-01T10:10:08.10Z", + "state": "InProgress", + "estimatedCompletionTime": "2017-06-01T13:10:10Z", + "description": "UpdateLogicalDatabase on 'testdb', target ServiceLevelObjective S3", + "isCancellable": true + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabasesByElasticPool.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabasesByElasticPool.json index 8d7b94a8caa8..80fd7a64f5c8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabasesByElasticPool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabasesByElasticPool.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabasesByServer.json index b487148a6635..b3b18214c8f7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabasesByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListDatabasesByServer.json @@ -1,56 +1,58 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [{ - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - }, - { - "sku": { - "name": "System0", - "tier": "System" - }, - "kind": "v12.0,system", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 32212254720, - "status": "Online", - "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", - "creationDate": "2017-06-07T04:23:42.537Z", - "currentServiceObjectiveName": "System0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", - "name": "master", - "type": "Microsoft.Sql/servers/databases" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + }, + { + "sku": { + "name": "System0", + "tier": "System" + }, + "kind": "v12.0,system", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 32212254720, + "status": "Online", + "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", + "creationDate": "2017-06-07T04:23:42.537Z", + "currentServiceObjectiveName": "System0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", + "name": "master", + "type": "Microsoft.Sql/servers/databases" + } + ] + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobAgentsByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobAgentsByServer.json index 4195da329cf2..9aadb216f493 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobAgentsByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobAgentsByServer.json @@ -1,42 +1,42 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", - "name":"agent1", - "type":"Microsoft.Sql/servers/jobAgents", - "location": "southeastasia", - "sku": { - "name": "Agent", - "capacity": 100 - }, - "properties":{ - "databaseId":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - } - }, - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/jobAgent2", - "name":"jobAgent2", - "type":"Microsoft.Sql/servers/jobAgents", - "location": "southeastasia", - "sku": { - "name": "Agent", - "capacity": 100 - }, - "properties":{ - "databaseId":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db12" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", + "name": "agent1", + "type": "Microsoft.Sql/servers/jobAgents", + "location": "southeastasia", + "sku": { + "name": "Agent", + "capacity": 100 + }, + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/jobAgent2", + "name": "jobAgent2", + "type": "Microsoft.Sql/servers/jobAgents", + "location": "southeastasia", + "sku": { + "name": "Agent", + "capacity": 100 + }, + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db12" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobCredentialsByAgent.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobCredentialsByAgent.json index 76c5ebf69cdd..fe44828f4923 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobCredentialsByAgent.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobCredentialsByAgent.json @@ -1,33 +1,33 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "name":"cred1", - "type":"Microsoft.Sql/servers/jobAccounts/credentials", - "properties":{ - "username":"myuser" - } - }, - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred2", - "name":"cred2", - "type":"Microsoft.Sql/servers/jobAccounts/credentials", - "properties":{ - "username":"anotherUser" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "name": "cred1", + "type": "Microsoft.Sql/servers/jobAccounts/credentials", + "properties": { + "username": "myuser" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred2", + "name": "cred2", + "type": "Microsoft.Sql/servers/jobAccounts/credentials", + "properties": { + "username": "anotherUser" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionSteps.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionSteps.json index defd1ce5ce9f..87845eb55de8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionSteps.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionSteps.json @@ -1,38 +1,38 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "properties":{ - "jobVersion":1, - "stepName":"step1", - "stepId":1, - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "lifecycle":"Succeeded", - "provisioningState":"Succeeded", - "createTime":"2017-12-03T04:33:15.7189151Z", - "startTime":"2017-12-03T04:33:16.176937Z", - "endTime":"2017-12-03T04:33:19.0600862Z", - "currentAttempts":1, - "currentAttemptStartTime":"2017-12-03T04:33:17.4840068Z", - "lastMessage":"Step 1 succeeded." - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/executions/5555-6666-7777-8888-999999999999/steps/step1", - "name":"step1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/executions/steps" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "jobVersion": 1, + "stepName": "step1", + "stepId": 1, + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "lifecycle": "Succeeded", + "provisioningState": "Succeeded", + "createTime": "2017-12-03T04:33:15.7189151Z", + "startTime": "2017-12-03T04:33:16.176937Z", + "endTime": "2017-12-03T04:33:19.0600862Z", + "currentAttempts": 1, + "currentAttemptStartTime": "2017-12-03T04:33:17.4840068Z", + "lastMessage": "Step 1 succeeded." + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/executions/5555-6666-7777-8888-999999999999/steps/step1", + "name": "step1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/executions/steps" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionTargetsByExecution.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionTargetsByExecution.json index d634cb871d32..4ed060f14e64 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionTargetsByExecution.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionTargetsByExecution.json @@ -1,43 +1,43 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "properties":{ - "jobVersion":1, - "stepName":"step1", - "stepId":1, - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "lifecycle":"Succeeded", - "provisioningState":"Succeeded", - "createTime":"2017-07-01T04:33:17.5133333Z", - "startTime":"2017-07-01T04:33:18.1230403Z", - "endTime":"2017-07-01T04:33:18.7031029Z", - "currentAttempts":1, - "currentAttemptStartTime":"2017-07-01T04:33:18.2391013Z", - "lastMessage":"Step 1 succeeded execution on target (server 'server1', database 'database1').", - "target":{ - "type":"SqlDatabase", - "serverName":"server1", - "databaseName":"database1" - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/executions/5555-6666-7777-8888-999999999999/steps/step1/targets/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "name":"aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "type":"Microsoft.Sql/servers/jobAgents/jobs/executions/steps/targets" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "jobVersion": 1, + "stepName": "step1", + "stepId": 1, + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "lifecycle": "Succeeded", + "provisioningState": "Succeeded", + "createTime": "2017-07-01T04:33:17.5133333Z", + "startTime": "2017-07-01T04:33:18.1230403Z", + "endTime": "2017-07-01T04:33:18.7031029Z", + "currentAttempts": 1, + "currentAttemptStartTime": "2017-07-01T04:33:18.2391013Z", + "lastMessage": "Step 1 succeeded execution on target (server 'server1', database 'database1').", + "target": { + "type": "SqlDatabase", + "serverName": "server1", + "databaseName": "database1" + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/executions/5555-6666-7777-8888-999999999999/steps/step1/targets/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "name": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "type": "Microsoft.Sql/servers/jobAgents/jobs/executions/steps/targets" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionTargetsByStep.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionTargetsByStep.json index 95f44e988623..e4e80d494188 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionTargetsByStep.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionTargetsByStep.json @@ -1,44 +1,44 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "stepName":"step1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "properties":{ - "jobVersion":1, - "stepName":"step1", - "stepId":1, - "jobExecutionId":"5555-6666-7777-8888-999999999999", - "lifecycle":"Succeeded", - "provisioningState":"Succeeded", - "createTime":"2017-07-01T04:33:17.5133333Z", - "startTime":"2017-07-01T04:33:18.1230403Z", - "endTime":"2017-07-01T04:33:18.7031029Z", - "currentAttempts":1, - "currentAttemptStartTime":"2017-07-01T04:33:18.2391013Z", - "lastMessage":"Step 1 succeeded execution on target (server 'server1', database 'database1').", - "target":{ - "type":"SqlDatabase", - "serverName":"server1", - "databaseName":"database1" - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/executions/5555-6666-7777-8888-999999999999/steps/step1/targets/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "name":"aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "type":"Microsoft.Sql/servers/jobAgents/jobs/executions/steps/targets" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "stepName": "step1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "jobVersion": 1, + "stepName": "step1", + "stepId": 1, + "jobExecutionId": "5555-6666-7777-8888-999999999999", + "lifecycle": "Succeeded", + "provisioningState": "Succeeded", + "createTime": "2017-07-01T04:33:17.5133333Z", + "startTime": "2017-07-01T04:33:18.1230403Z", + "endTime": "2017-07-01T04:33:18.7031029Z", + "currentAttempts": 1, + "currentAttemptStartTime": "2017-07-01T04:33:18.2391013Z", + "lastMessage": "Step 1 succeeded execution on target (server 'server1', database 'database1').", + "target": { + "type": "SqlDatabase", + "serverName": "server1", + "databaseName": "database1" + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/executions/5555-6666-7777-8888-999999999999/steps/step1/targets/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "name": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "type": "Microsoft.Sql/servers/jobAgents/jobs/executions/steps/targets" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByAgent.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByAgent.json index 9b65b5748331..7557da9c44fa 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByAgent.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByAgent.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByAgentWithFilter.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByAgentWithFilter.json index 0131420f4ecd..b7eac210266d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByAgentWithFilter.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByAgentWithFilter.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByJob.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByJob.json index 2e2d7e15e89b..0745ccdaa076 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByJob.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobExecutionsByJob.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobStepsByJob.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobStepsByJob.json index 59d4f6a77aa9..3b097784360a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobStepsByJob.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobStepsByJob.json @@ -1,82 +1,82 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "properties":{ - "stepId":1, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 2" - }, - "output":{ - "type":"SqlDatabase", - "subscriptionId":"3501b905-a848-4b5d-96e8-b253f62d735a", - "resourceGroupName":"group3", - "serverName":"server3", - "databaseName":"database3", - "schemaName":"myschema1234", - "tableName":"mytable5678", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" - }, - "executionOptions":{ - "timeoutSeconds":1234, - "retryAttempts":42, - "initialRetryIntervalSeconds":11, - "maximumRetryIntervalSeconds":222, - "retryIntervalBackoffMultiplier":3.0 - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", - "name":"step1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/steps" - }, - { - "properties":{ - "stepId":2, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 2" - }, - "output":{ - "type":"SqlDatabase", - "subscriptionId":"3501b905-a848-4b5d-96e8-b253f62d735a", - "resourceGroupName":"group3", - "serverName":"server3", - "databaseName":"database3", - "schemaName":"myschema1234", - "tableName":"mytable5678", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" - }, - "executionOptions":{ - "timeoutSeconds":1234, - "retryAttempts":42, - "initialRetryIntervalSeconds":11, - "maximumRetryIntervalSeconds":222, - "retryIntervalBackoffMultiplier":3.0 - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step2", - "name":"step2", - "type":"Microsoft.Sql/servers/jobAgents/jobs/steps" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "stepId": 1, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 2" + }, + "output": { + "type": "SqlDatabase", + "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", + "resourceGroupName": "group3", + "serverName": "server3", + "databaseName": "database3", + "schemaName": "myschema1234", + "tableName": "mytable5678", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" + }, + "executionOptions": { + "timeoutSeconds": 1234, + "retryAttempts": 42, + "initialRetryIntervalSeconds": 11, + "maximumRetryIntervalSeconds": 222, + "retryIntervalBackoffMultiplier": 3.0 + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step1", + "name": "step1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/steps" + }, + { + "properties": { + "stepId": 2, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 2" + }, + "output": { + "type": "SqlDatabase", + "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", + "resourceGroupName": "group3", + "serverName": "server3", + "databaseName": "database3", + "schemaName": "myschema1234", + "tableName": "mytable5678", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" + }, + "executionOptions": { + "timeoutSeconds": 1234, + "retryAttempts": 42, + "initialRetryIntervalSeconds": 11, + "maximumRetryIntervalSeconds": 222, + "retryIntervalBackoffMultiplier": 3.0 + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/steps/step2", + "name": "step2", + "type": "Microsoft.Sql/servers/jobAgents/jobs/steps" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobStepsByVersion.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobStepsByVersion.json index f112a3802d00..83db1a850471 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobStepsByVersion.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobStepsByVersion.json @@ -1,83 +1,83 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "jobVersion":"1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "properties":{ - "stepId":1, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 2" - }, - "output":{ - "type":"SqlDatabase", - "subscriptionId":"3501b905-a848-4b5d-96e8-b253f62d735a", - "resourceGroupName":"group3", - "serverName":"server3", - "databaseName":"database3", - "schemaName":"myschema1234", - "tableName":"mytable5678", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" - }, - "executionOptions":{ - "timeoutSeconds":1234, - "retryAttempts":42, - "initialRetryIntervalSeconds":11, - "maximumRetryIntervalSeconds":222, - "retryIntervalBackoffMultiplier":3.0 - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/1/steps/step1", - "name":"step1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/versions/steps" - }, - { - "properties":{ - "stepId":2, - "targetGroup":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", - "action":{ - "type":"TSql", - "source":"Inline", - "value":"select 2" - }, - "output":{ - "type":"SqlDatabase", - "subscriptionId":"3501b905-a848-4b5d-96e8-b253f62d735a", - "resourceGroupName":"group3", - "serverName":"server3", - "databaseName":"database3", - "schemaName":"myschema1234", - "tableName":"mytable5678", - "credential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" - }, - "executionOptions":{ - "timeoutSeconds":1234, - "retryAttempts":42, - "initialRetryIntervalSeconds":11, - "maximumRetryIntervalSeconds":222, - "retryIntervalBackoffMultiplier":3.0 - } - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/1/steps/step2", - "name":"step2", - "type":"Microsoft.Sql/servers/jobAgents/jobs/versions/steps" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "jobVersion": "1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "stepId": 1, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 2" + }, + "output": { + "type": "SqlDatabase", + "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", + "resourceGroupName": "group3", + "serverName": "server3", + "databaseName": "database3", + "schemaName": "myschema1234", + "tableName": "mytable5678", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" + }, + "executionOptions": { + "timeoutSeconds": 1234, + "retryAttempts": 42, + "initialRetryIntervalSeconds": 11, + "maximumRetryIntervalSeconds": 222, + "retryIntervalBackoffMultiplier": 3.0 + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/1/steps/step1", + "name": "step1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/versions/steps" + }, + { + "properties": { + "stepId": 2, + "targetGroup": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred1", + "action": { + "type": "TSql", + "source": "Inline", + "value": "select 2" + }, + "output": { + "type": "SqlDatabase", + "subscriptionId": "3501b905-a848-4b5d-96e8-b253f62d735a", + "resourceGroupName": "group3", + "serverName": "server3", + "databaseName": "database3", + "schemaName": "myschema1234", + "tableName": "mytable5678", + "credential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/cred0" + }, + "executionOptions": { + "timeoutSeconds": 1234, + "retryAttempts": 42, + "initialRetryIntervalSeconds": 11, + "maximumRetryIntervalSeconds": 222, + "retryIntervalBackoffMultiplier": 3.0 + } + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/1/steps/step2", + "name": "step2", + "type": "Microsoft.Sql/servers/jobAgents/jobs/versions/steps" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobTargetGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobTargetGroups.json index d951f67bbc24..67dcfa22e24a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobTargetGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobTargetGroups.json @@ -1,53 +1,53 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "properties":{ - "members":[ - { - "membershipType":"Exclude", - "type":"SqlDatabase", - "serverName":"server1", - "databaseName":"database1" - }, - { - "membershipType":"Include", - "type":"SqlServer", - "serverName":"server1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - }, - { - "membershipType":"Include", - "type":"SqlElasticPool", - "serverName":"server2", - "elasticPoolName":"pool1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - }, - { - "membershipType":"Include", - "type":"SqlShardMap", - "serverName":"server3", - "shardMapName":"shardMap1", - "databaseName":"database1", - "refreshCredential":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" - } - ] - }, - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", - "name":"targetGroup1", - "type":"Microsoft.Sql/servers/jobAgents/targetGroups" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "members": [ + { + "membershipType": "Exclude", + "type": "SqlDatabase", + "serverName": "server1", + "databaseName": "database1" + }, + { + "membershipType": "Include", + "type": "SqlServer", + "serverName": "server1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + }, + { + "membershipType": "Include", + "type": "SqlElasticPool", + "serverName": "server2", + "elasticPoolName": "pool1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + }, + { + "membershipType": "Include", + "type": "SqlShardMap", + "serverName": "server3", + "shardMapName": "shardMap1", + "databaseName": "database1", + "refreshCredential": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/credentials/testCredential" + } + ] + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/targetGroups/targetGroup1", + "name": "targetGroup1", + "type": "Microsoft.Sql/servers/jobAgents/targetGroups" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobVersions.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobVersions.json index 61224a8b7ae0..8636c86d3ebf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobVersions.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobVersions.json @@ -1,29 +1,28 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "jobName":"job1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value": - [ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/1", - "name":"1", - "type":"Microsoft.Sql/servers/jobAgents/jobs/versions" - }, - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/2", - "name":"2", - "type":"Microsoft.Sql/servers/jobAgents/jobs/versions" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "jobName": "job1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/1", + "name": "1", + "type": "Microsoft.Sql/servers/jobAgents/jobs/versions" + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1/versions/2", + "name": "2", + "type": "Microsoft.Sql/servers/jobAgents/jobs/versions" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobsByAgent.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobsByAgent.json index 95222e79bf43..87274fcc4514 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobsByAgent.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ListJobsByAgent.json @@ -1,63 +1,63 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "api-version":"2017-03-01-preview" - }, - "responses":{ - "200":{ - "body":{ - "value":[ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", - "name":"job1", - "type":"Microsoft.Sql/servers/jobAccounts/jobs", - "properties":{ - "description":"my favourite job", - "version":0, - "schedule":{ - "startTime":"2015-09-24T18:30:01Z", - "endTime":"2015-09-24T23:59:59Z", - "type":"Recurring", - "interval":"PT5M", - "enabled":true - } - } - }, - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job3", - "name":"job3", - "type":"Microsoft.Sql/servers/jobAccounts/jobs", - "properties":{ - "description":"this job will be scheduled once", - "version":1, - "schedule":{ - "startTime":"2017-07-01T03:45:00Z", - "endTime":"2017-12-27T06:00:00Z", - "type":"Once", - "enabled":true - } - } - }, - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job2", - "name":"job2", - "type":"Microsoft.Sql/servers/jobAccounts/jobs", - "properties":{ - "description":"this job will never be automatically scheduled", - "version":1, - "schedule":{ - "startTime":"2017-07-01T03:45:00Z", - "endTime":"2017-12-27T06:00:00Z", - "type":"Once", - "enabled":false - } - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job1", + "name": "job1", + "type": "Microsoft.Sql/servers/jobAccounts/jobs", + "properties": { + "description": "my favourite job", + "version": 0, + "schedule": { + "startTime": "2015-09-24T18:30:01Z", + "endTime": "2015-09-24T23:59:59Z", + "type": "Recurring", + "interval": "PT5M", + "enabled": true + } } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job3", + "name": "job3", + "type": "Microsoft.Sql/servers/jobAccounts/jobs", + "properties": { + "description": "this job will be scheduled once", + "version": 1, + "schedule": { + "startTime": "2017-07-01T03:45:00Z", + "endTime": "2017-12-27T06:00:00Z", + "type": "Once", + "enabled": true + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1/jobs/job2", + "name": "job2", + "type": "Microsoft.Sql/servers/jobAccounts/jobs", + "properties": { + "description": "this job will never be automatically scheduled", + "version": 1, + "schedule": { + "startTime": "2017-07-01T03:45:00Z", + "endTime": "2017-12-27T06:00:00Z", + "type": "Once", + "enabled": false + } + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupDelete.json index e38f7abb3a8c..17bc649b28ba 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupDelete.json @@ -1,16 +1,16 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "japaneast", - "longTermRetentionServerName": "testserver", - "longTermRetentionDatabaseName": "testDatabase", - "backupName": "55555555-6666-7777-8888-999999999999;131637960820000000", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { }, - "202": { - "body": "" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "japaneast", + "longTermRetentionServerName": "testserver", + "longTermRetentionDatabaseName": "testDatabase", + "backupName": "55555555-6666-7777-8888-999999999999;131637960820000000", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {}, + "202": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupGet.json index e74374a5935b..c0c8c57e8309 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupGet.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "japaneast", - "longTermRetentionServerName": "testserver", - "longTermRetentionDatabaseName": "testDatabase", - "backupName": "55555555-6666-7777-8888-999999999999;131637960820000000", - "api-version": "2017-03-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase/longTermRetentionBackups/2017-03-10T08:00:00.000Z;55555555-6666-7777-8888-999999999999;2017-09-06T08:00:00.000Z", - "name": "2017-03-10T08:00:00.000Z;55555555-6666-7777-8888-999999999999;131637960820000000", - "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", - "properties" : { - "serverName": "testserver", - "serverCreateTime": "2017-03-10T08:00:00.000Z", - "databaseName": "testDatabase", - "databaseDeletionTime": null, - "backupTime": "2017-09-06T08:00:00.000Z" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "japaneast", + "longTermRetentionServerName": "testserver", + "longTermRetentionDatabaseName": "testDatabase", + "backupName": "55555555-6666-7777-8888-999999999999;131637960820000000", + "api-version": "2017-03-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase/longTermRetentionBackups/2017-03-10T08:00:00.000Z;55555555-6666-7777-8888-999999999999;2017-09-06T08:00:00.000Z", + "name": "2017-03-10T08:00:00.000Z;55555555-6666-7777-8888-999999999999;131637960820000000", + "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", + "properties": { + "serverName": "testserver", + "serverCreateTime": "2017-03-10T08:00:00.000Z", + "databaseName": "testDatabase", + "databaseDeletionTime": null, + "backupTime": "2017-09-06T08:00:00.000Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByDatabase.json index ad875a085557..5571099425ff 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByDatabase.json @@ -1,53 +1,53 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "japaneast", - "longTermRetentionServerName": "testserver", - "longTermRetentionDatabaseName": "testDatabase", - "api-version": "2017-03-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase/longTermRetentionBackups/55555555-6666-7777-8888-999999999999;131637960820000000", - "name": "55555555-6666-7777-8888-999999999999;131637960820000000", - "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", - "properties": { - "serverName": "testserver", - "serverCreateTime": "2017-03-10T08:00:00.000Z", - "databaseName": "testDatabase", - "databaseDeletionTime": null, - "backupTime": "2017-08-23T08:00:00.000Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase/longTermRetentionBackups/55555555-6666-7777-8888-999999999999;131657960820000000", - "name": "55555555-6666-7777-8888-999999999999;131657960820000000", - "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", - "properties": { - "serverName": "testserver", - "serverCreateTime": "2017-03-10T08:00:00.000Z", - "databaseName": "testDatabase", - "databaseDeletionTime": null, - "backupTime": "2017-08-30T08:00:00.000Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase/longTermRetentionBackups/55555555-6666-7777-8888-999999999999;131677960820000000", - "name": "55555555-6666-7777-8888-999999999999;131677960820000000", - "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", - "properties": { - "serverName": "testserver", - "serverCreateTime": "2017-03-10T08:00:00.000Z", - "databaseName": "testDatabase", - "databaseDeletionTime": "2017-09-07T08:00:00.000Z", - "backupTime": "2017-09-06T08:00:00.000Z" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "japaneast", + "longTermRetentionServerName": "testserver", + "longTermRetentionDatabaseName": "testDatabase", + "api-version": "2017-03-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase/longTermRetentionBackups/55555555-6666-7777-8888-999999999999;131637960820000000", + "name": "55555555-6666-7777-8888-999999999999;131637960820000000", + "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", + "properties": { + "serverName": "testserver", + "serverCreateTime": "2017-03-10T08:00:00.000Z", + "databaseName": "testDatabase", + "databaseDeletionTime": null, + "backupTime": "2017-08-23T08:00:00.000Z" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase/longTermRetentionBackups/55555555-6666-7777-8888-999999999999;131657960820000000", + "name": "55555555-6666-7777-8888-999999999999;131657960820000000", + "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", + "properties": { + "serverName": "testserver", + "serverCreateTime": "2017-03-10T08:00:00.000Z", + "databaseName": "testDatabase", + "databaseDeletionTime": null, + "backupTime": "2017-08-30T08:00:00.000Z" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase/longTermRetentionBackups/55555555-6666-7777-8888-999999999999;131677960820000000", + "name": "55555555-6666-7777-8888-999999999999;131677960820000000", + "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", + "properties": { + "serverName": "testserver", + "serverCreateTime": "2017-03-10T08:00:00.000Z", + "databaseName": "testDatabase", + "databaseDeletionTime": "2017-09-07T08:00:00.000Z", + "backupTime": "2017-09-06T08:00:00.000Z" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByLocation.json index 3fcc93dfd4e4..ff4c14b997fe 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByLocation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByLocation.json @@ -1,51 +1,51 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "japaneast", - "api-version": "2017-03-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver1/longTermRetentionDatabases/testDatabase1/longTermRetentionBackups/55555555-6666-7777-8888-999999999999;131637960820000000", - "name": "55555555-6666-7777-8888-999999999999;2017-08-23T08:00:00.000Z", - "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", - "properties": { - "serverName": "testserver1", - "serverCreateTime": "2017-03-10T08:00:00.000Z", - "databaseName": "testDatabase1", - "databaseDeletionTime": null, - "backupTime": "2017-08-23T08:00:00.000Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver2/longTermRetentionDatabases/testDatabase2/longTermRetentionBackups/12341234-1234-1234-1234-123123123123;131657960820000000", - "name": "12341234-1234-1234-1234-123123123123;2017-08-30T08:00:00.000Z", - "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", - "properties": { - "serverName": "testserver2", - "serverCreateTime": "2017-04-10T08:00:00.000Z", - "databaseName": "testDatabase2", - "databaseDeletionTime": null, - "backupTime": "2017-08-30T08:00:00.000Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver3/longTermRetentionDatabases/testDatabase3/longTermRetentionBackups/43214321-4321-4321-4321-321321321321;131677960820000000", - "name": "43214321-4321-4321-4321-321321321321;2017-09-06T08:00:00.000Z", - "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", - "properties": { - "serverName": "testserver3", - "serverCreateTime": "2017-05-10T08:00:00.000Z", - "databaseName": "testDatabase3", - "databaseDeletionTime": null, - "backupTime": "2017-09-06T08:00:00.000Z" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "japaneast", + "api-version": "2017-03-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver1/longTermRetentionDatabases/testDatabase1/longTermRetentionBackups/55555555-6666-7777-8888-999999999999;131637960820000000", + "name": "55555555-6666-7777-8888-999999999999;2017-08-23T08:00:00.000Z", + "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", + "properties": { + "serverName": "testserver1", + "serverCreateTime": "2017-03-10T08:00:00.000Z", + "databaseName": "testDatabase1", + "databaseDeletionTime": null, + "backupTime": "2017-08-23T08:00:00.000Z" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver2/longTermRetentionDatabases/testDatabase2/longTermRetentionBackups/12341234-1234-1234-1234-123123123123;131657960820000000", + "name": "12341234-1234-1234-1234-123123123123;2017-08-30T08:00:00.000Z", + "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", + "properties": { + "serverName": "testserver2", + "serverCreateTime": "2017-04-10T08:00:00.000Z", + "databaseName": "testDatabase2", + "databaseDeletionTime": null, + "backupTime": "2017-08-30T08:00:00.000Z" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver3/longTermRetentionDatabases/testDatabase3/longTermRetentionBackups/43214321-4321-4321-4321-321321321321;131677960820000000", + "name": "43214321-4321-4321-4321-321321321321;2017-09-06T08:00:00.000Z", + "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", + "properties": { + "serverName": "testserver3", + "serverCreateTime": "2017-05-10T08:00:00.000Z", + "databaseName": "testDatabase3", + "databaseDeletionTime": null, + "backupTime": "2017-09-06T08:00:00.000Z" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByServer.json index f094573aafdd..925678839f2e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionBackupListByServer.json @@ -1,52 +1,52 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "japaneast", - "longTermRetentionServerName": "testserver", - "api-version": "2017-03-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase1/longTermRetentionBackups/55555555-6666-7777-8888-999999999999;131637960820000000", - "name": "55555555-6666-7777-8888-999999999999;131637960820000000", - "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", - "properties": { - "serverName": "testserver", - "serverCreateTime": "2017-03-10T08:00:00.000Z", - "databaseName": "testDatabase1", - "databaseDeletionTime": null, - "backupTime": "2017-08-23T08:00:00.000Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase2/longTermRetentionBackups/12341234-1234-1234-1234-123123123123;131657960820000000", - "name": "12341234-1234-1234-1234-123123123123;131657960820000000", - "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", - "properties": { - "serverName": "testserver", - "serverCreateTime": "2017-03-10T08:00:00.000Z", - "databaseName": "testDatabase2", - "databaseDeletionTime": null, - "backupTime": "2017-08-30T08:00:00.000Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase3/longTermRetentionBackups/43214321-4321-4321-4321-321321321321;131677960820000000", - "name": "43214321-4321-4321-4321-321321321321;131667960820000000", - "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", - "properties": { - "serverName": "testserver", - "serverCreateTime": "2017-03-10T08:00:00.000Z", - "databaseName": "testDatabase3", - "databaseDeletionTime": null, - "backupTime": "2017-09-06T08:00:00.000Z" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "japaneast", + "longTermRetentionServerName": "testserver", + "api-version": "2017-03-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase1/longTermRetentionBackups/55555555-6666-7777-8888-999999999999;131637960820000000", + "name": "55555555-6666-7777-8888-999999999999;131637960820000000", + "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", + "properties": { + "serverName": "testserver", + "serverCreateTime": "2017-03-10T08:00:00.000Z", + "databaseName": "testDatabase1", + "databaseDeletionTime": null, + "backupTime": "2017-08-23T08:00:00.000Z" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase2/longTermRetentionBackups/12341234-1234-1234-1234-123123123123;131657960820000000", + "name": "12341234-1234-1234-1234-123123123123;131657960820000000", + "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", + "properties": { + "serverName": "testserver", + "serverCreateTime": "2017-03-10T08:00:00.000Z", + "databaseName": "testDatabase2", + "databaseDeletionTime": null, + "backupTime": "2017-08-30T08:00:00.000Z" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/japaneast/longTermRetentionServers/testserver/longTermRetentionDatabases/testDatabase3/longTermRetentionBackups/43214321-4321-4321-4321-321321321321;131677960820000000", + "name": "43214321-4321-4321-4321-321321321321;131667960820000000", + "type": "Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentionBackups", + "properties": { + "serverName": "testserver", + "serverCreateTime": "2017-03-10T08:00:00.000Z", + "databaseName": "testDatabase3", + "databaseDeletionTime": null, + "backupTime": "2017-09-06T08:00:00.000Z" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionPolicyCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionPolicyCreateOrUpdate.json index a2a864789a16..3869fcb0671e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionPolicyCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionPolicyCreateOrUpdate.json @@ -1,34 +1,34 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "resourceGroup", + "serverName": "testserver", + "databaseName": "testDatabase", + "policyName": "default", + "api-version": "2017-03-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "resourceGroup", - "serverName": "testserver", - "databaseName": "testDatabase", - "policyName" : "default", - "api-version": "2017-03-01", - "parameters": { - "properties" : { - "weeklyRetention": "P1M", - "monthlyRetention": "P1Y", - "yearlyRetention": "P5Y", - "weekOfYear": 5 - } + "properties": { + "weeklyRetention": "P1M", + "monthlyRetention": "P1Y", + "yearlyRetention": "P5Y", + "weekOfYear": 5 + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testserver/databases/testDatabase/backupLongTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/resourceGroups/servers/databases/backupLongTermRetentionPolicies", + "properties": { + "weeklyRetention": "P1M", + "monthlyRetention": "P1Y", + "yearlyRetention": "P5Y", + "weekOfYear": 5 } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testserver/databases/testDatabase/backupLongTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/resourceGroups/servers/databases/backupLongTermRetentionPolicies", - "properties" : { - "weeklyRetention": "P1M", - "monthlyRetention": "P1Y", - "yearlyRetention": "P5Y", - "weekOfYear": 5 - } - } - }, - "202": { } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionPolicyGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionPolicyGet.json index a594362f0d21..6d30b00b1d0e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionPolicyGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/LongTermRetentionPolicyGet.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "resourceGroup", - "serverName": "testserver", - "databaseName": "testDatabase", - "policyName" : "default", - "api-version": "2017-03-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testserver/databases/testDatabase/backupLongTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/resourceGroups/servers/databases/backupLongTermRetentionPolicies", - "properties" : { - "weeklyRetention": "P1M", - "monthlyRetention": "P1Y", - "yearlyRetention": "P5Y", - "weekOfYear": 5 - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "resourceGroup", + "serverName": "testserver", + "databaseName": "testDatabase", + "policyName": "default", + "api-version": "2017-03-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testserver/databases/testDatabase/backupLongTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/resourceGroups/servers/databases/backupLongTermRetentionPolicies", + "properties": { + "weeklyRetention": "P1M", + "monthlyRetention": "P1Y", + "yearlyRetention": "P5Y", + "weekOfYear": 5 } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateMax.json index 65706e3c02c8..9ba4bd59efcf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateMax.json @@ -1,52 +1,52 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "databaseName": "managedDatabase", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "databaseName": "managedDatabase", - "api-version": "2017-03-01-preview", - "parameters": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia" - } + "tags": { + "tagKey1": "TagValue1" + }, + "location": "southeastasia" + } + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb1", + "name": "testdb1", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2017-06-07T04:41:33.937Z", + "defaultSecondaryLocation": "North Europe" + }, + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb1", - "name": "testdb1", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2017-06-07T04:41:33.937Z", - "defaultSecondaryLocation": "North Europe" - }, - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "tags": { + "tagKey1": "TagValue1" }, - "201": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb2", - "name": "testdb2", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2017-06-07T04:41:33.937Z", - "defaultSecondaryLocation": "North Europe" - }, - "type": "Microsoft.Sql/servers/databases" - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb2", + "name": "testdb2", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2017-06-07T04:41:33.937Z", + "defaultSecondaryLocation": "North Europe" }, - "202": {} - } -} \ No newline at end of file + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateMin.json index 4143d1c4dfee..b3ba76ef4749 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateMin.json @@ -1,43 +1,43 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "databaseName": "managedDatabase", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "databaseName": "managedDatabase", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia" - } - }, - "responses": { - "200": { - "body": { - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb1", - "name": "testdb1", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2017-06-07T04:41:33.937Z", - "defaultSecondaryLocation": "North Europe" - }, - "type": "Microsoft.Sql/servers/databases" - } + "location": "southeastasia" + } + }, + "responses": { + "200": { + "body": { + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb1", + "name": "testdb1", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2017-06-07T04:41:33.937Z", + "defaultSecondaryLocation": "North Europe" }, - "201": { - "body": { - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb2", - "name": "testdb2", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2017-06-07T04:41:33.937Z", - "defaultSecondaryLocation": "North Europe" - }, - "type": "Microsoft.Sql/servers/databases" - } + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb2", + "name": "testdb2", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2017-06-07T04:41:33.937Z", + "defaultSecondaryLocation": "North Europe" }, - "202": {} - } + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreatePointInTimeRestore.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreatePointInTimeRestore.json index 2f950088217f..3d25a35068e4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreatePointInTimeRestore.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreatePointInTimeRestore.json @@ -1,54 +1,54 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "databaseName": "managedDatabase", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "databaseName": "managedDatabase", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "properties": { - "createMode": "PointInTimeRestore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/databases/testdb", - "restorePointInTime": "2017-07-14T05:35:31.503Z" - } - } + "location": "southeastasia", + "properties": { + "createMode": "PointInTimeRestore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/databases/testdb", + "restorePointInTime": "2017-07-14T05:35:31.503Z" + } + } + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb1", + "name": "testdb1", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2017-06-07T04:41:33.937Z", + "defaultSecondaryLocation": "North Europe" + }, + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb1", - "name": "testdb1", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2017-06-07T04:41:33.937Z", - "defaultSecondaryLocation": "North Europe" - }, - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "tags": { + "tagKey1": "TagValue1" }, - "201": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb2", - "name": "testdb2", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2017-06-07T04:41:33.937Z", - "defaultSecondaryLocation": "North Europe" - }, - "type": "Microsoft.Sql/servers/databases" - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb2", + "name": "testdb2", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2017-06-07T04:41:33.937Z", + "defaultSecondaryLocation": "North Europe" }, - "202": { } - } -} \ No newline at end of file + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateRecovery.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateRecovery.json index 58c99c26f59a..129a700d2087 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateRecovery.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateRecovery.json @@ -1,51 +1,51 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "server1", + "databaseName": "testdb_recovered", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "server1", - "databaseName": "testdb_recovered", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "properties": { - "createMode": "Recovery", - "RecoverableDatabaseId": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/Default-SQL-WestEurope/providers/Microsoft.Sql/managedInstances/testsvr/recoverableDatabases/testdb" - } - } + "location": "southeastasia", + "properties": { + "createMode": "Recovery", + "RecoverableDatabaseId": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/Default-SQL-WestEurope/providers/Microsoft.Sql/managedInstances/testsvr/recoverableDatabases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/server1/recoverableDatabases/testdb_recovered", + "name": "testdb_recovered", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2018-11-07T04:41:33.937Z" + }, + "type": "Microsoft.Sql/managedInstances/databases" + } }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/server1/recoverableDatabases/testdb_recovered", - "name": "testdb_recovered", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2018-11-07T04:41:33.937Z" - }, - "type": "Microsoft.Sql/managedInstances/databases" - } + "201": { + "body": { + "tags": { + "tagKey1": "TagValue1" }, - "201": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/recoverableDatabases/testdb_recovered", - "name": "testdb_recovered", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2018-11-07T04:41:33.937Z" - }, - "type": "Microsoft.Sql/managedInstances/databases" - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/recoverableDatabases/testdb_recovered", + "name": "testdb_recovered", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2018-11-07T04:41:33.937Z" }, - "202": { } - } -} \ No newline at end of file + "type": "Microsoft.Sql/managedInstances/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateRestoreExternalBackup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateRestoreExternalBackup.json index c95c4f12808e..3b1ae16660de 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateRestoreExternalBackup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseCreateRestoreExternalBackup.json @@ -1,55 +1,55 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "databaseName": "managedDatabase", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "databaseName": "managedDatabase", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "createMode": "RestoreExternalBackup", - "storageContainerUri": "https://myaccountname.blob.core.windows.net/backups", - "storageContainerSasToken": "sv=2015-12-11&sr=c&sp=rl&sig=1234", - "collation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia" - } + "properties": { + "createMode": "RestoreExternalBackup", + "storageContainerUri": "https://myaccountname.blob.core.windows.net/backups", + "storageContainerSasToken": "sv=2015-12-11&sr=c&sp=rl&sig=1234", + "collation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia" + } + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb1", + "name": "testdb1", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2017-06-07T04:41:33.937Z", + "defaultSecondaryLocation": "North Europe" + }, + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb1", - "name": "testdb1", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2017-06-07T04:41:33.937Z", - "defaultSecondaryLocation": "North Europe" - }, - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "tags": { + "tagKey1": "TagValue1" }, - "201": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb2", - "name": "testdb2", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2017-06-07T04:41:33.937Z", - "defaultSecondaryLocation": "North Europe" - }, - "type": "Microsoft.Sql/servers/databases" - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb2", + "name": "testdb2", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2017-06-07T04:41:33.937Z", + "defaultSecondaryLocation": "North Europe" }, - "202": { } - } -} \ No newline at end of file + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseDelete.json index 6b85d94aee22..03792a5bc52b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseDelete.json @@ -1,18 +1,18 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": "" }, - "responses": { - "200": { - "body": "" - }, - "202": {}, - "204": { - "body": "" - } + "202": {}, + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseGet.json index 6f1addb900ce..96645d91a368 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseGet.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Test1", - "managedInstanceName": "managedInstance", - "databaseName": "managedDatabase", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testcl/databases/testdb1", - "location": "southeastasia", - "name": "testdb1", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-08-04T15:00:17.73Z", - "defaultSecondaryLocation": "North Europe", - "status": "Online" - }, - "type": "Microsoft.Sql/managedInstances/databases" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Test1", + "managedInstanceName": "managedInstance", + "databaseName": "managedDatabase", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testcl/databases/testdb1", + "location": "southeastasia", + "name": "testdb1", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-08-04T15:00:17.73Z", + "defaultSecondaryLocation": "North Europe", + "status": "Online" + }, + "type": "Microsoft.Sql/managedInstances/databases" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseListByManagedInstance.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseListByManagedInstance.json index 1d4f9899720a..4ff33c21639e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseListByManagedInstance.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseListByManagedInstance.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Test1", - "managedInstanceName": "managedInstance", - "databaseName": "managedDatabase", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testcl/databases/testdb1", - "location": "southeastasia", - "name": "testdb1", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-08-04T15:00:17.73Z", - "defaultSecondaryLocation": "North Europe", - "status": "Online" - }, - "type": "Microsoft.Sql/managedInstances/databases" - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testcl/databases/testdb2", - "location": "southeastasia", - "name": "testdb2", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-08-04T15:00:17.73Z", - "defaultSecondaryLocation": "North Europe", - "status": "Online" - }, - "type": "Microsoft.Sql/managedInstances/databases" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Test1", + "managedInstanceName": "managedInstance", + "databaseName": "managedDatabase", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testcl/databases/testdb1", + "location": "southeastasia", + "name": "testdb1", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-08-04T15:00:17.73Z", + "defaultSecondaryLocation": "North Europe", + "status": "Online" + }, + "type": "Microsoft.Sql/managedInstances/databases" + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testcl/databases/testdb2", + "location": "southeastasia", + "name": "testdb2", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-08-04T15:00:17.73Z", + "defaultSecondaryLocation": "North Europe", + "status": "Online" + }, + "type": "Microsoft.Sql/managedInstances/databases" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json index 0e03bb50718d..fa32fce558f9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json @@ -7,18 +7,23 @@ "securityAlertPolicyName": "default", "api-version": "2017-03-01-preview", "databaseSecurityAlertPolicyResource": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Sql_Injection","Usage_Anomaly"], - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Sql_Injection", + "Usage_Anomaly" + ], + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } } }, - "responses": { "200": { "body": { @@ -27,17 +32,22 @@ "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", "kind": "V12", "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Sql_Injection","Usage_Anomaly"], - "retentionDays": 6, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Sql_Injection", + "Usage_Anomaly" + ], + "retentionDays": 6, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } } }, - "201": { "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", @@ -45,16 +55,22 @@ "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", "kind": "V12", "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Disabled" + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Disabled" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json index eecb95676bdd..ac22edd70215 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json @@ -12,7 +12,6 @@ } } }, - "responses": { "200": { "body": { @@ -20,34 +19,33 @@ "name": "default", "type": "Microsoft.Sql/managedInstance/databases/securityAlertPolicies", "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" } } }, - "201": { "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", "name": "default", "type": "Microsoft.Sql/managedInstance/databases/securityAlertPolicies", "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertGet.json index bfe957f75f57..93d01a3ab6c4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertGet.json @@ -9,20 +9,25 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/managedInstances/securityalert-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Usage_Anomaly"], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/managedInstances/securityalert-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Usage_Anomaly" + ], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json index 82930bce8189..bd8d7b310efe 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json @@ -19,8 +19,13 @@ "properties": { "state": "Enabled", "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Usage_Anomaly"], + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Usage_Anomaly" + ], "retentionDays": 0, "storageAccountAccessKey": "", "storageEndpoint": "" diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseUpdateMax.json index fea44768a241..342311fd20a0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseUpdateMax.json @@ -1,34 +1,34 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "tags": { - "tagKey1": "TagValue1" - } - } - }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb" - }, - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2017-06-07T04:41:33.937Z", - "defaultSecondaryLocation": "North Europe", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": { } + "tags": { + "tagKey1": "TagValue1" + } } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb" + }, + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2017-06-07T04:41:33.937Z", + "defaultSecondaryLocation": "North Europe", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseUpdateMin.json index fea44768a241..342311fd20a0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseUpdateMin.json @@ -1,34 +1,34 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "tags": { - "tagKey1": "TagValue1" - } - } - }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb" - }, - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "status": "Online", - "creationDate": "2017-06-07T04:41:33.937Z", - "defaultSecondaryLocation": "North Europe", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": { } + "tags": { + "tagKey1": "TagValue1" + } } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb" + }, + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "status": "Online", + "creationDate": "2017-06-07T04:41:33.937Z", + "defaultSecondaryLocation": "North Europe", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorCreate.json index 1cdca2d08572..9ba28b304bba 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorCreate.json @@ -1,48 +1,48 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "administratorName": "ActiveDirectory", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "administratorName": "ActiveDirectory", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "44444444-3333-2222-1111-000000000000", - "tenantId": "55555555-4444-3333-2222-111111111111" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", - "location": "southeastasia", - "name": "ActiveDirectory", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "44444444-3333-2222-1111-000000000000", - "tenantId": "55555555-4444-3333-2222-111111111111" - }, - "type": "Microsoft.Sql/managedInstances/administrators" - } + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "44444444-3333-2222-1111-000000000000", + "tenantId": "55555555-4444-3333-2222-111111111111" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", + "location": "southeastasia", + "name": "ActiveDirectory", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "44444444-3333-2222-1111-000000000000", + "tenantId": "55555555-4444-3333-2222-111111111111" }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", - "location": "southeastasia", - "name": "ActiveDirectory", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "44444444-3333-2222-1111-000000000000", - "tenantId": "55555555-4444-3333-2222-111111111111" - }, - "type": "Microsoft.Sql/managedInstances/administrators" - } + "type": "Microsoft.Sql/managedInstances/administrators" + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", + "location": "southeastasia", + "name": "ActiveDirectory", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "44444444-3333-2222-1111-000000000000", + "tenantId": "55555555-4444-3333-2222-111111111111" }, - "202": {} - } -} \ No newline at end of file + "type": "Microsoft.Sql/managedInstances/administrators" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorDelete.json index 528536cb9116..c558dc3d001e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorDelete.json @@ -1,15 +1,15 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "administratorName": "ActiveDirectory", - "api-version": "2017-03-01-preview" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "administratorName": "ActiveDirectory", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": "" }, - "responses" : { - "200" : { - "body" : "" - }, - "202" : {} - } + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorGet.json index 1fe81559ed4d..b4874c326b52 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorGet.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "administratorName": "ActiveDirectory", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", - "location": "southeastasia", - "name": "ActiveDirectory", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "44444444-3333-2222-1111-000000000000", - "tenantId": "55555555-4444-3333-2222-111111111111" - }, - "type": "Microsoft.Sql/managedInstances/administrators" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "administratorName": "ActiveDirectory", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", + "location": "southeastasia", + "name": "ActiveDirectory", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "44444444-3333-2222-1111-000000000000", + "tenantId": "55555555-4444-3333-2222-111111111111" + }, + "type": "Microsoft.Sql/managedInstances/administrators" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorListByInstance.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorListByInstance.json index c67a4ba6478c..5170d55e2d88 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorListByInstance.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorListByInstance.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", - "location": "southeastasia", - "name": "ActiveDirectory", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "44444444-3333-2222-1111-000000000000", - "tenantId": "55555555-4444-3333-2222-111111111111" - }, - "type": "Microsoft.Sql/managedInstances/administrators" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", + "location": "southeastasia", + "name": "ActiveDirectory", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "44444444-3333-2222-1111-000000000000", + "tenantId": "55555555-4444-3333-2222-111111111111" + }, + "type": "Microsoft.Sql/managedInstances/administrators" + } + ] + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorUpdate.json index 1cdca2d08572..9ba28b304bba 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorUpdate.json @@ -1,48 +1,48 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "managedInstanceName": "managedInstance", + "administratorName": "ActiveDirectory", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "managedInstanceName": "managedInstance", - "administratorName": "ActiveDirectory", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "44444444-3333-2222-1111-000000000000", - "tenantId": "55555555-4444-3333-2222-111111111111" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", - "location": "southeastasia", - "name": "ActiveDirectory", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "44444444-3333-2222-1111-000000000000", - "tenantId": "55555555-4444-3333-2222-111111111111" - }, - "type": "Microsoft.Sql/managedInstances/administrators" - } + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "44444444-3333-2222-1111-000000000000", + "tenantId": "55555555-4444-3333-2222-111111111111" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", + "location": "southeastasia", + "name": "ActiveDirectory", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "44444444-3333-2222-1111-000000000000", + "tenantId": "55555555-4444-3333-2222-111111111111" }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", - "location": "southeastasia", - "name": "ActiveDirectory", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "44444444-3333-2222-1111-000000000000", - "tenantId": "55555555-4444-3333-2222-111111111111" - }, - "type": "Microsoft.Sql/managedInstances/administrators" - } + "type": "Microsoft.Sql/managedInstances/administrators" + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/managedInstance/administrators/ActiveDirectory", + "location": "southeastasia", + "name": "ActiveDirectory", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "44444444-3333-2222-1111-000000000000", + "tenantId": "55555555-4444-3333-2222-111111111111" }, - "202": {} - } -} \ No newline at end of file + "type": "Microsoft.Sql/managedInstances/administrators" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertCreateMax.json index 01db47d66248..18e7364bae5e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertCreateMax.json @@ -1,40 +1,49 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertCreateMin.json index d04d11b02c85..f439168f61c9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertCreateMin.json @@ -1,36 +1,35 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertGet.json index 789e680e1bec..569dcbd0bf76 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertGet.json @@ -1,27 +1,31 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "emailAddresses": [ "test@microsoft.com;user@microsoft.com" ], - "disabledAlerts": ["Access_Anomaly"], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "test@microsoft.com;user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly" + ], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertListByInstance.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertListByInstance.json index ebc42072d9d9..fa996922cfdf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertListByInstance.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedServerSecurityAlertListByInstance.json @@ -16,8 +16,12 @@ "properties": { "state": "Disabled", "emailAccountAdmins": true, - "emailAddresses": [ "test@microsoft.com;user@microsoft.com" ], - "disabledAlerts": ["Access_Anomaly"], + "emailAddresses": [ + "test@microsoft.com;user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly" + ], "retentionDays": 0, "storageAccountAccessKey": "", "storageEndpoint": "" diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/PatchDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/PatchDatabase.json index ecc2460ce7e9..8abff3098570 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/PatchDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/PatchDatabase.json @@ -1,45 +1,45 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "sku": { - "name": "S1", - "tier": "Standard" - }, - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824 - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S1", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S1", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} + "sku": { + "name": "S1", + "tier": "Standard" + }, + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824 + } } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S1", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S1", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/PauseDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/PauseDatabase.json index 1759dd2d0a25..b976ac432c04 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/PauseDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/PauseDatabase.json @@ -9,9 +9,7 @@ "responses": { "200": { "body": { - "sku": { - - }, + "sku": {}, "kind": "v12.0,user,datawarehouse", "properties": { "collation": "SQL_Latin1_General_CP1_CI_AS", @@ -31,4 +29,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RecommendedColumnSensitivityLabelDisable.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RecommendedColumnSensitivityLabelDisable.json index 752baa5d065b..5ca26fc49294 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RecommendedColumnSensitivityLabelDisable.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RecommendedColumnSensitivityLabelDisable.json @@ -1,16 +1,16 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "myRG", - "serverName": "myServer", - "databaseName": "myDatabase", - "schemaName": "dbo", - "tableName": "myTable", - "columnName": "myColumn", - "sensitivityLabelSource": "recommended", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "myRG", + "serverName": "myServer", + "databaseName": "myDatabase", + "schemaName": "dbo", + "tableName": "myTable", + "columnName": "myColumn", + "sensitivityLabelSource": "recommended", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RecommendedColumnSensitivityLabelEnable.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RecommendedColumnSensitivityLabelEnable.json index 752baa5d065b..5ca26fc49294 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RecommendedColumnSensitivityLabelEnable.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RecommendedColumnSensitivityLabelEnable.json @@ -1,16 +1,16 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "myRG", - "serverName": "myServer", - "databaseName": "myDatabase", - "schemaName": "dbo", - "tableName": "myTable", - "columnName": "myColumn", - "sensitivityLabelSource": "recommended", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "myRG", + "serverName": "myServer", + "databaseName": "myDatabase", + "schemaName": "dbo", + "tableName": "myTable", + "columnName": "myColumn", + "sensitivityLabelSource": "recommended", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RenameDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RenameDatabase.json index 2a5a534d8d02..963ff8794aad 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RenameDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RenameDatabase.json @@ -1,15 +1,15 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/newtestdb" - } - }, - "responses": { - "200": { } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/newtestdb" } -} \ No newline at end of file + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RestorableDroppedManagedDatabaseListByManagedInstance.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RestorableDroppedManagedDatabaseListByManagedInstance.json index eede52de3e56..917f0b3a2eaa 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RestorableDroppedManagedDatabaseListByManagedInstance.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/RestorableDroppedManagedDatabaseListByManagedInstance.json @@ -1,38 +1,38 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Test1", - "managedInstanceName": "managedInstance", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "databaseName": "testdb", - "creationDate": "2017-05-07T04:41:33.937Z", - "deletionDate": "2017-05-27T02:49:47.690Z" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/restorableDroppedDatabases/testdb,131403269876900000", - "name": "testdb,131403269876900000", - "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases" - }, - { - "properties": { - "databaseName": "testdb2", - "creationDate": "2017-05-07T04:41:33.937Z", - "deletionDate": "2017-05-27T02:49:47.690Z" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/restorableDroppedDatabases/testdb2,131403269876900000", - "name": "testdb2,131403269876900000", - "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Test1", + "managedInstanceName": "managedInstance", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "databaseName": "testdb", + "creationDate": "2017-05-07T04:41:33.937Z", + "deletionDate": "2017-05-27T02:49:47.690Z" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/restorableDroppedDatabases/testdb,131403269876900000", + "name": "testdb,131403269876900000", + "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases" + }, + { + "properties": { + "databaseName": "testdb2", + "creationDate": "2017-05-07T04:41:33.937Z", + "deletionDate": "2017-05-27T02:49:47.690Z" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/restorableDroppedDatabases/testdb2,131403269876900000", + "name": "testdb2,131403269876900000", + "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ResumeDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ResumeDatabase.json index 20cf7dc71a28..26cb94e67626 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ResumeDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ResumeDatabase.json @@ -9,9 +9,7 @@ "responses": { "200": { "body": { - "sku": { - - }, + "sku": {}, "kind": "v12.0,user,datawarehouse", "properties": { "collation": "SQL_Latin1_General_CP1_CI_AS", @@ -31,4 +29,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/SensitivityLabelsListByDatabaseWithSourceCurrent.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/SensitivityLabelsListByDatabaseWithSourceCurrent.json index bcfc14c94d9b..166ce399e74e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/SensitivityLabelsListByDatabaseWithSourceCurrent.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/SensitivityLabelsListByDatabaseWithSourceCurrent.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/SensitivityLabelsListByDatabaseWithSourceRecommended.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/SensitivityLabelsListByDatabaseWithSourceRecommended.json index ffdde26ff8e9..04405480e334 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/SensitivityLabelsListByDatabaseWithSourceRecommended.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/SensitivityLabelsListByDatabaseWithSourceRecommended.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningGet.json index a2360e5ecf6e..651bbd896921 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningGet.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningUpdateMax.json index e84ef6c8a833..8f17622bcaba 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningUpdateMax.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningUpdateMin.json index 7dcc72bee660..152505aa50ce 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerAutomaticTuningUpdateMin.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingCreateMax.json index f40d22cc4dc8..2cdb03719134 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingCreateMax.json @@ -1,43 +1,51 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-4799", + "serverName": "blobauditingtest-6440", + "blobAuditingPolicyName": "default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "blobauditingtest-4799", - "serverName": "blobauditingtest-6440", - "blobAuditingPolicyName": "default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 6, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", "FAILED_DATABASE_AUTHENTICATION_GROUP", "BATCH_COMPLETED_GROUP" ], - "isAzureMonitorTargetEnabled": true - } + "properties": { + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 6, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ], + "isAzureMonitorTargetEnabled": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-4799/providers/Microsoft.Sql/servers/blobauditingtest-6440/auditingSettings/default", + "name": "default", + "type": "Microsoft.Sql/servers/auditingSettings", + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 6, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ], + "isAzureMonitorTargetEnabled": true } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-4799/providers/Microsoft.Sql/servers/blobauditingtest-6440/auditingSettings/default", - "name": "default", - "type": "Microsoft.Sql/servers/auditingSettings", - "properties": { - "state": "Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 6, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", "FAILED_DATABASE_AUTHENTICATION_GROUP", "BATCH_COMPLETED_GROUP" ], - "isAzureMonitorTargetEnabled": true - } - } - }, - "202": { - "startTime": "2017-11-22T09:34:54.72Z", - "operation": "UpsertServerEngineAuditingPolicy" - } + "202": { + "startTime": "2017-11-22T09:34:54.72Z", + "operation": "UpsertServerEngineAuditingPolicy" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingCreateMin.json index 41ae652c5dbb..0123254a8c73 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingCreateMin.json @@ -7,32 +7,36 @@ "api-version": "2017-03-01-preview", "parameters": { "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } } }, "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-4799/providers/Microsoft.Sql/servers/blobauditingtest-6440/auditingSettings/default", - "name": "default", - "type": "Microsoft.Sql/servers/auditingSettings", - "properties": { - "state": "Enabled", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "retentionDays": 6, - "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", - "isStorageSecondaryKeyInUse": false, - "auditActionsAndGroups": [ "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", "FAILED_DATABASE_AUTHENTICATION_GROUP", "BATCH_COMPLETED_GROUP" ], - "isAzureMonitorTargetEnabled": false - } - } - }, - "202": { - "startTime": "2017-11-22T09:34:54.72Z", - "operation": "UpsertServerEngineAuditingPolicy" + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-4799/providers/Microsoft.Sql/servers/blobauditingtest-6440/auditingSettings/default", + "name": "default", + "type": "Microsoft.Sql/servers/auditingSettings", + "properties": { + "state": "Enabled", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "retentionDays": 6, + "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", + "isStorageSecondaryKeyInUse": false, + "auditActionsAndGroups": [ + "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", + "FAILED_DATABASE_AUTHENTICATION_GROUP", + "BATCH_COMPLETED_GROUP" + ], + "isAzureMonitorTargetEnabled": false } + } + }, + "202": { + "startTime": "2017-11-22T09:34:54.72Z", + "operation": "UpsertServerEngineAuditingPolicy" } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingGet.json index f7b40e033649..f857b9e9c561 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerBlobAuditingGet.json @@ -8,20 +8,20 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/auditingSettings/default", - "name": "default", - "type": "Microsoft.Sql/servers/auditingSettings", - "properties": { - "state": "Disabled", - "storageEndpoint": "", - "retentionDays": 0, - "auditActionsAndGroups": [], - "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", - "isStorageSecondaryKeyInUse": false, - "isAzureMonitorTargetEnabled": false - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/auditingSettings/default", + "name": "default", + "type": "Microsoft.Sql/servers/auditingSettings", + "properties": { + "state": "Disabled", + "storageEndpoint": "", + "retentionDays": 0, + "auditActionsAndGroups": [], + "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", + "isStorageSecondaryKeyInUse": false, + "isAzureMonitorTargetEnabled": false } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasAcquire.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasAcquire.json index cf1d70ff6266..6c0f87949b4d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasAcquire.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasAcquire.json @@ -6,20 +6,20 @@ "dnsAliasName": "dns-alias-name-1", "api-version": "2017-03-01-preview", "parameters": { - "oldServerDnsAliasId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/dns-alias-old-server/dnsAliases/dns-alias-name-1" + "oldServerDnsAliasId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/dns-alias-old-server/dnsAliases/dns-alias-name-1" } }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/dns-alias-new-server/dnsAliases/dns-alias-name-1", - "name": "server-dns-alias-name-1", - "type": "Microsoft.Sql/servers/dnsAliases", - "properties": { - "azureDnsRecord": "dns-alias-name-1.database.windows.net" - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/dns-alias-new-server/dnsAliases/dns-alias-name-1", + "name": "server-dns-alias-name-1", + "type": "Microsoft.Sql/servers/dnsAliases", + "properties": { + "azureDnsRecord": "dns-alias-name-1.database.windows.net" } + } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasCreateOrUpdate.json index 93cb1edada21..322796345adc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasCreateOrUpdate.json @@ -5,30 +5,29 @@ "serverName": "dns-alias-server", "dnsAliasName": "dns-alias-name-1", "api-version": "2017-03-01-preview", - "parameters": { - } + "parameters": {} }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/dns-alias-server/dnsAliases/dns-alias-name-1", - "name": "dns-alias-name-1", - "type": "Microsoft.Sql/servers/dnsAliases", - "properties": { - "azureDnsRecord": "dns-alias-name-1.database.windows.net" - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/dns-alias-server/dnsAliases/dns-alias-name-1", + "name": "dns-alias-name-1", + "type": "Microsoft.Sql/servers/dnsAliases", + "properties": { + "azureDnsRecord": "dns-alias-name-1.database.windows.net" } + } }, "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/dns-alias-server/dnsAliases/dns-alias-name-1", - "name": "dns-alias-name-1", - "type": "Microsoft.Sql/servers/dnsAliases", - "properties": { - "azureDnsRecord": "dns-alias-name-1.database.windows.net" - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/dns-alias-server/dnsAliases/dns-alias-name-1", + "name": "dns-alias-name-1", + "type": "Microsoft.Sql/servers/dnsAliases", + "properties": { + "azureDnsRecord": "dns-alias-name-1.database.windows.net" } + } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasDelete.json index e77d43485452..7cc5e64fb2d5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasDelete.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasGet.json index d6dc4e58476b..956ff3baa2d1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasGet.json @@ -5,19 +5,18 @@ "serverName": "dns-alias-server", "dnsAliasName": "dns-alias-name-1", "api-version": "2017-03-01-preview", - "parameters": { - } + "parameters": {} }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/dns-alias-server/dnsAliases/dns-alias-name-1", - "name": "dns-alias-name-1", - "type": "Microsoft.Sql/servers/dnsAliases", - "properties": { - "azureDnsRecord": "dns-alias-name-1.database.windows.net" - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/dns-alias-server/dnsAliases/dns-alias-name-1", + "name": "dns-alias-name-1", + "type": "Microsoft.Sql/servers/dnsAliases", + "properties": { + "azureDnsRecord": "dns-alias-name-1.database.windows.net" } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasList.json index 55efa6f657b5..50d744f46c38 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerDnsAliasList.json @@ -4,8 +4,7 @@ "resourceGroupName": "Default", "serverName": "dns-alias-server", "api-version": "2017-03-01-preview", - "parameters": { - } + "parameters": {} }, "responses": { "200": { @@ -31,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsCreateMax.json index 0ee9a5edfffe..9337c95f94dc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsCreateMax.json @@ -1,40 +1,49 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsCreateMin.json index 48cc23daeadb..956ec4096fcd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsCreateMin.json @@ -1,37 +1,40 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "" + ], + "disabledAlerts": [ + "" + ], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [""], - "disabledAlerts": [""], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsGet.json index c3029f8c4319..6b90412d60ac 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsGet.json @@ -1,27 +1,31 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "emailAddresses": [ "test@microsoft.com;user@microsoft.com" ], - "disabledAlerts": ["Access_Anomaly"], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "test@microsoft.com;user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly" + ], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsListByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsListByServer.json index cdf9e82f845e..9fb3f4cd779a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsListByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ServerSecurityAlertsListByServer.json @@ -16,8 +16,12 @@ "properties": { "state": "Disabled", "emailAccountAdmins": true, - "emailAddresses": [ "test@microsoft.com;user@microsoft.com" ], - "disabledAlerts": ["Access_Anomaly"], + "emailAddresses": [ + "test@microsoft.com;user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly" + ], "retentionDays": 0, "storageAccountAccessKey": "", "storageEndpoint": "https://mystorage.blob.core.windows.net" diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateJobAgent.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateJobAgent.json index 8d96b1e2658a..4b6ccb8e4c7b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateJobAgent.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateJobAgent.json @@ -1,31 +1,31 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"server1", - "jobAgentName":"agent1", - "api-version":"2017-03-01-preview", - "parameters":{ - "tags": { - "mytag1": "myvalue1" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "server1", + "jobAgentName": "agent1", + "api-version": "2017-03-01-preview", + "parameters": { + "tags": { + "mytag1": "myvalue1" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", + "name": "agent1", + "type": "Microsoft.Sql/servers/jobAgents", + "location": "southeastasia", + "properties": { + "databaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" + }, + "tags": { + "mytag1": "myvalue1" } + } }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/jobAgents/agent1", - "name":"agent1", - "type":"Microsoft.Sql/servers/jobAgents", - "location":"southeastasia", - "properties":{ - "databaseId":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/server1/databases/db1" - }, - "tags": { - "mytag1": "myvalue1" - } - } - }, - "202":{ } - } + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateManagedShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateManagedShortTermRetentionPolicy.json index d359fe738faa..d1b3e5a292d9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateManagedShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateManagedShortTermRetentionPolicy.json @@ -1,27 +1,26 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "resourceGroup", + "managedInstanceName": "testsvr", + "databaseName": "testdb", + "policyName": "default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "resourceGroup", - "managedInstanceName": "testsvr", - "databaseName": "testdb", - "policyName": "default", - "api-version": "2017-03-01-preview", - "parameters": { - "retentionDays": 14 + "retentionDays": 14 + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup/providers/Microsoft.Sql/managedInstance/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup/providers/Microsoft.Sql/managedInstance/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateManagedShortTermRetentionPolicyRestorableDropped.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateManagedShortTermRetentionPolicyRestorableDropped.json index a11cd4705fcc..866811753f4c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateManagedShortTermRetentionPolicyRestorableDropped.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/UpdateManagedShortTermRetentionPolicyRestorableDropped.json @@ -1,27 +1,26 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "resourceGroup", + "managedInstanceName": "testsvr", + "restorableDroppedDatabaseId": "testdb,131403269876900000", + "policyName": "default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "resourceGroup", - "managedInstanceName": "testsvr", - "restorableDroppedDatabaseId": "testdb,131403269876900000", - "policyName": "default", - "api-version": "2017-03-01-preview", - "parameters": { - "retentionDays": 14 + "retentionDays": 14 + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup/providers/Microsoft.Sql/managedInstance/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json index c27e441a95d2..0b434c2886f1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json @@ -3244,4 +3244,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json index c120d0466cf0..088991be2557 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json @@ -712,4 +712,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json index 4a74e5ba7e99..537063615c5c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json @@ -674,4 +674,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json index ece76ba2418a..11bbcfa10e89 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json @@ -417,4 +417,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json index 3ed526cd057f..3f0f2316b04a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json @@ -1,172 +1,172 @@ { - "swagger":"2.0", - "info":{ - "version":"2017-03-01-preview", - "title":"SqlManagementClient", - "description":"The Azure SQL Database management API provides a RESTful set of web APIs that interact with Azure SQL Database services to manage your databases. The API enables users to create, retrieve, update, and delete databases, servers, and other entities." - }, - "host":"management.azure.com", - "schemes":[ - "https" - ], - "consumes":[ - "application/json" - ], - "produces":[ - "application/json" - ], - "paths":{ - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/move":{ - "post":{ - "tags":[ - "Databases" - ], - "description":"Renames a database.", - "operationId":"Databases_Rename", - "parameters":[ - { - "$ref":"#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"databaseName", - "in":"path", - "description":"The name of the database to rename.", - "required":true, - "type":"string" - }, - { - "name":"parameters", - "in":"body", - "description":"The resource move definition for renaming this database.", - "required":true, - "schema":{ - "$ref":"#/definitions/ResourceMoveDefinition" - } - }, - { - "$ref":"#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"#/parameters/ApiVersionParameter" - } - ], - "responses":{ - "200":{ - "description":"Successfully renamed the database." - }, - "default":{ - "description":"*** Error Responses: ***\n\n * 400 InvalidResourceMoveRequest - The resource move request is invalid.\n\n * 400 InvalidMoveTargetResourceId - The target resource identifier in move request is invalid.\n\n * 400 MismatchingSubscriptionWithUrl - The provided subscription did not match the subscription in the Url.\n\n * 400 MismatchingResourceGroupNameWithUrl - The provided resource group name did not match the name in the Url.\n\n * 400 MismatchingServerNameWithUrl - The provided server name did not match the name in the Url.\n\n * 400 UnsupportedServiceName - The specified name is an invalid name because it contains one or more unsupported unicode characters.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 400 InvalidIdentifier - The identifier contains NULL or an invalid unicode character.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 404 SourceDatabaseNotFound - The source database does not exist." - } - }, - "x-ms-examples":{ - "Renames a database.":{ - "$ref":"./examples/RenameDatabase.json" - } - } + "swagger": "2.0", + "info": { + "version": "2017-03-01-preview", + "title": "SqlManagementClient", + "description": "The Azure SQL Database management API provides a RESTful set of web APIs that interact with Azure SQL Database services to manage your databases. The API enables users to create, retrieve, update, and delete databases, servers, and other entities." + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/move": { + "post": { + "tags": [ + "Databases" + ], + "description": "Renames a database.", + "operationId": "Databases_Rename", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "description": "The name of the database to rename.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "The resource move definition for renaming this database.", + "required": true, + "schema": { + "$ref": "#/definitions/ResourceMoveDefinition" } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully renamed the database." + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 InvalidResourceMoveRequest - The resource move request is invalid.\n\n * 400 InvalidMoveTargetResourceId - The target resource identifier in move request is invalid.\n\n * 400 MismatchingSubscriptionWithUrl - The provided subscription did not match the subscription in the Url.\n\n * 400 MismatchingResourceGroupNameWithUrl - The provided resource group name did not match the name in the Url.\n\n * 400 MismatchingServerNameWithUrl - The provided server name did not match the name in the Url.\n\n * 400 UnsupportedServiceName - The specified name is an invalid name because it contains one or more unsupported unicode characters.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 400 InvalidIdentifier - The identifier contains NULL or an invalid unicode character.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 404 SourceDatabaseNotFound - The source database does not exist." + } + }, + "x-ms-examples": { + "Renames a database.": { + "$ref": "./examples/RenameDatabase.json" + } } - }, - "definitions":{ - "ResourceMoveDefinition":{ - "description":"Contains the information necessary to perform a resource move (rename).", - "required":[ - "id" - ], - "type":"object", - "properties":{ - "id":{ - "description":"The target ID for the resource", - "type":"string" - } - } + } + } + }, + "definitions": { + "ResourceMoveDefinition": { + "description": "Contains the information necessary to perform a resource move (rename).", + "required": [ + "id" + ], + "type": "object", + "properties": { + "id": { + "description": "The target ID for the resource", + "type": "string" } + } + } + }, + "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "description": "The subscription ID that identifies an Azure subscription.", + "required": true, + "type": "string", + "x-ms-parameter-location": "client" }, - "parameters":{ - "SubscriptionIdParameter":{ - "name":"subscriptionId", - "in":"path", - "description":"The subscription ID that identifies an Azure subscription.", - "required":true, - "type":"string", - "x-ms-parameter-location":"client" - }, - "ApiVersionParameter":{ - "name":"api-version", - "in":"query", - "description":"The API version to use for the request.", - "required":true, - "type":"string", - "x-ms-parameter-location":"client" - }, - "ResourceGroupParameter":{ - "name":"resourceGroupName", - "in":"path", - "description":"The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.", - "required":true, - "type":"string", - "x-ms-parameter-location":"method" - }, - "ServerNameParameter":{ - "name":"serverName", - "in":"path", - "description":"The name of the server.", - "required":true, - "type":"string", - "x-ms-parameter-location":"method" - }, - "ManagedInstanceNameParameter":{ - "name":"managedInstanceName", - "in":"path", - "description":"The name of the managed instance.", - "required":true, - "type":"string", - "x-ms-parameter-location":"method" - }, - "DatabaseNameParameter":{ - "name":"databaseName", - "in":"path", - "description":"The name of the database.", - "required":true, - "type":"string", - "x-ms-parameter-location":"method" - }, - "SqlVirtualMachineInstanceNameParameter":{ - "name":"sqlVirtualMachineInstanceName", - "in":"path", - "description":"The name of the SqlVirtualMachineInstance.", - "required":true, - "type":"string", - "x-ms-parameter-location":"method" - }, - "SqlVirtualMachineContainerNameParameter":{ - "name":"sqlVirtualMachineContainerName", - "in":"path", - "description":"The name of the SqlVirtualMachineContainer.", - "required":true, - "type":"string", - "x-ms-parameter-location":"method" - }, - "VirtualClusterNameParameter":{ - "name":"virtualClusterName", - "in":"path", - "description":"The name of the virtual cluster.", - "required":true, - "type":"string", - "x-ms-parameter-location":"method" - } + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "description": "The API version to use for the request.", + "required": true, + "type": "string", + "x-ms-parameter-location": "client" }, - "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" - } - } + "ResourceGroupParameter": { + "name": "resourceGroupName", + "in": "path", + "description": "The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "description": "The name of the server.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "ManagedInstanceNameParameter": { + "name": "managedInstanceName", + "in": "path", + "description": "The name of the managed instance.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "DatabaseNameParameter": { + "name": "databaseName", + "in": "path", + "description": "The name of the database.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "SqlVirtualMachineInstanceNameParameter": { + "name": "sqlVirtualMachineInstanceName", + "in": "path", + "description": "The name of the SqlVirtualMachineInstance.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "SqlVirtualMachineContainerNameParameter": { + "name": "sqlVirtualMachineContainerName", + "in": "path", + "description": "The name of the SqlVirtualMachineContainer.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "VirtualClusterNameParameter": { + "name": "virtualClusterName", + "in": "path", + "description": "The name of the virtual cluster.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + } + }, + "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" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json index ecfbd76e9214..062b1895f73c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json @@ -320,4 +320,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json index 9e95b51b6419..f5fec05b43f5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json @@ -407,4 +407,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json index 740943a3b7ff..ed682d346ad4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json @@ -300,4 +300,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json index 43519c53e7e1..7703e7d4c1fc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json @@ -393,4 +393,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json index a04d538ba5fe..dc012c95b7bc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json @@ -371,4 +371,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json index 9146c4594679..6c2388153be7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json @@ -352,4 +352,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json index d3c06b106570..18f1f9d2ef8b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json @@ -403,4 +403,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json index d5d71a3ce365..d98833d12763 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json @@ -205,4 +205,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json index 19d1b0ca11d8..885641b18425 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json @@ -205,4 +205,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json index 3660b8b99208..4cdfe825fa3b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json @@ -335,4 +335,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json index 5a8b41c0c48c..d8dc938b4595 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json @@ -329,4 +329,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json index db057acb2985..02b98fc1f3c6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json @@ -66,7 +66,9 @@ } }, "x-ms-examples": { - "Get location capabilities": { "$ref": "./examples/CapabilitiesList.json" } + "Get location capabilities": { + "$ref": "./examples/CapabilitiesList.json" + } } } } @@ -919,4 +921,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json index f7a244ea8ef9..3246423df7af 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json @@ -522,4 +522,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json index 93d701e5d5d4..a7177910725b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json @@ -971,4 +971,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json index ed2ed2d0f9bc..897ad7b2065e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json @@ -550,4 +550,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CancelDatabaseOperation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CancelDatabaseOperation.json index 884b2b396790..0ed12e4708b8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CancelDatabaseOperation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CancelDatabaseOperation.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CancelElasticPoolOperation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CancelElasticPoolOperation.json index 10ca9fd4c0dd..02c93e53a1de 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CancelElasticPoolOperation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CancelElasticPoolOperation.json @@ -12,4 +12,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CapabilitiesList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CapabilitiesList.json index ac68e6df4a57..cfa703eb983c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CapabilitiesList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CapabilitiesList.json @@ -33233,4 +33233,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseCopyMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseCopyMode.json index c888714f0480..71d59de32294 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseCopyMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseCopyMode.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbcopy", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbcopy", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Copy", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Copy", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseDefaultMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseDefaultMode.json index b8736ea03a02..ba5deae797c3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseDefaultMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseDefaultMode.json @@ -1,70 +1,70 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Default", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824 - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Default", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824 + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } -} \ No newline at end of file + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseMin.json index 871367c58ee5..e790ea99765b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseMin.json @@ -1,61 +1,61 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia" - } + "location": "southeastasia" + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabasePITRMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabasePITRMode.json index cad9460c0e21..ac1df30711b7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabasePITRMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabasePITRMode.json @@ -1,70 +1,70 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbpitr", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbpitr", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "PointInTimeRestore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "restorePointInTime": "2017-07-14T05:35:31.503Z" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "PointInTimeRestore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "restorePointInTime": "2017-07-14T05:35:31.503Z" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", + "name": "dbpitr", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", - "name": "dbpitr", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", - "name": "dbpitr", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", + "name": "dbpitr", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRecoveryMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRecoveryMode.json index 2d02dcf5926d..a4f8cee34bc7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRecoveryMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRecoveryMode.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbrestore", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbrestore", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Restore", - "restorableDroppedDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb2,131444841315030000" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Restore", + "restorableDroppedDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb2,131444841315030000" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRestoreMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRestoreMode.json index 5be22c3fb50e..93a6d13ce5db 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRestoreMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRestoreMode.json @@ -1,70 +1,70 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbrestore", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbrestore", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Restore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "sourceDatabaseDeletionDate": "2017-07-14T06:41:06.613Z" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Restore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "sourceDatabaseDeletionDate": "2017-07-14T06:41:06.613Z" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRestoreMode2.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRestoreMode2.json index 1d68ff631a3e..71d59de32294 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRestoreMode2.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseRestoreMode2.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbcopy", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbcopy", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Copy", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Copy", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } -} \ No newline at end of file + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseSecondaryMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseSecondaryMode.json index b7f18f6e0ac5..e9b2a0ce6a61 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseSecondaryMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDatabaseSecondaryMode.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Secondary", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Secondary", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDwDatabaseByServiceObjective.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDwDatabaseByServiceObjective.json index 50a3936c30f7..044a492679b7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDwDatabaseByServiceObjective.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateDwDatabaseByServiceObjective.json @@ -77,4 +77,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateVCoreDatabaseByServiceObjective.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateVCoreDatabaseByServiceObjective.json index 43fb529b314e..b06fbe8550a7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateVCoreDatabaseByServiceObjective.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateVCoreDatabaseByServiceObjective.json @@ -37,8 +37,7 @@ "maxLogSizeBytes": 104857600 }, "location": "southeastasia", - "id": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", "name": "testdb", "type": "Microsoft.Sql/servers/databases" } @@ -65,12 +64,11 @@ "maxLogSizeBytes": 104857600 }, "location": "southeastasia", - "id": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", "name": "testdb", "type": "Microsoft.Sql/servers/databases" } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json index a9e499e9f466..9a6aa83a7e9f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json @@ -70,4 +70,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanExport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanExport.json index 5b5ffd4ccb08..b3bcabb08df9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanExport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanExport.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "00000000-1111-2222-3333-444444444444", "resourceGroupName": "vulnerabilityassessmenttest-4799", - "serverName": "vulnerabilityassessmenttest-6440", + "serverName": "vulnerabilityassessmenttest-6440", "databaseName": "testdb", "vulnerabilityAssessmentName": "default", "scanId": "scan001", @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanRecordsGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanRecordsGet.json index 5f4ea1475233..2d91c6b183bf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanRecordsGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanRecordsGet.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "00000000-1111-2222-3333-444444444444", "resourceGroupName": "vulnerabilityassessmenttest-4711", - "serverName": "vulnerabilityassessmenttest-6411", + "serverName": "vulnerabilityassessmenttest-6411", "databaseName": "testdb", "vulnerabilityAssessmentName": "default", "scanId": "scan001", @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanRecordsListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanRecordsListByDatabase.json index 53bf324c67d8..c73ef7fac7e8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanRecordsListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScanRecordsListByDatabase.json @@ -1,68 +1,68 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityassessmenttest-4711", - "serverName": "vulnerabilityassessmenttest-6411", - "databaseName": "testdb", - "vulnerabilityAssessmentName": "default", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan001", - "name": "scan001", - "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", - "properties": { - "scanId": "scan001", - "triggerType": "OnDemand", - "state": "Passed", - "startTime": "2017-12-12T17:45:06Z", - "endTime": "2017-12-12T17:47:06Z", - "errors": [ ], - "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", - "numberOfFailedSecurityChecks": 9 - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan002", - "name": "scan002", - "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", - "properties": { - "scanId": "scan002", - "triggerType": "Recurring", - "state": "Failed", - "startTime": "2017-12-12T17:45:06Z", - "endTime": "2017-12-12T17:47:06Z", - "errors": [ ], - "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", - "numberOfFailedSecurityChecks": 9 - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan003", - "name": "scan003", - "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", - "properties": { - "scanId": "scan003", - "triggerType": "Recurring", - "state": "FailedToRun", - "startTime": "2017-12-12T17:45:06Z", - "endTime": "2017-12-12T17:47:06Z", - "errors": [ - { - "code": "StorageNotFound", - "message": "Storage not found" - } - ], - "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", - "numberOfFailedSecurityChecks": 0 - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityassessmenttest-4711", + "serverName": "vulnerabilityassessmenttest-6411", + "databaseName": "testdb", + "vulnerabilityAssessmentName": "default", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan001", + "name": "scan001", + "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", + "properties": { + "scanId": "scan001", + "triggerType": "OnDemand", + "state": "Passed", + "startTime": "2017-12-12T17:45:06Z", + "endTime": "2017-12-12T17:47:06Z", + "errors": [], + "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", + "numberOfFailedSecurityChecks": 9 } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan002", + "name": "scan002", + "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", + "properties": { + "scanId": "scan002", + "triggerType": "Recurring", + "state": "Failed", + "startTime": "2017-12-12T17:45:06Z", + "endTime": "2017-12-12T17:47:06Z", + "errors": [], + "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", + "numberOfFailedSecurityChecks": 9 + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan003", + "name": "scan003", + "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", + "properties": { + "scanId": "scan003", + "triggerType": "Recurring", + "state": "FailedToRun", + "startTime": "2017-12-12T17:45:06Z", + "endTime": "2017-12-12T17:47:06Z", + "errors": [ + { + "code": "StorageNotFound", + "message": "Storage not found" + } + ], + "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", + "numberOfFailedSecurityChecks": 0 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScansExecute.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScansExecute.json index adbd6eb90e53..12401a88722f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScansExecute.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DatabaseVulnerabilityAssessmentScansExecute.json @@ -12,4 +12,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DeleteDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DeleteDatabase.json index ed35085e9ec4..c70d7532b66e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DeleteDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/DeleteDatabase.json @@ -1,14 +1,14 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { }, - "204": { }, - "202": { } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {}, + "204": {}, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolCreateOrUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolCreateOrUpdateMax.json index b9bebd074c12..ba7e28028aac 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolCreateOrUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolCreateOrUpdateMax.json @@ -69,4 +69,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolCreateOrUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolCreateOrUpdateMin.json index bb0e9bb14263..25f84bcd695a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolCreateOrUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolCreateOrUpdateMin.json @@ -58,4 +58,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolDelete.json index 0ecccfbdb9c2..43158545cdee 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolDelete.json @@ -10,9 +10,9 @@ "200": { "body": "" }, - "202": { }, + "202": {}, "204": { "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolGet.json index c6054e374a6a..ed310b1d1455 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolGet.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolListByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolListByServer.json index e72fa7cb748d..e0c9401d5e4a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolListByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolListByServer.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolUpdateMax.json index a69b84226a38..058aef24d6da 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolUpdateMax.json @@ -49,4 +49,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolUpdateMin.json index b2b9c5679c96..798ef7b5c92e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ElasticPoolUpdateMin.json @@ -5,8 +5,7 @@ "serverName": "sqlcrudtest-8069", "elasticPoolName": "sqlcrudtest-8102", "api-version": "2017-10-01", - "parameters": { - } + "parameters": {} }, "responses": { "200": { @@ -34,4 +33,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ExportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ExportDatabase.json index 6d6e5567030d..f6580629df21 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ExportDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ExportDatabase.json @@ -1,37 +1,37 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", - "storageUri": "https://test.blob.core.windows.net/test.bacpac", - "administratorLogin": "login", - "administratorLoginPassword": "password", - "authenticationType": "Sql" - } - }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Export", - "queuedTime": "7/13/2017 8:33:27 PM", - "lastModifiedTime": "7/13/2017 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } - }, - "202": {} + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql" } + }, + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Export", + "queuedTime": "7/13/2017 8:33:27 PM", + "lastModifiedTime": "7/13/2017 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetDatabase.json index 70e9298d0244..8d643600cda9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetDatabase.json @@ -1,34 +1,34 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetRecoverableManagedDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetRecoverableManagedDatabase.json index 8e4906b09671..cb474a52d4d3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetRecoverableManagedDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetRecoverableManagedDatabase.json @@ -12,8 +12,7 @@ "properties": { "lastAvailableBackupDate": "2017-05-26T01:06:29.78Z" }, - "id": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/recoverableDatabases/testdb", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/recoverableDatabases/testdb", "name": "testdb", "type": "Microsoft.Sql/managedInstances/recoverableDatabases" } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetShortTermRetentionPolicy.json index 089f7b6ad2f7..eb8340e76a3b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetShortTermRetentionPolicy.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "policyName": "default", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "policyName": "default", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetVCoreDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetVCoreDatabase.json index c035868d1692..6e18e7339fc9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetVCoreDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/GetVCoreDatabase.json @@ -1,37 +1,37 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "BC_Gen4_2", - "tier": "BusinessCritical", - "capacity": 2 - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "BC_Gen4_2", + "tier": "BusinessCritical", + "capacity": 2 + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupCreateOrUpdate.json index ca59f0e5900d..f3263408ff1f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupCreateOrUpdate.json @@ -1,94 +1,94 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default", + "locationName": "Japan East", + "failoverGroupName": "failover-group-test-3", + "api-version": "2017-10-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default", - "locationName": "Japan East", - "failoverGroupName": "failover-group-test-3", - "api-version": "2017-10-01-preview", - "parameters": { - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "partnerRegions": [ - { - "location":"Japan West" - } - ], - "managedInstancePairs": [ - { - "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance", - "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance" - } - ] + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "partnerRegions": [ + { + "location": "Japan West" + } + ], + "managedInstancePairs": [ + { + "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance", + "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance" + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanEast/instanceFailoverGroups/failover-group-test-3", + "name": "failover-group-test-3", + "type": "Microsoft.Sql/locations/failoverGroups", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerRegions": [ + { + "location": "Japan West", + "replicationRole": "Secondary" } + ], + "managedInstancePairs": [ + { + "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance", + "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance" + } + ] } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanEast/instanceFailoverGroups/failover-group-test-3", - "name": "failover-group-test-3", - "type": "Microsoft.Sql/locations/failoverGroups", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerRegions": [ - { - "location":"Japan West", - "replicationRole":"Secondary" - } - ], - "managedInstancePairs": [ - { - "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance", - "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance" - } - ] - } + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanEast/instanceFailoverGroups/failover-group-test-3", + "name": "failover-group-test-3", + "type": "Microsoft.Sql/locations/failoverGroups", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerRegions": [ + { + "location": "Japan West", + "replicationRole": "Secondary" } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanEast/instanceFailoverGroups/failover-group-test-3", - "name": "failover-group-test-3", - "type": "Microsoft.Sql/locations/failoverGroups", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerRegions": [ - { - "location":"Japan West", - "replicationRole":"Secondary" - } - ], - "managedInstancePairs": [ - { - "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance", - "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance" - } - ] - } + ], + "managedInstancePairs": [ + { + "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance", + "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance" } - }, - "202": {} - } -} \ No newline at end of file + ] + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupDelete.json index d5c77c058c0f..718773a895de 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupDelete.json @@ -1,20 +1,20 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default", - "locationName": "Japan East", - "failoverGroupName": "failover-group-test-1", - "api-version": "2017-10-01-preview" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default", + "locationName": "Japan East", + "failoverGroupName": "failover-group-test-1", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": "" }, - "responses": { - "200": { - "body": "" - }, - "202": { - "body": "" - }, - "204": { - "body": "" - } + "202": { + "body": "" + }, + "204": { + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupFailover.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupFailover.json index 61298189c56e..b0b5f34087f6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupFailover.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupFailover.json @@ -1,42 +1,42 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default", - "locationName": "Japan West", - "failoverGroupName": "failover-group-test-3", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanWest/instanceFailoverGroups/failover-group-test-3", - "name": "failover-group-test-3", - "type": "Microsoft.Sql/locations/failoverGroups", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerRegions": [ - { - "location":"Japan East", - "replicationRole":"Secondary" - } - ], - "managedInstancePairs": [ - { - "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance", - "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance" - } - ] - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default", + "locationName": "Japan West", + "failoverGroupName": "failover-group-test-3", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanWest/instanceFailoverGroups/failover-group-test-3", + "name": "failover-group-test-3", + "type": "Microsoft.Sql/locations/failoverGroups", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerRegions": [ + { + "location": "Japan East", + "replicationRole": "Secondary" + } + ], + "managedInstancePairs": [ + { + "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance", + "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance" } - }, - "202": {} - } -} \ No newline at end of file + ] + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupForceFailoverAllowDataLoss.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupForceFailoverAllowDataLoss.json index 61298189c56e..b0b5f34087f6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupForceFailoverAllowDataLoss.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupForceFailoverAllowDataLoss.json @@ -1,42 +1,42 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default", - "locationName": "Japan West", - "failoverGroupName": "failover-group-test-3", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanWest/instanceFailoverGroups/failover-group-test-3", - "name": "failover-group-test-3", - "type": "Microsoft.Sql/locations/failoverGroups", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerRegions": [ - { - "location":"Japan East", - "replicationRole":"Secondary" - } - ], - "managedInstancePairs": [ - { - "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance", - "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance" - } - ] - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default", + "locationName": "Japan West", + "failoverGroupName": "failover-group-test-3", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanWest/instanceFailoverGroups/failover-group-test-3", + "name": "failover-group-test-3", + "type": "Microsoft.Sql/locations/failoverGroups", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerRegions": [ + { + "location": "Japan East", + "replicationRole": "Secondary" + } + ], + "managedInstancePairs": [ + { + "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance", + "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance" } - }, - "202": {} - } -} \ No newline at end of file + ] + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupGet.json index a9c7a90f0173..11390817d4cd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupGet.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default", - "locationName": "Japan East", - "failoverGroupName": "failover-group-test", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanEast/instanceFailoverGroups/failover-group-test-3", - "name": "failover-group-test-3", - "type": "Microsoft.Sql/locations/failoverGroups", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerRegions": [ - { - "location":"Japan West", - "replicationRole":"Secondary" - } - ], - "managedInstancePairs": [ - { - "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance", - "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance" - } - ] - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default", + "locationName": "Japan East", + "failoverGroupName": "failover-group-test", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanEast/instanceFailoverGroups/failover-group-test-3", + "name": "failover-group-test-3", + "type": "Microsoft.Sql/locations/failoverGroups", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerRegions": [ + { + "location": "Japan West", + "replicationRole": "Secondary" } + ], + "managedInstancePairs": [ + { + "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance", + "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance" + } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupList.json index 709267dc08df..08efb9a0cea5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/InstanceFailoverGroupList.json @@ -1,72 +1,72 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default", - "locationName": "Japan East", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default", + "locationName": "Japan East", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanEast/instanceFailoverGroups/failover-group-test", + "name": "failover-group-test", + "type": "Microsoft.Sql/locations/failoverGroups", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerRegions": [ { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanEast/instanceFailoverGroups/failover-group-test", - "name": "failover-group-test", - "type": "Microsoft.Sql/locations/failoverGroups", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerRegions": [ - { - "location":"Japan West", - "replicationRole":"Secondary" - } - ], - "managedInstancePairs": [ - { - "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance", - "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance" - } - ] - } - }, + "location": "Japan West", + "replicationRole": "Secondary" + } + ], + "managedInstancePairs": [ + { + "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance", + "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance" + } + ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanEast/instanceFailoverGroups/failover-group-test-1", + "name": "failover-group-test-1", + "type": "Microsoft.Sql/locations/failoverGroups", + "properties": { + "readWriteEndpoint": { + "failoverPolicy": "Automatic", + "failoverWithDataLossGracePeriodMinutes": 480 + }, + "readOnlyEndpoint": { + "failoverPolicy": "Disabled" + }, + "replicationRole": "Primary", + "replicationState": "CATCH_UP", + "partnerRegions": [ + { + "location": "Japan West", + "replicationRole": "Secondary" + } + ], + "managedInstancePairs": [ { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/JapanEast/instanceFailoverGroups/failover-group-test-1", - "name": "failover-group-test-1", - "type": "Microsoft.Sql/locations/failoverGroups", - "properties": { - "readWriteEndpoint": { - "failoverPolicy": "Automatic", - "failoverWithDataLossGracePeriodMinutes": 480 - }, - "readOnlyEndpoint": { - "failoverPolicy": "Disabled" - }, - "replicationRole": "Primary", - "replicationState": "CATCH_UP", - "partnerRegions": [ - { - "location":"Japan West", - "replicationRole":"Secondary" - } - ], - "managedInstancePairs": [ - { - "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance-1", - "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance-1" - } - ] - } + "primaryManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-primary-mngdInstance-1", + "partnerManagedInstanceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/failover-group-secondary-mngdInstance-1" } - ] + ] } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabaseOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabaseOperations.json index aa63a9bef18a..5727d8a96595 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabaseOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabaseOperations.json @@ -1,51 +1,51 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/databases/testdb/operations/11111111-1111-1111-1111-111111111111", - "name": "11111111-1111-1111-1111-111111111111", - "type": "Microsoft.Sql/servers/databases/operations", - "properties": { - "databaseName": "testdb", - "operation": "UpdateLogicalDatabase", - "operationFriendlyName": "ALTER DATABASE", - "percentComplete": 100, - "serverName": "sqlcrudtest-4645", - "startTime": "2017-06-01T09:10:08.10Z", - "state": "Succeeded", - "estimatedCompletionTime": "2017-06-01T13:10:10Z", - "description": "UpdateLogicalDatabase on 'testdb', target ServiceLevelObjective S3", - "isCancellable": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/databases/testdb/operations/55555555-5555-5555-5555-555555555555", - "name": "55555555-5555-5555-5555-555555555555", - "type": "Microsoft.Sql/servers/databases/operations", - "properties": { - "databaseName": "testdb", - "operation": "UpdateLogicalDatabase", - "operationFriendlyName": "ALTER DATABASE", - "percentComplete": 19, - "serverName": "sqlcrudtest-4645", - "startTime": "2017-06-01T10:10:08.10Z", - "state": "InProgress", - "estimatedCompletionTime": "2017-06-01T13:10:10Z", - "description": "UpdateLogicalDatabase on 'testdb', target ServiceLevelObjective S3", - "isCancellable": true - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/databases/testdb/operations/11111111-1111-1111-1111-111111111111", + "name": "11111111-1111-1111-1111-111111111111", + "type": "Microsoft.Sql/servers/databases/operations", + "properties": { + "databaseName": "testdb", + "operation": "UpdateLogicalDatabase", + "operationFriendlyName": "ALTER DATABASE", + "percentComplete": 100, + "serverName": "sqlcrudtest-4645", + "startTime": "2017-06-01T09:10:08.10Z", + "state": "Succeeded", + "estimatedCompletionTime": "2017-06-01T13:10:10Z", + "description": "UpdateLogicalDatabase on 'testdb', target ServiceLevelObjective S3", + "isCancellable": false } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/databases/testdb/operations/55555555-5555-5555-5555-555555555555", + "name": "55555555-5555-5555-5555-555555555555", + "type": "Microsoft.Sql/servers/databases/operations", + "properties": { + "databaseName": "testdb", + "operation": "UpdateLogicalDatabase", + "operationFriendlyName": "ALTER DATABASE", + "percentComplete": 19, + "serverName": "sqlcrudtest-4645", + "startTime": "2017-06-01T10:10:08.10Z", + "state": "InProgress", + "estimatedCompletionTime": "2017-06-01T13:10:10Z", + "description": "UpdateLogicalDatabase on 'testdb', target ServiceLevelObjective S3", + "isCancellable": true + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabasesByElasticPool.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabasesByElasticPool.json index 8d7b94a8caa8..80fd7a64f5c8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabasesByElasticPool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabasesByElasticPool.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabasesByServer.json index b487148a6635..b3b18214c8f7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabasesByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListDatabasesByServer.json @@ -1,56 +1,58 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [{ - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - }, - { - "sku": { - "name": "System0", - "tier": "System" - }, - "kind": "v12.0,system", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 32212254720, - "status": "Online", - "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", - "creationDate": "2017-06-07T04:23:42.537Z", - "currentServiceObjectiveName": "System0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", - "name": "master", - "type": "Microsoft.Sql/servers/databases" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + }, + { + "sku": { + "name": "System0", + "tier": "System" + }, + "kind": "v12.0,system", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 32212254720, + "status": "Online", + "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", + "creationDate": "2017-06-07T04:23:42.537Z", + "currentServiceObjectiveName": "System0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", + "name": "master", + "type": "Microsoft.Sql/servers/databases" + } + ] + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListElasticPoolOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListElasticPoolOperations.json index c4b5ba23fd36..2480abe39f32 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListElasticPoolOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListElasticPoolOperations.json @@ -1,51 +1,51 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtestgroup", - "serverName": "sqlcrudtestserver", - "elasticPoolName": "testpool", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtestgroup/providers/Microsoft.Sql/servers/sqlcrudtestserver/elasticPools/testpool/operations/11111111-1111-1111-1111-111111111111", - "name": "11111111-1111-1111-1111-111111111111", - "type": "Microsoft.Sql/servers/elasticPools/operations", - "properties": { - "elasticPoolName": "testpool", - "operation": "UPDATE", - "operationFriendlyName": "UPDATE", - "percentComplete": 100, - "serverName": "sqlcrudtestserver", - "startTime": "2017-10-30T09:10:08.10Z", - "state": "COMPLETED", - "estimatedCompletionTime": "2017-10-30T13:10:10Z", - "description": "UpdateLogicalResourcePool on pool 'testpool', target Edition 'Standard', target pool DTU 300", - "isCancellable": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtestgroup/providers/Microsoft.Sql/servers/sqlcrudtestserver/elasticPools/testpool/operations/55555555-5555-5555-5555-555555555555", - "name": "55555555-5555-5555-5555-555555555555", - "type": "Microsoft.Sql/servers/elasticPools/operations", - "properties": { - "elasticPoolName": "testpool", - "operation": "UPDATE", - "operationFriendlyName": "UPDATE", - "percentComplete": 0, - "serverName": "sqlcrudtestserver", - "startTime": "2017-10-30T10:10:08.10Z", - "state": "IN_PROGRESS", - "estimatedCompletionTime": "2017-10-31T09:10:10Z", - "description": "UpdateLogicalResourcePool on pool 'testpool', target Edition 'Standard', target pool DTU 300", - "isCancellable": true - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtestgroup", + "serverName": "sqlcrudtestserver", + "elasticPoolName": "testpool", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtestgroup/providers/Microsoft.Sql/servers/sqlcrudtestserver/elasticPools/testpool/operations/11111111-1111-1111-1111-111111111111", + "name": "11111111-1111-1111-1111-111111111111", + "type": "Microsoft.Sql/servers/elasticPools/operations", + "properties": { + "elasticPoolName": "testpool", + "operation": "UPDATE", + "operationFriendlyName": "UPDATE", + "percentComplete": 100, + "serverName": "sqlcrudtestserver", + "startTime": "2017-10-30T09:10:08.10Z", + "state": "COMPLETED", + "estimatedCompletionTime": "2017-10-30T13:10:10Z", + "description": "UpdateLogicalResourcePool on pool 'testpool', target Edition 'Standard', target pool DTU 300", + "isCancellable": false } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtestgroup/providers/Microsoft.Sql/servers/sqlcrudtestserver/elasticPools/testpool/operations/55555555-5555-5555-5555-555555555555", + "name": "55555555-5555-5555-5555-555555555555", + "type": "Microsoft.Sql/servers/elasticPools/operations", + "properties": { + "elasticPoolName": "testpool", + "operation": "UPDATE", + "operationFriendlyName": "UPDATE", + "percentComplete": 0, + "serverName": "sqlcrudtestserver", + "startTime": "2017-10-30T10:10:08.10Z", + "state": "IN_PROGRESS", + "estimatedCompletionTime": "2017-10-31T09:10:10Z", + "description": "UpdateLogicalResourcePool on pool 'testpool', target Edition 'Standard', target pool DTU 300", + "isCancellable": true + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListRecoverableManagedDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListRecoverableManagedDatabasesByServer.json index f07adaf412c1..0d3f9eb235fd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListRecoverableManagedDatabasesByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListRecoverableManagedDatabasesByServer.json @@ -1,32 +1,32 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Test1", - "managedInstanceName": "managedInstance", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "lastAvailableBackupDate": "2017-05-26T01:06:29.78Z" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/recoverableDaatabases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/managedInstances/recoverableDaatabases" - }, - { - "properties": { - "lastAvailableBackupDate": "2018-04-26T02:17:23.44Z" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/recoverableDaatabases/testdb2", - "name": "testdb2", - "type": "Microsoft.Sql/managedInstances/recoverableDaatabases" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Test1", + "managedInstanceName": "managedInstance", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "lastAvailableBackupDate": "2017-05-26T01:06:29.78Z" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/recoverableDaatabases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/managedInstances/recoverableDaatabases" + }, + { + "properties": { + "lastAvailableBackupDate": "2018-04-26T02:17:23.44Z" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/managedInstances/testsvr/recoverableDaatabases/testdb2", + "name": "testdb2", + "type": "Microsoft.Sql/managedInstances/recoverableDaatabases" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListShortTermRetentionPoliciesByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListShortTermRetentionPoliciesByDatabase.json index 959605e97c7c..b54fe8673060 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListShortTermRetentionPoliciesByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListShortTermRetentionPoliciesByDatabase.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "policyName": "default", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", - "name":"default", - "type":"Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays":14 - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "policyName": "default", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 } - } - } -} \ No newline at end of file + } + ] + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListVCoreDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListVCoreDatabasesByServer.json index 08a5b0da6854..179abb83f3b8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListVCoreDatabasesByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ListVCoreDatabasesByServer.json @@ -1,61 +1,61 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "sku": { - "name": "BC_Gen4_2", - "tier": "BusinessCritical", - "capacity": 2 - }, - "kind": "v12.0,user,vcore", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - }, - { - "sku": { - "name": "System0", - "tier": "System" - }, - "kind": "v12.0,system", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 32212254720, - "status": "Online", - "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", - "creationDate": "2017-06-07T04:23:42.537Z", - "currentServiceObjectiveName": "System0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", - "name": "master", - "type": "Microsoft.Sql/servers/databases" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "sku": { + "name": "BC_Gen4_2", + "tier": "BusinessCritical", + "capacity": 2 + }, + "kind": "v12.0,user,vcore", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + }, + { + "sku": { + "name": "System0", + "tier": "System" + }, + "kind": "v12.0,system", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 32212254720, + "status": "Online", + "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", + "creationDate": "2017-06-07T04:23:42.537Z", + "currentServiceObjectiveName": "System0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", + "name": "master", + "type": "Microsoft.Sql/servers/databases" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMax.json index f028be63d685..2c5a4c81900f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMax.json @@ -13,7 +13,10 @@ "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } @@ -29,7 +32,10 @@ "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } @@ -44,10 +50,13 @@ "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMin.json index ace54ecf7ca1..ca094dfda1d8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMin.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentDelete.json index 6815fcdb5093..6bad663e337e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentDelete.json @@ -8,7 +8,6 @@ "api-version": "2017-10-01-preview" }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentGet.json index f88ef60d2c6a..a57f0c4f60a0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentGet.json @@ -1,27 +1,30 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "managedInstanceName": "vulnerabilityaseessmenttest-6440", - "databaseName": "testdb", - "vulnerabilityAssessmentName": "default", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityaseessmenttest-6440/databases/testdb/vulnerabilityAssessments/default", - "name": "default", - "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments", - "properties": { - "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", - "recurringScans": { - "isEnabled": true, - "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "managedInstanceName": "vulnerabilityaseessmenttest-6440", + "databaseName": "testdb", + "vulnerabilityAssessmentName": "default", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityaseessmenttest-6440/databases/testdb/vulnerabilityAssessments/default", + "name": "default", + "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments", + "properties": { + "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "recurringScans": { + "isEnabled": true, + "emailSubscriptionAdmins": true, + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentListByDatabase.json index 16e8c272f3a1..381c6bf66b47 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentListByDatabase.json @@ -1,31 +1,34 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "managedInstanceName": "vulnerabilityaseessmenttest-6440", - "databaseName": "testdb", - "vulnerabilityAssessmentName": "default", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityaseessmenttest-6440/databases/testdb/vulnerabilityAssessments/default", - "name": "default", - "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments", - "properties": { - "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", - "recurringScans": { - "isEnabled": true, - "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "managedInstanceName": "vulnerabilityaseessmenttest-6440", + "databaseName": "testdb", + "vulnerabilityAssessmentName": "default", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityaseessmenttest-6440/databases/testdb/vulnerabilityAssessments/default", + "name": "default", + "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments", + "properties": { + "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "recurringScans": { + "isEnabled": true, + "emailSubscriptionAdmins": true, + "emails": [ + "email1@mail.com", + "email2@mail.com" ] + } } - } + } + ] + } } - } \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineCreate.json index 7f22f8124ff4..a072d8e98dc2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineCreate.json @@ -12,13 +12,23 @@ "properties": { "baselineResults": [ { - "result": [ "userA", "SELECT" ] + "result": [ + "userA", + "SELECT" + ] }, { - "result": [ "userB", "SELECT" ] + "result": [ + "userB", + "SELECT" + ] }, { - "result": [ "userC", "SELECT", "tableId_4" ] + "result": [ + "userC", + "SELECT", + "tableId_4" + ] } ] } @@ -33,17 +43,27 @@ "properties": { "baselineResults": [ { - "result": [ "userA", "SELECT" ] + "result": [ + "userA", + "SELECT" + ] }, { - "result": [ "userB", "SELECT" ] + "result": [ + "userB", + "SELECT" + ] }, { - "result": [ "userC", "SELECT", "tableId_4" ] + "result": [ + "userC", + "SELECT", + "tableId_4" + ] } ] } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineDelete.json index a3397b7e03a8..ee8551929e73 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineDelete.json @@ -10,7 +10,6 @@ "api-version": "2017-10-01-preview" }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineGet.json index 0e58fd7df92c..116642da830e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentRuleBaselineGet.json @@ -18,17 +18,27 @@ "properties": { "baselineResults": [ { - "result": [ "userA", "SELECT" ] + "result": [ + "userA", + "SELECT" + ] }, { - "result": [ "userB", "SELECT" ] + "result": [ + "userB", + "SELECT" + ] }, { - "result": [ "userC", "SELECT", "tableId_4" ] + "result": [ + "userC", + "SELECT", + "tableId_4" + ] } ] } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanExport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanExport.json index 4c6006bc7481..62df661dcd9b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanExport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanExport.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanRecordsGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanRecordsGet.json index d4f740690099..675234a8141e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanRecordsGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanRecordsGet.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanRecordsListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanRecordsListByDatabase.json index a2c9cdf21839..0a5f878f3c40 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanRecordsListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScanRecordsListByDatabase.json @@ -1,68 +1,68 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityassessmenttest-4711", - "managedInstanceName": "vulnerabilityassessmenttest-6411", - "databaseName": "testdb", - "vulnerabilityAssessmentName": "default", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan001", - "name": "scan001", - "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", - "properties": { - "scanId": "scan001", - "triggerType": "OnDemand", - "state": "Passed", - "startTime": "2017-12-12T17:45:06Z", - "endTime": "2017-12-12T17:47:06Z", - "errors": [ ], - "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", - "numberOfFailedSecurityChecks": 9 - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan002", - "name": "scan002", - "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", - "properties": { - "scanId": "scan002", - "triggerType": "Recurring", - "state": "Failed", - "startTime": "2017-12-12T17:45:06Z", - "endTime": "2017-12-12T17:47:06Z", - "errors": [ ], - "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", - "numberOfFailedSecurityChecks": 9 - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan003", - "name": "scan003", - "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", - "properties": { - "scanId": "scan003", - "triggerType": "Recurring", - "state": "FailedToRun", - "startTime": "2017-12-12T17:45:06Z", - "endTime": "2017-12-12T17:47:06Z", - "errors": [ - { - "code": "StorageNotFound", - "message": "Storage not found" - } - ], - "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", - "numberOfFailedSecurityChecks": 0 - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityassessmenttest-4711", + "managedInstanceName": "vulnerabilityassessmenttest-6411", + "databaseName": "testdb", + "vulnerabilityAssessmentName": "default", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan001", + "name": "scan001", + "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", + "properties": { + "scanId": "scan001", + "triggerType": "OnDemand", + "state": "Passed", + "startTime": "2017-12-12T17:45:06Z", + "endTime": "2017-12-12T17:47:06Z", + "errors": [], + "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", + "numberOfFailedSecurityChecks": 9 } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan002", + "name": "scan002", + "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", + "properties": { + "scanId": "scan002", + "triggerType": "Recurring", + "state": "Failed", + "startTime": "2017-12-12T17:45:06Z", + "endTime": "2017-12-12T17:47:06Z", + "errors": [], + "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", + "numberOfFailedSecurityChecks": 9 + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityassessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityassessmenttest-6440/databases/testdb/vulnerabilityAssessments/default/scans/scan003", + "name": "scan003", + "type": "Microsoft.Sql/servers/databases/vulnerabilityAssessments/scans", + "properties": { + "scanId": "scan003", + "triggerType": "Recurring", + "state": "FailedToRun", + "startTime": "2017-12-12T17:45:06Z", + "endTime": "2017-12-12T17:47:06Z", + "errors": [ + { + "code": "StorageNotFound", + "message": "Storage not found" + } + ], + "storageContainerPath": "https://myaccount.blob.core.windows.net/vulnerability-assessment", + "numberOfFailedSecurityChecks": 0 + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScansExecute.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScansExecute.json index 2781fc04dd5e..c5c6cb0c9bd5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScansExecute.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentScansExecute.json @@ -12,4 +12,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorCreateOrUpdateKeyVault.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorCreateOrUpdateKeyVault.json index 69d7a47c1af8..912cc290f3f1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorCreateOrUpdateKeyVault.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorCreateOrUpdateKeyVault.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "managedInstanceName": "sqlcrudtest-4645", + "encryptionProtectorName": "current", + "api-version": "2017-10-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "managedInstanceName": "sqlcrudtest-4645", - "encryptionProtectorName": "current", - "api-version": "2017-10-01-preview", - "parameters": { - "properties": { - "serverKeyType": "AzureKeyVault", - "serverKeyName": "someVault_someKey_01234567890123456789012345678901" - } + "properties": { + "serverKeyType": "AzureKeyVault", + "serverKeyName": "someVault_someKey_01234567890123456789012345678901" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/encryptionProtector/current", + "name": "current", + "type": "Microsoft.Sql/managedInstances/encryptionProtector", + "kind": "azurekeyvault", + "properties": { + "serverKeyName": "someVault_someKey_01234567890123456789012345678901", + "serverKeyType": "AzureKeyVault" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/encryptionProtector/current", - "name": "current", - "type": "Microsoft.Sql/managedInstances/encryptionProtector", - "kind": "azurekeyvault", - "properties": { - "serverKeyName": "someVault_someKey_01234567890123456789012345678901", - "serverKeyType": "AzureKeyVault" - } - } - }, - "202": { } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorCreateOrUpdateServiceManaged.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorCreateOrUpdateServiceManaged.json index d9cd27a2ed2b..fe71804ea37f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorCreateOrUpdateServiceManaged.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorCreateOrUpdateServiceManaged.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "managedInstanceName": "sqlcrudtest-4645", + "encryptionProtectorName": "current", + "api-version": "2017-10-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "managedInstanceName": "sqlcrudtest-4645", - "encryptionProtectorName": "current", - "api-version": "2017-10-01-preview", - "parameters": { - "properties": { - "serverKeyType": "ServiceManaged", - "serverKeyName": "ServiceManaged" - } + "properties": { + "serverKeyType": "ServiceManaged", + "serverKeyName": "ServiceManaged" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/encryptionProtector/current", + "name": "current", + "type": "Microsoft.Sql/managedInstances/encryptionProtector", + "kind": "servicemanaged", + "properties": { + "serverKeyName": "ServiceManaged", + "serverKeyType": "ServiceManaged" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/encryptionProtector/current", - "name": "current", - "type": "Microsoft.Sql/managedInstances/encryptionProtector", - "kind": "servicemanaged", - "properties": { - "serverKeyName": "ServiceManaged", - "serverKeyType": "ServiceManaged" - } - } - }, - "202": { } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorGet.json index 55f142d6b549..2088ab9e9ab3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorGet.json @@ -3,7 +3,7 @@ "subscriptionId": "00000000-1111-2222-3333-444444444444", "resourceGroupName": "sqlcrudtest-7398", "managedInstanceName": "sqlcrudtest-4645", - "encryptionProtectorName": "current", + "encryptionProtectorName": "current", "api-version": "2017-10-01-preview" }, "responses": { @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorList.json index c4b7cdce93d7..f591c75fbcc8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceEncryptionProtectorList.json @@ -20,8 +20,8 @@ "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901" } } - ] + ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyCreateOrUpdate.json index 1be1b7cee0d5..be1cf85c04ca 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyCreateOrUpdate.json @@ -1,46 +1,46 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "managedInstanceName": "sqlcrudtest-4645", + "keyName": "someVault_someKey_01234567890123456789012345678901", + "api-version": "2017-10-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "managedInstanceName": "sqlcrudtest-4645", - "keyName": "someVault_someKey_01234567890123456789012345678901", - "api-version": "2017-10-01-preview", - "parameters": { - "properties": { - "serverKeyType": "AzureKeyVault", - "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901" - } + "properties": { + "serverKeyType": "AzureKeyVault", + "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/managedInstances/keys", + "kind": "azurekeyvault", + "properties": { + "serverKeyType": "AzureKeyVault", + "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", + "thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD", + "creationDate": "2017-05-01T00:00:00.0Z" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/managedInstances/keys", - "kind": "azurekeyvault", - "properties": { - "serverKeyType": "AzureKeyVault", - "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", - "thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD", - "creationDate": "2017-05-01T00:00:00.0Z" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/managedInstances/keys", - "kind": "azurekeyvault", - "properties": { - "serverKeyType": "AzureKeyVault", - "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", - "thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD", - "creationDate": "2017-05-01T00:00:00.0Z" - } - } - }, - "202": { } - } -} \ No newline at end of file + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/managedInstances/keys", + "kind": "azurekeyvault", + "properties": { + "serverKeyType": "AzureKeyVault", + "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", + "thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD", + "creationDate": "2017-05-01T00:00:00.0Z" + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyDelete.json index d4364ec4dd72..a748fd8b799d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyDelete.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyGet.json index 24f4871074d1..07975387f667 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyGet.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyList.json index 04314f0fe719..35ba68ca1e44 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyList.json @@ -42,8 +42,8 @@ "serverKeyType": "ServiceManaged" } } - ] + ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceTdeCertificate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceTdeCertificate.json index 762693cb8dd9..daa4452eb004 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceTdeCertificate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceTdeCertificate.json @@ -1,18 +1,18 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000001", + "resourceGroupName": "testtdecert", + "managedInstanceName": "testtdecert", + "api-version": "2017-10-01-preview", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000001", - "resourceGroupName": "testtdecert", - "managedInstanceName": "testtdecert", - "api-version": "2017-10-01-preview", - "parameters": { - "properties": { - "privateBlob": "MIIJ+QIBAzCCCbUGCSqGSIb3DQEHAaCCCaYEggmiMIIJnjCCBhcGCSqGSIb3DQEHAaCCBggEggYEMIIGADCCBfwGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgUeBd7F2KZUwICB9AEggTYSRi88/Xf0EZ9smyYDCr+jHa7a/510s19/5wjqGbLTT/CYBu2qSOhj+g9sNvjj5oWAcluaZ4XCl/oJhXlB+9q9ZYSC6pPhma7/Il+/zlZm8ZUMfgnUefpKXGj+Ilydghya2DOA0PONDGbqIJGBYC0JgtiL7WcYyA+LEiO0vXc2fZ+ccjQsHM+ePFOm6rTJ1oqE3quRC5Ls2Bv22PCmF+GWkWxqH1L5x8wR2tYfecEsx4sKMj318novQqBlJckOUPDrTT2ic6izFnDWS+zbGezSCeRkt2vjCUVDg7Aqm2bkmLVn+arA3tDZ/DBxgTwwt8prpAznDYG07WRxXMUk8Uqzmcds85jSMLSBOoRaS7GwIPprx0QwyYXd8H/go2vafuGCydRk8mA0bGLXjYWuYHAtztlGrE71a7ILqHY4XankohSAY4YF9Fc1mJcdtsuICs5vNosw1lf0VK5BR4ONCkiGFdYEKUpaUrzKpQiw3zteBN8RQs/ADKGWzaWERrkptf0pLH3/QnZvu9xwwnNWneygByPy7OVYrvgjD27x7Y/C24GyQweh75OTQN3fAvUj7IqeTVyWZGZq32AY/uUXYwASBpLbNUtUBfJ7bgyvVSZlPvcFUwDHJC1P+fSP8Vfcc9W3ec9HqVheXio7gYBEg9hZrOZwiZorl8HZJsEj5NxGccBme6hEVQRZfar5kFDHor/zmKohEAJVw8lVLkgmEuz8aqQUDSWVAcLbkfqygK/NxsR2CaC6xWroagQSRwpF8YbvqYJtAQvdkUXY9Ll4LSRcxKrWMZHgI+1Z22pyNtpy/kXLADche5CF3AVbHtzNNgn9L4GVuCW1Lqufu3U2+DEG+u53u1vraf45RS1y0IyLjTGC+8j0OTxcgUU6FrGgFny0m676v8potPrfyHvuOO511aOTe8UPBfnYyx0XHJPn8RaYGq0vMOBpFyfJkXtAnbRMgXjxxiO91yXTI2hbdVlAmOER1u8QemtF5PoKwZzaAjGBC5S0ARNtxZcWInGciGgtWJVVcyU6nJv3pa2T8jNvtcp8X7j+Il6j6Sju02L/f+S9MvAoGfgG6C5cInNIBEt7+mpYYV/6Mi9Nnj+8/Cq3eAMdTTo7XIzbFpeInzpVN2lAxPockRoAVj+odYO3CIBnzJ7mcA7JqtNk76vaWKasocMk9YS0Z+43o/Z5pZPwXvUv++UUv5fGRcsnIHEeQc+XJlSqRVoaLDo3mNRV6jp5GzJW2BZx3KkuLbohcmfBdr6c8ehGvHXhPm4k2jq9UNYvG9Gy58+1GqdhIYWbRc0Haid8H7UvvdkjA+Yul2rLj4fSTJ6yJ4f6xFAsFY7wIJthpik+dQO9lqPglo9DY30gEOXs3miuJmdmFtBoYlzxti4JBGwxXPwP3rtu6rY1JEOFsh1WmSEGE6Df2l9wtUQ0WAAD6bWgCxMiiRRv7TegxSeMtGn5QKuPC5lFuvzZvtJy1rR8WQwT7lVdHz32xLP2Rs4dayQPh08x3GsuI54d2kti2rcaSltGLRAOuODWc8KjYsPS6Ku4aN2NoQB5H9TEbHy2fsUNpNPMbCY54lH5bkgJtO4WmulnAHEApZG07u8G+Kk3a15npXemWgUW3N9gGtJ2XmieendXqS3RK1ZUYDsnAWW2jCZkjGB6jANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAYgBjAGYAOABhADUAOQAtAGYAZQAzADIALQA0AGIAZgA0AC0AYQBiAGMAZgAtADkAOAA3AGIANwBmADgANwAzADEANgBjMGsGCSsGAQQBgjcRATFeHlwATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByACAAdgAxAC4AMDCCA38GCSqGSIb3DQEHBqCCA3AwggNsAgEAMIIDZQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIbQcNiyMGeL4CAgfQgIIDOPSSP6SqJGYsXCPWCMQU0TqdqT55fauuadduHaAlQpyN0MVYdu9QguLqMaJjxWa8Coy3K7LAOcqJ4S8FWV2SrpTuNHPv7vrtZfYhltGl+vW8rIrogeGTV4T/45oc5605HSiyItOWX8vHYKnAJkRMW4ICZXgY3dZVb+fr6yPIRFvMywqzwkViVOJIKjZN2lsAQ0xlLU0Fu/va9uxADwI2ZUKfo+6nX6bITkLvUSJoNCvZ5e7UITasxC4ZauHdMZch38N7BPH2usrAQfr3omYcScFzSeN2onhE1JBURCPDQa8+CGiWMm6mxboUOIcUGasaDqYQ8pSAgZZqQf8lU0uH4FP/z/5Dd7PniDHjvqlwYa+vB6flgtrwh6jYFeTKluhkucLrfzusFR52kHpg8K4GaUL8MhvlsNdd8iHSFjfyOdXRpY9re+B8X9Eorx0Z3xsSsVWaCwmI+Spq+BZ5CSXVm9Um6ogeM0et8JciZS2yFLIlbl2o4U1BWblskYfj/29jm4/2UKjKzORZnpjE0O+qP4hReSrx6os9dr8sNkq/7OafZock8zXjXaOpW6bqB1V5NWMPiWiPxPxfRi1F/MQp6CPY03H7MsDALEFcF7MmtY4YpN/+FFfrrOwS19Fg0OnQzNIgFpSRywX9dxyKICt/wbvhM+RLpUN50ZekFVska+C27hJRJEZ9rSdVhOVdL1UNknuwqF1cCQQriaNsnCbeVHN3/Wgsms9+Kt+glBNyZQlU8Fk+fafcQFI5MlxyMmARVwnC70F8AScnJPPFVZIdgIrvOXCDrEh8wFgkVM/MHkaTZUF51yy3pbIZaPmNd5dsUfEvMsW2IY6esnUUxPRQUUoi5Ib8EFHdiQJrYY3ELfZRXb2I1Xd0DVhlGzogn3CXZtXR2gSAakdB0qrLpXMSJNS65SS2tVTD7SI8OpUGNRjthQIAEEROPue10geFUwarWi/3jGMG529SzwDUJ4g0ix6VtcuLIDYFNdClDTyEyeV1f70NSG2QVXPIpeF7WQ8jWK7kenGaqqna4C4FYQpQk9vJP171nUXLR2mUR11bo1N4hcVhXnJls5yo9u14BB9CqVKXeDl7M5zwMDswHzAHBgUrDgMCGgQUT6Tjuka1G4O/ZCBxO7NBR34YUYQEFLaheEdRIIuxUd25/hl5vf2SFuZuAgIH0A==", - "password" : "password" - } - } - }, - "responses": { - "200": { }, - "202": { } + "properties": { + "privateBlob": "MIIJ+QIBAzCCCbUGCSqGSIb3DQEHAaCCCaYEggmiMIIJnjCCBhcGCSqGSIb3DQEHAaCCBggEggYEMIIGADCCBfwGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgUeBd7F2KZUwICB9AEggTYSRi88/Xf0EZ9smyYDCr+jHa7a/510s19/5wjqGbLTT/CYBu2qSOhj+g9sNvjj5oWAcluaZ4XCl/oJhXlB+9q9ZYSC6pPhma7/Il+/zlZm8ZUMfgnUefpKXGj+Ilydghya2DOA0PONDGbqIJGBYC0JgtiL7WcYyA+LEiO0vXc2fZ+ccjQsHM+ePFOm6rTJ1oqE3quRC5Ls2Bv22PCmF+GWkWxqH1L5x8wR2tYfecEsx4sKMj318novQqBlJckOUPDrTT2ic6izFnDWS+zbGezSCeRkt2vjCUVDg7Aqm2bkmLVn+arA3tDZ/DBxgTwwt8prpAznDYG07WRxXMUk8Uqzmcds85jSMLSBOoRaS7GwIPprx0QwyYXd8H/go2vafuGCydRk8mA0bGLXjYWuYHAtztlGrE71a7ILqHY4XankohSAY4YF9Fc1mJcdtsuICs5vNosw1lf0VK5BR4ONCkiGFdYEKUpaUrzKpQiw3zteBN8RQs/ADKGWzaWERrkptf0pLH3/QnZvu9xwwnNWneygByPy7OVYrvgjD27x7Y/C24GyQweh75OTQN3fAvUj7IqeTVyWZGZq32AY/uUXYwASBpLbNUtUBfJ7bgyvVSZlPvcFUwDHJC1P+fSP8Vfcc9W3ec9HqVheXio7gYBEg9hZrOZwiZorl8HZJsEj5NxGccBme6hEVQRZfar5kFDHor/zmKohEAJVw8lVLkgmEuz8aqQUDSWVAcLbkfqygK/NxsR2CaC6xWroagQSRwpF8YbvqYJtAQvdkUXY9Ll4LSRcxKrWMZHgI+1Z22pyNtpy/kXLADche5CF3AVbHtzNNgn9L4GVuCW1Lqufu3U2+DEG+u53u1vraf45RS1y0IyLjTGC+8j0OTxcgUU6FrGgFny0m676v8potPrfyHvuOO511aOTe8UPBfnYyx0XHJPn8RaYGq0vMOBpFyfJkXtAnbRMgXjxxiO91yXTI2hbdVlAmOER1u8QemtF5PoKwZzaAjGBC5S0ARNtxZcWInGciGgtWJVVcyU6nJv3pa2T8jNvtcp8X7j+Il6j6Sju02L/f+S9MvAoGfgG6C5cInNIBEt7+mpYYV/6Mi9Nnj+8/Cq3eAMdTTo7XIzbFpeInzpVN2lAxPockRoAVj+odYO3CIBnzJ7mcA7JqtNk76vaWKasocMk9YS0Z+43o/Z5pZPwXvUv++UUv5fGRcsnIHEeQc+XJlSqRVoaLDo3mNRV6jp5GzJW2BZx3KkuLbohcmfBdr6c8ehGvHXhPm4k2jq9UNYvG9Gy58+1GqdhIYWbRc0Haid8H7UvvdkjA+Yul2rLj4fSTJ6yJ4f6xFAsFY7wIJthpik+dQO9lqPglo9DY30gEOXs3miuJmdmFtBoYlzxti4JBGwxXPwP3rtu6rY1JEOFsh1WmSEGE6Df2l9wtUQ0WAAD6bWgCxMiiRRv7TegxSeMtGn5QKuPC5lFuvzZvtJy1rR8WQwT7lVdHz32xLP2Rs4dayQPh08x3GsuI54d2kti2rcaSltGLRAOuODWc8KjYsPS6Ku4aN2NoQB5H9TEbHy2fsUNpNPMbCY54lH5bkgJtO4WmulnAHEApZG07u8G+Kk3a15npXemWgUW3N9gGtJ2XmieendXqS3RK1ZUYDsnAWW2jCZkjGB6jANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAYgBjAGYAOABhADUAOQAtAGYAZQAzADIALQA0AGIAZgA0AC0AYQBiAGMAZgAtADkAOAA3AGIANwBmADgANwAzADEANgBjMGsGCSsGAQQBgjcRATFeHlwATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByACAAdgAxAC4AMDCCA38GCSqGSIb3DQEHBqCCA3AwggNsAgEAMIIDZQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIbQcNiyMGeL4CAgfQgIIDOPSSP6SqJGYsXCPWCMQU0TqdqT55fauuadduHaAlQpyN0MVYdu9QguLqMaJjxWa8Coy3K7LAOcqJ4S8FWV2SrpTuNHPv7vrtZfYhltGl+vW8rIrogeGTV4T/45oc5605HSiyItOWX8vHYKnAJkRMW4ICZXgY3dZVb+fr6yPIRFvMywqzwkViVOJIKjZN2lsAQ0xlLU0Fu/va9uxADwI2ZUKfo+6nX6bITkLvUSJoNCvZ5e7UITasxC4ZauHdMZch38N7BPH2usrAQfr3omYcScFzSeN2onhE1JBURCPDQa8+CGiWMm6mxboUOIcUGasaDqYQ8pSAgZZqQf8lU0uH4FP/z/5Dd7PniDHjvqlwYa+vB6flgtrwh6jYFeTKluhkucLrfzusFR52kHpg8K4GaUL8MhvlsNdd8iHSFjfyOdXRpY9re+B8X9Eorx0Z3xsSsVWaCwmI+Spq+BZ5CSXVm9Um6ogeM0et8JciZS2yFLIlbl2o4U1BWblskYfj/29jm4/2UKjKzORZnpjE0O+qP4hReSrx6os9dr8sNkq/7OafZock8zXjXaOpW6bqB1V5NWMPiWiPxPxfRi1F/MQp6CPY03H7MsDALEFcF7MmtY4YpN/+FFfrrOwS19Fg0OnQzNIgFpSRywX9dxyKICt/wbvhM+RLpUN50ZekFVska+C27hJRJEZ9rSdVhOVdL1UNknuwqF1cCQQriaNsnCbeVHN3/Wgsms9+Kt+glBNyZQlU8Fk+fafcQFI5MlxyMmARVwnC70F8AScnJPPFVZIdgIrvOXCDrEh8wFgkVM/MHkaTZUF51yy3pbIZaPmNd5dsUfEvMsW2IY6esnUUxPRQUUoi5Ib8EFHdiQJrYY3ELfZRXb2I1Xd0DVhlGzogn3CXZtXR2gSAakdB0qrLpXMSJNS65SS2tVTD7SI8OpUGNRjthQIAEEROPue10geFUwarWi/3jGMG529SzwDUJ4g0ix6VtcuLIDYFNdClDTyEyeV1f70NSG2QVXPIpeF7WQ8jWK7kenGaqqna4C4FYQpQk9vJP171nUXLR2mUR11bo1N4hcVhXnJls5yo9u14BB9CqVKXeDl7M5zwMDswHzAHBgUrDgMCGgQUT6Tjuka1G4O/ZCBxO7NBR34YUYQEFLaheEdRIIuxUd25/hl5vf2SFuZuAgIH0A==", + "password": "password" + } } -} \ No newline at end of file + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PatchDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PatchDatabase.json index ecc2460ce7e9..8abff3098570 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PatchDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PatchDatabase.json @@ -1,45 +1,45 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "sku": { - "name": "S1", - "tier": "Standard" - }, - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824 - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S1", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S1", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} + "sku": { + "name": "S1", + "tier": "Standard" + }, + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824 + } } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S1", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S1", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PatchVCoreDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PatchVCoreDatabase.json index b0b211816a51..b7cadca93aa5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PatchVCoreDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PatchVCoreDatabase.json @@ -1,47 +1,47 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "sku": { - "name": "BC_Gen4_4" - }, - "properties": { - "maxSizeBytes": 1073741824, - "licenseType": "LicenseIncluded" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "BC_Gen4_4", - "tier": "BusinessCritical", - "capacity": 4 - }, - "kind": "v12.0,user,vcore", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_4", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} + "sku": { + "name": "BC_Gen4_4" + }, + "properties": { + "maxSizeBytes": 1073741824, + "licenseType": "LicenseIncluded" + } } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "BC_Gen4_4", + "tier": "BusinessCritical", + "capacity": 4 + }, + "kind": "v12.0,user,vcore", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_4", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PauseDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PauseDatabase.json index 16115b015d5e..a7f821de6f2b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PauseDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/PauseDatabase.json @@ -10,8 +10,8 @@ "200": { "body": { "sku": { - "name": "DW100", - "tier": "DataWarehouse" + "name": "DW100", + "tier": "DataWarehouse" }, "kind": "v12.0,user,datawarehouse", "properties": { @@ -32,4 +32,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/RenameDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/RenameDatabase.json index 2a5a534d8d02..963ff8794aad 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/RenameDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/RenameDatabase.json @@ -1,15 +1,15 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/newtestdb" - } - }, - "responses": { - "200": { } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/newtestdb" } -} \ No newline at end of file + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ResumeDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ResumeDatabase.json index 436dffd24975..304203893b24 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ResumeDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ResumeDatabase.json @@ -10,8 +10,8 @@ "200": { "body": { "sku": { - "name": "DW100", - "tier": "DataWarehouse" + "name": "DW100", + "tier": "DataWarehouse" }, "kind": "v12.0,user,datawarehouse", "properties": { @@ -32,4 +32,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/SqlTdeCertificateCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/SqlTdeCertificateCreate.json index d5d0dcffb2b9..112fe6492946 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/SqlTdeCertificateCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/SqlTdeCertificateCreate.json @@ -1,19 +1,19 @@ { + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000001", + "resourceGroupName": "testtdecert", + "serverName": "testtdecert", + "tdeCertName": "current", + "api-version": "2017-10-01-preview", "parameters": { - "subscriptionId": "00000000-0000-0000-0000-000000000001", - "resourceGroupName": "testtdecert", - "serverName": "testtdecert", - "tdeCertName": "current", - "api-version": "2017-10-01-preview", - "parameters": { - "properties": { - "privateBlob": "MIIJ+QIBAzCCCbUGCSqGSIb3DQEHAaCCCaYEggmiMIIJnjCCBhcGCSqGSIb3DQEHAaCCBggEggYEMIIGADCCBfwGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgUeBd7F2KZUwICB9AEggTYSRi88/Xf0EZ9smyYDCr+jHa7a/510s19/5wjqGbLTT/CYBu2qSOhj+g9sNvjj5oWAcluaZ4XCl/oJhXlB+9q9ZYSC6pPhma7/Il+/zlZm8ZUMfgnUefpKXGj+Ilydghya2DOA0PONDGbqIJGBYC0JgtiL7WcYyA+LEiO0vXc2fZ+ccjQsHM+ePFOm6rTJ1oqE3quRC5Ls2Bv22PCmF+GWkWxqH1L5x8wR2tYfecEsx4sKMj318novQqBlJckOUPDrTT2ic6izFnDWS+zbGezSCeRkt2vjCUVDg7Aqm2bkmLVn+arA3tDZ/DBxgTwwt8prpAznDYG07WRxXMUk8Uqzmcds85jSMLSBOoRaS7GwIPprx0QwyYXd8H/go2vafuGCydRk8mA0bGLXjYWuYHAtztlGrE71a7ILqHY4XankohSAY4YF9Fc1mJcdtsuICs5vNosw1lf0VK5BR4ONCkiGFdYEKUpaUrzKpQiw3zteBN8RQs/ADKGWzaWERrkptf0pLH3/QnZvu9xwwnNWneygByPy7OVYrvgjD27x7Y/C24GyQweh75OTQN3fAvUj7IqeTVyWZGZq32AY/uUXYwASBpLbNUtUBfJ7bgyvVSZlPvcFUwDHJC1P+fSP8Vfcc9W3ec9HqVheXio7gYBEg9hZrOZwiZorl8HZJsEj5NxGccBme6hEVQRZfar5kFDHor/zmKohEAJVw8lVLkgmEuz8aqQUDSWVAcLbkfqygK/NxsR2CaC6xWroagQSRwpF8YbvqYJtAQvdkUXY9Ll4LSRcxKrWMZHgI+1Z22pyNtpy/kXLADche5CF3AVbHtzNNgn9L4GVuCW1Lqufu3U2+DEG+u53u1vraf45RS1y0IyLjTGC+8j0OTxcgUU6FrGgFny0m676v8potPrfyHvuOO511aOTe8UPBfnYyx0XHJPn8RaYGq0vMOBpFyfJkXtAnbRMgXjxxiO91yXTI2hbdVlAmOER1u8QemtF5PoKwZzaAjGBC5S0ARNtxZcWInGciGgtWJVVcyU6nJv3pa2T8jNvtcp8X7j+Il6j6Sju02L/f+S9MvAoGfgG6C5cInNIBEt7+mpYYV/6Mi9Nnj+8/Cq3eAMdTTo7XIzbFpeInzpVN2lAxPockRoAVj+odYO3CIBnzJ7mcA7JqtNk76vaWKasocMk9YS0Z+43o/Z5pZPwXvUv++UUv5fGRcsnIHEeQc+XJlSqRVoaLDo3mNRV6jp5GzJW2BZx3KkuLbohcmfBdr6c8ehGvHXhPm4k2jq9UNYvG9Gy58+1GqdhIYWbRc0Haid8H7UvvdkjA+Yul2rLj4fSTJ6yJ4f6xFAsFY7wIJthpik+dQO9lqPglo9DY30gEOXs3miuJmdmFtBoYlzxti4JBGwxXPwP3rtu6rY1JEOFsh1WmSEGE6Df2l9wtUQ0WAAD6bWgCxMiiRRv7TegxSeMtGn5QKuPC5lFuvzZvtJy1rR8WQwT7lVdHz32xLP2Rs4dayQPh08x3GsuI54d2kti2rcaSltGLRAOuODWc8KjYsPS6Ku4aN2NoQB5H9TEbHy2fsUNpNPMbCY54lH5bkgJtO4WmulnAHEApZG07u8G+Kk3a15npXemWgUW3N9gGtJ2XmieendXqS3RK1ZUYDsnAWW2jCZkjGB6jANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAYgBjAGYAOABhADUAOQAtAGYAZQAzADIALQA0AGIAZgA0AC0AYQBiAGMAZgAtADkAOAA3AGIANwBmADgANwAzADEANgBjMGsGCSsGAQQBgjcRATFeHlwATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByACAAdgAxAC4AMDCCA38GCSqGSIb3DQEHBqCCA3AwggNsAgEAMIIDZQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIbQcNiyMGeL4CAgfQgIIDOPSSP6SqJGYsXCPWCMQU0TqdqT55fauuadduHaAlQpyN0MVYdu9QguLqMaJjxWa8Coy3K7LAOcqJ4S8FWV2SrpTuNHPv7vrtZfYhltGl+vW8rIrogeGTV4T/45oc5605HSiyItOWX8vHYKnAJkRMW4ICZXgY3dZVb+fr6yPIRFvMywqzwkViVOJIKjZN2lsAQ0xlLU0Fu/va9uxADwI2ZUKfo+6nX6bITkLvUSJoNCvZ5e7UITasxC4ZauHdMZch38N7BPH2usrAQfr3omYcScFzSeN2onhE1JBURCPDQa8+CGiWMm6mxboUOIcUGasaDqYQ8pSAgZZqQf8lU0uH4FP/z/5Dd7PniDHjvqlwYa+vB6flgtrwh6jYFeTKluhkucLrfzusFR52kHpg8K4GaUL8MhvlsNdd8iHSFjfyOdXRpY9re+B8X9Eorx0Z3xsSsVWaCwmI+Spq+BZ5CSXVm9Um6ogeM0et8JciZS2yFLIlbl2o4U1BWblskYfj/29jm4/2UKjKzORZnpjE0O+qP4hReSrx6os9dr8sNkq/7OafZock8zXjXaOpW6bqB1V5NWMPiWiPxPxfRi1F/MQp6CPY03H7MsDALEFcF7MmtY4YpN/+FFfrrOwS19Fg0OnQzNIgFpSRywX9dxyKICt/wbvhM+RLpUN50ZekFVska+C27hJRJEZ9rSdVhOVdL1UNknuwqF1cCQQriaNsnCbeVHN3/Wgsms9+Kt+glBNyZQlU8Fk+fafcQFI5MlxyMmARVwnC70F8AScnJPPFVZIdgIrvOXCDrEh8wFgkVM/MHkaTZUF51yy3pbIZaPmNd5dsUfEvMsW2IY6esnUUxPRQUUoi5Ib8EFHdiQJrYY3ELfZRXb2I1Xd0DVhlGzogn3CXZtXR2gSAakdB0qrLpXMSJNS65SS2tVTD7SI8OpUGNRjthQIAEEROPue10geFUwarWi/3jGMG529SzwDUJ4g0ix6VtcuLIDYFNdClDTyEyeV1f70NSG2QVXPIpeF7WQ8jWK7kenGaqqna4C4FYQpQk9vJP171nUXLR2mUR11bo1N4hcVhXnJls5yo9u14BB9CqVKXeDl7M5zwMDswHzAHBgUrDgMCGgQUT6Tjuka1G4O/ZCBxO7NBR34YUYQEFLaheEdRIIuxUd25/hl5vf2SFuZuAgIH0A==", - "password" : "password" - } - } - }, - "responses": { - "200": { }, - "202": { } + "properties": { + "privateBlob": "MIIJ+QIBAzCCCbUGCSqGSIb3DQEHAaCCCaYEggmiMIIJnjCCBhcGCSqGSIb3DQEHAaCCBggEggYEMIIGADCCBfwGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgUeBd7F2KZUwICB9AEggTYSRi88/Xf0EZ9smyYDCr+jHa7a/510s19/5wjqGbLTT/CYBu2qSOhj+g9sNvjj5oWAcluaZ4XCl/oJhXlB+9q9ZYSC6pPhma7/Il+/zlZm8ZUMfgnUefpKXGj+Ilydghya2DOA0PONDGbqIJGBYC0JgtiL7WcYyA+LEiO0vXc2fZ+ccjQsHM+ePFOm6rTJ1oqE3quRC5Ls2Bv22PCmF+GWkWxqH1L5x8wR2tYfecEsx4sKMj318novQqBlJckOUPDrTT2ic6izFnDWS+zbGezSCeRkt2vjCUVDg7Aqm2bkmLVn+arA3tDZ/DBxgTwwt8prpAznDYG07WRxXMUk8Uqzmcds85jSMLSBOoRaS7GwIPprx0QwyYXd8H/go2vafuGCydRk8mA0bGLXjYWuYHAtztlGrE71a7ILqHY4XankohSAY4YF9Fc1mJcdtsuICs5vNosw1lf0VK5BR4ONCkiGFdYEKUpaUrzKpQiw3zteBN8RQs/ADKGWzaWERrkptf0pLH3/QnZvu9xwwnNWneygByPy7OVYrvgjD27x7Y/C24GyQweh75OTQN3fAvUj7IqeTVyWZGZq32AY/uUXYwASBpLbNUtUBfJ7bgyvVSZlPvcFUwDHJC1P+fSP8Vfcc9W3ec9HqVheXio7gYBEg9hZrOZwiZorl8HZJsEj5NxGccBme6hEVQRZfar5kFDHor/zmKohEAJVw8lVLkgmEuz8aqQUDSWVAcLbkfqygK/NxsR2CaC6xWroagQSRwpF8YbvqYJtAQvdkUXY9Ll4LSRcxKrWMZHgI+1Z22pyNtpy/kXLADche5CF3AVbHtzNNgn9L4GVuCW1Lqufu3U2+DEG+u53u1vraf45RS1y0IyLjTGC+8j0OTxcgUU6FrGgFny0m676v8potPrfyHvuOO511aOTe8UPBfnYyx0XHJPn8RaYGq0vMOBpFyfJkXtAnbRMgXjxxiO91yXTI2hbdVlAmOER1u8QemtF5PoKwZzaAjGBC5S0ARNtxZcWInGciGgtWJVVcyU6nJv3pa2T8jNvtcp8X7j+Il6j6Sju02L/f+S9MvAoGfgG6C5cInNIBEt7+mpYYV/6Mi9Nnj+8/Cq3eAMdTTo7XIzbFpeInzpVN2lAxPockRoAVj+odYO3CIBnzJ7mcA7JqtNk76vaWKasocMk9YS0Z+43o/Z5pZPwXvUv++UUv5fGRcsnIHEeQc+XJlSqRVoaLDo3mNRV6jp5GzJW2BZx3KkuLbohcmfBdr6c8ehGvHXhPm4k2jq9UNYvG9Gy58+1GqdhIYWbRc0Haid8H7UvvdkjA+Yul2rLj4fSTJ6yJ4f6xFAsFY7wIJthpik+dQO9lqPglo9DY30gEOXs3miuJmdmFtBoYlzxti4JBGwxXPwP3rtu6rY1JEOFsh1WmSEGE6Df2l9wtUQ0WAAD6bWgCxMiiRRv7TegxSeMtGn5QKuPC5lFuvzZvtJy1rR8WQwT7lVdHz32xLP2Rs4dayQPh08x3GsuI54d2kti2rcaSltGLRAOuODWc8KjYsPS6Ku4aN2NoQB5H9TEbHy2fsUNpNPMbCY54lH5bkgJtO4WmulnAHEApZG07u8G+Kk3a15npXemWgUW3N9gGtJ2XmieendXqS3RK1ZUYDsnAWW2jCZkjGB6jANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAYgBjAGYAOABhADUAOQAtAGYAZQAzADIALQA0AGIAZgA0AC0AYQBiAGMAZgAtADkAOAA3AGIANwBmADgANwAzADEANgBjMGsGCSsGAQQBgjcRATFeHlwATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByACAAdgAxAC4AMDCCA38GCSqGSIb3DQEHBqCCA3AwggNsAgEAMIIDZQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIbQcNiyMGeL4CAgfQgIIDOPSSP6SqJGYsXCPWCMQU0TqdqT55fauuadduHaAlQpyN0MVYdu9QguLqMaJjxWa8Coy3K7LAOcqJ4S8FWV2SrpTuNHPv7vrtZfYhltGl+vW8rIrogeGTV4T/45oc5605HSiyItOWX8vHYKnAJkRMW4ICZXgY3dZVb+fr6yPIRFvMywqzwkViVOJIKjZN2lsAQ0xlLU0Fu/va9uxADwI2ZUKfo+6nX6bITkLvUSJoNCvZ5e7UITasxC4ZauHdMZch38N7BPH2usrAQfr3omYcScFzSeN2onhE1JBURCPDQa8+CGiWMm6mxboUOIcUGasaDqYQ8pSAgZZqQf8lU0uH4FP/z/5Dd7PniDHjvqlwYa+vB6flgtrwh6jYFeTKluhkucLrfzusFR52kHpg8K4GaUL8MhvlsNdd8iHSFjfyOdXRpY9re+B8X9Eorx0Z3xsSsVWaCwmI+Spq+BZ5CSXVm9Um6ogeM0et8JciZS2yFLIlbl2o4U1BWblskYfj/29jm4/2UKjKzORZnpjE0O+qP4hReSrx6os9dr8sNkq/7OafZock8zXjXaOpW6bqB1V5NWMPiWiPxPxfRi1F/MQp6CPY03H7MsDALEFcF7MmtY4YpN/+FFfrrOwS19Fg0OnQzNIgFpSRywX9dxyKICt/wbvhM+RLpUN50ZekFVska+C27hJRJEZ9rSdVhOVdL1UNknuwqF1cCQQriaNsnCbeVHN3/Wgsms9+Kt+glBNyZQlU8Fk+fafcQFI5MlxyMmARVwnC70F8AScnJPPFVZIdgIrvOXCDrEh8wFgkVM/MHkaTZUF51yy3pbIZaPmNd5dsUfEvMsW2IY6esnUUxPRQUUoi5Ib8EFHdiQJrYY3ELfZRXb2I1Xd0DVhlGzogn3CXZtXR2gSAakdB0qrLpXMSJNS65SS2tVTD7SI8OpUGNRjthQIAEEROPue10geFUwarWi/3jGMG529SzwDUJ4g0ix6VtcuLIDYFNdClDTyEyeV1f70NSG2QVXPIpeF7WQ8jWK7kenGaqqna4C4FYQpQk9vJP171nUXLR2mUR11bo1N4hcVhXnJls5yo9u14BB9CqVKXeDl7M5zwMDswHzAHBgUrDgMCGgQUT6Tjuka1G4O/ZCBxO7NBR34YUYQEFLaheEdRIIuxUd25/hl5vf2SFuZuAgIH0A==", + "password": "password" + } } -} \ No newline at end of file + }, + "responses": { + "200": {}, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/UpdateShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/UpdateShortTermRetentionPolicy.json index 263395ca6808..213d4384a01c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/UpdateShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/UpdateShortTermRetentionPolicy.json @@ -1,28 +1,28 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "resourceGroup", + "serverName": "testsvr", + "databaseName": "testdb", + "policyName": "default", + "api-version": "2017-10-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "resourceGroup", - "serverName": "testsvr", - "databaseName": "testdb", - "policyName" : "default", - "api-version": "2017-10-01-preview", - "parameters": { - "properties" : { - "retentionDays": 14 - } + "properties": { + "retentionDays": 14 + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testsvr/databases/testdb/backupLongTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testsvr/databases/testdb/backupLongTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", - "properties" : { - "retentionDays": 14 - } - } - }, - "202": {} - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/UpgradeDataWarehouse.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/UpgradeDataWarehouse.json index 499aafe92cc7..76aed8cca6eb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/UpgradeDataWarehouse.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/UpgradeDataWarehouse.json @@ -10,4 +10,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json index 188855b33c45..fcbb71db578a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json @@ -609,4 +609,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json index 2cdce03b6ccb..3ca948dad879 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json @@ -423,4 +423,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json index 63dac3d431eb..3ef467f1f28b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json @@ -538,4 +538,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json index f7891dbc7934..35978d9eb823 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json @@ -462,4 +462,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json index 73a2e0c1f616..b9c84541ffe9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json @@ -280,4 +280,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json index 92a4dccef42b..ee428b5c056f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json @@ -396,4 +396,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json index 1e17d06c2434..7a9f86196fd9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json @@ -565,7 +565,7 @@ "type": "string", "x-ms-parameter-location": "method" }, - "ServerNameParameter": { + "ServerNameParameter": { "name": "serverName", "in": "path", "description": "The name of the server.", diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json index f7ccb564bb5c..75396a60e8a7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json @@ -27,7 +27,7 @@ { "$ref": "#/parameters/ResourceGroupParameter" }, - { + { "$ref": "#/parameters/ManagedInstanceNameParameter" }, { @@ -619,4 +619,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json index 9b77dcfdced9..b52d83999096 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json @@ -308,7 +308,7 @@ } } }, - "ManagedInstanceVulnerabilityAssessment": { + "ManagedInstanceVulnerabilityAssessment": { "description": "A managed instance vulnerability assessment.", "type": "object", "allOf": [ @@ -440,4 +440,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json index b05480ee6b35..b611d4007a4a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json @@ -436,4 +436,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/CreateOrUpdateInstancePoolMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/CreateOrUpdateInstancePoolMin.json index f89c6c4a9c2b..a08720eb5cd7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/CreateOrUpdateInstancePoolMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/CreateOrUpdateInstancePoolMin.json @@ -6,10 +6,10 @@ "api-version": "2018-06-01-preview", "parameters": { "sku": { - "name": "GP_Gen5", - "tier": "GeneralPurpose", - "family": "Gen5" - }, + "name": "GP_Gen5", + "tier": "GeneralPurpose", + "family": "Gen5" + }, "properties": { "subnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Network/virtualNetwork/myvnet/subnets/mysubnet1", "vCores": 8, diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseColumnGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseColumnGet.json index 3d1998116a6a..5eed6d6188aa 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseColumnGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseColumnGet.json @@ -1,4 +1,4 @@ -{ +{ "parameters": { "subscriptionId": "00000000-1111-2222-3333-444444444444", "resourceGroupName": "myRG", diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseColumnListByTable.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseColumnListByTable.json index b6aeda63db3a..afcfa1f9b97c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseColumnListByTable.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseColumnListByTable.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMax.json index 56720e8b38d7..c736b806d367 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMax.json @@ -10,8 +10,14 @@ "properties": { "state": "Enabled", "emailAccountAdmins": "true", - "emailAddresses": [ "test@microsoft.com", "user@microsoft.com" ], - "disabledAlerts": [ "Sql_Injection", "Usage_Anomaly" ], + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Sql_Injection", + "Usage_Anomaly" + ], "retentionDays": 6, "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", "storageEndpoint": "https://mystorage.blob.core.windows.net" @@ -26,13 +32,19 @@ "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Sql_Injection","Usage_Anomaly"], - "retentionDays": 6, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Sql_Injection", + "Usage_Anomaly" + ], + "retentionDays": 6, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } } }, @@ -43,14 +55,20 @@ "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Disabled" + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Disabled" } } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMin.json index 8105ddfadfce..9df02f18e3fd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMin.json @@ -19,14 +19,14 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" } } }, diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertGet.json index 0fb4bbc6fb1f..b0708e14a15f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertGet.json @@ -9,22 +9,27 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "location": "Japan East", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Usage_Anomaly"], - "retentionDays": 0, - "storageAccountAccessKey": "", - "creationTime": "10/8/2018 12:00:00 AM" - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", + "location": "Japan East", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Usage_Anomaly" + ], + "retentionDays": 0, + "storageAccountAccessKey": "", + "creationTime": "10/8/2018 12:00:00 AM" } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertListByDatabase.json index 43269f16c807..38c7002c4d6b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertListByDatabase.json @@ -19,8 +19,13 @@ "properties": { "state": "Enabled", "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Usage_Anomaly"], + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Usage_Anomaly" + ], "retentionDays": 0, "storageAccountAccessKey": "", "creationTime": "10/8/2018 12:00:00 AM" diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DeleteInstancePool.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DeleteInstancePool.json index ac2aa9603066..c002cde6bfd0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DeleteInstancePool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DeleteInstancePool.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/GetInstancePool.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/GetInstancePool.json index 3f67d1f95f1f..bb96edb57f64 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/GetInstancePool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/GetInstancePool.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ListInstancePoolsByResourceGroup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ListInstancePoolsByResourceGroup.json index 1d0bc444bbd4..af06c06ff819 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ListInstancePoolsByResourceGroup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ListInstancePoolsByResourceGroup.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ListInstancePoolsBySubscriptionId.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ListInstancePoolsBySubscriptionId.json index f39f18416b1a..15a58f186434 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ListInstancePoolsBySubscriptionId.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ListInstancePoolsBySubscriptionId.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnGet.json index 85400b1cd4c1..352f84d70384 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnGet.json @@ -16,9 +16,9 @@ "name": "column1", "type": "Microsoft.Sql/managedInstances/databases/schemas/tables/columns", "properties": { - "columnType": "bit" + "columnType": "bit" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnListByTable.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnListByTable.json index 65a52a30e428..f5903c5fab25 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnListByTable.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnListByTable.json @@ -17,7 +17,7 @@ "name": "col1", "type": "Microsoft.Sql/managedInstances/databases/schemas/tables/columns", "properties": { - "columnType": "nvarchar" + "columnType": "nvarchar" } }, { @@ -25,11 +25,11 @@ "name": "col2", "type": "Microsoft.Sql/managedInstances/databases/schemas/tables/columns", "properties": { - "columnType": "bit" + "columnType": "bit" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelCreate.json index 09b08ac16172..1be414bfc806 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelCreate.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelDelete.json index a9e514f87326..0518716ffdef 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelDelete.json @@ -1,17 +1,16 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "myRG", - "managedInstanceName": "myManagedInstanceName", - "databaseName": "myDatabase", - "schemaName": "dbo", - "tableName": "myTable", - "columnName": "myColumn", - "sensitivityLabelSource": "current", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "myRG", + "managedInstanceName": "myManagedInstanceName", + "databaseName": "myDatabase", + "schemaName": "dbo", + "tableName": "myTable", + "columnName": "myColumn", + "sensitivityLabelSource": "current", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelGet.json index d0c83b702eb9..8e5fd223ce4d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseColumnSensitivityLabelGet.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseRecommendedColumnSensitivityLabelDisable.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseRecommendedColumnSensitivityLabelDisable.json index 7c5ee1962808..3a9e473f9b7a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseRecommendedColumnSensitivityLabelDisable.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseRecommendedColumnSensitivityLabelDisable.json @@ -1,16 +1,16 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "myRG", - "managedInstanceName": "myManagedInstanceName", - "databaseName": "myDatabase", - "schemaName": "dbo", - "tableName": "myTable", - "columnName": "myColumn", - "sensitivityLabelSource": "recommended", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "myRG", + "managedInstanceName": "myManagedInstanceName", + "databaseName": "myDatabase", + "schemaName": "dbo", + "tableName": "myTable", + "columnName": "myColumn", + "sensitivityLabelSource": "recommended", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseRecommendedColumnSensitivityLabelEnable.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseRecommendedColumnSensitivityLabelEnable.json index 7c5ee1962808..3a9e473f9b7a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseRecommendedColumnSensitivityLabelEnable.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseRecommendedColumnSensitivityLabelEnable.json @@ -1,16 +1,16 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "myRG", - "managedInstanceName": "myManagedInstanceName", - "databaseName": "myDatabase", - "schemaName": "dbo", - "tableName": "myTable", - "columnName": "myColumn", - "sensitivityLabelSource": "recommended", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": {} - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "myRG", + "managedInstanceName": "myManagedInstanceName", + "databaseName": "myDatabase", + "schemaName": "dbo", + "tableName": "myTable", + "columnName": "myColumn", + "sensitivityLabelSource": "recommended", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseSensitivityLabelsListByDatabaseCurrent.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseSensitivityLabelsListByDatabaseCurrent.json index 1b203ff437ab..7002891faa74 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseSensitivityLabelsListByDatabaseCurrent.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseSensitivityLabelsListByDatabaseCurrent.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseSensitivityLabelsListByDatabaseRecommended.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseSensitivityLabelsListByDatabaseRecommended.json index 09aca312887d..4cb8a6efe4b4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseSensitivityLabelsListByDatabaseRecommended.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedDatabaseSensitivityLabelsListByDatabaseRecommended.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateContainerSasKeyMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateContainerSasKeyMin.json index 734446acb9f4..ac4a539f2a03 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateContainerSasKeyMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateContainerSasKeyMin.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateMax.json index dfafc5136e83..0e66b49a8faf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateMax.json @@ -9,11 +9,14 @@ "properties": { "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", "storageContainerSasKey": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", - "storageAccountAccessKey": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "storageAccountAccessKey": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } @@ -29,7 +32,10 @@ "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } @@ -44,10 +50,13 @@ "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateStorageAccessKeyMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateStorageAccessKeyMin.json index 9f9bf693499c..d0e06927fe51 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateStorageAccessKeyMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateStorageAccessKeyMin.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentDelete.json index cea35165541e..2d8fe4f04e3b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentDelete.json @@ -1,13 +1,12 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "managedInstanceName": "vulnerabilityaseessmenttest-6440", - "vulnerabilityAssessmentName": "default", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "managedInstanceName": "vulnerabilityaseessmenttest-6440", + "vulnerabilityAssessmentName": "default", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentGet.json index f422631ceb9a..3ed8a7aa3bf8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentGet.json @@ -1,26 +1,29 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "managedInstanceName": "vulnerabilityaseessmenttest-6440", - "vulnerabilityAssessmentName": "default", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityaseessmenttest-6440/vulnerabilityAssessments/default", - "name": "default", - "type": "Microsoft.Sql/managedInstances/vulnerabilityAssessments", - "properties": { - "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", - "recurringScans": { - "isEnabled": true, - "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "managedInstanceName": "vulnerabilityaseessmenttest-6440", + "vulnerabilityAssessmentName": "default", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityaseessmenttest-6440/vulnerabilityAssessments/default", + "name": "default", + "type": "Microsoft.Sql/managedInstances/vulnerabilityAssessments", + "properties": { + "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "recurringScans": { + "isEnabled": true, + "emailSubscriptionAdmins": true, + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentListByInstance.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentListByInstance.json index 1a3462f5a36a..15a5365e9ea6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentListByInstance.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentListByInstance.json @@ -1,29 +1,32 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "managedInstanceName": "vulnerabilityaseessmenttest-6440", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityaseessmenttest-6440/vulnerabilityAssessments/default", - "name": "default", - "type": "Microsoft.Sql/managedInstances/vulnerabilityAssessments", - "properties": { - "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", - "recurringScans": { - "isEnabled": true, - "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "managedInstanceName": "vulnerabilityaseessmenttest-6440", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/managedInstances/vulnerabilityaseessmenttest-6440/vulnerabilityAssessments/default", + "name": "default", + "type": "Microsoft.Sql/managedInstances/vulnerabilityAssessments", + "properties": { + "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "recurringScans": { + "isEnabled": true, + "emailSubscriptionAdmins": true, + "emails": [ + "email1@mail.com", + "email2@mail.com" ] + } } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/PatchInstancePool.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/PatchInstancePool.json index ec3deec20cfe..829c960f6655 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/PatchInstancePool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/PatchInstancePool.json @@ -34,4 +34,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateContainerSasKeyMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateContainerSasKeyMin.json index ed21559eb50f..f34dbd72fd4b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateContainerSasKeyMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateContainerSasKeyMin.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateMax.json index 34b897fda7d3..3db174104427 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateMax.json @@ -9,11 +9,14 @@ "properties": { "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", "storageContainerSasKey": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", - "storageAccountAccessKey": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "storageAccountAccessKey": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } @@ -29,7 +32,10 @@ "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } @@ -44,10 +50,13 @@ "recurringScans": { "isEnabled": true, "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] } } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateStorageAccessKeyMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateStorageAccessKeyMin.json index f40528c3dc0f..3cf4125e617c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateStorageAccessKeyMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateStorageAccessKeyMin.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentDelete.json index 5029aea6d7a2..c09bd93253c9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentDelete.json @@ -1,13 +1,12 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "serverName": "vulnerabilityaseessmenttest-6440", - "vulnerabilityAssessmentName": "default", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "serverName": "vulnerabilityaseessmenttest-6440", + "vulnerabilityAssessmentName": "default", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentGet.json index bb89e411cdba..a1f68ce66327 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentGet.json @@ -1,26 +1,29 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "serverName": "vulnerabilityaseessmenttest-6440", - "vulnerabilityAssessmentName": "default", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityaseessmenttest-6440/vulnerabilityAssessments/default", - "name": "default", - "type": "Microsoft.Sql/servers/vulnerabilityAssessments", - "properties": { - "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", - "recurringScans": { - "isEnabled": true, - "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "serverName": "vulnerabilityaseessmenttest-6440", + "vulnerabilityAssessmentName": "default", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityaseessmenttest-6440/vulnerabilityAssessments/default", + "name": "default", + "type": "Microsoft.Sql/servers/vulnerabilityAssessments", + "properties": { + "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "recurringScans": { + "isEnabled": true, + "emailSubscriptionAdmins": true, + "emails": [ + "email1@mail.com", + "email2@mail.com" + ] + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentListByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentListByServer.json index 64ecaa819995..2ed5fff302a8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentListByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentListByServer.json @@ -1,30 +1,33 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "vulnerabilityaseessmenttest-4799", - "serverName": "vulnerabilityaseessmenttest-6440", - "databaseName": "testdb", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityaseessmenttest-6440/vulnerabilityAssessments/default", - "name": "default", - "type": "Microsoft.Sql/servers/vulnerabilityAssessments", - "properties": { - "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", - "recurringScans": { - "isEnabled": true, - "emailSubscriptionAdmins": true, - "emails": [ "email1@mail.com", "email2@mail.com" ] - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "vulnerabilityaseessmenttest-4799", + "serverName": "vulnerabilityaseessmenttest-6440", + "databaseName": "testdb", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/vulnerabilityaseessmenttest-4799/providers/Microsoft.Sql/servers/vulnerabilityaseessmenttest-6440/vulnerabilityAssessments/default", + "name": "default", + "type": "Microsoft.Sql/servers/vulnerabilityAssessments", + "properties": { + "storageContainerPath": "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "recurringScans": { + "isEnabled": true, + "emailSubscriptionAdmins": true, + "emails": [ + "email1@mail.com", + "email2@mail.com" ] + } } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json index 05a14f92609d..84ccd6223fa4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json @@ -494,4 +494,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json index 5b06a8876a12..91220fae3e78 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json @@ -674,4 +674,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/advisors.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/advisors.json index aabd5b99f36b..b31b6093bac3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/advisors.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/advisors.json @@ -460,4 +460,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backupLongTermRetentionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backupLongTermRetentionPolicies.json index eb32aab790d8..63699e0d02b9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backupLongTermRetentionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backupLongTermRetentionPolicies.json @@ -1,274 +1,279 @@ { - "swagger": "2.0", - "info": { - "title": "Azure SQL Database Backup Long Term Retention Policy", - "description": "Provides read and update functionality for Azure SQL Database backup long term retention policy", - "version": "2014-04-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/backupLongTermRetentionPolicies/{backupLongTermRetentionPolicyName}": { - "get": { - "tags": [ - "BackupLongTermRetentionPolicies" - ], - "operationId": "BackupLongTermRetentionPolicies_Get", - "description": "Returns a database backup long term retention policy", - "x-ms-examples": { - "Get backup long term retention policy": { - "$ref": "./examples/BackupLongTermRetentionPolicyGet.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the database." - }, - { - "name": "backupLongTermRetentionPolicyName", - "in": "path", - "description": "The name of the backup long term retention policy", - "required": true, - "type": "string", - "enum": [ - "Default" - ], - "x-ms-enum": { - "name": "BackupLongTermRetentionPolicyName", - "modelAsString": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/BackupLongTermRetentionPolicy" - } - } - } - }, - "put": { - "tags": [ - "BackupLongTermRetentionPolicies" - ], - "operationId": "BackupLongTermRetentionPolicies_CreateOrUpdate", - "description": "Creates or updates a database backup long term retention policy", - "x-ms-examples": { - "Update backup long term retention policy": { - "$ref": "./examples/BackupLongTermRetentionPolicyUpdate.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the database" - }, - { - "name": "backupLongTermRetentionPolicyName", - "in": "path", - "description": "The name of the backup long term retention policy", - "required": true, - "type": "string", - "enum": [ - "Default" - ], - "x-ms-enum": { - "name": "BackupLongTermRetentionPolicyName", - "modelAsString": true - } - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BackupLongTermRetentionPolicy" - }, - "description": "The required parameters to update a backup long term retention policy" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/BackupLongTermRetentionPolicy" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/BackupLongTermRetentionPolicy" - } - }, - "202": { - "description": "Accepted" - } - }, - "x-ms-long-running-operation": true - } + "swagger": "2.0", + "info": { + "title": "Azure SQL Database Backup Long Term Retention Policy", + "description": "Provides read and update functionality for Azure SQL Database backup long term retention policy", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/backupLongTermRetentionPolicies/{backupLongTermRetentionPolicyName}": { + "get": { + "tags": [ + "BackupLongTermRetentionPolicies" + ], + "operationId": "BackupLongTermRetentionPolicies_Get", + "description": "Returns a database backup long term retention policy", + "x-ms-examples": { + "Get backup long term retention policy": { + "$ref": "./examples/BackupLongTermRetentionPolicyGet.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/backupLongTermRetentionPolicies": { - "get": { - "tags": [ - "BackupLongTermRetentionPolicies" - ], - "operationId": "BackupLongTermRetentionPolicies_ListByDatabase", - "description": "Returns a database backup long term retention policy", - "x-ms-examples": { - "Get backup long term retention policy": { - "$ref": "./examples/BackupLongTermRetentionPolicyList.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the database." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/BackupLongTermRetentionPolicyListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database." + }, + { + "name": "backupLongTermRetentionPolicyName", + "in": "path", + "description": "The name of the backup long term retention policy", + "required": true, + "type": "string", + "enum": [ + "Default" + ], + "x-ms-enum": { + "name": "BackupLongTermRetentionPolicyName", + "modelAsString": true } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/BackupLongTermRetentionPolicy" + } + } } - }, - "definitions": { - "BackupLongTermRetentionPolicyProperties": { - "properties": { - "state": { - "type": "string", - "description": "The status of the backup long term retention policy", - "enum": [ - "Disabled", - "Enabled" - ], - "x-ms-enum": { - "name": "BackupLongTermRetentionPolicyState" - } - }, - "recoveryServicesBackupPolicyResourceId": { - "type": "string", - "description": "The azure recovery services backup protection policy resource id" - } - }, - "required": ["state", "recoveryServicesBackupPolicyResourceId"], - "description": "The properties of a backup long term retention policy" + }, + "put": { + "tags": [ + "BackupLongTermRetentionPolicies" + ], + "operationId": "BackupLongTermRetentionPolicies_CreateOrUpdate", + "description": "Creates or updates a database backup long term retention policy", + "x-ms-examples": { + "Update backup long term retention policy": { + "$ref": "./examples/BackupLongTermRetentionPolicyUpdate.json" + } }, - "BackupLongTermRetentionPolicy": { - "properties": { - "location": { - "type": "string", - "readOnly": true, - "description": "The geo-location where the resource lives" - }, - "properties": { - "$ref": "#/definitions/BackupLongTermRetentionPolicyProperties", - "description": "The properties of the backup long term retention policy", - "x-ms-client-flatten": true - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database" + }, + { + "name": "backupLongTermRetentionPolicyName", + "in": "path", + "description": "The name of the backup long term retention policy", + "required": true, + "type": "string", + "enum": [ + "Default" ], - "description": "A backup long term retention policy" - }, - "BackupLongTermRetentionPolicyListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/BackupLongTermRetentionPolicy" - }, - "description": "The list of long-term retention policies in the database." - } + "x-ms-enum": { + "name": "BackupLongTermRetentionPolicyName", + "modelAsString": true + } + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BackupLongTermRetentionPolicy" }, - "required": ["value"], - "description": "Represents the response to a list long-term retention policies request." - } + "description": "The required parameters to update a backup long term retention policy" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/BackupLongTermRetentionPolicy" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/BackupLongTermRetentionPolicy" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation": true + } }, - "parameters": { - "ServerNameParameter": { - "name": "serverName", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/backupLongTermRetentionPolicies": { + "get": { + "tags": [ + "BackupLongTermRetentionPolicies" + ], + "operationId": "BackupLongTermRetentionPolicies_ListByDatabase", + "description": "Returns a database backup long term retention policy", + "x-ms-examples": { + "Get backup long term retention policy": { + "$ref": "./examples/BackupLongTermRetentionPolicyList.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", "in": "path", "required": true, "type": "string", - "description": "The name of the server.", - "x-ms-parameter-location": "method" + "description": "The name of the database." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/BackupLongTermRetentionPolicyListResult" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null } + } + } + }, + "definitions": { + "BackupLongTermRetentionPolicyProperties": { + "properties": { + "state": { + "type": "string", + "description": "The status of the backup long term retention policy", + "enum": [ + "Disabled", + "Enabled" + ], + "x-ms-enum": { + "name": "BackupLongTermRetentionPolicyState" + } + }, + "recoveryServicesBackupPolicyResourceId": { + "type": "string", + "description": "The azure recovery services backup protection policy resource id" + } + }, + "required": [ + "state", + "recoveryServicesBackupPolicyResourceId" + ], + "description": "The properties of a backup long term retention policy" }, - "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" - } + "BackupLongTermRetentionPolicy": { + "properties": { + "location": { + "type": "string", + "readOnly": true, + "description": "The geo-location where the resource lives" + }, + "properties": { + "$ref": "#/definitions/BackupLongTermRetentionPolicyProperties", + "description": "The properties of the backup long term retention policy", + "x-ms-client-flatten": true } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" + } + ], + "description": "A backup long term retention policy" + }, + "BackupLongTermRetentionPolicyListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/BackupLongTermRetentionPolicy" + }, + "description": "The list of long-term retention policies in the database." + } + }, + "required": [ + "value" + ], + "description": "Represents the response to a list long-term retention policies request." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + } + }, + "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" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backupLongTermRetentionVaults.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backupLongTermRetentionVaults.json index 0734f5b879f6..f99b9020d32c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backupLongTermRetentionVaults.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backupLongTermRetentionVaults.json @@ -1,242 +1,246 @@ { - "swagger": "2.0", - "info": { - "title": "Azure SQL Server Backup Long Term Retention Vault", - "description": "Provides read and update functionality for Azure SQL Server backup long term retention vault", - "version": "2014-04-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/backupLongTermRetentionVaults/{backupLongTermRetentionVaultName}": { - "get": { - "tags": [ - "BackupLongTermRetentionVaults" - ], - "operationId": "BackupLongTermRetentionVaults_Get", - "description": "Gets a server backup long term retention vault", - "x-ms-examples": { - "Get backup long term retention vault": { - "$ref": "./examples/BackupLongTermRetentionVaultGet.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "backupLongTermRetentionVaultName", - "in": "path", - "description": "The name of the Azure SQL Server backup LongTermRetention vault", - "required": true, - "type": "string", - "enum": [ - "RegisteredVault" - ], - "x-ms-enum": { - "name": "BackupLongTermRetentionVaultName", - "modelAsString": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/BackupLongTermRetentionVault" - } - } - } - }, - "put": { - "tags": [ - "BackupLongTermRetentionVaults" - ], - "operationId": "BackupLongTermRetentionVaults_CreateOrUpdate", - "description": "Updates a server backup long term retention vault", - "x-ms-examples": { - "Update backup long term retention vault": { - "$ref": "./examples/BackupLongTermRetentionVaultUpdate.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "backupLongTermRetentionVaultName", - "in": "path", - "description": "The name of the backup long term retention vault", - "required": true, - "type": "string", - "enum": [ - "RegisteredVault" - ], - "x-ms-enum": { - "name": "BackupLongTermRetentionVaultName", - "modelAsString": true - } - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BackupLongTermRetentionVault" - }, - "description": "The required parameters to update a backup long term retention vault" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/BackupLongTermRetentionVault" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/BackupLongTermRetentionVault" - } - }, - "202": { - "description": "Accepted" - } - }, - "x-ms-long-running-operation": true - } + "swagger": "2.0", + "info": { + "title": "Azure SQL Server Backup Long Term Retention Vault", + "description": "Provides read and update functionality for Azure SQL Server backup long term retention vault", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/backupLongTermRetentionVaults/{backupLongTermRetentionVaultName}": { + "get": { + "tags": [ + "BackupLongTermRetentionVaults" + ], + "operationId": "BackupLongTermRetentionVaults_Get", + "description": "Gets a server backup long term retention vault", + "x-ms-examples": { + "Get backup long term retention vault": { + "$ref": "./examples/BackupLongTermRetentionVaultGet.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/backupLongTermRetentionVaults": { - "get": { - "tags": [ - "BackupLongTermRetentionVaults" - ], - "operationId": "BackupLongTermRetentionVaults_ListByServer", - "description": "Gets server backup long term retention vaults in a server", - "x-ms-examples": { - "Get backup long term retention vault": { - "$ref": "./examples/BackupLongTermRetentionVaultList.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/BackupLongTermRetentionVaultListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "backupLongTermRetentionVaultName", + "in": "path", + "description": "The name of the Azure SQL Server backup LongTermRetention vault", + "required": true, + "type": "string", + "enum": [ + "RegisteredVault" + ], + "x-ms-enum": { + "name": "BackupLongTermRetentionVaultName", + "modelAsString": true } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/BackupLongTermRetentionVault" + } + } } - }, - "definitions": { - "BackupLongTermRetentionVaultProperties": { - "properties": { - "recoveryServicesVaultResourceId": { - "type": "string", - "description": "The azure recovery services vault resource id" - } - }, - "required": ["recoveryServicesVaultResourceId"], - "description": "The properties of a backup long term retention vault." + }, + "put": { + "tags": [ + "BackupLongTermRetentionVaults" + ], + "operationId": "BackupLongTermRetentionVaults_CreateOrUpdate", + "description": "Updates a server backup long term retention vault", + "x-ms-examples": { + "Update backup long term retention vault": { + "$ref": "./examples/BackupLongTermRetentionVaultUpdate.json" + } }, - "BackupLongTermRetentionVault": { - "properties": { - "location": { - "type": "string", - "readOnly": true, - "description": "The geo-location where the resource lives" - }, - "properties": { - "$ref": "#/definitions/BackupLongTermRetentionVaultProperties", - "description": "The properties of the backup long term retention vault", - "x-ms-client-flatten": true - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "backupLongTermRetentionVaultName", + "in": "path", + "description": "The name of the backup long term retention vault", + "required": true, + "type": "string", + "enum": [ + "RegisteredVault" ], - "description": "A backup long term retention vault" - }, - "BackupLongTermRetentionVaultListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/BackupLongTermRetentionVault" - }, - "description": "The list of vaults in the server." - } + "x-ms-enum": { + "name": "BackupLongTermRetentionVaultName", + "modelAsString": true + } + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BackupLongTermRetentionVault" }, - "required": ["value"], - "description": "Represents the response to a list vaults request." + "description": "The required parameters to update a backup long term retention vault" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/BackupLongTermRetentionVault" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/BackupLongTermRetentionVault" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/backupLongTermRetentionVaults": { + "get": { + "tags": [ + "BackupLongTermRetentionVaults" + ], + "operationId": "BackupLongTermRetentionVaults_ListByServer", + "description": "Gets server backup long term retention vaults in a server", + "x-ms-examples": { + "Get backup long term retention vault": { + "$ref": "./examples/BackupLongTermRetentionVaultList.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/BackupLongTermRetentionVaultListResult" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + } + }, + "definitions": { + "BackupLongTermRetentionVaultProperties": { + "properties": { + "recoveryServicesVaultResourceId": { + "type": "string", + "description": "The azure recovery services vault resource id" } + }, + "required": [ + "recoveryServicesVaultResourceId" + ], + "description": "The properties of a backup long term retention vault." }, - "parameters": { - "ServerNameParameter": { - "name": "serverName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the server.", - "x-ms-parameter-location": "method" + "BackupLongTermRetentionVault": { + "properties": { + "location": { + "type": "string", + "readOnly": true, + "description": "The geo-location where the resource lives" + }, + "properties": { + "$ref": "#/definitions/BackupLongTermRetentionVaultProperties", + "description": "The properties of the backup long term retention vault", + "x-ms-client-flatten": true } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" + } + ], + "description": "A backup long term retention vault" }, - "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" - } + "BackupLongTermRetentionVaultListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/BackupLongTermRetentionVault" + }, + "description": "The list of vaults in the server." } + }, + "required": [ + "value" + ], + "description": "Represents the response to a list vaults request." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + } + }, + "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" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backups.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backups.json index 05cc6ba1c558..8fed8dbdf7b1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/backups.json @@ -1,350 +1,354 @@ { - "swagger": "2.0", - "info": { - "title": "Azure SQL Database Backup", - "description": "Provides read functionality for Azure SQL Database Backups", - "version": "2014-04-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recoverableDatabases/{databaseName}": { - "get": { - "tags": [ - "RecoverableDatabases" - ], - "operationId": "RecoverableDatabases_Get", - "description": "Gets a recoverable database, which is a resource representing a database's geo backup", - "x-ms-examples": { - "Get a recoverable database": { - "$ref": "./examples/RecoverableDatabaseGet.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the database" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RecoverableDatabase" - } - } - } + "swagger": "2.0", + "info": { + "title": "Azure SQL Database Backup", + "description": "Provides read functionality for Azure SQL Database Backups", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recoverableDatabases/{databaseName}": { + "get": { + "tags": [ + "RecoverableDatabases" + ], + "operationId": "RecoverableDatabases_Get", + "description": "Gets a recoverable database, which is a resource representing a database's geo backup", + "x-ms-examples": { + "Get a recoverable database": { + "$ref": "./examples/RecoverableDatabaseGet.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RecoverableDatabase" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recoverableDatabases": { + "get": { + "tags": [ + "RecoverableDatabases" + ], + "operationId": "RecoverableDatabases_ListByServer", + "description": "Gets a list of recoverable databases", + "x-ms-examples": { + "Get list of restorable dropped databases": { + "$ref": "./examples/RecoverableDatabaseList.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recoverableDatabases": { - "get": { - "tags": [ - "RecoverableDatabases" - ], - "operationId": "RecoverableDatabases_ListByServer", - "description": "Gets a list of recoverable databases", - "x-ms-examples": { - "Get list of restorable dropped databases": { - "$ref": "./examples/RecoverableDatabaseList.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RecoverableDatabaseListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RecoverableDatabaseListResult" } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/restorableDroppedDatabases/{restorableDroppededDatabaseId}": { + "get": { + "tags": [ + "RestorableDroppedDatabases" + ], + "operationId": "RestorableDroppedDatabases_Get", + "description": "Gets a deleted database that can be restored", + "x-ms-examples": { + "Get a restorable dropped database": { + "$ref": "./examples/RestorableDroppedDatabaseGet.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/restorableDroppedDatabases/{restorableDroppededDatabaseId}": { - "get": { - "tags": [ - "RestorableDroppedDatabases" - ], - "operationId": "RestorableDroppedDatabases_Get", - "description": "Gets a deleted database that can be restored", - "x-ms-examples": { - "Get a restorable dropped database": { - "$ref": "./examples/RestorableDroppedDatabaseGet.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "restorableDroppededDatabaseId", - "in": "path", - "required": true, - "type": "string", - "description": "The id of the deleted database in the form of databaseName,deletionTimeInFileTimeFormat" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RestorableDroppedDatabase" - } - } - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "restorableDroppededDatabaseId", + "in": "path", + "required": true, + "type": "string", + "description": "The id of the deleted database in the form of databaseName,deletionTimeInFileTimeFormat" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RestorableDroppedDatabase" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/restorableDroppedDatabases": { + "get": { + "tags": [ + "RestorableDroppedDatabases" + ], + "operationId": "RestorableDroppedDatabases_ListByServer", + "description": "Gets a list of deleted databases that can be restored", + "x-ms-examples": { + "Get list of restorable dropped databases": { + "$ref": "./examples/RestorableDroppedDatabaseList.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/restorableDroppedDatabases": { - "get": { - "tags": [ - "RestorableDroppedDatabases" - ], - "operationId": "RestorableDroppedDatabases_ListByServer", - "description": "Gets a list of deleted databases that can be restored", - "x-ms-examples": { - "Get list of restorable dropped databases": { - "$ref": "./examples/RestorableDroppedDatabaseList.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RestorableDroppedDatabaseListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RestorableDroppedDatabaseListResult" } + } + }, + "x-ms-pageable": { + "nextLinkName": null } + } + } + }, + "definitions": { + "RecoverableDatabaseProperties": { + "properties": { + "edition": { + "readOnly": true, + "type": "string", + "description": "The edition of the database" + }, + "serviceLevelObjective": { + "readOnly": true, + "type": "string", + "description": "The service level objective name of the database" + }, + "elasticPoolName": { + "readOnly": true, + "type": "string", + "description": "The elastic pool name of the database" + }, + "lastAvailableBackupDate": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The last available backup date of the database (ISO8601 format)" + } + }, + "description": "The properties of a recoverable database" + }, + "RecoverableDatabase": { + "properties": { + "properties": { + "$ref": "#/definitions/RecoverableDatabaseProperties", + "description": "The properties of a recoverable database", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" + } + ], + "description": "A recoverable database" }, - "definitions": { - "RecoverableDatabaseProperties": { - "properties": { - "edition": { - "readOnly": true, - "type": "string", - "description": "The edition of the database" - }, - "serviceLevelObjective": { - "readOnly": true, - "type": "string", - "description": "The service level objective name of the database" - }, - "elasticPoolName": { - "readOnly": true, - "type": "string", - "description": "The elastic pool name of the database" - }, - "lastAvailableBackupDate": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The last available backup date of the database (ISO8601 format)" - } - }, - "description": "The properties of a recoverable database" + "RecoverableDatabaseListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/RecoverableDatabase" + }, + "description": "A list of recoverable databases" + } + }, + "required": [ + "value" + ], + "description": "The response to a list recoverable databases request" + }, + "RestorableDroppedDatabaseProperties": { + "properties": { + "databaseName": { + "readOnly": true, + "type": "string", + "description": "The name of the database" + }, + "edition": { + "readOnly": true, + "type": "string", + "description": "The edition of the database" + }, + "maxSizeBytes": { + "readOnly": true, + "type": "string", + "description": "The max size in bytes of the database" }, - "RecoverableDatabase": { - "properties": { - "properties": { - "$ref": "#/definitions/RecoverableDatabaseProperties", - "description": "The properties of a recoverable database", - "x-ms-client-flatten": true - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" - } - ], - "description": "A recoverable database" + "serviceLevelObjective": { + "readOnly": true, + "type": "string", + "description": "The service level objective name of the database" }, - "RecoverableDatabaseListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/RecoverableDatabase" - }, - "description": "A list of recoverable databases" - } - }, - "required": [ "value" ], - "description": "The response to a list recoverable databases request" + "elasticPoolName": { + "readOnly": true, + "type": "string", + "description": "The elastic pool name of the database" }, - "RestorableDroppedDatabaseProperties": { - "properties": { - "databaseName": { - "readOnly": true, - "type": "string", - "description": "The name of the database" - }, - "edition": { - "readOnly": true, - "type": "string", - "description": "The edition of the database" - }, - "maxSizeBytes": { - "readOnly": true, - "type": "string", - "description": "The max size in bytes of the database" - }, - "serviceLevelObjective": { - "readOnly": true, - "type": "string", - "description": "The service level objective name of the database" - }, - "elasticPoolName": { - "readOnly": true, - "type": "string", - "description": "The elastic pool name of the database" - }, - "creationDate": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The creation date of the database (ISO8601 format)" - }, - "deletionDate": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The deletion date of the database (ISO8601 format)" - }, - "earliestRestoreDate": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The earliest restore date of the database (ISO8601 format)" - } - }, - "description": "The properties of a restorable dropped database" + "creationDate": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The creation date of the database (ISO8601 format)" }, - "RestorableDroppedDatabase": { - "properties": { - "location": { - "type": "string", - "readOnly": true, - "description": "The geo-location where the resource lives" - }, - "properties": { - "$ref": "#/definitions/RestorableDroppedDatabaseProperties", - "description": "The properties of a restorable dropped database", - "x-ms-client-flatten": true - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" - } - ], - "description": "A restorable dropped database" + "deletionDate": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The deletion date of the database (ISO8601 format)" }, - "RestorableDroppedDatabaseListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/RestorableDroppedDatabase" - }, - "description": "A list of restorable dropped databases" - } - }, - "required": [ "value" ], - "description": "The response to a list restorable dropped databases request" + "earliestRestoreDate": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The earliest restore date of the database (ISO8601 format)" } + }, + "description": "The properties of a restorable dropped database" }, - "parameters": { - "ServerNameParameter": { - "name": "serverName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the server.", - "x-ms-parameter-location": "method" + "RestorableDroppedDatabase": { + "properties": { + "location": { + "type": "string", + "readOnly": true, + "description": "The geo-location where the resource lives" }, - "DatabaseExpandParameter": { - "name": "$expand", - "in": "query", - "required": false, - "type": "string", - "description": "A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", - "x-ms-parameter-location": "method" + "properties": { + "$ref": "#/definitions/RestorableDroppedDatabaseProperties", + "description": "The properties of a restorable dropped database", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" } + ], + "description": "A restorable dropped database" }, - "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" - } + "RestorableDroppedDatabaseListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/RestorableDroppedDatabase" + }, + "description": "A list of restorable dropped databases" } + }, + "required": [ + "value" + ], + "description": "The response to a list restorable dropped databases request" + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + }, + "DatabaseExpandParameter": { + "name": "$expand", + "in": "query", + "required": false, + "type": "string", + "description": "A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", + "x-ms-parameter-location": "method" + } + }, + "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" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/capabilities.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/capabilities.json index e4df346db4b4..2d5bf9e1e224 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/capabilities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/capabilities.json @@ -1,382 +1,384 @@ { - "swagger": "2.0", - "info": { - "title": "Azure SQL Database capabilities", - "description": "Describes the Azure SQL capabilities available to a subscription for a given location.", - "version": "2014-04-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationId}/capabilities": { - "get": { - "tags": [ - "Capabilities" - ], - "operationId": "Capabilities_ListByLocation", - "description": "Gets the capabilities available for the specified location.", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "locationId", - "in": "path", - "required": true, - "type": "string", - "description": "The location id whose capabilities are retrieved." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/LocationCapabilities" - } - } - }, - "x-ms-examples": { - "Get location capabilities": { "$ref": "./examples/CapabilitiesList.json" } - } + "swagger": "2.0", + "info": { + "title": "Azure SQL Database capabilities", + "description": "Describes the Azure SQL capabilities available to a subscription for a given location.", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationId}/capabilities": { + "get": { + "tags": [ + "Capabilities" + ], + "operationId": "Capabilities_ListByLocation", + "description": "Gets the capabilities available for the specified location.", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "locationId", + "in": "path", + "required": true, + "type": "string", + "description": "The location id whose capabilities are retrieved." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/LocationCapabilities" } + } + }, + "x-ms-examples": { + "Get location capabilities": { + "$ref": "./examples/CapabilitiesList.json" + } } + } + } + }, + "definitions": { + "CapabilityStatus": { + "type": "string", + "description": "The availability status of the capability", + "enum": [ + "Visible", + "Available", + "Default", + "Disabled" + ], + "x-ms-enum": { + "name": "CapabilityStatus" + } }, - "definitions": { - "CapabilityStatus": { - "type": "string", - "description": "The availability status of the capability", - "enum": [ - "Visible", - "Available", - "Default", - "Disabled" - ], - "x-ms-enum": { - "name": "CapabilityStatus" - } + "MaxSizeCapability": { + "properties": { + "limit": { + "readOnly": true, + "type": "integer", + "format": "int64", + "description": "The maximum size of the database (see 'unit' for the units).", + "x-nullable": false }, - "MaxSizeCapability": { - "properties": { - "limit": { - "readOnly": true, - "type": "integer", - "format": "int64", - "description": "The maximum size of the database (see 'unit' for the units).", - "x-nullable": false - }, - "unit": { - "readOnly": true, - "type": "string", - "description": "The units that the limit is expressed in.", - "enum": [ - "Megabytes", - "Gigabytes", - "Terabytes", - "Petabytes" - ], - "x-ms-enum": { - "name": "MaxSizeUnits" - } - }, - "status": { - "readOnly": true, - "description": "The status of the maximum size capability.", - "$ref": "#/definitions/CapabilityStatus" - } - }, - "description": "The maximum size limits for a database." + "unit": { + "readOnly": true, + "type": "string", + "description": "The units that the limit is expressed in.", + "enum": [ + "Megabytes", + "Gigabytes", + "Terabytes", + "Petabytes" + ], + "x-ms-enum": { + "name": "MaxSizeUnits" + } }, - "ServiceObjectiveCapability": { - "properties": { - "name": { - "readOnly": true, - "type": "string", - "description": "The service objective name." - }, - "status": { - "readOnly": true, - "type": "string", - "description": "The status of the service objective.", - "$ref": "#/definitions/CapabilityStatus" - }, - "performanceLevel": { - "readOnly": true, - "$ref": "#/definitions/PerformanceLevel", - "description": "The performance level of the service objective capability.", - "x-ms-client-flatten": true - }, - "id": { - "readOnly": true, - "type": "string", - "format": "uuid", - "description": "The unique ID of the service objective.", - "x-nullable": false - }, - "supportedMaxSizes": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/MaxSizeCapability" - }, - "description": "The list of supported maximum database sizes for this service objective." - }, - "includedMaxSize": { - "readOnly": true, - "$ref": "#/definitions/MaxSizeCapability", - "description": "The included (free) max size for this service level objective." - } - }, - "description": "The service objectives capability." + "status": { + "readOnly": true, + "description": "The status of the maximum size capability.", + "$ref": "#/definitions/CapabilityStatus" + } + }, + "description": "The maximum size limits for a database." + }, + "ServiceObjectiveCapability": { + "properties": { + "name": { + "readOnly": true, + "type": "string", + "description": "The service objective name." }, - "PerformanceLevel": { - "description": "A possible performance level of a service objective capability.", - "properties": { - "unit": { - "type": "string", - "readOnly": true, - "description": "Unit type used to measure service objective performance level.", - "enum": [ - "DTU" - ], - "x-ms-enum": { - "name": "PerformanceLevelUnit" - } - }, - "value": { - "type": "integer", - "readOnly": true, - "description": "Performance level value." - } - } + "status": { + "readOnly": true, + "type": "string", + "description": "The status of the service objective.", + "$ref": "#/definitions/CapabilityStatus" }, - "EditionCapability": { - "properties": { - "name": { - "readOnly": true, - "type": "string", - "description": "The edition name." - }, - "status": { - "readOnly": true, - "type": "string", - "description": "The status of the edition.", - "$ref": "#/definitions/CapabilityStatus" - }, - "supportedServiceLevelObjectives": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/ServiceObjectiveCapability" - }, - "description": "The list of supported service objectives for the edition." - }, - "zoneRedundant": { - "description": "Whether or not zone redundancy is supported for the edition.", - "type": "boolean", - "readOnly": true - } - }, - "description": "The database edition capabilities." + "performanceLevel": { + "readOnly": true, + "$ref": "#/definitions/PerformanceLevel", + "description": "The performance level of the service objective capability.", + "x-ms-client-flatten": true }, - "ServerVersionCapability": { - "properties": { - "name": { - "readOnly": true, - "type": "string", - "description": "The server version name." - }, - "status": { - "readOnly": true, - "type": "string", - "description": "The status of the server version.", - "$ref": "#/definitions/CapabilityStatus" - }, - "supportedEditions": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/EditionCapability" - }, - "description": "The list of supported database editions." - }, - "supportedElasticPoolEditions": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/ElasticPoolEditionCapability" - }, - "description": "The list of supported elastic pool editions." - } - }, - "description": "The server capabilities." + "id": { + "readOnly": true, + "type": "string", + "format": "uuid", + "description": "The unique ID of the service objective.", + "x-nullable": false }, - "LocationCapabilities": { - "properties": { - "name": { - "readOnly": true, - "type": "string", - "description": "The location name." - }, - "status": { - "readOnly": true, - "type": "string", - "description": "Azure SQL Database's status for the location.", - "$ref": "#/definitions/CapabilityStatus" - }, - "supportedServerVersions": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/ServerVersionCapability" - }, - "description": "The list of supported server versions." - } - }, - "description": "The capabilities for a location." + "supportedMaxSizes": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/MaxSizeCapability" + }, + "description": "The list of supported maximum database sizes for this service objective." }, - "ElasticPoolEditionCapability": { - "properties": { - "name": { - "readOnly": true, - "type": "string", - "description": "The elastic pool edition name." - }, - "status": { - "readOnly": true, - "type": "string", - "description": "The status of the elastic pool edition.", - "$ref": "#/definitions/CapabilityStatus" - }, - "supportedElasticPoolDtus": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/ElasticPoolDtuCapability" - }, - "description": "The list of supported elastic pool DTU levels for the edition." - }, - "zoneRedundant": { - "description": "Whether or not zone redundancy is supported for the edition.", - "type": "boolean", - "readOnly": true - } - }, - "description": "The elastic pool edition capabilities." + "includedMaxSize": { + "readOnly": true, + "$ref": "#/definitions/MaxSizeCapability", + "description": "The included (free) max size for this service level objective." + } + }, + "description": "The service objectives capability." + }, + "PerformanceLevel": { + "description": "A possible performance level of a service objective capability.", + "properties": { + "unit": { + "type": "string", + "readOnly": true, + "description": "Unit type used to measure service objective performance level.", + "enum": [ + "DTU" + ], + "x-ms-enum": { + "name": "PerformanceLevelUnit" + } + }, + "value": { + "type": "integer", + "readOnly": true, + "description": "Performance level value." + } + } + }, + "EditionCapability": { + "properties": { + "name": { + "readOnly": true, + "type": "string", + "description": "The edition name." }, - "ElasticPoolDtuCapability": { - "properties": { - "limit": { - "readOnly": true, - "type": "integer", - "format": "int64", - "description": "The maximum size of the database (see 'unit' for the units)." - }, - "maxDatabaseCount": { - "readOnly": true, - "type": "integer", - "format": "int64", - "description": "The maximum number of databases supported." - }, - "status": { - "readOnly": true, - "type": "string", - "description": "The status of the capability.", - "$ref": "#/definitions/CapabilityStatus" - }, - "supportedMaxSizes": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/MaxSizeCapability" - }, - "description": "The list of supported max sizes." - }, - "includedMaxSize": { - "readOnly": true, - "$ref": "#/definitions/MaxSizeCapability", - "description": "The included (free) max size for this service level objective." - }, - "supportedPerDatabaseMaxSizes": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/MaxSizeCapability" - }, - "description": "The list of supported max database sizes." - }, - "supportedPerDatabaseMaxDtus": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/ElasticPoolPerDatabaseMaxDtuCapability" - }, - "description": "The list of supported max database DTUs." - } - }, - "description": "The Elastic Pool DTU capability." + "status": { + "readOnly": true, + "type": "string", + "description": "The status of the edition.", + "$ref": "#/definitions/CapabilityStatus" }, - "ElasticPoolPerDatabaseMaxDtuCapability": { - "properties": { - "limit": { - "readOnly": true, - "type": "integer", - "format": "int64", - "description": "The maximum DTUs per database." - }, - "status": { - "readOnly": true, - "description": "The status of the capability.", - "$ref": "#/definitions/CapabilityStatus" - }, - "supportedPerDatabaseMinDtus": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/ElasticPoolPerDatabaseMinDtuCapability" - }, - "description": "The list of supported min database DTUs." - } - }, - "description": "The max per-database DTU capability." + "supportedServiceLevelObjectives": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/ServiceObjectiveCapability" + }, + "description": "The list of supported service objectives for the edition." }, - "ElasticPoolPerDatabaseMinDtuCapability": { - "properties": { - "limit": { - "readOnly": true, - "type": "integer", - "format": "int64", - "description": "The maximum DTUs per database." - }, - "status": { - "readOnly": true, - "description": "The status of the capability.", - "$ref": "#/definitions/CapabilityStatus" - } - }, - "description": "The minimum per-database DTU capability." + "zoneRedundant": { + "description": "Whether or not zone redundancy is supported for the edition.", + "type": "boolean", + "readOnly": true } + }, + "description": "The database edition capabilities." }, - "parameters": { - "ServerNameParameter": { - "name": "serverName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the server.", - "x-ms-parameter-location": "method" + "ServerVersionCapability": { + "properties": { + "name": { + "readOnly": true, + "type": "string", + "description": "The server version name." + }, + "status": { + "readOnly": true, + "type": "string", + "description": "The status of the server version.", + "$ref": "#/definitions/CapabilityStatus" + }, + "supportedEditions": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/EditionCapability" + }, + "description": "The list of supported database editions." + }, + "supportedElasticPoolEditions": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/ElasticPoolEditionCapability" + }, + "description": "The list of supported elastic pool editions." } + }, + "description": "The server capabilities." }, + "LocationCapabilities": { + "properties": { + "name": { + "readOnly": true, + "type": "string", + "description": "The location name." + }, + "status": { + "readOnly": true, + "type": "string", + "description": "Azure SQL Database's status for the location.", + "$ref": "#/definitions/CapabilityStatus" + }, + "supportedServerVersions": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/ServerVersionCapability" + }, + "description": "The list of supported server versions." + } + }, + "description": "The capabilities for a location." + }, + "ElasticPoolEditionCapability": { + "properties": { + "name": { + "readOnly": true, + "type": "string", + "description": "The elastic pool edition name." + }, + "status": { + "readOnly": true, + "type": "string", + "description": "The status of the elastic pool edition.", + "$ref": "#/definitions/CapabilityStatus" + }, + "supportedElasticPoolDtus": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/ElasticPoolDtuCapability" + }, + "description": "The list of supported elastic pool DTU levels for the edition." + }, + "zoneRedundant": { + "description": "Whether or not zone redundancy is supported for the edition.", + "type": "boolean", + "readOnly": true + } + }, + "description": "The elastic pool edition capabilities." + }, + "ElasticPoolDtuCapability": { + "properties": { + "limit": { + "readOnly": true, + "type": "integer", + "format": "int64", + "description": "The maximum size of the database (see 'unit' for the units)." + }, + "maxDatabaseCount": { + "readOnly": true, + "type": "integer", + "format": "int64", + "description": "The maximum number of databases supported." + }, + "status": { + "readOnly": true, + "type": "string", + "description": "The status of the capability.", + "$ref": "#/definitions/CapabilityStatus" + }, + "supportedMaxSizes": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/MaxSizeCapability" + }, + "description": "The list of supported max sizes." + }, + "includedMaxSize": { + "readOnly": true, + "$ref": "#/definitions/MaxSizeCapability", + "description": "The included (free) max size for this service level objective." + }, + "supportedPerDatabaseMaxSizes": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/MaxSizeCapability" + }, + "description": "The list of supported max database sizes." + }, + "supportedPerDatabaseMaxDtus": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/ElasticPoolPerDatabaseMaxDtuCapability" + }, + "description": "The list of supported max database DTUs." + } + }, + "description": "The Elastic Pool DTU capability." + }, + "ElasticPoolPerDatabaseMaxDtuCapability": { + "properties": { + "limit": { + "readOnly": true, + "type": "integer", + "format": "int64", + "description": "The maximum DTUs per database." + }, + "status": { + "readOnly": true, + "description": "The status of the capability.", + "$ref": "#/definitions/CapabilityStatus" + }, + "supportedPerDatabaseMinDtus": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/ElasticPoolPerDatabaseMinDtuCapability" + }, + "description": "The list of supported min database DTUs." + } + }, + "description": "The max per-database DTU capability." + }, + "ElasticPoolPerDatabaseMinDtuCapability": { + "properties": { + "limit": { + "readOnly": true, + "type": "integer", + "format": "int64", + "description": "The maximum DTUs per database." + }, + "status": { + "readOnly": true, + "description": "The status of the capability.", + "$ref": "#/definitions/CapabilityStatus" + } + }, + "description": "The minimum per-database DTU capability." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + } + }, "securityDefinitions": { "azure_auth": { "type": "oauth2", @@ -389,4 +391,3 @@ } } } - diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/checkNameAvailability.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/checkNameAvailability.json index 1e14f15cfcb7..0aac1e9cfb62 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/checkNameAvailability.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/checkNameAvailability.json @@ -1,168 +1,168 @@ { - "swagger":"2.0", - "info":{ - "title":"Azure SQL Database", - "description":"Provides create, read, update and delete functionality for Azure SQL Database resources including servers, databases, elastic pools, recommendations, and operations.", - "version":"2014-04-01" - }, - "host":"management.azure.com", - "schemes":[ - "https" - ], - "consumes":[ - "application/json" - ], - "produces":[ - "application/json" - ], - "paths":{ - "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/checkNameAvailability":{ - "post":{ - "tags":[ - "Servers" - ], - "operationId":"Servers_CheckNameAvailability", - "description":"Determines whether a resource can be created with the specified name.", - "x-ms-examples":{ - "Check for a server name that is available":{ - "$ref":"./examples/CheckNameAvailabilityServerAvailable.json" - }, - "Check for a server name that already exists":{ - "$ref":"./examples/CheckNameAvailabilityServerAlreadyExists.json" - }, - "Check for a server name that is invalid":{ - "$ref":"./examples/CheckNameAvailabilityServerInvalid.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name":"parameters", - "in":"body", - "required":true, - "schema":{ - "$ref":"#/definitions/CheckNameAvailabilityRequest" - }, - "description":"The parameters to request for name availability." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/CheckNameAvailabilityResponse" - } - } - } + "swagger": "2.0", + "info": { + "title": "Azure SQL Database", + "description": "Provides create, read, update and delete functionality for Azure SQL Database resources including servers, databases, elastic pools, recommendations, and operations.", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/checkNameAvailability": { + "post": { + "tags": [ + "Servers" + ], + "operationId": "Servers_CheckNameAvailability", + "description": "Determines whether a resource can be created with the specified name.", + "x-ms-examples": { + "Check for a server name that is available": { + "$ref": "./examples/CheckNameAvailabilityServerAvailable.json" + }, + "Check for a server name that already exists": { + "$ref": "./examples/CheckNameAvailabilityServerAlreadyExists.json" + }, + "Check for a server name that is invalid": { + "$ref": "./examples/CheckNameAvailabilityServerInvalid.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityRequest" + }, + "description": "The parameters to request for name availability." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityResponse" } + } } - }, - "definitions":{ - "CheckNameAvailabilityRequest":{ - "properties":{ - "name":{ - "type":"string", - "description":"The name whose availability is to be checked." - }, - "type":{ - "type":"string", - "description":"The type of resource that is used as the scope of the availability check.", - "enum":[ - "Microsoft.Sql/servers" - ], - "x-ms-enum":{ - "name":"CheckNameAvailabilityResourceType", - "modelAsString":false - } - } - }, - "required":[ - "name", - "type" - ], - "description":"A request to check whether the specified name for a resource is available." + } + } + }, + "definitions": { + "CheckNameAvailabilityRequest": { + "properties": { + "name": { + "type": "string", + "description": "The name whose availability is to be checked." }, - "CheckNameAvailabilityResponse":{ - "properties":{ - "available":{ - "type":"boolean", - "description":"True if the name is available, otherwise false.", - "readOnly":true - }, - "message":{ - "type":"string", - "description":"A message explaining why the name is unavailable. Will be null if the name is available.", - "readOnly":true - }, - "name":{ - "type":"string", - "description":"The name whose availability was checked.", - "readOnly":true - }, - "reason":{ - "type":"string", - "description":"The reason code explaining why the name is unavailable. Will be null if the name is available.", - "enum":[ - "Invalid", - "AlreadyExists" - ], - "x-ms-enum":{ - "name":"CheckNameAvailabilityReason", - "modelAsString":false - }, - "readOnly":true - } - }, - "description":"A response indicating whether the specified name for a resource is available." + "type": { + "type": "string", + "description": "The type of resource that is used as the scope of the availability check.", + "enum": [ + "Microsoft.Sql/servers" + ], + "x-ms-enum": { + "name": "CheckNameAvailabilityResourceType", + "modelAsString": false + } } + }, + "required": [ + "name", + "type" + ], + "description": "A request to check whether the specified name for a resource is available." }, - "parameters":{ - "ServerNameParameter":{ - "name":"serverName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the server.", - "x-ms-parameter-location":"method" + "CheckNameAvailabilityResponse": { + "properties": { + "available": { + "type": "boolean", + "description": "True if the name is available, otherwise false.", + "readOnly": true }, - "DatabaseExpandParameter":{ - "name":"$expand", - "in":"query", - "required":false, - "type":"string", - "description":"A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", - "x-ms-parameter-location":"method" + "message": { + "type": "string", + "description": "A message explaining why the name is unavailable. Will be null if the name is available.", + "readOnly": true }, - "TransparentDataEncryptionNameParameter":{ - "name":"transparentDataEncryptionName", - "in":"path", - "required":true, - "type":"string", - "enum":[ - "current" - ], - "description":"The name of the transparent data encryption configuration.", - "x-ms-enum":{ - "modelAsString":true, - "name":"TransparentDataEncryptionName" - }, - "x-ms-parameter-location":"method" + "name": { + "type": "string", + "description": "The name whose availability was checked.", + "readOnly": true + }, + "reason": { + "type": "string", + "description": "The reason code explaining why the name is unavailable. Will be null if the name is available.", + "enum": [ + "Invalid", + "AlreadyExists" + ], + "x-ms-enum": { + "name": "CheckNameAvailabilityReason", + "modelAsString": false + }, + "readOnly": true } + }, + "description": "A response indicating whether the specified name for a resource is available." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" }, - "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" - } - } + "DatabaseExpandParameter": { + "name": "$expand", + "in": "query", + "required": false, + "type": "string", + "description": "A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", + "x-ms-parameter-location": "method" + }, + "TransparentDataEncryptionNameParameter": { + "name": "transparentDataEncryptionName", + "in": "path", + "required": true, + "type": "string", + "enum": [ + "current" + ], + "description": "The name of the transparent data encryption configuration.", + "x-ms-enum": { + "modelAsString": true, + "name": "TransparentDataEncryptionName" + }, + "x-ms-parameter-location": "method" + } + }, + "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" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/connectionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/connectionPolicies.json index 1b6f6199449f..c1edc8baf4dd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/connectionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/connectionPolicies.json @@ -24,7 +24,9 @@ "operationId": "ServerConnectionPolicies_CreateOrUpdate", "description": "Creates or updates the server's connection policy.", "x-ms-examples": { - "Create or update a server's secure connection policy": { "$ref": "./examples/ServerConnectionPolicyCreateOrUpdate.json" } + "Create or update a server's secure connection policy": { + "$ref": "./examples/ServerConnectionPolicyCreateOrUpdate.json" + } }, "parameters": [ { @@ -74,7 +76,9 @@ "operationId": "ServerConnectionPolicies_Get", "description": "Gets the server's secure connection policy.", "x-ms-examples": { - "Get a server's secure connection policy": { "$ref": "./examples/ServerConnectionPolicyGet.json" } + "Get a server's secure connection policy": { + "$ref": "./examples/ServerConnectionPolicyGet.json" + } }, "parameters": [ { @@ -120,7 +124,9 @@ } } }, - "required": [ "connectionType" ], + "required": [ + "connectionType" + ], "description": "The properties of a server secure connection policy." }, "ServerConnectionPolicy": { @@ -130,9 +136,9 @@ "type": "string", "description": "Metadata used for the Azure portal experience." }, - "location":{ - "type":"string", - "description":"Resource location.", + "location": { + "type": "string", + "description": "Resource location.", "readOnly": true }, "properties": { @@ -163,7 +169,9 @@ "in": "path", "required": true, "type": "string", - "enum": ["default"], + "enum": [ + "default" + ], "description": "The name of the connection policy.", "x-ms-enum": { "modelAsString": true, @@ -183,4 +191,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/dataMasking.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/dataMasking.json index 5a37b54f312a..ceea5b156dee 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/dataMasking.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/dataMasking.json @@ -1,438 +1,454 @@ { - "swagger": "2.0", - "info": { - "title": "Azure SQL Database Datamasking Policies and Rules", - "description": "Provides create, read, update and delete functionality for Azure SQL Database datamasking policies and rules.", - "version": "2014-04-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/dataMaskingPolicies/{dataMaskingPolicyName}": { - "put": { - "tags": [ - "DataMaskingPolicies" - ], - "operationId": "DataMaskingPolicies_CreateOrUpdate", - "description": "Creates or updates a database data masking policy", - "x-ms-examples": { - "Create or update data masking policy max": { "$ref": "./examples/DataMaskingPolicyCreateOrUpdateMax.json" }, - "Create or update data masking policy min": { "$ref": "./examples/DataMaskingPolicyCreateOrUpdateMin.json" } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/DatabaseNameParameter" - }, - { - "$ref": "#/parameters/DataMaskingPolicyNameParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/DataMaskingPolicy" - }, - "description": "Parameters for creating or updating a data masking policy." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DataMaskingPolicy" - } - } - } + "swagger": "2.0", + "info": { + "title": "Azure SQL Database Datamasking Policies and Rules", + "description": "Provides create, read, update and delete functionality for Azure SQL Database datamasking policies and rules.", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/dataMaskingPolicies/{dataMaskingPolicyName}": { + "put": { + "tags": [ + "DataMaskingPolicies" + ], + "operationId": "DataMaskingPolicies_CreateOrUpdate", + "description": "Creates or updates a database data masking policy", + "x-ms-examples": { + "Create or update data masking policy max": { + "$ref": "./examples/DataMaskingPolicyCreateOrUpdateMax.json" + }, + "Create or update data masking policy min": { + "$ref": "./examples/DataMaskingPolicyCreateOrUpdateMin.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "$ref": "#/parameters/DataMaskingPolicyNameParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/DataMaskingPolicy" }, - "get": { - "tags": [ - "DataMaskingPolicies" - ], - "operationId": "DataMaskingPolicies_Get", - "description": "Gets a database data masking policy.", - "x-ms-examples": { - "Get data masking policy": { "$ref": "./examples/DataMaskingPolicyGet.json" } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/DatabaseNameParameter" - }, - { - "$ref": "#/parameters/DataMaskingPolicyNameParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DataMaskingPolicy" - } - } - } + "description": "Parameters for creating or updating a data masking policy." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DataMaskingPolicy" } + } + } + }, + "get": { + "tags": [ + "DataMaskingPolicies" + ], + "operationId": "DataMaskingPolicies_Get", + "description": "Gets a database data masking policy.", + "x-ms-examples": { + "Get data masking policy": { + "$ref": "./examples/DataMaskingPolicyGet.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/dataMaskingPolicies/{dataMaskingPolicyName}/rules/{dataMaskingRuleName}": { - "put": { - "tags": [ - "DataMaskingRules" - ], - "operationId": "DataMaskingRules_CreateOrUpdate", - "description": "Creates or updates a database data masking rule.", - "x-ms-examples": { - "Create/Update data masking rule for text": { "$ref": "./examples/DataMaskingRuleCreateOrUpdateText.json" }, - "Create/Update data masking rule for numbers": { "$ref": "./examples/DataMaskingRuleCreateOrUpdateNumber.json" }, - "Create/Update data masking rule for default min": { "$ref": "./examples/DataMaskingRuleCreateOrUpdateDefaultMin.json" }, - "Create/Update data masking rule for default max": { "$ref": "./examples/DataMaskingRuleCreateOrUpdateDefaultMax.json" } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/DatabaseNameParameter" - }, - { - "$ref": "#/parameters/DataMaskingPolicyNameParameter" - }, - { - "name": "dataMaskingRuleName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the data masking rule." - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/DataMaskingRule" - }, - "description": "The required parameters for creating or updating a data masking rule." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DataMaskingRule" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/DataMaskingRule" - } - } - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "$ref": "#/parameters/DataMaskingPolicyNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DataMaskingPolicy" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/dataMaskingPolicies/{dataMaskingPolicyName}/rules/{dataMaskingRuleName}": { + "put": { + "tags": [ + "DataMaskingRules" + ], + "operationId": "DataMaskingRules_CreateOrUpdate", + "description": "Creates or updates a database data masking rule.", + "x-ms-examples": { + "Create/Update data masking rule for text": { + "$ref": "./examples/DataMaskingRuleCreateOrUpdateText.json" + }, + "Create/Update data masking rule for numbers": { + "$ref": "./examples/DataMaskingRuleCreateOrUpdateNumber.json" + }, + "Create/Update data masking rule for default min": { + "$ref": "./examples/DataMaskingRuleCreateOrUpdateDefaultMin.json" + }, + "Create/Update data masking rule for default max": { + "$ref": "./examples/DataMaskingRuleCreateOrUpdateDefaultMax.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/dataMaskingPolicies/{dataMaskingPolicyName}/rules": { - "get": { - "tags": [ - "DataMaskingRules" - ], - "operationId": "DataMaskingRules_ListByDatabase", - "description": "Gets a list of database data masking rules.", - "x-ms-examples": { - "List data masking rules": { "$ref": "./examples/DataMaskingRuleList.json" } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/DatabaseNameParameter" - }, - { - "$ref": "#/parameters/DataMaskingPolicyNameParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DataMaskingRuleListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "$ref": "#/parameters/DataMaskingPolicyNameParameter" + }, + { + "name": "dataMaskingRuleName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the data masking rule." + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/DataMaskingRule" + }, + "description": "The required parameters for creating or updating a data masking rule." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DataMaskingRule" } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/DataMaskingRule" + } + } } + } }, - "definitions": { - "DataMaskingPolicyProperties": { - "properties": { - "dataMaskingState": { - "type": "string", - "description": "The state of the data masking policy.", - "enum": [ - "Disabled", - "Enabled" - ], - "x-ms-enum": { - "modelAsString": false, - "name": "DataMaskingState" - } - }, - "exemptPrincipals": { - "type": "string", - "description": "The list of the exempt principals. Specifies the semicolon-separated list of database users for which the data masking policy does not apply. The specified users receive data results without masking for all of the database queries." - }, - "applicationPrincipals": { - "type": "string", - "description": "The list of the application principals. This is a legacy parameter and is no longer used.", - "readOnly": true - }, - "maskingLevel": { - "type": "string", - "description": "The masking level. This is a legacy parameter and is no longer used.", - "readOnly": true - } - }, - "required": [ - "dataMaskingState" - ], - "description": "The properties of a database data masking policy." + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/dataMaskingPolicies/{dataMaskingPolicyName}/rules": { + "get": { + "tags": [ + "DataMaskingRules" + ], + "operationId": "DataMaskingRules_ListByDatabase", + "description": "Gets a list of database data masking rules.", + "x-ms-examples": { + "List data masking rules": { + "$ref": "./examples/DataMaskingRuleList.json" + } }, - "DataMaskingPolicy": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/DataMaskingPolicyProperties", - "description": "The properties of the data masking policy." - }, - "location": { - "type": "string", - "readOnly": true, - "description": "The location of the data masking policy." - }, - "kind": { - "type": "string", - "readOnly": true, - "description": "The kind of data masking policy. Metadata, used for Azure portal." - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" - } - ], - "description": "Represents a database data masking policy." + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "$ref": "#/parameters/DataMaskingPolicyNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DataMaskingRuleListResult" + } + } }, - "DataMaskingRuleProperties": { - "properties": { - "id": { - "type": "string", - "description": "The rule Id.", - "readOnly": true - }, - "aliasName": { - "type": "string", - "description": "The alias name. This is a legacy parameter and is no longer used." - }, - "ruleState": { - "type": "string", - "description": "The rule state. Used to delete a rule. To delete an existing rule, specify the schemaName, tableName, columnName, maskingFunction, and specify ruleState as disabled. However, if the rule doesn't already exist, the rule will be created with ruleState set to enabled, regardless of the provided value of ruleState.", - "enum": [ - "Disabled", - "Enabled" - ], - "x-ms-enum": { - "modelAsString": false, - "name": "DataMaskingRuleState" - } - }, - "schemaName": { - "type": "string", - "description": "The schema name on which the data masking rule is applied." - }, - "tableName": { - "type": "string", - "description": "The table name on which the data masking rule is applied." - }, - "columnName": { - "type": "string", - "description": "The column name on which the data masking rule is applied." - }, - "maskingFunction": { - "type": "string", - "description": "The masking function that is used for the data masking rule.", - "enum": [ - "Default", - "CCN", - "Email", - "Number", - "SSN", - "Text" - ], - "x-ms-enum": { - "modelAsString": false, - "name": "DataMaskingFunction" - } - }, - "numberFrom": { - "type": "string", - "description": "The numberFrom property of the masking rule. Required if maskingFunction is set to Number, otherwise this parameter will be ignored." - }, - "numberTo": { - "type": "string", - "description": "The numberTo property of the data masking rule. Required if maskingFunction is set to Number, otherwise this parameter will be ignored." - }, - "prefixSize": { - "type": "string", - "description": "If maskingFunction is set to Text, the number of characters to show unmasked in the beginning of the string. Otherwise, this parameter will be ignored." - }, - "suffixSize": { - "type": "string", - "description": "If maskingFunction is set to Text, the number of characters to show unmasked at the end of the string. Otherwise, this parameter will be ignored." - }, - "replacementString": { - "type": "string", - "description": "If maskingFunction is set to Text, the character to use for masking the unexposed part of the string. Otherwise, this parameter will be ignored." - } - }, - "required": [ - "maskingFunction", - "schemaName", - "tableName", - "columnName" - ], - "description": "The properties of a database data masking rule." + "x-ms-pageable": { + "nextLinkName": null + } + } + } + }, + "definitions": { + "DataMaskingPolicyProperties": { + "properties": { + "dataMaskingState": { + "type": "string", + "description": "The state of the data masking policy.", + "enum": [ + "Disabled", + "Enabled" + ], + "x-ms-enum": { + "modelAsString": false, + "name": "DataMaskingState" + } }, - "DataMaskingRule": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/DataMaskingRuleProperties", - "description": "The properties of the resource." - }, - "location": { - "type": "string", - "readOnly": true, - "description": "The location of the data masking rule." - }, - "kind": { - "type": "string", - "readOnly": true, - "description": "The kind of Data Masking Rule. Metadata, used for Azure portal." - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" - } - ], - "description": "Represents a database data masking rule." + "exemptPrincipals": { + "type": "string", + "description": "The list of the exempt principals. Specifies the semicolon-separated list of database users for which the data masking policy does not apply. The specified users receive data results without masking for all of the database queries." }, - "DataMaskingRuleListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/DataMaskingRule" - }, - "description": "The list of database data masking rules." - } - }, - "description": "The response to a list data masking rules request." + "applicationPrincipals": { + "type": "string", + "description": "The list of the application principals. This is a legacy parameter and is no longer used.", + "readOnly": true + }, + "maskingLevel": { + "type": "string", + "description": "The masking level. This is a legacy parameter and is no longer used.", + "readOnly": true } + }, + "required": [ + "dataMaskingState" + ], + "description": "The properties of a database data masking policy." }, - "parameters": { - "ServerNameParameter": { - "name": "serverName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the server.", - "x-ms-parameter-location": "method" + "DataMaskingPolicy": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/DataMaskingPolicyProperties", + "description": "The properties of the data masking policy." }, - "DatabaseNameParameter": { - "name": "databaseName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the database.", - "x-ms-parameter-location": "method" + "location": { + "type": "string", + "readOnly": true, + "description": "The location of the data masking policy." }, - "DataMaskingPolicyNameParameter": { - "name": "dataMaskingPolicyName", - "in": "path", - "required": true, - "type": "string", - "enum": [ - "Default" - ], - "x-ms-enum": { - "modelAsString": false, - "name": "DataMaskingPolicyName" - }, - "description": "The name of the database for which the data masking rule applies.", - "x-ms-parameter-location": "method" + "kind": { + "type": "string", + "readOnly": true, + "description": "The kind of data masking policy. Metadata, used for Azure portal." + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" } + ], + "description": "Represents a database data masking policy." }, - "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" - } + "DataMaskingRuleProperties": { + "properties": { + "id": { + "type": "string", + "description": "The rule Id.", + "readOnly": true + }, + "aliasName": { + "type": "string", + "description": "The alias name. This is a legacy parameter and is no longer used." + }, + "ruleState": { + "type": "string", + "description": "The rule state. Used to delete a rule. To delete an existing rule, specify the schemaName, tableName, columnName, maskingFunction, and specify ruleState as disabled. However, if the rule doesn't already exist, the rule will be created with ruleState set to enabled, regardless of the provided value of ruleState.", + "enum": [ + "Disabled", + "Enabled" + ], + "x-ms-enum": { + "modelAsString": false, + "name": "DataMaskingRuleState" + } + }, + "schemaName": { + "type": "string", + "description": "The schema name on which the data masking rule is applied." + }, + "tableName": { + "type": "string", + "description": "The table name on which the data masking rule is applied." + }, + "columnName": { + "type": "string", + "description": "The column name on which the data masking rule is applied." + }, + "maskingFunction": { + "type": "string", + "description": "The masking function that is used for the data masking rule.", + "enum": [ + "Default", + "CCN", + "Email", + "Number", + "SSN", + "Text" + ], + "x-ms-enum": { + "modelAsString": false, + "name": "DataMaskingFunction" + } + }, + "numberFrom": { + "type": "string", + "description": "The numberFrom property of the masking rule. Required if maskingFunction is set to Number, otherwise this parameter will be ignored." + }, + "numberTo": { + "type": "string", + "description": "The numberTo property of the data masking rule. Required if maskingFunction is set to Number, otherwise this parameter will be ignored." + }, + "prefixSize": { + "type": "string", + "description": "If maskingFunction is set to Text, the number of characters to show unmasked in the beginning of the string. Otherwise, this parameter will be ignored." + }, + "suffixSize": { + "type": "string", + "description": "If maskingFunction is set to Text, the number of characters to show unmasked at the end of the string. Otherwise, this parameter will be ignored." + }, + "replacementString": { + "type": "string", + "description": "If maskingFunction is set to Text, the character to use for masking the unexposed part of the string. Otherwise, this parameter will be ignored." + } + }, + "required": [ + "maskingFunction", + "schemaName", + "tableName", + "columnName" + ], + "description": "The properties of a database data masking rule." + }, + "DataMaskingRule": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/DataMaskingRuleProperties", + "description": "The properties of the resource." + }, + "location": { + "type": "string", + "readOnly": true, + "description": "The location of the data masking rule." + }, + "kind": { + "type": "string", + "readOnly": true, + "description": "The kind of Data Masking Rule. Metadata, used for Azure portal." + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" } + ], + "description": "Represents a database data masking rule." + }, + "DataMaskingRuleListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/DataMaskingRule" + }, + "description": "The list of database data masking rules." + } + }, + "description": "The response to a list data masking rules request." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + }, + "DatabaseNameParameter": { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database.", + "x-ms-parameter-location": "method" + }, + "DataMaskingPolicyNameParameter": { + "name": "dataMaskingPolicyName", + "in": "path", + "required": true, + "type": "string", + "enum": [ + "Default" + ], + "x-ms-enum": { + "modelAsString": false, + "name": "DataMaskingPolicyName" + }, + "description": "The name of the database for which the data masking rule applies.", + "x-ms-parameter-location": "method" + } + }, + "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" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/databaseSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/databaseSecurityAlertPolicies.json index ecc158ac354c..781ee851799d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/databaseSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/databaseSecurityAlertPolicies.json @@ -24,7 +24,9 @@ "description": "Gets a database's threat detection policy.", "operationId": "DatabaseThreatDetectionPolicies_Get", "x-ms-examples": { - "Get database security alert policy": { "$ref": "./examples/DatabaseSecurityAlertGet.json" } + "Get database security alert policy": { + "$ref": "./examples/DatabaseSecurityAlertGet.json" + } }, "parameters": [ { @@ -48,7 +50,9 @@ "in": "path", "required": true, "type": "string", - "enum": ["default"], + "enum": [ + "default" + ], "description": "The name of the security alert policy.", "x-ms-enum": { "modelAsString": true, @@ -78,8 +82,12 @@ "description": "Creates or updates a database's threat detection policy.", "operationId": "DatabaseThreatDetectionPolicies_CreateOrUpdate", "x-ms-examples": { - "Create database security alert policy min": { "$ref": "./examples/DatabaseSecurityAlertCreateMin.json" }, - "Create database security alert policy max": { "$ref": "./examples/DatabaseSecurityAlertCreateMax.json" } + "Create database security alert policy min": { + "$ref": "./examples/DatabaseSecurityAlertCreateMin.json" + }, + "Create database security alert policy max": { + "$ref": "./examples/DatabaseSecurityAlertCreateMax.json" + } }, "parameters": [ { @@ -103,7 +111,9 @@ "in": "path", "required": true, "type": "string", - "enum": ["default"], + "enum": [ + "default" + ], "description": "The name of the security alert policy.", "x-ms-enum": { "modelAsString": true, @@ -148,13 +158,13 @@ "description": "Contains information about a database Threat Detection policy.", "type": "object", "properties": { - "location":{ - "type":"string", - "x-ms-mutability":[ + "location": { + "type": "string", + "x-ms-mutability": [ "read", "create" ], - "description":"The geo-location where the resource lives" + "description": "The geo-location where the resource lives" }, "kind": { "readOnly": true, @@ -216,7 +226,8 @@ "description": "Specifies the identifier key of the Threat Detection audit storage account. If state is Enabled, storageAccountAccessKey is required.", "type": "string", "x-ms-mutability": [ - "create", "update" + "create", + "update" ] }, "retentionDays": { @@ -236,7 +247,9 @@ } } }, - "required": [ "state" ] + "required": [ + "state" + ] } }, "parameters": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/databases.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/databases.json index 87bf517c82db..c5749361373a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/databases.json @@ -1,1042 +1,1042 @@ { - "swagger":"2.0", - "info":{ - "title":"Azure SQL Database", - "description":"Provides create, read, update and delete functionality for Azure SQL Databases.", - "version":"2014-04-01" + "swagger": "2.0", + "info": { + "title": "Azure SQL Database", + "description": "Provides create, read, update and delete functionality for Azure SQL Databases.", + "version": "2014-04-01" }, - "host":"management.azure.com", - "schemes":[ - "https" + "host": "management.azure.com", + "schemes": [ + "https" ], - "consumes":[ - "application/json" + "consumes": [ + "application/json" ], - "produces":[ - "application/json" + "produces": [ + "application/json" ], - "paths":{ - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/pause":{ - "post":{ - "tags":[ - "DatabaseActivation" - ], - "operationId":"Databases_Pause", - "description":"Pauses a data warehouse.", - "x-ms-examples":{ - "Pause a data warehouse":{ - "$ref":"./examples/DatabasePause.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"databaseName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the data warehouse to pause." - } - ], - "responses":{ - "200":{ - "description":"OK" - }, - "202":{ - "description":"Accepted" - } - }, - "x-ms-long-running-operation":true + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/pause": { + "post": { + "tags": [ + "DatabaseActivation" + ], + "operationId": "Databases_Pause", + "description": "Pauses a data warehouse.", + "x-ms-examples": { + "Pause a data warehouse": { + "$ref": "./examples/DatabasePause.json" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/resume":{ - "post":{ - "tags":[ - "DatabaseActivation" - ], - "operationId":"Databases_Resume", - "description":"Resumes a data warehouse.", - "x-ms-examples":{ - "Resume a data warehouse":{ - "$ref":"./examples/DatabaseResume.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"databaseName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the data warehouse to resume." - } - ], - "responses":{ - "202":{ - "description":"Accepted" - }, - "200":{ - "description":"OK" - } - }, - "x-ms-long-running-operation":true + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the data warehouse to pause." } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}":{ - "put":{ - "tags":[ - "Databases" - ], - "operationId":"Databases_CreateOrUpdate", - "description":"Creates a new database or updates an existing database.", - "x-ms-examples":{ - "Create a database min":{ - "$ref":"./examples/DatabaseCreateOrUpdateMin.json" - }, - "Create a database max":{ - "$ref":"./examples/DatabaseCreateMax.json" - }, - "Create a database as a copy":{ - "$ref":"./examples/DatabaseCreateCopy.json" - }, - "Create a database as an online secondary":{ - "$ref":"./examples/DatabaseCreateOnlineSecondary.json" - }, - "Create a database as a non-readable secondary":{ - "$ref":"./examples/DatabaseCreateNonReadableSecondary.json" - }, - "Create a database as a point in time restore":{ - "$ref":"./examples/DatabaseCreatePointInTimeRestore.json" - }, - "Create a database as a dropped database restore to deletion time":{ - "$ref":"./examples/DatabaseCreateDroppedDatabaseRestore.json" - }, - "Create a database as a dropped database restore to a specific point in time":{ - "$ref":"./examples/DatabaseCreateDroppedDatabaseRestoreToPointInTime.json" - }, - "Create a database as a geo restore":{ - "$ref":"./examples/DatabaseCreateGeoRestore.json" - }, - "Create a database from a long term retention backup":{ - "$ref":"./examples/DatabaseCreateLongTermRetentionRestore.json" - }, - "Update a database's elastic pool'":{ - "$ref":"./examples/DatabaseUpdateElasticPool.json" - }, - "Update a database max":{ - "$ref":"./examples/DatabaseUpdateMaxPut.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"databaseName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the database to be operated on (updated or created)." - }, - { - "name":"parameters", - "in":"body", - "required":true, - "schema":{ - "$ref":"#/definitions/Database" - }, - "description":"The required parameters for creating or updating a database." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/Database" - } - }, - "201":{ - "description":"Created", - "schema":{ - "$ref":"#/definitions/Database" - } - }, - "202":{ - "description":"Accepted" - } - }, - "x-ms-long-running-operation":true - }, - "patch":{ - "tags":[ - "Databases" - ], - "operationId":"Databases_Update", - "description":"Updates an existing database.", - "x-ms-examples":{ - "Update a database max":{ - "$ref":"./examples/DatabaseUpdateMaxPatch.json" - }, - "Update a database min":{ - "$ref":"./examples/DatabaseUpdateMin.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"databaseName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the database to be updated." - }, - { - "name":"parameters", - "in":"body", - "required":true, - "schema":{ - "$ref":"#/definitions/DatabaseUpdate" - }, - "description":"The required parameters for updating a database." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/Database" - } - }, - "202":{ - "description":"Accepted" - } - }, - "x-ms-long-running-operation":true - }, - "delete":{ - "tags":[ - "Databases" - ], - "operationId":"Databases_Delete", - "description":"Deletes a database.", - "x-ms-examples":{ - "Delete a database":{ - "$ref":"./examples/DatabaseDelete.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"databaseName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the database to be deleted." - } - ], - "responses":{ - "200":{ - "description":"OK" - }, - "204":{ - "description":"NoContent" - } - } - }, - "get":{ - "tags":[ - "Databases" - ], - "operationId":"Databases_Get", - "description":"Gets a database.", - "x-ms-examples":{ - "Get a database":{ - "$ref":"./examples/DatabaseGet.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"databaseName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the database to be retrieved." - }, - { - "$ref":"#/parameters/DatabaseExpandParameter" - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/Database" - } - } - } + ], + "responses": { + "200": { + "description": "OK" + }, + "202": { + "description": "Accepted" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases":{ - "get":{ - "tags":[ - "Databases" - ], - "operationId":"Databases_ListByServer", - "description":"Returns a list of databases in a server.", - "x-ms-examples":{ - "List databases by server":{ - "$ref":"./examples/DatabaseList.json" - }, - "List databases by server with filter":{ - "$ref":"./examples/DatabaseListWithFilter.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "$ref":"#/parameters/DatabaseExpandParameter" - }, - { - "name":"$filter", - "in":"query", - "required":false, - "type":"string", - "description":"An OData filter expression that describes a subset of databases to return." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/DatabaseListResult" - } - } - }, - "x-ms-pageable":{ - "nextLinkName":null - } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/resume": { + "post": { + "tags": [ + "DatabaseActivation" + ], + "operationId": "Databases_Resume", + "description": "Resumes a data warehouse.", + "x-ms-examples": { + "Resume a data warehouse": { + "$ref": "./examples/DatabaseResume.json" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/databases/{databaseName}":{ - "get":{ - "tags":[ - "ElasticPools" - ], - "operationId":"Databases_GetByElasticPool", - "description":"Gets a database inside of an elastic pool.", - "x-ms-examples":{ - "Get a database in an elastic pool":{ - "$ref":"./examples/DatabaseGetByElasticPool.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"elasticPoolName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the elastic pool to be retrieved." - }, - { - "name":"databaseName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the database to be retrieved." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/Database" - } - } - } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the data warehouse to resume." + } + ], + "responses": { + "202": { + "description": "Accepted" + }, + "200": { + "description": "OK" } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}": { + "put": { + "tags": [ + "Databases" + ], + "operationId": "Databases_CreateOrUpdate", + "description": "Creates a new database or updates an existing database.", + "x-ms-examples": { + "Create a database min": { + "$ref": "./examples/DatabaseCreateOrUpdateMin.json" + }, + "Create a database max": { + "$ref": "./examples/DatabaseCreateMax.json" + }, + "Create a database as a copy": { + "$ref": "./examples/DatabaseCreateCopy.json" + }, + "Create a database as an online secondary": { + "$ref": "./examples/DatabaseCreateOnlineSecondary.json" + }, + "Create a database as a non-readable secondary": { + "$ref": "./examples/DatabaseCreateNonReadableSecondary.json" + }, + "Create a database as a point in time restore": { + "$ref": "./examples/DatabaseCreatePointInTimeRestore.json" + }, + "Create a database as a dropped database restore to deletion time": { + "$ref": "./examples/DatabaseCreateDroppedDatabaseRestore.json" + }, + "Create a database as a dropped database restore to a specific point in time": { + "$ref": "./examples/DatabaseCreateDroppedDatabaseRestoreToPointInTime.json" + }, + "Create a database as a geo restore": { + "$ref": "./examples/DatabaseCreateGeoRestore.json" + }, + "Create a database from a long term retention backup": { + "$ref": "./examples/DatabaseCreateLongTermRetentionRestore.json" + }, + "Update a database's elastic pool'": { + "$ref": "./examples/DatabaseUpdateElasticPool.json" + }, + "Update a database max": { + "$ref": "./examples/DatabaseUpdateMaxPut.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database to be operated on (updated or created)." + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/Database" + }, + "description": "The required parameters for creating or updating a database." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Database" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/Database" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation": true }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/databases":{ - "get":{ - "tags":[ - "Databases" - ], - "operationId":"Databases_ListByElasticPool", - "description":"Returns a list of databases in an elastic pool.", - "x-ms-examples":{ - "Gets databases in an elastic pool":{ - "$ref":"./examples/DatabaseListByElasticPool.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"elasticPoolName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the elastic pool to be retrieved." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/DatabaseListResult" - } - } - }, - "x-ms-pageable":{ - "nextLinkName":null - } + "patch": { + "tags": [ + "Databases" + ], + "operationId": "Databases_Update", + "description": "Updates an existing database.", + "x-ms-examples": { + "Update a database max": { + "$ref": "./examples/DatabaseUpdateMaxPatch.json" + }, + "Update a database min": { + "$ref": "./examples/DatabaseUpdateMin.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database to be updated." + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/DatabaseUpdate" + }, + "description": "The required parameters for updating a database." } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Database" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation": true }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/databases/{databaseName}":{ - "get":{ - "tags":[ - "Databases" - ], - "operationId":"Databases_GetByRecommendedElasticPool", - "description":"Gets a database inside of a recommended elastic pool.", - "x-ms-examples":{ - "Get a database in a recommended elastic pool":{ - "$ref":"./examples/DatabaseGetByRecommendedElasticPool.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"recommendedElasticPoolName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the elastic pool to be retrieved." - }, - { - "name":"databaseName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the database to be retrieved." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/Database" - } - } - } + "delete": { + "tags": [ + "Databases" + ], + "operationId": "Databases_Delete", + "description": "Deletes a database.", + "x-ms-examples": { + "Delete a database": { + "$ref": "./examples/DatabaseDelete.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database to be deleted." + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "NoContent" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/databases":{ - "get":{ - "tags":[ - "Databases" - ], - "operationId":"Databases_ListByRecommendedElasticPool", - "description":"Returns a list of databases inside a recommended elastic pool.", - "x-ms-examples":{ - "Gets databases in an elastic pool":{ - "$ref":"./examples/DatabaseListByRecommendedElasticPool.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"recommendedElasticPoolName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the recommended elastic pool to be retrieved." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/DatabaseListResult" - } - } - }, - "x-ms-pageable":{ - "nextLinkName":null - } + "get": { + "tags": [ + "Databases" + ], + "operationId": "Databases_Get", + "description": "Gets a database.", + "x-ms-examples": { + "Get a database": { + "$ref": "./examples/DatabaseGet.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database to be retrieved." + }, + { + "$ref": "#/parameters/DatabaseExpandParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Database" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases": { + "get": { + "tags": [ + "Databases" + ], + "operationId": "Databases_ListByServer", + "description": "Returns a list of databases in a server.", + "x-ms-examples": { + "List databases by server": { + "$ref": "./examples/DatabaseList.json" + }, + "List databases by server with filter": { + "$ref": "./examples/DatabaseListWithFilter.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseExpandParameter" + }, + { + "name": "$filter", + "in": "query", + "required": false, + "type": "string", + "description": "An OData filter expression that describes a subset of databases to return." } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DatabaseListResult" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/databases/{databaseName}": { + "get": { + "tags": [ + "ElasticPools" + ], + "operationId": "Databases_GetByElasticPool", + "description": "Gets a database inside of an elastic pool.", + "x-ms-examples": { + "Get a database in an elastic pool": { + "$ref": "./examples/DatabaseGetByElasticPool.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "elasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the elastic pool to be retrieved." + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database to be retrieved." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Database" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/databases": { + "get": { + "tags": [ + "Databases" + ], + "operationId": "Databases_ListByElasticPool", + "description": "Returns a list of databases in an elastic pool.", + "x-ms-examples": { + "Gets databases in an elastic pool": { + "$ref": "./examples/DatabaseListByElasticPool.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "elasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the elastic pool to be retrieved." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DatabaseListResult" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/databases/{databaseName}": { + "get": { + "tags": [ + "Databases" + ], + "operationId": "Databases_GetByRecommendedElasticPool", + "description": "Gets a database inside of a recommended elastic pool.", + "x-ms-examples": { + "Get a database in a recommended elastic pool": { + "$ref": "./examples/DatabaseGetByRecommendedElasticPool.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "recommendedElasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the elastic pool to be retrieved." + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database to be retrieved." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Database" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/databases": { + "get": { + "tags": [ + "Databases" + ], + "operationId": "Databases_ListByRecommendedElasticPool", + "description": "Returns a list of databases inside a recommended elastic pool.", + "x-ms-examples": { + "Gets databases in an elastic pool": { + "$ref": "./examples/DatabaseListByRecommendedElasticPool.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "recommendedElasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the recommended elastic pool to be retrieved." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DatabaseListResult" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + } }, - "definitions":{ - "DatabaseProperties":{ - "properties":{ - "collation":{ - "type":"string", - "description":"The collation of the database. If createMode is not Default, this value is ignored.", - "x-ms-mutability":[ - "create", - "read" - ] - }, - "creationDate":{ - "readOnly":true, - "type":"string", - "format":"date-time", - "description":"The creation date of the database (ISO8601 format)." - }, - "containmentState":{ - "readOnly":true, - "type":"integer", - "format":"int64", - "description":"The containment state of the database." - }, - "currentServiceObjectiveId":{ - "readOnly":true, - "type":"string", - "format":"uuid", - "description":"The current service level objective ID of the database. This is the ID of the service level objective that is currently active." - }, - "databaseId":{ - "readOnly":true, - "type":"string", - "format":"uuid", - "description":"The ID of the database." - }, - "earliestRestoreDate":{ - "readOnly":true, - "type":"string", - "format":"date-time", - "description":"This records the earliest start date and time that restore is available for this database (ISO8601 format)." - }, - "createMode":{ - "type":"string", - "description":"Specifies the mode of database creation.\n\nDefault: regular database creation.\n\nCopy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database.\n\nOnlineSecondary/NonReadableSecondary: creates a database as a (readable or nonreadable) secondary replica of an existing database. sourceDatabaseId must be specified as the resource ID of the existing primary database.\n\nPointInTimeRestore: Creates a database by restoring a point in time backup of an existing database. sourceDatabaseId must be specified as the resource ID of the existing database, and restorePointInTime must be specified.\n\nRecovery: Creates a database by restoring a geo-replicated backup. sourceDatabaseId must be specified as the recoverable database resource ID to restore.\n\nRestore: Creates a database by restoring a backup of a deleted database. sourceDatabaseId must be specified. If sourceDatabaseId is the database's original resource ID, then sourceDatabaseDeletionDate must be specified. Otherwise sourceDatabaseId must be the restorable dropped database resource ID and sourceDatabaseDeletionDate is ignored. restorePointInTime may also be specified to restore from an earlier point in time.\n\nRestoreLongTermRetentionBackup: Creates a database by restoring from a long term retention vault. recoveryServicesRecoveryPointResourceId must be specified as the recovery point resource ID.\n\nCopy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup are not supported for DataWarehouse edition.", - "enum":[ - "Copy", - "Default", - "NonReadableSecondary", - "OnlineSecondary", - "PointInTimeRestore", - "Recovery", - "Restore", - "RestoreLongTermRetentionBackup" - ], - "x-ms-enum":{ - "name":"CreateMode", - "modelAsString":true - }, - "x-ms-mutability":[ - "create" - ] - }, - "sourceDatabaseId":{ - "type":"string", - "description":"Conditional. If createMode is Copy, NonReadableSecondary, OnlineSecondary, PointInTimeRestore, Recovery, or Restore, then this value is required. Specifies the resource ID of the source database. If createMode is NonReadableSecondary or OnlineSecondary, the name of the source database must be the same as the new database being created.", - "x-ms-mutability":[ - "create" - ] - }, - "sourceDatabaseDeletionDate":{ - "type":"string", - "format":"date-time", - "description":"Conditional. If createMode is Restore and sourceDatabaseId is the deleted database's original resource id when it existed (as opposed to its current restorable dropped database id), then this value is required. Specifies the time that the database was deleted.", - "x-ms-mutability":[ - "create" - ] - }, - "restorePointInTime":{ - "type":"string", - "format":"date-time", - "description":"Conditional. If createMode is PointInTimeRestore, this value is required. If createMode is Restore, this value is optional. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. Must be greater than or equal to the source database's earliestRestoreDate value.", - "x-ms-mutability":[ - "create" - ] - }, - "recoveryServicesRecoveryPointResourceId":{ - "type":"string", - "description":"Conditional. If createMode is RestoreLongTermRetentionBackup, then this value is required. Specifies the resource ID of the recovery point to restore from.", - "x-ms-mutability":[ - "create" - ] - }, - "edition":{ - "type":"string", - "description":"The edition of the database. The DatabaseEditions enumeration contains all the valid editions. If createMode is NonReadableSecondary or OnlineSecondary, this value is ignored.\r\n\r\nThe list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the `Capabilities_ListByLocation` REST API or one of the following commands:\r\n\r\n```azurecli\r\naz sql db list-editions -l -o table\r\n````\r\n\r\n```powershell\r\nGet-AzSqlServerServiceObjective -Location \r\n````\r\n", - "enum":[ - "Web", - "Business", - "Basic", - "Standard", - "Premium", - "PremiumRS", - "Free", - "Stretch", - "DataWarehouse", - "System", - "System2", - "GeneralPurpose", - "BusinessCritical", - "Hyperscale" - ], - "x-ms-enum":{ - "name":"DatabaseEdition", - "modelAsString":true - } - }, - "maxSizeBytes":{ - "type":"string", - "description":"The max size of the database expressed in bytes. If createMode is not Default, this value is ignored. To see possible values, query the capabilities API (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) referred to by operationId: \"Capabilities_ListByLocation.\"" - }, - "requestedServiceObjectiveId":{ - "type":"string", - "format":"uuid", - "description":"The configured service level objective ID of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of currentServiceObjectiveId property. If requestedServiceObjectiveId and requestedServiceObjectiveName are both updated, the value of requestedServiceObjectiveId overrides the value of requestedServiceObjectiveName.\r\n\r\nThe list of SKUs may vary by region and support offer. To determine the service objective ids that are available to your subscription in an Azure region, use the `Capabilities_ListByLocation` REST API." - }, - "requestedServiceObjectiveName":{ - "type":"string", - "enum":[ - "System", - "System0", - "System1", - "System2", - "System3", - "System4", - "System2L", - "System3L", - "System4L", - "Free", - "Basic", - "S0", - "S1", - "S2", - "S3", - "S4", - "S6", - "S7", - "S9", - "S12", - "P1", - "P2", - "P3", - "P4", - "P6", - "P11", - "P15", - "PRS1", - "PRS2", - "PRS4", - "PRS6", - "DW100", - "DW200", - "DW300", - "DW400", - "DW500", - "DW600", - "DW1000", - "DW1200", - "DW1000c", - "DW1500", - "DW1500c", - "DW2000", - "DW2000c", - "DW3000", - "DW2500c", - "DW3000c", - "DW6000", - "DW5000c", - "DW6000c", - "DW7500c", - "DW10000c", - "DW15000c", - "DW30000c", - "DS100", - "DS200", - "DS300", - "DS400", - "DS500", - "DS600", - "DS1000", - "DS1200", - "DS1500", - "DS2000", - "ElasticPool" - ], - "x-ms-enum":{ - "modelAsString":true, - "name":"ServiceObjectiveName" - }, - "description":"The name of the configured service level objective of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of serviceLevelObjective property. \r\n\r\nThe list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the `Capabilities_ListByLocation` REST API or one of the following commands:\r\n\r\n```azurecli\r\naz sql db list-editions -l -o table\r\n````\r\n\r\n```powershell\r\nGet-AzSqlServerServiceObjective -Location \r\n````\r\n" - }, - "serviceLevelObjective":{ - "readOnly":true, - "type":"string", - "enum":[ - "System", - "System0", - "System1", - "System2", - "System3", - "System4", - "System2L", - "System3L", - "System4L", - "Free", - "Basic", - "S0", - "S1", - "S2", - "S3", - "S4", - "S6", - "S7", - "S9", - "S12", - "P1", - "P2", - "P3", - "P4", - "P6", - "P11", - "P15", - "PRS1", - "PRS2", - "PRS4", - "PRS6", - "DW100", - "DW200", - "DW300", - "DW400", - "DW500", - "DW600", - "DW1000", - "DW1200", - "DW1000c", - "DW1500", - "DW1500c", - "DW2000", - "DW2000c", - "DW3000", - "DW2500c", - "DW3000c", - "DW6000", - "DW5000c", - "DW6000c", - "DW7500c", - "DW10000c", - "DW15000c", - "DW30000c", - "DS100", - "DS200", - "DS300", - "DS400", - "DS500", - "DS600", - "DS1000", - "DS1200", - "DS1500", - "DS2000", - "ElasticPool" - ], - "x-ms-enum":{ - "modelAsString":true, - "name":"ServiceObjectiveName" - }, - "description":"The current service level objective of the database." - }, - "status":{ - "readOnly":true, - "type":"string", - "description":"The status of the database." - }, - "elasticPoolName":{ - "type":"string", - "description":"The name of the elastic pool the database is in. If elasticPoolName and requestedServiceObjectiveName are both updated, the value of requestedServiceObjectiveName is ignored. Not supported for DataWarehouse edition." - }, - "defaultSecondaryLocation":{ - "readOnly":true, - "type":"string", - "description":"The default secondary region for this database." - }, - "serviceTierAdvisors":{ - "readOnly":true, - "type":"array", - "items":{ - "$ref":"./sql.core.json#/definitions/ServiceTierAdvisor" - }, - "description":"The list of service tier advisors for this database. Expanded property" - }, - "transparentDataEncryption":{ - "readOnly":true, - "type":"array", - "items":{ - "$ref":"./sql.core.json#/definitions/TransparentDataEncryption" - }, - "description":"The transparent data encryption info for this database." - }, - "recommendedIndex":{ - "readOnly":true, - "type":"array", - "items":{ - "$ref":"./sql.core.json#/definitions/RecommendedIndex" - }, - "description":"The recommended indices for this database." - }, - "failoverGroupId":{ - "readOnly":true, - "type":"string", - "description":"The resource identifier of the failover group containing this database." - }, - "readScale":{ - "type":"string", - "enum":[ - "Enabled", - "Disabled" - ], - "description":"Conditional. If the database is a geo-secondary, readScale indicates whether read-only connections are allowed to this database or not. Not supported for DataWarehouse edition.", - "x-ms-enum":{ - "name":"ReadScale" - } - }, - "sampleName":{ - "type":"string", - "enum":[ - "AdventureWorksLT" - ], - "description":"Indicates the name of the sample schema to apply when creating this database. If createMode is not Default, this value is ignored. Not supported for DataWarehouse edition.", - "x-ms-enum":{ - "modelAsString":true, - "name":"SampleName" - }, - "x-ms-mutability":[ - "create" - ] - }, - "zoneRedundant":{ - "description":"Whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones.", - "type":"boolean" - } - }, - "description":"Represents the properties of a database." - }, - "Database":{ - "properties":{ - "kind":{ - "readOnly":true, - "type":"string", - "description":"Kind of database. This is metadata used for the Azure portal experience." - }, - "properties":{ - "$ref":"#/definitions/DatabaseProperties", - "description":"The properties representing the resource.", - "x-ms-client-flatten":true - } - }, - "allOf":[ - { - "$ref":"../../../common/v1/types.json#/definitions/TrackedResource" - } + "definitions": { + "DatabaseProperties": { + "properties": { + "collation": { + "type": "string", + "description": "The collation of the database. If createMode is not Default, this value is ignored.", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "creationDate": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The creation date of the database (ISO8601 format)." + }, + "containmentState": { + "readOnly": true, + "type": "integer", + "format": "int64", + "description": "The containment state of the database." + }, + "currentServiceObjectiveId": { + "readOnly": true, + "type": "string", + "format": "uuid", + "description": "The current service level objective ID of the database. This is the ID of the service level objective that is currently active." + }, + "databaseId": { + "readOnly": true, + "type": "string", + "format": "uuid", + "description": "The ID of the database." + }, + "earliestRestoreDate": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "This records the earliest start date and time that restore is available for this database (ISO8601 format)." + }, + "createMode": { + "type": "string", + "description": "Specifies the mode of database creation.\n\nDefault: regular database creation.\n\nCopy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database.\n\nOnlineSecondary/NonReadableSecondary: creates a database as a (readable or nonreadable) secondary replica of an existing database. sourceDatabaseId must be specified as the resource ID of the existing primary database.\n\nPointInTimeRestore: Creates a database by restoring a point in time backup of an existing database. sourceDatabaseId must be specified as the resource ID of the existing database, and restorePointInTime must be specified.\n\nRecovery: Creates a database by restoring a geo-replicated backup. sourceDatabaseId must be specified as the recoverable database resource ID to restore.\n\nRestore: Creates a database by restoring a backup of a deleted database. sourceDatabaseId must be specified. If sourceDatabaseId is the database's original resource ID, then sourceDatabaseDeletionDate must be specified. Otherwise sourceDatabaseId must be the restorable dropped database resource ID and sourceDatabaseDeletionDate is ignored. restorePointInTime may also be specified to restore from an earlier point in time.\n\nRestoreLongTermRetentionBackup: Creates a database by restoring from a long term retention vault. recoveryServicesRecoveryPointResourceId must be specified as the recovery point resource ID.\n\nCopy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup are not supported for DataWarehouse edition.", + "enum": [ + "Copy", + "Default", + "NonReadableSecondary", + "OnlineSecondary", + "PointInTimeRestore", + "Recovery", + "Restore", + "RestoreLongTermRetentionBackup" ], - "description":"Represents a database." - }, - "DatabaseUpdate":{ - "properties":{ - "tags":{ - "type":"object", - "additionalProperties":{ - "type":"string" - }, - "description":"Resource tags." - }, - "properties":{ - "$ref":"#/definitions/DatabaseProperties", - "description":"The properties representing the resource.", - "x-ms-client-flatten":true - } - }, - "allOf":[ - { - "$ref":"../../../common/v1/types.json#/definitions/Resource" - } + "x-ms-enum": { + "name": "CreateMode", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] + }, + "sourceDatabaseId": { + "type": "string", + "description": "Conditional. If createMode is Copy, NonReadableSecondary, OnlineSecondary, PointInTimeRestore, Recovery, or Restore, then this value is required. Specifies the resource ID of the source database. If createMode is NonReadableSecondary or OnlineSecondary, the name of the source database must be the same as the new database being created.", + "x-ms-mutability": [ + "create" + ] + }, + "sourceDatabaseDeletionDate": { + "type": "string", + "format": "date-time", + "description": "Conditional. If createMode is Restore and sourceDatabaseId is the deleted database's original resource id when it existed (as opposed to its current restorable dropped database id), then this value is required. Specifies the time that the database was deleted.", + "x-ms-mutability": [ + "create" + ] + }, + "restorePointInTime": { + "type": "string", + "format": "date-time", + "description": "Conditional. If createMode is PointInTimeRestore, this value is required. If createMode is Restore, this value is optional. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. Must be greater than or equal to the source database's earliestRestoreDate value.", + "x-ms-mutability": [ + "create" + ] + }, + "recoveryServicesRecoveryPointResourceId": { + "type": "string", + "description": "Conditional. If createMode is RestoreLongTermRetentionBackup, then this value is required. Specifies the resource ID of the recovery point to restore from.", + "x-ms-mutability": [ + "create" + ] + }, + "edition": { + "type": "string", + "description": "The edition of the database. The DatabaseEditions enumeration contains all the valid editions. If createMode is NonReadableSecondary or OnlineSecondary, this value is ignored.\r\n\r\nThe list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the `Capabilities_ListByLocation` REST API or one of the following commands:\r\n\r\n```azurecli\r\naz sql db list-editions -l -o table\r\n````\r\n\r\n```powershell\r\nGet-AzSqlServerServiceObjective -Location \r\n````\r\n", + "enum": [ + "Web", + "Business", + "Basic", + "Standard", + "Premium", + "PremiumRS", + "Free", + "Stretch", + "DataWarehouse", + "System", + "System2", + "GeneralPurpose", + "BusinessCritical", + "Hyperscale" ], - "description":"Represents a database update." - }, - "DatabaseListResult":{ - "properties":{ - "value":{ - "type":"array", - "items":{ - "$ref":"#/definitions/Database" - }, - "description":"The list of databases housed in the server." - } - }, - "required":[ - "value" + "x-ms-enum": { + "name": "DatabaseEdition", + "modelAsString": true + } + }, + "maxSizeBytes": { + "type": "string", + "description": "The max size of the database expressed in bytes. If createMode is not Default, this value is ignored. To see possible values, query the capabilities API (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) referred to by operationId: \"Capabilities_ListByLocation.\"" + }, + "requestedServiceObjectiveId": { + "type": "string", + "format": "uuid", + "description": "The configured service level objective ID of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of currentServiceObjectiveId property. If requestedServiceObjectiveId and requestedServiceObjectiveName are both updated, the value of requestedServiceObjectiveId overrides the value of requestedServiceObjectiveName.\r\n\r\nThe list of SKUs may vary by region and support offer. To determine the service objective ids that are available to your subscription in an Azure region, use the `Capabilities_ListByLocation` REST API." + }, + "requestedServiceObjectiveName": { + "type": "string", + "enum": [ + "System", + "System0", + "System1", + "System2", + "System3", + "System4", + "System2L", + "System3L", + "System4L", + "Free", + "Basic", + "S0", + "S1", + "S2", + "S3", + "S4", + "S6", + "S7", + "S9", + "S12", + "P1", + "P2", + "P3", + "P4", + "P6", + "P11", + "P15", + "PRS1", + "PRS2", + "PRS4", + "PRS6", + "DW100", + "DW200", + "DW300", + "DW400", + "DW500", + "DW600", + "DW1000", + "DW1200", + "DW1000c", + "DW1500", + "DW1500c", + "DW2000", + "DW2000c", + "DW3000", + "DW2500c", + "DW3000c", + "DW6000", + "DW5000c", + "DW6000c", + "DW7500c", + "DW10000c", + "DW15000c", + "DW30000c", + "DS100", + "DS200", + "DS300", + "DS400", + "DS500", + "DS600", + "DS1000", + "DS1200", + "DS1500", + "DS2000", + "ElasticPool" ], - "description":"Represents the response to a list database request." - } - }, - "parameters":{ - "ServerNameParameter":{ - "name":"serverName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the server.", - "x-ms-parameter-location":"method" + "x-ms-enum": { + "modelAsString": true, + "name": "ServiceObjectiveName" + }, + "description": "The name of the configured service level objective of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of serviceLevelObjective property. \r\n\r\nThe list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the `Capabilities_ListByLocation` REST API or one of the following commands:\r\n\r\n```azurecli\r\naz sql db list-editions -l -o table\r\n````\r\n\r\n```powershell\r\nGet-AzSqlServerServiceObjective -Location \r\n````\r\n" + }, + "serviceLevelObjective": { + "readOnly": true, + "type": "string", + "enum": [ + "System", + "System0", + "System1", + "System2", + "System3", + "System4", + "System2L", + "System3L", + "System4L", + "Free", + "Basic", + "S0", + "S1", + "S2", + "S3", + "S4", + "S6", + "S7", + "S9", + "S12", + "P1", + "P2", + "P3", + "P4", + "P6", + "P11", + "P15", + "PRS1", + "PRS2", + "PRS4", + "PRS6", + "DW100", + "DW200", + "DW300", + "DW400", + "DW500", + "DW600", + "DW1000", + "DW1200", + "DW1000c", + "DW1500", + "DW1500c", + "DW2000", + "DW2000c", + "DW3000", + "DW2500c", + "DW3000c", + "DW6000", + "DW5000c", + "DW6000c", + "DW7500c", + "DW10000c", + "DW15000c", + "DW30000c", + "DS100", + "DS200", + "DS300", + "DS400", + "DS500", + "DS600", + "DS1000", + "DS1200", + "DS1500", + "DS2000", + "ElasticPool" + ], + "x-ms-enum": { + "modelAsString": true, + "name": "ServiceObjectiveName" + }, + "description": "The current service level objective of the database." + }, + "status": { + "readOnly": true, + "type": "string", + "description": "The status of the database." + }, + "elasticPoolName": { + "type": "string", + "description": "The name of the elastic pool the database is in. If elasticPoolName and requestedServiceObjectiveName are both updated, the value of requestedServiceObjectiveName is ignored. Not supported for DataWarehouse edition." + }, + "defaultSecondaryLocation": { + "readOnly": true, + "type": "string", + "description": "The default secondary region for this database." + }, + "serviceTierAdvisors": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "./sql.core.json#/definitions/ServiceTierAdvisor" + }, + "description": "The list of service tier advisors for this database. Expanded property" + }, + "transparentDataEncryption": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "./sql.core.json#/definitions/TransparentDataEncryption" + }, + "description": "The transparent data encryption info for this database." + }, + "recommendedIndex": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "./sql.core.json#/definitions/RecommendedIndex" + }, + "description": "The recommended indices for this database." + }, + "failoverGroupId": { + "readOnly": true, + "type": "string", + "description": "The resource identifier of the failover group containing this database." + }, + "readScale": { + "type": "string", + "enum": [ + "Enabled", + "Disabled" + ], + "description": "Conditional. If the database is a geo-secondary, readScale indicates whether read-only connections are allowed to this database or not. Not supported for DataWarehouse edition.", + "x-ms-enum": { + "name": "ReadScale" + } + }, + "sampleName": { + "type": "string", + "enum": [ + "AdventureWorksLT" + ], + "description": "Indicates the name of the sample schema to apply when creating this database. If createMode is not Default, this value is ignored. Not supported for DataWarehouse edition.", + "x-ms-enum": { + "modelAsString": true, + "name": "SampleName" + }, + "x-ms-mutability": [ + "create" + ] + }, + "zoneRedundant": { + "description": "Whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones.", + "type": "boolean" + } }, - "DatabaseExpandParameter":{ - "name":"$expand", - "in":"query", - "required":false, - "type":"string", - "description":"A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", - "x-ms-parameter-location":"method" + "description": "Represents the properties of a database." + }, + "Database": { + "properties": { + "kind": { + "readOnly": true, + "type": "string", + "description": "Kind of database. This is metadata used for the Azure portal experience." + }, + "properties": { + "$ref": "#/definitions/DatabaseProperties", + "description": "The properties representing the resource.", + "x-ms-client-flatten": true + } }, - "TransparentDataEncryptionNameParameter":{ - "name":"transparentDataEncryptionName", - "in":"path", - "required":true, - "type":"string", - "enum":[ - "current" - ], - "description":"The name of the transparent data encryption configuration.", - "x-ms-enum":{ - "modelAsString":true, - "name":"TransparentDataEncryptionName" + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/TrackedResource" + } + ], + "description": "Represents a database." + }, + "DatabaseUpdate": { + "properties": { + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" }, - "x-ms-parameter-location":"method" - } + "description": "Resource tags." + }, + "properties": { + "$ref": "#/definitions/DatabaseProperties", + "description": "The properties representing the resource.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" + } + ], + "description": "Represents a database update." + }, + "DatabaseListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/Database" + }, + "description": "The list of databases housed in the server." + } + }, + "required": [ + "value" + ], + "description": "Represents the response to a list database request." + } }, - "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" - } + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + }, + "DatabaseExpandParameter": { + "name": "$expand", + "in": "query", + "required": false, + "type": "string", + "description": "A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", + "x-ms-parameter-location": "method" + }, + "TransparentDataEncryptionNameParameter": { + "name": "transparentDataEncryptionName", + "in": "path", + "required": true, + "type": "string", + "enum": [ + "current" + ], + "description": "The name of the transparent data encryption configuration.", + "x-ms-enum": { + "modelAsString": true, + "name": "TransparentDataEncryptionName" + }, + "x-ms-parameter-location": "method" + } + }, + "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" } + } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/deprecated.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/deprecated.json index 495703f4dc95..4ea0fd4d4311 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/deprecated.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/deprecated.json @@ -1,165 +1,163 @@ { - "swagger":"2.0", - "info":{ - "title":"Azure SQL Database", - "description":"Provides create, read, update and delete functionality for Azure SQL Database resources including servers, databases, elastic pools, recommendations, and operations.", - "version":"2014-04-01" + "swagger": "2.0", + "info": { + "title": "Azure SQL Database", + "description": "Provides create, read, update and delete functionality for Azure SQL Database resources including servers, databases, elastic pools, recommendations, and operations.", + "version": "2014-04-01" }, - "host":"management.azure.com", - "schemes":[ - "https" + "host": "management.azure.com", + "schemes": [ + "https" ], - "consumes":[ - "application/json" + "consumes": [ + "application/json" ], - "produces":[ - "application/json" + "produces": [ + "application/json" ], - "paths":{ - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/transparentDataEncryption":{ - "get":{ - "tags":[ - "TransparentDataEncryption" - ], - "operationId":"TransparentDataEncryptionConfigurations_ListByDatabase", - "description":"Gets a list of a database's transparent data encryption configurations. There is only ever one element, named 'current', so GetTransparentDataEncryptionConfiguration should be used instead.", - "deprecated":true, - "x-ms-examples":{ - "Get a list of transparent data encryption configurations":{ - "$ref":"./examples/DatabaseTransparentDataEncryptionList.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"databaseName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the database for which the transparent data encryption applies." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/TransparentDataEncryptionListResult" - } - } - }, - "x-ms-pageable":{ - "nextLinkName":null - } + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/transparentDataEncryption": { + "get": { + "tags": [ + "TransparentDataEncryption" + ], + "operationId": "TransparentDataEncryptionConfigurations_ListByDatabase", + "description": "Gets a list of a database's transparent data encryption configurations. There is only ever one element, named 'current', so GetTransparentDataEncryptionConfiguration should be used instead.", + "deprecated": true, + "x-ms-examples": { + "Get a list of transparent data encryption configurations": { + "$ref": "./examples/DatabaseTransparentDataEncryptionList.json" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/extensions":{ - "get":{ - "tags":[ - "ImportExport" - ], - "operationId":"Extensions_ListByDatabase", - "description":"Gets database extensions.", - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"databaseName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the database to import into" - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/ExtensionListResult" - } - } - }, - "x-ms-pageable":{ - "nextLinkName":null - } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database for which the transparent data encryption applies." } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/TransparentDataEncryptionListResult" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } } - }, - "definitions":{ - "TransparentDataEncryptionListResult":{ - "properties":{ - "value":{ - "type":"array", - "items":{ - "$ref":"./sql.core.json#/definitions/TransparentDataEncryption" - }, - "description":"The list of transparent data encryption configurations." - } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/extensions": { + "get": { + "tags": [ + "ImportExport" + ], + "operationId": "Extensions_ListByDatabase", + "description": "Gets database extensions.", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" }, - "description":"Represents the response to a list transparent data encryption configurations request." - }, - "ExtensionListResult":{ - "properties":{ - "value":{ - "type":"array", - "items":{ - "properties":{ - - } - }, - "description":"The list of extensions." - } + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, - "description":"Represents the response to a list extensions request." + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database to import into" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ExtensionListResult" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } } + } }, - "parameters":{ - "ServerNameParameter":{ - "name":"serverName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the server.", - "x-ms-parameter-location":"method" + "definitions": { + "TransparentDataEncryptionListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "./sql.core.json#/definitions/TransparentDataEncryption" + }, + "description": "The list of transparent data encryption configurations." + } }, - "DatabaseExpandParameter":{ - "name":"$expand", - "in":"query", - "required":false, - "type":"string", - "description":"A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", - "x-ms-parameter-location":"method" - } + "description": "Represents the response to a list transparent data encryption configurations request." + }, + "ExtensionListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "properties": {} + }, + "description": "The list of extensions." + } + }, + "description": "Represents the response to a list extensions request." + } }, - "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" - } + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + }, + "DatabaseExpandParameter": { + "name": "$expand", + "in": "query", + "required": false, + "type": "string", + "description": "A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", + "x-ms-parameter-location": "method" + } + }, + "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" } + } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/disasterRecoveryConfigurations.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/disasterRecoveryConfigurations.json index dc304a46be0f..ba9dd037a2de 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/disasterRecoveryConfigurations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/disasterRecoveryConfigurations.json @@ -17,41 +17,43 @@ ], "paths": { "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/disasterRecoveryConfiguration": { - "get": { - "tags": [ - "DisasterRecoveryConfigurations" - ], - "operationId": "DisasterRecoveryConfigurations_List", - "description": "Lists a server's disaster recovery configuration.", - "x-ms-examples": { - "List Replication links": { "$ref": "./examples/DisasterRecoveryConfigurationList.json" } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DisasterRecoveryConfigurationListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null + "get": { + "tags": [ + "DisasterRecoveryConfigurations" + ], + "operationId": "DisasterRecoveryConfigurations_List", + "description": "Lists a server's disaster recovery configuration.", + "x-ms-examples": { + "List Replication links": { + "$ref": "./examples/DisasterRecoveryConfigurationList.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/DisasterRecoveryConfigurationListResult" } + } + }, + "x-ms-pageable": { + "nextLinkName": null } + } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/disasterRecoveryConfiguration/{disasterRecoveryConfigurationName}": { "delete": { @@ -62,7 +64,9 @@ "description": "Deletes a disaster recovery configuration.", "x-ms-long-running-operation": true, "x-ms-examples": { - "Delete a disaster recovery configuration": { "$ref": "./examples/DisasterRecoveryConfigurationDelete.json" } + "Delete a disaster recovery configuration": { + "$ref": "./examples/DisasterRecoveryConfigurationDelete.json" + } }, "parameters": [ { @@ -105,7 +109,9 @@ "description": "Creates or updates a disaster recovery configuration.", "x-ms-long-running-operation": true, "x-ms-examples": { - "Update a disaster recovery configuration": { "$ref": "./examples/DisasterRecoveryConfigurationCreateOrUpdate.json" } + "Update a disaster recovery configuration": { + "$ref": "./examples/DisasterRecoveryConfigurationCreateOrUpdate.json" + } }, "parameters": [ { @@ -156,7 +162,9 @@ "operationId": "DisasterRecoveryConfigurations_Get", "description": "Gets a disaster recovery configuration.", "x-ms-examples": { - "Get a disaster recovery configuration": { "$ref": "./examples/DisasterRecoveryConfigurationGet.json" } + "Get a disaster recovery configuration": { + "$ref": "./examples/DisasterRecoveryConfigurationGet.json" + } }, "parameters": [ { @@ -197,7 +205,9 @@ "operationId": "DisasterRecoveryConfigurations_Failover", "description": "Fails over from the current primary server to this server.", "x-ms-examples": { - "Failover a disaster recovery configuration": { "$ref": "./examples/DisasterRecoveryConfigurationFailover.json" } + "Failover a disaster recovery configuration": { + "$ref": "./examples/DisasterRecoveryConfigurationFailover.json" + } }, "parameters": [ { @@ -239,7 +249,9 @@ "operationId": "DisasterRecoveryConfigurations_FailoverAllowDataLoss", "description": "Fails over from the current primary server to this server. This operation might result in data loss.", "x-ms-examples": { - "Failover a disaster recovery configuration": { "$ref": "./examples/DisasterRecoveryConfigurationFailover.json" } + "Failover a disaster recovery configuration": { + "$ref": "./examples/DisasterRecoveryConfigurationFailover.json" + } }, "parameters": [ { @@ -281,7 +293,12 @@ "readOnly": true, "type": "string", "description": "The status of the disaster recovery configuration.", - "enum": ["Creating", "Ready", "FailingOver", "Dropping"], + "enum": [ + "Creating", + "Ready", + "FailingOver", + "Dropping" + ], "x-ms-enum": { "modelAsString": true, "name": "DisasterRecoveryConfigurationStatus" @@ -290,7 +307,10 @@ "autoFailover": { "type": "string", "description": "Whether or not failover can be done automatically.", - "enum": ["Off", "On"], + "enum": [ + "Off", + "On" + ], "x-ms-enum": { "modelAsString": true, "name": "DisasterRecoveryConfigurationAutoFailover" @@ -299,7 +319,10 @@ "failoverPolicy": { "type": "string", "description": "How aggressive the automatic failover should be.", - "enum": ["Manual", "Automatic"], + "enum": [ + "Manual", + "Automatic" + ], "x-ms-enum": { "modelAsString": true, "name": "DisasterRecoveryConfigurationFailoverPolicy" @@ -323,14 +346,22 @@ "readOnly": true, "type": "string", "description": "The role of the current server in the disaster recovery configuration.", - "enum": ["None", "Primary", "Secondary"], + "enum": [ + "None", + "Primary", + "Secondary" + ], "x-ms-enum": { "modelAsString": true, "name": "DisasterRecoveryConfigurationRole" } } }, - "required": ["autoFailover", "failoverPolicy", "partnerServerId"], + "required": [ + "autoFailover", + "failoverPolicy", + "partnerServerId" + ], "description": "Represents the properties of a disaster recovery configuration." }, "DisasterRecoveryConfiguration": { @@ -403,4 +434,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/elasticPools.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/elasticPools.json index f7e983f98a9f..45a56f231dc3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/elasticPools.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/elasticPools.json @@ -1,434 +1,434 @@ { - "swagger":"2.0", - "info":{ - "title":"Azure SQL Database", - "description":"Provides create, read, update and delete functionality for Azure SQL Database elastic pools.", - "version":"2014-04-01" - }, - "host":"management.azure.com", - "schemes":[ - "https" - ], - "consumes":[ - "application/json" - ], - "produces":[ - "application/json" - ], - "paths":{ - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}":{ - "put":{ - "tags":[ - "ElasticPools" - ], - "operationId":"ElasticPools_CreateOrUpdate", - "description":"Creates a new elastic pool or updates an existing elastic pool.", - "x-ms-examples":{ - "Create elastic pool max":{ - "$ref":"./examples/ElasticPoolCreateOrUpdateMax.json" - }, - "Create elastic pool min":{ - "$ref":"./examples/ElasticPoolCreateOrUpdateMin.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"elasticPoolName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the elastic pool to be operated on (updated or created)." - }, - { - "name":"parameters", - "in":"body", - "required":true, - "schema":{ - "$ref":"#/definitions/ElasticPool" - }, - "description":"The required parameters for creating or updating an elastic pool." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/ElasticPool" - } - }, - "201":{ - "description":"Created", - "schema":{ - "$ref":"#/definitions/ElasticPool" - } - }, - "202":{ - "description":"Accepted" - } - }, - "x-ms-long-running-operation":true - }, - "patch":{ - "tags":[ - "ElasticPools" - ], - "operationId":"ElasticPools_Update", - "description":"Updates an existing elastic pool.", - "x-ms-examples":{ - "Update elastic pool max":{ - "$ref":"./examples/ElasticPoolUpdateMax.json" - }, - "Update elastic pool min":{ - "$ref":"./examples/ElasticPoolUpdateMin.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"elasticPoolName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the elastic pool to be updated." - }, - { - "name":"parameters", - "in":"body", - "required":true, - "schema":{ - "$ref":"#/definitions/ElasticPoolUpdate" - }, - "description":"The required parameters for updating an elastic pool." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/ElasticPool" - } - }, - "202":{ - "description":"Accepted" - } - }, - "x-ms-long-running-operation":true + "swagger": "2.0", + "info": { + "title": "Azure SQL Database", + "description": "Provides create, read, update and delete functionality for Azure SQL Database elastic pools.", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}": { + "put": { + "tags": [ + "ElasticPools" + ], + "operationId": "ElasticPools_CreateOrUpdate", + "description": "Creates a new elastic pool or updates an existing elastic pool.", + "x-ms-examples": { + "Create elastic pool max": { + "$ref": "./examples/ElasticPoolCreateOrUpdateMax.json" + }, + "Create elastic pool min": { + "$ref": "./examples/ElasticPoolCreateOrUpdateMin.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "elasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the elastic pool to be operated on (updated or created)." + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ElasticPool" }, - "delete":{ - "tags":[ - "ElasticPools" - ], - "operationId":"ElasticPools_Delete", - "description":"Deletes the elastic pool.", - "x-ms-examples":{ - "Delete elastic pool":{ - "$ref":"./examples/ElasticPoolDelete.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"elasticPoolName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the elastic pool to be deleted." - } - ], - "responses":{ - "200":{ - "description":"OK" - }, - "204":{ - "description":"Accepted" - } - } + "description": "The required parameters for creating or updating an elastic pool." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ElasticPool" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/ElasticPool" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation": true + }, + "patch": { + "tags": [ + "ElasticPools" + ], + "operationId": "ElasticPools_Update", + "description": "Updates an existing elastic pool.", + "x-ms-examples": { + "Update elastic pool max": { + "$ref": "./examples/ElasticPoolUpdateMax.json" + }, + "Update elastic pool min": { + "$ref": "./examples/ElasticPoolUpdateMin.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "elasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the elastic pool to be updated." + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ElasticPoolUpdate" }, - "get":{ - "tags":[ - "ElasticPools" - ], - "operationId":"ElasticPools_Get", - "description":"Gets an elastic pool.", - "x-ms-examples":{ - "Get elastic pool":{ - "$ref":"./examples/ElasticPoolGet.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "name":"elasticPoolName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the elastic pool to be retrieved." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/ElasticPool" - } - } - } + "description": "The required parameters for updating an elastic pool." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ElasticPool" } + }, + "202": { + "description": "Accepted" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools":{ - "get":{ - "tags":[ - "ElasticPools" - ], - "operationId":"ElasticPools_ListByServer", - "description":"Returns a list of elastic pools in a server.", - "x-ms-examples":{ - "List elastic pools":{ - "$ref":"./examples/ElasticPoolList.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/ElasticPoolListResult" - } - } - }, - "x-ms-pageable":{ - "nextLinkName":null - } + "x-ms-long-running-operation": true + }, + "delete": { + "tags": [ + "ElasticPools" + ], + "operationId": "ElasticPools_Delete", + "description": "Deletes the elastic pool.", + "x-ms-examples": { + "Delete elastic pool": { + "$ref": "./examples/ElasticPoolDelete.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "elasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the elastic pool to be deleted." + } + ], + "responses": { + "200": { + "description": "OK" + }, + "204": { + "description": "Accepted" + } + } + }, + "get": { + "tags": [ + "ElasticPools" + ], + "operationId": "ElasticPools_Get", + "description": "Gets an elastic pool.", + "x-ms-examples": { + "Get elastic pool": { + "$ref": "./examples/ElasticPoolGet.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "elasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the elastic pool to be retrieved." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ElasticPool" } + } } + } }, - "definitions":{ - "ElasticPoolProperties":{ - "properties":{ - "creationDate":{ - "readOnly":true, - "type":"string", - "format":"date-time", - "description":"The creation date of the elastic pool (ISO8601 format)." - }, - "state":{ - "readOnly":true, - "type":"string", - "enum":[ - "Creating", - "Ready", - "Disabled" - ], - "description":"The state of the elastic pool.", - "x-ms-enum":{ - "modelAsString":true, - "name":"ElasticPoolState" - } - }, - "edition":{ - "type":"string", - "description":"The edition of the elastic pool.", - "enum":[ - "Basic", - "Standard", - "Premium", - "GeneralPurpose", - "BusinessCritical" - ], - "x-ms-enum":{ - "name":"ElasticPoolEdition", - "modelAsString":true - }, - "x-ms-mutability":[ - "create", - "read" - ] - }, - "dtu":{ - "type":"integer", - "format":"int32", - "description":"The total shared DTU for the database elastic pool." - }, - "databaseDtuMax":{ - "type":"integer", - "format":"int32", - "description":"The maximum DTU any one database can consume." - }, - "databaseDtuMin":{ - "type":"integer", - "format":"int32", - "description":"The minimum DTU all databases are guaranteed." - }, - "storageMB":{ - "type":"integer", - "format":"int32", - "description":"Gets storage limit for the database elastic pool in MB." - }, - "zoneRedundant":{ - "description":"Whether or not this database elastic pool is zone redundant, which means the replicas of this database will be spread across multiple availability zones.", - "type":"boolean" - } - }, - "description":"Represents the properties of an elastic pool." + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools": { + "get": { + "tags": [ + "ElasticPools" + ], + "operationId": "ElasticPools_ListByServer", + "description": "Returns a list of elastic pools in a server.", + "x-ms-examples": { + "List elastic pools": { + "$ref": "./examples/ElasticPoolList.json" + } }, - "ElasticPool":{ - "properties":{ - "properties":{ - "$ref":"#/definitions/ElasticPoolProperties", - "description":"The properties representing the resource.", - "x-ms-client-flatten":true - }, - "kind":{ - "readOnly":true, - "type":"string", - "description":"Kind of elastic pool. This is metadata used for the Azure portal experience." - } - }, - "allOf":[ - { - "$ref":"../../../common/v1/types.json#/definitions/TrackedResource" - } - ], - "description":"Represents a database elastic pool." + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ElasticPoolListResult" + } + } }, - "ElasticPoolUpdate":{ - "properties":{ - "tags":{ - "type":"object", - "additionalProperties":{ - "type":"string" - }, - "description":"Resource tags." - }, - "properties":{ - "$ref":"#/definitions/ElasticPoolProperties", - "description":"The properties representing the resource.", - "x-ms-client-flatten":true - } - }, - "allOf":[ - { - "$ref":"../../../common/v1/types.json#/definitions/Resource" - } - ], - "description":"Represents an elastic pool update." + "x-ms-pageable": { + "nextLinkName": null + } + } + } + }, + "definitions": { + "ElasticPoolProperties": { + "properties": { + "creationDate": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The creation date of the elastic pool (ISO8601 format)." }, - "ElasticPoolListResult":{ - "properties":{ - "value":{ - "type":"array", - "items":{ - "$ref":"#/definitions/ElasticPool" - }, - "description":"The list of elastic pools hosted in the server." - } - }, - "required":[ - "value" - ], - "description":"Represents the response to a list elastic pool request." + "state": { + "readOnly": true, + "type": "string", + "enum": [ + "Creating", + "Ready", + "Disabled" + ], + "description": "The state of the elastic pool.", + "x-ms-enum": { + "modelAsString": true, + "name": "ElasticPoolState" + } + }, + "edition": { + "type": "string", + "description": "The edition of the elastic pool.", + "enum": [ + "Basic", + "Standard", + "Premium", + "GeneralPurpose", + "BusinessCritical" + ], + "x-ms-enum": { + "name": "ElasticPoolEdition", + "modelAsString": true + }, + "x-ms-mutability": [ + "create", + "read" + ] + }, + "dtu": { + "type": "integer", + "format": "int32", + "description": "The total shared DTU for the database elastic pool." + }, + "databaseDtuMax": { + "type": "integer", + "format": "int32", + "description": "The maximum DTU any one database can consume." + }, + "databaseDtuMin": { + "type": "integer", + "format": "int32", + "description": "The minimum DTU all databases are guaranteed." + }, + "storageMB": { + "type": "integer", + "format": "int32", + "description": "Gets storage limit for the database elastic pool in MB." + }, + "zoneRedundant": { + "description": "Whether or not this database elastic pool is zone redundant, which means the replicas of this database will be spread across multiple availability zones.", + "type": "boolean" } + }, + "description": "Represents the properties of an elastic pool." }, - "parameters":{ - "ServerNameParameter":{ - "name":"serverName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the server.", - "x-ms-parameter-location":"method" + "ElasticPool": { + "properties": { + "properties": { + "$ref": "#/definitions/ElasticPoolProperties", + "description": "The properties representing the resource.", + "x-ms-client-flatten": true }, - "DatabaseExpandParameter":{ - "name":"$expand", - "in":"query", - "required":false, - "type":"string", - "description":"A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", - "x-ms-parameter-location":"method" + "kind": { + "readOnly": true, + "type": "string", + "description": "Kind of elastic pool. This is metadata used for the Azure portal experience." + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/TrackedResource" + } + ], + "description": "Represents a database elastic pool." + }, + "ElasticPoolUpdate": { + "properties": { + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags." }, - "TransparentDataEncryptionNameParameter":{ - "name":"transparentDataEncryptionName", - "in":"path", - "required":true, - "type":"string", - "enum":[ - "current" - ], - "description":"The name of the transparent data encryption configuration.", - "x-ms-enum":{ - "modelAsString":true, - "name":"TransparentDataEncryptionName" - }, - "x-ms-parameter-location":"method" + "properties": { + "$ref": "#/definitions/ElasticPoolProperties", + "description": "The properties representing the resource.", + "x-ms-client-flatten": true } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/Resource" + } + ], + "description": "Represents an elastic pool update." }, - "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" - } + "ElasticPoolListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ElasticPool" + }, + "description": "The list of elastic pools hosted in the server." } + }, + "required": [ + "value" + ], + "description": "Represents the response to a list elastic pool request." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + }, + "DatabaseExpandParameter": { + "name": "$expand", + "in": "query", + "required": false, + "type": "string", + "description": "A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", + "x-ms-parameter-location": "method" + }, + "TransparentDataEncryptionNameParameter": { + "name": "transparentDataEncryptionName", + "in": "path", + "required": true, + "type": "string", + "enum": [ + "current" + ], + "description": "The name of the transparent data encryption configuration.", + "x-ms-enum": { + "modelAsString": true, + "name": "TransparentDataEncryptionName" + }, + "x-ms-parameter-location": "method" + } + }, + "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" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyGet.json index a398c6a8f960..93363b068510 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyGet.json @@ -1,24 +1,24 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "longtermretentiontest-1234", - "serverName": "longtermretentiontest-5678", - "databaseName": "longtermretentiontest-9012", - "backupLongTermRetentionPolicyName": "Default", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/databases/longtermretentiontest-9012/backupLongTermRetentionPolicies/Default", - "name": "Default", - "type": "Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies", - "location": "Japan East", - "properties": { - "recoveryServicesBackupPolicyResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc/backupPolicies/testPolicyxyz", - "state": "Enabled" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "longtermretentiontest-1234", + "serverName": "longtermretentiontest-5678", + "databaseName": "longtermretentiontest-9012", + "backupLongTermRetentionPolicyName": "Default", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/databases/longtermretentiontest-9012/backupLongTermRetentionPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies", + "location": "Japan East", + "properties": { + "recoveryServicesBackupPolicyResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc/backupPolicies/testPolicyxyz", + "state": "Enabled" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyList.json index e9c9e3901106..28f8c70d6fd4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyList.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "longtermretentiontest-1234", - "serverName": "longtermretentiontest-5678", - "databaseName": "longtermretentiontest-9012", - "backupLongTermRetentionPolicyName": "Default", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/databases/longtermretentiontest-9012/backupLongTermRetentionPolicies/Default", - "name": "Default", - "type": "Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies", - "location": "Japan East", - "properties": { - "recoveryServicesBackupPolicyResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc/backupPolicies/testPolicyxyz", - "state": "Enabled" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "longtermretentiontest-1234", + "serverName": "longtermretentiontest-5678", + "databaseName": "longtermretentiontest-9012", + "backupLongTermRetentionPolicyName": "Default", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/databases/longtermretentiontest-9012/backupLongTermRetentionPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies", + "location": "Japan East", + "properties": { + "recoveryServicesBackupPolicyResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc/backupPolicies/testPolicyxyz", + "state": "Enabled" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyUpdate.json index 586ef2143289..de1cf5233a3a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionPolicyUpdate.json @@ -1,44 +1,44 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "longtermretentiontest-1234", + "serverName": "longtermretentiontest-5678", + "databaseName": "longtermretentiontest-9012", + "backupLongTermRetentionPolicyName": "Default", + "api-version": "2014-04-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "longtermretentiontest-1234", - "serverName": "longtermretentiontest-5678", - "databaseName": "longtermretentiontest-9012", - "backupLongTermRetentionPolicyName": "Default", - "api-version": "2014-04-01", - "parameters": { - "properties": { - "recoveryServicesBackupPolicyResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc/backupPolicies/testPolicyxyz", - "state": "Enabled" - }, - "location": "Japan East" + "properties": { + "recoveryServicesBackupPolicyResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc/backupPolicies/testPolicyxyz", + "state": "Enabled" + }, + "location": "Japan East" + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/databases/longtermretentiontest-9012/backupLongTermRetentionPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies", + "location": "Japan East", + "properties": { + "recoveryServicesBackupPolicyResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc/backupPolicies/testPolicyxyz", + "state": "Enabled" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/databases/longtermretentiontest-9012/backupLongTermRetentionPolicies/Default", - "name": "Default", - "type": "Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies", - "location": "Japan East", - "properties": { - "recoveryServicesBackupPolicyResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc/backupPolicies/testPolicyxyz", - "state": "Enabled" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/databases/longtermretentiontest-9012/backupLongTermRetentionPolicies/Default", - "name": "Default", - "type": "Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies", - "location": "Japan East", - "properties": { - "recoveryServicesBackupPolicyResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc/backupPolicies/testPolicyxyz", - "state": "Enabled" - } - } - }, - "202": { } - } -} \ No newline at end of file + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/databases/longtermretentiontest-9012/backupLongTermRetentionPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies", + "location": "Japan East", + "properties": { + "recoveryServicesBackupPolicyResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc/backupPolicies/testPolicyxyz", + "state": "Enabled" + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultGet.json index 5928345708c6..71d522217d44 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultGet.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "longtermretentiontest-1234", - "serverName": "longtermretentiontest-5678", - "backupLongTermRetentionVaultName": "RegisteredVault", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/backupLongTermRetentionVaults/RegisteredVault", - "name": "RegisteredVault", - "type": "Microsoft.Sql/servers/backupLongTermRetentionVaults", - "location": "Japan East", - "properties": { - "recoveryServicesVaultResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "longtermretentiontest-1234", + "serverName": "longtermretentiontest-5678", + "backupLongTermRetentionVaultName": "RegisteredVault", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/backupLongTermRetentionVaults/RegisteredVault", + "name": "RegisteredVault", + "type": "Microsoft.Sql/servers/backupLongTermRetentionVaults", + "location": "Japan East", + "properties": { + "recoveryServicesVaultResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultList.json index f09feead621d..309ca317552c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultList.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "longtermretentiontest-1234", - "serverName": "longtermretentiontest-5678", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/backupLongTermRetentionVaults/RegisteredVault", - "name": "RegisteredVault", - "type": "Microsoft.Sql/servers/backupLongTermRetentionVaults", - "location": "Japan East", - "properties": { - "recoveryServicesVaultResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "longtermretentiontest-1234", + "serverName": "longtermretentiontest-5678", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/backupLongTermRetentionVaults/RegisteredVault", + "name": "RegisteredVault", + "type": "Microsoft.Sql/servers/backupLongTermRetentionVaults", + "location": "Japan East", + "properties": { + "recoveryServicesVaultResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc" } - } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultUpdate.json index 393d269ab54c..f6c1aadd3e9b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/BackupLongTermRetentionVaultUpdate.json @@ -1,40 +1,40 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "longtermretentiontest-1234", + "serverName": "longtermretentiontest-5678", + "backupLongTermRetentionVaultName": "RegisteredVault", + "api-version": "2014-04-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "longtermretentiontest-1234", - "serverName": "longtermretentiontest-5678", - "backupLongTermRetentionVaultName": "RegisteredVault", - "api-version": "2014-04-01", - "parameters": { - "properties": { - "recoveryServicesVaultResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-5678/providers/Microsoft.RecoveryServices/vaults/testVaultabc" - }, - "location": "Japan East" + "properties": { + "recoveryServicesVaultResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-5678/providers/Microsoft.RecoveryServices/vaults/testVaultabc" + }, + "location": "Japan East" + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/backupLongTermRetentionVaults/RegisteredVault", + "name": "RegisteredVault", + "type": "Microsoft.Sql/servers/backupLongTermRetentionVaults", + "location": "Japan East", + "properties": { + "recoveryServicesVaultResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/backupLongTermRetentionVaults/RegisteredVault", - "name": "RegisteredVault", - "type": "Microsoft.Sql/servers/backupLongTermRetentionVaults", - "location": "Japan East", - "properties": { - "recoveryServicesVaultResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/backupLongTermRetentionVaults/RegisteredVault", - "name": "RegisteredVault", - "type": "Microsoft.Sql/servers/backupLongTermRetentionVaults", - "location": "Japan East", - "properties": { - "recoveryServicesVaultResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc" - } - } - }, - "202": { } - } -} \ No newline at end of file + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentiontest-1234/providers/Microsoft.Sql/servers/longtermretentiontest-5678/backupLongTermRetentionVaults/RegisteredVault", + "name": "RegisteredVault", + "type": "Microsoft.Sql/servers/backupLongTermRetentionVaults", + "location": "Japan East", + "properties": { + "recoveryServicesVaultResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/longtermretentionvaulttest-1234/providers/Microsoft.RecoveryServices/vaults/testVaultabc" + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CapabilitiesList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CapabilitiesList.json index b154e81320a3..d75dd599a808 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CapabilitiesList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CapabilitiesList.json @@ -10360,4 +10360,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerAlreadyExists.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerAlreadyExists.json index 4c96a2342219..e78eed70c5b3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerAlreadyExists.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerAlreadyExists.json @@ -10,11 +10,11 @@ "responses": { "200": { "body": { - "name":"server1", - "available":false, - "reason":"AlreadyExists", - "message":"Specified server name is already used" + "name": "server1", + "available": false, + "reason": "AlreadyExists", + "message": "Specified server name is already used" } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerAvailable.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerAvailable.json index c3b0824f0d42..1cedb2a7a38c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerAvailable.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerAvailable.json @@ -10,11 +10,11 @@ "responses": { "200": { "body": { - "name":"server1", - "available":true, - "reason":null, - "message":null + "name": "server1", + "available": true, + "reason": null, + "message": null } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerInvalid.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerInvalid.json index d02368586cb8..3e7e9788ca6c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerInvalid.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/CheckNameAvailabilityServerInvalid.json @@ -10,10 +10,11 @@ "responses": { "200": { "body": { - "name":"SERVER1", - "available":false, - "reason":"Invalid", - "message":"Specified server name contains unsupported characters or is too long. Server name must be no longer than 63 characters long, contain only lower-case characters or digits, cannot contain \u0027.\u0027 or \u0027_\u0027 characters and can\u0027t start or end with \u0027-\u0027 character."} + "name": "SERVER1", + "available": false, + "reason": "Invalid", + "message": "Specified server name contains unsupported characters or is too long. Server name must be no longer than 63 characters long, contain only lower-case characters or digits, cannot contain \u0027.\u0027 or \u0027_\u0027 characters and can\u0027t start or end with \u0027-\u0027 character." + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyCreateOrUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyCreateOrUpdateMax.json index 267c27e4de33..4cb352a6a5d6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyCreateOrUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyCreateOrUpdateMax.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-6852", - "serverName": "sqlcrudtest-2080", - "databaseName": "sqlcrudtest-331", - "dataMaskingPolicyName": "Default", - "api-version": "2014-04-01", - "parameters": { - "properties": { - "dataMaskingState": "Enabled", - "exemptPrincipals": "testuser;" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-331", + "dataMaskingPolicyName": "Default", + "api-version": "2014-04-01", + "parameters": { + "properties": { + "dataMaskingState": "Enabled", + "exemptPrincipals": "testuser;" } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331/dataMaskingPolicies/Default", - "name": "Default", - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies", - "location": "Central US", - "kind": null, - "properties": { - "dataMaskingState": "Enabled", - "applicationPrincipals": "", - "exemptPrincipals": "testuser;", - "maskingLevel": "" - } - } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331/dataMaskingPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies", + "location": "Central US", + "kind": null, + "properties": { + "dataMaskingState": "Enabled", + "applicationPrincipals": "", + "exemptPrincipals": "testuser;", + "maskingLevel": "" + } } - } -} \ No newline at end of file + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyCreateOrUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyCreateOrUpdateMin.json index f0be99de4c05..586ab63514f0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyCreateOrUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyCreateOrUpdateMin.json @@ -1,32 +1,32 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-6852", - "serverName": "sqlcrudtest-2080", - "databaseName": "sqlcrudtest-331", - "dataMaskingPolicyName": "Default", - "api-version": "2014-04-01", - "parameters": { - "properties": { - "dataMaskingState": "Enabled" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-331", + "dataMaskingPolicyName": "Default", + "api-version": "2014-04-01", + "parameters": { + "properties": { + "dataMaskingState": "Enabled" } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331/dataMaskingPolicies/Default", - "name": "Default", - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies", - "location": "Central US", - "kind": null, - "properties": { - "dataMaskingState": "Enabled", - "applicationPrincipals": "", - "exemptPrincipals": "", - "maskingLevel": "" - } - } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331/dataMaskingPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies", + "location": "Central US", + "kind": null, + "properties": { + "dataMaskingState": "Enabled", + "applicationPrincipals": "", + "exemptPrincipals": "", + "maskingLevel": "" + } } - } -} \ No newline at end of file + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyGet.json index c672e9ecd6af..d5e675b69c31 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingPolicyGet.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-6852", - "serverName": "sqlcrudtest-2080", - "databaseName": "sqlcrudtest-331", - "dataMaskingPolicyName": "Default", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331/dataMaskingPolicies/Default", - "name": "Default", - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies", - "location": "Central US", - "kind": null, - "properties": { - "dataMaskingState": "Enabled", - "applicationPrincipals": "", - "exemptPrincipals": "", - "maskingLevel": "" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-331", + "dataMaskingPolicyName": "Default", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331/dataMaskingPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies", + "location": "Central US", + "kind": null, + "properties": { + "dataMaskingState": "Enabled", + "applicationPrincipals": "", + "exemptPrincipals": "", + "maskingLevel": "" + } } - } -} \ No newline at end of file + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateDefaultMax.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateDefaultMax.json index 28a2a693947a..1b7618eea5a3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateDefaultMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateDefaultMax.json @@ -1,69 +1,69 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-6852", - "serverName": "sqlcrudtest-2080", - "databaseName": "sqlcrudtest-331", - "dataMaskingPolicyName": "Default", - "api-version": "2014-04-01", - "dataMaskingRuleName": "rule1", - "parameters": { - "properties": { - "aliasName": "nickname", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "maskingFunction": "Default", - "ruleState": "Enabled" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-331", + "dataMaskingPolicyName": "Default", + "api-version": "2014-04-01", + "dataMaskingRuleName": "rule1", + "parameters": { + "properties": { + "aliasName": "nickname", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "maskingFunction": "Default", + "ruleState": "Enabled" } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", - "name": null, - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", - "location": "Central US", - "kind": null, - "properties": { - "id": "dbo_Table_1_test1", - "ruleState": "Enabled", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "aliasName": "nickname", - "maskingFunction": "Default", - "numberFrom": null, - "numberTo": null, - "prefixSize": null, - "suffixSize": null, - "replacementString": null - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", - "name": null, - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", - "location": "Central US", - "kind": null, - "properties": { - "id": "dbo_Table_1_test1", - "ruleState": "Enabled", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "aliasName": "nickname", - "maskingFunction": "Default", - "numberFrom": null, - "numberTo": null, - "prefixSize": null, - "suffixSize": null, - "replacementString": null - } - } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", + "name": null, + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", + "location": "Central US", + "kind": null, + "properties": { + "id": "dbo_Table_1_test1", + "ruleState": "Enabled", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "aliasName": "nickname", + "maskingFunction": "Default", + "numberFrom": null, + "numberTo": null, + "prefixSize": null, + "suffixSize": null, + "replacementString": null + } } - } -} \ No newline at end of file + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", + "name": null, + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", + "location": "Central US", + "kind": null, + "properties": { + "id": "dbo_Table_1_test1", + "ruleState": "Enabled", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "aliasName": "nickname", + "maskingFunction": "Default", + "numberFrom": null, + "numberTo": null, + "prefixSize": null, + "suffixSize": null, + "replacementString": null + } + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateDefaultMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateDefaultMin.json index 1410994693bc..e42c521fe254 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateDefaultMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateDefaultMin.json @@ -1,67 +1,67 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-6852", - "serverName": "sqlcrudtest-2080", - "databaseName": "sqlcrudtest-331", - "dataMaskingPolicyName": "Default", - "api-version": "2014-04-01", - "dataMaskingRuleName": "rule1", - "parameters": { - "properties": { - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "maskingFunction": "Default" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-331", + "dataMaskingPolicyName": "Default", + "api-version": "2014-04-01", + "dataMaskingRuleName": "rule1", + "parameters": { + "properties": { + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "maskingFunction": "Default" } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", - "name": null, - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", - "location": "Central US", - "kind": null, - "properties": { - "id": "dbo_Table_1_test1", - "ruleState": "Enabled", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "aliasName": null, - "maskingFunction": "Default", - "numberFrom": null, - "numberTo": null, - "prefixSize": null, - "suffixSize": null, - "replacementString": null - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", - "name": null, - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", - "location": "Central US", - "kind": null, - "properties": { - "id": "dbo_Table_1_test1", - "ruleState": "Enabled", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "aliasName": null, - "maskingFunction": "Default", - "numberFrom": null, - "numberTo": null, - "prefixSize": null, - "suffixSize": null, - "replacementString": null - } - } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", + "name": null, + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", + "location": "Central US", + "kind": null, + "properties": { + "id": "dbo_Table_1_test1", + "ruleState": "Enabled", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "aliasName": null, + "maskingFunction": "Default", + "numberFrom": null, + "numberTo": null, + "prefixSize": null, + "suffixSize": null, + "replacementString": null + } } - } -} \ No newline at end of file + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", + "name": null, + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", + "location": "Central US", + "kind": null, + "properties": { + "id": "dbo_Table_1_test1", + "ruleState": "Enabled", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "aliasName": null, + "maskingFunction": "Default", + "numberFrom": null, + "numberTo": null, + "prefixSize": null, + "suffixSize": null, + "replacementString": null + } + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateNumber.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateNumber.json index 1d5367391dfd..0f3116e41cef 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateNumber.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateNumber.json @@ -1,69 +1,69 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-6852", - "serverName": "sqlcrudtest-2080", - "databaseName": "sqlcrudtest-331", - "dataMaskingPolicyName": "Default", - "api-version": "2014-04-01", - "dataMaskingRuleName": "rule1", - "parameters": { - "properties": { - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "maskingFunction": "Number", - "numberFrom": "0", - "numberTo": "2" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-331", + "dataMaskingPolicyName": "Default", + "api-version": "2014-04-01", + "dataMaskingRuleName": "rule1", + "parameters": { + "properties": { + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "maskingFunction": "Number", + "numberFrom": "0", + "numberTo": "2" } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", - "name": null, - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", - "location": "Central US", - "kind": null, - "properties": { - "id": "dbo_Table_1_test1", - "ruleState": "Enabled", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "aliasName": null, - "maskingFunction": "Number", - "numberFrom": "0", - "numberTo": "2", - "prefixSize": null, - "suffixSize": null, - "replacementString": null - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", - "name": null, - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", - "location": "Central US", - "kind": null, - "properties": { - "id": "dbo_Table_1_test1", - "ruleState": "Enabled", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "aliasName": null, - "maskingFunction": "Number", - "numberFrom": "0", - "numberTo": "2", - "prefixSize": null, - "suffixSize": null, - "replacementString": null - } - } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", + "name": null, + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", + "location": "Central US", + "kind": null, + "properties": { + "id": "dbo_Table_1_test1", + "ruleState": "Enabled", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "aliasName": null, + "maskingFunction": "Number", + "numberFrom": "0", + "numberTo": "2", + "prefixSize": null, + "suffixSize": null, + "replacementString": null + } } - } -} \ No newline at end of file + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", + "name": null, + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", + "location": "Central US", + "kind": null, + "properties": { + "id": "dbo_Table_1_test1", + "ruleState": "Enabled", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "aliasName": null, + "maskingFunction": "Number", + "numberFrom": "0", + "numberTo": "2", + "prefixSize": null, + "suffixSize": null, + "replacementString": null + } + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateText.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateText.json index 7bba32611921..a109322d6460 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateText.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleCreateOrUpdateText.json @@ -1,70 +1,70 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-6852", - "serverName": "sqlcrudtest-2080", - "databaseName": "sqlcrudtest-331", - "dataMaskingPolicyName": "Default", - "api-version": "2014-04-01", - "dataMaskingRuleName": "rule1", - "parameters": { - "properties": { - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "maskingFunction": "Text", - "prefixSize": "1", - "suffixSize": "0", - "replacementString": "asdf" - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-331", + "dataMaskingPolicyName": "Default", + "api-version": "2014-04-01", + "dataMaskingRuleName": "rule1", + "parameters": { + "properties": { + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "maskingFunction": "Text", + "prefixSize": "1", + "suffixSize": "0", + "replacementString": "asdf" } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", - "name": null, - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", - "location": "Central US", - "kind": null, - "properties": { - "id": "dbo_Table_1_test1", - "ruleState": "Enabled", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "aliasName": null, - "maskingFunction": "Text", - "numberFrom": null, - "numberTo": null, - "prefixSize": "1", - "suffixSize": "0", - "replacementString": "asdf" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", - "name": null, - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", - "location": "Central US", - "kind": null, - "properties": { - "id": "dbo_Table_1_test1", - "ruleState": "Enabled", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "aliasName": null, - "maskingFunction": "Text", - "numberFrom": null, - "numberTo": null, - "prefixSize": "1", - "suffixSize": "0", - "replacementString": "asdf" - } - } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", + "name": null, + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", + "location": "Central US", + "kind": null, + "properties": { + "id": "dbo_Table_1_test1", + "ruleState": "Enabled", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "aliasName": null, + "maskingFunction": "Text", + "numberFrom": null, + "numberTo": null, + "prefixSize": "1", + "suffixSize": "0", + "replacementString": "asdf" + } } - } -} \ No newline at end of file + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", + "name": null, + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", + "location": "Central US", + "kind": null, + "properties": { + "id": "dbo_Table_1_test1", + "ruleState": "Enabled", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "aliasName": null, + "maskingFunction": "Text", + "numberFrom": null, + "numberTo": null, + "prefixSize": "1", + "suffixSize": "0", + "replacementString": "asdf" + } + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleList.json index 96de2c77b0fe..408c96f926d7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataMaskingRuleList.json @@ -1,60 +1,60 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-6852", - "serverName": "sqlcrudtest-2080", - "databaseName": "sqlcrudtest-331", - "dataMaskingPolicyName": "Default", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", - "name": null, - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", - "location": "Central US", - "kind": null, - "properties": { - "id": "dbo_Table_1_test1", - "ruleState": "Enabled", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "aliasName": null, - "maskingFunction": "Text", - "numberFrom": null, - "numberTo": null, - "prefixSize": "1", - "suffixSize": "0", - "replacementString": "asdf" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", - "name": null, - "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", - "location": "Central US", - "kind": null, - "properties": { - "id": "dbo_Table_1_test1", - "ruleState": "Enabled", - "schemaName": "dbo", - "tableName": "Table_1", - "columnName": "test1", - "aliasName": null, - "maskingFunction": "Number", - "numberFrom": "0", - "numberTo": "2", - "prefixSize": null, - "suffixSize": null, - "replacementString": null - } - } - ] - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-331", + "dataMaskingPolicyName": "Default", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", + "name": null, + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", + "location": "Central US", + "kind": null, + "properties": { + "id": "dbo_Table_1_test1", + "ruleState": "Enabled", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "aliasName": null, + "maskingFunction": "Text", + "numberFrom": null, + "numberTo": null, + "prefixSize": "1", + "suffixSize": "0", + "replacementString": "asdf" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-6852/databases/sqlcrudtest-331/dataMaskingPolicies/Default/rules/", + "name": null, + "type": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules", + "location": "Central US", + "kind": null, + "properties": { + "id": "dbo_Table_1_test1", + "ruleState": "Enabled", + "schemaName": "dbo", + "tableName": "Table_1", + "columnName": "test1", + "aliasName": null, + "maskingFunction": "Number", + "numberFrom": "0", + "numberTo": "2", + "prefixSize": null, + "suffixSize": null, + "replacementString": null + } + } + ] } - } -} \ No newline at end of file + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataWarehouseRestorePointsList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataWarehouseRestorePointsList.json index 8b8590d6b0d2..41af179bdc20 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataWarehouseRestorePointsList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DataWarehouseRestorePointsList.json @@ -1,61 +1,61 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"sqlcrudtest-6730", - "serverName":"sqlcrudtest-9007", - "databaseName":"3481", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6730", + "serverName": "sqlcrudtest-9007", + "databaseName": "3481", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/9007/databases/3481/restorepoints/131448209670000000", - "name":"131448209670000000", - "location":"West US", - "type":"Microsoft.Sql/servers/databases/restorePoints", - "properties":{ - "restorePointType":"DISCRETE", - "earliestRestoreDate":null, - "restorePointCreationDate":"2017-07-18T03:09:27Z" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/9007/databases/3481/restorepoints/131448209670000000", + "name": "131448209670000000", + "location": "West US", + "type": "Microsoft.Sql/servers/databases/restorePoints", + "properties": { + "restorePointType": "DISCRETE", + "earliestRestoreDate": null, + "restorePointCreationDate": "2017-07-18T03:09:27Z" } }, { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/9007/databases/3481/restorepoints/131448353660000000", - "name":"131448353660000000", - "location":"West US", - "type":"Microsoft.Sql/servers/databases/restorePoints", - "properties":{ - "restorePointType":"DISCRETE", - "earliestRestoreDate":null, - "restorePointCreationDate":"2017-07-18T07:09:26Z" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/9007/databases/3481/restorepoints/131448353660000000", + "name": "131448353660000000", + "location": "West US", + "type": "Microsoft.Sql/servers/databases/restorePoints", + "properties": { + "restorePointType": "DISCRETE", + "earliestRestoreDate": null, + "restorePointCreationDate": "2017-07-18T07:09:26Z" } }, { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/9007/databases/3481/restorepoints/131448497660000000", - "name":"131448497660000000", - "location":"West US", - "type":"Microsoft.Sql/servers/databases/restorePoints", - "properties":{ - "restorePointType":"DISCRETE", - "earliestRestoreDate":null, - "restorePointCreationDate":"2017-07-18T11:09:26Z" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/9007/databases/3481/restorepoints/131448497660000000", + "name": "131448497660000000", + "location": "West US", + "type": "Microsoft.Sql/servers/databases/restorePoints", + "properties": { + "restorePointType": "DISCRETE", + "earliestRestoreDate": null, + "restorePointCreationDate": "2017-07-18T11:09:26Z" } }, { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/9007/databases/3481/restorepoints/131448641650000000", - "name":"131448641650000000", - "location":"West US", - "type":"Microsoft.Sql/servers/databases/restorePoints", - "properties":{ - "restorePointType":"DISCRETE", - "earliestRestoreDate":null, - "restorePointCreationDate":"2017-07-18T15:09:25Z" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/9007/databases/3481/restorepoints/131448641650000000", + "name": "131448641650000000", + "location": "West US", + "type": "Microsoft.Sql/servers/databases/restorePoints", + "properties": { + "restorePointType": "DISCRETE", + "earliestRestoreDate": null, + "restorePointCreationDate": "2017-07-18T15:09:25Z" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorCreateOrUpdate.json index f29ef1f9f868..3c58eada84f2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorCreateOrUpdate.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "databaseName": "IndexAdvisor_test_3", + "advisorName": "CreateIndex", + "api-version": "2014-04-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "databaseName": "IndexAdvisor_test_3", - "advisorName": "CreateIndex", - "api-version": "2014-04-01", - "parameters": { - "properties" : { - "autoExecuteValue" : "Disabled" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/databases/advisors", - "properties": { - "advisorStatus": "GA", - "autoExecuteValue": "Disabled", - "recommendationsStatus": "Ok", - "lastChecked": "2017-06-20T00:24:39Z" - } - } + "properties": { + "autoExecuteValue": "Disabled" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/databases/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Disabled", + "recommendationsStatus": "Ok", + "lastChecked": "2017-06-20T00:24:39Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorGet.json index 09010e322192..cfcbd40e2eed 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorGet.json @@ -1,25 +1,25 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"workloadinsight-demos", - "serverName":"misosisvr", - "databaseName":"IndexAdvisor_test_3", - "advisorName":"CreateIndex", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "databaseName": "IndexAdvisor_test_3", + "advisorName": "CreateIndex", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", - "name":"CreateIndex", - "type":"Microsoft.Sql/servers/databases/advisors", - "properties":{ - "advisorStatus":"GA", - "autoExecuteValue":"Enabled", - "recommendationsStatus":"LowActivity", - "lastChecked":"2017-07-04T13:17:13Z" + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/databases/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Enabled", + "recommendationsStatus": "LowActivity", + "lastChecked": "2017-07-04T13:17:13Z" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorList.json index 076887590c7c..f43d6d508310 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseAdvisorList.json @@ -1,72 +1,72 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"workloadinsight-demos", - "serverName":"misosisvr", - "databaseName":"IndexAdvisor_test_3", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "databaseName": "IndexAdvisor_test_3", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", - "name":"CreateIndex", - "type":"Microsoft.Sql/servers/databases/advisors", - "properties":{ - "advisorStatus":"GA", - "autoExecuteValue":"Enabled", - "recommendationsStatus":"LowActivity", - "lastChecked":"2017-07-04T13:17:13Z" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/databases/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Enabled", + "recommendationsStatus": "LowActivity", + "lastChecked": "2017-07-04T13:17:13Z" } }, { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex", - "name":"DropIndex", - "type":"Microsoft.Sql/servers/databases/advisors", - "properties":{ - "advisorStatus":"GA", - "autoExecuteValue":"Enabled", - "recommendationsStatus":"DbSeemsTuned", - "lastChecked":"2017-07-03T16:26:28Z" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DropIndex", + "name": "DropIndex", + "type": "Microsoft.Sql/servers/databases/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Enabled", + "recommendationsStatus": "DbSeemsTuned", + "lastChecked": "2017-07-03T16:26:28Z" } }, { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DbParameterization", - "name":"DbParameterization", - "type":"Microsoft.Sql/servers/databases/advisors", - "properties":{ - "advisorStatus":"GA", - "autoExecuteValue":"Disabled", - "recommendationsStatus":"NoDbParameterizationIssue", - "lastChecked":"2017-07-03T15:31:27Z" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/DbParameterization", + "name": "DbParameterization", + "type": "Microsoft.Sql/servers/databases/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Disabled", + "recommendationsStatus": "NoDbParameterizationIssue", + "lastChecked": "2017-07-03T15:31:27Z" } }, { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/SchemaIssue", - "name":"SchemaIssue", - "type":"Microsoft.Sql/servers/databases/advisors", - "properties":{ - "advisorStatus":"PublicPreview", - "autoExecuteValue":"Disabled", - "recommendationsStatus":"SchemaIsConsistent", - "lastChecked":"2017-07-04T17:45:37Z" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/SchemaIssue", + "name": "SchemaIssue", + "type": "Microsoft.Sql/servers/databases/advisors", + "properties": { + "advisorStatus": "PublicPreview", + "autoExecuteValue": "Disabled", + "recommendationsStatus": "SchemaIsConsistent", + "lastChecked": "2017-07-04T17:45:37Z" } }, { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/ForceLastGoodPlan", - "name":"ForceLastGoodPlan", - "type":"Microsoft.Sql/servers/databases/advisors", - "properties":{ - "advisorStatus":"PrivatePreview", - "autoExecuteValue":"Disabled", - "recommendationsStatus":null, - "lastChecked":null + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/databases/IndexAdvisor_test_3/advisors/ForceLastGoodPlan", + "name": "ForceLastGoodPlan", + "type": "Microsoft.Sql/servers/databases/advisors", + "properties": { + "advisorStatus": "PrivatePreview", + "autoExecuteValue": "Disabled", + "recommendationsStatus": null, + "lastChecked": null } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseConnectionPolicyCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseConnectionPolicyCreateOrUpdate.json index daaf40701c85..824b491e6608 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseConnectionPolicyCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseConnectionPolicyCreateOrUpdate.json @@ -1,31 +1,31 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"blobauditingtest-6852", - "serverName":"blobauditingtest-2080", - "databaseName":"testdb", - "connectionPolicyName":"default", - "parameters": { }, - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-6852", + "serverName": "blobauditingtest-2080", + "databaseName": "testdb", + "connectionPolicyName": "default", + "parameters": {}, + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/connectionPolicies/default", - "name":"default", - "type":"Microsoft.Sql/servers/databases/connectionPolicies", - "location":"West US", - "kind":null, - "properties":{ - "securityEnabledAccess":"Optional", - "proxyDnsName":"blobauditingtest-2080.database.secure.windows.net", - "proxyPort":"1433", - "visibility":"Visible", - "useServerDefault":"Enabled", - "redirectionState":"Disabled", - "state":"New" + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/connectionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/servers/databases/connectionPolicies", + "location": "West US", + "kind": null, + "properties": { + "securityEnabledAccess": "Optional", + "proxyDnsName": "blobauditingtest-2080.database.secure.windows.net", + "proxyPort": "1433", + "visibility": "Visible", + "useServerDefault": "Enabled", + "redirectionState": "Disabled", + "state": "New" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseConnectionPolicyGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseConnectionPolicyGet.json index 9aa1fda08e9c..3661378f702b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseConnectionPolicyGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseConnectionPolicyGet.json @@ -1,30 +1,30 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"blobauditingtest-6852", - "serverName":"blobauditingtest-2080", - "databaseName":"testdb", - "connectionPolicyName":"default", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-6852", + "serverName": "blobauditingtest-2080", + "databaseName": "testdb", + "connectionPolicyName": "default", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/connectionPolicies/default", - "name":"default", - "type":"Microsoft.Sql/servers/databases/connectionPolicies", - "location":"West US", - "kind":null, - "properties":{ - "securityEnabledAccess":"Optional", - "proxyDnsName":"blobauditingtest-2080.database.secure.windows.net", - "proxyPort":"1433", - "visibility":"Visible", - "useServerDefault":"Enabled", - "redirectionState":"Disabled", - "state":"New" + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/connectionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/servers/databases/connectionPolicies", + "location": "West US", + "kind": null, + "properties": { + "securityEnabledAccess": "Optional", + "proxyDnsName": "blobauditingtest-2080.database.secure.windows.net", + "proxyPort": "1433", + "visibility": "Visible", + "useServerDefault": "Enabled", + "redirectionState": "Disabled", + "state": "New" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateCopy.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateCopy.json index fea176ccb31d..36caddeadced 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateCopy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateCopy.json @@ -6,10 +6,10 @@ "databaseName": "testdb", "api-version": "2014-04-01", "parameters": { - "location": "Japan East", + "location": "Japan East", "properties": { - "createMode": "Copy", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb" + "createMode": "Copy", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb" } } }, @@ -70,4 +70,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateDroppedDatabaseRestore.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateDroppedDatabaseRestore.json index d8a6477a1920..2b6f1ef7cf14 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateDroppedDatabaseRestore.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateDroppedDatabaseRestore.json @@ -1,74 +1,74 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444 ", + "resourceGroupName": "sqlcrudtest-8412", + "serverName": "sqlcrudtest-3584", + "databaseName": "testdb", + "api-version": "2014-04-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444 ", - "resourceGroupName": "sqlcrudtest-8412", - "serverName": "sqlcrudtest-3584", - "databaseName": "testdb", - "api-version": "2014-04-01", - "parameters": { - "location": "Japan East", - "properties": { - "createMode": "Restore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444 /resourceGroups/sqlcrudtest-8412/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/sourcedb", - "sourceDatabaseDeletionDate": "2017-05-27T02:49:47.69Z" - } + "location": "Japan East", + "properties": { + "createMode": "Restore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444 /resourceGroups/sqlcrudtest-8412/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/sourcedb", + "sourceDatabaseDeletionDate": "2017-05-27T02:49:47.69Z" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases", + "location": "Japan East", + "kind": "v12.0,user", + "properties": { + "edition": "Standard", + "status": "Online", + "serviceLevelObjective": "S0", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-05-30T22:39:46.547Z", + "maxSizeBytes": "268435456000", + "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveName": "S0", + "sampleName": null, + "defaultSecondaryLocation": "Japan West", + "earliestRestoreDate": "2017-05-30T22:50:46.547Z", + "elasticPoolName": null, + "containmentState": 2, + "readScale": "Disabled", + "failoverGroupId": null } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases", - "location": "Japan East", - "kind": "v12.0,user", - "properties": { - "edition": "Standard", - "status": "Online", - "serviceLevelObjective": "S0", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-05-30T22:39:46.547Z", - "maxSizeBytes": "268435456000", - "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveName": "S0", - "sampleName": null, - "defaultSecondaryLocation": "Japan West", - "earliestRestoreDate": "2017-05-30T22:50:46.547Z", - "elasticPoolName": null, - "containmentState": 2, - "readScale": "Disabled", - "failoverGroupId": null - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases", - "location": "Japan East", - "kind": "v12.0,user", - "properties": { - "edition": "Standard", - "status": "Online", - "serviceLevelObjective": "S0", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-05-30T22:39:46.547Z", - "maxSizeBytes": "268435456000", - "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveName": "S0", - "sampleName": null, - "defaultSecondaryLocation": "Japan West", - "earliestRestoreDate": "2017-05-30T22:50:46.547Z", - "elasticPoolName": null, - "containmentState": 2, - "readScale": "Disabled", - "failoverGroupId": null - } - } - }, - "202": { } - } -} \ No newline at end of file + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases", + "location": "Japan East", + "kind": "v12.0,user", + "properties": { + "edition": "Standard", + "status": "Online", + "serviceLevelObjective": "S0", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-05-30T22:39:46.547Z", + "maxSizeBytes": "268435456000", + "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveName": "S0", + "sampleName": null, + "defaultSecondaryLocation": "Japan West", + "earliestRestoreDate": "2017-05-30T22:50:46.547Z", + "elasticPoolName": null, + "containmentState": 2, + "readScale": "Disabled", + "failoverGroupId": null + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateDroppedDatabaseRestoreToPointInTime.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateDroppedDatabaseRestoreToPointInTime.json index 8c6c5717b87e..1504f7b9cdb3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateDroppedDatabaseRestoreToPointInTime.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateDroppedDatabaseRestoreToPointInTime.json @@ -1,74 +1,74 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444 ", + "resourceGroupName": "sqlcrudtest-8412", + "serverName": "sqlcrudtest-3584", + "databaseName": "testdb", + "api-version": "2014-04-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444 ", - "resourceGroupName": "sqlcrudtest-8412", - "serverName": "sqlcrudtest-3584", - "databaseName": "testdb", - "api-version": "2014-04-01", - "parameters": { - "location": "Japan East", - "properties": { - "createMode": "Restore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444 /resourceGroups/sqlcrudtest-8412/providers/Microsoft.Sql/servers/sqlcrudtest-3782/restorableDroppedDatabases/sourcedb,131403269876900000", - "restorePointInTime": "2017-05-20T21:24:37.467Z" - } + "location": "Japan East", + "properties": { + "createMode": "Restore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444 /resourceGroups/sqlcrudtest-8412/providers/Microsoft.Sql/servers/sqlcrudtest-3782/restorableDroppedDatabases/sourcedb,131403269876900000", + "restorePointInTime": "2017-05-20T21:24:37.467Z" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases", + "location": "Japan East", + "kind": "v12.0,user", + "properties": { + "edition": "Standard", + "status": "Online", + "serviceLevelObjective": "S0", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-05-30T22:39:46.547Z", + "maxSizeBytes": "268435456000", + "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveName": "S0", + "sampleName": null, + "defaultSecondaryLocation": "Japan West", + "earliestRestoreDate": "2017-05-30T22:50:46.547Z", + "elasticPoolName": null, + "containmentState": 2, + "readScale": "Disabled", + "failoverGroupId": null } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases", - "location": "Japan East", - "kind": "v12.0,user", - "properties": { - "edition": "Standard", - "status": "Online", - "serviceLevelObjective": "S0", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-05-30T22:39:46.547Z", - "maxSizeBytes": "268435456000", - "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveName": "S0", - "sampleName": null, - "defaultSecondaryLocation": "Japan West", - "earliestRestoreDate": "2017-05-30T22:50:46.547Z", - "elasticPoolName": null, - "containmentState": 2, - "readScale": "Disabled", - "failoverGroupId": null - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases", - "location": "Japan East", - "kind": "v12.0,user", - "properties": { - "edition": "Standard", - "status": "Online", - "serviceLevelObjective": "S0", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-05-30T22:39:46.547Z", - "maxSizeBytes": "268435456000", - "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveName": "S0", - "sampleName": null, - "defaultSecondaryLocation": "Japan West", - "earliestRestoreDate": "2017-05-30T22:50:46.547Z", - "elasticPoolName": null, - "containmentState": 2, - "readScale": "Disabled", - "failoverGroupId": null - } - } - }, - "202": { } - } -} \ No newline at end of file + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases", + "location": "Japan East", + "kind": "v12.0,user", + "properties": { + "edition": "Standard", + "status": "Online", + "serviceLevelObjective": "S0", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-05-30T22:39:46.547Z", + "maxSizeBytes": "268435456000", + "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveName": "S0", + "sampleName": null, + "defaultSecondaryLocation": "Japan West", + "earliestRestoreDate": "2017-05-30T22:50:46.547Z", + "elasticPoolName": null, + "containmentState": 2, + "readScale": "Disabled", + "failoverGroupId": null + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateGeoRestore.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateGeoRestore.json index 8c1b5508f7db..a2d7dc784747 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateGeoRestore.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateGeoRestore.json @@ -1,73 +1,73 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444 ", + "resourceGroupName": "sqlcrudtest-8412", + "serverName": "sqlcrudtest-3584", + "databaseName": "testdb", + "api-version": "2014-04-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444 ", - "resourceGroupName": "sqlcrudtest-8412", - "serverName": "sqlcrudtest-3584", - "databaseName": "testdb", - "api-version": "2014-04-01", - "parameters": { - "location": "Japan East", - "properties": { - "createMode": "Recovery", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444 /resourceGroups/sqlcrudtest-8412/providers/Microsoft.Sql/servers/sqlcrudtest-3782/recoverableDatabases/sourcedb" - } + "location": "Japan East", + "properties": { + "createMode": "Recovery", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444 /resourceGroups/sqlcrudtest-8412/providers/Microsoft.Sql/servers/sqlcrudtest-3782/recoverableDatabases/sourcedb" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases", + "location": "Japan East", + "kind": "v12.0,user", + "properties": { + "edition": "Standard", + "status": "Online", + "serviceLevelObjective": "S0", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-05-30T22:39:46.547Z", + "maxSizeBytes": "268435456000", + "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveName": "S0", + "sampleName": null, + "defaultSecondaryLocation": "Japan West", + "earliestRestoreDate": "2017-05-30T22:50:46.547Z", + "elasticPoolName": null, + "containmentState": 2, + "readScale": "Disabled", + "failoverGroupId": null } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases", - "location": "Japan East", - "kind": "v12.0,user", - "properties": { - "edition": "Standard", - "status": "Online", - "serviceLevelObjective": "S0", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-05-30T22:39:46.547Z", - "maxSizeBytes": "268435456000", - "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveName": "S0", - "sampleName": null, - "defaultSecondaryLocation": "Japan West", - "earliestRestoreDate": "2017-05-30T22:50:46.547Z", - "elasticPoolName": null, - "containmentState": 2, - "readScale": "Disabled", - "failoverGroupId": null - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases", - "location": "Japan East", - "kind": "v12.0,user", - "properties": { - "edition": "Standard", - "status": "Online", - "serviceLevelObjective": "S0", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-05-30T22:39:46.547Z", - "maxSizeBytes": "268435456000", - "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveName": "S0", - "sampleName": null, - "defaultSecondaryLocation": "Japan West", - "earliestRestoreDate": "2017-05-30T22:50:46.547Z", - "elasticPoolName": null, - "containmentState": 2, - "readScale": "Disabled", - "failoverGroupId": null - } - } - }, - "202": { } - } -} \ No newline at end of file + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases", + "location": "Japan East", + "kind": "v12.0,user", + "properties": { + "edition": "Standard", + "status": "Online", + "serviceLevelObjective": "S0", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-05-30T22:39:46.547Z", + "maxSizeBytes": "268435456000", + "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveName": "S0", + "sampleName": null, + "defaultSecondaryLocation": "Japan West", + "earliestRestoreDate": "2017-05-30T22:50:46.547Z", + "elasticPoolName": null, + "containmentState": 2, + "readScale": "Disabled", + "failoverGroupId": null + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMaxSasKey.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMaxSasKey.json index 7bcd521c04df..ae29da51c4d6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMaxSasKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMaxSasKey.json @@ -5,37 +5,37 @@ "serverName": "sqlcrudtest-5961", "api-version": "2014-04-01", "parameters": { - "databaseName":"TestDbImport", - "edition":"Basic", - "serviceObjectiveName":"Basic", - "maxSizeBytes":"2147483648", - "storageKeyType":"SharedAccessKey", + "databaseName": "TestDbImport", + "edition": "Basic", + "serviceObjectiveName": "Basic", + "maxSizeBytes": "2147483648", + "storageKeyType": "SharedAccessKey", "storageKey": "?sr=b&sp=rw&se=2018-01-01T00%3A00%3A00Z&sig=sdfsdfklsdjflSLIFJLSIEJFLKSDJFDd/%2wdfskdjf3%3D&sv=2015-07-08", "storageUri": "https://test.blob.core.windows.net/bacpacs/testbacpac.bacpac", - "administratorLogin":"dummyLogin", - "administratorLoginPassword":"Un53cuRE!", - "authenticationType":"SQL" + "administratorLogin": "dummyLogin", + "administratorLoginPassword": "Un53cuRE!", + "authenticationType": "SQL" } }, "responses": { "200": { - "body":{ + "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/importExportOperationResult/f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "name": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "type": "Microsoft.Sql/servers/importExportOperationResults", "properties": { - "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", - "requestType": "Import", - "queuedTime": "3/1/2017 12:14:25 AM", - "lastModifiedTime": "3/1/2017 12:16:33 AM", - "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", - "serverName": "test", - "databaseName": "testdb", - "status": "Completed", - "errorMessage": null + "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", + "requestType": "Import", + "queuedTime": "3/1/2017 12:14:25 AM", + "lastModifiedTime": "3/1/2017 12:16:33 AM", + "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", + "serverName": "test", + "databaseName": "testdb", + "status": "Completed", + "errorMessage": null } } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMaxStorageKey.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMaxStorageKey.json index e7d8b999acdc..39f352e6a664 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMaxStorageKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMaxStorageKey.json @@ -5,37 +5,37 @@ "serverName": "sqlcrudtest-5961", "api-version": "2014-04-01", "parameters": { - "databaseName":"TestDbImport", - "edition":"Basic", - "serviceObjectiveName":"Basic", - "maxSizeBytes":"2147483648", - "storageKeyType":"StorageAccessKey", + "databaseName": "TestDbImport", + "edition": "Basic", + "serviceObjectiveName": "Basic", + "maxSizeBytes": "2147483648", + "storageKeyType": "StorageAccessKey", "storageKey": "sdlfkjdsf+sdlfkjsdlkfsjdfLDKFJSDLKFDFKLjsdfksjdflsdkfD2342309432849328479324/3RSD==", "storageUri": "https://test.blob.core.windows.net/bacpacs/testbacpac.bacpac", - "administratorLogin":"dummyLogin", - "administratorLoginPassword":"Un53cuRE!", - "authenticationType":"SQL" + "administratorLogin": "dummyLogin", + "administratorLoginPassword": "Un53cuRE!", + "authenticationType": "SQL" } }, "responses": { "200": { - "body":{ + "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/importExportOperationResult/f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "name": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "type": "Microsoft.Sql/servers/importExportOperationResults", "properties": { - "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", - "requestType": "Import", - "queuedTime": "3/1/2017 12:14:25 AM", - "lastModifiedTime": "3/1/2017 12:16:33 AM", - "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", - "serverName": "test", - "databaseName": "testdb", - "status": "Completed", - "errorMessage": null + "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", + "requestType": "Import", + "queuedTime": "3/1/2017 12:14:25 AM", + "lastModifiedTime": "3/1/2017 12:16:33 AM", + "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", + "serverName": "test", + "databaseName": "testdb", + "status": "Completed", + "errorMessage": null } } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMinSasKey.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMinSasKey.json index 32fcf7899c87..3770568296df 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMinSasKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMinSasKey.json @@ -5,36 +5,36 @@ "serverName": "sqlcrudtest-5961", "api-version": "2014-04-01", "parameters": { - "databaseName":"TestDbImport", - "edition":"Basic", - "serviceObjectiveName":"Basic", - "maxSizeBytes":"2147483648", - "storageKeyType":"SharedAccessKey", + "databaseName": "TestDbImport", + "edition": "Basic", + "serviceObjectiveName": "Basic", + "maxSizeBytes": "2147483648", + "storageKeyType": "SharedAccessKey", "storageKey": "?sr=b&sp=rw&se=2018-01-01T00%3A00%3A00Z&sig=sdfsdfklsdjflSLIFJLSIEJFLKSDJFDd/%2wdfskdjf3%3D&sv=2015-07-08", "storageUri": "https://test.blob.core.windows.net/bacpacs/testbacpac.bacpac", - "administratorLogin":"dummyLogin", - "administratorLoginPassword":"Un53cuRE!" + "administratorLogin": "dummyLogin", + "administratorLoginPassword": "Un53cuRE!" } }, "responses": { "200": { - "body":{ + "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/importExportOperationResult/f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "name": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "type": "Microsoft.Sql/servers/importExportOperationResults", "properties": { - "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", - "requestType": "Import", - "queuedTime": "3/1/2017 12:14:25 AM", - "lastModifiedTime": "3/1/2017 12:16:33 AM", - "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", - "serverName": "test", - "databaseName": "testdb", - "status": "Completed", - "errorMessage": null + "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", + "requestType": "Import", + "queuedTime": "3/1/2017 12:14:25 AM", + "lastModifiedTime": "3/1/2017 12:16:33 AM", + "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", + "serverName": "test", + "databaseName": "testdb", + "status": "Completed", + "errorMessage": null } } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMinStorageKey.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMinStorageKey.json index adbfd19b4545..15235cf1d90c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMinStorageKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateImportMinStorageKey.json @@ -5,36 +5,36 @@ "serverName": "sqlcrudtest-5961", "api-version": "2014-04-01", "parameters": { - "databaseName":"TestDbImport", - "edition":"Basic", - "serviceObjectiveName":"Basic", - "maxSizeBytes":"2147483648", - "storageKeyType":"StorageAccessKey", + "databaseName": "TestDbImport", + "edition": "Basic", + "serviceObjectiveName": "Basic", + "maxSizeBytes": "2147483648", + "storageKeyType": "StorageAccessKey", "storageKey": "sdlfkjdsf+sdlfkjsdlkfsjdfLDKFJSDLKFDFKLjsdfksjdflsdkfD2342309432849328479324/3RSD==", "storageUri": "https://test.blob.core.windows.net/bacpacs/testbacpac.bacpac", - "administratorLogin":"dummyLogin", - "administratorLoginPassword":"Un53cuRE!" + "administratorLogin": "dummyLogin", + "administratorLoginPassword": "Un53cuRE!" } }, "responses": { "200": { - "body":{ + "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/importExportOperationResult/f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "name": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "type": "Microsoft.Sql/servers/importExportOperationResults", "properties": { - "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", - "requestType": "Import", - "queuedTime": "3/1/2017 12:14:25 AM", - "lastModifiedTime": "3/1/2017 12:16:33 AM", - "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", - "serverName": "test", - "databaseName": "testdb", - "status": "Completed", - "errorMessage": null + "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", + "requestType": "Import", + "queuedTime": "3/1/2017 12:14:25 AM", + "lastModifiedTime": "3/1/2017 12:16:33 AM", + "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", + "serverName": "test", + "databaseName": "testdb", + "status": "Completed", + "errorMessage": null } } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateLongTermRetentionRestore.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateLongTermRetentionRestore.json index 50318a5c6b78..c2e5325789aa 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateLongTermRetentionRestore.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateLongTermRetentionRestore.json @@ -1,73 +1,73 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444 ", + "resourceGroupName": "sqlcrudtest-8412", + "serverName": "sqlcrudtest-3584", + "databaseName": "testdb", + "api-version": "2014-04-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444 ", - "resourceGroupName": "sqlcrudtest-8412", - "serverName": "sqlcrudtest-3584", - "databaseName": "testdb", - "api-version": "2014-04-01", - "parameters": { - "location": "Japan East", - "properties": { - "createMode": "RestoreLongTermRetentionBackup", - "recoveryServicesRecoveryPointResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444 /resourceGroups/sqlcrudtest-8412/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/AzureSqlContainer;Sql;sqlcrudtest-8412;testsvr/protectedItems/AzureSqlDb;dsName;testdb;9dafcc99-7c84-4727-88ee-1a4fdb89afd7/RecoveryPoints/16043455089734" - } + "location": "Japan East", + "properties": { + "createMode": "RestoreLongTermRetentionBackup", + "recoveryServicesRecoveryPointResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444 /resourceGroups/sqlcrudtest-8412/providers/Microsoft.RecoveryServices/vaults/testVault/backupFabrics/Azure/protectionContainers/AzureSqlContainer;Sql;sqlcrudtest-8412;testsvr/protectedItems/AzureSqlDb;dsName;testdb;9dafcc99-7c84-4727-88ee-1a4fdb89afd7/RecoveryPoints/16043455089734" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases", + "location": "Japan East", + "kind": "v12.0,user", + "properties": { + "edition": "Standard", + "status": "Online", + "serviceLevelObjective": "S0", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-05-30T22:39:46.547Z", + "maxSizeBytes": "268435456000", + "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveName": "S0", + "sampleName": null, + "defaultSecondaryLocation": "Japan West", + "earliestRestoreDate": "2017-05-30T22:50:46.547Z", + "elasticPoolName": null, + "containmentState": 2, + "readScale": "Disabled", + "failoverGroupId": null } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases", - "location": "Japan East", - "kind": "v12.0,user", - "properties": { - "edition": "Standard", - "status": "Online", - "serviceLevelObjective": "S0", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-05-30T22:39:46.547Z", - "maxSizeBytes": "268435456000", - "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveName": "S0", - "sampleName": null, - "defaultSecondaryLocation": "Japan West", - "earliestRestoreDate": "2017-05-30T22:50:46.547Z", - "elasticPoolName": null, - "containmentState": 2, - "readScale": "Disabled", - "failoverGroupId": null - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases", - "location": "Japan East", - "kind": "v12.0,user", - "properties": { - "edition": "Standard", - "status": "Online", - "serviceLevelObjective": "S0", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "creationDate": "2017-05-30T22:39:46.547Z", - "maxSizeBytes": "268435456000", - "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveName": "S0", - "sampleName": null, - "defaultSecondaryLocation": "Japan West", - "earliestRestoreDate": "2017-05-30T22:50:46.547Z", - "elasticPoolName": null, - "containmentState": 2, - "readScale": "Disabled", - "failoverGroupId": null - } - } - }, - "202": { } - } -} \ No newline at end of file + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases", + "location": "Japan East", + "kind": "v12.0,user", + "properties": { + "edition": "Standard", + "status": "Online", + "serviceLevelObjective": "S0", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "creationDate": "2017-05-30T22:39:46.547Z", + "maxSizeBytes": "268435456000", + "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveName": "S0", + "sampleName": null, + "defaultSecondaryLocation": "Japan West", + "earliestRestoreDate": "2017-05-30T22:50:46.547Z", + "elasticPoolName": null, + "containmentState": 2, + "readScale": "Disabled", + "failoverGroupId": null + } + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateMax.json index 6ccc14114e0e..1599f1836ac7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateMax.json @@ -6,8 +6,36 @@ "databaseName": "testdb", "api-version": "2014-04-01", "parameters": { - "location": "Japan East", + "location": "Japan East", "properties": { + "databaseId": "816c5f7e-0e36-4eec-9c51-eee7a276c14c", + "edition": "Standard", + "status": "Online", + "createMode": "Default", + "serviceLevelObjective": "S0", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": "268435456000", + "creationDate": "2017-02-10T01:37:18.847Z", + "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveName": "S0", + "defaultSecondaryLocation": "Japan West", + "earliestRestoreDate": "2017-02-10T01:48:08.237Z", + "containmentState": 2, + "readScale": "Disabled", + "sampleName": "AdventureWorksLT" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases", + "location": "Japan East", + "kind": "v12.0,user", + "properties": { "databaseId": "816c5f7e-0e36-4eec-9c51-eee7a276c14c", "edition": "Standard", "status": "Online", @@ -19,42 +47,14 @@ "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", "requestedServiceObjectiveName": "S0", + "sampleName": null, + "sourceDatabaseId": null, "defaultSecondaryLocation": "Japan West", "earliestRestoreDate": "2017-02-10T01:48:08.237Z", + "elasticPoolName": null, "containmentState": 2, "readScale": "Disabled", - "sampleName": "AdventureWorksLT" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases", - "location": "Japan East", - "kind": "v12.0,user", - "properties": { - "databaseId": "816c5f7e-0e36-4eec-9c51-eee7a276c14c", - "edition": "Standard", - "status": "Online", - "createMode": "Default", - "serviceLevelObjective": "S0", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": "268435456000", - "creationDate": "2017-02-10T01:37:18.847Z", - "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveName": "S0", - "sampleName": null, - "sourceDatabaseId": null, - "defaultSecondaryLocation": "Japan West", - "earliestRestoreDate": "2017-02-10T01:48:08.237Z", - "elasticPoolName": null, - "containmentState": 2, - "readScale": "Disabled", - "failoverGroupId": null + "failoverGroupId": null } } }, @@ -65,29 +65,29 @@ "type": "Microsoft.Sql/servers/databases", "location": "Japan East", "kind": "v12.0,user", - "properties": { - "databaseId": "816c5f7e-0e36-4eec-9c51-eee7a276c14c", - "edition": "Standard", - "status": "Online", - "createMode": "Default", - "serviceLevelObjective": "S0", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": "268435456000", - "creationDate": "2017-02-10T01:37:18.847Z", - "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "requestedServiceObjectiveName": "S0", - "sampleName": null, - "sourceDatabaseId": null, - "defaultSecondaryLocation": "Japan West", - "earliestRestoreDate": "2017-02-10T01:48:08.237Z", - "elasticPoolName": null, - "containmentState": 2, - "readScale": "Disabled", - "failoverGroupId": null - } + "properties": { + "databaseId": "816c5f7e-0e36-4eec-9c51-eee7a276c14c", + "edition": "Standard", + "status": "Online", + "createMode": "Default", + "serviceLevelObjective": "S0", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": "268435456000", + "creationDate": "2017-02-10T01:37:18.847Z", + "currentServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "requestedServiceObjectiveName": "S0", + "sampleName": null, + "sourceDatabaseId": null, + "defaultSecondaryLocation": "Japan West", + "earliestRestoreDate": "2017-02-10T01:48:08.237Z", + "elasticPoolName": null, + "containmentState": 2, + "readScale": "Disabled", + "failoverGroupId": null + } } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateMin.json index 5986645454ae..9406eb7c4365 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateMin.json @@ -66,4 +66,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateNonReadableSecondary.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateNonReadableSecondary.json index 1a74b5093799..4aee16e4db00 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateNonReadableSecondary.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateNonReadableSecondary.json @@ -6,10 +6,10 @@ "databaseName": "testdb", "api-version": "2014-04-01", "parameters": { - "location": "Japan East", + "location": "Japan East", "properties": { - "createMode": "NonReadableSecondary", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb" + "createMode": "NonReadableSecondary", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb" } } }, @@ -70,4 +70,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateOnlineSecondary.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateOnlineSecondary.json index c913482568f9..5d10425dc333 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateOnlineSecondary.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateOnlineSecondary.json @@ -6,10 +6,10 @@ "databaseName": "testdb", "api-version": "2014-04-01", "parameters": { - "location": "Japan East", + "location": "Japan East", "properties": { - "createMode": "OnlineSecondary", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb" + "createMode": "OnlineSecondary", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb" } } }, @@ -70,4 +70,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateOrUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateOrUpdateMin.json index 5986645454ae..9406eb7c4365 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateOrUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateOrUpdateMin.json @@ -66,4 +66,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreatePointInTimeRestore.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreatePointInTimeRestore.json index ea681d075680..94ff5fb8c770 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreatePointInTimeRestore.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreatePointInTimeRestore.json @@ -6,11 +6,11 @@ "databaseName": "testdb", "api-version": "2014-04-01", "parameters": { - "location": "Japan East", + "location": "Japan East", "properties": { - "createMode": "PointInTimeRestore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444 /resourceGroups/sqlcrudtest-8412/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", - "restorePointInTime": "2017-02-16T21:24:37.467Z" + "createMode": "PointInTimeRestore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444 /resourceGroups/sqlcrudtest-8412/providers/Microsoft.Sql/servers/sqlcrudtest-3782/databases/testdb", + "restorePointInTime": "2017-02-16T21:24:37.467Z" } } }, @@ -71,4 +71,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseDelete.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseDelete.json index 875964938a23..7303a40a620e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseExportSasKey.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseExportSasKey.json index edeca0c7b448..cced7d291c92 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseExportSasKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseExportSasKey.json @@ -6,7 +6,7 @@ "databaseName": "testdb", "api-version": "2014-04-01", "parameters": { - "storageKeyType":"SharedAccessKey", + "storageKeyType": "SharedAccessKey", "storageKey": "?sr=b&sp=rw&se=2018-01-01T00%3A00%3A00Z&sig=sdfsdfklsdjflSLIFJLSIEJFLKSDJFDd/%2wdfskdjf3%3D&sv=2015-07-08", "storageUri": "https://test.blob.core.windows.net/bacpacs/testbacpac.bacpac", "administratorLogin": "dummyLogin", @@ -15,22 +15,22 @@ } }, "responses": { - "200":{ + "200": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/importExportOperationResult/f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "name": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "type": "Microsoft.Sql/servers/importExportOperationResults", "properties": { - "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", - "requestType": "Export", - "queuedTime": "3/1/2017 12:14:25 AM", - "lastModifiedTime": "3/1/2017 12:16:33 AM", - "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", - "serverName": "test", - "databaseName": "testdb", - "status": "Completed", - "errorMessage": null + "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", + "requestType": "Export", + "queuedTime": "3/1/2017 12:14:25 AM", + "lastModifiedTime": "3/1/2017 12:16:33 AM", + "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", + "serverName": "test", + "databaseName": "testdb", + "status": "Completed", + "errorMessage": null } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseExportStorageKey.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseExportStorageKey.json index 9efc8dc75d80..8de83c9443e1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseExportStorageKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseExportStorageKey.json @@ -15,22 +15,22 @@ } }, "responses": { - "200":{ + "200": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/importExportOperationResult/f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "name": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "type": "Microsoft.Sql/servers/importExportOperationResults", "properties": { - "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", - "requestType": "Export", - "queuedTime": "3/1/2017 12:14:25 AM", - "lastModifiedTime": "3/1/2017 12:16:33 AM", - "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", - "serverName": "test", - "databaseName": "testdb", - "status": "Completed", - "errorMessage": null + "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", + "requestType": "Export", + "queuedTime": "3/1/2017 12:14:25 AM", + "lastModifiedTime": "3/1/2017 12:16:33 AM", + "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", + "serverName": "test", + "databaseName": "testdb", + "status": "Completed", + "errorMessage": null } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGet.json index adae2c92c872..1701ecb16efa 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGet.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGetByElasticPool.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGetByElasticPool.json index 615574a6f58e..78fdb21ce58c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGetByElasticPool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGetByElasticPool.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGetByRecommendedElasticPool.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGetByRecommendedElasticPool.json index 173a07dd48d0..ee83728303aa 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGetByRecommendedElasticPool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseGetByRecommendedElasticPool.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseList.json index 2af0e12c1782..0b70e9a9e671 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseList.json @@ -143,4 +143,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListByElasticPool.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListByElasticPool.json index 0b722d270f22..d9b13cbac3bf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListByElasticPool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListByElasticPool.json @@ -144,4 +144,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListByRecommendedElasticPool.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListByRecommendedElasticPool.json index 470517fecccb..cd2f4775fecc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListByRecommendedElasticPool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListByRecommendedElasticPool.json @@ -144,4 +144,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListWithFilter.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListWithFilter.json index fc41a2f6d3e3..e94b0d44bc6a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListWithFilter.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseListWithFilter.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseMetricsDefinitionsList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseMetricsDefinitionsList.json index 5f8a52170030..c5dc94e03034 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseMetricsDefinitionsList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseMetricsDefinitionsList.json @@ -11,393 +11,393 @@ "200": { "body": { "value": [ - { - "name": { - "value": "cpu_percent", - "localizedValue": "CPU percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT15S", - "retention": "PT1H" - }, - { - "timeGrain": "PT60S", - "retention": "PT1H" - }, - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + { + "name": { + "value": "cpu_percent", + "localizedValue": "CPU percentage" }, - { - "name": { - "value": "physical_data_read_percent", - "localizedValue": "Data IO percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT15S", - "retention": "PT1H" - }, - { - "timeGrain": "PT60S", - "retention": "PT1H" - }, - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT15S", + "retention": "PT1H" + }, + { + "timeGrain": "PT60S", + "retention": "PT1H" + }, + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "physical_data_read_percent", + "localizedValue": "Data IO percentage" }, - { - "name": { - "value": "log_write_percent", - "localizedValue": "Log IO percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT15S", - "retention": "PT1H" - }, - { - "timeGrain": "PT60S", - "retention": "PT1H" - }, - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT15S", + "retention": "PT1H" + }, + { + "timeGrain": "PT60S", + "retention": "PT1H" + }, + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "log_write_percent", + "localizedValue": "Log IO percentage" }, - { - "name": { - "value": "dtu_consumption_percent", - "localizedValue": "DTU percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT15S", - "retention": "PT1H" - }, - { - "timeGrain": "PT60S", - "retention": "PT1H" - }, - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT15S", + "retention": "PT1H" + }, + { + "timeGrain": "PT60S", + "retention": "PT1H" + }, + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "dtu_consumption_percent", + "localizedValue": "DTU percentage" }, - { - "name": { - "value": "storage", - "localizedValue": "Total database size" - }, - "unit": "Bytes", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Maximum", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT15S", + "retention": "PT1H" + }, + { + "timeGrain": "PT60S", + "retention": "PT1H" + }, + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "storage", + "localizedValue": "Total database size" }, - { - "name": { - "value": "xtp_storage_percent", - "localizedValue": "In-Memory OLTP storage percent" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT15S", - "retention": "PT1H" - }, - { - "timeGrain": "PT60S", - "retention": "PT1H" - }, - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Bytes", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Maximum", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "xtp_storage_percent", + "localizedValue": "In-Memory OLTP storage percent" }, - { - "name": { - "value": "workers_percent", - "localizedValue": "Workers percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT15S", + "retention": "PT1H" + }, + { + "timeGrain": "PT60S", + "retention": "PT1H" + }, + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "workers_percent", + "localizedValue": "Workers percentage" }, - { - "name": { - "value": "sessions_percent", - "localizedValue": "Sessions percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "sessions_percent", + "localizedValue": "Sessions percentage" + }, + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "dtu_limit", + "localizedValue": "DTU limit" }, - { - "name": { - "value": "dtu_limit", - "localizedValue": "DTU limit" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "dtu_used", + "localizedValue": "DTU used" }, - { - "name": { - "value": "dtu_used", - "localizedValue": "DTU used" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "connection_successful", + "localizedValue": "Successful Connections" }, - { - "name": { - "value": "connection_successful", - "localizedValue": "Successful Connections" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Total", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "connection_failed", + "localizedValue": "Failed Connections" }, - { - "name": { - "value": "connection_failed", - "localizedValue": "Failed Connections" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Total", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "blocked_by_firewall", + "localizedValue": "Blocked by Firewall" }, - { - "name": { - "value": "blocked_by_firewall", - "localizedValue": "Blocked by Firewall" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Total", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "deadlock", + "localizedValue": "Deadlocks" }, - { - "name": { - "value": "deadlock", - "localizedValue": "Deadlocks" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Total", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "storage_percent", + "localizedValue": "Database size percentage" }, - { - "name": { - "value": "storage_percent", - "localizedValue": "Database size percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Maximum", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] - } + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Maximum", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseMetricsListWithFilter.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseMetricsListWithFilter.json index cdb79af0aae1..b612d0a06985 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseMetricsListWithFilter.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseMetricsListWithFilter.json @@ -11,44 +11,44 @@ "200": { "body": { "value": [ - { - "name": { - "value": "cpu_percent", - "localizedValue": "CPU percentage" + { + "name": { + "value": "cpu_percent", + "localizedValue": "CPU percentage" + }, + "unit": "percent", + "timeGrain": "00:10:00", + "startTime": "2017-06-02T18:35:00Z", + "endTime": "2017-06-02T18:55:00Z", + "metricValues": [ + { + "timestamp": "2017-06-02T18:30:01Z", + "average": 0, + "minimum": 0, + "maximum": 0, + "total": 0, + "count": 1 }, - "unit": "percent", - "timeGrain": "00:10:00", - "startTime": "2017-06-02T18:35:00Z", - "endTime": "2017-06-02T18:55:00Z", - "metricValues": [ - { - "timestamp": "2017-06-02T18:30:01Z", - "average": 0, - "minimum": 0, - "maximum": 0, - "total": 0, - "count": 1 - }, - { - "timestamp": "2017-06-02T18:40:01Z", - "average": 0, - "minimum": 0, - "maximum": 0, - "total": 0, - "count": 1 - }, - { - "timestamp": "2017-06-02T18:50:01Z", - "average": 0, - "minimum": 0, - "maximum": 0, - "total": 0, - "count": 1 - } - ] - } + { + "timestamp": "2017-06-02T18:40:01Z", + "average": 0, + "minimum": 0, + "maximum": 0, + "total": 0, + "count": 1 + }, + { + "timestamp": "2017-06-02T18:50:01Z", + "average": 0, + "minimum": 0, + "maximum": 0, + "total": 0, + "count": 1 + } + ] + } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabasePause.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabasePause.json index e478bb40abed..b8c8d3d0e1b3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabasePause.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabasePause.json @@ -7,9 +7,7 @@ "api-version": "2014-04-01" }, "responses": { - "200": { - }, - "202": { - } + "200": {}, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseRestorePointsList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseRestorePointsList.json index 823fc44c78b9..fe6e1fe1db6a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseRestorePointsList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseRestorePointsList.json @@ -1,28 +1,28 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"sqlcrudtest-6730", - "serverName":"sqlcrudtest-9007", - "databaseName":"3481", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6730", + "serverName": "sqlcrudtest-9007", + "databaseName": "3481", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/restorepoints/ContinuousRestorePoint", - "name":"ContinuousRestorePoint", - "location":"West US", - "type":"Microsoft.Sql/servers/databases/restorePoints", - "properties":{ - "restorePointType":"CONTINUOUS", - "earliestRestoreDate":"2017-06-12T00:00:00Z", - "restorePointCreationDate":null + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/restorepoints/ContinuousRestorePoint", + "name": "ContinuousRestorePoint", + "location": "West US", + "type": "Microsoft.Sql/servers/databases/restorePoints", + "properties": { + "restorePointType": "CONTINUOUS", + "earliestRestoreDate": "2017-06-12T00:00:00Z", + "restorePointCreationDate": null } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseResume.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseResume.json index e478bb40abed..b8c8d3d0e1b3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseResume.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseResume.json @@ -7,9 +7,7 @@ "api-version": "2014-04-01" }, "responses": { - "200": { - }, - "202": { - } + "200": {}, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMax.json index a929ffd7ffc8..f400fc890107 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMax.json @@ -7,16 +7,16 @@ "securityAlertPolicyName": "default", "api-version": "2014-04-01", "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": "Enabled", - "emailAddresses": "test@microsoft.com;user@microsoft.com", - "disabledAlerts": "Sql_Injection;Usage_Anomaly;", - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Enabled" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": "Enabled", + "emailAddresses": "test@microsoft.com;user@microsoft.com", + "disabledAlerts": "Sql_Injection;Usage_Anomaly;", + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Enabled" + } } }, "responses": { @@ -27,14 +27,14 @@ "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", "properties": { - "state": "Enabled", - "emailAccountAdmins": "Enabled", - "emailAddresses": "test@microsoft.com;user@microsoft.com", - "disabledAlerts": "Sql_Injection;Usage_Anomaly", - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Enabled" + "state": "Enabled", + "emailAccountAdmins": "Enabled", + "emailAddresses": "test@microsoft.com;user@microsoft.com", + "disabledAlerts": "Sql_Injection;Usage_Anomaly", + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Enabled" } } }, @@ -45,16 +45,16 @@ "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", "properties": { - "state": "Enabled", - "emailAccountAdmins": "Enabled", - "emailAddresses": "test@microsoft.com;user@microsoft.com", - "disabledAlerts": "Access_Anomaly;Usage_Anomaly", - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Enabled" + "state": "Enabled", + "emailAccountAdmins": "Enabled", + "emailAddresses": "test@microsoft.com;user@microsoft.com", + "disabledAlerts": "Access_Anomaly;Usage_Anomaly", + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Enabled" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMin.json index e12a7fd98bbd..a090696a831d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMin.json @@ -21,15 +21,15 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "Enabled", - "emailAddresses": "", - "disabledAlerts": "", - "retentionDays": 0, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Enabled" + "properties": { + "state": "Enabled", + "emailAccountAdmins": "Enabled", + "emailAddresses": "", + "disabledAlerts": "", + "retentionDays": 0, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Enabled" } } }, @@ -39,17 +39,17 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "Enabled", - "emailAddresses": "", - "disabledAlerts": "", - "retentionDays": 0, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Enabled" + "properties": { + "state": "Enabled", + "emailAccountAdmins": "Enabled", + "emailAddresses": "", + "disabledAlerts": "", + "retentionDays": 0, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Enabled" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertGet.json index 06978579a18f..2b705fb24bda 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertGet.json @@ -9,23 +9,23 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "location": "Japan East", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "Enabled", - "emailAddresses": "test@microsoft.com;user@microsoft.com", - "disabledAlerts": "Usage_Anomaly", - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "", - "useServerDefault": "Enabled" - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", + "location": "Japan East", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "Enabled", + "emailAddresses": "test@microsoft.com;user@microsoft.com", + "disabledAlerts": "Usage_Anomaly", + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "", + "useServerDefault": "Enabled" } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyCreateOrUpdate.json index 05e8a743d163..0f8d7ea2c801 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyCreateOrUpdate.json @@ -1,36 +1,36 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"blobauditingtest-6852", - "serverName":"blobauditingtest-2080", - "databaseName":"testdb", - "tableAuditingPolicyName":"default", - "parameters": { }, - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-6852", + "serverName": "blobauditingtest-2080", + "databaseName": "testdb", + "tableAuditingPolicyName": "default", + "parameters": {}, + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", - "name":"Default", - "type":"Microsoft.Sql/servers/databases/auditingPolicies", - "location":"West US", - "kind":null, - "properties":{ - "auditingState":"New", - "eventTypesToAudit":"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", - "storageAccountName":null, - "storageAccountKey":null, - "storageAccountSecondaryKey":null, - "storageTableEndpoint":null, - "storageAccountResourceGroupName":null, - "storageAccountSubscriptionId":null, - "useServerDefault":"Enabled", - "fullAuditLogsTableName":"SQLDBAuditLogsBlobauditingtest2080Testdb", - "auditLogsTableName":"Blobauditingtest2080Testdb", - "retentionDays":"0" + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/auditingPolicies", + "location": "West US", + "kind": null, + "properties": { + "auditingState": "New", + "eventTypesToAudit": "PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", + "storageAccountName": null, + "storageAccountKey": null, + "storageAccountSecondaryKey": null, + "storageTableEndpoint": null, + "storageAccountResourceGroupName": null, + "storageAccountSubscriptionId": null, + "useServerDefault": "Enabled", + "fullAuditLogsTableName": "SQLDBAuditLogsBlobauditingtest2080Testdb", + "auditLogsTableName": "Blobauditingtest2080Testdb", + "retentionDays": "0" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyGet.json index 53d165153706..829772eeae89 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyGet.json @@ -1,35 +1,35 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"blobauditingtest-6852", - "serverName":"blobauditingtest-2080", - "databaseName":"testdb", - "tableAuditingPolicyName":"default", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-6852", + "serverName": "blobauditingtest-2080", + "databaseName": "testdb", + "tableAuditingPolicyName": "default", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", - "name":"Default", - "type":"Microsoft.Sql/servers/databases/auditingPolicies", - "location":"West US", - "kind":null, - "properties":{ - "auditingState":"New", - "eventTypesToAudit":"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", - "storageAccountName":null, - "storageAccountKey":null, - "storageAccountSecondaryKey":null, - "storageTableEndpoint":null, - "storageAccountResourceGroupName":null, - "storageAccountSubscriptionId":null, - "useServerDefault":"Enabled", - "fullAuditLogsTableName":"SQLDBAuditLogsBlobauditingtest2080Testdb", - "auditLogsTableName":"Blobauditingtest2080Testdb", - "retentionDays":"0" + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/auditingPolicies", + "location": "West US", + "kind": null, + "properties": { + "auditingState": "New", + "eventTypesToAudit": "PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", + "storageAccountName": null, + "storageAccountKey": null, + "storageAccountSecondaryKey": null, + "storageTableEndpoint": null, + "storageAccountResourceGroupName": null, + "storageAccountSubscriptionId": null, + "useServerDefault": "Enabled", + "fullAuditLogsTableName": "SQLDBAuditLogsBlobauditingtest2080Testdb", + "auditLogsTableName": "Blobauditingtest2080Testdb", + "retentionDays": "0" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyList.json index 24ed1d9dad99..9fcc8e81438f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTableAuditingPolicyList.json @@ -1,39 +1,39 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"blobauditingtest-6852", - "serverName":"blobauditingtest-2080", - "databaseName":"testdb", - "tableAuditingPolicyName":"default", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-6852", + "serverName": "blobauditingtest-2080", + "databaseName": "testdb", + "tableAuditingPolicyName": "default", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", - "name":"Default", - "type":"Microsoft.Sql/servers/databases/auditingPolicies", - "location":"West US", - "kind":null, - "properties":{ - "auditingState":"New", - "eventTypesToAudit":"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", - "storageAccountName":null, - "storageAccountKey":null, - "storageAccountSecondaryKey":null, - "storageTableEndpoint":null, - "storageAccountResourceGroupName":null, - "storageAccountSubscriptionId":null, - "useServerDefault":"Enabled", - "fullAuditLogsTableName":"SQLDBAuditLogsBlobauditingtest2080Testdb", - "auditLogsTableName":"Blobauditingtest2080Testdb", - "retentionDays":"0" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/auditingPolicies", + "location": "West US", + "kind": null, + "properties": { + "auditingState": "New", + "eventTypesToAudit": "PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", + "storageAccountName": null, + "storageAccountKey": null, + "storageAccountSecondaryKey": null, + "storageTableEndpoint": null, + "storageAccountResourceGroupName": null, + "storageAccountSubscriptionId": null, + "useServerDefault": "Enabled", + "fullAuditLogsTableName": "SQLDBAuditLogsBlobauditingtest2080Testdb", + "auditLogsTableName": "Blobauditingtest2080Testdb", + "retentionDays": "0" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionActivityList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionActivityList.json index 423631f213f0..54993dacf6c7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionActivityList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionActivityList.json @@ -1,28 +1,28 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"sqlcrudtest-6852", - "serverName":"sqlcrudtest-2080", - "databaseName":"sqlcrudtest-9187", - "transparentDataEncryptionName":"current", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-9187", + "transparentDataEncryptionName": "current", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "properties":{ - "status":"Encrypting", - "percentComplete":100 + "properties": { + "status": "Encrypting", + "percentComplete": 100 }, - "name":"current", - "location":"West US", - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/transparentDataEncryption/current/operationResults/current", - "type":"Microsoft.Sql/servers/databases/transparentDataEncryption/operationResults" + "name": "current", + "location": "West US", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/transparentDataEncryption/current/operationResults/current", + "type": "Microsoft.Sql/servers/databases/transparentDataEncryption/operationResults" } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionCreateOrUpdate.json index 690796976cab..86ac32fe594b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionCreateOrUpdate.json @@ -15,25 +15,25 @@ "responses": { "200": { "body": { - "name" : "current", - "location" : "North Europe", - "id" : "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/transparentDataEncryption/current", - "type" : "Microsoft.Sql/servers/databases/transparentDataEncryption", - "properties" : { - "status" : "Enabled" + "name": "current", + "location": "North Europe", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/transparentDataEncryption/current", + "type": "Microsoft.Sql/servers/databases/transparentDataEncryption", + "properties": { + "status": "Enabled" } } }, "201": { "body": { - "name" : "current", - "location" : "North Europe", - "id" : "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/transparentDataEncryption/current", - "type" : "Microsoft.Sql/servers/databases/transparentDataEncryption", - "properties" : { - "status" : "Enabled" + "name": "current", + "location": "North Europe", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/transparentDataEncryption/current", + "type": "Microsoft.Sql/servers/databases/transparentDataEncryption", + "properties": { + "status": "Enabled" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionGet.json index 689f2959d3e9..3097c2bdeffb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionGet.json @@ -10,14 +10,14 @@ "responses": { "200": { "body": { - "name" : "current", - "location" : "North Europe", - "id" : "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/transparentDataEncryption/current", - "type" : "Microsoft.Sql/servers/databases/transparentDataEncryption", - "properties" : { - "status" : "Enabled" + "name": "current", + "location": "North Europe", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/transparentDataEncryption/current", + "type": "Microsoft.Sql/servers/databases/transparentDataEncryption", + "properties": { + "status": "Enabled" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionList.json index 42ec4fd77613..4687df27d5cc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseTransparentDataEncryptionList.json @@ -11,16 +11,16 @@ "body": { "value": [ { - "name" : "current", - "location" : "North Europe", - "id" : "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/transparentDataEncryption/current", - "type" : "Microsoft.Sql/servers/databases/transparentDataEncryption", - "properties" : { - "status" : "Enabled" + "name": "current", + "location": "North Europe", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/transparentDataEncryption/current", + "type": "Microsoft.Sql/servers/databases/transparentDataEncryption", + "properties": { + "status": "Enabled" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateElasticPool.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateElasticPool.json index 04289daea9bf..76f4d16f02f8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateElasticPool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateElasticPool.json @@ -67,4 +67,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMaxSasKey.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMaxSasKey.json index 032335ee9e75..07a4271a93d0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMaxSasKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMaxSasKey.json @@ -11,7 +11,7 @@ "type": "Microsoft.Sql/servers/databases/extensions", "properties": { "operationMode": "Import", - "storageKeyType":"SharedAccessKey", + "storageKeyType": "SharedAccessKey", "storageKey": "?sr=b&sp=rw&se=2018-01-01T00%3A00%3A00Z&sig=sdfsdfklsdjflSLIFJLSIEJFLKSDJFDd/%2wdfskdjf3%3D&sv=2015-07-08", "storageUri": "https://test.blob.core.windows.net/bacpacs/testbacpac.bacpac", "administratorLogin": "dummyLogin", @@ -22,23 +22,23 @@ }, "responses": { "201": { - "body":{ + "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/importExportOperationResult/f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "name": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "type": "Microsoft.Sql/servers/importExportOperationResults", "properties": { - "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", - "requestType": "Import", - "queuedTime": "3/1/2017 12:14:25 AM", - "lastModifiedTime": "3/1/2017 12:16:33 AM", - "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", - "serverName": "test", - "databaseName": "testdb", - "status": "Completed", - "errorMessage": null + "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", + "requestType": "Import", + "queuedTime": "3/1/2017 12:14:25 AM", + "lastModifiedTime": "3/1/2017 12:16:33 AM", + "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", + "serverName": "test", + "databaseName": "testdb", + "status": "Completed", + "errorMessage": null } } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMaxStorageKey.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMaxStorageKey.json index 0f2dd94966c3..4faa1a150fd5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMaxStorageKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMaxStorageKey.json @@ -22,23 +22,23 @@ }, "responses": { "201": { - "body":{ + "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/importExportOperationResult/f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "name": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "type": "Microsoft.Sql/servers/importExportOperationResults", "properties": { - "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", - "requestType": "Import", - "queuedTime": "3/1/2017 12:14:25 AM", - "lastModifiedTime": "3/1/2017 12:16:33 AM", - "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", - "serverName": "test", - "databaseName": "testdb", - "status": "Completed", - "errorMessage": null + "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", + "requestType": "Import", + "queuedTime": "3/1/2017 12:14:25 AM", + "lastModifiedTime": "3/1/2017 12:16:33 AM", + "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", + "serverName": "test", + "databaseName": "testdb", + "status": "Completed", + "errorMessage": null } } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMinSasKey.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMinSasKey.json index fb1a1c9e2c33..18e2c5290860 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMinSasKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMinSasKey.json @@ -9,7 +9,7 @@ "parameters": { "properties": { "operationMode": "Import", - "storageKeyType":"SharedAccessKey", + "storageKeyType": "SharedAccessKey", "storageKey": "?sr=b&sp=rw&se=2018-01-01T00%3A00%3A00Z&sig=sdfsdfklsdjflSLIFJLSIEJFLKSDJFDd/%2wdfskdjf3%3D&sv=2015-07-08", "storageUri": "https://test.blob.core.windows.net/bacpacs/testbacpac.bacpac", "administratorLogin": "dummyLogin", @@ -19,23 +19,23 @@ }, "responses": { "201": { - "body":{ + "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/importExportOperationResult/f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "name": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "type": "Microsoft.Sql/servers/importExportOperationResults", "properties": { - "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", - "requestType": "Import", - "queuedTime": "3/1/2017 12:14:25 AM", - "lastModifiedTime": "3/1/2017 12:16:33 AM", - "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", - "serverName": "test", - "databaseName": "testdb", - "status": "Completed", - "errorMessage": null + "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", + "requestType": "Import", + "queuedTime": "3/1/2017 12:14:25 AM", + "lastModifiedTime": "3/1/2017 12:16:33 AM", + "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", + "serverName": "test", + "databaseName": "testdb", + "status": "Completed", + "errorMessage": null } } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMinStorageKey.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMinStorageKey.json index c82911133d94..8efbcbfb5a73 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMinStorageKey.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateImportMinStorageKey.json @@ -19,23 +19,23 @@ }, "responses": { "201": { - "body":{ + "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/importExportOperationResult/f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "name": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", "type": "Microsoft.Sql/servers/importExportOperationResults", "properties": { - "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", - "requestType": "Import", - "queuedTime": "3/1/2017 12:14:25 AM", - "lastModifiedTime": "3/1/2017 12:16:33 AM", - "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", - "serverName": "test", - "databaseName": "testdb", - "status": "Completed", - "errorMessage": null + "requestId": "f01d7bfe-7162-44e7-9350-f1c85ce83e4c", + "requestType": "Import", + "queuedTime": "3/1/2017 12:14:25 AM", + "lastModifiedTime": "3/1/2017 12:16:33 AM", + "blobUri": "https://test.blob.core.windows.net/bacpacs/test.bacpac", + "serverName": "test", + "databaseName": "testdb", + "status": "Completed", + "errorMessage": null } } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMaxPatch.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMaxPatch.json index 7dddd026e5f1..2e38cf2acf99 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMaxPatch.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMaxPatch.json @@ -53,4 +53,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMaxPut.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMaxPut.json index 4e3068a48a8e..5a6e5984c735 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMaxPut.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMaxPut.json @@ -81,4 +81,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMin.json index 62d2a39a2417..58263dbf189a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUpdateMin.json @@ -5,8 +5,7 @@ "serverName": "sqlcrudtest-5961", "databaseName": "testdb", "api-version": "2014-04-01", - "parameters": { - } + "parameters": {} }, "responses": { "200": { @@ -38,4 +37,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUsageMetricsList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUsageMetricsList.json index c45bdda650a0..2910a552d25f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUsageMetricsList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseUsageMetricsList.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationCreateOrUpdate.json index 957ea0790f97..f2e95da3592a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationCreateOrUpdate.json @@ -19,15 +19,15 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdw/geoBackupPolicies/Default", "name": "Default", "location": "West US", - "type":"Microsoft.Sql/servers/disasterRecoveryConfigurations", + "type": "Microsoft.Sql/servers/disasterRecoveryConfigurations", "properties": { - "status": "Ready", - "autoFailover": "On", - "failoverPolicy": "Automatic", - "partnerServerId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5962", - "logicalServerName": "sqlcrudtest-5961", - "partnerLogicalServerName": "sqlcrudtest-5962", - "role": "Primary" + "status": "Ready", + "autoFailover": "On", + "failoverPolicy": "Automatic", + "partnerServerId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5962", + "logicalServerName": "sqlcrudtest-5961", + "partnerLogicalServerName": "sqlcrudtest-5962", + "role": "Primary" } } }, @@ -36,15 +36,15 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdw/geoBackupPolicies/Default", "name": "Default", "location": "West US", - "type":"Microsoft.Sql/servers/disasterRecoveryConfigurations", + "type": "Microsoft.Sql/servers/disasterRecoveryConfigurations", "properties": { - "status": "Ready", - "autoFailover": "On", - "failoverPolicy": "Automatic", - "partnerServerId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5962", - "logicalServerName": "sqlcrudtest-5961", - "partnerLogicalServerName": "sqlcrudtest-5962", - "role": "Primary" + "status": "Ready", + "autoFailover": "On", + "failoverPolicy": "Automatic", + "partnerServerId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5962", + "logicalServerName": "sqlcrudtest-5961", + "partnerLogicalServerName": "sqlcrudtest-5962", + "role": "Primary" } } }, @@ -53,17 +53,17 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdw/geoBackupPolicies/Default", "name": "Default", "location": "West US", - "type":"Microsoft.Sql/servers/disasterRecoveryConfigurations", + "type": "Microsoft.Sql/servers/disasterRecoveryConfigurations", "properties": { - "status": "Ready", - "autoFailover": "On", - "failoverPolicy": "Automatic", - "partnerServerId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5962", - "logicalServerName": "sqlcrudtest-5961", - "partnerLogicalServerName": "sqlcrudtest-5962", - "role": "Primary" + "status": "Ready", + "autoFailover": "On", + "failoverPolicy": "Automatic", + "partnerServerId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5962", + "logicalServerName": "sqlcrudtest-5961", + "partnerLogicalServerName": "sqlcrudtest-5962", + "role": "Primary" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationDelete.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationDelete.json index 3604d9acb1c5..654e3b83e5df 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationDelete.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationFailover.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationFailover.json index e38206e733f3..41c30aa89798 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationFailover.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationFailover.json @@ -8,6 +8,6 @@ }, "responses": { "202": {}, - "204":{} + "204": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationGet.json index eb891a289db7..39c6665af7fd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationGet.json @@ -12,17 +12,17 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdw/geoBackupPolicies/Default", "name": "Default", "location": "West US", - "type":"Microsoft.Sql/servers/disasterRecoveryConfigurations", + "type": "Microsoft.Sql/servers/disasterRecoveryConfigurations", "properties": { - "status": "Ready", - "autoFailover": "On", - "failoverPolicy": "Automatic", - "partnerServerId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5962", - "logicalServerName": "sqlcrudtest-5961", - "partnerLogicalServerName": "sqlcrudtest-5962", - "role": "Primary" + "status": "Ready", + "autoFailover": "On", + "failoverPolicy": "Automatic", + "partnerServerId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5962", + "logicalServerName": "sqlcrudtest-5961", + "partnerLogicalServerName": "sqlcrudtest-5962", + "role": "Primary" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationList.json index 3b2e38ff42b3..d4fb0321ee60 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DisasterRecoveryConfigurationList.json @@ -14,19 +14,19 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdw/geoBackupPolicies/Default", "name": "Default", "location": "West US", - "type":"Microsoft.Sql/servers/disasterRecoveryConfigurations", + "type": "Microsoft.Sql/servers/disasterRecoveryConfigurations", "properties": { - "status": "Ready", - "autoFailover": "On", - "failoverPolicy": "Automatic", - "partnerServerId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5962", - "logicalServerName": "sqlcrudtest-5961", - "partnerLogicalServerName": "sqlcrudtest-5962", - "role": "Primary" + "status": "Ready", + "autoFailover": "On", + "failoverPolicy": "Automatic", + "partnerServerId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5962", + "logicalServerName": "sqlcrudtest-5961", + "partnerLogicalServerName": "sqlcrudtest-5962", + "role": "Primary" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolActivityList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolActivityList.json index 5d455ae22061..152c4d54ca0d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolActivityList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolActivityList.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateMax.json index e921e47be0f4..65a7d7768693 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateMax.json @@ -57,4 +57,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateMin.json index 7cccc57336aa..e92c75fac58f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateMin.json @@ -48,4 +48,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateOrUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateOrUpdateMax.json index e921e47be0f4..65a7d7768693 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateOrUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateOrUpdateMax.json @@ -57,4 +57,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateOrUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateOrUpdateMin.json index 7cccc57336aa..e92c75fac58f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateOrUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolCreateOrUpdateMin.json @@ -48,4 +48,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDatabaseActivityList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDatabaseActivityList.json index 2e3d15e1694b..15abc8d9de56 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDatabaseActivityList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDatabaseActivityList.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDelete.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDelete.json index d3edd853cb5d..38d6232f13c0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolGet.json index 51b5b83459a8..9c4ba598cbd0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolGet.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolList.json index 9cb5801fa126..11e26884a548 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolList.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolMetricsDefinitionsList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolMetricsDefinitionsList.json index 3335f3c85c20..220545139a5b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolMetricsDefinitionsList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolMetricsDefinitionsList.json @@ -11,393 +11,393 @@ "200": { "body": { "value": [ - { - "name": { - "value": "cpu_percent", - "localizedValue": "CPU percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT15S", - "retention": "PT1H" - }, - { - "timeGrain": "PT60S", - "retention": "PT1H" - }, - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + { + "name": { + "value": "cpu_percent", + "localizedValue": "CPU percentage" }, - { - "name": { - "value": "physical_data_read_percent", - "localizedValue": "Data IO percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT15S", - "retention": "PT1H" - }, - { - "timeGrain": "PT60S", - "retention": "PT1H" - }, - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT15S", + "retention": "PT1H" + }, + { + "timeGrain": "PT60S", + "retention": "PT1H" + }, + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "physical_data_read_percent", + "localizedValue": "Data IO percentage" }, - { - "name": { - "value": "log_write_percent", - "localizedValue": "Log IO percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT15S", - "retention": "PT1H" - }, - { - "timeGrain": "PT60S", - "retention": "PT1H" - }, - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT15S", + "retention": "PT1H" + }, + { + "timeGrain": "PT60S", + "retention": "PT1H" + }, + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "log_write_percent", + "localizedValue": "Log IO percentage" }, - { - "name": { - "value": "dtu_consumption_percent", - "localizedValue": "DTU percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT15S", - "retention": "PT1H" - }, - { - "timeGrain": "PT60S", - "retention": "PT1H" - }, - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT15S", + "retention": "PT1H" + }, + { + "timeGrain": "PT60S", + "retention": "PT1H" + }, + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "dtu_consumption_percent", + "localizedValue": "DTU percentage" }, - { - "name": { - "value": "storage", - "localizedValue": "Total database size" - }, - "unit": "Bytes", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Maximum", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT15S", + "retention": "PT1H" + }, + { + "timeGrain": "PT60S", + "retention": "PT1H" + }, + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "storage", + "localizedValue": "Total database size" }, - { - "name": { - "value": "xtp_storage_percent", - "localizedValue": "In-Memory OLTP storage percent" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT15S", - "retention": "PT1H" - }, - { - "timeGrain": "PT60S", - "retention": "PT1H" - }, - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Bytes", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Maximum", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "xtp_storage_percent", + "localizedValue": "In-Memory OLTP storage percent" }, - { - "name": { - "value": "workers_percent", - "localizedValue": "Workers percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT15S", + "retention": "PT1H" + }, + { + "timeGrain": "PT60S", + "retention": "PT1H" + }, + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "workers_percent", + "localizedValue": "Workers percentage" }, - { - "name": { - "value": "sessions_percent", - "localizedValue": "Sessions percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "sessions_percent", + "localizedValue": "Sessions percentage" + }, + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "dtu_limit", + "localizedValue": "DTU limit" }, - { - "name": { - "value": "dtu_limit", - "localizedValue": "DTU limit" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "dtu_used", + "localizedValue": "DTU used" }, - { - "name": { - "value": "dtu_used", - "localizedValue": "DTU used" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Average", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Average", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "connection_successful", + "localizedValue": "Successful Connections" }, - { - "name": { - "value": "connection_successful", - "localizedValue": "Successful Connections" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Total", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "connection_failed", + "localizedValue": "Failed Connections" }, - { - "name": { - "value": "connection_failed", - "localizedValue": "Failed Connections" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Total", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "blocked_by_firewall", + "localizedValue": "Blocked by Firewall" }, - { - "name": { - "value": "blocked_by_firewall", - "localizedValue": "Blocked by Firewall" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Total", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "deadlock", + "localizedValue": "Deadlocks" }, - { - "name": { - "value": "deadlock", - "localizedValue": "Deadlocks" - }, - "unit": "Count", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Total", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] + "unit": "Count", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Total", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + }, + { + "name": { + "value": "storage_percent", + "localizedValue": "Database size percentage" }, - { - "name": { - "value": "storage_percent", - "localizedValue": "Database size percentage" - }, - "unit": "Percent", - "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", - "primaryAggregationType": "Maximum", - "metricAvailabilities": [ - { - "timeGrain": "PT5M", - "retention": "P14D" - }, - { - "timeGrain": "PT1H", - "retention": "P14D" - }, - { - "timeGrain": "P1D", - "retention": "P14D" - } - ] - } + "unit": "Percent", + "resourceUri": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/databases/db1", + "primaryAggregationType": "Maximum", + "metricAvailabilities": [ + { + "timeGrain": "PT5M", + "retention": "P14D" + }, + { + "timeGrain": "PT1H", + "retention": "P14D" + }, + { + "timeGrain": "P1D", + "retention": "P14D" + } + ] + } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolMetricsListWithFilter.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolMetricsListWithFilter.json index f3a670bd798d..d4f460c4d7b8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolMetricsListWithFilter.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolMetricsListWithFilter.json @@ -11,44 +11,44 @@ "200": { "body": { "value": [ - { - "name": { - "value": "cpu_percent", - "localizedValue": "CPU percentage" + { + "name": { + "value": "cpu_percent", + "localizedValue": "CPU percentage" + }, + "unit": "percent", + "timeGrain": "00:10:00", + "startTime": "2017-06-02T18:35:00Z", + "endTime": "2017-06-02T18:55:00Z", + "metricValues": [ + { + "timestamp": "2017-06-02T18:30:01Z", + "average": 0, + "minimum": 0, + "maximum": 0, + "total": 0, + "count": 1 }, - "unit": "percent", - "timeGrain": "00:10:00", - "startTime": "2017-06-02T18:35:00Z", - "endTime": "2017-06-02T18:55:00Z", - "metricValues": [ - { - "timestamp": "2017-06-02T18:30:01Z", - "average": 0, - "minimum": 0, - "maximum": 0, - "total": 0, - "count": 1 - }, - { - "timestamp": "2017-06-02T18:40:01Z", - "average": 0, - "minimum": 0, - "maximum": 0, - "total": 0, - "count": 1 - }, - { - "timestamp": "2017-06-02T18:50:01Z", - "average": 0, - "minimum": 0, - "maximum": 0, - "total": 0, - "count": 1 - } - ] - } + { + "timestamp": "2017-06-02T18:40:01Z", + "average": 0, + "minimum": 0, + "maximum": 0, + "total": 0, + "count": 1 + }, + { + "timestamp": "2017-06-02T18:50:01Z", + "average": 0, + "minimum": 0, + "maximum": 0, + "total": 0, + "count": 1 + } + ] + } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolUpdateMax.json index 4bfa9ab16c7e..3e749fab97a6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolUpdateMax.json @@ -38,4 +38,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolUpdateMin.json index 48237ecbf04b..6e6e3bd0f761 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolUpdateMin.json @@ -5,8 +5,7 @@ "serverName": "sqlcrudtest-8069", "elasticPoolName": "sqlcrudtest-8102", "api-version": "2014-04-01", - "parameters": { - } + "parameters": {} }, "responses": { "200": { @@ -29,4 +28,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleCreate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleCreate.json index 013c284d09de..ac3fe7a49061 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleCreate.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleDelete.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleDelete.json index ecd892fb9fcc..9e9dfec3ea10 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleGet.json index 64d0aa854341..5d5e9b05ca9c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleGet.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleList.json index 39618f867038..c5aba08c7bd9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleList.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleUpdate.json index c28a0bab1701..0cc5f7e6ef43 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/FirewallRuleUpdate.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesCreateOrUpdate.json index aa8ffdd7a4a4..de7ae5370d7c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesCreateOrUpdate.json @@ -21,8 +21,8 @@ "location": null, "kind": null, "properties": { - "state": "Enabled", - "storageType": null + "state": "Enabled", + "storageType": null } } }, @@ -34,10 +34,10 @@ "location": null, "kind": null, "properties": { - "state": "Enabled", - "storageType": null + "state": "Enabled", + "storageType": null } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesGet.json index f4cabccb9e3b..dc3fa063be42 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesGet.json @@ -16,10 +16,10 @@ "location": "Central US", "kind": null, "properties": { - "state": "Enabled", - "storageType": "Premium" + "state": "Enabled", + "storageType": "Premium" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesList.json index 53ac1fd6f448..d858c6a23dd7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/GeoBackupPoliciesList.json @@ -17,12 +17,12 @@ "location": "Central US", "kind": null, "properties": { - "state": "Enabled", - "storageType": "Premium" + "state": "Enabled", + "storageType": "Premium" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/OperationList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/OperationList.json index 7aff4dc79813..339eb067af4a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/OperationList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/OperationList.json @@ -1,1268 +1,1268 @@ { - "parameters": { - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "value": [ - { - "name": "Microsoft.Sql/servers/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server", - "operation": "Get server details", - "description": "Return a list of servers in a resource group on a subscription" - } - }, - { - "name": "Microsoft.Sql/servers/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server", - "operation": "Create new or update existing server", - "description": "Create a new server or modify properties of existing server in a resource group on a subscription" - } - }, - { - "name": "Microsoft.Sql/servers/delete", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server", - "operation": "Delete existing server", - "description": "Delete a server and all contained databases and elastic pools" - } - }, - { - "name": "Microsoft.Sql/servers/import/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server", - "operation": "Create new database from DacPac", - "description": "Create a new database on the server and deploy schema and data from a DacPac package" - } - }, - { - "name": "Microsoft.Sql/servers/upgrade/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server", - "operation": "Upgrade server version", - "description": "Enable new functionality available on the latest version of server and specify databases edition conversion map" - } - }, - { - "name": "Microsoft.Sql/servers/firewallRules/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Firewall Rule", - "operation": "Get server firewall rules", - "description": "Retrieve server firewall rule details" - } - }, - { - "name": "Microsoft.Sql/servers/firewallRules/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Firewall Rule", - "operation": "Create new or update existing server firewall rule", - "description": "Create or update server firewall rule that controls IP address range allowed to connect to the server" - } - }, - { - "name": "Microsoft.Sql/servers/firewallRules/delete", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Firewall Rule", - "operation": "Delete server firewall rule", - "description": "Delete firewall rule from the server" - } - }, - { - "name": "Microsoft.Sql/servers/administrators/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "The server administrator", - "operation": "Get server administrator", - "description": "Retrieve server administrator details" - } - }, - { - "name": "Microsoft.Sql/servers/administrators/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "The server administrator", - "operation": "Create new or update existing server administrator", - "description": "Create or update server administrator" - } - }, - { - "name": "Microsoft.Sql/servers/administrators/delete", - "display": { - "provider": "Microsoft SQL Database", - "resource": "The server administrator", - "operation": "Delete server administrator", - "description": "Delete server administrator from the server" - } - }, - { - "name": "Microsoft.Sql/servers/administratorOperationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "The server administrator operation results", - "operation": "Get server administrator operation results", - "description": "Retrieve server administrator operation results" - } - }, - { - "name": "Microsoft.Sql/servers/serviceObjectives/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Service Level Objective", - "operation": "Get service level objectives", - "description": "Retrieve list of service level objectives (also known as performance tiers) available on a given server" - } - }, - { - "name": "Microsoft.Sql/servers/restorableDroppedDatabases/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Restorable Dropped Database", - "operation": "Get list of restorable dropped databases", - "description": "Retrieve a list of databases that were dropped on a given server that are still within retention policy. This operation returns a list of databases and associated metadata, like date of deletion." - } - }, - { - "name": "Microsoft.Sql/servers/recoverableDatabases/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Recoverable Database", - "operation": "Get the last known database recovery point", - "description": "This operation is used for disaster recovery of live database to restore database to last-known good backup point. It returns information about the last good backup but it doesn't actually restore the database." - } - }, - { - "name": "Microsoft.Sql/servers/importExportOperationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Database Import Operation Result", - "operation": "Get details about database import operation on the server", - "description": "Return the list with details for database import operations from storage account on a given server" - } - }, - { - "name": "Microsoft.Sql/servers/operationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Upgrade Operation Result", - "operation": "Get status of server upgrade operation", - "description": "Operation is used to track progress of server upgrade from lower version to higher" - } - }, - { - "name": "Microsoft.Sql/servers/operationResults/delete", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Upgrade Operation Result", - "operation": "Cancel server upgrade", - "description": "Abort server version upgrade in progress" - } - }, - { - "name": "Microsoft.Sql/servers/usages/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Usage", - "operation": "Get server usage details", - "description": "Return server DTU quota and current DTU consumption by all databases within the server" - } - }, - { - "name": "Microsoft.Sql/servers/recommendedElasticPools/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Recommended Elastic Database Pool", - "operation": "Get recommended elastic database pools", - "description": "Retrieve recommendation for elastic database pools to reduce cost or improve performance based on historical resource utilization" - } - }, - { - "name": "Microsoft.Sql/servers/recommendedElasticPools/databases/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Recommended Elastic Pool Databases", - "operation": "Get recommended elastic pools databases", - "description": "Retrieve databases that should be added into recommended elastic database pools for a given server" - } - }, - { - "name": "Microsoft.Sql/servers/recommendedElasticPools/metrics/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Recommended Elastic Database Pool Metrics", - "operation": "Get recommended elastic database pools metrics", - "description": "Retrieve metrics for recommended elastic database pools for a given server" - } - }, - { - "name": "Microsoft.Sql/servers/disasterRecoveryConfiguration/operationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Disaster Recovery Configuration Operation Results", - "operation": "Retrieve result for Operation Results on a Disaster Recovery Configuration", - "description": "Get Disaster Recovery Configuration Operation Results" - } - }, - { - "name": "Microsoft.Sql/servers/advisors/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server advisor", - "operation": "Get advisors for a server", - "description": "Returns list of advisors available for the server" - } - }, - { - "name": "Microsoft.Sql/servers/advisors/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server advisor", - "operation": "Update auto-execute status of a server advisor", - "description": "Updates auto-execute status of an advisor on server level." - } - }, - { - "name": "Microsoft.Sql/servers/advisors/recommendedActions/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Returns list of recommended actions of specified advisor for the server", - "operation": "Get recommended actions of a server", - "description": "Returns list of recommended actions of specified advisor for the server" - } - }, - { - "name": "Microsoft.Sql/servers/advisors/recommendedActions/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Returns list of recommended actions of specified advisor for the server", - "operation": "Update server recommended action state.", - "description": "Apply the recommended action on the server" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPoolEstimates/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic pool estimate", - "operation": "Get elastic pool estimates of a server", - "description": "Returns list of elastic pool estimates already created for this server" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPoolEstimates/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic pool estimate", - "operation": "Create an elastic pool estimate.", - "description": "Creates new elastic pool estimate for list of databases provided" - } - }, - { - "name": "Microsoft.Sql/servers/databases/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database", - "operation": "Get server details", - "description": "Return a list of servers in a resource group on a subscription" - } - }, - { - "name": "Microsoft.Sql/servers/databases/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database", - "operation": "Create new or update existing server", - "description": "Create a new server or modify properties of existing server in a resource group on a subscription" - } - }, - { - "name": "Microsoft.Sql/servers/databases/delete", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database", - "operation": "Delete existing server", - "description": "Delete a server and all contained databases and elastic pools" - } - }, - { - "name": "Microsoft.Sql/servers/databases/export/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database", - "operation": "Create new database from DacPac", - "description": "Create a new database on the server and deploy schema and data from a DacPac package" - } - }, - { - "name": "Microsoft.Sql/servers/databases/usages/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Usage", - "operation": "Get database usage details", - "description": "Return database maximum size that can be reached and current size occupied by data" - } - }, - { - "name": "Microsoft.Sql/servers/databases/operationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Operation Result", - "operation": "Get status of database operation", - "description": "Operation is used to track progress of long running database operation, such as scale." - } - }, - { - "name": "Microsoft.Sql/servers/databases/importExportOperationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Import/Export Operation Result", - "operation": "Get details about database import or export operation on the server", - "description": "Return details about database import or export operation from DacPac located in storage account" - } - }, - { - "name": "Microsoft.Sql/servers/databases/replicationLinks/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Replication Link", - "operation": "Get database replication links", - "description": "Return details about replication links established for a particular database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/replicationLinks/delete", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Replication Link", - "operation": "Force-terminate the replication relationship", - "description": "Terminate the replication relationship forcefully and with potential data loss" - } - }, - { - "name": "Microsoft.Sql/servers/databases/replicationLinks/unlink/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Replication Link", - "operation": "Terminate the replication relationship", - "description": "Terminate the replication relationship forcefully or after synchronizing with the partner" - } - }, - { - "name": "Microsoft.Sql/servers/databases/replicationLinks/failover/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Replication Link", - "operation": "Failover replication relationship after synchronizing", - "description": "Failover after synchronizing all changes from the primary, making this database into the replication relationship's primary and making the remote primary into a secondary" - } - }, - { - "name": "Microsoft.Sql/servers/databases/replicationLinks/forceFailoverAllowDataLoss/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Replication Link", - "operation": "Failover replication relationship immediately", - "description": "Failover immediately with potential data loss, making this database into the replication relationship's primary and making the remote primary into a secondary" - } - }, - { - "name": "Microsoft.Sql/servers/databases/replicationLinks/updateReplicationMode/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Replication Link", - "operation": "Update replication mode for link", - "description": "Update replication mode for link to synchronous or asynchronous mode" - } - }, - { - "name": "Microsoft.Sql/servers/databases/replicationLinks/operationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Replication Link Operation Result", - "operation": "Get status of replication link operations", - "description": "Get status of long-running operations on database replication links" - } - }, - { - "name": "Microsoft.Sql/servers/databases/providers/Microsoft.Insights/metricDefinitions/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Metric Definition", - "operation": "Get database metric definitions", - "description": "Return types of metrics that are available for databases" - }, - "properties": { - "serviceSpecification": { - "metricSpecifications": [ - { - "name": "cpu_percent", - "displayName": "CPU percentage", - "displayDescription": "CPU percentage", - "unit": "Percent", - "aggregationType": "Average", - "fillGapWithZero": true - }, - { - "name": "physical_data_read_percent", - "displayName": "Data IO percentage", - "displayDescription": "Data IO percentage", - "unit": "Percent", - "aggregationType": "Average", - "fillGapWithZero": true - }, - { - "name": "log_write_percent", - "displayName": "Log IO percentage", - "displayDescription": "Log IO percentage", - "unit": "Percent", - "aggregationType": "Average", - "metricFilterPattern": "^((?!datawarehouse).)*$", - "fillGapWithZero": true - }, - { - "name": "dtu_consumption_percent", - "displayName": "DTU percentage", - "displayDescription": "DTU percentage", - "unit": "Percent", - "aggregationType": "Average", - "metricFilterPattern": "^((?!datawarehouse).)*$", - "fillGapWithZero": true - }, - { - "name": "storage", - "displayName": "Total database size", - "displayDescription": "Total database size", - "unit": "Bytes", - "aggregationType": "Maximum" - }, - { - "name": "connection_successful", - "displayName": "Successful Connections", - "displayDescription": "Successful Connections", - "unit": "Count", - "aggregationType": "Total", - "fillGapWithZero": true - }, - { - "name": "connection_failed", - "displayName": "Failed Connections", - "displayDescription": "Failed Connections", - "unit": "Count", - "aggregationType": "Total", - "fillGapWithZero": true - }, - { - "name": "blocked_by_firewall", - "displayName": "Blocked by Firewall", - "displayDescription": "Blocked by Firewall", - "unit": "Count", - "aggregationType": "Total", - "fillGapWithZero": true - }, - { - "name": "deadlock", - "displayName": "Deadlocks", - "displayDescription": "Deadlocks", - "unit": "Count", - "aggregationType": "Total", - "metricFilterPattern": "^((?!datawarehouse).)*$", - "fillGapWithZero": true - }, - { - "name": "storage_percent", - "displayName": "Database size percentage", - "displayDescription": "Database size percentage", - "unit": "Percent", - "aggregationType": "Maximum", - "metricFilterPattern": "^((?!datawarehouse).)*$" - }, - { - "name": "xtp_storage_percent", - "displayName": "In-Memory OLTP storage percent", - "displayDescription": "In-Memory OLTP storage percent", - "unit": "Percent", - "aggregationType": "Average", - "metricFilterPattern": "^((?!datawarehouse).)*$", - "fillGapWithZero": true - }, - { - "name": "workers_percent", - "displayName": "Workers percentage", - "displayDescription": "Workers percentage", - "unit": "Percent", - "aggregationType": "Average", - "metricFilterPattern": "^((?!datawarehouse).)*$", - "fillGapWithZero": true - }, - { - "name": "sessions_percent", - "displayName": "Sessions percentage", - "displayDescription": "Sessions percentage", - "unit": "Percent", - "aggregationType": "Average", - "metricFilterPattern": "^((?!datawarehouse).)*$", - "fillGapWithZero": true - }, - { - "name": "dtu_limit", - "displayName": "DTU Limit", - "displayDescription": "DTU Limit", - "unit": "Count", - "aggregationType": "Average", - "metricFilterPattern": "^((?!datawarehouse).)*$" - }, - { - "name": "dtu_used", - "displayName": "DTU used", - "displayDescription": "DTU used", - "unit": "Count", - "aggregationType": "Average", - "metricFilterPattern": "^((?!datawarehouse).)*$", - "fillGapWithZero": true - }, - { - "name": "dwu_limit", - "displayName": "DWU limit", - "displayDescription": "DWU limit", - "unit": "Count", - "aggregationType": "Maximum", - "metricFilterPattern": ".*datawarehouse.*$" - }, - { - "name": "dwu_consumption_percent", - "displayName": "DWU percentage", - "displayDescription": "DWU percentage", - "unit": "Percent", - "aggregationType": "Maximum", - "metricFilterPattern": ".*datawarehouse.*$", - "fillGapWithZero": true - }, - { - "name": "dwu_used", - "displayName": "DWU used", - "displayDescription": "DWU used", - "unit": "Count", - "aggregationType": "Maximum", - "metricFilterPattern": ".*datawarehouse.*$", - "fillGapWithZero": true - } - ] - } - } - }, - { - "name": "Microsoft.Sql/servers/databases/metrics/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Metric", - "operation": "Get database resource consumption metrics", - "description": "Return database resource utilization metrics" - } - }, - { - "name": "Microsoft.Sql/servers/databases/providers/Microsoft.Insights/diagnosticSettings/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Diagnostic Settings", - "operation": "Read diagnostic setting", - "description": "Gets the diagnostic setting for the resource" - } - }, - { - "name": "Microsoft.Sql/servers/databases/providers/Microsoft.Insights/diagnosticSettings/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Diagnostic Settings", - "operation": "Write diagnostic setting", - "description": "Creates or updates the diagnostic setting for the resource" - } - }, - { - "name": "Microsoft.Sql/servers/databases/providers/Microsoft.Insights/logDefinitions/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "The log definition of databases", - "operation": "Read databases log definitions", - "description": "Gets the available logs for databases" - }, - "properties": { - "serviceSpecification": { - "logSpecifications": [ - { - "name": "QueryStore", - "displayName": "Query Store", - "blobDuration": "PT1H" - } - ] - } - } - }, - { - "name": "Microsoft.Sql/servers/databases/missingindexes/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Index Advisor", - "operation": "Get recommended database indexes", - "description": "Return suggestions about database indexes to create, modify or delete in order to improve query performance" - } - }, - { - "name": "Microsoft.Sql/servers/databases/missingindexes/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Index Advisor", - "operation": "Apply recommended database index", - "description": "Use database index recommendation in a particular database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Recommended Index", - "operation": "Get list of index recommendations", - "description": "Retrieve list of index recommendations on a database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Recommended Index", - "operation": "Update Recommended Index State", - "description": "Apply index recommendation" - } - }, - { - "name": "Microsoft.Sql/servers/databases/schemas/tables/columns/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database table column", - "operation": "Get columns", - "description": "Retrieve list of columns of a table" - } - }, - { - "name": "Microsoft.Sql/servers/databases/queryStore/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Query Store settings", - "operation": "Get Query Store settings", - "description": "Returns current values of Query Store settings for the database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/queryStore/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Query Store settings", - "operation": "Update Query Store settings", - "description": "Updates Query Store setting for the database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/topQueries/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Top Queries", - "operation": "Get Top Queries for the database", - "description": "Returns aggregated runtime statistics for selected query in selected time period" - } - }, - { - "name": "Microsoft.Sql/servers/databases/topQueries/statistics/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Top Queries Statistics", - "operation": "Get Database Top Queries statistics", - "description": "Returns aggregated runtime statistics for selected query in selected time period" - } - }, - { - "name": "Microsoft.Sql/servers/databases/topQueries/queryText/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Top Queries query text", - "operation": "Get Database Top Queries query text", - "description": "Returns the Transact-SQL text for selected query ID" - } - }, - { - "name": "Microsoft.Sql/servers/databases/serviceTierAdvisors/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Service Tier Advisor", - "operation": "Get recommended database performance level", - "description": "Return suggestion about scaling database up or down based on query execution statistics to improve performance or reduce cost" - } - }, - { - "name": "Microsoft.Sql/servers/databases/transparentDataEncryption/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Transparent Data Encryption", - "operation": "Get database transparent data encryption details", - "description": "Retrieve status and details of transparent data encryption security feature for a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/transparentDataEncryption/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Transparent Data Encryption", - "operation": "Change transparent data encryption state", - "description": "Enable or disable transparent data encryption for a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/transparentDataEncryption/operationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Transparent Data Encryption", - "operation": "Get database transparent data encryption details", - "description": "Retrieve status and details of transparent data encryption security feature for a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/auditingPolicies/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Table Auditing Policy", - "operation": "Get database table auditing policy", - "description": "Retrieve details of the table auditing policy configured on a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/auditingPolicies/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Table Auditing Policy", - "operation": "Set database table auditing policy", - "description": "Change the table auditing policy for a given database" - } - }, - { - "name": "Microsoft.Sql/servers/auditingPolicies/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Default Server Table Auditing Policy", - "operation": "Get default server table auditing policy", - "description": "Retrieve details of the default server table auditing policy configured on a given server" - } - }, - { - "name": "Microsoft.Sql/servers/auditingPolicies/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Default Server Table Auditing Policy", - "operation": "Set default server table auditing policy", - "description": "Change the default server table auditing for a given server" - } - }, - { - "name": "Microsoft.Sql/servers/databases/auditingSettings/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Blob Auditing Policy", - "operation": "Get database blob auditing policy", - "description": "Retrieve details of the blob auditing policy configured on a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/auditingSettings/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Blob Auditing Policy", - "operation": "Set database blob auditing policy", - "description": "Change the blob auditing policy for a given database" - } - }, - { - "name": "Microsoft.Sql/servers/auditingSettings/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Blob Auditing Policy", - "operation": "Get server blob auditing policy", - "description": "Retrieve details of the server blob auditing policy configured on a given server" - } - }, - { - "name": "Microsoft.Sql/servers/auditingSettings/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Blob Auditing Policy", - "operation": "Set server blob auditing policy", - "description": "Change the server blob auditing for a given server" - } - }, - { - "name": "Microsoft.Sql/servers/auditingSettings/operationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Blob Auditing Operation Results", - "operation": "Get server blob auditing operation results", - "description": "Retrieve result of the server blob auditing policy Set operation" - } - }, - { - "name": "Microsoft.Sql/servers/databases/auditRecords/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Blob Audit Records", - "operation": "Get database blob audit records", - "description": "Retrieve the database blob audit records" - } - }, - { - "name": "Microsoft.Sql/servers/databases/connectionPolicies/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Connection Policy", - "operation": "Get database connection policy", - "description": "Retrieve details of the connection policy configured on a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/connectionPolicies/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Connection Policy", - "operation": "Set database connection policy", - "description": "Change connection policy for a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/dataMaskingPolicies/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Data Masking Policy", - "operation": "Get database data masking policy", - "description": "Retrieve details of the data masking policy configured on a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/dataMaskingPolicies/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Data Masking Policy", - "operation": "Set database data masking policy", - "description": "Change data masking policy for a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Data Masking Policy Rule", - "operation": "Get database data masking policy rule", - "description": "Retrieve details of the data masking policy rule configured on a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Data Masking Policy Rule", - "operation": "Set database data masking policy rule", - "description": "Change data masking policy rule for a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/securityAlertPolicies/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Threat Detection Policy", - "operation": "Get database threat detection policy", - "description": "Retrieve details of the threat detection policy configured on a given database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/securityAlertPolicies/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database Threat Detection Policy", - "operation": "Set threat detection auditing policy", - "description": "Change the threat detection policy for a given database" - } - }, - { - "name": "Microsoft.Sql/servers/securityAlertPolicies/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Threat Detection Policy", - "operation": "Get server threat detection policy", - "description": "Retrieve details of the server threat detection policy configured on a given server" - } - }, - { - "name": "Microsoft.Sql/servers/securityAlertPolicies/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Threat Detection Policy", - "operation": "Set server threat detection policy", - "description": "Change the server threat detection for a given server" - } - }, - { - "name": "Microsoft.Sql/servers/securityAlertPolicies/operationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Server Threat Detection Operation Results", - "operation": "Get server Threat Detection operation results", - "description": "Retrieve results of the server Threat Detection policy Set operation" - } - }, - { - "name": "Microsoft.Sql/servers/databases/VulnerabilityAssessmentScans/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Vulnerability Assessment Database Scan", - "operation": "Execute vulnerability assessment database scan", - "description": "Execute vulnerability assessment database scan." - } - }, - { - "name": "Microsoft.Sql/servers/VulnerabilityAssessmentScans/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Vulnerability Assessment Server Scan", - "operation": "Execute vulnerability assessment server scan", - "description": "Execute vulnerability assessment server scan" - } - }, - { - "name": "Microsoft.Sql/servers/databases/advisors/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database advisor", - "operation": "Get advisors for a database", - "description": "Returns list of advisors available for the database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/advisors/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database advisor", - "operation": "Update auto-execute status of a database advisor", - "description": "Update auto-execute status of an advisor on database level." - } - }, - { - "name": "Microsoft.Sql/servers/databases/advisors/recommendedActions/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database recommended action", - "operation": "Get recommended actions for a database", - "description": "Returns list of recommended actions of specified advisor for the database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/advisors/recommendedActions/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database recommended action", - "operation": "Update database recommended action state.", - "description": "Apply the recommended action on the database" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic Database Pool", - "operation": "Get elastic database pool details", - "description": "Retrieve details of elastic database pool on a given server" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic Database Pool", - "operation": "Create new or update existing elastic database pool", - "description": "Create a new or change properties of existing elastic database pool" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/delete", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic Database Pool", - "operation": "Delete elastic database pool", - "description": "Delete existing elastic database pool" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/databases/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database", - "operation": "Get elastic pool databases", - "description": "Retrieve list and details of databases that are part of elastic database pool on a given server" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/elasticPoolActivity/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic Database Pool Activity", - "operation": "Get elastic database pool activity", - "description": "Retrieve activities and details on a given elastic database pool" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic Pool Database Activity", - "operation": "Get elastic pool database activity", - "description": "Retrieve activities and details on a given database that is part of elastic database pool" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/providers/Microsoft.Insights/metricDefinitions/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic Database Pool Metric Definition", - "operation": "Get elastic pool metric definitions", - "description": "Return types of metrics that are available for elastic database pools" - }, - "properties": { - "serviceSpecification": { - "metricSpecifications": [ - { - "name": "cpu_percent", - "displayName": "CPU percentage", - "displayDescription": "CPU percentage", - "unit": "Percent", - "aggregationType": "Average", - "fillGapWithZero": true - }, - { - "name": "physical_data_read_percent", - "displayName": "Data IO percentage", - "displayDescription": "Data IO percentage", - "unit": "Percent", - "aggregationType": "Average", - "fillGapWithZero": true - }, - { - "name": "log_write_percent", - "displayName": "Log IO percentage", - "displayDescription": "Log IO percentage", - "unit": "Percent", - "aggregationType": "Average", - "fillGapWithZero": true - }, - { - "name": "dtu_consumption_percent", - "displayName": "DTU percentage", - "displayDescription": "DTU percentage", - "unit": "Percent", - "aggregationType": "Average", - "fillGapWithZero": true - }, - { - "name": "storage_percent", - "displayName": "Storage percentage", - "displayDescription": "Storage percentage", - "unit": "Percent", - "aggregationType": "Average" - }, - { - "name": "workers_percent", - "displayName": "Workers percentage", - "displayDescription": "Workers percentage", - "unit": "Percent", - "aggregationType": "Average", - "fillGapWithZero": true - }, - { - "name": "sessions_percent", - "displayName": "Sessions percentage", - "displayDescription": "Sessions percentage", - "unit": "Percent", - "aggregationType": "Average", - "fillGapWithZero": true - }, - { - "name": "eDTU_limit", - "displayName": "eDTU limit", - "displayDescription": "eDTU limit", - "unit": "Count", - "aggregationType": "Average" - }, - { - "name": "storage_limit", - "displayName": "Storage limit", - "displayDescription": "Storage limit", - "unit": "Bytes", - "aggregationType": "Average" - }, - { - "name": "eDTU_used", - "displayName": "eDTU used", - "displayDescription": "eDTU used", - "unit": "Count", - "aggregationType": "Average", - "fillGapWithZero": true - }, - { - "name": "storage_used", - "displayName": "Storage used", - "displayDescription": "Storage used", - "unit": "Bytes", - "aggregationType": "Average" - }, - { - "name": "xtp_storage_percent", - "displayName": "In-Memory OLTP storage percent", - "displayDescription": "In-Memory OLTP storage percent", - "unit": "Percent", - "aggregationType": "Average", - "fillGapWithZero": true - } - ] - } - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/metrics/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic Database Pool Metric", - "operation": "Get elastic pool resource consumption metrics", - "description": "Return elastic database pool resource utilization metrics" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/operationResults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic Database Pool Operation Result", - "operation": "Get elastic database pool operation result", - "description": "Retrieve details on a given elastic database pool operation" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/advisors/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic pool advisor", - "operation": "Get advisors for an elastic pool", - "description": "Returns list of advisors available for the elastic pool" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/advisors/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic pool advisor", - "operation": "Update auto-execute status of a elastic pool advisor", - "description": "Update auto-execute status of an advisor on elastic pool level." - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/advisors/recommendedActions/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic pool recommended action", - "operation": "Get recommended actions for an elastic pool", - "description": "Returns list of recommended actions of specified advisor for the elastic pool" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/advisors/recommendedActions/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic pool recommended action", - "operation": "Update elastic pool recommended action state.", - "description": "Apply the recommended action on the elastic pool" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/providers/Microsoft.Insights/diagnosticSettings/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic Database Pool Diagnostic Settings", - "operation": "Read diagnostic setting", - "description": "Gets the diagnostic setting for the resource" - } - }, - { - "name": "Microsoft.Sql/servers/elasticPools/providers/Microsoft.Insights/diagnosticSettings/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Elastic Database Pool Diagnostic Settings", - "operation": "Write diagnostic setting", - "description": "Creates or updates the diagnostic setting for the resource" - } - }, - { - "name": "Microsoft.Sql/servers/databases/pause/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database", - "operation": "Pause a database", - "description": "Pause a DataWarehouse edition database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/resume/action", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Database", - "operation": "Resume a database", - "description": "Resume a DataWarehouse edition database" - } - }, - { - "name": "Microsoft.Sql/servers/databases/dataWarehouseQueries/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Data Warehouse Query", - "operation": "Get details about data warehouse query", - "description": "Returns the data warehouse distribution query information for selected query ID" - } - }, - { - "name": "Microsoft.Sql/servers/databases/dataWarehouseQueries/dataWarehouseQuerySteps/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "Data Warehouse Query Step", - "operation": "Get details about data warehouse query step", - "description": "Returns the distributed query step information of data warehouse query for selected step ID" - } - }, - { - "name": "Microsoft.Sql/servers/backupLongTermRetentionVaults/read", - "display": { - "provider": "Microsoft SQL Database", - "resource": "A backup long term retention vault", - "operation": "Read a backup long term retention vault", - "description": "This operation is used to get a backup long term retention vault. It returns information about the vault registered to this server." - } - }, - { - "name": "Microsoft.Sql/servers/backupLongTermRetentionVaults/write", - "display": { - "provider": "Microsoft SQL Database", - "resource": "A backup long term retention vault", - "operation": "This operation is used to register a backup long term retention vault to a server.", - "description": "Register a backup long term retention vault" - } + "parameters": { + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "value": [ + { + "name": "Microsoft.Sql/servers/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server", + "operation": "Get server details", + "description": "Return a list of servers in a resource group on a subscription" + } + }, + { + "name": "Microsoft.Sql/servers/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server", + "operation": "Create new or update existing server", + "description": "Create a new server or modify properties of existing server in a resource group on a subscription" + } + }, + { + "name": "Microsoft.Sql/servers/delete", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server", + "operation": "Delete existing server", + "description": "Delete a server and all contained databases and elastic pools" + } + }, + { + "name": "Microsoft.Sql/servers/import/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server", + "operation": "Create new database from DacPac", + "description": "Create a new database on the server and deploy schema and data from a DacPac package" + } + }, + { + "name": "Microsoft.Sql/servers/upgrade/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server", + "operation": "Upgrade server version", + "description": "Enable new functionality available on the latest version of server and specify databases edition conversion map" + } + }, + { + "name": "Microsoft.Sql/servers/firewallRules/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Firewall Rule", + "operation": "Get server firewall rules", + "description": "Retrieve server firewall rule details" + } + }, + { + "name": "Microsoft.Sql/servers/firewallRules/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Firewall Rule", + "operation": "Create new or update existing server firewall rule", + "description": "Create or update server firewall rule that controls IP address range allowed to connect to the server" + } + }, + { + "name": "Microsoft.Sql/servers/firewallRules/delete", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Firewall Rule", + "operation": "Delete server firewall rule", + "description": "Delete firewall rule from the server" + } + }, + { + "name": "Microsoft.Sql/servers/administrators/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "The server administrator", + "operation": "Get server administrator", + "description": "Retrieve server administrator details" + } + }, + { + "name": "Microsoft.Sql/servers/administrators/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "The server administrator", + "operation": "Create new or update existing server administrator", + "description": "Create or update server administrator" + } + }, + { + "name": "Microsoft.Sql/servers/administrators/delete", + "display": { + "provider": "Microsoft SQL Database", + "resource": "The server administrator", + "operation": "Delete server administrator", + "description": "Delete server administrator from the server" + } + }, + { + "name": "Microsoft.Sql/servers/administratorOperationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "The server administrator operation results", + "operation": "Get server administrator operation results", + "description": "Retrieve server administrator operation results" + } + }, + { + "name": "Microsoft.Sql/servers/serviceObjectives/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Service Level Objective", + "operation": "Get service level objectives", + "description": "Retrieve list of service level objectives (also known as performance tiers) available on a given server" + } + }, + { + "name": "Microsoft.Sql/servers/restorableDroppedDatabases/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Restorable Dropped Database", + "operation": "Get list of restorable dropped databases", + "description": "Retrieve a list of databases that were dropped on a given server that are still within retention policy. This operation returns a list of databases and associated metadata, like date of deletion." + } + }, + { + "name": "Microsoft.Sql/servers/recoverableDatabases/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Recoverable Database", + "operation": "Get the last known database recovery point", + "description": "This operation is used for disaster recovery of live database to restore database to last-known good backup point. It returns information about the last good backup but it doesn't actually restore the database." + } + }, + { + "name": "Microsoft.Sql/servers/importExportOperationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Database Import Operation Result", + "operation": "Get details about database import operation on the server", + "description": "Return the list with details for database import operations from storage account on a given server" + } + }, + { + "name": "Microsoft.Sql/servers/operationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Upgrade Operation Result", + "operation": "Get status of server upgrade operation", + "description": "Operation is used to track progress of server upgrade from lower version to higher" + } + }, + { + "name": "Microsoft.Sql/servers/operationResults/delete", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Upgrade Operation Result", + "operation": "Cancel server upgrade", + "description": "Abort server version upgrade in progress" + } + }, + { + "name": "Microsoft.Sql/servers/usages/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Usage", + "operation": "Get server usage details", + "description": "Return server DTU quota and current DTU consumption by all databases within the server" + } + }, + { + "name": "Microsoft.Sql/servers/recommendedElasticPools/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Recommended Elastic Database Pool", + "operation": "Get recommended elastic database pools", + "description": "Retrieve recommendation for elastic database pools to reduce cost or improve performance based on historical resource utilization" + } + }, + { + "name": "Microsoft.Sql/servers/recommendedElasticPools/databases/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Recommended Elastic Pool Databases", + "operation": "Get recommended elastic pools databases", + "description": "Retrieve databases that should be added into recommended elastic database pools for a given server" + } + }, + { + "name": "Microsoft.Sql/servers/recommendedElasticPools/metrics/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Recommended Elastic Database Pool Metrics", + "operation": "Get recommended elastic database pools metrics", + "description": "Retrieve metrics for recommended elastic database pools for a given server" + } + }, + { + "name": "Microsoft.Sql/servers/disasterRecoveryConfiguration/operationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Disaster Recovery Configuration Operation Results", + "operation": "Retrieve result for Operation Results on a Disaster Recovery Configuration", + "description": "Get Disaster Recovery Configuration Operation Results" + } + }, + { + "name": "Microsoft.Sql/servers/advisors/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server advisor", + "operation": "Get advisors for a server", + "description": "Returns list of advisors available for the server" + } + }, + { + "name": "Microsoft.Sql/servers/advisors/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server advisor", + "operation": "Update auto-execute status of a server advisor", + "description": "Updates auto-execute status of an advisor on server level." + } + }, + { + "name": "Microsoft.Sql/servers/advisors/recommendedActions/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Returns list of recommended actions of specified advisor for the server", + "operation": "Get recommended actions of a server", + "description": "Returns list of recommended actions of specified advisor for the server" + } + }, + { + "name": "Microsoft.Sql/servers/advisors/recommendedActions/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Returns list of recommended actions of specified advisor for the server", + "operation": "Update server recommended action state.", + "description": "Apply the recommended action on the server" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPoolEstimates/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic pool estimate", + "operation": "Get elastic pool estimates of a server", + "description": "Returns list of elastic pool estimates already created for this server" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPoolEstimates/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic pool estimate", + "operation": "Create an elastic pool estimate.", + "description": "Creates new elastic pool estimate for list of databases provided" + } + }, + { + "name": "Microsoft.Sql/servers/databases/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database", + "operation": "Get server details", + "description": "Return a list of servers in a resource group on a subscription" + } + }, + { + "name": "Microsoft.Sql/servers/databases/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database", + "operation": "Create new or update existing server", + "description": "Create a new server or modify properties of existing server in a resource group on a subscription" + } + }, + { + "name": "Microsoft.Sql/servers/databases/delete", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database", + "operation": "Delete existing server", + "description": "Delete a server and all contained databases and elastic pools" + } + }, + { + "name": "Microsoft.Sql/servers/databases/export/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database", + "operation": "Create new database from DacPac", + "description": "Create a new database on the server and deploy schema and data from a DacPac package" + } + }, + { + "name": "Microsoft.Sql/servers/databases/usages/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Usage", + "operation": "Get database usage details", + "description": "Return database maximum size that can be reached and current size occupied by data" + } + }, + { + "name": "Microsoft.Sql/servers/databases/operationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Operation Result", + "operation": "Get status of database operation", + "description": "Operation is used to track progress of long running database operation, such as scale." + } + }, + { + "name": "Microsoft.Sql/servers/databases/importExportOperationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Import/Export Operation Result", + "operation": "Get details about database import or export operation on the server", + "description": "Return details about database import or export operation from DacPac located in storage account" + } + }, + { + "name": "Microsoft.Sql/servers/databases/replicationLinks/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Replication Link", + "operation": "Get database replication links", + "description": "Return details about replication links established for a particular database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/replicationLinks/delete", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Replication Link", + "operation": "Force-terminate the replication relationship", + "description": "Terminate the replication relationship forcefully and with potential data loss" + } + }, + { + "name": "Microsoft.Sql/servers/databases/replicationLinks/unlink/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Replication Link", + "operation": "Terminate the replication relationship", + "description": "Terminate the replication relationship forcefully or after synchronizing with the partner" + } + }, + { + "name": "Microsoft.Sql/servers/databases/replicationLinks/failover/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Replication Link", + "operation": "Failover replication relationship after synchronizing", + "description": "Failover after synchronizing all changes from the primary, making this database into the replication relationship's primary and making the remote primary into a secondary" + } + }, + { + "name": "Microsoft.Sql/servers/databases/replicationLinks/forceFailoverAllowDataLoss/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Replication Link", + "operation": "Failover replication relationship immediately", + "description": "Failover immediately with potential data loss, making this database into the replication relationship's primary and making the remote primary into a secondary" + } + }, + { + "name": "Microsoft.Sql/servers/databases/replicationLinks/updateReplicationMode/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Replication Link", + "operation": "Update replication mode for link", + "description": "Update replication mode for link to synchronous or asynchronous mode" + } + }, + { + "name": "Microsoft.Sql/servers/databases/replicationLinks/operationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Replication Link Operation Result", + "operation": "Get status of replication link operations", + "description": "Get status of long-running operations on database replication links" + } + }, + { + "name": "Microsoft.Sql/servers/databases/providers/Microsoft.Insights/metricDefinitions/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Metric Definition", + "operation": "Get database metric definitions", + "description": "Return types of metrics that are available for databases" + }, + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "cpu_percent", + "displayName": "CPU percentage", + "displayDescription": "CPU percentage", + "unit": "Percent", + "aggregationType": "Average", + "fillGapWithZero": true + }, + { + "name": "physical_data_read_percent", + "displayName": "Data IO percentage", + "displayDescription": "Data IO percentage", + "unit": "Percent", + "aggregationType": "Average", + "fillGapWithZero": true + }, + { + "name": "log_write_percent", + "displayName": "Log IO percentage", + "displayDescription": "Log IO percentage", + "unit": "Percent", + "aggregationType": "Average", + "metricFilterPattern": "^((?!datawarehouse).)*$", + "fillGapWithZero": true + }, + { + "name": "dtu_consumption_percent", + "displayName": "DTU percentage", + "displayDescription": "DTU percentage", + "unit": "Percent", + "aggregationType": "Average", + "metricFilterPattern": "^((?!datawarehouse).)*$", + "fillGapWithZero": true + }, + { + "name": "storage", + "displayName": "Total database size", + "displayDescription": "Total database size", + "unit": "Bytes", + "aggregationType": "Maximum" + }, + { + "name": "connection_successful", + "displayName": "Successful Connections", + "displayDescription": "Successful Connections", + "unit": "Count", + "aggregationType": "Total", + "fillGapWithZero": true + }, + { + "name": "connection_failed", + "displayName": "Failed Connections", + "displayDescription": "Failed Connections", + "unit": "Count", + "aggregationType": "Total", + "fillGapWithZero": true + }, + { + "name": "blocked_by_firewall", + "displayName": "Blocked by Firewall", + "displayDescription": "Blocked by Firewall", + "unit": "Count", + "aggregationType": "Total", + "fillGapWithZero": true + }, + { + "name": "deadlock", + "displayName": "Deadlocks", + "displayDescription": "Deadlocks", + "unit": "Count", + "aggregationType": "Total", + "metricFilterPattern": "^((?!datawarehouse).)*$", + "fillGapWithZero": true + }, + { + "name": "storage_percent", + "displayName": "Database size percentage", + "displayDescription": "Database size percentage", + "unit": "Percent", + "aggregationType": "Maximum", + "metricFilterPattern": "^((?!datawarehouse).)*$" + }, + { + "name": "xtp_storage_percent", + "displayName": "In-Memory OLTP storage percent", + "displayDescription": "In-Memory OLTP storage percent", + "unit": "Percent", + "aggregationType": "Average", + "metricFilterPattern": "^((?!datawarehouse).)*$", + "fillGapWithZero": true + }, + { + "name": "workers_percent", + "displayName": "Workers percentage", + "displayDescription": "Workers percentage", + "unit": "Percent", + "aggregationType": "Average", + "metricFilterPattern": "^((?!datawarehouse).)*$", + "fillGapWithZero": true + }, + { + "name": "sessions_percent", + "displayName": "Sessions percentage", + "displayDescription": "Sessions percentage", + "unit": "Percent", + "aggregationType": "Average", + "metricFilterPattern": "^((?!datawarehouse).)*$", + "fillGapWithZero": true + }, + { + "name": "dtu_limit", + "displayName": "DTU Limit", + "displayDescription": "DTU Limit", + "unit": "Count", + "aggregationType": "Average", + "metricFilterPattern": "^((?!datawarehouse).)*$" + }, + { + "name": "dtu_used", + "displayName": "DTU used", + "displayDescription": "DTU used", + "unit": "Count", + "aggregationType": "Average", + "metricFilterPattern": "^((?!datawarehouse).)*$", + "fillGapWithZero": true + }, + { + "name": "dwu_limit", + "displayName": "DWU limit", + "displayDescription": "DWU limit", + "unit": "Count", + "aggregationType": "Maximum", + "metricFilterPattern": ".*datawarehouse.*$" + }, + { + "name": "dwu_consumption_percent", + "displayName": "DWU percentage", + "displayDescription": "DWU percentage", + "unit": "Percent", + "aggregationType": "Maximum", + "metricFilterPattern": ".*datawarehouse.*$", + "fillGapWithZero": true + }, + { + "name": "dwu_used", + "displayName": "DWU used", + "displayDescription": "DWU used", + "unit": "Count", + "aggregationType": "Maximum", + "metricFilterPattern": ".*datawarehouse.*$", + "fillGapWithZero": true + } + ] } - ] - } - } -} \ No newline at end of file + } + }, + { + "name": "Microsoft.Sql/servers/databases/metrics/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Metric", + "operation": "Get database resource consumption metrics", + "description": "Return database resource utilization metrics" + } + }, + { + "name": "Microsoft.Sql/servers/databases/providers/Microsoft.Insights/diagnosticSettings/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Diagnostic Settings", + "operation": "Read diagnostic setting", + "description": "Gets the diagnostic setting for the resource" + } + }, + { + "name": "Microsoft.Sql/servers/databases/providers/Microsoft.Insights/diagnosticSettings/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Diagnostic Settings", + "operation": "Write diagnostic setting", + "description": "Creates or updates the diagnostic setting for the resource" + } + }, + { + "name": "Microsoft.Sql/servers/databases/providers/Microsoft.Insights/logDefinitions/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "The log definition of databases", + "operation": "Read databases log definitions", + "description": "Gets the available logs for databases" + }, + "properties": { + "serviceSpecification": { + "logSpecifications": [ + { + "name": "QueryStore", + "displayName": "Query Store", + "blobDuration": "PT1H" + } + ] + } + } + }, + { + "name": "Microsoft.Sql/servers/databases/missingindexes/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Index Advisor", + "operation": "Get recommended database indexes", + "description": "Return suggestions about database indexes to create, modify or delete in order to improve query performance" + } + }, + { + "name": "Microsoft.Sql/servers/databases/missingindexes/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Index Advisor", + "operation": "Apply recommended database index", + "description": "Use database index recommendation in a particular database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Recommended Index", + "operation": "Get list of index recommendations", + "description": "Retrieve list of index recommendations on a database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Recommended Index", + "operation": "Update Recommended Index State", + "description": "Apply index recommendation" + } + }, + { + "name": "Microsoft.Sql/servers/databases/schemas/tables/columns/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database table column", + "operation": "Get columns", + "description": "Retrieve list of columns of a table" + } + }, + { + "name": "Microsoft.Sql/servers/databases/queryStore/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Query Store settings", + "operation": "Get Query Store settings", + "description": "Returns current values of Query Store settings for the database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/queryStore/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Query Store settings", + "operation": "Update Query Store settings", + "description": "Updates Query Store setting for the database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/topQueries/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Top Queries", + "operation": "Get Top Queries for the database", + "description": "Returns aggregated runtime statistics for selected query in selected time period" + } + }, + { + "name": "Microsoft.Sql/servers/databases/topQueries/statistics/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Top Queries Statistics", + "operation": "Get Database Top Queries statistics", + "description": "Returns aggregated runtime statistics for selected query in selected time period" + } + }, + { + "name": "Microsoft.Sql/servers/databases/topQueries/queryText/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Top Queries query text", + "operation": "Get Database Top Queries query text", + "description": "Returns the Transact-SQL text for selected query ID" + } + }, + { + "name": "Microsoft.Sql/servers/databases/serviceTierAdvisors/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Service Tier Advisor", + "operation": "Get recommended database performance level", + "description": "Return suggestion about scaling database up or down based on query execution statistics to improve performance or reduce cost" + } + }, + { + "name": "Microsoft.Sql/servers/databases/transparentDataEncryption/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Transparent Data Encryption", + "operation": "Get database transparent data encryption details", + "description": "Retrieve status and details of transparent data encryption security feature for a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/transparentDataEncryption/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Transparent Data Encryption", + "operation": "Change transparent data encryption state", + "description": "Enable or disable transparent data encryption for a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/transparentDataEncryption/operationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Transparent Data Encryption", + "operation": "Get database transparent data encryption details", + "description": "Retrieve status and details of transparent data encryption security feature for a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/auditingPolicies/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Table Auditing Policy", + "operation": "Get database table auditing policy", + "description": "Retrieve details of the table auditing policy configured on a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/auditingPolicies/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Table Auditing Policy", + "operation": "Set database table auditing policy", + "description": "Change the table auditing policy for a given database" + } + }, + { + "name": "Microsoft.Sql/servers/auditingPolicies/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Default Server Table Auditing Policy", + "operation": "Get default server table auditing policy", + "description": "Retrieve details of the default server table auditing policy configured on a given server" + } + }, + { + "name": "Microsoft.Sql/servers/auditingPolicies/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Default Server Table Auditing Policy", + "operation": "Set default server table auditing policy", + "description": "Change the default server table auditing for a given server" + } + }, + { + "name": "Microsoft.Sql/servers/databases/auditingSettings/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Blob Auditing Policy", + "operation": "Get database blob auditing policy", + "description": "Retrieve details of the blob auditing policy configured on a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/auditingSettings/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Blob Auditing Policy", + "operation": "Set database blob auditing policy", + "description": "Change the blob auditing policy for a given database" + } + }, + { + "name": "Microsoft.Sql/servers/auditingSettings/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Blob Auditing Policy", + "operation": "Get server blob auditing policy", + "description": "Retrieve details of the server blob auditing policy configured on a given server" + } + }, + { + "name": "Microsoft.Sql/servers/auditingSettings/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Blob Auditing Policy", + "operation": "Set server blob auditing policy", + "description": "Change the server blob auditing for a given server" + } + }, + { + "name": "Microsoft.Sql/servers/auditingSettings/operationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Blob Auditing Operation Results", + "operation": "Get server blob auditing operation results", + "description": "Retrieve result of the server blob auditing policy Set operation" + } + }, + { + "name": "Microsoft.Sql/servers/databases/auditRecords/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Blob Audit Records", + "operation": "Get database blob audit records", + "description": "Retrieve the database blob audit records" + } + }, + { + "name": "Microsoft.Sql/servers/databases/connectionPolicies/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Connection Policy", + "operation": "Get database connection policy", + "description": "Retrieve details of the connection policy configured on a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/connectionPolicies/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Connection Policy", + "operation": "Set database connection policy", + "description": "Change connection policy for a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/dataMaskingPolicies/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Data Masking Policy", + "operation": "Get database data masking policy", + "description": "Retrieve details of the data masking policy configured on a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/dataMaskingPolicies/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Data Masking Policy", + "operation": "Set database data masking policy", + "description": "Change data masking policy for a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Data Masking Policy Rule", + "operation": "Get database data masking policy rule", + "description": "Retrieve details of the data masking policy rule configured on a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Data Masking Policy Rule", + "operation": "Set database data masking policy rule", + "description": "Change data masking policy rule for a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/securityAlertPolicies/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Threat Detection Policy", + "operation": "Get database threat detection policy", + "description": "Retrieve details of the threat detection policy configured on a given database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/securityAlertPolicies/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database Threat Detection Policy", + "operation": "Set threat detection auditing policy", + "description": "Change the threat detection policy for a given database" + } + }, + { + "name": "Microsoft.Sql/servers/securityAlertPolicies/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Threat Detection Policy", + "operation": "Get server threat detection policy", + "description": "Retrieve details of the server threat detection policy configured on a given server" + } + }, + { + "name": "Microsoft.Sql/servers/securityAlertPolicies/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Threat Detection Policy", + "operation": "Set server threat detection policy", + "description": "Change the server threat detection for a given server" + } + }, + { + "name": "Microsoft.Sql/servers/securityAlertPolicies/operationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Server Threat Detection Operation Results", + "operation": "Get server Threat Detection operation results", + "description": "Retrieve results of the server Threat Detection policy Set operation" + } + }, + { + "name": "Microsoft.Sql/servers/databases/VulnerabilityAssessmentScans/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Vulnerability Assessment Database Scan", + "operation": "Execute vulnerability assessment database scan", + "description": "Execute vulnerability assessment database scan." + } + }, + { + "name": "Microsoft.Sql/servers/VulnerabilityAssessmentScans/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Vulnerability Assessment Server Scan", + "operation": "Execute vulnerability assessment server scan", + "description": "Execute vulnerability assessment server scan" + } + }, + { + "name": "Microsoft.Sql/servers/databases/advisors/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database advisor", + "operation": "Get advisors for a database", + "description": "Returns list of advisors available for the database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/advisors/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database advisor", + "operation": "Update auto-execute status of a database advisor", + "description": "Update auto-execute status of an advisor on database level." + } + }, + { + "name": "Microsoft.Sql/servers/databases/advisors/recommendedActions/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database recommended action", + "operation": "Get recommended actions for a database", + "description": "Returns list of recommended actions of specified advisor for the database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/advisors/recommendedActions/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database recommended action", + "operation": "Update database recommended action state.", + "description": "Apply the recommended action on the database" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic Database Pool", + "operation": "Get elastic database pool details", + "description": "Retrieve details of elastic database pool on a given server" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic Database Pool", + "operation": "Create new or update existing elastic database pool", + "description": "Create a new or change properties of existing elastic database pool" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/delete", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic Database Pool", + "operation": "Delete elastic database pool", + "description": "Delete existing elastic database pool" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/databases/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database", + "operation": "Get elastic pool databases", + "description": "Retrieve list and details of databases that are part of elastic database pool on a given server" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/elasticPoolActivity/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic Database Pool Activity", + "operation": "Get elastic database pool activity", + "description": "Retrieve activities and details on a given elastic database pool" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic Pool Database Activity", + "operation": "Get elastic pool database activity", + "description": "Retrieve activities and details on a given database that is part of elastic database pool" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/providers/Microsoft.Insights/metricDefinitions/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic Database Pool Metric Definition", + "operation": "Get elastic pool metric definitions", + "description": "Return types of metrics that are available for elastic database pools" + }, + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "cpu_percent", + "displayName": "CPU percentage", + "displayDescription": "CPU percentage", + "unit": "Percent", + "aggregationType": "Average", + "fillGapWithZero": true + }, + { + "name": "physical_data_read_percent", + "displayName": "Data IO percentage", + "displayDescription": "Data IO percentage", + "unit": "Percent", + "aggregationType": "Average", + "fillGapWithZero": true + }, + { + "name": "log_write_percent", + "displayName": "Log IO percentage", + "displayDescription": "Log IO percentage", + "unit": "Percent", + "aggregationType": "Average", + "fillGapWithZero": true + }, + { + "name": "dtu_consumption_percent", + "displayName": "DTU percentage", + "displayDescription": "DTU percentage", + "unit": "Percent", + "aggregationType": "Average", + "fillGapWithZero": true + }, + { + "name": "storage_percent", + "displayName": "Storage percentage", + "displayDescription": "Storage percentage", + "unit": "Percent", + "aggregationType": "Average" + }, + { + "name": "workers_percent", + "displayName": "Workers percentage", + "displayDescription": "Workers percentage", + "unit": "Percent", + "aggregationType": "Average", + "fillGapWithZero": true + }, + { + "name": "sessions_percent", + "displayName": "Sessions percentage", + "displayDescription": "Sessions percentage", + "unit": "Percent", + "aggregationType": "Average", + "fillGapWithZero": true + }, + { + "name": "eDTU_limit", + "displayName": "eDTU limit", + "displayDescription": "eDTU limit", + "unit": "Count", + "aggregationType": "Average" + }, + { + "name": "storage_limit", + "displayName": "Storage limit", + "displayDescription": "Storage limit", + "unit": "Bytes", + "aggregationType": "Average" + }, + { + "name": "eDTU_used", + "displayName": "eDTU used", + "displayDescription": "eDTU used", + "unit": "Count", + "aggregationType": "Average", + "fillGapWithZero": true + }, + { + "name": "storage_used", + "displayName": "Storage used", + "displayDescription": "Storage used", + "unit": "Bytes", + "aggregationType": "Average" + }, + { + "name": "xtp_storage_percent", + "displayName": "In-Memory OLTP storage percent", + "displayDescription": "In-Memory OLTP storage percent", + "unit": "Percent", + "aggregationType": "Average", + "fillGapWithZero": true + } + ] + } + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/metrics/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic Database Pool Metric", + "operation": "Get elastic pool resource consumption metrics", + "description": "Return elastic database pool resource utilization metrics" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/operationResults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic Database Pool Operation Result", + "operation": "Get elastic database pool operation result", + "description": "Retrieve details on a given elastic database pool operation" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/advisors/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic pool advisor", + "operation": "Get advisors for an elastic pool", + "description": "Returns list of advisors available for the elastic pool" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/advisors/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic pool advisor", + "operation": "Update auto-execute status of a elastic pool advisor", + "description": "Update auto-execute status of an advisor on elastic pool level." + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/advisors/recommendedActions/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic pool recommended action", + "operation": "Get recommended actions for an elastic pool", + "description": "Returns list of recommended actions of specified advisor for the elastic pool" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/advisors/recommendedActions/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic pool recommended action", + "operation": "Update elastic pool recommended action state.", + "description": "Apply the recommended action on the elastic pool" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/providers/Microsoft.Insights/diagnosticSettings/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic Database Pool Diagnostic Settings", + "operation": "Read diagnostic setting", + "description": "Gets the diagnostic setting for the resource" + } + }, + { + "name": "Microsoft.Sql/servers/elasticPools/providers/Microsoft.Insights/diagnosticSettings/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Elastic Database Pool Diagnostic Settings", + "operation": "Write diagnostic setting", + "description": "Creates or updates the diagnostic setting for the resource" + } + }, + { + "name": "Microsoft.Sql/servers/databases/pause/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database", + "operation": "Pause a database", + "description": "Pause a DataWarehouse edition database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/resume/action", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Database", + "operation": "Resume a database", + "description": "Resume a DataWarehouse edition database" + } + }, + { + "name": "Microsoft.Sql/servers/databases/dataWarehouseQueries/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Data Warehouse Query", + "operation": "Get details about data warehouse query", + "description": "Returns the data warehouse distribution query information for selected query ID" + } + }, + { + "name": "Microsoft.Sql/servers/databases/dataWarehouseQueries/dataWarehouseQuerySteps/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "Data Warehouse Query Step", + "operation": "Get details about data warehouse query step", + "description": "Returns the distributed query step information of data warehouse query for selected step ID" + } + }, + { + "name": "Microsoft.Sql/servers/backupLongTermRetentionVaults/read", + "display": { + "provider": "Microsoft SQL Database", + "resource": "A backup long term retention vault", + "operation": "Read a backup long term retention vault", + "description": "This operation is used to get a backup long term retention vault. It returns information about the vault registered to this server." + } + }, + { + "name": "Microsoft.Sql/servers/backupLongTermRetentionVaults/write", + "display": { + "provider": "Microsoft SQL Database", + "resource": "A backup long term retention vault", + "operation": "This operation is used to register a backup long term retention vault to a server.", + "description": "Register a backup long term retention vault" + } + } + ] + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueriesList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueriesList.json index 97bdd4c1f703..6e2a1d6b3da8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueriesList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueriesList.json @@ -1,60 +1,60 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"sqlcrudtest", + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "sqlcrudtest", "databaseName": "db1", - "api-version":"2014-04-01" + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "value":[ + "responses": { + "200": { + "value": [ { - "type":"Microsoft.Sql/servers/databases/topQueries", - "numberOfTopQueries":1, - "aggregationFunction":"sum", - "executionType":"any", - "observedMetric":"cpu", - "observationStartTime":"2017-07-11T16:21:54.0916567Z", - "observationEndTime":"2017-07-12T16:21:54.0916567Z", - "intervalType":"PT1H", - "queries":[ + "type": "Microsoft.Sql/servers/databases/topQueries", + "numberOfTopQueries": 1, + "aggregationFunction": "sum", + "executionType": "any", + "observedMetric": "cpu", + "observationStartTime": "2017-07-11T16:21:54.0916567Z", + "observationEndTime": "2017-07-12T16:21:54.0916567Z", + "intervalType": "PT1H", + "queries": [ { - "queryId":"19", - "intervals":[ + "queryId": "19", + "intervals": [ { - "intervalStartTime":"2017-07-11T16:00:00", - "executionCount":12, - "metrics":[ + "intervalStartTime": "2017-07-11T16:00:00", + "executionCount": 12, + "metrics": [ { - "name":"cpu", - "displayName":"Cpu", - "unit":"percentage", - "value":0.000763888888888889 + "name": "cpu", + "displayName": "Cpu", + "unit": "percentage", + "value": 0.000763888888888889 }, { - "name":"io", - "displayName":"Physical Io Reads", - "unit":"percentage", - "value":0.0 + "name": "io", + "displayName": "Physical Io Reads", + "unit": "percentage", + "value": 0.0 }, { - "name":"logIo", - "displayName":"Log Writes", - "unit":"percentage", - "value":0.0 + "name": "logIo", + "displayName": "Log Writes", + "unit": "percentage", + "value": 0.0 }, { - "name":"memory", - "displayName":"Memory consumption", - "unit":"KB", - "value":0.0 + "name": "memory", + "displayName": "Memory consumption", + "unit": "KB", + "value": 0.0 }, { - "name":"duration", - "displayName":"Query duration", - "unit":"microseconds", - "value":3308.0 + "name": "duration", + "displayName": "Query duration", + "unit": "microseconds", + "value": 3308.0 } ] } @@ -65,4 +65,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueryStatisticsList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueryStatisticsList.json index f7cfeb5a4eb7..d9d9174294a2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueryStatisticsList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueryStatisticsList.json @@ -1,51 +1,51 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"sqlcrudtest", - "databaseName":"db1", - "queryId":"19", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "sqlcrudtest", + "databaseName": "db1", + "queryId": "19", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "value":[ + "responses": { + "200": { + "value": [ { - "queryId":"19", - "intervals":[ + "queryId": "19", + "intervals": [ { - "intervalStartTime":"2017-07-11T16:00:00", - "executionCount":12, - "metrics":[ + "intervalStartTime": "2017-07-11T16:00:00", + "executionCount": 12, + "metrics": [ { - "name":"cpu", - "displayName":"Cpu", - "unit":"percentage", - "value":0.000763888888888889 + "name": "cpu", + "displayName": "Cpu", + "unit": "percentage", + "value": 0.000763888888888889 }, { - "name":"io", - "displayName":"Physical Io Reads", - "unit":"percentage", - "value":0.0 + "name": "io", + "displayName": "Physical Io Reads", + "unit": "percentage", + "value": 0.0 }, { - "name":"logIo", - "displayName":"Log Writes", - "unit":"percentage", - "value":0.0 + "name": "logIo", + "displayName": "Log Writes", + "unit": "percentage", + "value": 0.0 }, { - "name":"memory", - "displayName":"Memory consumption", - "unit":"KB", - "value":0.0 + "name": "memory", + "displayName": "Memory consumption", + "unit": "KB", + "value": 0.0 }, { - "name":"duration", - "displayName":"Query duration", - "unit":"microseconds", - "value":3308.0 + "name": "duration", + "displayName": "Query duration", + "unit": "microseconds", + "value": 3308.0 } ] } @@ -54,4 +54,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueryTextsList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueryTextsList.json index f7589086e232..2b3f3dca7bee 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueryTextsList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/QueryTextsList.json @@ -1,21 +1,21 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"group1", - "serverName":"sqlcrudtest", - "databaseName":"db1", - "queryId":"19", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "sqlcrudtest", + "databaseName": "db1", + "queryId": "19", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "value":[ + "responses": { + "200": { + "value": [ { - "name":"current", - "queryText":"select 1", - "type":"Microsoft.Sql/servers/databases/topQueries/queryText" + "name": "current", + "queryText": "select 1", + "type": "Microsoft.Sql/servers/databases/topQueries/queryText" } ] } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolGet.json index 6e48b00be876..1df27a2ecb93 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolGet.json @@ -1,49 +1,47 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"sqlcrudtest-6852", - "serverName":"sqlcrudtest-2080", - "recommendedElasticPoolName":"ElasticPool1", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "recommendedElasticPoolName": "ElasticPool1", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/recommendedElasticPools/ElasticPool1", - "name":"ElasticPool1", - "type":"Microsoft.Sql/servers/recommendedElasticPools", - "properties":{ - "databaseEdition":"Standard", - "dtu":1000.0, - "databaseDtuMin":100.6, - "databaseDtuMax":200.5, - "storageMB":1000.3, - "observationPeriodStart":"2014-11-01T00:00:00Z", - "observationPeriodEnd":"2014-11-15T00:00:00Z", - "maxObservedDtu":900.2, - "maxObservedStorageMB":350.0, - "databases":[ - - ], - "metrics":[ + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/recommendedElasticPools/ElasticPool1", + "name": "ElasticPool1", + "type": "Microsoft.Sql/servers/recommendedElasticPools", + "properties": { + "databaseEdition": "Standard", + "dtu": 1000.0, + "databaseDtuMin": 100.6, + "databaseDtuMax": 200.5, + "storageMB": 1000.3, + "observationPeriodStart": "2014-11-01T00:00:00Z", + "observationPeriodEnd": "2014-11-15T00:00:00Z", + "maxObservedDtu": 900.2, + "maxObservedStorageMB": 350.0, + "databases": [], + "metrics": [ { - "dateTime":"2015-04-01T00:00:00Z", - "dtu":100.5, - "sizeGB":15.4 + "dateTime": "2015-04-01T00:00:00Z", + "dtu": 100.5, + "sizeGB": 15.4 }, { - "dateTime":"2015-04-02T00:00:00Z", - "dtu":135.0, - "sizeGB":12.754 + "dateTime": "2015-04-02T00:00:00Z", + "dtu": 135.0, + "sizeGB": 12.754 }, { - "dateTime":"2015-04-03T00:00:00Z", - "dtu":135.0, - "sizeGB":12.754 + "dateTime": "2015-04-03T00:00:00Z", + "dtu": 135.0, + "sizeGB": 12.754 } ] } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolList.json index 44e84738e5e4..e5b2ddddf922 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolList.json @@ -1,87 +1,85 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"sqlcrudtest-6852", - "serverName":"sqlcrudtest-2080", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/recommendedElasticPools/ElasticPool1", - "name":"ElasticPool1", - "type":"Microsoft.Sql/servers/recommendedElasticPools", - "properties":{ - "databaseEdition":"Standard", - "dtu":1000.0, - "databaseDtuMin":100.6, - "databaseDtuMax":200.5, - "storageMB":1000.3, - "observationPeriodStart":"2014-11-01T00:00:00Z", - "observationPeriodEnd":"2014-11-15T00:00:00Z", - "maxObservedDtu":900.2, - "maxObservedStorageMB":350.0, - "databases":[ - - ], - "metrics":[ + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/recommendedElasticPools/ElasticPool1", + "name": "ElasticPool1", + "type": "Microsoft.Sql/servers/recommendedElasticPools", + "properties": { + "databaseEdition": "Standard", + "dtu": 1000.0, + "databaseDtuMin": 100.6, + "databaseDtuMax": 200.5, + "storageMB": 1000.3, + "observationPeriodStart": "2014-11-01T00:00:00Z", + "observationPeriodEnd": "2014-11-15T00:00:00Z", + "maxObservedDtu": 900.2, + "maxObservedStorageMB": 350.0, + "databases": [], + "metrics": [ { - "dateTime":"2015-04-01T00:00:00Z", - "dtu":100.5, - "sizeGB":15.4 + "dateTime": "2015-04-01T00:00:00Z", + "dtu": 100.5, + "sizeGB": 15.4 }, { - "dateTime":"2015-04-02T00:00:00Z", - "dtu":135.0, - "sizeGB":12.754 + "dateTime": "2015-04-02T00:00:00Z", + "dtu": 135.0, + "sizeGB": 12.754 }, { - "dateTime":"2015-04-03T00:00:00Z", - "dtu":135.0, - "sizeGB":12.754 + "dateTime": "2015-04-03T00:00:00Z", + "dtu": 135.0, + "sizeGB": 12.754 } ] } }, { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/recommendedElasticPools/ElasticPool2", - "name":"ElasticPool2", - "type":"Microsoft.Sql/servers/recommendedElasticPools", - "properties":{ - "databaseEdition":"Standard", - "dtu":1000.0, - "databaseDtuMin":100.0, - "databaseDtuMax":200.0, - "storageMB":1000.0, - "observationPeriodStart":"2014-11-01T00:00:00Z", - "observationPeriodEnd":"2014-11-15T00:00:00Z", - "maxObservedDtu":450.0, - "maxObservedStorageMB":900.0, - "databases":[ + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/recommendedElasticPools/ElasticPool2", + "name": "ElasticPool2", + "type": "Microsoft.Sql/servers/recommendedElasticPools", + "properties": { + "databaseEdition": "Standard", + "dtu": 1000.0, + "databaseDtuMin": 100.0, + "databaseDtuMax": 200.0, + "storageMB": 1000.0, + "observationPeriodStart": "2014-11-01T00:00:00Z", + "observationPeriodEnd": "2014-11-15T00:00:00Z", + "maxObservedDtu": 450.0, + "maxObservedStorageMB": 900.0, + "databases": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/master", - "name":"master", - "type":"Microsoft.Sql/servers/databases", - "location":"Southeast Asia", - "properties":{ - "databaseId":"28acaef5-d228-4660-bb67-546ec8482496", - "edition":"System", - "status":"Online", - "serviceLevelObjective":"System2", - "collation":"SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes":"5368709120", - "creationDate":"2015-04-17T08:36:48.237Z", - "currentServiceObjectiveId":"620323bf-2879-4807-b30d-c2e6d7b3b3aa", - "requestedServiceObjectiveId":"620323bf-2879-4807-b30d-c2e6d7b3b3aa", - "requestedServiceObjectiveName":null, - "createMode":null, - "sourceDatabaseId":null, - "defaultSecondaryLocation":"Japan East", - "earliestRestoreDate":null, - "restorePointInTime":null, - "sourceDatabaseDeletionDate":null + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/master", + "name": "master", + "type": "Microsoft.Sql/servers/databases", + "location": "Southeast Asia", + "properties": { + "databaseId": "28acaef5-d228-4660-bb67-546ec8482496", + "edition": "System", + "status": "Online", + "serviceLevelObjective": "System2", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": "5368709120", + "creationDate": "2015-04-17T08:36:48.237Z", + "currentServiceObjectiveId": "620323bf-2879-4807-b30d-c2e6d7b3b3aa", + "requestedServiceObjectiveId": "620323bf-2879-4807-b30d-c2e6d7b3b3aa", + "requestedServiceObjectiveName": null, + "createMode": null, + "sourceDatabaseId": null, + "defaultSecondaryLocation": "Japan East", + "earliestRestoreDate": null, + "restorePointInTime": null, + "sourceDatabaseDeletionDate": null } } ] @@ -91,4 +89,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolListDecoupled.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolListDecoupled.json index 6927e13acc3c..8cd8a09a88ff 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolListDecoupled.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolListDecoupled.json @@ -1,70 +1,68 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"sqlcrudtest-6852", - "serverName":"sqlcrudtest-2080", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/recommendedElasticPools/ElasticPool1", - "name":"ElasticPool1", - "type":"Microsoft.Sql/servers/recommendedElasticPools", - "properties":{ - "databaseEdition":"Standard", - "dtu":1000.0, - "databaseDtuMin":100.6, - "databaseDtuMax":200.5, - "storageMB":1000.3, - "observationPeriodStart":"2014-11-01T00:00:00Z", - "observationPeriodEnd":"2014-11-15T00:00:00Z", - "maxObservedDtu":900.2, - "maxObservedStorageMB":350.0, - "databases":[ - - ], - "metrics":[ + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/recommendedElasticPools/ElasticPool1", + "name": "ElasticPool1", + "type": "Microsoft.Sql/servers/recommendedElasticPools", + "properties": { + "databaseEdition": "Standard", + "dtu": 1000.0, + "databaseDtuMin": 100.6, + "databaseDtuMax": 200.5, + "storageMB": 1000.3, + "observationPeriodStart": "2014-11-01T00:00:00Z", + "observationPeriodEnd": "2014-11-15T00:00:00Z", + "maxObservedDtu": 900.2, + "maxObservedStorageMB": 350.0, + "databases": [], + "metrics": [ { - "dateTime":"2015-04-01T00:00:00Z", - "dtu":100.5, - "sizeGB":15.4 + "dateTime": "2015-04-01T00:00:00Z", + "dtu": 100.5, + "sizeGB": 15.4 }, { - "dateTime":"2015-04-02T00:00:00Z", - "dtu":135.0, - "sizeGB":12.754 + "dateTime": "2015-04-02T00:00:00Z", + "dtu": 135.0, + "sizeGB": 12.754 }, { - "dateTime":"2015-04-03T00:00:00Z", - "dtu":135.0, - "sizeGB":12.754 + "dateTime": "2015-04-03T00:00:00Z", + "dtu": 135.0, + "sizeGB": 12.754 } ] } }, { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/recommendedElasticPools/ElasticPool2", - "name":"ElasticPool2", - "type":"Microsoft.Sql/servers/recommendedElasticPools", - "properties":{ - "databaseEdition":"Standard", - "dtu":1000.0, - "databaseDtuMin":100.0, - "databaseDtuMax":200.0, - "storageMB":1000.0, - "observationPeriodStart":"2014-11-01T00:00:00Z", - "observationPeriodEnd":"2014-11-15T00:00:00Z", - "maxObservedDtu":450.0, - "maxObservedStorageMB":900.0, - "databases":[ + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/recommendedElasticPools/ElasticPool2", + "name": "ElasticPool2", + "type": "Microsoft.Sql/servers/recommendedElasticPools", + "properties": { + "databaseEdition": "Standard", + "dtu": 1000.0, + "databaseDtuMin": 100.0, + "databaseDtuMax": 200.0, + "storageMB": 1000.0, + "observationPeriodStart": "2014-11-01T00:00:00Z", + "observationPeriodEnd": "2014-11-15T00:00:00Z", + "maxObservedDtu": 450.0, + "maxObservedStorageMB": 900.0, + "databases": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/master", - "name":"master", - "type":"Microsoft.Sql/servers/databases", - "location":"Southeast Asia" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/master", + "name": "master", + "type": "Microsoft.Sql/servers/databases", + "location": "Southeast Asia" } ] } @@ -73,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolListMetrics.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolListMetrics.json index 25241688f844..abcb08b44168 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolListMetrics.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecommendedElasticPoolListMetrics.json @@ -1,27 +1,27 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"sqlcrudtest-6852", - "serverName":"sqlcrudtest-2080", - "recommendedElasticPoolName":"sqlcrudtest-2080_pool1", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "recommendedElasticPoolName": "sqlcrudtest-2080_pool1", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "dateTime":"2017-07-24T12:00:00Z", - "dtu":0.017588245576265669, - "sizeGB":0.921875 + "dateTime": "2017-07-24T12:00:00Z", + "dtu": 0.017588245576265669, + "sizeGB": 0.921875 }, { - "dateTime":"2017-07-25T12:00:00Z", - "dtu":0.018937532104510685, - "sizeGB":0.921875 + "dateTime": "2017-07-25T12:00:00Z", + "dtu": 0.018937532104510685, + "sizeGB": 0.921875 } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecoverableDatabaseGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecoverableDatabaseGet.json index 8070c65a0547..8f1a7a46ef51 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecoverableDatabaseGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecoverableDatabaseGet.json @@ -1,24 +1,24 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "recoverabledatabasetest-6852", - "serverName": "recoverabledatabasetest-2080", - "databaseName": "recoverabledatabasetest-9187", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/recoverabledatabasetest-6852/providers/Microsoft.Sql/servers/recoverabledatabasetest-2080/recoverabledatabases/recoverabledatabasetest-9187", - "name": "recoverabledatabasetest-9187", - "type": "Microsoft.Sql/servers/recoverabledatabases", - "properties": { - "edition": "Basic", - "serviceLevelObjective": "Basic", - "lastAvailableBackupDate": "2017-05-26T01:06:29.78Z", - "elasticPoolName": null - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "recoverabledatabasetest-6852", + "serverName": "recoverabledatabasetest-2080", + "databaseName": "recoverabledatabasetest-9187", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/recoverabledatabasetest-6852/providers/Microsoft.Sql/servers/recoverabledatabasetest-2080/recoverabledatabases/recoverabledatabasetest-9187", + "name": "recoverabledatabasetest-9187", + "type": "Microsoft.Sql/servers/recoverabledatabases", + "properties": { + "edition": "Basic", + "serviceLevelObjective": "Basic", + "lastAvailableBackupDate": "2017-05-26T01:06:29.78Z", + "elasticPoolName": null } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecoverableDatabaseList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecoverableDatabaseList.json index 788340156196..be64c202b1be 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecoverableDatabaseList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RecoverableDatabaseList.json @@ -1,49 +1,49 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "recoverabledatabasetest-1234", - "serverName": "recoverabledatabasetest-7177", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/recoverabledatabasetest-1234/providers/Microsoft.Sql/servers/recoverabledatabasetest-7177/recoverabledatabases/recoverabledatabasetest-1235", - "name": "recoverabledatabasetest-1235", - "type": "Microsoft.Sql/servers/recoverabledatabases", - "properties": { - "edition": "Standard", - "serviceLevelObjective": "S0", - "lastAvailableBackupDate": "2017-05-26T01:06:29.78Z", - "elasticPoolName": null - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/recoverabledatabasetest-1234/providers/Microsoft.Sql/servers/recoverabledatabasetest-7177/recoverabledatabases/recoverabledatabasetest-9231", - "name": "recoverabledatabasetest-9231", - "type": "Microsoft.Sql/servers/recoverabledatabases", - "properties": { - "edition": "Premium", - "serviceLevelObjective": "P1", - "lastAvailableBackupDate": "2017-05-26T03:20:31.78Z", - "elasticPoolName": null - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/recoverabledatabasetest-1234/providers/Microsoft.Sql/servers/recoverabledatabasetest-7177/recoverabledatabases/recoverabledatabasetest-0342", - "name": "recoverabledatabasetest-0342", - "type": "Microsoft.Sql/servers/recoverabledatabases", - "properties": { - "edition": "Basic", - "serviceLevelObjective": "Basic", - "lastAvailableBackupDate": "2017-05-24T02:06:18.78Z", - "elasticPoolName": null - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "recoverabledatabasetest-1234", + "serverName": "recoverabledatabasetest-7177", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/recoverabledatabasetest-1234/providers/Microsoft.Sql/servers/recoverabledatabasetest-7177/recoverabledatabases/recoverabledatabasetest-1235", + "name": "recoverabledatabasetest-1235", + "type": "Microsoft.Sql/servers/recoverabledatabases", + "properties": { + "edition": "Standard", + "serviceLevelObjective": "S0", + "lastAvailableBackupDate": "2017-05-26T01:06:29.78Z", + "elasticPoolName": null } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/recoverabledatabasetest-1234/providers/Microsoft.Sql/servers/recoverabledatabasetest-7177/recoverabledatabases/recoverabledatabasetest-9231", + "name": "recoverabledatabasetest-9231", + "type": "Microsoft.Sql/servers/recoverabledatabases", + "properties": { + "edition": "Premium", + "serviceLevelObjective": "P1", + "lastAvailableBackupDate": "2017-05-26T03:20:31.78Z", + "elasticPoolName": null + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/recoverabledatabasetest-1234/providers/Microsoft.Sql/servers/recoverabledatabasetest-7177/recoverabledatabases/recoverabledatabasetest-0342", + "name": "recoverabledatabasetest-0342", + "type": "Microsoft.Sql/servers/recoverabledatabases", + "properties": { + "edition": "Basic", + "serviceLevelObjective": "Basic", + "lastAvailableBackupDate": "2017-05-24T02:06:18.78Z", + "elasticPoolName": null + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkDelete.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkDelete.json index 579bd631adea..8d5937450a40 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkDelete.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkFailover.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkFailover.json index bba2acedff38..ce5ed3665178 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkFailover.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkFailover.json @@ -9,6 +9,6 @@ }, "responses": { "202": {}, - "204":{} + "204": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkGet.json index e0c12c819fb3..e70d68ebbc93 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkGet.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkList.json index 6211146c4698..735e01de7257 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkList.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RestorableDroppedDatabaseGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RestorableDroppedDatabaseGet.json index 5f94301a0018..bb5851883b1b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RestorableDroppedDatabaseGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RestorableDroppedDatabaseGet.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "restorabledroppeddatabasetest-1257", - "serverName": "restorabledroppeddatabasetest-2389", - "restorableDroppededDatabaseId": "restorabledroppeddatabasetest-7654,131403269876900000", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/restorabledroppeddatabasetest-1257/providers/Microsoft.Sql/servers/restorabledroppeddatabasetest-2389/restorableDroppedDatabases/restorabledroppeddatabasetest-7654,131403269876900000", - "name": "restorabledroppeddatabasetest-7654,131403269876900000", - "type": "Microsoft.Sql/servers/restorableDroppedDatabases", - "location": "Japan East", - "properties": { - "databaseName": "restorabledroppeddatabasetest-7654", - "edition": "Basic", - "maxSizeBytes": "2147483648", - "serviceLevelObjective": "Basic", - "elasticPoolName": null, - "creationDate": "2017-02-10T00:56:19.2Z", - "deletionDate": "2017-05-27T02:49:47.69Z", - "earliestRestoreDate": "2017-05-20T02:49:47.69Z" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "restorabledroppeddatabasetest-1257", + "serverName": "restorabledroppeddatabasetest-2389", + "restorableDroppededDatabaseId": "restorabledroppeddatabasetest-7654,131403269876900000", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/restorabledroppeddatabasetest-1257/providers/Microsoft.Sql/servers/restorabledroppeddatabasetest-2389/restorableDroppedDatabases/restorabledroppeddatabasetest-7654,131403269876900000", + "name": "restorabledroppeddatabasetest-7654,131403269876900000", + "type": "Microsoft.Sql/servers/restorableDroppedDatabases", + "location": "Japan East", + "properties": { + "databaseName": "restorabledroppeddatabasetest-7654", + "edition": "Basic", + "maxSizeBytes": "2147483648", + "serviceLevelObjective": "Basic", + "elasticPoolName": null, + "creationDate": "2017-02-10T00:56:19.2Z", + "deletionDate": "2017-05-27T02:49:47.69Z", + "earliestRestoreDate": "2017-05-20T02:49:47.69Z" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RestorableDroppedDatabaseList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RestorableDroppedDatabaseList.json index 4f310294ceef..c5ae170d15b6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RestorableDroppedDatabaseList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/RestorableDroppedDatabaseList.json @@ -1,48 +1,48 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "restorabledroppeddatabasetest-1349", - "serverName": "restorabledroppeddatabasetest-1840", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/restorabledroppeddatabasetest-1349/providers/Microsoft.Sql/servers/restorabledroppeddatabasetest-1840/restorableDroppedDatabases/restorabledroppeddatabasetest-1345,131403269876900000", - "name": "restorabledroppeddatabasetest-1345,131403269876900000", - "type": "Microsoft.Sql/servers/restorableDroppedDatabases", - "location": "Japan East", - "properties": { - "databaseName": "restorabledroppeddatabasetest-1345", - "edition": "Basic", - "maxSizeBytes": "2147483648", - "serviceLevelObjective": "Basic", - "elasticPoolName": null, - "creationDate": "2017-02-10T00:56:19.2Z", - "deletionDate": "2017-05-27T02:49:47.69Z", - "earliestRestoreDate": "2017-05-20T02:49:47.69Z" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/restorabledroppeddatabasetest-1349/providers/Microsoft.Sql/servers/restorabledroppeddatabasetest-1840/restorableDroppedDatabases/restorabledroppeddatabasetest-2764,131403249684030000", - "name": "restorabledroppeddatabasetest-2764,131403249684030000", - "type": "Microsoft.Sql/servers/restorableDroppedDatabases", - "location": "Japan East", - "properties": { - "databaseName": "restorabledroppeddatabasetest-2764", - "edition": "Standard", - "maxSizeBytes": "268435456000", - "serviceLevelObjective": "S0", - "elasticPoolName": null, - "creationDate": "2016-05-10T00:56:19.2Z", - "deletionDate": "2017-05-27T02:16:08.403Z", - "earliestRestoreDate": "2017-04-21T02:49:47.69Z" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "restorabledroppeddatabasetest-1349", + "serverName": "restorabledroppeddatabasetest-1840", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/restorabledroppeddatabasetest-1349/providers/Microsoft.Sql/servers/restorabledroppeddatabasetest-1840/restorableDroppedDatabases/restorabledroppeddatabasetest-1345,131403269876900000", + "name": "restorabledroppeddatabasetest-1345,131403269876900000", + "type": "Microsoft.Sql/servers/restorableDroppedDatabases", + "location": "Japan East", + "properties": { + "databaseName": "restorabledroppeddatabasetest-1345", + "edition": "Basic", + "maxSizeBytes": "2147483648", + "serviceLevelObjective": "Basic", + "elasticPoolName": null, + "creationDate": "2017-02-10T00:56:19.2Z", + "deletionDate": "2017-05-27T02:49:47.69Z", + "earliestRestoreDate": "2017-05-20T02:49:47.69Z" } - } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/restorabledroppeddatabasetest-1349/providers/Microsoft.Sql/servers/restorabledroppeddatabasetest-1840/restorableDroppedDatabases/restorabledroppeddatabasetest-2764,131403249684030000", + "name": "restorabledroppeddatabasetest-2764,131403249684030000", + "type": "Microsoft.Sql/servers/restorableDroppedDatabases", + "location": "Japan East", + "properties": { + "databaseName": "restorabledroppeddatabasetest-2764", + "edition": "Standard", + "maxSizeBytes": "268435456000", + "serviceLevelObjective": "S0", + "elasticPoolName": null, + "creationDate": "2016-05-10T00:56:19.2Z", + "deletionDate": "2017-05-27T02:16:08.403Z", + "earliestRestoreDate": "2017-04-21T02:49:47.69Z" + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminCreateUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminCreateUpdate.json index 692c6c60d9cc..03a3edcadb99 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminCreateUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminCreateUpdate.json @@ -1,39 +1,39 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-4799", - "serverName": "sqlcrudtest-6440", - "administratorName": "activeDirectory", - "api-version": "2014-04-01", - "properties": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/activeDirectory", - "name": "activeDirectory", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", - "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/activeDirectory", - "name": "activeDirectory", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", - "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" - } - } - }, - "201": { - "body": "Created" - }, - "202": { - "body": "Accepted" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-4799", + "serverName": "sqlcrudtest-6440", + "administratorName": "activeDirectory", + "api-version": "2014-04-01", + "properties": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/activeDirectory", + "name": "activeDirectory", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", + "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/activeDirectory", + "name": "activeDirectory", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", + "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" + } + } + }, + "201": { + "body": "Created" + }, + "202": { + "body": "Accepted" + } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminDelete.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminDelete.json index 4404d34132d1..dfe1c958a22d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminDelete.json @@ -2,19 +2,19 @@ "parameters": { "subscriptionId": "00000000-1111-2222-3333-444444444444", "resourceGroupName": "sqlcrudtest-4799", - "serverName": "sqlcrudtest-6440", - "administratorName": "activeDirectory", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": "OK" - }, - "202": { - "body": "Accepted" - }, - "204": { - "body": "No Content" - } - } + "serverName": "sqlcrudtest-6440", + "administratorName": "activeDirectory", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": "OK" + }, + "202": { + "body": "Accepted" + }, + "204": { + "body": "No Content" + } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminGet.json index a039d842259e..64c6647f119e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdminGet.json @@ -1,23 +1,23 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-4799", - "serverName": "sqlcrudtest-6440", - "administratorName": "activeDirectory", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/activeDirectory", - "name": "activeDirectory", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", - "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" - } - } - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-4799", + "serverName": "sqlcrudtest-6440", + "administratorName": "activeDirectory", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/activeDirectory", + "name": "activeDirectory", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", + "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" + } + } + } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorCreateOrUpdate.json index b7f33d9f1f3a..b2ca7be0f020 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorCreateOrUpdate.json @@ -1,27 +1,27 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "advisorName": "CreateIndex", + "api-version": "2014-04-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "advisorName": "CreateIndex", - "api-version": "2014-04-01", - "parameters": { - "properties": { - "autoExecuteValue": "Disabled" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "advisorStatus": "GA", - "autoExecuteValue": "Disabled" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/advisors" - } - } + "properties": { + "autoExecuteValue": "Disabled" + } } + }, + "responses": { + "200": { + "body": { + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Disabled" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/advisors" + } + } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorGet.json index 26644a541240..653cc50dd117 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorGet.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "advisorName": "CreateIndex", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/advisors", - "properties": { - "advisorStatus": "GA", - "autoExecuteValue": "Disabled" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "advisorName": "CreateIndex", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Disabled" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorList.json index 4a43205a0512..6dff76a83559 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorList.json @@ -1,50 +1,50 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/advisors", - "properties": { - "advisorStatus": "GA", - "autoExecuteValue": "Disabled" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex", - "name": "DropIndex", - "type": "Microsoft.Sql/servers/advisors", - "properties": { - "advisorStatus": "GA", - "autoExecuteValue": "Disabled" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DbParameterization", - "name": "DbParameterization", - "type": "Microsoft.Sql/servers/advisors", - "properties": { - "advisorStatus": "GA", - "autoExecuteValue": "Disabled" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/ForceLastGoodPlan", - "name": "ForceLastGoodPlan", - "type": "Microsoft.Sql/servers/advisors", - "properties": { - "advisorStatus": "PrivatePreview", - "autoExecuteValue": "Disabled" - } - } - ] + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Disabled" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DropIndex", + "name": "DropIndex", + "type": "Microsoft.Sql/servers/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Disabled" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/DbParameterization", + "name": "DbParameterization", + "type": "Microsoft.Sql/servers/advisors", + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Disabled" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/ForceLastGoodPlan", + "name": "ForceLastGoodPlan", + "type": "Microsoft.Sql/servers/advisors", + "properties": { + "advisorStatus": "PrivatePreview", + "autoExecuteValue": "Disabled" + } } + ] } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorUpdate.json index b7f33d9f1f3a..b2ca7be0f020 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerAdvisorUpdate.json @@ -1,27 +1,27 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "workloadinsight-demos", + "serverName": "misosisvr", + "advisorName": "CreateIndex", + "api-version": "2014-04-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "workloadinsight-demos", - "serverName": "misosisvr", - "advisorName": "CreateIndex", - "api-version": "2014-04-01", - "parameters": { - "properties": { - "autoExecuteValue": "Disabled" - } - } - }, - "responses": { - "200": { - "body": { - "properties": { - "advisorStatus": "GA", - "autoExecuteValue": "Disabled" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", - "name": "CreateIndex", - "type": "Microsoft.Sql/servers/advisors" - } - } + "properties": { + "autoExecuteValue": "Disabled" + } } + }, + "responses": { + "200": { + "body": { + "properties": { + "advisorStatus": "GA", + "autoExecuteValue": "Disabled" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workloadinsight-demos/providers/Microsoft.Sql/servers/misosisvr/advisors/CreateIndex", + "name": "CreateIndex", + "type": "Microsoft.Sql/servers/advisors" + } + } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkCreateOrUpdate.json index 447fbb01e54c..f88e22eff8f2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkCreateOrUpdate.json @@ -6,8 +6,8 @@ "communicationLinkName": "link1", "api-version": "2014-04-01", "parameters": { - "properties":{ - "partnerServer":"sqldcrudtest-test" + "properties": { + "partnerServer": "sqldcrudtest-test" } } }, @@ -20,11 +20,11 @@ "location": "Central US", "kind": null, "properties": { - "state": "Ready", - "partnerServer": "sqlcrudtest-test" + "state": "Ready", + "partnerServer": "sqlcrudtest-test" } } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkDelete.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkDelete.json index 3facd12cd177..7653d0b280ac 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkDelete.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkGet.json index 423c68535edd..cb3aa9ad4a0a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkGet.json @@ -15,10 +15,10 @@ "location": "Central US", "kind": null, "properties": { - "state": "Ready", - "partnerServer": "sqlcrudtest-test" + "state": "Ready", + "partnerServer": "sqlcrudtest-test" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkList.json index 1f66ffc2fb7b..d3609726f2fe 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCommunicationLinkList.json @@ -9,19 +9,19 @@ "200": { "body": { "value": [ - { + { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/communicationLinks/link1", "name": "link1", "type": "Microsoft.Sql/servers/communicationLinks", "location": "Central US", "kind": null, "properties": { - "state": "Ready", - "partnerServer": "sqlcrudtest-test" + "state": "Ready", + "partnerServer": "sqlcrudtest-test" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerConnectionPolicyCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerConnectionPolicyCreateOrUpdate.json index 1c5fa8ef0791..c1eb19586deb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerConnectionPolicyCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerConnectionPolicyCreateOrUpdate.json @@ -1,40 +1,40 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "test-1234", + "serverName": "test-5678", + "connectionPolicyName": "default", + "api-version": "2014-04-01", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "test-1234", - "serverName": "test-5678", - "connectionPolicyName": "default", - "api-version": "2014-04-01", - "parameters": { - "properties": { - "connectionType":"Proxy" - } + "properties": { + "connectionType": "Proxy" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/test-1234/providers/Microsoft.Sql/servers/test-5678/connectionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/servers/connectionPolicies", + "location": "West US", + "kind": null, + "properties": { + "connectionType": "Proxy" } + } }, - "responses": { - "200": { - "body": { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/test-1234/providers/Microsoft.Sql/servers/test-5678/connectionPolicies/default", - "name":"default", - "type":"Microsoft.Sql/servers/connectionPolicies", - "location":"West US", - "kind":null, - "properties": { - "connectionType":"Proxy" - } - } - }, - "201": { - "body": { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/test-1234/providers/Microsoft.Sql/servers/test-5678/connectionPolicies/default", - "name":"default", - "type":"Microsoft.Sql/servers/connectionPolicies", - "location":"West US", - "kind":null, - "properties": { - "connectionType":"Proxy" - } - } + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/test-1234/providers/Microsoft.Sql/servers/test-5678/connectionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/servers/connectionPolicies", + "location": "West US", + "kind": null, + "properties": { + "connectionType": "Proxy" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerConnectionPolicyGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerConnectionPolicyGet.json index b64ec3730a55..8a2f1b0a6f0a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerConnectionPolicyGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerConnectionPolicyGet.json @@ -1,23 +1,23 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "test-1234", - "serverName": "test-5678", - "connectionPolicyName": "default", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "body": { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/test-1234/providers/Microsoft.Sql/servers/test-5678/connectionPolicies/default", - "name":"default", - "type":"Microsoft.Sql/servers/connectionPolicies", - "location":"West US", - "kind":null, - "properties": { - "connectionType":"Default" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "test-1234", + "serverName": "test-5678", + "connectionPolicyName": "default", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/test-1234/providers/Microsoft.Sql/servers/test-5678/connectionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/servers/connectionPolicies", + "location": "West US", + "kind": null, + "properties": { + "connectionType": "Default" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateMax.json index 59d04db72226..0aa9a485433a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateMax.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateMin.json index 791e4d3cfd6e..0285f9aca82e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateMin.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMax.json index 59d04db72226..0aa9a485433a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMax.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMin.json index 791e4d3cfd6e..0285f9aca82e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMin.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerDelete.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerDelete.json index fe7ecc54225e..e4708fd7cd82 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerDelete.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerGet.json index 30315275af52..5b2f4b86723d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerGet.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerList.json index 4636fd2655a2..375a6e60dfcd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerList.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerListByResourceGroup.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerListByResourceGroup.json index ab78156a6763..558178759d05 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerListByResourceGroup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerListByResourceGroup.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyCreateOrUpdate.json index 4ed8dc18950a..d3b4a8525ebd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyCreateOrUpdate.json @@ -1,34 +1,34 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"blobauditingtest-6852", - "serverName":"blobauditingtest-2080", - "tableAuditingPolicyName":"default", - "properties": { }, - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-6852", + "serverName": "blobauditingtest-2080", + "tableAuditingPolicyName": "default", + "properties": {}, + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", - "name":"Default", - "type":"Microsoft.Sql/servers/databases/auditingPolicies", - "location":"West US", - "kind":null, - "properties":{ - "auditingState":"New", - "eventTypesToAudit":"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", - "storageAccountName":null, - "storageAccountKey":null, - "storageAccountSecondaryKey":null, - "storageTableEndpoint":null, - "storageAccountResourceGroupName":null, - "storageAccountSubscriptionId":null, - "fullAuditLogsTableName":"SQLDBAuditLogsBlobauditingtest2080", - "auditLogsTableName":"Blobauditingtest2080", - "retentionDays":"0" + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/auditingPolicies", + "location": "West US", + "kind": null, + "properties": { + "auditingState": "New", + "eventTypesToAudit": "PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", + "storageAccountName": null, + "storageAccountKey": null, + "storageAccountSecondaryKey": null, + "storageTableEndpoint": null, + "storageAccountResourceGroupName": null, + "storageAccountSubscriptionId": null, + "fullAuditLogsTableName": "SQLDBAuditLogsBlobauditingtest2080", + "auditLogsTableName": "Blobauditingtest2080", + "retentionDays": "0" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyGet.json index 002638540733..8ae064c4ecaf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyGet.json @@ -1,33 +1,33 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"blobauditingtest-6852", - "serverName":"blobauditingtest-2080", - "tableAuditingPolicyName":"default", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-6852", + "serverName": "blobauditingtest-2080", + "tableAuditingPolicyName": "default", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", - "name":"Default", - "type":"Microsoft.Sql/servers/databases/auditingPolicies", - "location":"West US", - "kind":null, - "properties":{ - "auditingState":"New", - "eventTypesToAudit":"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", - "storageAccountName":null, - "storageAccountKey":null, - "storageAccountSecondaryKey":null, - "storageTableEndpoint":null, - "storageAccountResourceGroupName":null, - "storageAccountSubscriptionId":null, - "fullAuditLogsTableName":"SQLDBAuditLogsBlobauditingtest2080", - "auditLogsTableName":"Blobauditingtest2080", - "retentionDays":"0" + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/auditingPolicies", + "location": "West US", + "kind": null, + "properties": { + "auditingState": "New", + "eventTypesToAudit": "PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", + "storageAccountName": null, + "storageAccountKey": null, + "storageAccountSecondaryKey": null, + "storageTableEndpoint": null, + "storageAccountResourceGroupName": null, + "storageAccountSubscriptionId": null, + "fullAuditLogsTableName": "SQLDBAuditLogsBlobauditingtest2080", + "auditLogsTableName": "Blobauditingtest2080", + "retentionDays": "0" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyList.json index 5acbe52d4803..a9138eb4b11d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerTableAuditingPolicyList.json @@ -1,36 +1,36 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"blobauditingtest-6852", - "serverName":"blobauditingtest-2080", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "blobauditingtest-6852", + "serverName": "blobauditingtest-2080", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "value":[ + "responses": { + "200": { + "body": { + "value": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", - "name":"Default", - "type":"Microsoft.Sql/servers/databases/auditingPolicies", - "location":"West US", - "kind":null, - "properties":{ - "auditingState":"New", - "eventTypesToAudit":"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", - "storageAccountName":null, - "storageAccountKey":null, - "storageAccountSecondaryKey":null, - "storageTableEndpoint":null, - "storageAccountResourceGroupName":null, - "storageAccountSubscriptionId":null, - "fullAuditLogsTableName":"SQLDBAuditLogsBlobauditingtest2080", - "auditLogsTableName":"Blobauditingtest2080", - "retentionDays":"0" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/blobauditingtest-6852/providers/Microsoft.Sql/servers/blobauditingtest-2080/databases/testdb/auditingPolicies/Default", + "name": "Default", + "type": "Microsoft.Sql/servers/databases/auditingPolicies", + "location": "West US", + "kind": null, + "properties": { + "auditingState": "New", + "eventTypesToAudit": "PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure", + "storageAccountName": null, + "storageAccountKey": null, + "storageAccountSecondaryKey": null, + "storageTableEndpoint": null, + "storageAccountResourceGroupName": null, + "storageAccountSubscriptionId": null, + "fullAuditLogsTableName": "SQLDBAuditLogsBlobauditingtest2080", + "auditLogsTableName": "Blobauditingtest2080", + "retentionDays": "0" } } ] } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUpdateMax.json index 11e4bd96d0cc..7b7a0561e11d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUpdateMax.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUpdateMin.json index d5e3f6bd0fa5..08856a20cc6b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUpdateMin.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUsageMetricsList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUsageMetricsList.json index b659e33053a7..03c7454a71ff 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUsageMetricsList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUsageMetricsList.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceObjectiveGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceObjectiveGet.json index f591bf343179..fd75558833e9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceObjectiveGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceObjectiveGet.json @@ -8,17 +8,17 @@ }, "responses": { "200": { - "id": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/serviceObjectives/29dd7459-4a7c-4e56-be22-f0adda49440d", - "name": "29dd7459-4a7c-4e56-be22-f0adda49440d", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "System0", - "isDefault": false, - "isSystem": true, - "description": null, - "enabled": false - } - } + "id": "/subscriptions/b6a6e0c5-e79c-4c6d-a878-72eafbca4cf2/resourceGroups/QA/providers/Microsoft.Sql/servers/nafantest/serviceObjectives/29dd7459-4a7c-4e56-be22-f0adda49440d", + "name": "29dd7459-4a7c-4e56-be22-f0adda49440d", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "System0", + "isDefault": false, + "isSystem": true, + "description": null, + "enabled": false + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceObjectiveList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceObjectiveList.json index 54af66fc7032..937dc017b5e5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceObjectiveList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceObjectiveList.json @@ -1,638 +1,638 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "group1", - "serverName": "sqlcrudtest", - "api-version": "2014-04-01" - }, - "responses": { - "200": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/26e021db-f1f9-4c98-84c6-92af8ef433d7", - "name": "26e021db-f1f9-4c98-84c6-92af8ef433d7", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "System", - "isDefault": false, - "isSystem": true, - "description": null, - "enabled": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/29dd7459-4a7c-4e56-be22-f0adda49440d", - "name": "29dd7459-4a7c-4e56-be22-f0adda49440d", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "System0", - "isDefault": false, - "isSystem": true, - "description": null, - "enabled": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/c99ac918-dbea-463f-a475-16ec020fdc12", - "name": "c99ac918-dbea-463f-a475-16ec020fdc12", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "System1", - "isDefault": false, - "isSystem": true, - "description": null, - "enabled": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/620323bf-2879-4807-b30d-c2e6d7b3b3aa", - "name": "620323bf-2879-4807-b30d-c2e6d7b3b3aa", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "System2", - "isDefault": false, - "isSystem": true, - "description": null, - "enabled": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/33d0db1f-6893-4210-99f9-463fb9b496a4", - "name": "33d0db1f-6893-4210-99f9-463fb9b496a4", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "System3", - "isDefault": false, - "isSystem": true, - "description": null, - "enabled": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/da24338c-a6c9-46c2-a4bf-4ac95b496ae4", - "name": "da24338c-a6c9-46c2-a4bf-4ac95b496ae4", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "System4", - "isDefault": false, - "isSystem": true, - "description": null, - "enabled": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/53f7fa1b-b0d0-43d6-bc29-c5f059fb36e9", - "name": "53f7fa1b-b0d0-43d6-bc29-c5f059fb36e9", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "System2L", - "isDefault": false, - "isSystem": true, - "description": null, - "enabled": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/e79cd55c-689f-48d9-bffa-0dd12c772248", - "name": "e79cd55c-689f-48d9-bffa-0dd12c772248", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "System3L", - "isDefault": false, - "isSystem": true, - "description": null, - "enabled": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/4b37bb6d-e004-47ac-8f7a-be56ac9fb490", - "name": "4b37bb6d-e004-47ac-8f7a-be56ac9fb490", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "System4L", - "isDefault": false, - "isSystem": true, - "description": null, - "enabled": false - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/6aa3bb3e-7f50-40d6-95ef-5497c30d99d8", - "name": "6aa3bb3e-7f50-40d6-95ef-5497c30d99d8", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "Free", - "isDefault": true, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", - "name": "dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "Basic", - "isDefault": true, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/f1173c43-91bd-4aaa-973c-54e79e15235b", - "name": "f1173c43-91bd-4aaa-973c-54e79e15235b", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "S0", - "isDefault": true, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/1b1ebd4d-d903-4baa-97f9-4ea675f5e928", - "name": "1b1ebd4d-d903-4baa-97f9-4ea675f5e928", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "S1", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/455330e1-00cd-488b-b5fa-177c226f28b7", - "name": "455330e1-00cd-488b-b5fa-177c226f28b7", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "S2", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/789681b8-ca10-4eb0-bdf2-e0b050601b40", - "name": "789681b8-ca10-4eb0-bdf2-e0b050601b40", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "S3", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/7203483a-c4fb-4304-9e9f-17c71c904f5d", - "name": "7203483a-c4fb-4304-9e9f-17c71c904f5d", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "P1", - "isDefault": true, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0", - "name": "a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "P2", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc", - "name": "afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "P4", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/43940481-9191-475a-9dba-6b505615b9aa", - "name": "43940481-9191-475a-9dba-6b505615b9aa", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "P6", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/dd00d544-bbc0-4f61-ba60-cdce0c410288", - "name": "dd00d544-bbc0-4f61-ba60-cdce0c410288", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "P11", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/5bc86cca-9a96-4a94-90ef-bbdfcfbf2d71", - "name": "5bc86cca-9a96-4a94-90ef-bbdfcfbf2d71", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "P15", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/dfdc102c-ed02-4349-9756-e227f0e43bb8", - "name": "dfdc102c-ed02-4349-9756-e227f0e43bb8", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "PRS1", - "isDefault": true, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/a089506e-b47a-4f42-8a32-cc19af4c86fb", - "name": "a089506e-b47a-4f42-8a32-cc19af4c86fb", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "PRS2", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/39cb8faf-cba8-4b1b-b580-1e1202f2a024", - "name": "39cb8faf-cba8-4b1b-b580-1e1202f2a024", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "PRS4", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/1e8da92e-efcd-4682-9140-bf6582120d1f", - "name": "1e8da92e-efcd-4682-9140-bf6582120d1f", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "PRS6", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/4e63cb0e-91b9-46fd-b05c-51fdd2367618", - "name": "4e63cb0e-91b9-46fd-b05c-51fdd2367618", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW100", - "isDefault": true, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/99e78a92-d724-4e1b-857b-2be661f3d153", - "name": "99e78a92-d724-4e1b-857b-2be661f3d153", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW200", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/284f1aff-fee7-4d3b-a211-5b8ebdd28fea", - "name": "284f1aff-fee7-4d3b-a211-5b8ebdd28fea", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW300", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/3bdaeefe-8a9d-41d3-91c4-46ef896b19af", - "name": "3bdaeefe-8a9d-41d3-91c4-46ef896b19af", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW400", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/5f759b78-8ec0-4dfb-97cc-c1455a3b5b4d", - "name": "5f759b78-8ec0-4dfb-97cc-c1455a3b5b4d", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW500", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/efd65c5b-af7b-4389-9109-f6a69d6a3885", - "name": "efd65c5b-af7b-4389-9109-f6a69d6a3885", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW600", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/b89b9c6a-4ec2-4eb8-99db-6d2807e6aabb", - "name": "b89b9c6a-4ec2-4eb8-99db-6d2807e6aabb", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW1000", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/9a7a374e-b95c-4fd5-a68e-131d60796c47", - "name": "9a7a374e-b95c-4fd5-a68e-131d60796c47", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW1200", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/b930f58e-86b5-43e0-a2da-d8bf8769c557", - "name": "b930f58e-86b5-43e0-a2da-d8bf8769c557", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW1500", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/99165ede-a5ab-4b52-b317-e391d92ec370", - "name": "99165ede-a5ab-4b52-b317-e391d92ec370", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW2000", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/8e28c923-5cf2-43cb-bd25-28c8c69b30ff", - "name": "8e28c923-5cf2-43cb-bd25-28c8c69b30ff", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW3000", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/ee1df062-4f3c-42ad-91bf-58b2a7c351e4", - "name": "ee1df062-4f3c-42ad-91bf-58b2a7c351e4", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DW6000", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/9cfc850f-d57f-4760-b5a6-bb640d268bf0", - "name": "9cfc850f-d57f-4760-b5a6-bb640d268bf0", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DS100", - "isDefault": true, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/053407ef-f01c-46f4-b829-96e01a14f449", - "name": "053407ef-f01c-46f4-b829-96e01a14f449", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DS200", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/013a9e10-cafc-45a8-8fcf-93095655d2ce", - "name": "013a9e10-cafc-45a8-8fcf-93095655d2ce", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DS300", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/79f61db4-8c10-46ba-a93a-d7d02dddd61c", - "name": "79f61db4-8c10-46ba-a93a-d7d02dddd61c", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DS400", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/44eaac33-df00-4ef4-a2bb-f7ff87899eea", - "name": "44eaac33-df00-4ef4-a2bb-f7ff87899eea", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DS500", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/f8e0f3a6-888b-459c-a9dd-d74d8b2b0e72", - "name": "f8e0f3a6-888b-459c-a9dd-d74d8b2b0e72", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DS600", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/b9ed8f51-a414-42dc-8348-e4a1de25e12b", - "name": "b9ed8f51-a414-42dc-8348-e4a1de25e12b", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DS1000", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/07479569-6d70-47a5-8db6-0af55d34f2c1", - "name": "07479569-6d70-47a5-8db6-0af55d34f2c1", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DS1200", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/2d79baec-2879-46d5-9f5d-fb70eb004c4e", - "name": "2d79baec-2879-46d5-9f5d-fb70eb004c4e", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DS1500", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/7fb5389f-6d15-4e0b-9540-fe5ecdfdbeee", - "name": "7fb5389f-6d15-4e0b-9540-fe5ecdfdbeee", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "DS2000", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/d1737d22-a8ea-4de7-9bd0-33395d2a7419", - "name": "d1737d22-a8ea-4de7-9bd0-33395d2a7419", - "type": "Microsoft.Sql/servers/serviceObjectives", - "location": "Central US", - "properties": { - "serviceObjectiveName": "ElasticPool", - "isDefault": false, - "isSystem": false, - "description": null, - "enabled": true - } - } - ] - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "sqlcrudtest", + "api-version": "2014-04-01" + }, + "responses": { + "200": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/26e021db-f1f9-4c98-84c6-92af8ef433d7", + "name": "26e021db-f1f9-4c98-84c6-92af8ef433d7", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "System", + "isDefault": false, + "isSystem": true, + "description": null, + "enabled": false + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/29dd7459-4a7c-4e56-be22-f0adda49440d", + "name": "29dd7459-4a7c-4e56-be22-f0adda49440d", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "System0", + "isDefault": false, + "isSystem": true, + "description": null, + "enabled": false + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/c99ac918-dbea-463f-a475-16ec020fdc12", + "name": "c99ac918-dbea-463f-a475-16ec020fdc12", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "System1", + "isDefault": false, + "isSystem": true, + "description": null, + "enabled": false + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/620323bf-2879-4807-b30d-c2e6d7b3b3aa", + "name": "620323bf-2879-4807-b30d-c2e6d7b3b3aa", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "System2", + "isDefault": false, + "isSystem": true, + "description": null, + "enabled": false + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/33d0db1f-6893-4210-99f9-463fb9b496a4", + "name": "33d0db1f-6893-4210-99f9-463fb9b496a4", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "System3", + "isDefault": false, + "isSystem": true, + "description": null, + "enabled": false + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/da24338c-a6c9-46c2-a4bf-4ac95b496ae4", + "name": "da24338c-a6c9-46c2-a4bf-4ac95b496ae4", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "System4", + "isDefault": false, + "isSystem": true, + "description": null, + "enabled": false + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/53f7fa1b-b0d0-43d6-bc29-c5f059fb36e9", + "name": "53f7fa1b-b0d0-43d6-bc29-c5f059fb36e9", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "System2L", + "isDefault": false, + "isSystem": true, + "description": null, + "enabled": false + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/e79cd55c-689f-48d9-bffa-0dd12c772248", + "name": "e79cd55c-689f-48d9-bffa-0dd12c772248", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "System3L", + "isDefault": false, + "isSystem": true, + "description": null, + "enabled": false + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/4b37bb6d-e004-47ac-8f7a-be56ac9fb490", + "name": "4b37bb6d-e004-47ac-8f7a-be56ac9fb490", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "System4L", + "isDefault": false, + "isSystem": true, + "description": null, + "enabled": false + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/6aa3bb3e-7f50-40d6-95ef-5497c30d99d8", + "name": "6aa3bb3e-7f50-40d6-95ef-5497c30d99d8", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "Free", + "isDefault": true, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", + "name": "dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "Basic", + "isDefault": true, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/f1173c43-91bd-4aaa-973c-54e79e15235b", + "name": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "S0", + "isDefault": true, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/1b1ebd4d-d903-4baa-97f9-4ea675f5e928", + "name": "1b1ebd4d-d903-4baa-97f9-4ea675f5e928", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "S1", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/455330e1-00cd-488b-b5fa-177c226f28b7", + "name": "455330e1-00cd-488b-b5fa-177c226f28b7", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "S2", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/789681b8-ca10-4eb0-bdf2-e0b050601b40", + "name": "789681b8-ca10-4eb0-bdf2-e0b050601b40", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "S3", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/7203483a-c4fb-4304-9e9f-17c71c904f5d", + "name": "7203483a-c4fb-4304-9e9f-17c71c904f5d", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "P1", + "isDefault": true, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0", + "name": "a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "P2", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc", + "name": "afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "P4", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/43940481-9191-475a-9dba-6b505615b9aa", + "name": "43940481-9191-475a-9dba-6b505615b9aa", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "P6", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/dd00d544-bbc0-4f61-ba60-cdce0c410288", + "name": "dd00d544-bbc0-4f61-ba60-cdce0c410288", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "P11", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/5bc86cca-9a96-4a94-90ef-bbdfcfbf2d71", + "name": "5bc86cca-9a96-4a94-90ef-bbdfcfbf2d71", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "P15", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/dfdc102c-ed02-4349-9756-e227f0e43bb8", + "name": "dfdc102c-ed02-4349-9756-e227f0e43bb8", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "PRS1", + "isDefault": true, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/a089506e-b47a-4f42-8a32-cc19af4c86fb", + "name": "a089506e-b47a-4f42-8a32-cc19af4c86fb", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "PRS2", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/39cb8faf-cba8-4b1b-b580-1e1202f2a024", + "name": "39cb8faf-cba8-4b1b-b580-1e1202f2a024", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "PRS4", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/1e8da92e-efcd-4682-9140-bf6582120d1f", + "name": "1e8da92e-efcd-4682-9140-bf6582120d1f", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "PRS6", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/4e63cb0e-91b9-46fd-b05c-51fdd2367618", + "name": "4e63cb0e-91b9-46fd-b05c-51fdd2367618", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW100", + "isDefault": true, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/99e78a92-d724-4e1b-857b-2be661f3d153", + "name": "99e78a92-d724-4e1b-857b-2be661f3d153", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW200", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/284f1aff-fee7-4d3b-a211-5b8ebdd28fea", + "name": "284f1aff-fee7-4d3b-a211-5b8ebdd28fea", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW300", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/3bdaeefe-8a9d-41d3-91c4-46ef896b19af", + "name": "3bdaeefe-8a9d-41d3-91c4-46ef896b19af", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW400", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/5f759b78-8ec0-4dfb-97cc-c1455a3b5b4d", + "name": "5f759b78-8ec0-4dfb-97cc-c1455a3b5b4d", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW500", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/efd65c5b-af7b-4389-9109-f6a69d6a3885", + "name": "efd65c5b-af7b-4389-9109-f6a69d6a3885", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW600", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/b89b9c6a-4ec2-4eb8-99db-6d2807e6aabb", + "name": "b89b9c6a-4ec2-4eb8-99db-6d2807e6aabb", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW1000", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/9a7a374e-b95c-4fd5-a68e-131d60796c47", + "name": "9a7a374e-b95c-4fd5-a68e-131d60796c47", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW1200", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/b930f58e-86b5-43e0-a2da-d8bf8769c557", + "name": "b930f58e-86b5-43e0-a2da-d8bf8769c557", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW1500", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/99165ede-a5ab-4b52-b317-e391d92ec370", + "name": "99165ede-a5ab-4b52-b317-e391d92ec370", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW2000", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/8e28c923-5cf2-43cb-bd25-28c8c69b30ff", + "name": "8e28c923-5cf2-43cb-bd25-28c8c69b30ff", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW3000", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/ee1df062-4f3c-42ad-91bf-58b2a7c351e4", + "name": "ee1df062-4f3c-42ad-91bf-58b2a7c351e4", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DW6000", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/9cfc850f-d57f-4760-b5a6-bb640d268bf0", + "name": "9cfc850f-d57f-4760-b5a6-bb640d268bf0", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DS100", + "isDefault": true, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/053407ef-f01c-46f4-b829-96e01a14f449", + "name": "053407ef-f01c-46f4-b829-96e01a14f449", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DS200", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/013a9e10-cafc-45a8-8fcf-93095655d2ce", + "name": "013a9e10-cafc-45a8-8fcf-93095655d2ce", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DS300", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/79f61db4-8c10-46ba-a93a-d7d02dddd61c", + "name": "79f61db4-8c10-46ba-a93a-d7d02dddd61c", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DS400", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/44eaac33-df00-4ef4-a2bb-f7ff87899eea", + "name": "44eaac33-df00-4ef4-a2bb-f7ff87899eea", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DS500", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/f8e0f3a6-888b-459c-a9dd-d74d8b2b0e72", + "name": "f8e0f3a6-888b-459c-a9dd-d74d8b2b0e72", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DS600", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/b9ed8f51-a414-42dc-8348-e4a1de25e12b", + "name": "b9ed8f51-a414-42dc-8348-e4a1de25e12b", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DS1000", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/07479569-6d70-47a5-8db6-0af55d34f2c1", + "name": "07479569-6d70-47a5-8db6-0af55d34f2c1", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DS1200", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/2d79baec-2879-46d5-9f5d-fb70eb004c4e", + "name": "2d79baec-2879-46d5-9f5d-fb70eb004c4e", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DS1500", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/7fb5389f-6d15-4e0b-9540-fe5ecdfdbeee", + "name": "7fb5389f-6d15-4e0b-9540-fe5ecdfdbeee", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "DS2000", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/serviceObjectives/d1737d22-a8ea-4de7-9bd0-33395d2a7419", + "name": "d1737d22-a8ea-4de7-9bd0-33395d2a7419", + "type": "Microsoft.Sql/servers/serviceObjectives", + "location": "Central US", + "properties": { + "serviceObjectiveName": "ElasticPool", + "isDefault": false, + "isSystem": false, + "description": null, + "enabled": true + } + } + ] + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceTierAdvisorGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceTierAdvisorGet.json index db5d1d134c8a..6e793b63dac8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceTierAdvisorGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceTierAdvisorGet.json @@ -1,46 +1,46 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"sqlcrudtest-6852", - "serverName":"sqlcrudtest-2080", - "databaseName":"sqlcrudtest-9187", - "serviceTierAdvisorName":"Current", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-9187", + "serviceTierAdvisorName": "Current", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "body":{ - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/serviceTierAdvisors/Current", - "name":"Current", - "type":"Microsoft.Sql/servers/databases/serviceTierAdvisors", - "properties":{ - "observationPeriodStart":"2017-07-12T12:00:00Z", - "observationPeriodEnd":"2017-07-26T13:00:00Z", - "activeTimeRatio":0.0, - "minDtu":0.0, - "avgDtu":0.0, - "maxDtu":0.0, - "maxSizeInGB":0.0234375, - "serviceLevelObjectiveUsageMetrics":[ + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/serviceTierAdvisors/Current", + "name": "Current", + "type": "Microsoft.Sql/servers/databases/serviceTierAdvisors", + "properties": { + "observationPeriodStart": "2017-07-12T12:00:00Z", + "observationPeriodEnd": "2017-07-26T13:00:00Z", + "activeTimeRatio": 0.0, + "minDtu": 0.0, + "avgDtu": 0.0, + "maxDtu": 0.0, + "maxSizeInGB": 0.0234375, + "serviceLevelObjectiveUsageMetrics": [ { - "serviceLevelObjective":"Basic", - "serviceLevelObjectiveId":"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", - "inRangeTimeRatio":1.0 + "serviceLevelObjective": "Basic", + "serviceLevelObjectiveId": "dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", + "inRangeTimeRatio": 1.0 } ], - "currentServiceLevelObjective":"S0", - "currentServiceLevelObjectiveId":"f1173c43-91bd-4aaa-973c-54e79e15235b", - "usageBasedRecommendationServiceLevelObjective":null, - "usageBasedRecommendationServiceLevelObjectiveId":null, - "databaseSizeBasedRecommendationServiceLevelObjective":null, - "databaseSizeBasedRecommendationServiceLevelObjectiveId":null, - "disasterPlanBasedRecommendationServiceLevelObjective":null, - "disasterPlanBasedRecommendationServiceLevelObjectiveId":null, - "overallRecommendationServiceLevelObjective":null, - "overallRecommendationServiceLevelObjectiveId":null, - "confidence":1.0 + "currentServiceLevelObjective": "S0", + "currentServiceLevelObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "usageBasedRecommendationServiceLevelObjective": null, + "usageBasedRecommendationServiceLevelObjectiveId": null, + "databaseSizeBasedRecommendationServiceLevelObjective": null, + "databaseSizeBasedRecommendationServiceLevelObjectiveId": null, + "disasterPlanBasedRecommendationServiceLevelObjective": null, + "disasterPlanBasedRecommendationServiceLevelObjectiveId": null, + "overallRecommendationServiceLevelObjective": null, + "overallRecommendationServiceLevelObjectiveId": null, + "confidence": 1.0 } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceTierAdvisorList.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceTierAdvisorList.json index 412db69a16e8..efcbfe6166c9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceTierAdvisorList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServiceTierAdvisorList.json @@ -1,47 +1,47 @@ { - "parameters":{ - "subscriptionId":"00000000-1111-2222-3333-444444444444", - "resourceGroupName":"sqlcrudtest-6852", - "serverName":"sqlcrudtest-2080", - "databaseName":"sqlcrudtest-9187", - "api-version":"2014-04-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-6852", + "serverName": "sqlcrudtest-2080", + "databaseName": "sqlcrudtest-9187", + "api-version": "2014-04-01" }, - "responses":{ - "200":{ - "value":[ + "responses": { + "200": { + "value": [ { - "id":"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/serviceTierAdvisors/Current", - "name":"Current", - "type":"Microsoft.Sql/servers/databases/serviceTierAdvisors", - "properties":{ - "observationPeriodStart":"2017-07-12T12:00:00Z", - "observationPeriodEnd":"2017-07-26T13:00:00Z", - "activeTimeRatio":0.0, - "minDtu":0.0, - "avgDtu":0.0, - "maxDtu":0.0, - "maxSizeInGB":0.0234375, - "serviceLevelObjectiveUsageMetrics":[ + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/serviceTierAdvisors/Current", + "name": "Current", + "type": "Microsoft.Sql/servers/databases/serviceTierAdvisors", + "properties": { + "observationPeriodStart": "2017-07-12T12:00:00Z", + "observationPeriodEnd": "2017-07-26T13:00:00Z", + "activeTimeRatio": 0.0, + "minDtu": 0.0, + "avgDtu": 0.0, + "maxDtu": 0.0, + "maxSizeInGB": 0.0234375, + "serviceLevelObjectiveUsageMetrics": [ { - "serviceLevelObjective":"Basic", - "serviceLevelObjectiveId":"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", - "inRangeTimeRatio":1.0 + "serviceLevelObjective": "Basic", + "serviceLevelObjectiveId": "dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", + "inRangeTimeRatio": 1.0 } ], - "currentServiceLevelObjective":"S0", - "currentServiceLevelObjectiveId":"f1173c43-91bd-4aaa-973c-54e79e15235b", - "usageBasedRecommendationServiceLevelObjective":null, - "usageBasedRecommendationServiceLevelObjectiveId":null, - "databaseSizeBasedRecommendationServiceLevelObjective":null, - "databaseSizeBasedRecommendationServiceLevelObjectiveId":null, - "disasterPlanBasedRecommendationServiceLevelObjective":null, - "disasterPlanBasedRecommendationServiceLevelObjectiveId":null, - "overallRecommendationServiceLevelObjective":null, - "overallRecommendationServiceLevelObjectiveId":null, - "confidence":1.0 + "currentServiceLevelObjective": "S0", + "currentServiceLevelObjectiveId": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "usageBasedRecommendationServiceLevelObjective": null, + "usageBasedRecommendationServiceLevelObjectiveId": null, + "databaseSizeBasedRecommendationServiceLevelObjective": null, + "databaseSizeBasedRecommendationServiceLevelObjectiveId": null, + "disasterPlanBasedRecommendationServiceLevelObjective": null, + "disasterPlanBasedRecommendationServiceLevelObjectiveId": null, + "overallRecommendationServiceLevelObjective": null, + "overallRecommendationServiceLevelObjectiveId": null, + "confidence": 1.0 } } ] } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/firewallRules.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/firewallRules.json index b19be7fd3962..e544dbdca38e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/firewallRules.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/firewallRules.json @@ -24,8 +24,12 @@ "operationId": "FirewallRules_CreateOrUpdate", "description": "Creates or updates a firewall rule.", "x-ms-examples": { - "Create a firewall rule max/min": { "$ref": "./examples/FirewallRuleCreate.json" }, - "Update a firewall rule max/min": { "$ref": "./examples/FirewallRuleUpdate.json" } + "Create a firewall rule max/min": { + "$ref": "./examples/FirewallRuleCreate.json" + }, + "Update a firewall rule max/min": { + "$ref": "./examples/FirewallRuleUpdate.json" + } }, "parameters": [ { @@ -79,7 +83,9 @@ "operationId": "FirewallRules_Delete", "description": "Deletes a firewall rule.", "x-ms-examples": { - "Delete a firewall rule": { "$ref": "./examples/FirewallRuleDelete.json" } + "Delete a firewall rule": { + "$ref": "./examples/FirewallRuleDelete.json" + } }, "parameters": [ { @@ -118,7 +124,9 @@ "operationId": "FirewallRules_Get", "description": "Gets a firewall rule.", "x-ms-examples": { - "Get Firewall Rule": { "$ref": "./examples/FirewallRuleGet.json" } + "Get Firewall Rule": { + "$ref": "./examples/FirewallRuleGet.json" + } }, "parameters": [ { @@ -159,7 +167,9 @@ "operationId": "FirewallRules_ListByServer", "description": "Returns a list of firewall rules.", "x-ms-examples": { - "List Firewall Rules": { "$ref": "./examples/FirewallRuleList.json" } + "List Firewall Rules": { + "$ref": "./examples/FirewallRuleList.json" + } }, "parameters": [ { @@ -201,7 +211,10 @@ "description": "The end IP address of the firewall rule. Must be IPv4 format. Must be greater than or equal to startIpAddress. Use value '0.0.0.0' to represent all Azure-internal IP addresses." } }, - "required": ["startIpAddress", "endIpAddress"], + "required": [ + "startIpAddress", + "endIpAddress" + ], "description": "Represents the properties of a server firewall rule." }, "FirewallRule": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/geoBackupPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/geoBackupPolicies.json index 5ff460891215..bad075f8c496 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/geoBackupPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/geoBackupPolicies.json @@ -24,7 +24,9 @@ "operationId": "GeoBackupPolicies_CreateOrUpdate", "description": "Updates a database geo backup policy.", "x-ms-examples": { - "Update geo backup policy": { "$ref": "./examples/GeoBackupPoliciesCreateOrUpdate.json" } + "Update geo backup policy": { + "$ref": "./examples/GeoBackupPoliciesCreateOrUpdate.json" + } }, "parameters": [ { @@ -81,7 +83,9 @@ "operationId": "GeoBackupPolicies_Get", "description": "Gets a geo backup policy.", "x-ms-examples": { - "Get geo backup policy": { "$ref": "./examples/GeoBackupPoliciesGet.json" } + "Get geo backup policy": { + "$ref": "./examples/GeoBackupPoliciesGet.json" + } }, "parameters": [ { @@ -125,7 +129,9 @@ "operationId": "GeoBackupPolicies_ListByDatabase", "description": "Returns a list of geo backup policies.", "x-ms-examples": { - "List geo backup policies": { "$ref": "./examples/GeoBackupPoliciesList.json" } + "List geo backup policies": { + "$ref": "./examples/GeoBackupPoliciesList.json" + } }, "parameters": [ { @@ -168,7 +174,10 @@ "state": { "type": "string", "description": "The state of the geo backup policy.", - "enum": ["Disabled", "Enabled"], + "enum": [ + "Disabled", + "Enabled" + ], "x-ms-enum": { "modelAsString": false, "name": "GeoBackupPolicyState" @@ -180,7 +189,9 @@ "readOnly": true } }, - "required": ["state"], + "required": [ + "state" + ], "description": "The properties of the geo backup policy." }, "GeoBackupPolicy": { @@ -195,10 +206,10 @@ "type": "string", "description": "Kind of geo backup policy. This is metadata used for the Azure portal experience." }, - "location":{ - "type":"string", + "location": { + "type": "string", "readOnly": true, - "description":"Backup policy location." + "description": "Backup policy location." } }, "required": [ @@ -238,9 +249,11 @@ "in": "path", "required": true, "type": "string", - "enum": ["Default"], + "enum": [ + "Default" + ], "description": "The name of the geo backup policy.", - "x-ms-enum":{ + "x-ms-enum": { "modelAsString": true, "name": "GeoBackupPolicyName" }, @@ -258,4 +271,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json index a235297f079f..35f55f49b321 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json @@ -1,469 +1,511 @@ { - "swagger": "2.0", - "info": { - "title": "Azure SQL Database Import/Export spec", - "description": "Provides create and read functionality for Import/Export operations on Azure SQL databases.", - "version": "2014-04-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/import": { - "post": { - "tags": [ - "ImportExport" - ], - "operationId": "Databases_Import", - "description": "Imports a bacpac into a new database. ", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ImportRequest" - }, - "description": "The required parameters for importing a Bacpac into a database." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ImportExportResponse" - } - }, - "202": { - "description": "Accepted" - } - }, - "x-ms-examples": { - "Import bacpac into new database Max with storage key": { "$ref": "./examples/DatabaseCreateImportMaxStorageKey.json" }, - "Import bacpac into new database Min with storage key": { "$ref": "./examples/DatabaseCreateImportMinStorageKey.json" }, - "Import bacpac into new database Max with SAS key": { "$ref": "./examples/DatabaseCreateImportMaxSasKey.json" }, - "Import bacpac into new database Min with SAS key": { "$ref": "./examples/DatabaseCreateImportMinSasKey.json" } - }, - "x-ms-long-running-operation": true + "swagger": "2.0", + "info": { + "title": "Azure SQL Database Import/Export spec", + "description": "Provides create and read functionality for Import/Export operations on Azure SQL databases.", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/import": { + "post": { + "tags": [ + "ImportExport" + ], + "operationId": "Databases_Import", + "description": "Imports a bacpac into a new database. ", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ImportRequest" + }, + "description": "The required parameters for importing a Bacpac into a database." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ImportExportResponse" } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-examples": { + "Import bacpac into new database Max with storage key": { + "$ref": "./examples/DatabaseCreateImportMaxStorageKey.json" + }, + "Import bacpac into new database Min with storage key": { + "$ref": "./examples/DatabaseCreateImportMinStorageKey.json" + }, + "Import bacpac into new database Max with SAS key": { + "$ref": "./examples/DatabaseCreateImportMaxSasKey.json" + }, + "Import bacpac into new database Min with SAS key": { + "$ref": "./examples/DatabaseCreateImportMinSasKey.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/extensions/{extensionName}": { - "put": { - "tags": [ - "ImportExport" - ], - "operationId": "Databases_CreateImportOperation", - "description": "Creates an import operation that imports a bacpac into an existing database. The existing database must be empty.", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the database to import into" - }, - { - "name": "extensionName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the operation to perform", - "enum": [ - "import" - ], - "x-ms-enum": { - "name": "ExtensionName", - "modelAsString": true - } - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ImportExtensionRequest" - }, - "description": "The required parameters for importing a Bacpac into a database." - } - ], - "responses": { - "201": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ImportExportResponse" - } - }, - "202": { - "description": "Accepted" - } - }, - "x-ms-examples": { - "Import bacpac into an existing database Max with storage key": { "$ref": "./examples/DatabaseUpdateImportMaxStorageKey.json" }, - "Import bacpac into an existing database Min with storage key": { "$ref": "./examples/DatabaseUpdateImportMinStorageKey.json" }, - "Import bacpac into an existing database Max with SAS key": { "$ref": "./examples/DatabaseUpdateImportMaxSasKey.json" }, - "Import bacpac into an existing database Min with SAS key": { "$ref": "./examples/DatabaseUpdateImportMinSasKey.json" } - }, - "x-ms-long-running-operation": true + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/extensions/{extensionName}": { + "put": { + "tags": [ + "ImportExport" + ], + "operationId": "Databases_CreateImportOperation", + "description": "Creates an import operation that imports a bacpac into an existing database. The existing database must be empty.", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database to import into" + }, + { + "name": "extensionName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the operation to perform", + "enum": [ + "import" + ], + "x-ms-enum": { + "name": "ExtensionName", + "modelAsString": true + } + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ImportExtensionRequest" + }, + "description": "The required parameters for importing a Bacpac into a database." + } + ], + "responses": { + "201": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ImportExportResponse" } + }, + "202": { + "description": "Accepted" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/export": { - "post": { - "tags": [ - "ImportExport" - ], - "operationId": "Databases_Export", - "description": "Exports a database to a bacpac.", - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the database to be exported." - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/ExportRequest" - }, - "description": "The required parameters for exporting a database." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ImportExportResponse" - } - }, - "202": { - "description": "Accepted" - } - }, - "x-ms-examples": { - "Export a database into a new bacpac file with storage key": { "$ref": "./examples/DatabaseExportStorageKey.json" }, - "Export a database into a new bacpac file with SAS key": { "$ref": "./examples/DatabaseExportSasKey.json" } - }, - "x-ms-long-running-operation": true + "x-ms-examples": { + "Import bacpac into an existing database Max with storage key": { + "$ref": "./examples/DatabaseUpdateImportMaxStorageKey.json" + }, + "Import bacpac into an existing database Min with storage key": { + "$ref": "./examples/DatabaseUpdateImportMinStorageKey.json" + }, + "Import bacpac into an existing database Max with SAS key": { + "$ref": "./examples/DatabaseUpdateImportMaxSasKey.json" + }, + "Import bacpac into an existing database Min with SAS key": { + "$ref": "./examples/DatabaseUpdateImportMinSasKey.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/export": { + "post": { + "tags": [ + "ImportExport" + ], + "operationId": "Databases_Export", + "description": "Exports a database to a bacpac.", + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database to be exported." + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ExportRequest" + }, + "description": "The required parameters for exporting a database." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ImportExportResponse" } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-examples": { + "Export a database into a new bacpac file with storage key": { + "$ref": "./examples/DatabaseExportStorageKey.json" + }, + "Export a database into a new bacpac file with SAS key": { + "$ref": "./examples/DatabaseExportSasKey.json" + } + }, + "x-ms-long-running-operation": true + } + } + }, + "definitions": { + "ImportExtensionProperties": { + "properties": { + "operationMode": { + "type": "string", + "description": "The type of import operation being performed. This is always Import.", + "enum": [ + "Import" + ], + "x-ms-enum": { + "name": "ImportOperationMode" + } } + }, + "required": [ + "operationMode" + ], + "allOf": [ + { + "$ref": "#/definitions/ExportRequest" + } + ], + "description": "Represents the properties for an import operation" }, - "definitions": { - "ImportExtensionProperties": { - "properties": { - "operationMode": { - "type": "string", - "description": "The type of import operation being performed. This is always Import.", - "enum": ["Import"], - "x-ms-enum":{ - "name": "ImportOperationMode" - } - } - }, - "required": ["operationMode"], - "allOf": [ - { - "$ref": "#/definitions/ExportRequest" - } - ], - "description": "Represents the properties for an import operation" + "ImportExtensionRequest": { + "properties": { + "name": { + "type": "string", + "description": "The name of the extension." }, - "ImportExtensionRequest": { - "properties": { - "name": { - "type": "string", - "description": "The name of the extension." - }, - "type": { - "type": "string", - "description": "The type of the extension." - }, - "properties": { - "$ref": "#/definitions/ImportExtensionProperties", - "x-ms-client-flatten": true, - "description": "Represents the properties of the resource." - } - }, - "description": "Import database parameters." + "type": { + "type": "string", + "description": "The type of the extension." }, - "ImportExportResponse": { - "properties": { - "properties": - { - "$ref": "#/definitions/ImportExportResponseProperties", - "x-ms-client-flatten": true, - "description": "The import/export operation properties." - } - }, - "allOf": [{ - "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" - }], - "description": "Response for Import/Export Get operation." + "properties": { + "$ref": "#/definitions/ImportExtensionProperties", + "x-ms-client-flatten": true, + "description": "Represents the properties of the resource." + } + }, + "description": "Import database parameters." + }, + "ImportExportResponse": { + "properties": { + "properties": { + "$ref": "#/definitions/ImportExportResponseProperties", + "x-ms-client-flatten": true, + "description": "The import/export operation properties." + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" + } + ], + "description": "Response for Import/Export Get operation." + }, + "ImportExportResponseProperties": { + "properties": { + "requestType": { + "type": "string", + "readOnly": true, + "description": "The request type of the operation." }, - "ImportExportResponseProperties": { - "properties": { - "requestType": { - "type": "string", - "readOnly": true, - "description": "The request type of the operation." - }, - "requestId": { - "type": "string", - "format": "uuid", - "readOnly": true, - "description": "The request type of the operation." - }, - "serverName": { - "type": "string", - "readOnly": true, - "description": "The name of the server." - }, - "databaseName": { - "type": "string", - "readOnly": true, - "description": "The name of the database." - }, - "status": { - "type": "string", - "readOnly": true, - "description": "The status message returned from the server." - }, - "lastModifiedTime": { - "type": "string", - "readOnly": true, - "description": "The operation status last modified time." - }, - "queuedTime": { - "type": "string", - "readOnly": true, - "description": "The operation queued time." - }, - "blobUri": { - "type": "string", - "readOnly": true, - "description": "The blob uri." - }, - "errorMessage": { - "type": "string", - "readOnly": true, - "description": "The error message returned from the server." - } - }, - "description": "Response for Import/Export Status operation." + "requestId": { + "type": "string", + "format": "uuid", + "readOnly": true, + "description": "The request type of the operation." }, - "ImportRequest": { - "properties": { - "databaseName": { - "type": "string", - "description": "The name of the database to import." - }, - "edition": { - "type": "string", - "description": "The edition for the database being created.\r\n\r\nThe list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the `Capabilities_ListByLocation` REST API or one of the following commands:\r\n\r\n```azurecli\r\naz sql db list-editions -l -o table\r\n````\r\n\r\n```powershell\r\nGet-AzSqlServerServiceObjective -Location \r\n````\r\n", - "enum": [ - "Web", - "Business", - "Basic", - "Standard", - "Premium", - "PremiumRS", - "Free", - "Stretch", - "DataWarehouse", - "System", - "System2", - "GeneralPurpose", - "BusinessCritical", - "Hyperscale" - ], - "x-ms-enum": { - "name": "DatabaseEdition", - "modelAsString": true - } - }, - "serviceObjectiveName": { - "type": "string", - "description": "The name of the service objective to assign to the database.", - "enum": [ - "System", - "System0", - "System1", - "System2", - "System3", - "System4", - "System2L", - "System3L", - "System4L", - "Free", - "Basic", - "S0", - "S1", - "S2", - "S3", - "S4", - "S6", - "S7", - "S9", - "S12", - "P1", - "P2", - "P3", - "P4", - "P6", - "P11", - "P15", - "PRS1", - "PRS2", - "PRS4", - "PRS6", - "DW100", - "DW200", - "DW300", - "DW400", - "DW500", - "DW600", - "DW1000", - "DW1200", - "DW1000c", - "DW1500", - "DW1500c", - "DW2000", - "DW2000c", - "DW3000", - "DW2500c", - "DW3000c", - "DW6000", - "DW5000c", - "DW6000c", - "DW7500c", - "DW10000c", - "DW15000c", - "DW30000c", - "DS100", - "DS200", - "DS300", - "DS400", - "DS500", - "DS600", - "DS1000", - "DS1200", - "DS1500", - "DS2000", - "ElasticPool" - ], - "x-ms-enum": { - "modelAsString": true, - "name": "ServiceObjectiveName" - } - }, - "maxSizeBytes": { - "type": "string", - "description": "The maximum size for the newly imported database." - } - }, - "allOf": [ - { - "$ref": "#/definitions/ExportRequest" - } - ], - "required":["databaseName","edition","serviceObjectiveName","maxSizeBytes"], - "description": "Import database parameters." + "serverName": { + "type": "string", + "readOnly": true, + "description": "The name of the server." }, - "ExportRequest": { - "properties": { - "storageKeyType": { - "type": "string", - "description": "The type of the storage key to use.", - "enum": ["StorageAccessKey","SharedAccessKey"], - "x-ms-enum":{ - "name": "StorageKeyType" - } - }, - "storageKey": { - "type": "string", - "description": "The storage key to use. If storage key type is SharedAccessKey, it must be preceded with a \"?.\"" - }, - "storageUri": { - "type": "string", - "description": "The storage uri to use." - }, - "administratorLogin": { - "type": "string", - "description": "The name of the SQL administrator." - }, - "administratorLoginPassword": { - "type": "string", - "description": "The password of the SQL administrator." - }, - "authenticationType": { - "type": "string", - "description": "The authentication type.", - "enum": ["SQL","ADPassword"], - "x-ms-enum":{ - "name": "AuthenticationType" - }, - "default": "SQL" - } - }, - "required":["storageKeyType","storageKey","storageUri","administratorLogin","administratorLoginPassword"], - "description": "Export database parameters." + "databaseName": { + "type": "string", + "readOnly": true, + "description": "The name of the database." + }, + "status": { + "type": "string", + "readOnly": true, + "description": "The status message returned from the server." + }, + "lastModifiedTime": { + "type": "string", + "readOnly": true, + "description": "The operation status last modified time." + }, + "queuedTime": { + "type": "string", + "readOnly": true, + "description": "The operation queued time." + }, + "blobUri": { + "type": "string", + "readOnly": true, + "description": "The blob uri." + }, + "errorMessage": { + "type": "string", + "readOnly": true, + "description": "The error message returned from the server." } + }, + "description": "Response for Import/Export Status operation." }, - "parameters": { - "ServerNameParameter": { - "name": "serverName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the server.", - "x-ms-parameter-location": "method" + "ImportRequest": { + "properties": { + "databaseName": { + "type": "string", + "description": "The name of the database to import." + }, + "edition": { + "type": "string", + "description": "The edition for the database being created.\r\n\r\nThe list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the `Capabilities_ListByLocation` REST API or one of the following commands:\r\n\r\n```azurecli\r\naz sql db list-editions -l -o table\r\n````\r\n\r\n```powershell\r\nGet-AzSqlServerServiceObjective -Location \r\n````\r\n", + "enum": [ + "Web", + "Business", + "Basic", + "Standard", + "Premium", + "PremiumRS", + "Free", + "Stretch", + "DataWarehouse", + "System", + "System2", + "GeneralPurpose", + "BusinessCritical", + "Hyperscale" + ], + "x-ms-enum": { + "name": "DatabaseEdition", + "modelAsString": true + } + }, + "serviceObjectiveName": { + "type": "string", + "description": "The name of the service objective to assign to the database.", + "enum": [ + "System", + "System0", + "System1", + "System2", + "System3", + "System4", + "System2L", + "System3L", + "System4L", + "Free", + "Basic", + "S0", + "S1", + "S2", + "S3", + "S4", + "S6", + "S7", + "S9", + "S12", + "P1", + "P2", + "P3", + "P4", + "P6", + "P11", + "P15", + "PRS1", + "PRS2", + "PRS4", + "PRS6", + "DW100", + "DW200", + "DW300", + "DW400", + "DW500", + "DW600", + "DW1000", + "DW1200", + "DW1000c", + "DW1500", + "DW1500c", + "DW2000", + "DW2000c", + "DW3000", + "DW2500c", + "DW3000c", + "DW6000", + "DW5000c", + "DW6000c", + "DW7500c", + "DW10000c", + "DW15000c", + "DW30000c", + "DS100", + "DS200", + "DS300", + "DS400", + "DS500", + "DS600", + "DS1000", + "DS1200", + "DS1500", + "DS2000", + "ElasticPool" + ], + "x-ms-enum": { + "modelAsString": true, + "name": "ServiceObjectiveName" + } + }, + "maxSizeBytes": { + "type": "string", + "description": "The maximum size for the newly imported database." } + }, + "allOf": [ + { + "$ref": "#/definitions/ExportRequest" + } + ], + "required": [ + "databaseName", + "edition", + "serviceObjectiveName", + "maxSizeBytes" + ], + "description": "Import database parameters." }, + "ExportRequest": { + "properties": { + "storageKeyType": { + "type": "string", + "description": "The type of the storage key to use.", + "enum": [ + "StorageAccessKey", + "SharedAccessKey" + ], + "x-ms-enum": { + "name": "StorageKeyType" + } + }, + "storageKey": { + "type": "string", + "description": "The storage key to use. If storage key type is SharedAccessKey, it must be preceded with a \"?.\"" + }, + "storageUri": { + "type": "string", + "description": "The storage uri to use." + }, + "administratorLogin": { + "type": "string", + "description": "The name of the SQL administrator." + }, + "administratorLoginPassword": { + "type": "string", + "description": "The password of the SQL administrator." + }, + "authenticationType": { + "type": "string", + "description": "The authentication type.", + "enum": [ + "SQL", + "ADPassword" + ], + "x-ms-enum": { + "name": "AuthenticationType" + }, + "default": "SQL" + } + }, + "required": [ + "storageKeyType", + "storageKey", + "storageUri", + "administratorLogin", + "administratorLoginPassword" + ], + "description": "Export database parameters." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + } + }, "securityDefinitions": { "azure_auth": { "type": "oauth2", diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/metrics.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/metrics.json index 220a9dd2fa09..44ae2196ea68 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/metrics.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/metrics.json @@ -24,7 +24,9 @@ "operationId": "Databases_ListMetrics", "description": "Returns database metrics.", "x-ms-examples": { - "List database usage metrics": { "$ref": "./examples/DatabaseMetricsListWithFilter.json" } + "List database usage metrics": { + "$ref": "./examples/DatabaseMetricsListWithFilter.json" + } }, "parameters": [ { @@ -75,7 +77,9 @@ "operationId": "Databases_ListMetricDefinitions", "description": "Returns database metric definitions.", "x-ms-examples": { - "List database usage metrics": { "$ref": "./examples/DatabaseMetricsDefinitionsList.json" } + "List database usage metrics": { + "$ref": "./examples/DatabaseMetricsDefinitionsList.json" + } }, "parameters": [ { @@ -119,7 +123,9 @@ "operationId": "ElasticPools_ListMetrics", "description": "Returns elastic pool metrics.", "x-ms-examples": { - "List database usage metrics": { "$ref": "./examples/ElasticPoolMetricsListWithFilter.json" } + "List database usage metrics": { + "$ref": "./examples/ElasticPoolMetricsListWithFilter.json" + } }, "parameters": [ { @@ -170,7 +176,9 @@ "operationId": "ElasticPools_ListMetricDefinitions", "description": "Returns elastic pool metric definitions.", "x-ms-examples": { - "List database usage metrics": { "$ref": "./examples/ElasticPoolMetricsDefinitionsList.json" } + "List database usage metrics": { + "$ref": "./examples/ElasticPoolMetricsDefinitionsList.json" + } }, "parameters": [ { @@ -287,7 +295,14 @@ "readOnly": true, "type": "string", "description": "The unit of the metric.", - "enum": ["count", "bytes", "seconds", "percent", "countPerSecond", "bytesPerSecond"], + "enum": [ + "count", + "bytes", + "seconds", + "percent", + "countPerSecond", + "bytesPerSecond" + ], "x-ms-enum": { "modelAsString": true, "name": "UnitType" @@ -319,7 +334,9 @@ "description": "The list of metrics for the database." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "The response to a list database metrics request." }, "MetricAvailability": { @@ -348,7 +365,14 @@ "readOnly": true, "type": "string", "description": "The primary aggregation type defining how metric values are displayed.", - "enum": ["None", "Average", "Count", "Minimum", "Maximum", "Total"], + "enum": [ + "None", + "Average", + "Count", + "Minimum", + "Maximum", + "Total" + ], "x-ms-enum": { "modelAsString": true, "name": "PrimaryAggregationType" @@ -363,7 +387,14 @@ "readOnly": true, "type": "string", "description": "The unit of the metric.", - "enum": ["Count", "Bytes", "Seconds", "Percent", "CountPerSecond", "BytesPerSecond"], + "enum": [ + "Count", + "Bytes", + "Seconds", + "Percent", + "CountPerSecond", + "BytesPerSecond" + ], "x-ms-enum": { "modelAsString": true, "name": "UnitDefinitionType" @@ -390,7 +421,9 @@ "description": "The list of metric definitions for the database." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "The response to a list database metric definitions request." } }, diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/operations.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/operations.json index d2a88c87c591..dfe7288e8fb0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/operations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/operations.json @@ -24,7 +24,9 @@ "description": "Lists all of the available SQL Rest API operations.", "operationId": "Operations_List", "x-ms-examples": { - "Get a list of operations for a resource provider": { "$ref": "./examples/OperationList.json" } + "Get a list of operations for a resource provider": { + "$ref": "./examples/OperationList.json" + } }, "parameters": [ { @@ -44,7 +46,7 @@ }, "definitions": { "OperationListResult": { - "description": "Result of the request to list SQL operations. It contains a list of operations and a URL link to get the next set of results.", + "description": "Result of the request to list SQL operations. It contains a list of operations and a URL link to get the next set of results.", "properties": { "value": { "type": "array", @@ -87,8 +89,7 @@ } } }, - "parameters": { - }, + "parameters": {}, "securityDefinitions": { "azure_auth": { "type": "oauth2", diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/queries.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/queries.json index 371278a2b83d..15a8675aa157 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/queries.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/queries.json @@ -23,8 +23,10 @@ ], "operationId": "Queries_ListByDatabase", "description": "Gets a list of top queries by database.", - "x-ms-examples":{ - "List top queries": { "$ref": "./examples/QueriesList.json" } + "x-ms-examples": { + "List top queries": { + "$ref": "./examples/QueriesList.json" + } }, "parameters": [ { @@ -63,8 +65,10 @@ ], "operationId": "QueryStatistics_ListByQuery", "description": "Lists a query's statistics.", - "x-ms-examples":{ - "Get a query": { "$ref": "./examples/QueryStatisticsList.json" } + "x-ms-examples": { + "Get a query": { + "$ref": "./examples/QueryStatisticsList.json" + } }, "parameters": [ { @@ -110,8 +114,10 @@ ], "operationId": "QueryTexts_ListByQuery", "description": "Gets a query's text.", - "x-ms-examples":{ - "Get a query": { "$ref": "./examples/QueryTextsList.json" } + "x-ms-examples": { + "Get a query": { + "$ref": "./examples/QueryTextsList.json" + } }, "parameters": [ { @@ -157,7 +163,7 @@ "aggregationFunction": { "description": "The function that is used to aggregate each query's metrics.", "type": "string", - "enum":[ + "enum": [ "min", "max", "avg", @@ -179,7 +185,7 @@ "aborted", "exception" ], - "x-ms-enum":{ + "x-ms-enum": { "name": "QueryExecutionType", "modelAsString": false }, @@ -211,7 +217,7 @@ "observedMetric": { "description": "The type of metric to use for ordering the top metrics.", "type": "string", - "enum":[ + "enum": [ "cpu", "io", "logio", @@ -323,7 +329,9 @@ "description": "The list of top queries." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a get top queries request." }, "QueryStatisticListResult": { @@ -336,25 +344,27 @@ "description": "The query." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a get query request." }, "QueryText": { "properties": { "name": { - "readOnly":true, - "type":"string", - "description":"Resource name." + "readOnly": true, + "type": "string", + "description": "Resource name." }, "type": { - "readOnly":true, - "type":"string", - "description":"Resource type." + "readOnly": true, + "type": "string", + "description": "Resource type." }, "queryText": { - "readOnly":true, - "type":"string", - "description":"Query text." + "readOnly": true, + "type": "string", + "description": "Query text." } } }, @@ -368,7 +378,9 @@ "description": "The query text." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a get query text request." } }, diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/recommendedElasticPools.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/recommendedElasticPools.json index ce478290ff11..c646b720456c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/recommendedElasticPools.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/recommendedElasticPools.json @@ -1,317 +1,317 @@ { - "swagger": "2.0", - "info": { - "title": "Azure SQL Database", - "description": "Provides create, read, update and delete functionality for Azure SQL Database resources including recommendations and operations.", - "version": "2014-04-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}": { - "get": { - "tags": [ - "RecommendedElasticPools" - ], - "operationId": "RecommendedElasticPools_Get", - "description": "Gets a recommended elastic pool.", - "x-ms-examples": { - "Get a recommended elastic pool": { - "$ref": "./examples/RecommendedElasticPoolGet.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "recommendedElasticPoolName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the recommended elastic pool to be retrieved." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RecommendedElasticPool" - } - } - } + "swagger": "2.0", + "info": { + "title": "Azure SQL Database", + "description": "Provides create, read, update and delete functionality for Azure SQL Database resources including recommendations and operations.", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}": { + "get": { + "tags": [ + "RecommendedElasticPools" + ], + "operationId": "RecommendedElasticPools_Get", + "description": "Gets a recommended elastic pool.", + "x-ms-examples": { + "Get a recommended elastic pool": { + "$ref": "./examples/RecommendedElasticPoolGet.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "recommendedElasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the recommended elastic pool to be retrieved." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RecommendedElasticPool" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools": { + "get": { + "tags": [ + "RecommendedElasticPools" + ], + "operationId": "RecommendedElasticPools_ListByServer", + "description": "Returns recommended elastic pools.", + "x-ms-examples": { + "List recommended elastic pools": { + "$ref": "./examples/RecommendedElasticPoolList.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools": { - "get": { - "tags": [ - "RecommendedElasticPools" - ], - "operationId": "RecommendedElasticPools_ListByServer", - "description": "Returns recommended elastic pools.", - "x-ms-examples": { - "List recommended elastic pools": { - "$ref": "./examples/RecommendedElasticPoolList.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RecommendedElasticPoolListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RecommendedElasticPoolListResult" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/metrics": { - "get": { - "tags": [ - "RecommendedElasticPools" - ], - "operationId": "RecommendedElasticPools_ListMetrics", - "description": "Returns recommended elastic pool metrics.", - "x-ms-examples": { - "Get recommended elastic pool metrics": { - "$ref": "./examples/RecommendedElasticPoolListMetrics.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "recommendedElasticPoolName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the recommended elastic pool to be retrieved." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RecommendedElasticPoolListMetricsResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/metrics": { + "get": { + "tags": [ + "RecommendedElasticPools" + ], + "operationId": "RecommendedElasticPools_ListMetrics", + "description": "Returns recommended elastic pool metrics.", + "x-ms-examples": { + "Get recommended elastic pool metrics": { + "$ref": "./examples/RecommendedElasticPoolListMetrics.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "recommendedElasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the recommended elastic pool to be retrieved." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RecommendedElasticPoolListMetricsResult" } + } + }, + "x-ms-pageable": { + "nextLinkName": null } + } + } + }, + "definitions": { + "RecommendedElasticPoolMetric": { + "properties": { + "dateTime": { + "type": "string", + "format": "date-time", + "description": "The time of metric (ISO8601 format)." + }, + "dtu": { + "type": "number", + "format": "double", + "description": "Gets or sets the DTUs (Database Transaction Units). See https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/" + }, + "sizeGB": { + "type": "number", + "format": "double", + "description": "Gets or sets size in gigabytes." + } + }, + "description": "Represents recommended elastic pool metric." }, - "definitions": { - "RecommendedElasticPoolMetric": { - "properties": { - "dateTime": { - "type": "string", - "format": "date-time", - "description": "The time of metric (ISO8601 format)." - }, - "dtu": { - "type": "number", - "format": "double", - "description": "Gets or sets the DTUs (Database Transaction Units). See https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/" - }, - "sizeGB": { - "type": "number", - "format": "double", - "description": "Gets or sets size in gigabytes." - } - }, - "description": "Represents recommended elastic pool metric." + "RecommendedElasticPoolProperties": { + "properties": { + "databaseEdition": { + "readOnly": true, + "type": "string", + "description": "The edition of the recommended elastic pool. The ElasticPoolEdition enumeration contains all the valid editions.", + "enum": [ + "Basic", + "Standard", + "Premium", + "GeneralPurpose", + "BusinessCritical" + ], + "x-ms-enum": { + "name": "ElasticPoolEdition", + "modelAsString": true + } + }, + "dtu": { + "type": "number", + "format": "double", + "description": "The DTU for the recommended elastic pool." + }, + "databaseDtuMin": { + "type": "number", + "format": "double", + "description": "The minimum DTU for the database." + }, + "databaseDtuMax": { + "type": "number", + "format": "double", + "description": "The maximum DTU for the database." }, - "RecommendedElasticPoolProperties": { - "properties": { - "databaseEdition": { - "readOnly": true, - "type": "string", - "description": "The edition of the recommended elastic pool. The ElasticPoolEdition enumeration contains all the valid editions.", - "enum": [ - "Basic", - "Standard", - "Premium", - "GeneralPurpose", - "BusinessCritical" - ], - "x-ms-enum": { - "name": "ElasticPoolEdition", - "modelAsString": true - } - }, - "dtu": { - "type": "number", - "format": "double", - "description": "The DTU for the recommended elastic pool." - }, - "databaseDtuMin": { - "type": "number", - "format": "double", - "description": "The minimum DTU for the database." - }, - "databaseDtuMax": { - "type": "number", - "format": "double", - "description": "The maximum DTU for the database." - }, - "storageMB": { - "type": "number", - "format": "double", - "description": "Gets storage size in megabytes." - }, - "observationPeriodStart": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The observation period start (ISO8601 format)." - }, - "observationPeriodEnd": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The observation period start (ISO8601 format)." - }, - "maxObservedDtu": { - "readOnly": true, - "type": "number", - "format": "double", - "description": "Gets maximum observed DTU." - }, - "maxObservedStorageMB": { - "readOnly": true, - "type": "number", - "format": "double", - "description": "Gets maximum observed storage in megabytes." - }, - "databases": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "./databases.json#/definitions/Database" - }, - "description": "The list of databases in this pool. Expanded property" - }, - "metrics": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/RecommendedElasticPoolMetric" - }, - "description": "The list of databases housed in the server. Expanded property" - } - }, - "description": "Represents the properties of a recommended elastic pool." + "storageMB": { + "type": "number", + "format": "double", + "description": "Gets storage size in megabytes." }, - "RecommendedElasticPool": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RecommendedElasticPoolProperties", - "description": "The properties representing the resource." - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" - } - ], - "description": "Represents a recommended elastic pool." + "observationPeriodStart": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The observation period start (ISO8601 format)." }, - "RecommendedElasticPoolListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/RecommendedElasticPool" - }, - "description": "The list of recommended elastic pools hosted in the server." - } - }, - "required": [ - "value" - ], - "description": "Represents the response to a list recommended elastic pool request." + "observationPeriodEnd": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The observation period start (ISO8601 format)." }, - "RecommendedElasticPoolListMetricsResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/RecommendedElasticPoolMetric" - }, - "description": "The list of recommended elastic pools metrics." - } - }, - "required": [ - "value" - ], - "description": "Represents the response to a list recommended elastic pool metrics request." + "maxObservedDtu": { + "readOnly": true, + "type": "number", + "format": "double", + "description": "Gets maximum observed DTU." + }, + "maxObservedStorageMB": { + "readOnly": true, + "type": "number", + "format": "double", + "description": "Gets maximum observed storage in megabytes." + }, + "databases": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "./databases.json#/definitions/Database" + }, + "description": "The list of databases in this pool. Expanded property" + }, + "metrics": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/RecommendedElasticPoolMetric" + }, + "description": "The list of databases housed in the server. Expanded property" } + }, + "description": "Represents the properties of a recommended elastic pool." }, - "parameters": { - "ServerNameParameter": { - "name": "serverName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the server.", - "x-ms-parameter-location": "method" + "RecommendedElasticPool": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RecommendedElasticPoolProperties", + "description": "The properties representing the resource." } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" + } + ], + "description": "Represents a recommended elastic pool." }, - "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" - } + "RecommendedElasticPoolListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/RecommendedElasticPool" + }, + "description": "The list of recommended elastic pools hosted in the server." } + }, + "required": [ + "value" + ], + "description": "Represents the response to a list recommended elastic pool request." + }, + "RecommendedElasticPoolListMetricsResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/RecommendedElasticPoolMetric" + }, + "description": "The list of recommended elastic pools metrics." + } + }, + "required": [ + "value" + ], + "description": "Represents the response to a list recommended elastic pool metrics request." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + } + }, + "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" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/recommendedElasticPoolsDecoupled.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/recommendedElasticPoolsDecoupled.json index 060588a9c56d..f1ea1263a5e0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/recommendedElasticPoolsDecoupled.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/recommendedElasticPoolsDecoupled.json @@ -1,317 +1,317 @@ { - "swagger": "2.0", - "info": { - "title": "Azure SQL Database", - "description": "Provides create, read, update and delete functionality for Azure SQL Database resources including recommendations and operations.", - "version": "2014-04-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}": { - "get": { - "tags": [ - "RecommendedElasticPools" - ], - "operationId": "RecommendedElasticPools_Get", - "description": "Gets a recommended elastic pool.", - "x-ms-examples": { - "Get a recommended elastic pool": { - "$ref": "./examples/RecommendedElasticPoolGet.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "recommendedElasticPoolName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the recommended elastic pool to be retrieved." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RecommendedElasticPool" - } - } - } + "swagger": "2.0", + "info": { + "title": "Azure SQL Database", + "description": "Provides create, read, update and delete functionality for Azure SQL Database resources including recommendations and operations.", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}": { + "get": { + "tags": [ + "RecommendedElasticPools" + ], + "operationId": "RecommendedElasticPools_Get", + "description": "Gets a recommended elastic pool.", + "x-ms-examples": { + "Get a recommended elastic pool": { + "$ref": "./examples/RecommendedElasticPoolGet.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "recommendedElasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the recommended elastic pool to be retrieved." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RecommendedElasticPool" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools": { + "get": { + "tags": [ + "RecommendedElasticPools" + ], + "operationId": "RecommendedElasticPools_ListByServer", + "description": "Returns recommended elastic pools.", + "x-ms-examples": { + "List recommended elastic pools": { + "$ref": "./examples/RecommendedElasticPoolListDecoupled.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools": { - "get": { - "tags": [ - "RecommendedElasticPools" - ], - "operationId": "RecommendedElasticPools_ListByServer", - "description": "Returns recommended elastic pools.", - "x-ms-examples": { - "List recommended elastic pools": { - "$ref": "./examples/RecommendedElasticPoolListDecoupled.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RecommendedElasticPoolListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RecommendedElasticPoolListResult" } + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/metrics": { - "get": { - "tags": [ - "RecommendedElasticPools" - ], - "operationId": "RecommendedElasticPools_ListMetrics", - "description": "Returns recommended elastic pool metrics.", - "x-ms-examples": { - "Get recommended elastic pool metrics": { - "$ref": "./examples/RecommendedElasticPoolListMetrics.json" - } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "recommendedElasticPoolName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the recommended elastic pool to be retrieved." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RecommendedElasticPoolListMetricsResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/metrics": { + "get": { + "tags": [ + "RecommendedElasticPools" + ], + "operationId": "RecommendedElasticPools_ListMetrics", + "description": "Returns recommended elastic pool metrics.", + "x-ms-examples": { + "Get recommended elastic pool metrics": { + "$ref": "./examples/RecommendedElasticPoolListMetrics.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "recommendedElasticPoolName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the recommended elastic pool to be retrieved." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RecommendedElasticPoolListMetricsResult" } + } + }, + "x-ms-pageable": { + "nextLinkName": null } + } + } + }, + "definitions": { + "RecommendedElasticPoolMetric": { + "properties": { + "dateTime": { + "type": "string", + "format": "date-time", + "description": "The time of metric (ISO8601 format)." + }, + "dtu": { + "type": "number", + "format": "double", + "description": "Gets or sets the DTUs (Database Transaction Units). See https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/" + }, + "sizeGB": { + "type": "number", + "format": "double", + "description": "Gets or sets size in gigabytes." + } + }, + "description": "Represents recommended elastic pool metric." }, - "definitions": { - "RecommendedElasticPoolMetric": { - "properties": { - "dateTime": { - "type": "string", - "format": "date-time", - "description": "The time of metric (ISO8601 format)." - }, - "dtu": { - "type": "number", - "format": "double", - "description": "Gets or sets the DTUs (Database Transaction Units). See https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/" - }, - "sizeGB": { - "type": "number", - "format": "double", - "description": "Gets or sets size in gigabytes." - } - }, - "description": "Represents recommended elastic pool metric." + "RecommendedElasticPoolProperties": { + "properties": { + "databaseEdition": { + "readOnly": true, + "type": "string", + "description": "The edition of the recommended elastic pool. The ElasticPoolEdition enumeration contains all the valid editions.", + "enum": [ + "Basic", + "Standard", + "Premium", + "GeneralPurpose", + "BusinessCritical" + ], + "x-ms-enum": { + "name": "ElasticPoolEdition", + "modelAsString": true + } + }, + "dtu": { + "type": "number", + "format": "double", + "description": "The DTU for the recommended elastic pool." + }, + "databaseDtuMin": { + "type": "number", + "format": "double", + "description": "The minimum DTU for the database." + }, + "databaseDtuMax": { + "type": "number", + "format": "double", + "description": "The maximum DTU for the database." }, - "RecommendedElasticPoolProperties": { - "properties": { - "databaseEdition": { - "readOnly": true, - "type": "string", - "description": "The edition of the recommended elastic pool. The ElasticPoolEdition enumeration contains all the valid editions.", - "enum": [ - "Basic", - "Standard", - "Premium", - "GeneralPurpose", - "BusinessCritical" - ], - "x-ms-enum": { - "name": "ElasticPoolEdition", - "modelAsString": true - } - }, - "dtu": { - "type": "number", - "format": "double", - "description": "The DTU for the recommended elastic pool." - }, - "databaseDtuMin": { - "type": "number", - "format": "double", - "description": "The minimum DTU for the database." - }, - "databaseDtuMax": { - "type": "number", - "format": "double", - "description": "The maximum DTU for the database." - }, - "storageMB": { - "type": "number", - "format": "double", - "description": "Gets storage size in megabytes." - }, - "observationPeriodStart": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The observation period start (ISO8601 format)." - }, - "observationPeriodEnd": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "The observation period start (ISO8601 format)." - }, - "maxObservedDtu": { - "readOnly": true, - "type": "number", - "format": "double", - "description": "Gets maximum observed DTU." - }, - "maxObservedStorageMB": { - "readOnly": true, - "type": "number", - "format": "double", - "description": "Gets maximum observed storage in megabytes." - }, - "databases": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "../../../common/v1/types.json#/definitions/TrackedResource" - }, - "description": "The list of databases in this pool. Expanded property" - }, - "metrics": { - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/definitions/RecommendedElasticPoolMetric" - }, - "description": "The list of databases housed in the server. Expanded property" - } - }, - "description": "Represents the properties of a recommended elastic pool." + "storageMB": { + "type": "number", + "format": "double", + "description": "Gets storage size in megabytes." }, - "RecommendedElasticPool": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RecommendedElasticPoolProperties", - "description": "The properties representing the resource." - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" - } - ], - "description": "Represents a recommended elastic pool." + "observationPeriodStart": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The observation period start (ISO8601 format)." }, - "RecommendedElasticPoolListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/RecommendedElasticPool" - }, - "description": "The list of recommended elastic pools hosted in the server." - } - }, - "required": [ - "value" - ], - "description": "Represents the response to a list recommended elastic pool request." + "observationPeriodEnd": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "The observation period start (ISO8601 format)." }, - "RecommendedElasticPoolListMetricsResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/RecommendedElasticPoolMetric" - }, - "description": "The list of recommended elastic pools metrics." - } - }, - "required": [ - "value" - ], - "description": "Represents the response to a list recommended elastic pool metrics request." + "maxObservedDtu": { + "readOnly": true, + "type": "number", + "format": "double", + "description": "Gets maximum observed DTU." + }, + "maxObservedStorageMB": { + "readOnly": true, + "type": "number", + "format": "double", + "description": "Gets maximum observed storage in megabytes." + }, + "databases": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "../../../common/v1/types.json#/definitions/TrackedResource" + }, + "description": "The list of databases in this pool. Expanded property" + }, + "metrics": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/definitions/RecommendedElasticPoolMetric" + }, + "description": "The list of databases housed in the server. Expanded property" } + }, + "description": "Represents the properties of a recommended elastic pool." }, - "parameters": { - "ServerNameParameter": { - "name": "serverName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the server.", - "x-ms-parameter-location": "method" + "RecommendedElasticPool": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RecommendedElasticPoolProperties", + "description": "The properties representing the resource." } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" + } + ], + "description": "Represents a recommended elastic pool." }, - "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" - } + "RecommendedElasticPoolListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/RecommendedElasticPool" + }, + "description": "The list of recommended elastic pools hosted in the server." } + }, + "required": [ + "value" + ], + "description": "Represents the response to a list recommended elastic pool request." + }, + "RecommendedElasticPoolListMetricsResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/RecommendedElasticPoolMetric" + }, + "description": "The list of recommended elastic pools metrics." + } + }, + "required": [ + "value" + ], + "description": "Represents the response to a list recommended elastic pool metrics request." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + } + }, + "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" + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/replicationLinks.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/replicationLinks.json index e92ac8ce0825..c80d3c7743f8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/replicationLinks.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/replicationLinks.json @@ -24,7 +24,9 @@ "operationId": "ReplicationLinks_Delete", "description": "Deletes a database replication link. Cannot be done during failover.", "x-ms-examples": { - "Delete a replication link": { "$ref": "./examples/ReplicationLinkDelete.json" } + "Delete a replication link": { + "$ref": "./examples/ReplicationLinkDelete.json" + } }, "parameters": [ { @@ -70,7 +72,9 @@ "operationId": "ReplicationLinks_Get", "description": "Gets a database replication link.", "x-ms-examples": { - "Get a replication link": { "$ref": "./examples/ReplicationLinkGet.json" } + "Get a replication link": { + "$ref": "./examples/ReplicationLinkGet.json" + } }, "parameters": [ { @@ -118,7 +122,9 @@ "operationId": "ReplicationLinks_Failover", "description": "Sets which replica database is primary by failing over from the current primary replica database.", "x-ms-examples": { - "Failover a replication link": { "$ref": "./examples/ReplicationLinkFailover.json" } + "Failover a replication link": { + "$ref": "./examples/ReplicationLinkFailover.json" + } }, "parameters": [ { @@ -167,7 +173,9 @@ "operationId": "ReplicationLinks_FailoverAllowDataLoss", "description": "Sets which replica database is primary by failing over from the current primary replica database. This operation might result in data loss.", "x-ms-examples": { - "Failover a replication link": { "$ref": "./examples/ReplicationLinkFailover.json" } + "Failover a replication link": { + "$ref": "./examples/ReplicationLinkFailover.json" + } }, "parameters": [ { @@ -216,7 +224,9 @@ "operationId": "ReplicationLinks_ListByDatabase", "description": "Lists a database's replication links.", "x-ms-examples": { - "List Replication links": { "$ref": "./examples/ReplicationLinkList.json" } + "List Replication links": { + "$ref": "./examples/ReplicationLinkList.json" + } }, "parameters": [ { diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/restorePoints.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/restorePoints.json index 530b472a5b92..d9f6e0d0f04b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/restorePoints.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/restorePoints.json @@ -1,153 +1,159 @@ { - "swagger": "2.0", - "info": { - "title": "Azure SQL Database Backup", - "description": "Provides read functionality for Azure SQL Database Backups", - "version": "2014-04-01" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/restorePoints": { - "get": { - "tags": [ - "DatabaseBackup" - ], - "operationId": "RestorePoints_ListByDatabase", - "description": "Gets a list of database restore points.", - "x-ms-examples": { - "Get a database's restore points" : { "$ref": "./examples/DatabaseRestorePointsList.json" }, - "Get a data warehouse's restore points" : { "$ref": "./examples/DataWarehouseRestorePointsList.json" } - }, - "parameters": [ - { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the database to get available restore points." - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/RestorePointListResult" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "swagger": "2.0", + "info": { + "title": "Azure SQL Database Backup", + "description": "Provides read functionality for Azure SQL Database Backups", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/restorePoints": { + "get": { + "tags": [ + "DatabaseBackup" + ], + "operationId": "RestorePoints_ListByDatabase", + "description": "Gets a list of database restore points.", + "x-ms-examples": { + "Get a database's restore points": { + "$ref": "./examples/DatabaseRestorePointsList.json" + }, + "Get a data warehouse's restore points": { + "$ref": "./examples/DataWarehouseRestorePointsList.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the database to get available restore points." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/RestorePointListResult" } + } + }, + "x-ms-pageable": { + "nextLinkName": null } - }, - "definitions": { - "RestorePointProperties": { - "properties": { - "restorePointType": { - "readOnly": true, - "type": "string", - "description": "The restore point type of the database restore point.", - "enum": [ - "DISCRETE", - "CONTINUOUS" - ], - "x-ms-enum": { - "name": "RestorePointType" - } - }, - "restorePointCreationDate": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "Restore point creation time (ISO8601 format). Populated when restorePointType = CONTINUOUS. Null otherwise." - }, - "earliestRestoreDate": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "Earliest restore time (ISO8601 format). Populated when restorePointType = DISCRETE. Null otherwise." - } - }, - "description": "Represents the properties of a database restore point." + } + } + }, + "definitions": { + "RestorePointProperties": { + "properties": { + "restorePointType": { + "readOnly": true, + "type": "string", + "description": "The restore point type of the database restore point.", + "enum": [ + "DISCRETE", + "CONTINUOUS" + ], + "x-ms-enum": { + "name": "RestorePointType" + } }, - "RestorePoint": { - "properties": { - "properties": { - "$ref": "#/definitions/RestorePointProperties", - "description": "The properties of the restore point.", - "x-ms-client-flatten": true - } - }, - "allOf": [ - { - "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" - } - ], - "description": "A database restore point." + "restorePointCreationDate": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "Restore point creation time (ISO8601 format). Populated when restorePointType = CONTINUOUS. Null otherwise." }, - "RestorePointListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/RestorePoint" - }, - "description": "The list of database restore points." - } - }, - "required": [ "value" ], - "description": "The response to a list database restore points request." + "earliestRestoreDate": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "Earliest restore time (ISO8601 format). Populated when restorePointType = DISCRETE. Null otherwise." } + }, + "description": "Represents the properties of a database restore point." }, - "parameters": { - "ServerNameParameter": { - "name": "serverName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the server.", - "x-ms-parameter-location": "method" - }, - "DatabaseExpandParameter": { - "name": "$expand", - "in": "query", - "required": false, - "type": "string", - "description": "A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", - "x-ms-parameter-location": "method" + "RestorePoint": { + "properties": { + "properties": { + "$ref": "#/definitions/RestorePointProperties", + "description": "The properties of the restore point.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" } + ], + "description": "A database restore point." }, - "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" - } + "RestorePointListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/RestorePoint" + }, + "description": "The list of database restore points." } + }, + "required": [ + "value" + ], + "description": "The response to a list database restore points request." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + }, + "DatabaseExpandParameter": { + "name": "$expand", + "in": "query", + "required": false, + "type": "string", + "description": "A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", + "x-ms-parameter-location": "method" + } + }, + "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" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serverAzureADAdministrators.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serverAzureADAdministrators.json index 2be702e77e02..97bdd63a54ef 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serverAzureADAdministrators.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serverAzureADAdministrators.json @@ -1,314 +1,314 @@ { - "swagger":"2.0", - "info":{ - "title":"Azure SQL Database API spec", - "description":"The Azure SQL Database management API provides a RESTful set of web services that interact with Azure SQL Database services to manage your external server administrators.", - "version":"2014-04-01" - }, - "host":"management.azure.com", - "schemes":[ - "https" - ], - "consumes":[ - "application/json" - ], - "produces":[ - "application/json" - ], - "paths":{ - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/administrators/{administratorName}":{ - "put":{ - "tags":[ - "ServerAdministrators" - ], - "operationId":"ServerAzureADAdministrators_CreateOrUpdate", - "description":"Creates a new Server Active Directory Administrator or updates an existing server Active Directory Administrator.", - "x-ms-examples":{ - "Create/Update a server administrator":{ - "$ref":"./examples/ServerAdminCreateUpdate.json" - } + "swagger": "2.0", + "info": { + "title": "Azure SQL Database API spec", + "description": "The Azure SQL Database management API provides a RESTful set of web services that interact with Azure SQL Database services to manage your external server administrators.", + "version": "2014-04-01" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/administrators/{administratorName}": { + "put": { + "tags": [ + "ServerAdministrators" + ], + "operationId": "ServerAzureADAdministrators_CreateOrUpdate", + "description": "Creates a new Server Active Directory Administrator or updates an existing server Active Directory Administrator.", + "x-ms-examples": { + "Create/Update a server administrator": { + "$ref": "./examples/ServerAdminCreateUpdate.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/AdministratorNameParameter" + }, + { + "name": "properties", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/ServerAzureADAdministrator" }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "$ref":"#/parameters/AdministratorNameParameter" - }, - { - "name":"properties", - "in":"body", - "required":true, - "schema":{ - "$ref":"#/definitions/ServerAzureADAdministrator" - }, - "description":"The required parameters for creating or updating an Active Directory Administrator." - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/ServerAzureADAdministrator" - } - }, - "201":{ - "description":"Created", - "schema":{ - "$ref":"#/definitions/ServerAzureADAdministrator" - } - }, - "202":{ - "description":"Accepted", - "schema":{ - "$ref":"#/definitions/ServerAzureADAdministrator" - } - } - }, - "x-ms-long-running-operation":true - }, - "delete":{ - "tags":[ - "ServerAdministrators" - ], - "operationId":"ServerAzureADAdministrators_Delete", - "description":"Deletes an existing server Active Directory Administrator.", - "x-ms-examples":{ - "Delete a server administrator":{ - "$ref":"./examples/ServerAdminDelete.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "$ref":"#/parameters/AdministratorNameParameter" - } - ], - "responses":{ - "202":{ - "description":"Accepted", - "schema":{ - "$ref":"#/definitions/ServerAzureADAdministrator" - } - }, - "204":{ - "description":"No Content", - "schema":{ - "$ref":"#/definitions/ServerAzureADAdministrator" - } - }, - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/ServerAzureADAdministrator" - } - } - }, - "x-ms-long-running-operation":true - }, - "get":{ - "tags":[ - "ServerAdministrators" - ], - "operationId":"ServerAzureADAdministrators_Get", - "description":"Returns an server Administrator.", - "x-ms-examples":{ - "Get the Active Directory Administrator":{ - "$ref":"./examples/ServerAdminGet.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - }, - { - "$ref":"#/parameters/AdministratorNameParameter" - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/ServerAzureADAdministrator" - } - } + "description": "The required parameters for creating or updating an Active Directory Administrator." + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ServerAzureADAdministrator" } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/administrators":{ - "get":{ - "tags":[ - "ServerAdministrators" - ], - "operationId":"ServerAzureADAdministrators_ListByServer", - "description":"Returns a list of server Administrators.", - "x-ms-examples":{ - "get a list of server administrators":{ - "$ref":"./examples/ServerAdminList.json" - } - }, - "parameters":[ - { - "$ref":"../../../common/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "$ref":"../../../common/v1/types.json#/parameters/ResourceGroupParameter" - }, - { - "$ref":"#/parameters/ServerNameParameter" - } - ], - "responses":{ - "200":{ - "description":"OK", - "schema":{ - "$ref":"#/definitions/ServerAdministratorListResult" - } - } - }, - "x-ms-pageable":{ - "nextLinkName":null + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/ServerAzureADAdministrator" } - } - } - }, - "definitions":{ - "ServerAdministratorProperties":{ - "properties":{ - "administratorType":{ - "type":"string", - "description":"The type of administrator.", - "enum":[ - "ActiveDirectory" - ], - "x-ms-enum":{ - "name":"AdministratorType" - } - }, - "login":{ - "type":"string", - "description":"The server administrator login value." - }, - "sid":{ - "type":"string", - "description":"The server administrator Sid (Secure ID).", - "format":"uuid" - }, - "tenantId":{ - "type":"string", - "description":"The server Active Directory Administrator tenant id.", - "format":"uuid" + }, + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/ServerAzureADAdministrator" } - }, - "required":[ - "tenantId", - "administratorType", - "login", - "sid" - ], - "description":"The properties of an server Administrator." + } + }, + "x-ms-long-running-operation": true }, - "ServerAzureADAdministrator":{ - "properties":{ - "properties":{ - "x-ms-client-flatten":true, - "$ref":"#/definitions/ServerAdministratorProperties", - "description":"The properties of the resource." + "delete": { + "tags": [ + "ServerAdministrators" + ], + "operationId": "ServerAzureADAdministrators_Delete", + "description": "Deletes an existing server Active Directory Administrator.", + "x-ms-examples": { + "Delete a server administrator": { + "$ref": "./examples/ServerAdminDelete.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/AdministratorNameParameter" + } + ], + "responses": { + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/ServerAzureADAdministrator" } - }, - "allOf":[ - { - "$ref":"../../../common/v1/types.json#/definitions/ProxyResource" + }, + "204": { + "description": "No Content", + "schema": { + "$ref": "#/definitions/ServerAzureADAdministrator" } - ], - "description":"An server Active Directory Administrator." + }, + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ServerAzureADAdministrator" + } + } + }, + "x-ms-long-running-operation": true }, - "ServerAdministratorListResult":{ - "properties":{ - "value":{ - "type":"array", - "items":{ - "$ref":"#/definitions/ServerAzureADAdministrator" - }, - "description":"The list of server Active Directory Administrators for the server." + "get": { + "tags": [ + "ServerAdministrators" + ], + "operationId": "ServerAzureADAdministrators_Get", + "description": "Returns an server Administrator.", + "x-ms-examples": { + "Get the Active Directory Administrator": { + "$ref": "./examples/ServerAdminGet.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/AdministratorNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ServerAzureADAdministrator" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/administrators": { + "get": { + "tags": [ + "ServerAdministrators" + ], + "operationId": "ServerAzureADAdministrators_ListByServer", + "description": "Returns a list of server Administrators.", + "x-ms-examples": { + "get a list of server administrators": { + "$ref": "./examples/ServerAdminList.json" + } + }, + "parameters": [ + { + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ServerAdministratorListResult" } - }, - "description":"The response to a list Active Directory Administrators request." + } + }, + "x-ms-pageable": { + "nextLinkName": null + } } - }, - "parameters":{ - "ServerNameParameter":{ - "name":"serverName", - "in":"path", - "required":true, - "type":"string", - "description":"The name of the server.", - "x-ms-parameter-location":"method" + } + }, + "definitions": { + "ServerAdministratorProperties": { + "properties": { + "administratorType": { + "type": "string", + "description": "The type of administrator.", + "enum": [ + "ActiveDirectory" + ], + "x-ms-enum": { + "name": "AdministratorType" + } + }, + "login": { + "type": "string", + "description": "The server administrator login value." + }, + "sid": { + "type": "string", + "description": "The server administrator Sid (Secure ID).", + "format": "uuid" + }, + "tenantId": { + "type": "string", + "description": "The server Active Directory Administrator tenant id.", + "format": "uuid" + } }, - "DatabaseExpandParameter":{ - "name":"$expand", - "in":"query", - "required":false, - "type":"string", - "description":"A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", - "x-ms-parameter-location":"method" + "required": [ + "tenantId", + "administratorType", + "login", + "sid" + ], + "description": "The properties of an server Administrator." + }, + "ServerAzureADAdministrator": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerAdministratorProperties", + "description": "The properties of the resource." + } }, - "AdministratorNameParameter":{ - "name":"administratorName", - "in":"path", - "description":"Name of the server administrator resource.", - "required":true, - "type":"string", - "enum":[ - "activeDirectory" - ], - "x-ms-enum":{ - "name":"ServerAdministratorName" - }, - "x-ms-parameter-location":"method" - } - }, - "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" - } + "allOf": [ + { + "$ref": "../../../common/v1/types.json#/definitions/ProxyResource" + } + ], + "description": "An server Active Directory Administrator." + }, + "ServerAdministratorListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ServerAzureADAdministrator" + }, + "description": "The list of server Active Directory Administrators for the server." + } + }, + "description": "The response to a list Active Directory Administrators request." + } + }, + "parameters": { + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the server.", + "x-ms-parameter-location": "method" + }, + "DatabaseExpandParameter": { + "name": "$expand", + "in": "query", + "required": false, + "type": "string", + "description": "A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.", + "x-ms-parameter-location": "method" + }, + "AdministratorNameParameter": { + "name": "administratorName", + "in": "path", + "description": "Name of the server administrator resource.", + "required": true, + "type": "string", + "enum": [ + "activeDirectory" + ], + "x-ms-enum": { + "name": "ServerAdministratorName" + }, + "x-ms-parameter-location": "method" + } + }, + "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" } - } -} \ No newline at end of file + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serverCommunicationLinks.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serverCommunicationLinks.json index 090b650f4008..4f56f027abd8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serverCommunicationLinks.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serverCommunicationLinks.json @@ -24,7 +24,9 @@ "operationId": "ServerCommunicationLinks_Delete", "description": "Deletes a server communication link.", "x-ms-examples": { - "Delete a server communication link": { "$ref": "./examples/ServerCommunicationLinkDelete.json" } + "Delete a server communication link": { + "$ref": "./examples/ServerCommunicationLinkDelete.json" + } }, "parameters": [ { @@ -60,7 +62,9 @@ "operationId": "ServerCommunicationLinks_Get", "description": "Returns a server communication link.", "x-ms-examples": { - "Get a server communication link": { "$ref": "./examples/ServerCommunicationLinkGet.json" } + "Get a server communication link": { + "$ref": "./examples/ServerCommunicationLinkGet.json" + } }, "parameters": [ { @@ -99,7 +103,9 @@ "operationId": "ServerCommunicationLinks_CreateOrUpdate", "description": "Creates a server communication link.", "x-ms-examples": { - "Create a server communication link": { "$ref": "./examples/ServerCommunicationLinkCreateOrUpdate.json" } + "Create a server communication link": { + "$ref": "./examples/ServerCommunicationLinkCreateOrUpdate.json" + } }, "parameters": [ { @@ -153,7 +159,9 @@ "operationId": "ServerCommunicationLinks_ListByServer", "description": "Gets a list of server communication links.", "x-ms-examples": { - "List server communication links": { "$ref": "./examples/ServerCommunicationLinkList.json" } + "List server communication links": { + "$ref": "./examples/ServerCommunicationLinkList.json" + } }, "parameters": [ { @@ -200,7 +208,9 @@ "description": "The name of the partner server." } }, - "required": ["partnerServer"], + "required": [ + "partnerServer" + ], "description": "The properties of a server communication link." }, "ServerCommunicationLink": { @@ -210,13 +220,13 @@ "description": "The properties of resource.", "x-ms-client-flatten": true }, - "location":{ - "type":"string", + "location": { + "type": "string", "readOnly": true, - "description":"Communication link location." + "description": "Communication link location." }, - "kind":{ - "type":"string", + "kind": { + "type": "string", "readOnly": true, "description": "Communication link kind. This property is used for Azure Portal metadata." } @@ -262,4 +272,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/servers.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/servers.json index c4b9d983a12f..2b81a1c1095b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/servers.json @@ -24,7 +24,9 @@ "operationId": "Servers_List", "description": "Returns a list of servers.", "x-ms-examples": { - "List servers": { "$ref": "./examples/ServerList.json" } + "List servers": { + "$ref": "./examples/ServerList.json" + } }, "parameters": [ { @@ -55,8 +57,12 @@ "operationId": "Servers_CreateOrUpdate", "description": "Creates or updates a new server.", "x-ms-examples": { - "Create server min": { "$ref": "./examples/ServerCreateOrUpdateMin.json" }, - "Create server max": { "$ref": "./examples/ServerCreateOrUpdateMax.json" } + "Create server min": { + "$ref": "./examples/ServerCreateOrUpdateMin.json" + }, + "Create server max": { + "$ref": "./examples/ServerCreateOrUpdateMax.json" + } }, "parameters": [ { @@ -103,8 +109,12 @@ "operationId": "Servers_Update", "description": "Updates an existing server.", "x-ms-examples": { - "Create server min": { "$ref": "./examples/ServerUpdateMin.json" }, - "Create server max": { "$ref": "./examples/ServerUpdateMax.json" } + "Create server min": { + "$ref": "./examples/ServerUpdateMin.json" + }, + "Create server max": { + "$ref": "./examples/ServerUpdateMax.json" + } }, "parameters": [ { @@ -145,7 +155,9 @@ "operationId": "Servers_Delete", "description": "Deletes a SQL server.", "x-ms-examples": { - "Delete SQL Server": { "$ref": "./examples/ServerDelete.json" } + "Delete SQL Server": { + "$ref": "./examples/ServerDelete.json" + } }, "parameters": [ { @@ -177,7 +189,9 @@ "operationId": "Servers_Get", "description": "Gets a server.", "x-ms-examples": { - "Get Server": { "$ref": "./examples/ServerGet.json" } + "Get Server": { + "$ref": "./examples/ServerGet.json" + } }, "parameters": [ { @@ -211,7 +225,9 @@ "operationId": "Servers_ListByResourceGroup", "description": "Returns a list of servers in a resource group.", "x-ms-examples": { - "List servers by resource group": { "$ref": "./examples/ServerListByResourceGroup.json" } + "List servers by resource group": { + "$ref": "./examples/ServerListByResourceGroup.json" + } }, "parameters": [ { @@ -248,22 +264,31 @@ }, "version": { "type": "string", - "enum": ["2.0", "12.0"], + "enum": [ + "2.0", + "12.0" + ], "description": "The version of the server.", "x-ms-enum": { - "name": "ServerVersion", - "modelAsString": true + "name": "ServerVersion", + "modelAsString": true } }, "administratorLogin": { "type": "string", "description": "Administrator username for the server. Can only be specified when the server is being created (and is required for creation).", - "x-ms-mutability": [ "create", "read" ] + "x-ms-mutability": [ + "create", + "read" + ] }, "administratorLoginPassword": { "type": "string", "description": "The administrator login password (required for server creation).", - "x-ms-mutability": [ "create", "update" ] + "x-ms-mutability": [ + "create", + "update" + ] }, "externalAdministratorSid": { "readOnly": true, @@ -280,9 +305,12 @@ "readOnly": true, "type": "string", "description": "The state of the server.", - "enum": ["Ready", "Disabled"], + "enum": [ + "Ready", + "Disabled" + ], "x-ms-enum": { - "name": "ServerState" + "name": "ServerState" } } }, @@ -310,12 +338,12 @@ }, "ServerUpdate": { "properties": { - "tags":{ - "type":"object", - "additionalProperties":{ - "type":"string" + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" }, - "description":"Resource tags." + "description": "Resource tags." }, "properties": { "$ref": "#/definitions/ServerProperties", @@ -340,7 +368,9 @@ "description": "The list of servers." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a get server request." } }, @@ -374,4 +404,3 @@ } } } - diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serviceObjectives.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serviceObjectives.json index 7c091d8d1b9c..e1d158ac109f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serviceObjectives.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/serviceObjectives.json @@ -16,15 +16,17 @@ "application/json" ], "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives/{serviceObjectiveName}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives/{serviceObjectiveName}": { "get": { "tags": [ "ServiceObjectives" ], "operationId": "ServiceObjectives_Get", "description": "Gets a database service objective.", - "x-ms-examples":{ - "Get a service objective": { "$ref": "./examples/ServiceObjectiveGet.json" } + "x-ms-examples": { + "Get a service objective": { + "$ref": "./examples/ServiceObjectiveGet.json" + } }, "parameters": [ { @@ -64,8 +66,10 @@ ], "operationId": "ServiceObjectives_ListByServer", "description": "Returns database service objectives.", - "x-ms-examples":{ - "List service objectives": { "$ref": "./examples/ServiceObjectiveList.json" } + "x-ms-examples": { + "List service objectives": { + "$ref": "./examples/ServiceObjectiveList.json" + } }, "parameters": [ { @@ -154,7 +158,9 @@ "description": "The list of database service objectives." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a get database service objectives request." } }, diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/sql.core.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/sql.core.json index 158c3b44e95c..e8d19a325420 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/sql.core.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/sql.core.json @@ -23,8 +23,10 @@ ], "operationId": "ElasticPoolActivities_ListByElasticPool", "description": "Returns elastic pool activities.", - "x-ms-examples":{ - "List Elastic pool activity": { "$ref": "./examples/ElasticPoolActivityList.json" } + "x-ms-examples": { + "List Elastic pool activity": { + "$ref": "./examples/ElasticPoolActivityList.json" + } }, "parameters": [ { @@ -67,8 +69,10 @@ ], "operationId": "ElasticPoolDatabaseActivities_ListByElasticPool", "description": "Returns activity on databases inside of an elastic pool.", - "x-ms-examples":{ - "List elastic pool database activity": { "$ref": "./examples/ElasticPoolDatabaseActivityList.json" } + "x-ms-examples": { + "List elastic pool database activity": { + "$ref": "./examples/ElasticPoolDatabaseActivityList.json" + } }, "parameters": [ { @@ -112,7 +116,9 @@ "operationId": "ServiceTierAdvisors_Get", "description": "Gets a service tier advisor.", "x-ms-examples": { - "Get a service tier advisor": { "$ref": "./examples/ServiceTierAdvisorGet.json" } + "Get a service tier advisor": { + "$ref": "./examples/ServiceTierAdvisorGet.json" + } }, "parameters": [ { @@ -160,7 +166,9 @@ "operationId": "ServiceTierAdvisors_ListByDatabase", "description": "Returns service tier advisors for specified database.", "x-ms-examples": { - "Get a list of a service tier advisors": { "$ref": "./examples/ServiceTierAdvisorList.json" } + "Get a list of a service tier advisors": { + "$ref": "./examples/ServiceTierAdvisorList.json" + } }, "parameters": [ { @@ -204,7 +212,9 @@ "operationId": "TransparentDataEncryptions_CreateOrUpdate", "description": "Creates or updates a database's transparent data encryption configuration.", "x-ms-examples": { - "Create or update a database's transparent data encryption configuration": { "$ref": "./examples/DatabaseTransparentDataEncryptionCreateOrUpdate.json" } + "Create or update a database's transparent data encryption configuration": { + "$ref": "./examples/DatabaseTransparentDataEncryptionCreateOrUpdate.json" + } }, "parameters": [ { @@ -261,7 +271,9 @@ "operationId": "TransparentDataEncryptions_Get", "description": "Gets a database's transparent data encryption configuration.", "x-ms-examples": { - "Get a database's transparent data encryption configuration": { "$ref": "./examples/DatabaseTransparentDataEncryptionGet.json" } + "Get a database's transparent data encryption configuration": { + "$ref": "./examples/DatabaseTransparentDataEncryptionGet.json" + } }, "parameters": [ { @@ -305,7 +317,9 @@ "operationId": "TransparentDataEncryptionActivities_ListByConfiguration", "description": "Returns a database's transparent data encryption operation result.", "x-ms-examples": { - "List a database's transparent data encryption activities": { "$ref": "./examples/DatabaseTransparentDataEncryptionActivityList.json" } + "List a database's transparent data encryption activities": { + "$ref": "./examples/DatabaseTransparentDataEncryptionActivityList.json" + } }, "parameters": [ { @@ -468,13 +482,13 @@ }, "ElasticPoolActivity": { "properties": { - "location":{ - "type":"string", - "x-ms-mutability":[ + "location": { + "type": "string", + "x-ms-mutability": [ "read", "create" ], - "description":"The geo-location where the resource lives" + "description": "The geo-location where the resource lives" }, "properties": { "$ref": "#/definitions/ElasticPoolActivityProperties", @@ -499,7 +513,9 @@ "description": "The list of elastic pool activities." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a list elastic pool activity request." }, "ElasticPoolDatabaseActivityProperties": { @@ -591,13 +607,13 @@ }, "ElasticPoolDatabaseActivity": { "properties": { - "location":{ - "type":"string", - "x-ms-mutability":[ + "location": { + "type": "string", + "x-ms-mutability": [ "read", "create" ], - "description":"The geo-location where the resource lives" + "description": "The geo-location where the resource lives" }, "properties": { "$ref": "#/definitions/ElasticPoolDatabaseActivityProperties", @@ -622,7 +638,9 @@ "description": "The list of elastic pool database activities." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a list elastic pool database activity request." }, "RecommendedIndexProperties": { @@ -637,7 +655,7 @@ ], "description": "The proposed index action. You can create a missing index, drop an unused index, or rebuild an existing index to improve its performance.", "x-ms-enum": { - "name": "RecommendedIndexAction" + "name": "RecommendedIndexAction" } }, "state": { @@ -658,7 +676,7 @@ "type": "string", "description": "The current recommendation state.", "x-ms-enum": { - "name": "RecommendedIndexState" + "name": "RecommendedIndexState" } }, "created": { @@ -684,7 +702,7 @@ "type": "string", "description": "The type of index (CLUSTERED, NONCLUSTERED, COLUMNSTORE, CLUSTERED COLUMNSTORE)", "x-ms-enum": { - "name": "RecommendedIndexType" + "name": "RecommendedIndexType" } }, "schema": { @@ -772,9 +790,9 @@ "TransparentDataEncryption": { "properties": { "location": { - "type":"string", + "type": "string", "readOnly": true, - "description":"Resource location." + "description": "Resource location." }, "properties": { "x-ms-client-flatten": true, @@ -993,10 +1011,10 @@ "DS1500", "DS2000", "ElasticPool" - ], + ], "x-ms-enum": { - "modelAsString": true, - "name": "ServiceObjectiveName" + "modelAsString": true, + "name": "ServiceObjectiveName" }, "readOnly": true }, @@ -1054,7 +1072,9 @@ "description": "The list of service tier advisors for specified database." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a list service tier advisor request." }, "TransparentDataEncryptionActivityProperties": { @@ -1083,10 +1103,10 @@ }, "TransparentDataEncryptionActivity": { "properties": { - "location":{ - "type":"string", + "location": { + "type": "string", "readOnly": true, - "description":"Resource location." + "description": "Resource location." }, "properties": { "x-ms-client-flatten": true, @@ -1111,7 +1131,9 @@ "description": "The list of database transparent data encryption activities." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a list database transparent data encryption activity request." } }, @@ -1137,9 +1159,11 @@ "in": "path", "required": true, "type": "string", - "enum": ["current"], + "enum": [ + "current" + ], "description": "The name of the transparent data encryption configuration.", - "x-ms-enum":{ + "x-ms-enum": { "modelAsString": true, "name": "TransparentDataEncryptionName" }, @@ -1158,4 +1182,3 @@ } } } - diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/tableAuditing.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/tableAuditing.json index bf0bc4b3382e..0e55fd776be8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/tableAuditing.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/tableAuditing.json @@ -25,7 +25,9 @@ "deprecated": true, "operationId": "ServerTableAuditingPolicies_Get", "x-ms-examples": { - "Get server table auditing policy": { "$ref": "./examples/ServerTableAuditingPolicyGet.json" } + "Get server table auditing policy": { + "$ref": "./examples/ServerTableAuditingPolicyGet.json" + } }, "parameters": [ { @@ -61,7 +63,9 @@ "deprecated": true, "operationId": "ServerTableAuditingPolicies_CreateOrUpdate", "x-ms-examples": { - "Create or update server table auditing policy": { "$ref": "./examples/ServerTableAuditingPolicyCreateOrUpdate.json" } + "Create or update server table auditing policy": { + "$ref": "./examples/ServerTableAuditingPolicyCreateOrUpdate.json" + } }, "parameters": [ { @@ -114,7 +118,9 @@ "deprecated": true, "operationId": "ServerTableAuditingPolicies_ListByServer", "x-ms-examples": { - "List server table auditing policy": { "$ref": "./examples/ServerTableAuditingPolicyList.json" } + "List server table auditing policy": { + "$ref": "./examples/ServerTableAuditingPolicyList.json" + } }, "parameters": [ { @@ -149,7 +155,9 @@ "deprecated": true, "operationId": "DatabaseTableAuditingPolicies_Get", "x-ms-examples": { - "Get database table auditing policy": { "$ref": "./examples/DatabaseTableAuditingPolicyGet.json" } + "Get database table auditing policy": { + "$ref": "./examples/DatabaseTableAuditingPolicyGet.json" + } }, "parameters": [ { @@ -192,7 +200,9 @@ "deprecated": true, "operationId": "DatabaseTableAuditingPolicies_CreateOrUpdate", "x-ms-examples": { - "Create or update database table auditing policy": { "$ref": "./examples/DatabaseTableAuditingPolicyCreateOrUpdate.json" } + "Create or update database table auditing policy": { + "$ref": "./examples/DatabaseTableAuditingPolicyCreateOrUpdate.json" + } }, "parameters": [ { @@ -252,7 +262,9 @@ "deprecated": true, "operationId": "DatabaseTableAuditingPolicies_ListByDatabase", "x-ms-examples": { - "Get database table auditing policy": { "$ref": "./examples/DatabaseTableAuditingPolicyGet.json" } + "Get database table auditing policy": { + "$ref": "./examples/DatabaseTableAuditingPolicyGet.json" + } }, "parameters": [ { @@ -294,7 +306,9 @@ "deprecated": true, "operationId": "DatabaseConnectionPolicies_Get", "x-ms-examples": { - "Get database table auditing policy": { "$ref": "./examples/DatabaseConnectionPolicyGet.json" } + "Get database table auditing policy": { + "$ref": "./examples/DatabaseConnectionPolicyGet.json" + } }, "parameters": [ { @@ -337,7 +351,9 @@ "deprecated": true, "operationId": "DatabaseConnectionPolicies_CreateOrUpdate", "x-ms-examples": { - "Create or update database connection policy": { "$ref": "./examples/DatabaseConnectionPolicyCreateOrUpdate.json" } + "Create or update database connection policy": { + "$ref": "./examples/DatabaseConnectionPolicyCreateOrUpdate.json" + } }, "parameters": [ { @@ -443,7 +459,7 @@ }, "DatabaseTableAuditingPolicyProperties": { "description": "Properties of a database table auditing policy.", - "properties":{ + "properties": { "useServerDefault": { "description": "Whether server default is enabled or disabled.", "type": "string" @@ -511,10 +527,10 @@ "type": "string", "readOnly": true }, - "location":{ - "type":"string", + "location": { + "type": "string", "readOnly": true, - "description":"Resource location." + "description": "Resource location." }, "properties": { "$ref": "#/definitions/DatabaseConnectionPolicyProperties", @@ -537,10 +553,10 @@ "type": "string", "readOnly": true }, - "location":{ - "type":"string", + "location": { + "type": "string", "readOnly": true, - "description":"Resource location." + "description": "Resource location." }, "properties": { "$ref": "#/definitions/DatabaseTableAuditingPolicyProperties", @@ -563,10 +579,10 @@ "type": "string", "readOnly": true }, - "location":{ - "type":"string", + "location": { + "type": "string", "readOnly": true, - "description":"Resource location." + "description": "Resource location." }, "properties": { "$ref": "#/definitions/ServerTableAuditingPolicyProperties", @@ -585,7 +601,9 @@ "description": "The list of database table auditing policies." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a list database table auditing policies request." }, "ServerTableAuditingPolicyListResult": { @@ -598,7 +616,9 @@ "description": "The list of server table auditing policies." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a list server table auditing policies request." } }, @@ -661,4 +681,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/usages.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/usages.json index 45cb444a751a..ec91f5abd6d8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/usages.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/usages.json @@ -16,15 +16,17 @@ "application/json" ], "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/usages": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/usages": { "get": { "tags": [ "Servers" ], "operationId": "ServerUsages_ListByServer", "description": "Returns server usages.", - "x-ms-examples":{ - "List servers usages": { "$ref": "./examples/ServerUsageMetricsList.json" } + "x-ms-examples": { + "List servers usages": { + "$ref": "./examples/ServerUsageMetricsList.json" + } }, "parameters": [ { @@ -61,7 +63,9 @@ "operationId": "DatabaseUsages_ListByDatabase", "description": "Returns database usages.", "x-ms-examples": { - "List database usage metrics": { "$ref": "./examples/DatabaseUsageMetricsList.json" } + "List database usage metrics": { + "$ref": "./examples/DatabaseUsageMetricsList.json" + } }, "parameters": [ { @@ -152,7 +156,9 @@ "description": "The list of server metrics for the server." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "Represents the response to a list server metrics request." }, "DatabaseUsage": { @@ -208,7 +214,9 @@ "description": "The list of database usages for the database." } }, - "required": ["value"], + "required": [ + "value" + ], "description": "The response to a list database metrics request." } }, diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json index 5326358b5bbe..265f8a349f74 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json @@ -548,4 +548,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/LocationCapabilityListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/LocationCapabilityListByLocation.json index b6a941e0310c..cacab8b2e541 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/LocationCapabilityListByLocation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/LocationCapabilityListByLocation.json @@ -10,17716 +10,17716 @@ "name": "East US 2 EUAP", "status": "Available", "supportedServerVersions": [ - { + { "name": "12.0", "supportedEditions": [ - { + { "name": "System", "supportedServiceLevelObjectives": [ - { + { "id": "26e021db-f1f9-4c98-84c6-92af8ef433d7", "name": "System", "supportedMaxSizes": [ - { + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - } + } ], "performanceLevel": { - "value": 0, - "unit": "DTU" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "limit": 30720, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "id": "29dd7459-4a7c-4e56-be22-f0adda49440d", "name": "System0", "supportedMaxSizes": [ - { + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - } + } ], "performanceLevel": { - "value": 0, - "unit": "DTU" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "limit": 30720, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "id": "c99ac918-dbea-463f-a475-16ec020fdc12", "name": "System1", "supportedMaxSizes": [ - { + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - } + } ], "performanceLevel": { - "value": 0, - "unit": "DTU" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "limit": 30720, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "id": "620323bf-2879-4807-b30d-c2e6d7b3b3aa", "name": "System2", "supportedMaxSizes": [ - { + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - } + } ], "performanceLevel": { - "value": 0, - "unit": "DTU" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "limit": 30720, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "id": "33d0db1f-6893-4210-99f9-463fb9b496a4", "name": "System3", "supportedMaxSizes": [ - { + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - } + } ], "performanceLevel": { - "value": 0, - "unit": "DTU" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "limit": 30720, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "id": "da24338c-a6c9-46c2-a4bf-4ac95b496ae4", "name": "System4", "supportedMaxSizes": [ - { + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - } + } ], "performanceLevel": { - "value": 0, - "unit": "DTU" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "limit": 30720, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "id": "53f7fa1b-b0d0-43d6-bc29-c5f059fb36e9", "name": "System2L", "supportedMaxSizes": [ - { + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - } + } ], "performanceLevel": { - "value": 0, - "unit": "DTU" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "limit": 30720, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "id": "e79cd55c-689f-48d9-bffa-0dd12c772248", "name": "System3L", "supportedMaxSizes": [ - { + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - } + } ], "performanceLevel": { - "value": 0, - "unit": "DTU" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "limit": 30720, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "id": "4b37bb6d-e004-47ac-8f7a-be56ac9fb490", "name": "System4L", "supportedMaxSizes": [ - { + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - } + } ], "performanceLevel": { - "value": 0, - "unit": "DTU" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "limit": 30720, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - } + } ], "status": "Visible", "reason": "'System' is not a valid database edition in this version of SQL Server." - }, - { + }, + { "name": "Free", "supportedServiceLevelObjectives": [ - { + { "id": "6aa3bb3e-7f50-40d6-95ef-5497c30d99d8", "name": "Free", "supportedMaxSizes": [ - { + { "limit": 32, "unit": "Megabytes", "status": "Default" - } + } ], "performanceLevel": { - "value": 5, - "unit": "DTU" + "value": 5, + "unit": "DTU" }, "includedMaxSize": { - "limit": 32, - "unit": "Megabytes", - "status": "Available" + "limit": 32, + "unit": "Megabytes", + "status": "Available" }, "status": "Default" - } + } ], "status": "Available" - }, - { + }, + { "name": "Basic", "supportedServiceLevelObjectives": [ - { + { "id": "dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", "name": "Basic", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Default" - } + } ], "performanceLevel": { - "value": 5, - "unit": "DTU" + "value": 5, + "unit": "DTU" }, "includedMaxSize": { - "limit": 2048, - "unit": "Megabytes", - "status": "Available" + "limit": 2048, + "unit": "Megabytes", + "status": "Available" }, "status": "Default" - } + } ], "status": "Available" - }, - { + }, + { "name": "Standard", "supportedServiceLevelObjectives": [ - { + { "id": "f1173c43-91bd-4aaa-973c-54e79e15235b", "name": "S0", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Default" - } + } ], "performanceLevel": { - "value": 10, - "unit": "DTU" + "value": 10, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "status": "Default" - }, - { + }, + { "id": "1b1ebd4d-d903-4baa-97f9-4ea675f5e928", "name": "S1", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Default" - } + } ], "performanceLevel": { - "value": 20, - "unit": "DTU" + "value": 20, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "status": "Available" - }, - { + }, + { "id": "455330e1-00cd-488b-b5fa-177c226f28b7", "name": "S2", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Default" - } + } ], "performanceLevel": { - "value": 50, - "unit": "DTU" + "value": 50, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "status": "Available" - }, - { + }, + { "id": "789681b8-ca10-4eb0-bdf2-e0b050601b40", "name": "S3", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Default" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Available" - } + } ], "performanceLevel": { - "value": 100, - "unit": "DTU" + "value": 100, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "status": "Available" - }, - { + }, + { "id": "3cf14e1a-0a5d-408c-bbc7-f63c5282f735", "name": "S4", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 200, - "unit": "DTU" + "value": 200, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "ab69b4e3-d7cc-4aa5-87a6-f8b50615a03c", "name": "S6", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 400, - "unit": "DTU" + "value": 400, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "b6ca0894-d2f0-4e40-99f5-0f8a93cc2437", "name": "S7", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 800, - "unit": "DTU" + "value": 800, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "0efa88e9-99ff-4e36-a148-8c4b20c0826c", "name": "S9", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 1600, - "unit": "DTU" + "value": 1600, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "98100e8b-2f8a-4a81-9eb5-4d1e675c5a29", "name": "S12", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 3000, - "unit": "DTU" + "value": 3000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Default" - }, - { + }, + { "name": "Premium", "supportedServiceLevelObjectives": [ - { + { "id": "7203483a-c4fb-4304-9e9f-17c71c904f5d", "name": "P1", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 125, - "unit": "DTU" + "value": 125, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "limit": 512000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0", "name": "P2", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 250, - "unit": "DTU" + "value": 250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "limit": 512000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc", "name": "P4", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 500, - "unit": "DTU" + "value": 500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "limit": 512000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "43940481-9191-475a-9dba-6b505615b9aa", "name": "P6", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 1000, - "unit": "DTU" + "value": 1000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "limit": 512000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "dd00d544-bbc0-4f61-ba60-cdce0c410288", "name": "P11", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 1750, - "unit": "DTU" + "value": 1750, + "unit": "DTU" }, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "5bc86cca-9a96-4a94-90ef-bbdfcfbf2d71", "name": "P15", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 4000, - "unit": "DTU" + "value": 4000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "name": "PremiumRS", "supportedServiceLevelObjectives": [ - { + { "id": "dfdc102c-ed02-4349-9756-e227f0e43bb8", "name": "PRS1", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 125, - "unit": "DTU" + "value": 125, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "limit": 512000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "a089506e-b47a-4f42-8a32-cc19af4c86fb", "name": "PRS2", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 250, - "unit": "DTU" + "value": 250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "limit": 512000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "39cb8faf-cba8-4b1b-b580-1e1202f2a024", "name": "PRS4", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 500, - "unit": "DTU" + "value": 500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "limit": 512000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "1e8da92e-efcd-4682-9140-bf6582120d1f", "name": "PRS6", "supportedMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 1000, - "unit": "DTU" + "value": 1000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "limit": 512000, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "name": "DataWarehouse", "supportedServiceLevelObjectives": [ - { + { "id": "4e63cb0e-91b9-46fd-b05c-51fdd2367618", "name": "DW100", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Default" - } + } ], "performanceLevel": { - "value": 750, - "unit": "DTU" + "value": 750, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Default" - }, - { + }, + { "id": "99e78a92-d724-4e1b-857b-2be661f3d153", "name": "DW200", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Default" - } + } ], "performanceLevel": { - "value": 1500, - "unit": "DTU" + "value": 1500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Available" - }, - { + }, + { "id": "284f1aff-fee7-4d3b-a211-5b8ebdd28fea", "name": "DW300", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Default" - } + } ], "performanceLevel": { - "value": 2250, - "unit": "DTU" + "value": 2250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Available" - }, - { + }, + { "id": "3bdaeefe-8a9d-41d3-91c4-46ef896b19af", "name": "DW400", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Default" - } + } ], "performanceLevel": { - "value": 3000, - "unit": "DTU" + "value": 3000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Available" - }, - { + }, + { "id": "5f759b78-8ec0-4dfb-97cc-c1455a3b5b4d", "name": "DW500", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 3750, - "unit": "DTU" + "value": 3750, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "efd65c5b-af7b-4389-9109-f6a69d6a3885", "name": "DW600", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 4500, - "unit": "DTU" + "value": 4500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "b89b9c6a-4ec2-4eb8-99db-6d2807e6aabb", "name": "DW1000", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 7500, - "unit": "DTU" + "value": 7500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "9a7a374e-b95c-4fd5-a68e-131d60796c47", "name": "DW1200", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 9000, - "unit": "DTU" + "value": 9000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "b930f58e-86b5-43e0-a2da-d8bf8769c557", "name": "DW1500", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 11250, - "unit": "DTU" + "value": 11250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "99165ede-a5ab-4b52-b317-e391d92ec370", "name": "DW2000", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 15000, - "unit": "DTU" + "value": 15000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "8e28c923-5cf2-43cb-bd25-28c8c69b30ff", "name": "DW3000", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 22500, - "unit": "DTU" + "value": 22500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "87835a29-f934-4b57-b40a-4224aec6f207", "name": "DW9000", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 22500, - "unit": "DTU" + "value": 22500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "ee1df062-4f3c-42ad-91bf-58b2a7c351e4", "name": "DW6000", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 45000, - "unit": "DTU" + "value": 45000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "20a07e2c-fd93-4c65-886e-c9bb9f6df331", "name": "DW18000", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 45000, - "unit": "DTU" + "value": 45000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Available" - }, - { + }, + { "name": "Stretch", "supportedServiceLevelObjectives": [ - { + { "id": "9cfc850f-d57f-4760-b5a6-bb640d268bf0", "name": "DS100", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 750, - "unit": "DTU" + "value": 750, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "053407ef-f01c-46f4-b829-96e01a14f449", "name": "DS200", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 1500, - "unit": "DTU" + "value": 1500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "013a9e10-cafc-45a8-8fcf-93095655d2ce", "name": "DS300", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 2250, - "unit": "DTU" + "value": 2250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "79f61db4-8c10-46ba-a93a-d7d02dddd61c", "name": "DS400", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 3000, - "unit": "DTU" + "value": 3000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "44eaac33-df00-4ef4-a2bb-f7ff87899eea", "name": "DS500", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 3750, - "unit": "DTU" + "value": 3750, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "f8e0f3a6-888b-459c-a9dd-d74d8b2b0e72", "name": "DS600", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 4500, - "unit": "DTU" + "value": 4500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "b9ed8f51-a414-42dc-8348-e4a1de25e12b", "name": "DS1000", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 7500, - "unit": "DTU" + "value": 7500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "07479569-6d70-47a5-8db6-0af55d34f2c1", "name": "DS1200", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 9000, - "unit": "DTU" + "value": 9000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "2d79baec-2879-46d5-9f5d-fb70eb004c4e", "name": "DS1500", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 11250, - "unit": "DTU" + "value": 11250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "id": "7fb5389f-6d15-4e0b-9540-fe5ecdfdbeee", "name": "DS2000", "supportedMaxSizes": [ - { + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5120, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10240, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20480, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30720, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40960, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 51200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 61440, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 71680, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 81920, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 92160, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 245760, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "performanceLevel": { - "value": 15000, - "unit": "DTU" + "value": 15000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" }, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedElasticPoolEditions": [ - { + { "name": "Standard", "supportedElasticPoolDtus": [ - { + { "limit": 50, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 51200, - "unit": "Megabytes", - "status": "Available" + "limit": 51200, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Default" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Available" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Default" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Available" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Default" - }, - { + }, + { "limit": 10, "status": "Available" - } + } ], "status": "Available" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Default" - }, - { + }, + { "limit": 10, "status": "Available" - }, - { + }, + { "limit": 20, "status": "Available" - } + } ], "status": "Available" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Default" - }, - { + }, + { "limit": 10, "status": "Available" - }, - { + }, + { "limit": 20, "status": "Available" - }, - { + }, + { "limit": 50, "status": "Available" - } + } ], "status": "Default" - } + } ], "status": "Available" - }, - { + }, + { "limit": 100, "maxDatabaseCount": 200, "includedMaxSize": { - "limit": 102400, - "unit": "Megabytes", - "status": "Available" + "limit": 102400, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Default" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Available" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Default" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Available" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Default" - }, - { + }, + { "limit": 10, "status": "Available" - } + } ], "status": "Available" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Default" - }, - { + }, + { "limit": 10, "status": "Available" - }, - { + }, + { "limit": 20, "status": "Available" - } + } ], "status": "Available" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Default" - }, - { + }, + { "limit": 10, "status": "Available" - }, - { + }, + { "limit": 20, "status": "Available" - }, - { + }, + { "limit": 50, "status": "Available" - } + } ], "status": "Available" - }, - { + }, + { "limit": 100, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Default" - }, - { + }, + { "limit": 10, "status": "Available" - }, - { + }, + { "limit": 20, "status": "Available" - }, - { + }, + { "limit": 50, "status": "Available" - }, - { + }, + { "limit": 100, "status": "Available" - } + } ], "status": "Default" - } + } ], "status": "Default" - }, - { + }, + { "limit": 200, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 204800, - "unit": "Megabytes", - "status": "Available" + "limit": 204800, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 307200, - "unit": "Megabytes", - "status": "Available" + "limit": 307200, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1228800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1310720, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 409600, - "unit": "Megabytes", - "status": "Available" + "limit": 409600, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1228800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1310720, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1572864, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 819200, - "unit": "Megabytes", - "status": "Available" + "limit": 819200, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1228800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1310720, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1572864, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1638400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1835008, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2048000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2097152, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 1228800, - "unit": "Megabytes", - "status": "Available" + "limit": 1228800, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1228800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1310720, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1572864, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1638400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1835008, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2048000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2097152, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2359296, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2560000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2621440, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 1638400, - "unit": "Megabytes", - "status": "Available" + "limit": 1638400, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1228800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1310720, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1572864, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1638400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1835008, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2048000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2097152, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2359296, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2560000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2621440, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2883584, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3072000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3145728, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 2048000, - "unit": "Megabytes", - "status": "Available" + "limit": 2048000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1228800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1310720, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1572864, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1638400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1835008, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2048000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2097152, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2359296, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2560000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2621440, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2883584, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3072000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3145728, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3407872, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3670016, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2500, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 2560000, - "unit": "Megabytes", - "status": "Available" + "limit": 2560000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1228800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1310720, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1572864, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1638400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1835008, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2048000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2097152, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2359296, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2560000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2621440, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2883584, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3072000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3145728, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3407872, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3670016, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3932160, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 4194304, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3000, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 3072000, - "unit": "Megabytes", - "status": "Available" + "limit": 3072000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1228800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1310720, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1572864, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1638400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1835008, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2048000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2097152, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2359296, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2560000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2621440, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2883584, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3072000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3145728, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3407872, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3670016, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3932160, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 4194304, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 10, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Default" - }, - { + }, + { "name": "Premium", "supportedElasticPoolDtus": [ - { + { "limit": 125, "maxDatabaseCount": 50, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "limit": 512000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 768000, - "unit": "Megabytes", - "status": "Available" + "limit": 768000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1500, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2000, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2500, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3000, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 3500, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 4000, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 4000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1750, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 4000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "name": "Basic", "supportedElasticPoolDtus": [ - { + { "limit": 50, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 5000, - "unit": "Megabytes", - "status": "Available" + "limit": 5000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 5000, "unit": "Megabytes", "status": "Default" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Default" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 5, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Default" - }, - { + }, + { "limit": 5, "status": "Available" - } + } ], "status": "Default" - } + } ], "status": "Default" - }, - { + }, + { "limit": 100, "maxDatabaseCount": 200, "includedMaxSize": { - "limit": 10000, - "unit": "Megabytes", - "status": "Available" + "limit": 10000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 10000, "unit": "Megabytes", "status": "Default" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Available" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Available" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Default" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 5, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Default" - }, - { + }, + { "limit": 5, "status": "Available" - } + } ], "status": "Default" - } + } ], "status": "Available" - }, - { + }, + { "limit": 200, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 20000, - "unit": "Megabytes", - "status": "Available" + "limit": 20000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 20000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 5, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 30000, - "unit": "Megabytes", - "status": "Available" + "limit": 30000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 30000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 5, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 40000, - "unit": "Megabytes", - "status": "Available" + "limit": 40000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 40000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 5, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 800, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 80000, - "unit": "Megabytes", - "status": "Available" + "limit": 80000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 80000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 5, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1200, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 120000, - "unit": "Megabytes", - "status": "Available" + "limit": 120000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 120000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 5, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1600, "maxDatabaseCount": 500, "includedMaxSize": { - "limit": 160000, - "unit": "Megabytes", - "status": "Available" + "limit": 160000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 160000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 5, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Available" - }, - { + }, + { "name": "PremiumRS", "supportedElasticPoolDtus": [ - { + { "limit": 125, "maxDatabaseCount": 50, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "limit": 256000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "limit": 512000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 768000, - "unit": "Megabytes", - "status": "Available" + "limit": 768000, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "maxDatabaseCount": 100, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" }, "supportedMaxSizes": [ - { + { "limit": 51200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 102400, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 153600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 204800, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 256000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 307200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 409600, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 512000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 768000, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 819200, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1048576, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxSizes": [ - { + { "limit": 100, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Megabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 2, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 5, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 10, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 20, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 30, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 40, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 100, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 150, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 200, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 300, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 400, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 750, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1024, "unit": "Gigabytes", "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "supportedPerDatabaseMaxDtus": [ - { + { "limit": 25, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "supportedPerDatabaseMinDtus": [ - { + { "limit": 0, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 25, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 50, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 75, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 125, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 250, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 500, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - }, - { + }, + { "limit": 1000, "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Visible", "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" - } + } ], "status": "Default" - } + } ] - } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/SubscriptionUsageGet.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/SubscriptionUsageGet.json index 087d030032e5..e5a91cbee0bf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/SubscriptionUsageGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/SubscriptionUsageGet.json @@ -1,30 +1,23 @@ { - "parameters": - { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "WestUS", - "usageName": "ServerQuota", - "api-version": "2015-05-01" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "WestUS", + "usageName": "ServerQuota", + "api-version": "2015-05-01" + }, + "responses": { + "200": { + "body": { + "properties": { + "displayName": "Regional Server Quota for West US", + "currentValue": 1.0, + "limit": 20.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", + "name": "ServerQuota", + "type": "Microsoft.Sql/locations/usages" + } } - , - "responses": - { - "200": - { - "body": - { - "properties": - { - "displayName": "Regional Server Quota for West US", - "currentValue": 1.0, - "limit": 20.0, - "unit": "Count" - } - , - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", - "name": "ServerQuota", - "type": "Microsoft.Sql/locations/usages" - } - } - } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/SubscriptionUsageListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/SubscriptionUsageListByLocation.json index 88a778ecc534..b04f85d4874f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/SubscriptionUsageListByLocation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/examples/SubscriptionUsageListByLocation.json @@ -1,44 +1,48 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "WestUS", - "api-version": "2015-05-01" - }, - "responses": { - "200": { - "body": { - "value": [{ - "properties": { - "displayName": "Regional Server Quota for West US", - "currentValue": 1.0, - "limit": 20.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", - "name": "ServerQuota", - "type": "Microsoft.Sql/locations/usages" - }, { - "properties": { - "displayName": "Free Database Count per Subscription for West US", - "currentValue": 0.0, - "limit": 1.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseCount", - "name": "SubscriptionFreeDatabaseCount", - "type": "Microsoft.Sql/locations/usages" - }, { - "properties": { - "displayName": "Free to Basic Database Upgrade count-down in West US", - "currentValue": 365.0, - "limit": 365.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseDaysLeft", - "name": "SubscriptionFreeDatabaseDaysLeft", - "type": "Microsoft.Sql/locations/usages" - }] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "WestUS", + "api-version": "2015-05-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "displayName": "Regional Server Quota for West US", + "currentValue": 1.0, + "limit": 20.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", + "name": "ServerQuota", + "type": "Microsoft.Sql/locations/usages" + }, + { + "properties": { + "displayName": "Free Database Count per Subscription for West US", + "currentValue": 0.0, + "limit": 1.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseCount", + "name": "SubscriptionFreeDatabaseCount", + "type": "Microsoft.Sql/locations/usages" + }, + { + "properties": { + "displayName": "Free to Basic Database Upgrade count-down in West US", + "currentValue": 365.0, + "limit": 365.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseDaysLeft", + "name": "SubscriptionFreeDatabaseDaysLeft", + "type": "Microsoft.Sql/locations/usages" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json index 2cded2b4cee1..03ce7493d5a4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json @@ -257,4 +257,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/common/v1/types.json b/specification/sql/resource-manager/common/v1/types.json index fae061037f0f..61912dda86a3 100644 --- a/specification/sql/resource-manager/common/v1/types.json +++ b/specification/sql/resource-manager/common/v1/types.json @@ -1,159 +1,155 @@ { - "swagger":"2.0", - "info":{ - "version":"1.0", - "title":"Common types" + "swagger": "2.0", + "info": { + "version": "1.0", + "title": "Common types" + }, + "paths": {}, + "definitions": { + "Resource": { + "description": "ARM resource.", + "type": "object", + "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 + } + }, + "x-ms-azure-resource": true }, - "paths":{ - + "ProxyResource": { + "description": "ARM proxy resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": {} }, - "definitions":{ - "Resource":{ - "description":"ARM resource.", - "type":"object", - "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 - } - }, - "x-ms-azure-resource":true - }, - "ProxyResource":{ - "description":"ARM proxy resource.", - "type":"object", - "allOf":[ - { - "$ref":"#/definitions/Resource" - } - ], - "properties":{ - - } - }, - "TrackedResource":{ - "description":"ARM tracked top level resource.", - "required":[ - "location" - ], - "type":"object", - "allOf":[ - { - "$ref":"#/definitions/Resource" - } - ], - "properties":{ - "location":{ - "description":"Resource location.", - "type":"string", - "x-ms-mutability":[ - "read", - "create" - ] - }, - "tags":{ - "description":"Resource tags.", - "type":"object", - "additionalProperties":{ - "type":"string" - } - } - } - }, - "Sku":{ - "description":"The resource model definition representing SKU", - "properties":{ - "name":{ - "type":"string", - "description":"The name of the SKU. Ex - P3. It is typically a letter+number code" - }, - "tier":{ - "type":"string", - "description":"This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT." - }, - "size":{ - "type":"string", - "description":"The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. " - }, - "family":{ - "type":"string", - "description":"If the service has different generations of hardware, for the same SKU, then that can be captured here." - }, - "capacity":{ - "type":"integer", - "format":"int32", - "description":"If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted." - } - }, - "required":[ - "name" + "TrackedResource": { + "description": "ARM tracked top level resource.", + "required": [ + "location" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "location": { + "description": "Resource location.", + "type": "string", + "x-ms-mutability": [ + "read", + "create" ] - }, - "ResourceIdentity":{ - "description":"Azure Active Directory identity configuration for a resource.", - "type":"object", - "properties":{ - "principalId":{ - "format":"uuid", - "description":"The Azure Active Directory principal id.", - "type":"string", - "readOnly":true - }, - "type":{ - "description":"The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.", - "enum":[ - "SystemAssigned" - ], - "type":"string", - "x-ms-enum":{ - "name":"IdentityType", - "modelAsString":true - } - }, - "tenantId":{ - "format":"uuid", - "description":"The Azure Active Directory tenant id.", - "type":"string", - "readOnly":true - } + }, + "tags": { + "description": "Resource tags.", + "type": "object", + "additionalProperties": { + "type": "string" } - } + } + } }, - "parameters":{ - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "description": "The subscription ID that identifies an Azure subscription.", - "required": true, - "type": "string", - "x-ms-parameter-location": "client" - }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "The API version to use for the request.", - "required": true, - "type": "string", - "x-ms-parameter-location": "client" - }, - "ResourceGroupParameter": { - "name": "resourceGroupName", - "in": "path", - "description": "The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" + "Sku": { + "description": "The resource model definition representing SKU", + "properties": { + "name": { + "type": "string", + "description": "The name of the SKU. Ex - P3. It is typically a letter+number code" + }, + "tier": { + "type": "string", + "description": "This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT." + }, + "size": { + "type": "string", + "description": "The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. " + }, + "family": { + "type": "string", + "description": "If the service has different generations of hardware, for the same SKU, then that can be captured here." + }, + "capacity": { + "type": "integer", + "format": "int32", + "description": "If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted." + } + }, + "required": [ + "name" + ] + }, + "ResourceIdentity": { + "description": "Azure Active Directory identity configuration for a resource.", + "type": "object", + "properties": { + "principalId": { + "format": "uuid", + "description": "The Azure Active Directory principal id.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.", + "enum": [ + "SystemAssigned" + ], + "type": "string", + "x-ms-enum": { + "name": "IdentityType", + "modelAsString": true } + }, + "tenantId": { + "format": "uuid", + "description": "The Azure Active Directory tenant id.", + "type": "string", + "readOnly": true + } + } + } + }, + "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "description": "The subscription ID that identifies an Azure subscription.", + "required": true, + "type": "string", + "x-ms-parameter-location": "client" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "description": "The API version to use for the request.", + "required": true, + "type": "string", + "x-ms-parameter-location": "client" + }, + "ResourceGroupParameter": { + "name": "resourceGroupName", + "in": "path", + "description": "The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" } - } \ No newline at end of file + } +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateAvailabilityGroupListener.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateAvailabilityGroupListener.json index 86c38cfde328..4c638f5f3161 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateAvailabilityGroupListener.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateAvailabilityGroupListener.json @@ -12,11 +12,9 @@ { "privateIpAddress": { "ipAddress": "10.1.0.112", - "subnetResourceId": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default" + "subnetResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default" }, - "loadBalancerResourceId": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Network/loadBalancers/lb-test", + "loadBalancerResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Network/loadBalancers/lb-test", "probePort": 59983, "sqlVirtualMachineInstances": [ "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm2", @@ -39,8 +37,10 @@ "ipAddress": "10.1.0.113", "subnetResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default" }, - "sqlVirtualMachineInstances": [ "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm2", - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm3" ] + "sqlVirtualMachineInstances": [ + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm2", + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm3" + ] } ], "port": 1433 @@ -60,8 +60,10 @@ "ipAddress": "10.1.0.112", "subnetResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default" }, - "sqlVirtualMachineInstances": [ "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm2", - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm3" ] + "sqlVirtualMachineInstances": [ + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm2", + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm3" + ] } ], "port": 1433 @@ -72,4 +74,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineGroup.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineGroup.json index b26c38570f55..78e731cf2085 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineGroup.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineGroup.json @@ -32,12 +32,12 @@ "sqlImageOffer": "SQL2016-WS2016", "sqlImageSku": "Enterprise", "wsfcDomainProfile": { - "storageAccountUrl": "https://storgact.blob.core.windows.net/" + "storageAccountUrl": "https://storgact.blob.core.windows.net/" } }, "location": "northeurope", "tags": { - "mytag": "myval" + "mytag": "myval" }, "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/testvmgroup", "name": "testvmgroup", @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineMAX.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineMAX.json index 3e841321c08c..d1f3bcfbcbcf 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineMAX.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineMAX.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "00000000-1111-2222-3333-444444444444", "resourceGroupName": "testrg", - "sqlVirtualMachineName":"testvm", + "sqlVirtualMachineName": "testvm", "api-version": "2017-03-01-preview", "parameters": { "location": "northeurope", @@ -85,4 +85,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineMIN.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineMIN.json index b1afdafb9408..00a399207a02 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineMIN.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateSqlVirtualMachineMIN.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/DeleteAvailabilityGroupListener.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/DeleteAvailabilityGroupListener.json index 98d9c96eb0f2..d01a956adf61 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/DeleteAvailabilityGroupListener.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/DeleteAvailabilityGroupListener.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/DeleteSqlVirtualMachineGroup.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/DeleteSqlVirtualMachineGroup.json index b3d3c439e4cb..099f32e25de9 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/DeleteSqlVirtualMachineGroup.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/DeleteSqlVirtualMachineGroup.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetAvailabilityGroupListener.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetAvailabilityGroupListener.json index de85cdc4c309..0387294e25b1 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetAvailabilityGroupListener.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetAvailabilityGroupListener.json @@ -20,8 +20,10 @@ }, "loadBalancerResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Network/loadBalancers/lb-test", "probePort": 59983, - "sqlVirtualMachineInstances": [ "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm3", - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm2" ] + "sqlVirtualMachineInstances": [ + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm3", + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm2" + ] } ], "port": 1433 @@ -32,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetSqlVirtualMachine.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetSqlVirtualMachine.json index 36e4c9ee375f..1c6102a9afbe 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetSqlVirtualMachine.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetSqlVirtualMachine.json @@ -4,8 +4,7 @@ "resourceGroupName": "testrg", "sqlVirtualMachineName": "testvm", "api-version": "2017-03-01-preview", - "parameters": { - } + "parameters": {} }, "responses": { "200": { @@ -24,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetSqlVirtualMachineGroup.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetSqlVirtualMachineGroup.json index 2fc27894ba40..69897d866256 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetSqlVirtualMachineGroup.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetSqlVirtualMachineGroup.json @@ -25,11 +25,10 @@ "tags": { "mytag": "myval" }, - "id": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/testvmgroup", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/testvmgroup", "name": "testvmgroup", "type": "Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups" } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByGroupAvailabilityGroupListener.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByGroupAvailabilityGroupListener.json index b79af039a5df..a6ad2edac8d7 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByGroupAvailabilityGroupListener.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByGroupAvailabilityGroupListener.json @@ -21,8 +21,10 @@ }, "loadBalancerResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.Network/loadBalancers/lb-test", "probePort": 59983, - "sqlVirtualMachineInstances": [ "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm3", - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm2" ] + "sqlVirtualMachineInstances": [ + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm3", + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm2" + ] } ], "port": 1433 @@ -35,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByResourceGroupSqlVirtualMachine.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByResourceGroupSqlVirtualMachine.json index 6785d0d40347..03002c93aeb6 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByResourceGroupSqlVirtualMachine.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByResourceGroupSqlVirtualMachine.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByResourceGroupSqlVirtualMachineGroup.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByResourceGroupSqlVirtualMachineGroup.json index cad9a73fd09d..ef23910b8672 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByResourceGroupSqlVirtualMachineGroup.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByResourceGroupSqlVirtualMachineGroup.json @@ -24,7 +24,7 @@ }, "location": "northeurope", "tags": { - "mytag": "myval" + "mytag": "myval" }, "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/testvmgroup", "name": "testvmgroup", @@ -46,7 +46,7 @@ }, "location": "northeurope", "tags": { - "mytag": "myval" + "mytag": "myval" }, "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/testvmgroup1", "name": "testvmgroup1", @@ -68,7 +68,7 @@ }, "location": "northeurope", "tags": { - "mytag": "myval" + "mytag": "myval" }, "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/testvmgroup2", "name": "testvmgroup2", diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListOperation.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListOperation.json index 1be629af051c..3173613180d1 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListOperation.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListOperation.json @@ -65,7 +65,7 @@ { "name": "Microsoft.SqlVirtualMachine/operations/read", "display": { - "resource": "Available REST operations" + "resource": "Available REST operations" } }, { diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListSubscriptionSqlVirtualMachine.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListSubscriptionSqlVirtualMachine.json index 74eee8a07a81..bb0345512e2a 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListSubscriptionSqlVirtualMachine.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListSubscriptionSqlVirtualMachine.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/UpdateSqlVirtualMachine.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/UpdateSqlVirtualMachine.json index c50994c7c4ab..173b0e67320d 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/UpdateSqlVirtualMachine.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/UpdateSqlVirtualMachine.json @@ -21,7 +21,7 @@ }, "location": "northeurope", "tags": { - "mytag": "myval" + "mytag": "myval" }, "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/testvm", "name": "testvm", @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/UpdateSqlVirtualMachineGroup.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/UpdateSqlVirtualMachineGroup.json index b966be1feafd..e7fe53952393 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/UpdateSqlVirtualMachineGroup.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/UpdateSqlVirtualMachineGroup.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/sqlvm.json b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/sqlvm.json index 073dad36aff8..ad71c1c263ad 100644 --- a/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/sqlvm.json +++ b/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/sqlvm.json @@ -1786,4 +1786,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/StorSimple.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/StorSimple.json index 206bde7a5430..932f6b905cae 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/StorSimple.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/StorSimple.json @@ -9000,4 +9000,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsCreateOrUpdate.json index 89ec99c76313..2d061e53b8c8 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsCreateOrUpdate.json @@ -52,4 +52,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsDelete.json index b3d2eb8a0fd2..bc16eaf2aa23 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsDelete.json @@ -22,4 +22,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsGet.json index a8ee5d6f196e..125c2c5e9779 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsGet.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsListByManager.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsListByManager.json index 72bc7c71953f..b19ee7875ff9 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsListByManager.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AccessControlRecordsListByManager.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsClear.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsClear.json index cd94f47a01b4..a89870bfcfc2 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsClear.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsClear.json @@ -33,4 +33,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsListByManager.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsListByManager.json index af2dbc9ec04f..626937dbfbb7 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsListByManager.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsListByManager.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsSendTestEmail.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsSendTestEmail.json index e28e38219945..41e10692706d 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsSendTestEmail.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AlertsSendTestEmail.json @@ -34,4 +34,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AvailableProviderOperationsCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AvailableProviderOperationsCreateOrUpdate.json index 4f53fb71b836..296c84e4dfff 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AvailableProviderOperationsCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/AvailableProviderOperationsCreateOrUpdate.json @@ -10,16 +10,47 @@ "resourceTypes": [ { "resourceType": "managers", - "locations": [ "West US", "East US", "North Europe", "West Europe", "Brazil South", "East Asia", "West Central US", "Japan East", "Japan West", "Australia East", "Australia Southeast", "Southeast Asia", "East US 2 EUAP", "Central US EUAP" ], - "apiVersions": [ "2017-06-01", "2017-05-15", "2017-01-01", "2016-10-01", "2016-06-01", "2015-03-15", "2014-09-01" ] + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "West Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Southeast Asia", + "East US 2 EUAP", + "Central US EUAP" + ], + "apiVersions": [ + "2017-06-01", + "2017-05-15", + "2017-01-01", + "2016-10-01", + "2016-06-01", + "2015-03-15", + "2014-09-01" + ] }, { "resourceType": "operations", - "locations": [ "West Central US", "Southeast Asia" ], - "apiVersions": [ "2016-10-01", "2016-06-01", "2015-03-15", "2014-09-01" ] + "locations": [ + "West Central US", + "Southeast Asia" + ], + "apiVersions": [ + "2016-10-01", + "2016-06-01", + "2015-03-15", + "2014-09-01" + ] } ], "registrationState": "Registered" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsCreateOrUpdate.json index d0967df11948..c7d173b4a935 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsCreateOrUpdate.json @@ -59,4 +59,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsDelete.json index 0f5765877460..0dfb75402c8a 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsDelete.json @@ -23,4 +23,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsGet.json index 953561388a21..eb5c168af9e3 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsGet.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsListByDevice.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsListByDevice.json index 0b2d3d312932..32f6c881026d 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsListByDevice.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupScheduleGroupsListByDevice.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsClone.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsClone.json index bcf78d15670a..5aa5a38c12cc 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsClone.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsClone.json @@ -60,4 +60,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsDelete.json index e39ab87b9841..928ccb9ef2bb 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsDelete.json @@ -24,4 +24,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsListByDevice.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsListByDevice.json index a833818fef07..e47b6934d9dd 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsListByDevice.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsListByDevice.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsListByManager.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsListByManager.json index 0725551c3c3b..0abf6ab26b2d 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsListByManager.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/BackupsListByManager.json @@ -198,4 +198,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsCreateOrUpdate.json index 4da916b3c910..e2ac7d0f0763 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsCreateOrUpdate.json @@ -61,4 +61,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsDelete.json index 51d75e891be0..2a49f6b662e9 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsDelete.json @@ -25,4 +25,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsGet.json index 71404c8e92ff..c235ab22508d 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsGet.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsListByDevice.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsListByDevice.json index 6e90471b6659..44321bd52db2 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsListByDevice.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ChapSettingsListByDevice.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesCreateOrUpdateAlertSettings.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesCreateOrUpdateAlertSettings.json index 9b44d2138ffd..e8848ea7ffd7 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesCreateOrUpdateAlertSettings.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesCreateOrUpdateAlertSettings.json @@ -53,4 +53,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesCreateOrUpdateSecuritySettings.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesCreateOrUpdateSecuritySettings.json index ead3f1c0c8e2..b64d90ac61b6 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesCreateOrUpdateSecuritySettings.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesCreateOrUpdateSecuritySettings.json @@ -23,4 +23,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDeactivate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDeactivate.json index f00312413751..8f1583571bb2 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDeactivate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDeactivate.json @@ -12,4 +12,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDelete.json index f00312413751..8f1583571bb2 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDelete.json @@ -12,4 +12,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDownloadUpdates.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDownloadUpdates.json index e562f839a344..75eb768074e4 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDownloadUpdates.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesDownloadUpdates.json @@ -12,4 +12,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesFailover.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesFailover.json index 3ecaf2462088..7847602ec1dc 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesFailover.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesFailover.json @@ -23,4 +23,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGet.json index d0f8cd1b3b32..ec2576d7600f 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGet.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetAlertSettings.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetAlertSettings.json index 87f1f43ca2f1..ef25fac04e3d 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetAlertSettings.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetAlertSettings.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetNetworkSettings.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetNetworkSettings.json index 9f422c31928b..497d995bc104 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetNetworkSettings.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetNetworkSettings.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetTimeSettings.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetTimeSettings.json index 0bc5017f6ef4..0f7cb4f3acc5 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetTimeSettings.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetTimeSettings.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetUpdateSummary.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetUpdateSummary.json index 33e2163043e5..a52983ac5142 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetUpdateSummary.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesGetUpdateSummary.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesInstallUpdates.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesInstallUpdates.json index e562f839a344..75eb768074e4 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesInstallUpdates.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesInstallUpdates.json @@ -12,4 +12,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListByManager.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListByManager.json index 32418f545253..ea96b818b589 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListByManager.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListByManager.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListFailoverTarget.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListFailoverTarget.json index 2557329c6b26..2cae414c570b 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListFailoverTarget.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListFailoverTarget.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListMetricDefinition.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListMetricDefinition.json index 456676c4486a..59b89ba16818 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListMetricDefinition.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListMetricDefinition.json @@ -100,4 +100,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListMetrics.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListMetrics.json index 7b192a1a4f48..dc400c3b59de 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListMetrics.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesListMetrics.json @@ -115,4 +115,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesPatch.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesPatch.json index 82b399ad4578..4533d3cbb157 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesPatch.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesPatch.json @@ -38,4 +38,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesScanForUpdates.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesScanForUpdates.json index 69defe20536f..d3ca658cdb5b 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesScanForUpdates.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/DevicesScanForUpdates.json @@ -23,6 +23,5 @@ "204": { "body": "" } - } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersBackupNow.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersBackupNow.json index 53c48166be4b..626c6cb198b9 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersBackupNow.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersBackupNow.json @@ -23,4 +23,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersCreateOrUpdate.json index 720d0ce4d009..ca67541a5c4c 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersCreateOrUpdate.json @@ -59,4 +59,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersDelete.json index 5e34f0f32982..4d88975ec22e 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersDelete.json @@ -23,4 +23,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersGet.json index 676356d9a94a..3c420c0e3003 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersGet.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListByDevice.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListByDevice.json index f4023d48d0f0..1e8423c3beb9 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListByDevice.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListByDevice.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListByManager.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListByManager.json index dde0a2a8932e..a1f1b0e9d450 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListByManager.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListByManager.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListMetricDefinition.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListMetricDefinition.json index 204b7d0835a1..83e4f7b380d0 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListMetricDefinition.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListMetricDefinition.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListMetrics.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListMetrics.json index 86054e0c0aa1..82f203fadf9c 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListMetrics.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileServersListMetrics.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesCreateOrUpdate.json index a7ea37f539a4..934f819e383d 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesCreateOrUpdate.json @@ -66,4 +66,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesDelete.json index acf5e446c7e3..321633dbccf6 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesDelete.json @@ -24,4 +24,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesGet.json index d24e58127126..7c0ac21b2456 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesGet.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListByDevice.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListByDevice.json index 66be356ded51..38f8d832e674 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListByDevice.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListByDevice.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListByFileServer.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListByFileServer.json index 37adc061078c..6da4c0512115 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListByFileServer.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListByFileServer.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListMetricDefinition.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListMetricDefinition.json index 4da89f23934c..620874b2721d 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListMetricDefinition.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListMetricDefinition.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListMetrics.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListMetrics.json index 5714397daf15..c5bd3976d181 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListMetrics.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/FileSharesListMetrics.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksCreateOrUpdate.json index b19b29b37580..ca4db292a6e6 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksCreateOrUpdate.json @@ -66,4 +66,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksDelete.json index afb366b64ea1..e9887ffdacfb 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksDelete.json @@ -24,4 +24,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksGet.json index f484d6c6b137..e202865d807a 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksGet.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListByDevice.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListByDevice.json index 02a62d13bcd8..2e794ae7ac43 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListByDevice.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListByDevice.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListByIscsiServer.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListByIscsiServer.json index 49b08e7d58d3..f3628f9cd9e3 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListByIscsiServer.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListByIscsiServer.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListMetricDefinition.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListMetricDefinition.json index 802f773e0d12..a85e6b0974d0 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListMetricDefinition.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListMetricDefinition.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListMetrics.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListMetrics.json index 6f879c04da56..1f1e6eb647f2 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListMetrics.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiDisksListMetrics.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersBackupNow.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersBackupNow.json index 3afee190aad3..eefa7e45f1c9 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersBackupNow.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersBackupNow.json @@ -23,4 +23,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersCreateOrUpdate.json index f16a2634077d..deb51e92be5a 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersCreateOrUpdate.json @@ -61,4 +61,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersDelete.json index 2da3f10d0c9a..dbab611876b2 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersDelete.json @@ -23,4 +23,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersGet.json index 51bbd364b49b..e7713fc401e5 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersGet.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListByDevice.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListByDevice.json index 51aa95124b94..e3ba826af67d 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListByDevice.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListByDevice.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListByManager.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListByManager.json index f14cf7628514..39971933a354 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListByManager.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListByManager.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListMetricDefinition.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListMetricDefinition.json index 551f7db3f1b2..53ff60ce0e5d 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListMetricDefinition.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListMetricDefinition.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListMetrics.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListMetrics.json index 74f9e4ccbf04..a2125e9535e9 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListMetrics.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/IscsiServersListMetrics.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsGet.json index bd18c36a0d0a..afb792b5f832 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsGet.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsListByDevice.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsListByDevice.json index 4798a4979e72..be4a0a98d4a0 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsListByDevice.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsListByDevice.json @@ -217,4 +217,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsListByManager.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsListByManager.json index 1094e47d414b..c17dc3c2f9d2 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsListByManager.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/JobsListByManager.json @@ -235,4 +235,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersCreateExtendedInfo.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersCreateExtendedInfo.json index 238b95ae24b1..e20532ea32f9 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersCreateExtendedInfo.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersCreateExtendedInfo.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersCreateOrUpdate.json index ef8ec35e87de..55bb00da6304 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersCreateOrUpdate.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersDelete.json index 484431fce595..4371a7be4ca2 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersDelete.json @@ -11,4 +11,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersDeleteExtendedInfo.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersDeleteExtendedInfo.json index b602e6005358..21809246b735 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersDeleteExtendedInfo.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersDeleteExtendedInfo.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGet.json index df510a09d7a9..c1e56a2dac0c 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGet.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGetEncryptionSettings.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGetEncryptionSettings.json index f90a7a3a0032..daa6e0dbfbe5 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGetEncryptionSettings.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGetEncryptionSettings.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGetExtendedInfo.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGetExtendedInfo.json index 63b7a9b6339d..0300728c4a69 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGetExtendedInfo.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersGetExtendedInfo.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersList.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersList.json index aaf395c7ced1..e29065c13ba9 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersList.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersList.json @@ -49,8 +49,8 @@ "id": "/subscriptions/9eb689cd-7243-43b4-b6f6-5c65cb296641/resourceGroups/GroupForArmAutomation/providers/Microsoft.StorSimple/Managers/GAuTosumanths-pc10227181824221", "type": "Microsoft.StorSimple/Managers" } - ] + ] } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListByResourceGroup.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListByResourceGroup.json index 7e84da626b4b..53ba12fc2fb2 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListByResourceGroup.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListByResourceGroup.json @@ -47,4 +47,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListMetricDefinition.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListMetricDefinition.json index 44bf7f62613e..ad28714ad525 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListMetricDefinition.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListMetricDefinition.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListMetrics.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListMetrics.json index cb4ed9df45d2..9db3035a1042 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListMetrics.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersListMetrics.json @@ -146,4 +146,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUpdate.json index c18a39a93615..31ae5bee7b3f 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUpdate.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUpdateExtendedInfo.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUpdateExtendedInfo.json index 8ad43f802435..a39b16364880 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUpdateExtendedInfo.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUpdateExtendedInfo.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUploadRegistrationCertificate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUploadRegistrationCertificate.json index 6e40d58e34ee..8184705ef6af 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUploadRegistrationCertificate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/ManagersUploadRegistrationCertificate.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/OperationsList.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/OperationsList.json index 5f3b732e257e..6a3e99eef092 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/OperationsList.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/OperationsList.json @@ -1282,5 +1282,3 @@ } } } - - diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsCreateOrUpdate.json index 880c300915a0..ed9a737cb881 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsCreateOrUpdate.json @@ -65,4 +65,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsDelete.json index feed4bfa19b2..feff0636054a 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsDelete.json @@ -22,4 +22,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsGet.json index 092aee24d034..6a1409bc2852 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsGet.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsListByManager.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsListByManager.json index 2bd9c210ba93..587783c08264 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsListByManager.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageAccountCredentialsListByManager.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsCreateOrUpdate.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsCreateOrUpdate.json index 5c8f5f92f282..8737f10beb67 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsCreateOrUpdate.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsCreateOrUpdate.json @@ -58,4 +58,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsDelete.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsDelete.json index 6e9dbc3366ff..01ee96e13103 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsDelete.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsDelete.json @@ -22,4 +22,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsGet.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsGet.json index 8e744ac0457f..5df1a133444b 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsGet.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsGet.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsListByManager.json b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsListByManager.json index a86736574fbc..1835c819d983 100644 --- a/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsListByManager.json +++ b/specification/storSimple1200Series/resource-manager/Microsoft.StorSimple/stable/2016-10-01/examples/StorageDomainsListByManager.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/data-plane/Microsoft.StorageDataLake/stable/2018-11-09/DataLakeStorage.json b/specification/storage/data-plane/Microsoft.StorageDataLake/stable/2018-11-09/DataLakeStorage.json index 6a1a18e2a72c..62bed5b267ac 100644 --- a/specification/storage/data-plane/Microsoft.StorageDataLake/stable/2018-11-09/DataLakeStorage.json +++ b/specification/storage/data-plane/Microsoft.StorageDataLake/stable/2018-11-09/DataLakeStorage.json @@ -1911,4 +1911,4 @@ ] } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2015-05-01-preview/storage.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2015-05-01-preview/storage.json index aa2d63dbe442..51ec44d003f2 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2015-05-01-preview/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2015-05-01-preview/storage.json @@ -818,4 +818,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/blob.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/blob.json index ad0759f162b9..42cf68510728 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/blob.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/blob.json @@ -1,1061 +1,1061 @@ - { - "swagger": "2.0", - "info": { - "version": "2018-03-01-preview", - "title": "StorageManagementClient", - "description": "The Azure Storage Management API." - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers": { - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_List", - "x-ms-examples": { - "ListContainers": { - "$ref": "./examples/BlobContainersList.json" - } +{ + "swagger": "2.0", + "info": { + "version": "2018-03-01-preview", + "title": "StorageManagementClient", + "description": "The Azure Storage Management API." + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers": { + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_List", + "x-ms-examples": { + "ListContainers": { + "$ref": "./examples/BlobContainersList.json" + } + }, + "description": "Lists all containers and does not support a prefix like data plane. Also SRP today does not return continuation token.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Lists all containers and does not support a prefix like data plane. Also SRP today does not return continuation token.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- List Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/ListContainerItems" - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- List Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/ListContainerItems" } } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}": { - "put": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Create", - "x-ms-examples": { - "PutContainers": { - "$ref": "./examples/BlobContainersPut.json" - } - }, - "description": "Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "name": "blobContainer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BlobContainer" - }, - "description": "Properties of the blob container to create." - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "201": { - "description": "Created -- Create Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}": { + "put": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Create", + "x-ms-examples": { + "PutContainers": { + "$ref": "./examples/BlobContainersPut.json" } }, - "patch": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Update", - "x-ms-examples": { - "UpdateContainers": { - "$ref": "./examples/BlobContainersPatch.json" - } + "description": "Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Updates container properties as specified in request body. Properties not mentioned in the request will be unchanged. Update fails if the specified container doesn't already exist. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "name": "blobContainer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BlobContainer" - }, - "description": "Properties to update for the blob container." - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Update Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer", - "description": "Properties of the updated blob container." - } - } - } - }, - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Get", - "x-ms-examples": { - "GetContainers": { - "$ref": "./examples/BlobContainersGet.json" - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" }, - "description": "Gets properties of a specified container. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "$ref": "#/parameters/ContainerName" + }, + { + "name": "blobContainer", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BlobContainer" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Get Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } + "description": "Properties of the blob container to create." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "201": { + "description": "Created -- Create Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer" } } + } + }, + "patch": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Update", + "x-ms-examples": { + "UpdateContainers": { + "$ref": "./examples/BlobContainersPatch.json" + } }, - "delete": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Delete", - "x-ms-examples": { - "DeleteContainers": { - "$ref": "./examples/BlobContainersDelete.json" - } + "description": "Updates container properties as specified in request body. Properties not mentioned in the request will be unchanged. Update fails if the specified container doesn't already exist. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Deletes specified container under its account.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Delete Container operation completed successfully." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "name": "blobContainer", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BlobContainer" }, - "204": { - "description": "No Content -- The Container not exist." + "description": "Properties to update for the blob container." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Update Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer", + "description": "Properties of the updated blob container." } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_SetLegalHold", - "x-ms-examples": { - "SetLegalHoldContainers": { - "$ref": "./examples/BlobContainersSetLegalHold.json" - } + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Get", + "x-ms-examples": { + "GetContainers": { + "$ref": "./examples/BlobContainersGet.json" + } + }, + "description": "Gets properties of a specified container. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows an append pattern and does not clear out the existing tags that are not specified in the request.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "LegalHold", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LegalHold" - }, - "description": "The LegalHold property that will be set to a blob container." - } - ], - "responses": { - "200": { - "description": "OK -- Set legal hold tags for Container completed successfully.", - "schema": { - "$ref": "#/definitions/LegalHold" - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Get Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer" } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_ClearLegalHold", - "x-ms-examples": { - "ClearLegalHoldContainers": { - "$ref": "./examples/BlobContainersClearLegalHold.json" - } + "delete": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Delete", + "x-ms-examples": { + "DeleteContainers": { + "$ref": "./examples/BlobContainersDelete.json" + } + }, + "description": "Deletes specified container under its account.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Clears legal hold tags. Clearing the same or non-existent tag results in an idempotent operation. ClearLegalHold clears out only the specified tags in the request.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "LegalHold", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LegalHold" - }, - "description": "The LegalHold property that will be clear from a blob container." - } - ], - "responses": { - "200": { - "description": "OK -- Clear legal hold tags for Container completed successfully.", - "schema": { - "$ref": "#/definitions/LegalHold" - } - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Delete Container operation completed successfully." + }, + "204": { + "description": "No Content -- The Container not exist." } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}": { - "put": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_CreateOrUpdateImmutabilityPolicy", - "x-ms-examples": { - "CreateOrUpdateImmutabilityPolicy": { - "$ref": "./examples/BlobContainersPutImmutabilityPolicy.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_SetLegalHold", + "x-ms-examples": { + "SetLegalHoldContainers": { + "$ref": "./examples/BlobContainersSetLegalHold.json" + } + }, + "description": "Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows an append pattern and does not clear out the existing tags that are not specified in the request.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Creates or updates an unlocked immutability policy. ETag in If-Match is honored if given but not required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "description": "The ImmutabilityPolicy Properties that will be created or updated to a blob container." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "LegalHold", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LegalHold" }, - { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Creates or updates container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } - } + "description": "The LegalHold property that will be set to a blob container." + } + ], + "responses": { + "200": { + "description": "OK -- Set legal hold tags for Container completed successfully.", + "schema": { + "$ref": "#/definitions/LegalHold" } } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_ClearLegalHold", + "x-ms-examples": { + "ClearLegalHoldContainers": { + "$ref": "./examples/BlobContainersClearLegalHold.json" + } }, - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_GetImmutabilityPolicy", - "x-ms-examples": { - "GetImmutabilityPolicy": { - "$ref": "./examples/BlobContainersGetImmutabilityPolicy.json" - } + "description": "Clears legal hold tags. Clearing the same or non-existent tag results in an idempotent operation. ClearLegalHold clears out only the specified tags in the request.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Gets the existing immutability policy along with the corresponding ETag in response headers and body.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "LegalHold", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LegalHold" }, - { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Gets container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } - } + "description": "The LegalHold property that will be clear from a blob container." + } + ], + "responses": { + "200": { + "description": "OK -- Clear legal hold tags for Container completed successfully.", + "schema": { + "$ref": "#/definitions/LegalHold" } } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}": { + "put": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_CreateOrUpdateImmutabilityPolicy", + "x-ms-examples": { + "CreateOrUpdateImmutabilityPolicy": { + "$ref": "./examples/BlobContainersPutImmutabilityPolicy.json" + } }, - "delete": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_DeleteImmutabilityPolicy", - "x-ms-examples": { - "DeleteImmutabilityPolicy": { - "$ref": "./examples/BlobContainersDeleteImmutabilityPolicy.json" - } + "description": "Creates or updates an unlocked immutability policy. ETag in If-Match is honored if given but not required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is not allowed, only way is to delete the container after deleting all blobs inside the container.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Deletes container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "description": "The ImmutabilityPolicy Properties that will be created or updated to a blob container." + }, + { + "name": "If-Match", + "in": "header", + "required": false, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Creates or updates container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" + }, + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_LockImmutabilityPolicy", - "x-ms-examples": { - "LockImmutabilityPolicy": { - "$ref": "./examples/BlobContainersLockImmutabilityPolicy.json" - } + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_GetImmutabilityPolicy", + "x-ms-examples": { + "GetImmutabilityPolicy": { + "$ref": "./examples/BlobContainersGetImmutabilityPolicy.json" + } + }, + "description": "Gets the existing immutability policy along with the corresponding ETag in response headers and body.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Sets the ImmutabilityPolicy to Locked state. The only action allowed on a Locked policy is ExtendImmutabilityPolicy action. ETag in If-Match is required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Locks container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": false, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Gets container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" + }, + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_ExtendImmutabilityPolicy", - "x-ms-examples": { - "ExtendImmutabilityPolicy": { - "$ref": "./examples/BlobContainersExtendImmutabilityPolicy.json" - } + "delete": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_DeleteImmutabilityPolicy", + "x-ms-examples": { + "DeleteImmutabilityPolicy": { + "$ref": "./examples/BlobContainersDeleteImmutabilityPolicy.json" + } + }, + "description": "Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is not allowed, only way is to delete the container after deleting all blobs inside the container.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Extends the immutabilityPeriodSinceCreationInDays of a locked immutabilityPolicy. The only action allowed on a Locked policy will be this action. ETag in If-Match is required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "description": "The ImmutabilityPolicy Properties that will be extended for a blob container." - }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Extends container ImmutabilityPolicy operation completed successfully..", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Deletes container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" + }, + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } - }, - "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Lease", - "x-ms-examples": { - "Acquire a lease on a container": { - "$ref": "./examples/BlobContainersLease_Acquire.json" - }, - "Break a lease on a container": { - "$ref": "./examples/BlobContainersLease_Break.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_LockImmutabilityPolicy", + "x-ms-examples": { + "LockImmutabilityPolicy": { + "$ref": "./examples/BlobContainersLockImmutabilityPolicy.json" + } + }, + "description": "Sets the ImmutabilityPolicy to Locked state. The only action allowed on a Locked policy is ExtendImmutabilityPolicy action. ETag in If-Match is required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "The Lease Container operation establishes and manages a lock on a container for delete operations. The lock duration can be 15 to 60 seconds, or can be infinite.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/LeaseContainerRequest" - }, - "description": "Lease Container request body." - } - ], - "responses": { - "200": { - "description": "OK -- Lease Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/LeaseContainerResponse" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Locks container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" + }, + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } } }, - "definitions": { - "ContainerProperties": { - "properties": { - "publicAccess": { - "type": "string", - "enum": [ - "Container", - "Blob", - "None" - ], - "x-ms-enum": { - "name": "PublicAccess", - "modelAsString": false - }, - "description": "Specifies whether data in the container may be accessed publicly and the level of access." + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_ExtendImmutabilityPolicy", + "x-ms-examples": { + "ExtendImmutabilityPolicy": { + "$ref": "./examples/BlobContainersExtendImmutabilityPolicy.json" + } + }, + "description": "Extends the immutabilityPeriodSinceCreationInDays of a locked immutabilityPolicy. The only action allowed on a Locked policy will be this action. ETag in If-Match is required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "lastModifiedTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the container was last modified." + { + "$ref": "./storage.json#/parameters/StorageAccountName" }, - "leaseStatus": { - "type": "string", - "readOnly": true, - "enum": [ - "Locked", - "Unlocked" - ], - "x-ms-enum": { - "name": "LeaseStatus", - "modelAsString": true - }, - "description": "The lease status of the container." + { + "$ref": "#/parameters/ContainerName" }, - "leaseState": { - "type": "string", - "readOnly": true, - "enum": [ - "Available", - "Leased", - "Expired", - "Breaking", - "Broken" - ], - "x-ms-enum": { - "name": "LeaseState", - "modelAsString": true - }, - "description": "Lease state of the container." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, - "leaseDuration": { - "type": "string", - "readOnly": true, - "enum": [ - "Infinite", - "Fixed" - ], - "x-ms-enum": { - "name": "LeaseDuration", - "modelAsString": true - }, - "description": "Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, - "metadata": { - "type": "object", - "additionalProperties": { - "type": "string" + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - "description": "A name-value pair to associate with the container as metadata." - }, - "immutabilityPolicy": { - "readOnly": true, - "$ref": "#/definitions/ImmutabilityPolicyProperties", - "x-ms-client-name": "ImmutabilityPolicy", - "description": "The ImmutabilityPolicy property of the container." - }, - "legalHold": { - "readOnly": true, - "$ref": "#/definitions/LegalHoldProperties", - "description": "The LegalHold property of the container." - }, - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "hasImmutabilityPolicy": { - "type": "boolean", - "readOnly": true, - "description": "The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container." - } - }, - "description": "The properties of a container." - }, - "BlobContainer": { - "properties": { - "properties": { - "$ref": "#/definitions/ContainerProperties", - "x-ms-client-flatten": true, - "x-ms-client-name": "ContainerProperties", - "description": "Properties of the blob container." - } - }, - "allOf": [ + "description": "The ImmutabilityPolicy Properties that will be extended for a blob container." + }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." } ], - "description": "Properties of the blob container, including Id, resource name, resource type, Etag." - }, - "ImmutabilityPolicyProperty": { - "properties": { - "immutabilityPeriodSinceCreationInDays": { - "type": "integer", - "description": "The immutability period for the blobs in the container since the policy creation, in days." - }, - "state": { - "type": "string", - "readOnly": true, - "enum": [ - "Locked", - "Unlocked" - ], - "x-ms-enum": { - "name": "ImmutabilityPolicyState", - "modelAsString": true - }, - "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked." + "responses": { + "200": { + "description": "OK -- Extends container ImmutabilityPolicy operation completed successfully..", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" + }, + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" + } + } } - }, - "required": [ - "immutabilityPeriodSinceCreationInDays" + } + } + }, + "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease": { + "post": { + "tags": [ + "BlobContainers" ], - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "ImmutabilityPolicyProperties": { - "properties": { - "properties": { - "$ref": "#/definitions/ImmutabilityPolicyProperty", - "x-ms-client-flatten": true, - "description": "The properties of an ImmutabilityPolicy of a blob container." + "operationId": "BlobContainers_Lease", + "x-ms-examples": { + "Acquire a lease on a container": { + "$ref": "./examples/BlobContainersLease_Acquire.json" }, - "etag": { - "type": "string", - "readOnly": true, - "description": "ImmutabilityPolicy Etag." - }, - "updateHistory": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/UpdateHistoryProperty" - }, - "description": "The ImmutabilityPolicy update history of the blob container." + "Break a lease on a container": { + "$ref": "./examples/BlobContainersLease_Break.json" } }, - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "ImmutabilityPolicy": { - "properties": { - "properties": { - "$ref": "#/definitions/ImmutabilityPolicyProperty", - "x-ms-client-flatten": true, - "description": "The properties of an ImmutabilityPolicy of a blob container." - } - }, - "allOf": [ + "description": "The Lease Container operation establishes and manages a lock on a container for delete operations. The lock duration can be 15 to 60 seconds, or can be infinite.", + "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "required": [ - "properties" - ], - "description": "The ImmutabilityPolicy property of a blob container, including Id, resource name, resource type, Etag." - }, - "UpdateHistoryProperty": { - "properties": { - "update": { - "type": "string", - "readOnly": true, - "enum": [ - "put", - "lock", - "extend" - ], - "x-ms-enum": { - "name": "ImmutabilityPolicyUpdateType", - "modelAsString": true - }, - "description": "The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend." + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "immutabilityPeriodSinceCreationInDays": { - "type": "integer", - "readOnly": true, - "description": "The immutability period for the blobs in the container since the policy creation, in days." + { + "$ref": "./storage.json#/parameters/StorageAccountName" }, - "timestamp": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the ImmutabilityPolicy was updated." + { + "$ref": "#/parameters/ContainerName" }, - "objectIdentifier": { - "type": "string", - "readOnly": true, - "description": "Returns the Object ID of the user who updated the ImmutabilityPolicy." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, - "tenantId": { - "type": "string", - "readOnly": true, - "description": "Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, - "upn": { - "type": "string", - "readOnly": true, - "description": "Returns the User Principal Name of the user who updated the ImmutabilityPolicy." - } - }, - "description": "An update history of the ImmutabilityPolicy of a blob container." - }, - "LegalHoldProperties": { - "properties": { - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "tags": { - "type": "array", - "items": { - "$ref": "#/definitions/TagProperty" + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/LeaseContainerRequest" }, - "description": "The list of LegalHold tags of a blob container." + "description": "Lease Container request body." + } + ], + "responses": { + "200": { + "description": "OK -- Lease Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/LeaseContainerResponse" + } } + } + } + } + }, + "definitions": { + "ContainerProperties": { + "properties": { + "publicAccess": { + "type": "string", + "enum": [ + "Container", + "Blob", + "None" + ], + "x-ms-enum": { + "name": "PublicAccess", + "modelAsString": false + }, + "description": "Specifies whether data in the container may be accessed publicly and the level of access." }, - "description": "The LegalHold property of a blob container." - }, - "TagProperty": { - "properties": { - "tag": { - "type": "string", - "readOnly": true, - "description": "The tag value." + "lastModifiedTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the container was last modified." + }, + "leaseStatus": { + "type": "string", + "readOnly": true, + "enum": [ + "Locked", + "Unlocked" + ], + "x-ms-enum": { + "name": "LeaseStatus", + "modelAsString": true }, - "timestamp": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the tag was added." + "description": "The lease status of the container." + }, + "leaseState": { + "type": "string", + "readOnly": true, + "enum": [ + "Available", + "Leased", + "Expired", + "Breaking", + "Broken" + ], + "x-ms-enum": { + "name": "LeaseState", + "modelAsString": true }, - "objectIdentifier": { - "type": "string", - "readOnly": true, - "description": "Returns the Object ID of the user who added the tag." + "description": "Lease state of the container." + }, + "leaseDuration": { + "type": "string", + "readOnly": true, + "enum": [ + "Infinite", + "Fixed" + ], + "x-ms-enum": { + "name": "LeaseDuration", + "modelAsString": true }, - "tenantId": { - "type": "string", - "readOnly": true, - "description": "Returns the Tenant ID that issued the token for the user who added the tag." + "description": "Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased." + }, + "metadata": { + "type": "object", + "additionalProperties": { + "type": "string" }, - "upn": { - "type": "string", - "readOnly": true, - "description": "Returns the User Principal Name of the user who added the tag." - } + "description": "A name-value pair to associate with the container as metadata." }, - "description": "A tag of the LegalHold of a blob container." - }, - "LegalHold": { - "properties": { - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "tags": { - "type": "array", - "items": { - "type": "string", - "maxLength": 23, - "minLength": 3 - }, - "description": "Each tag should be 3 to 23 alphanumeric characters and is normalized to lower case at SRP." - } + "immutabilityPolicy": { + "readOnly": true, + "$ref": "#/definitions/ImmutabilityPolicyProperties", + "x-ms-client-name": "ImmutabilityPolicy", + "description": "The ImmutabilityPolicy property of the container." }, - "required": [ - "tags" - ], - "description": "The LegalHold property of a blob container." + "legalHold": { + "readOnly": true, + "$ref": "#/definitions/LegalHoldProperties", + "description": "The LegalHold property of the container." + }, + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." + }, + "hasImmutabilityPolicy": { + "type": "boolean", + "readOnly": true, + "description": "The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container." + } }, - "ListContainerItem": { + "description": "The properties of a container." + }, + "BlobContainer": { + "properties": { "properties": { - "properties": { - "$ref": "#/definitions/ContainerProperties", - "x-ms-client-flatten": true, - "description": "The blob container properties be listed out." - } + "$ref": "#/definitions/ContainerProperties", + "x-ms-client-flatten": true, + "x-ms-client-name": "ContainerProperties", + "description": "Properties of the blob container." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "description": "Properties of the blob container, including Id, resource name, resource type, Etag." + }, + "ImmutabilityPolicyProperty": { + "properties": { + "immutabilityPeriodSinceCreationInDays": { + "type": "integer", + "description": "The immutability period for the blobs in the container since the policy creation, in days." }, - "allOf": [ - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "description": "The blob container properties be listed out." + "state": { + "type": "string", + "readOnly": true, + "enum": [ + "Locked", + "Unlocked" + ], + "x-ms-enum": { + "name": "ImmutabilityPolicyState", + "modelAsString": true + }, + "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked." + } }, - "ListContainerItems": { + "required": [ + "immutabilityPeriodSinceCreationInDays" + ], + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "ImmutabilityPolicyProperties": { + "properties": { "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ListContainerItem" - }, - "description": "The list of blob containers." - } + "$ref": "#/definitions/ImmutabilityPolicyProperty", + "x-ms-client-flatten": true, + "description": "The properties of an ImmutabilityPolicy of a blob container." }, - "description": "The list of blob containers." + "etag": { + "type": "string", + "readOnly": true, + "description": "ImmutabilityPolicy Etag." + }, + "updateHistory": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/UpdateHistoryProperty" + }, + "description": "The ImmutabilityPolicy update history of the blob container." + } }, - "LeaseContainerRequest": { + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "ImmutabilityPolicy": { + "properties": { "properties": { - "action": { - "type": "string", - "enum": [ - "Acquire", - "Renew", - "Change", - "Release", - "Break" - ], - "description": "Specifies the lease action. Can be one of the available actions." - }, - "leaseId": { - "type": "string", - "description": "Identifies the lease. Can be specified in any valid GUID string format." - }, - "breakPeriod": { - "type": "integer", - "description": "Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60." + "$ref": "#/definitions/ImmutabilityPolicyProperty", + "x-ms-client-flatten": true, + "description": "The properties of an ImmutabilityPolicy of a blob container." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "required": [ + "properties" + ], + "description": "The ImmutabilityPolicy property of a blob container, including Id, resource name, resource type, Etag." + }, + "UpdateHistoryProperty": { + "properties": { + "update": { + "type": "string", + "readOnly": true, + "enum": [ + "put", + "lock", + "extend" + ], + "x-ms-enum": { + "name": "ImmutabilityPolicyUpdateType", + "modelAsString": true }, - "leaseDuration": { - "type": "integer", - "description": "Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires." + "description": "The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend." + }, + "immutabilityPeriodSinceCreationInDays": { + "type": "integer", + "readOnly": true, + "description": "The immutability period for the blobs in the container since the policy creation, in days." + }, + "timestamp": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the ImmutabilityPolicy was updated." + }, + "objectIdentifier": { + "type": "string", + "readOnly": true, + "description": "Returns the Object ID of the user who updated the ImmutabilityPolicy." + }, + "tenantId": { + "type": "string", + "readOnly": true, + "description": "Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy." + }, + "upn": { + "type": "string", + "readOnly": true, + "description": "Returns the User Principal Name of the user who updated the ImmutabilityPolicy." + } + }, + "description": "An update history of the ImmutabilityPolicy of a blob container." + }, + "LegalHoldProperties": { + "properties": { + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." + }, + "tags": { + "type": "array", + "items": { + "$ref": "#/definitions/TagProperty" }, - "proposedLeaseId": { - "type": "string", - "description": "Optional for acquire, required for change. Proposed lease ID, in a GUID string format." - } + "description": "The list of LegalHold tags of a blob container." + } + }, + "description": "The LegalHold property of a blob container." + }, + "TagProperty": { + "properties": { + "tag": { + "type": "string", + "readOnly": true, + "description": "The tag value." }, - "required": [ - "action" - ], - "description": "Lease Container request schema." + "timestamp": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the tag was added." + }, + "objectIdentifier": { + "type": "string", + "readOnly": true, + "description": "Returns the Object ID of the user who added the tag." + }, + "tenantId": { + "type": "string", + "readOnly": true, + "description": "Returns the Tenant ID that issued the token for the user who added the tag." + }, + "upn": { + "type": "string", + "readOnly": true, + "description": "Returns the User Principal Name of the user who added the tag." + } }, - "LeaseContainerResponse": { - "properties": { - "leaseId": { + "description": "A tag of the LegalHold of a blob container." + }, + "LegalHold": { + "properties": { + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." + }, + "tags": { + "type": "array", + "items": { "type": "string", - "description": "Returned unique lease ID that must be included with any request to delete the container, or to renew, change, or release the lease." + "maxLength": 23, + "minLength": 3 }, - "leaseTimeSeconds": { - "type": "string", - "description": "Approximate time remaining in the lease period, in seconds." - } - }, - "description": "Lease Container response schema." - } + "description": "Each tag should be 3 to 23 alphanumeric characters and is normalized to lower case at SRP." + } + }, + "required": [ + "tags" + ], + "description": "The LegalHold property of a blob container." }, - "parameters": { - "ContainerName": { - "name": "containerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.", - "maxLength": 63, - "minLength": 3, - "x-ms-parameter-location": "method" + "ListContainerItem": { + "properties": { + "properties": { + "$ref": "#/definitions/ContainerProperties", + "x-ms-client-flatten": true, + "description": "The blob container properties be listed out." + } }, - "ImmutabilityPolicyName": { - "name": "immutabilityPolicyName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'", - "enum":[ - "default" - ], - "x-ms-parameter-location": "method" - } + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "description": "The blob container properties be listed out." }, - "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" + "ListContainerItems": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ListContainerItem" + }, + "description": "The list of blob containers." } - } + }, + "description": "The list of blob containers." + }, + "LeaseContainerRequest": { + "properties": { + "action": { + "type": "string", + "enum": [ + "Acquire", + "Renew", + "Change", + "Release", + "Break" + ], + "description": "Specifies the lease action. Can be one of the available actions." + }, + "leaseId": { + "type": "string", + "description": "Identifies the lease. Can be specified in any valid GUID string format." + }, + "breakPeriod": { + "type": "integer", + "description": "Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60." + }, + "leaseDuration": { + "type": "integer", + "description": "Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires." + }, + "proposedLeaseId": { + "type": "string", + "description": "Optional for acquire, required for change. Proposed lease ID, in a GUID string format." + } + }, + "required": [ + "action" + ], + "description": "Lease Container request schema." + }, + "LeaseContainerResponse": { + "properties": { + "leaseId": { + "type": "string", + "description": "Returned unique lease ID that must be included with any request to delete the container, or to renew, change, or release the lease." + }, + "leaseTimeSeconds": { + "type": "string", + "description": "Approximate time remaining in the lease period, in seconds." + } + }, + "description": "Lease Container response schema." + } + }, + "parameters": { + "ContainerName": { + "name": "containerName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.", + "maxLength": 63, + "minLength": 3, + "x-ms-parameter-location": "method" }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "ImmutabilityPolicyName": { + "name": "immutabilityPolicyName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'", + "enum": [ + "default" + ], + "x-ms-parameter-location": "method" + } + }, + "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" } - ] - } \ No newline at end of file + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersClearLegalHold.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersClearLegalHold.json index ad6e6f5a6dcc..ac7aa7db783a 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersClearLegalHold.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersClearLegalHold.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersDelete.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersDelete.json index c098454b4d7e..5938f831b9e9 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersDelete.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersExtendImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersExtendImmutabilityPolicy.json index 1737f81188e4..f1736e188785 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersExtendImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersExtendImmutabilityPolicy.json @@ -4,7 +4,7 @@ "resourceGroupName": "res6238", "accountName": "sto232", "containerName": "container5023", - "If-Match": "\"8d59f830d0c3bf9\"", + "If-Match": "\"8d59f830d0c3bf9\"", "api-version": "2018-03-01-preview", "monitor": "true", "parameters": { @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersGet.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersGet.json index 3416d56e8b00..ade438b9f9c0 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersGet.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersGet.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersGetImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersGetImmutabilityPolicy.json index b04a083fed46..bb0529d632ca 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersGetImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersGetImmutabilityPolicy.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLease_Acquire.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLease_Acquire.json index bb8b046aa4d3..00792870eace 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLease_Acquire.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLease_Acquire.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLease_Break.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLease_Break.json index 418c63ed1bdb..8102ce6b0790 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLease_Break.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLease_Break.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersList.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersList.json index 575296fcba50..cf162ef0dbbe 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersList.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLockImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLockImmutabilityPolicy.json index 7d8b4c13bd7d..88edd88bf6c3 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLockImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersLockImmutabilityPolicy.json @@ -4,7 +4,7 @@ "resourceGroupName": "res2702", "accountName": "sto5009", "containerName": "container1631", - "If-Match": "\"8d59f825b721dd3\"", + "If-Match": "\"8d59f825b721dd3\"", "api-version": "2018-03-01-preview", "monitor": "true" }, @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPatch.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPatch.json index 26a5f59b49cf..72c670432c4b 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPatch.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPatch.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPut.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPut.json index 4aa6ab2ab34c..32747804bba2 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPut.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPut.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPutImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPutImmutabilityPolicy.json index 3357d65fcfd0..9fa5a241087a 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPutImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersPutImmutabilityPolicy.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersSetLegalHold.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersSetLegalHold.json index d7c79aec0436..66ce4eac316a 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersSetLegalHold.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/BlobContainersSetLegalHold.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/OperationsList.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/OperationsList.json index 19db1402e322..4232ccacaef8 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/OperationsList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/OperationsList.json @@ -470,4 +470,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/SKUList.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/SKUList.json index 0644102e9121..02d8863f3b36 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/SKUList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/SKUList.json @@ -6451,4 +6451,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountCheckNameAvailability.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountCheckNameAvailability.json index f4ecc898104f..1ed71ec52f21 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountCheckNameAvailability.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountCheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountCreate.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountCreate.json index 591f43ae0a54..2fa4a8c9a201 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountCreate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountCreate.json @@ -78,4 +78,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountDelete.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountDelete.json index dd8acf5b6ce1..53d1b3aa7c52 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountDeleteManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountDeleteManagementPolicy.json index cc09990ec8a3..72cd483cd07a 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountDeleteManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountDeleteManagementPolicy.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountGetManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountGetManagementPolicy.json index 7b9f475ba388..157a1b36e277 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountGetManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountGetManagementPolicy.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountGetProperties.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountGetProperties.json index 534b779c6138..efdff1296d60 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountGetProperties.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountGetProperties.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountList.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountList.json index be7f2ac9035c..32add044bbc9 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountList.json @@ -7,7 +7,7 @@ "responses": { "200": { "body": { - "value": [ + "value": [ { "sku": { "name": "Standard_LRS", @@ -109,4 +109,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListAccountSAS.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListAccountSAS.json index 6c3ddad1ca3f..40eab2490a73 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListAccountSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListAccountSAS.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListByResourceGroup.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListByResourceGroup.json index 795b3951548b..306631b25148 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListByResourceGroup.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListByResourceGroup.json @@ -114,4 +114,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListKeys.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListKeys.json index 3f78254bb4f9..67edcaf45514 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListKeys.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListKeys.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListLocationUsage.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListLocationUsage.json index 34960a076c38..26e81f60c988 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListLocationUsage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListLocationUsage.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListServiceSAS.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListServiceSAS.json index 5b923848c2b4..f87d81c86dc5 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListServiceSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountListServiceSAS.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountRegenerateKey.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountRegenerateKey.json index 0e95b0e360da..edf2c55bd0bb 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountRegenerateKey.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountRegenerateKey.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountSetManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountSetManagementPolicy.json index 6e16eb2ac455..8bb3e99b622f 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountSetManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountSetManagementPolicy.json @@ -97,4 +97,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountUpdate.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountUpdate.json index 7f8014a34169..1be85ca1c640 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountUpdate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/StorageAccountUpdate.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/UsageList.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/UsageList.json index 40eb7ab74774..fcb27e2908f6 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/UsageList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/examples/UsageList.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/managementpolicy.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/managementpolicy.json index 5d03a3dfde97..6840eb1edeb0 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/managementpolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/managementpolicy.json @@ -15,7 +15,7 @@ "produces": [ "application/json" ], - "paths": { + "paths": { "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}": { "get": { "tags": [ @@ -24,7 +24,9 @@ "operationId": "ManagementPolicies_Get", "description": "Gets the data policy rules associated with the specified storage account.", "x-ms-examples": { - "StorageAccountGetManagementPolicies": { "$ref": "./examples/StorageAccountGetManagementPolicy.json" } + "StorageAccountGetManagementPolicies": { + "$ref": "./examples/StorageAccountGetManagementPolicy.json" + } }, "parameters": [ { @@ -40,7 +42,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ManagementPolicyName" + "$ref": "#/parameters/ManagementPolicyName" } ], "responses": { @@ -59,7 +61,9 @@ "operationId": "ManagementPolicies_CreateOrUpdate", "description": "Sets the data policy rules associated with the specified storage account.", "x-ms-examples": { - "StorageAccountSetManagementPolicies": { "$ref": "./examples/StorageAccountSetManagementPolicy.json" } + "StorageAccountSetManagementPolicies": { + "$ref": "./examples/StorageAccountSetManagementPolicy.json" + } }, "parameters": [ { @@ -75,7 +79,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ManagementPolicyName" + "$ref": "#/parameters/ManagementPolicyName" }, { "name": "properties", @@ -103,7 +107,9 @@ "operationId": "ManagementPolicies_Delete", "description": "Deletes the data policy rules associated with the specified storage account.", "x-ms-examples": { - "StorageAccountDeleteManagementPolicies": { "$ref": "./examples/StorageAccountDeleteManagementPolicy.json" } + "StorageAccountDeleteManagementPolicies": { + "$ref": "./examples/StorageAccountDeleteManagementPolicy.json" + } }, "parameters": [ { @@ -119,13 +125,13 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ManagementPolicyName" + "$ref": "#/parameters/ManagementPolicyName" } ], "responses": { "200": { "description": "OK -- Delete management policies successfully." - }, + }, "204": { "description": "No Content -- The management policies does not exist." } @@ -142,7 +148,7 @@ "readOnly": true, "description": "Returns the Storage Account Data Policies Rules." } - }, + }, "allOf": [ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource" @@ -158,7 +164,7 @@ "format": "date-time", "description": "Returns the date and time the ManagementPolicies was last modified." } - }, + }, "allOf": [ { "$ref": "#/definitions/ManagementPoliciesRules" @@ -178,10 +184,10 @@ }, "ManagementPoliciesRules": { "properties": { - "policy": { - "type": "object", - "description": "The Storage Account ManagementPolicies Rules, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." - } + "policy": { + "type": "object", + "description": "The Storage Account ManagementPolicies Rules, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." + } }, "description": "The Storage Account ManagementPolicies Rules, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." } @@ -193,12 +199,12 @@ "required": true, "type": "string", "description": "The name of the Storage Account Management Policy. It should always be 'default'", - "enum":[ + "enum": [ "default" ], "x-ms-enum": { - "name": "ManagementPolicyName", - "modelAsString": true + "name": "ManagementPolicyName", + "modelAsString": true }, "x-ms-parameter-location": "method" } @@ -221,4 +227,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/storage.json b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/storage.json index 78381e8d4f4a..d1e1d7ad90b3 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/preview/2018-03-01-preview/storage.json @@ -469,7 +469,9 @@ "operationId": "Usages_ListByLocation", "description": "Gets the current usage count and the limit for the resources of the location under the subscription.", "x-ms-examples": { - "UsageList": { "$ref": "./examples/StorageAccountListLocationUsage.json"} + "UsageList": { + "$ref": "./examples/StorageAccountListLocationUsage.json" + } }, "parameters": [ { @@ -484,7 +486,7 @@ "required": true, "type": "string", "description": "The location of the Azure Storage resource." - } + } ], "responses": { "200": { @@ -588,7 +590,7 @@ } } } - }, + }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}": { "get": { "tags": [ @@ -597,7 +599,9 @@ "operationId": "StorageAccounts_GetManagementPolicies", "description": "Gets the data policy rules associated with the specified storage account.", "x-ms-examples": { - "StorageAccountGetManagementPolicies": { "$ref": "./examples/StorageAccountGetManagementPolicy.json" } + "StorageAccountGetManagementPolicies": { + "$ref": "./examples/StorageAccountGetManagementPolicy.json" + } }, "parameters": [ { @@ -613,7 +617,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ManagementPolicyName" + "$ref": "#/parameters/ManagementPolicyName" } ], "responses": { @@ -632,7 +636,9 @@ "operationId": "StorageAccounts_CreateOrUpdateManagementPolicies", "description": "Sets the data policy rules associated with the specified storage account.", "x-ms-examples": { - "StorageAccountSetManagementPolicies": { "$ref": "./examples/StorageAccountSetManagementPolicy.json" } + "StorageAccountSetManagementPolicies": { + "$ref": "./examples/StorageAccountSetManagementPolicy.json" + } }, "parameters": [ { @@ -648,7 +654,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ManagementPolicyName" + "$ref": "#/parameters/ManagementPolicyName" }, { "name": "properties", @@ -676,7 +682,9 @@ "operationId": "StorageAccounts_DeleteManagementPolicies", "description": "Deletes the data policy rules associated with the specified storage account.", "x-ms-examples": { - "StorageAccountDeleteManagementPolicies": { "$ref": "./examples/StorageAccountDeleteManagementPolicy.json" } + "StorageAccountDeleteManagementPolicies": { + "$ref": "./examples/StorageAccountDeleteManagementPolicy.json" + } }, "parameters": [ { @@ -692,13 +700,13 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ManagementPolicyName" + "$ref": "#/parameters/ManagementPolicyName" } ], "responses": { "200": { "description": "OK -- Delete management policies successfully." - }, + }, "204": { "description": "No Content -- The management policies does not exist." } @@ -1284,8 +1292,8 @@ "isHnsEnabled": { "type": "boolean", "default": false, - "x-ms-client-name": "IsHnsEnabled", - "description": "Account HierarchicalNamespace enabled if sets to true." + "x-ms-client-name": "IsHnsEnabled", + "description": "Account HierarchicalNamespace enabled if sets to true." } }, "description": "The parameters used to create the storage account." @@ -1513,8 +1521,8 @@ "isHnsEnabled": { "type": "boolean", "default": false, - "x-ms-client-name": "IsHnsEnabled", - "description": "Account HierarchicalNamespace enabled if sets to true." + "x-ms-client-name": "IsHnsEnabled", + "description": "Account HierarchicalNamespace enabled if sets to true." } }, "description": "Properties of the storage account." @@ -2015,7 +2023,7 @@ "readOnly": true, "description": "Returns the Storage Account Data Policies Rules." } - }, + }, "allOf": [ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource" @@ -2031,7 +2039,7 @@ "format": "date-time", "description": "Returns the date and time the ManagementPolicies was last modified." } - }, + }, "allOf": [ { "$ref": "#/definitions/ManagementPoliciesRules" @@ -2051,10 +2059,10 @@ }, "ManagementPoliciesRules": { "properties": { - "policy": { - "type": "object", - "description": "The Storage Account ManagementPolicies Rules, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." - } + "policy": { + "type": "object", + "description": "The Storage Account ManagementPolicies Rules, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." + } }, "description": "The Storage Account ManagementPolicies Rules, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." } @@ -2087,12 +2095,12 @@ "required": true, "type": "string", "description": "The name of the Storage Account Management Policy. It should always be 'default'", - "enum":[ + "enum": [ "default" ], "x-ms-enum": { - "name": "ManagementPolicyName", - "modelAsString": true + "name": "ManagementPolicyName", + "modelAsString": true }, "x-ms-parameter-location": "method" } @@ -2115,4 +2123,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2015-06-15/storage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2015-06-15/storage.json index 6a6c1f14d34c..2c6dcb8d9f78 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2015-06-15/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2015-06-15/storage.json @@ -237,7 +237,7 @@ } } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/storageAccounts": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/storageAccounts": { "get": { "tags": [ "StorageAccounts" @@ -837,4 +837,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2016-01-01/storage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2016-01-01/storage.json index 61424e2d5888..13d53c231ee2 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2016-01-01/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2016-01-01/storage.json @@ -423,7 +423,9 @@ }, "type": { "type": "string", - "enum": [ "Microsoft.Storage/storageAccounts" ] + "enum": [ + "Microsoft.Storage/storageAccounts" + ] } }, "required": [ @@ -544,10 +546,14 @@ "keySource": { "type": "string", "description": "The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage", - "enum": [ "Microsoft.Storage" ] + "enum": [ + "Microsoft.Storage" + ] } }, - "required": [ "keySource" ], + "required": [ + "keySource" + ], "description": "The encryption settings on the storage account." }, "StorageAccountPropertiesCreateParameters": { @@ -993,4 +999,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2016-05-01/storage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2016-05-01/storage.json index 5aec59fef371..93bfb1ad0988 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2016-05-01/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2016-05-01/storage.json @@ -486,7 +486,9 @@ }, "type": { "type": "string", - "enum": [ "Microsoft.Storage/storageAccounts" ] + "enum": [ + "Microsoft.Storage/storageAccounts" + ] } }, "required": [ @@ -608,10 +610,14 @@ "keySource": { "type": "string", "description": "The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage", - "enum": [ "Microsoft.Storage" ] + "enum": [ + "Microsoft.Storage" + ] } }, - "required": [ "keySource" ], + "required": [ + "keySource" + ], "description": "The encryption settings on the storage account." }, "StorageAccountPropertiesCreateParameters": { @@ -1140,7 +1146,7 @@ "properties": { "canonicalizedResource": { "type": "string", - "description" : "The canonical path to the signed resource." + "description": "The canonical path to the signed resource." }, "signedResource": { "type": "string", @@ -1298,4 +1304,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2016-12-01/storage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2016-12-01/storage.json index 1b8af9e8daa8..5675ac9790fd 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2016-12-01/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2016-12-01/storage.json @@ -489,7 +489,9 @@ }, "type": { "type": "string", - "enum": [ "Microsoft.Storage/storageAccounts" ] + "enum": [ + "Microsoft.Storage/storageAccounts" + ] } }, "required": [ @@ -625,10 +627,14 @@ "keySource": { "type": "string", "description": "The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage", - "enum": [ "Microsoft.Storage" ] + "enum": [ + "Microsoft.Storage" + ] } }, - "required": [ "keySource" ], + "required": [ + "keySource" + ], "description": "The encryption settings on the storage account." }, "StorageAccountPropertiesCreateParameters": { @@ -1175,7 +1181,7 @@ "properties": { "canonicalizedResource": { "type": "string", - "description" : "The canonical path to the signed resource." + "description": "The canonical path to the signed resource." }, "signedResource": { "type": "string", @@ -1333,4 +1339,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/OperationsList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/OperationsList.json index 2cdc61400135..96c3092b17c7 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/OperationsList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/OperationsList.json @@ -470,4 +470,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/SKUList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/SKUList.json index 10660f595c38..8d58f46f7de6 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/SKUList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/SKUList.json @@ -6451,4 +6451,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountCheckNameAvailability.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountCheckNameAvailability.json index c6a94951b41e..d65613f3ba6e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountCheckNameAvailability.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountCheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountCreate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountCreate.json index e97a2e97c171..d1de763c2439 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountCreate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountCreate.json @@ -53,4 +53,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountDelete.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountDelete.json index d75995818b04..6de8f0698d4e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountGetProperties.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountGetProperties.json index b2085c201cf3..6d8c74463b91 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountGetProperties.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountGetProperties.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountList.json index eb405154d3aa..5a0069a8116e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountList.json @@ -177,4 +177,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListAccountSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListAccountSAS.json index fe84f0113e14..62b5af44c251 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListAccountSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListAccountSAS.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListByResourceGroup.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListByResourceGroup.json index 39445dab54ee..dbb8707945bd 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListByResourceGroup.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListByResourceGroup.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListKeys.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListKeys.json index 389f7f0e6631..d37b5512ea2a 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListKeys.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListKeys.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListServiceSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListServiceSAS.json index 61a779c9c740..ad2b61ad24f1 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListServiceSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountListServiceSAS.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountRegenerateKey.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountRegenerateKey.json index 48ec956a9995..1072115bcc7d 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountRegenerateKey.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountRegenerateKey.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountUpdate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountUpdate.json index 53e55b4a345d..54748ecc1e9e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountUpdate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/StorageAccountUpdate.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/UsageList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/UsageList.json index bf0c485c93ee..60411bba602f 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/UsageList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/UsageList.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/storage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/storage.json index 18764366ad22..1c9432aceb01 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/storage.json @@ -28,7 +28,9 @@ "description": "Lists all of the available Storage Rest API operations.", "operationId": "Operations_List", "x-ms-examples": { - "OperationsList": { "$ref": "./examples/OperationsList.json" } + "OperationsList": { + "$ref": "./examples/OperationsList.json" + } }, "parameters": [ { @@ -56,7 +58,9 @@ "operationId": "Skus_List", "description": "Lists the available SKUs supported by Microsoft.Storage for given subscription.", "x-ms-examples": { - "SkuList": { "$ref": "./examples/SKUList.json" } + "SkuList": { + "$ref": "./examples/SKUList.json" + } }, "parameters": [ { @@ -87,7 +91,9 @@ "operationId": "StorageAccounts_CheckNameAvailability", "description": "Checks that the storage account name is valid and is not already in use.", "x-ms-examples": { - "StorageAccountCheckNameAvailability": { "$ref": "./examples/StorageAccountCheckNameAvailability.json" } + "StorageAccountCheckNameAvailability": { + "$ref": "./examples/StorageAccountCheckNameAvailability.json" + } }, "parameters": [ { @@ -124,7 +130,9 @@ "operationId": "StorageAccounts_Create", "description": "Asynchronously creates a new storage account with the specified parameters. If an account is already created and a subsequent create request is issued with different properties, the account properties will be updated. If an account is already created and a subsequent create or update request is issued with the exact same set of properties, the request will succeed.", "x-ms-examples": { - "StorageAccountCreate": { "$ref": "./examples/StorageAccountCreate.json" } + "StorageAccountCreate": { + "$ref": "./examples/StorageAccountCreate.json" + } }, "parameters": [ { @@ -175,7 +183,9 @@ "operationId": "StorageAccounts_Delete", "description": "Deletes a storage account in Microsoft Azure.", "x-ms-examples": { - "StorageAccountDelete": { "$ref": "./examples/StorageAccountDelete.json" } + "StorageAccountDelete": { + "$ref": "./examples/StorageAccountDelete.json" + } }, "parameters": [ { @@ -213,7 +223,9 @@ "operationId": "StorageAccounts_GetProperties", "description": "Returns the properties for the specified storage account including but not limited to name, SKU name, location, and account status. The ListKeys operation should be used to retrieve storage keys.", "x-ms-examples": { - "StorageAccountGetProperties": { "$ref": "./examples/StorageAccountGetProperties.json" } + "StorageAccountGetProperties": { + "$ref": "./examples/StorageAccountGetProperties.json" + } }, "parameters": [ { @@ -251,7 +263,9 @@ "operationId": "StorageAccounts_Update", "description": "The update operation can be used to update the SKU, encryption, access tier, or tags for a storage account. It can also be used to map the account to a custom domain. Only one custom domain is supported per storage account; the replacement/change of custom domain is not supported. In order to replace an old custom domain, the old value must be cleared/unregistered before a new value can be set. The update of multiple properties is supported. This call does not change the storage keys for the account. If you want to change the storage account keys, use the regenerate keys operation. The location and name of the storage account cannot be changed after creation.", "x-ms-examples": { - "StorageAccountUpdate": { "$ref": "./examples/StorageAccountUpdate.json" } + "StorageAccountUpdate": { + "$ref": "./examples/StorageAccountUpdate.json" + } }, "parameters": [ { @@ -300,7 +314,9 @@ "operationId": "StorageAccounts_List", "description": "Lists all the storage accounts available under the subscription. Note that storage keys are not returned; use the ListKeys operation for this.", "x-ms-examples": { - "StorageAccountList": { "$ref": "./examples/StorageAccountList.json" } + "StorageAccountList": { + "$ref": "./examples/StorageAccountList.json" + } }, "parameters": [ { @@ -331,7 +347,9 @@ "operationId": "StorageAccounts_ListByResourceGroup", "description": "Lists all the storage accounts available under the given resource group. Note that storage keys are not returned; use the ListKeys operation for this.", "x-ms-examples": { - "StorageAccountListByResourceGroup": { "$ref": "./examples/StorageAccountListByResourceGroup.json" } + "StorageAccountListByResourceGroup": { + "$ref": "./examples/StorageAccountListByResourceGroup.json" + } }, "parameters": [ { @@ -365,7 +383,9 @@ "operationId": "StorageAccounts_ListKeys", "description": "Lists the access keys for the specified storage account.", "x-ms-examples": { - "StorageAccountListKeys": { "$ref": "./examples/StorageAccountListKeys.json" } + "StorageAccountListKeys": { + "$ref": "./examples/StorageAccountListKeys.json" + } }, "parameters": [ { @@ -405,7 +425,9 @@ "operationId": "StorageAccounts_RegenerateKey", "description": "Regenerates one of the access keys for the specified storage account.", "x-ms-examples": { - "StorageAccountRegenerateKey": { "$ref": "./examples/StorageAccountRegenerateKey.json" } + "StorageAccountRegenerateKey": { + "$ref": "./examples/StorageAccountRegenerateKey.json" + } }, "parameters": [ { @@ -454,7 +476,9 @@ "operationId": "Usage_List", "description": "Gets the current usage count and the limit for the resources under the subscription.", "x-ms-examples": { - "UsageList": { "$ref": "./examples/UsageList.json" } + "UsageList": { + "$ref": "./examples/UsageList.json" + } }, "parameters": [ { @@ -485,7 +509,9 @@ "operationId": "StorageAccounts_ListAccountSAS", "description": "List SAS credentials of a storage account.", "x-ms-examples": { - "StorageAccountListAccountSAS": { "$ref": "./examples/StorageAccountListAccountSAS.json" } + "StorageAccountListAccountSAS": { + "$ref": "./examples/StorageAccountListAccountSAS.json" + } }, "parameters": [ { @@ -534,7 +560,9 @@ "operationId": "StorageAccounts_ListServiceSAS", "description": "List service SAS credentials of a specific resource.", "x-ms-examples": { - "StorageAccountListServiceSAS": { "$ref": "./examples/StorageAccountListServiceSAS.json" } + "StorageAccountListServiceSAS": { + "$ref": "./examples/StorageAccountListServiceSAS.json" + } }, "parameters": [ { @@ -578,7 +606,7 @@ }, "definitions": { "OperationListResult": { - "description": "Result of the request to list Storage operations. It contains a list of operations and a URL link to get the next set of results.", + "description": "Result of the request to list Storage operations. It contains a list of operations and a URL link to get the next set of results.", "properties": { "value": { "type": "array", @@ -615,37 +643,34 @@ } }, "origin": { - "type" : "string", + "type": "string", "description": "The origin of operations." }, "properties": { "description": "Properties of operation, include metric specifications.", "x-ms-client-flatten": true, "x-ms-client-name": "OperationProperties", - "$ref" : "#/definitions/OperationProperties" + "$ref": "#/definitions/OperationProperties" } } }, - "OperationProperties": - { + "OperationProperties": { "description": "Properties of operation, include metric specifications.", "properties": { "serviceSpecification": { - "$ref" : "#/definitions/ServiceSpecification", + "$ref": "#/definitions/ServiceSpecification", "description": "One property of operation, include metric specifications." } } }, - "ServiceSpecification": - { + "ServiceSpecification": { "description": "One property of operation, include metric specifications.", "properties": { - "metricSpecifications": - { + "metricSpecifications": { "description": "Metric specifications of operation.", - "type":"array", + "type": "array", "items": { - "$ref" : "#/definitions/MetricSpecification" + "$ref": "#/definitions/MetricSpecification" } } } @@ -657,8 +682,7 @@ "type": "string", "description": "Name of metric specification." }, - "displayName": - { + "displayName": { "type": "string", "description": "Display name of metric specification." }, @@ -667,23 +691,22 @@ "description": "Display description of metric specification." }, "unit": { - "type" : "string", + "type": "string", "description": "Unit could be Bytes or Count." }, "dimensions": { "description": "Dimensions of blobs, including blob type and access tier.", - "type" : "array", + "type": "array", "items": { - "$ref" : "#/definitions/Dimension" + "$ref": "#/definitions/Dimension" } }, "aggregationType": { - "type" : "string", + "type": "string", "description": "Aggregation type could be Average." - } , - "fillGapWithZero": - { - "type" : "boolean", + }, + "fillGapWithZero": { + "type": "boolean", "description": "The property to decide fill gap with zero or not." }, "category": { @@ -699,12 +722,12 @@ "Dimension": { "description": "Dimension of blobs, possibly be blob type or access tier.", "properties": { - "name" : { - "type" : "string", + "name": { + "type": "string", "description": "Display name of dimension." }, - "displayName" : { - "type" : "string", + "displayName": { + "type": "string", "description": "Display name of dimension." } } @@ -717,7 +740,9 @@ }, "type": { "type": "string", - "enum": [ "Microsoft.Storage/storageAccounts" ], + "enum": [ + "Microsoft.Storage/storageAccounts" + ], "x-ms-enum": { "name": "Type", "modelAsString": false @@ -847,7 +872,7 @@ "modelAsString": false } }, - "resourceType":{ + "resourceType": { "readOnly": true, "type": "string", "description": "The type of the resource, usually it is 'storageAccounts'." @@ -951,21 +976,21 @@ "KeyVaultProperties": { "description": "Properties of key vault.", "properties": { - "keyname": { - "type": "string", - "description": "The name of KeyVault key.", - "x-ms-client-name": "KeyName" - }, - "keyversion": { - "type": "string", - "description": "The version of KeyVault key.", - "x-ms-client-name": "KeyVersion" - }, - "keyvaulturi": { - "type": "string", - "description": "The Uri of KeyVault.", - "x-ms-client-name": "KeyVaultUri" - } + "keyname": { + "type": "string", + "description": "The name of KeyVault key.", + "x-ms-client-name": "KeyName" + }, + "keyversion": { + "type": "string", + "description": "The version of KeyVault key.", + "x-ms-client-name": "KeyVersion" + }, + "keyvaulturi": { + "type": "string", + "description": "The Uri of KeyVault.", + "x-ms-client-name": "KeyVaultUri" + } } }, "Encryption": { @@ -985,7 +1010,7 @@ "name": "KeySource", "modelAsString": true }, - "default":"Microsoft.Storage" + "default": "Microsoft.Storage" }, "keyvaultproperties": { "$ref": "#/definitions/KeyVaultProperties", @@ -993,7 +1018,9 @@ "description": "Properties provided by key vault." } }, - "required": [ "keySource" ], + "required": [ + "keySource" + ], "description": "The encryption settings on the storage account." }, "VirtualNetworkRule": { @@ -1031,7 +1058,9 @@ "description": "Gets the state of virtual network rule." } }, - "required": [ "id" ], + "required": [ + "id" + ], "description": "Virtual Network rule." }, "IPRule": { @@ -1172,7 +1201,7 @@ } } }, - "required":[ + "required": [ "type" ], "description": "Identity for the resource." @@ -1729,7 +1758,7 @@ "properties": { "canonicalizedResource": { "type": "string", - "description" : "The canonical path to the signed resource." + "description": "The canonical path to the signed resource." }, "signedResource": { "type": "string", @@ -1897,13 +1926,13 @@ }, "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" - } + "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" + } } }, "security": [ diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/OperationsList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/OperationsList.json index e81de6aa42af..7ff215a7def4 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/OperationsList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/OperationsList.json @@ -470,4 +470,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/SKUList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/SKUList.json index fc14472c70c2..45d5fdc2c2d9 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/SKUList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/SKUList.json @@ -6451,4 +6451,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountCheckNameAvailability.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountCheckNameAvailability.json index 32e1ee908bf1..34bf2322d933 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountCheckNameAvailability.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountCheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountCreate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountCreate.json index 8c93d5d5ee1b..29e18e20794b 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountCreate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountCreate.json @@ -53,4 +53,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountDelete.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountDelete.json index b4877626a2d1..d7e190f9f6a9 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountGetProperties.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountGetProperties.json index 6e543e7d54ff..fa8d1e2619ea 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountGetProperties.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountGetProperties.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountList.json index 42f08815672c..b0c89703ffb7 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountList.json @@ -177,4 +177,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListAccountSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListAccountSAS.json index c36ee2ba9549..596cd17ada3a 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListAccountSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListAccountSAS.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListByResourceGroup.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListByResourceGroup.json index 97b36aa8402f..b12955ed44bb 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListByResourceGroup.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListByResourceGroup.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListKeys.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListKeys.json index 2b39cf260092..b267a39acda4 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListKeys.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListKeys.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListServiceSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListServiceSAS.json index 090d30afbbb5..6293bcfd2d99 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListServiceSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountListServiceSAS.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountRegenerateKey.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountRegenerateKey.json index 268fb59962e4..ac4d361bd0d8 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountRegenerateKey.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountRegenerateKey.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountUpdate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountUpdate.json index 3a8215d95255..eb1c0de8db9f 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountUpdate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/StorageAccountUpdate.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/UsageList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/UsageList.json index 985bb634e9b0..5a59a9f0cce8 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/UsageList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/UsageList.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/storage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/storage.json index a8bd85c0490b..7eed015718ae 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/storage.json @@ -28,7 +28,9 @@ "description": "Lists all of the available Storage Rest API operations.", "operationId": "Operations_List", "x-ms-examples": { - "OperationsList": { "$ref": "./examples/OperationsList.json" } + "OperationsList": { + "$ref": "./examples/OperationsList.json" + } }, "parameters": [ { @@ -56,7 +58,9 @@ "operationId": "Skus_List", "description": "Lists the available SKUs supported by Microsoft.Storage for given subscription.", "x-ms-examples": { - "SkuList": { "$ref": "./examples/SKUList.json" } + "SkuList": { + "$ref": "./examples/SKUList.json" + } }, "parameters": [ { @@ -87,7 +91,9 @@ "operationId": "StorageAccounts_CheckNameAvailability", "description": "Checks that the storage account name is valid and is not already in use.", "x-ms-examples": { - "StorageAccountCheckNameAvailability": { "$ref": "./examples/StorageAccountCheckNameAvailability.json" } + "StorageAccountCheckNameAvailability": { + "$ref": "./examples/StorageAccountCheckNameAvailability.json" + } }, "parameters": [ { @@ -124,7 +130,9 @@ "operationId": "StorageAccounts_Create", "description": "Asynchronously creates a new storage account with the specified parameters. If an account is already created and a subsequent create request is issued with different properties, the account properties will be updated. If an account is already created and a subsequent create or update request is issued with the exact same set of properties, the request will succeed.", "x-ms-examples": { - "StorageAccountCreate": { "$ref": "./examples/StorageAccountCreate.json" } + "StorageAccountCreate": { + "$ref": "./examples/StorageAccountCreate.json" + } }, "parameters": [ { @@ -175,7 +183,9 @@ "operationId": "StorageAccounts_Delete", "description": "Deletes a storage account in Microsoft Azure.", "x-ms-examples": { - "StorageAccountDelete": { "$ref": "./examples/StorageAccountDelete.json" } + "StorageAccountDelete": { + "$ref": "./examples/StorageAccountDelete.json" + } }, "parameters": [ { @@ -213,7 +223,9 @@ "operationId": "StorageAccounts_GetProperties", "description": "Returns the properties for the specified storage account including but not limited to name, SKU name, location, and account status. The ListKeys operation should be used to retrieve storage keys.", "x-ms-examples": { - "StorageAccountGetProperties": { "$ref": "./examples/StorageAccountGetProperties.json" } + "StorageAccountGetProperties": { + "$ref": "./examples/StorageAccountGetProperties.json" + } }, "parameters": [ { @@ -251,7 +263,9 @@ "operationId": "StorageAccounts_Update", "description": "The update operation can be used to update the SKU, encryption, access tier, or tags for a storage account. It can also be used to map the account to a custom domain. Only one custom domain is supported per storage account; the replacement/change of custom domain is not supported. In order to replace an old custom domain, the old value must be cleared/unregistered before a new value can be set. The update of multiple properties is supported. This call does not change the storage keys for the account. If you want to change the storage account keys, use the regenerate keys operation. The location and name of the storage account cannot be changed after creation.", "x-ms-examples": { - "StorageAccountUpdate": { "$ref": "./examples/StorageAccountUpdate.json" } + "StorageAccountUpdate": { + "$ref": "./examples/StorageAccountUpdate.json" + } }, "parameters": [ { @@ -300,7 +314,9 @@ "operationId": "StorageAccounts_List", "description": "Lists all the storage accounts available under the subscription. Note that storage keys are not returned; use the ListKeys operation for this.", "x-ms-examples": { - "StorageAccountList": { "$ref": "./examples/StorageAccountList.json" } + "StorageAccountList": { + "$ref": "./examples/StorageAccountList.json" + } }, "parameters": [ { @@ -331,7 +347,9 @@ "operationId": "StorageAccounts_ListByResourceGroup", "description": "Lists all the storage accounts available under the given resource group. Note that storage keys are not returned; use the ListKeys operation for this.", "x-ms-examples": { - "StorageAccountListByResourceGroup": { "$ref": "./examples/StorageAccountListByResourceGroup.json" } + "StorageAccountListByResourceGroup": { + "$ref": "./examples/StorageAccountListByResourceGroup.json" + } }, "parameters": [ { @@ -365,7 +383,9 @@ "operationId": "StorageAccounts_ListKeys", "description": "Lists the access keys for the specified storage account.", "x-ms-examples": { - "StorageAccountListKeys": { "$ref": "./examples/StorageAccountListKeys.json" } + "StorageAccountListKeys": { + "$ref": "./examples/StorageAccountListKeys.json" + } }, "parameters": [ { @@ -405,7 +425,9 @@ "operationId": "StorageAccounts_RegenerateKey", "description": "Regenerates one of the access keys for the specified storage account.", "x-ms-examples": { - "StorageAccountRegenerateKey": { "$ref": "./examples/StorageAccountRegenerateKey.json" } + "StorageAccountRegenerateKey": { + "$ref": "./examples/StorageAccountRegenerateKey.json" + } }, "parameters": [ { @@ -454,7 +476,9 @@ "operationId": "Usage_List", "description": "Gets the current usage count and the limit for the resources under the subscription.", "x-ms-examples": { - "UsageList": { "$ref": "./examples/UsageList.json" } + "UsageList": { + "$ref": "./examples/UsageList.json" + } }, "parameters": [ { @@ -485,7 +509,9 @@ "operationId": "StorageAccounts_ListAccountSAS", "description": "List SAS credentials of a storage account.", "x-ms-examples": { - "StorageAccountListAccountSAS": { "$ref": "./examples/StorageAccountListAccountSAS.json" } + "StorageAccountListAccountSAS": { + "$ref": "./examples/StorageAccountListAccountSAS.json" + } }, "parameters": [ { @@ -534,7 +560,9 @@ "operationId": "StorageAccounts_ListServiceSAS", "description": "List service SAS credentials of a specific resource.", "x-ms-examples": { - "StorageAccountListServiceSAS": { "$ref": "./examples/StorageAccountListServiceSAS.json" } + "StorageAccountListServiceSAS": { + "$ref": "./examples/StorageAccountListServiceSAS.json" + } }, "parameters": [ { @@ -578,7 +606,7 @@ }, "definitions": { "OperationListResult": { - "description": "Result of the request to list Storage operations. It contains a list of operations and a URL link to get the next set of results.", + "description": "Result of the request to list Storage operations. It contains a list of operations and a URL link to get the next set of results.", "properties": { "value": { "type": "array", @@ -615,37 +643,34 @@ } }, "origin": { - "type" : "string", + "type": "string", "description": "The origin of operations." }, "properties": { "description": "Properties of operation, include metric specifications.", "x-ms-client-flatten": true, "x-ms-client-name": "OperationProperties", - "$ref" : "#/definitions/OperationProperties" + "$ref": "#/definitions/OperationProperties" } } }, - "OperationProperties": - { + "OperationProperties": { "description": "Properties of operation, include metric specifications.", "properties": { "serviceSpecification": { - "$ref" : "#/definitions/ServiceSpecification", + "$ref": "#/definitions/ServiceSpecification", "description": "One property of operation, include metric specifications." } } }, - "ServiceSpecification": - { + "ServiceSpecification": { "description": "One property of operation, include metric specifications.", "properties": { - "metricSpecifications": - { + "metricSpecifications": { "description": "Metric specifications of operation.", - "type":"array", + "type": "array", "items": { - "$ref" : "#/definitions/MetricSpecification" + "$ref": "#/definitions/MetricSpecification" } } } @@ -657,8 +682,7 @@ "type": "string", "description": "Name of metric specification." }, - "displayName": - { + "displayName": { "type": "string", "description": "Display name of metric specification." }, @@ -667,23 +691,22 @@ "description": "Display description of metric specification." }, "unit": { - "type" : "string", + "type": "string", "description": "Unit could be Bytes or Count." }, "dimensions": { "description": "Dimensions of blobs, including blob type and access tier.", - "type" : "array", + "type": "array", "items": { - "$ref" : "#/definitions/Dimension" + "$ref": "#/definitions/Dimension" } }, "aggregationType": { - "type" : "string", + "type": "string", "description": "Aggregation type could be Average." - } , - "fillGapWithZero": - { - "type" : "boolean", + }, + "fillGapWithZero": { + "type": "boolean", "description": "The property to decide fill gap with zero or not." }, "category": { @@ -699,12 +722,12 @@ "Dimension": { "description": "Dimension of blobs, possibly be blob type or access tier.", "properties": { - "name" : { - "type" : "string", + "name": { + "type": "string", "description": "Display name of dimension." }, - "displayName" : { - "type" : "string", + "displayName": { + "type": "string", "description": "Display name of dimension." } } @@ -717,7 +740,9 @@ }, "type": { "type": "string", - "enum": [ "Microsoft.Storage/storageAccounts" ], + "enum": [ + "Microsoft.Storage/storageAccounts" + ], "x-ms-enum": { "name": "Type", "modelAsString": false @@ -847,7 +872,7 @@ "modelAsString": false } }, - "resourceType":{ + "resourceType": { "readOnly": true, "type": "string", "description": "The type of the resource, usually it is 'storageAccounts'." @@ -952,21 +977,21 @@ "KeyVaultProperties": { "description": "Properties of key vault.", "properties": { - "keyname": { - "type": "string", - "description": "The name of KeyVault key.", - "x-ms-client-name": "KeyName" - }, - "keyversion": { - "type": "string", - "description": "The version of KeyVault key.", - "x-ms-client-name": "KeyVersion" - }, - "keyvaulturi": { - "type": "string", - "description": "The Uri of KeyVault.", - "x-ms-client-name": "KeyVaultUri" - } + "keyname": { + "type": "string", + "description": "The name of KeyVault key.", + "x-ms-client-name": "KeyName" + }, + "keyversion": { + "type": "string", + "description": "The version of KeyVault key.", + "x-ms-client-name": "KeyVersion" + }, + "keyvaulturi": { + "type": "string", + "description": "The Uri of KeyVault.", + "x-ms-client-name": "KeyVaultUri" + } } }, "Encryption": { @@ -986,7 +1011,7 @@ "name": "KeySource", "modelAsString": true }, - "default":"Microsoft.Storage" + "default": "Microsoft.Storage" }, "keyvaultproperties": { "$ref": "#/definitions/KeyVaultProperties", @@ -994,7 +1019,9 @@ "description": "Properties provided by key vault." } }, - "required": [ "keySource" ], + "required": [ + "keySource" + ], "description": "The encryption settings on the storage account." }, "VirtualNetworkRule": { @@ -1032,7 +1059,9 @@ "description": "Gets the state of virtual network rule." } }, - "required": [ "id" ], + "required": [ + "id" + ], "description": "Virtual Network rule." }, "IPRule": { @@ -1173,7 +1202,7 @@ } } }, - "required":[ + "required": [ "type" ], "description": "Identity for the resource." @@ -1745,7 +1774,7 @@ "properties": { "canonicalizedResource": { "type": "string", - "description" : "The canonical path to the signed resource." + "description": "The canonical path to the signed resource." }, "signedResource": { "type": "string", @@ -1913,13 +1942,13 @@ }, "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" - } + "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" + } } }, "security": [ diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/blob.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/blob.json index 81fb16b4d0c8..8c529a3472c5 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/blob.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/blob.json @@ -1,1071 +1,1071 @@ - { - "swagger": "2.0", - "info": { - "version": "2018-02-01", - "title": "StorageManagementClient", - "description": "The Azure Storage Management API." - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers": { - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_List", - "x-ms-examples": { - "ListContainers": { - "$ref": "./examples/BlobContainersList.json" - } +{ + "swagger": "2.0", + "info": { + "version": "2018-02-01", + "title": "StorageManagementClient", + "description": "The Azure Storage Management API." + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers": { + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_List", + "x-ms-examples": { + "ListContainers": { + "$ref": "./examples/BlobContainersList.json" + } + }, + "description": "Lists all containers and does not support a prefix like data plane. Also SRP today does not return continuation token.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Lists all containers and does not support a prefix like data plane. Also SRP today does not return continuation token.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- List Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/ListContainerItems" - } + { + "$ref": "#/parameters/AccountName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- List Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/ListContainerItems" } } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}": { - "put": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Create", - "x-ms-examples": { - "PutContainers": { - "$ref": "./examples/BlobContainersPut.json" - } - }, - "description": "Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "name": "blobContainer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BlobContainer" - }, - "description": "Properties of the blob container to create." - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "201": { - "description": "Created -- Create Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}": { + "put": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Create", + "x-ms-examples": { + "PutContainers": { + "$ref": "./examples/BlobContainersPut.json" } }, - "patch": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Update", - "x-ms-examples": { - "UpdateContainers": { - "$ref": "./examples/BlobContainersPatch.json" - } + "description": "Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Updates container properties as specified in request body. Properties not mentioned in the request will be unchanged. Update fails if the specified container doesn't already exist. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "name": "blobContainer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BlobContainer" - }, - "description": "Properties to update for the blob container." - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Update Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer", - "description": "Properties of the updated blob container." - } - } - } - }, - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Get", - "x-ms-examples": { - "GetContainers": { - "$ref": "./examples/BlobContainersGet.json" - } + { + "$ref": "#/parameters/AccountName" }, - "description": "Gets properties of a specified container. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "$ref": "#/parameters/ContainerName" + }, + { + "name": "blobContainer", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BlobContainer" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Get Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } + "description": "Properties of the blob container to create." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "201": { + "description": "Created -- Create Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer" } } + } + }, + "patch": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Update", + "x-ms-examples": { + "UpdateContainers": { + "$ref": "./examples/BlobContainersPatch.json" + } }, - "delete": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Delete", - "x-ms-examples": { - "DeleteContainers": { - "$ref": "./examples/BlobContainersDelete.json" - } + "description": "Updates container properties as specified in request body. Properties not mentioned in the request will be unchanged. Update fails if the specified container doesn't already exist. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Deletes specified container under its account.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Delete Container operation completed successfully." + { + "$ref": "#/parameters/AccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "name": "blobContainer", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BlobContainer" }, - "204": { - "description": "No Content -- The Container not exist." + "description": "Properties to update for the blob container." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Update Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer", + "description": "Properties of the updated blob container." } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_SetLegalHold", - "x-ms-examples": { - "SetLegalHoldContainers": { - "$ref": "./examples/BlobContainersSetLegalHold.json" - } + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Get", + "x-ms-examples": { + "GetContainers": { + "$ref": "./examples/BlobContainersGet.json" + } + }, + "description": "Gets properties of a specified container. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows an append pattern and does not clear out the existing tags that are not specified in the request.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "LegalHold", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LegalHold" - }, - "description": "The LegalHold property that will be set to a blob container." - } - ], - "responses": { - "200": { - "description": "OK -- Set legal hold tags for Container completed successfully.", - "schema": { - "$ref": "#/definitions/LegalHold" - } + { + "$ref": "#/parameters/AccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Get Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer" } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_ClearLegalHold", - "x-ms-examples": { - "ClearLegalHoldContainers": { - "$ref": "./examples/BlobContainersClearLegalHold.json" - } + "delete": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Delete", + "x-ms-examples": { + "DeleteContainers": { + "$ref": "./examples/BlobContainersDelete.json" + } + }, + "description": "Deletes specified container under its account.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Clears legal hold tags. Clearing the same or non-existent tag results in an idempotent operation. ClearLegalHold clears out only the specified tags in the request.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "LegalHold", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LegalHold" - }, - "description": "The LegalHold property that will be clear from a blob container." - } - ], - "responses": { - "200": { - "description": "OK -- Clear legal hold tags for Container completed successfully.", - "schema": { - "$ref": "#/definitions/LegalHold" - } - } + { + "$ref": "#/parameters/AccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Delete Container operation completed successfully." + }, + "204": { + "description": "No Content -- The Container not exist." } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}": { - "put": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_CreateOrUpdateImmutabilityPolicy", - "x-ms-examples": { - "CreateOrUpdateImmutabilityPolicy": { - "$ref": "./examples/BlobContainersPutImmutabilityPolicy.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_SetLegalHold", + "x-ms-examples": { + "SetLegalHoldContainers": { + "$ref": "./examples/BlobContainersSetLegalHold.json" + } + }, + "description": "Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows an append pattern and does not clear out the existing tags that are not specified in the request.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Creates or updates an unlocked immutability policy. ETag in If-Match is honored if given but not required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "description": "The ImmutabilityPolicy Properties that will be created or updated to a blob container." + { + "$ref": "#/parameters/AccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "LegalHold", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LegalHold" }, - { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Creates or updates container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } - } + "description": "The LegalHold property that will be set to a blob container." + } + ], + "responses": { + "200": { + "description": "OK -- Set legal hold tags for Container completed successfully.", + "schema": { + "$ref": "#/definitions/LegalHold" } } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_ClearLegalHold", + "x-ms-examples": { + "ClearLegalHoldContainers": { + "$ref": "./examples/BlobContainersClearLegalHold.json" + } }, - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_GetImmutabilityPolicy", - "x-ms-examples": { - "GetImmutabilityPolicy": { - "$ref": "./examples/BlobContainersGetImmutabilityPolicy.json" - } + "description": "Clears legal hold tags. Clearing the same or non-existent tag results in an idempotent operation. ClearLegalHold clears out only the specified tags in the request.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Gets the existing immutability policy along with the corresponding ETag in response headers and body.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "#/parameters/AccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "LegalHold", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LegalHold" }, - { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Gets container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } - } + "description": "The LegalHold property that will be clear from a blob container." + } + ], + "responses": { + "200": { + "description": "OK -- Clear legal hold tags for Container completed successfully.", + "schema": { + "$ref": "#/definitions/LegalHold" } } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}": { + "put": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_CreateOrUpdateImmutabilityPolicy", + "x-ms-examples": { + "CreateOrUpdateImmutabilityPolicy": { + "$ref": "./examples/BlobContainersPutImmutabilityPolicy.json" + } }, - "delete": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_DeleteImmutabilityPolicy", - "x-ms-examples": { - "DeleteImmutabilityPolicy": { - "$ref": "./examples/BlobContainersDeleteImmutabilityPolicy.json" - } + "description": "Creates or updates an unlocked immutability policy. ETag in If-Match is honored if given but not required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is not allowed, only way is to delete the container after deleting all blobs inside the container.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "#/parameters/AccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Deletes container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "description": "The ImmutabilityPolicy Properties that will be created or updated to a blob container." + }, + { + "name": "If-Match", + "in": "header", + "required": false, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Creates or updates container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" + }, + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_LockImmutabilityPolicy", - "x-ms-examples": { - "LockImmutabilityPolicy": { - "$ref": "./examples/BlobContainersLockImmutabilityPolicy.json" - } + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_GetImmutabilityPolicy", + "x-ms-examples": { + "GetImmutabilityPolicy": { + "$ref": "./examples/BlobContainersGetImmutabilityPolicy.json" + } + }, + "description": "Gets the existing immutability policy along with the corresponding ETag in response headers and body.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Sets the ImmutabilityPolicy to Locked state. The only action allowed on a Locked policy is ExtendImmutabilityPolicy action. ETag in If-Match is required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Locks container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + { + "$ref": "#/parameters/AccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": false, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Gets container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" + }, + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_ExtendImmutabilityPolicy", - "x-ms-examples": { - "ExtendImmutabilityPolicy": { - "$ref": "./examples/BlobContainersExtendImmutabilityPolicy.json" - } + "delete": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_DeleteImmutabilityPolicy", + "x-ms-examples": { + "DeleteImmutabilityPolicy": { + "$ref": "./examples/BlobContainersDeleteImmutabilityPolicy.json" + } + }, + "description": "Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is not allowed, only way is to delete the container after deleting all blobs inside the container.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Extends the immutabilityPeriodSinceCreationInDays of a locked immutabilityPolicy. The only action allowed on a Locked policy will be this action. ETag in If-Match is required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "description": "The ImmutabilityPolicy Properties that will be extended for a blob container." - }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Extends container ImmutabilityPolicy operation completed successfully..", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + { + "$ref": "#/parameters/AccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Deletes container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" + }, + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } - }, - "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Lease", - "x-ms-examples": { - "Acquire a lease on a container": { - "$ref": "./examples/BlobContainersLease_Acquire.json" - }, - "Break a lease on a container": { - "$ref": "./examples/BlobContainersLease_Break.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_LockImmutabilityPolicy", + "x-ms-examples": { + "LockImmutabilityPolicy": { + "$ref": "./examples/BlobContainersLockImmutabilityPolicy.json" + } + }, + "description": "Sets the ImmutabilityPolicy to Locked state. The only action allowed on a Locked policy is ExtendImmutabilityPolicy action. ETag in If-Match is required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "The Lease Container operation establishes and manages a lock on a container for delete operations. The lock duration can be 15 to 60 seconds, or can be infinite.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "#/parameters/AccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/LeaseContainerRequest" - }, - "description": "Lease Container request body." - } - ], - "responses": { - "200": { - "description": "OK -- Lease Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/LeaseContainerResponse" + { + "$ref": "#/parameters/AccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Locks container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" + }, + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } } }, - "definitions": { - "ContainerProperties": { - "properties": { - "publicAccess": { - "type": "string", - "enum": [ - "Container", - "Blob", - "None" - ], - "x-ms-enum": { - "name": "PublicAccess", - "modelAsString": false - }, - "description": "Specifies whether data in the container may be accessed publicly and the level of access." + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_ExtendImmutabilityPolicy", + "x-ms-examples": { + "ExtendImmutabilityPolicy": { + "$ref": "./examples/BlobContainersExtendImmutabilityPolicy.json" + } + }, + "description": "Extends the immutabilityPeriodSinceCreationInDays of a locked immutabilityPolicy. The only action allowed on a Locked policy will be this action. ETag in If-Match is required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "lastModifiedTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the container was last modified." + { + "$ref": "#/parameters/AccountName" }, - "leaseStatus": { - "type": "string", - "readOnly": true, - "enum": [ - "Locked", - "Unlocked" - ], - "x-ms-enum": { - "name": "LeaseStatus", - "modelAsString": true - }, - "description": "The lease status of the container." + { + "$ref": "#/parameters/ContainerName" }, - "leaseState": { - "type": "string", - "readOnly": true, - "enum": [ - "Available", - "Leased", - "Expired", - "Breaking", - "Broken" - ], - "x-ms-enum": { - "name": "LeaseState", - "modelAsString": true - }, - "description": "Lease state of the container." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, - "leaseDuration": { - "type": "string", - "readOnly": true, - "enum": [ - "Infinite", - "Fixed" - ], - "x-ms-enum": { - "name": "LeaseDuration", - "modelAsString": true - }, - "description": "Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, - "metadata": { - "type": "object", - "additionalProperties": { - "type": "string" + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - "description": "A name-value pair to associate with the container as metadata." - }, - "immutabilityPolicy": { - "readOnly": true, - "$ref": "#/definitions/ImmutabilityPolicyProperties", - "x-ms-client-name": "ImmutabilityPolicy", - "description": "The ImmutabilityPolicy property of the container." - }, - "legalHold": { - "readOnly": true, - "$ref": "#/definitions/LegalHoldProperties", - "description": "The LegalHold property of the container." - }, - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "hasImmutabilityPolicy": { - "type": "boolean", - "readOnly": true, - "description": "The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container." - } - }, - "description": "The properties of a container." - }, - "BlobContainer": { - "properties": { - "properties": { - "$ref": "#/definitions/ContainerProperties", - "x-ms-client-flatten": true, - "x-ms-client-name": "ContainerProperties", - "description": "Properties of the blob container." - } - }, - "allOf": [ + "description": "The ImmutabilityPolicy Properties that will be extended for a blob container." + }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." } ], - "description": "Properties of the blob container, including Id, resource name, resource type, Etag." - }, - "ImmutabilityPolicyProperty": { - "properties": { - "immutabilityPeriodSinceCreationInDays": { - "type": "integer", - "description": "The immutability period for the blobs in the container since the policy creation, in days." - }, - "state": { - "type": "string", - "readOnly": true, - "enum": [ - "Locked", - "Unlocked" - ], - "x-ms-enum": { - "name": "ImmutabilityPolicyState", - "modelAsString": true - }, - "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked." + "responses": { + "200": { + "description": "OK -- Extends container ImmutabilityPolicy operation completed successfully..", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" + }, + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" + } + } } - }, - "required": [ - "immutabilityPeriodSinceCreationInDays" + } + } + }, + "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease": { + "post": { + "tags": [ + "BlobContainers" ], - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "ImmutabilityPolicyProperties": { - "properties": { - "properties": { - "$ref": "#/definitions/ImmutabilityPolicyProperty", - "x-ms-client-flatten": true, - "description": "The properties of an ImmutabilityPolicy of a blob container." + "operationId": "BlobContainers_Lease", + "x-ms-examples": { + "Acquire a lease on a container": { + "$ref": "./examples/BlobContainersLease_Acquire.json" }, - "etag": { - "type": "string", - "readOnly": true, - "description": "ImmutabilityPolicy Etag." - }, - "updateHistory": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/UpdateHistoryProperty" - }, - "description": "The ImmutabilityPolicy update history of the blob container." + "Break a lease on a container": { + "$ref": "./examples/BlobContainersLease_Break.json" } }, - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "ImmutabilityPolicy": { - "properties": { - "properties": { - "$ref": "#/definitions/ImmutabilityPolicyProperty", - "x-ms-client-flatten": true, - "description": "The properties of an ImmutabilityPolicy of a blob container." - } - }, - "allOf": [ + "description": "The Lease Container operation establishes and manages a lock on a container for delete operations. The lock duration can be 15 to 60 seconds, or can be infinite.", + "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "required": [ - "properties" - ], - "description": "The ImmutabilityPolicy property of a blob container, including Id, resource name, resource type, Etag." - }, - "UpdateHistoryProperty": { - "properties": { - "update": { - "type": "string", - "readOnly": true, - "enum": [ - "put", - "lock", - "extend" - ], - "x-ms-enum": { - "name": "ImmutabilityPolicyUpdateType", - "modelAsString": true - }, - "description": "The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend." + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "immutabilityPeriodSinceCreationInDays": { - "type": "integer", - "readOnly": true, - "description": "The immutability period for the blobs in the container since the policy creation, in days." + { + "$ref": "#/parameters/AccountName" }, - "timestamp": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the ImmutabilityPolicy was updated." + { + "$ref": "#/parameters/ContainerName" }, - "objectIdentifier": { - "type": "string", - "readOnly": true, - "description": "Returns the Object ID of the user who updated the ImmutabilityPolicy." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, - "tenantId": { - "type": "string", - "readOnly": true, - "description": "Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, - "upn": { - "type": "string", - "readOnly": true, - "description": "Returns the User Principal Name of the user who updated the ImmutabilityPolicy." - } - }, - "description": "An update history of the ImmutabilityPolicy of a blob container." - }, - "LegalHoldProperties": { - "properties": { - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "tags": { - "type": "array", - "items": { - "$ref": "#/definitions/TagProperty" + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/LeaseContainerRequest" }, - "description": "The list of LegalHold tags of a blob container." + "description": "Lease Container request body." + } + ], + "responses": { + "200": { + "description": "OK -- Lease Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/LeaseContainerResponse" + } } + } + } + } + }, + "definitions": { + "ContainerProperties": { + "properties": { + "publicAccess": { + "type": "string", + "enum": [ + "Container", + "Blob", + "None" + ], + "x-ms-enum": { + "name": "PublicAccess", + "modelAsString": false + }, + "description": "Specifies whether data in the container may be accessed publicly and the level of access." }, - "description": "The LegalHold property of a blob container." - }, - "TagProperty": { - "properties": { - "tag": { - "type": "string", - "readOnly": true, - "description": "The tag value." + "lastModifiedTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the container was last modified." + }, + "leaseStatus": { + "type": "string", + "readOnly": true, + "enum": [ + "Locked", + "Unlocked" + ], + "x-ms-enum": { + "name": "LeaseStatus", + "modelAsString": true }, - "timestamp": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the tag was added." + "description": "The lease status of the container." + }, + "leaseState": { + "type": "string", + "readOnly": true, + "enum": [ + "Available", + "Leased", + "Expired", + "Breaking", + "Broken" + ], + "x-ms-enum": { + "name": "LeaseState", + "modelAsString": true }, - "objectIdentifier": { - "type": "string", - "readOnly": true, - "description": "Returns the Object ID of the user who added the tag." + "description": "Lease state of the container." + }, + "leaseDuration": { + "type": "string", + "readOnly": true, + "enum": [ + "Infinite", + "Fixed" + ], + "x-ms-enum": { + "name": "LeaseDuration", + "modelAsString": true }, - "tenantId": { - "type": "string", - "readOnly": true, - "description": "Returns the Tenant ID that issued the token for the user who added the tag." + "description": "Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased." + }, + "metadata": { + "type": "object", + "additionalProperties": { + "type": "string" }, - "upn": { - "type": "string", - "readOnly": true, - "description": "Returns the User Principal Name of the user who added the tag." - } + "description": "A name-value pair to associate with the container as metadata." }, - "description": "A tag of the LegalHold of a blob container." - }, - "LegalHold": { - "properties": { - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "tags": { - "type": "array", - "items": { - "type": "string", - "maxLength": 23, - "minLength": 3 - }, - "description": "Each tag should be 3 to 23 alphanumeric characters and is normalized to lower case at SRP." - } + "immutabilityPolicy": { + "readOnly": true, + "$ref": "#/definitions/ImmutabilityPolicyProperties", + "x-ms-client-name": "ImmutabilityPolicy", + "description": "The ImmutabilityPolicy property of the container." }, - "required": [ - "tags" - ], - "description": "The LegalHold property of a blob container." + "legalHold": { + "readOnly": true, + "$ref": "#/definitions/LegalHoldProperties", + "description": "The LegalHold property of the container." + }, + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." + }, + "hasImmutabilityPolicy": { + "type": "boolean", + "readOnly": true, + "description": "The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container." + } }, - "ListContainerItem": { + "description": "The properties of a container." + }, + "BlobContainer": { + "properties": { "properties": { - "properties": { - "$ref": "#/definitions/ContainerProperties", - "x-ms-client-flatten": true, - "description": "The blob container properties be listed out." - } + "$ref": "#/definitions/ContainerProperties", + "x-ms-client-flatten": true, + "x-ms-client-name": "ContainerProperties", + "description": "Properties of the blob container." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "description": "Properties of the blob container, including Id, resource name, resource type, Etag." + }, + "ImmutabilityPolicyProperty": { + "properties": { + "immutabilityPeriodSinceCreationInDays": { + "type": "integer", + "description": "The immutability period for the blobs in the container since the policy creation, in days." }, - "allOf": [ - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "description": "The blob container properties be listed out." + "state": { + "type": "string", + "readOnly": true, + "enum": [ + "Locked", + "Unlocked" + ], + "x-ms-enum": { + "name": "ImmutabilityPolicyState", + "modelAsString": true + }, + "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked." + } }, - "ListContainerItems": { + "required": [ + "immutabilityPeriodSinceCreationInDays" + ], + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "ImmutabilityPolicyProperties": { + "properties": { "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ListContainerItem" - }, - "description": "The list of blob containers." - } + "$ref": "#/definitions/ImmutabilityPolicyProperty", + "x-ms-client-flatten": true, + "description": "The properties of an ImmutabilityPolicy of a blob container." }, - "description": "The list of blob containers." + "etag": { + "type": "string", + "readOnly": true, + "description": "ImmutabilityPolicy Etag." + }, + "updateHistory": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/UpdateHistoryProperty" + }, + "description": "The ImmutabilityPolicy update history of the blob container." + } }, - "LeaseContainerRequest": { + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "ImmutabilityPolicy": { + "properties": { "properties": { - "action": { - "type": "string", - "enum": [ - "Acquire", - "Renew", - "Change", - "Release", - "Break" - ], - "description": "Specifies the lease action. Can be one of the available actions." - }, - "leaseId": { - "type": "string", - "description": "Identifies the lease. Can be specified in any valid GUID string format." - }, - "breakPeriod": { - "type": "integer", - "description": "Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60." + "$ref": "#/definitions/ImmutabilityPolicyProperty", + "x-ms-client-flatten": true, + "description": "The properties of an ImmutabilityPolicy of a blob container." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "required": [ + "properties" + ], + "description": "The ImmutabilityPolicy property of a blob container, including Id, resource name, resource type, Etag." + }, + "UpdateHistoryProperty": { + "properties": { + "update": { + "type": "string", + "readOnly": true, + "enum": [ + "put", + "lock", + "extend" + ], + "x-ms-enum": { + "name": "ImmutabilityPolicyUpdateType", + "modelAsString": true }, - "leaseDuration": { - "type": "integer", - "description": "Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires." + "description": "The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend." + }, + "immutabilityPeriodSinceCreationInDays": { + "type": "integer", + "readOnly": true, + "description": "The immutability period for the blobs in the container since the policy creation, in days." + }, + "timestamp": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the ImmutabilityPolicy was updated." + }, + "objectIdentifier": { + "type": "string", + "readOnly": true, + "description": "Returns the Object ID of the user who updated the ImmutabilityPolicy." + }, + "tenantId": { + "type": "string", + "readOnly": true, + "description": "Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy." + }, + "upn": { + "type": "string", + "readOnly": true, + "description": "Returns the User Principal Name of the user who updated the ImmutabilityPolicy." + } + }, + "description": "An update history of the ImmutabilityPolicy of a blob container." + }, + "LegalHoldProperties": { + "properties": { + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." + }, + "tags": { + "type": "array", + "items": { + "$ref": "#/definitions/TagProperty" }, - "proposedLeaseId": { - "type": "string", - "description": "Optional for acquire, required for change. Proposed lease ID, in a GUID string format." - } + "description": "The list of LegalHold tags of a blob container." + } + }, + "description": "The LegalHold property of a blob container." + }, + "TagProperty": { + "properties": { + "tag": { + "type": "string", + "readOnly": true, + "description": "The tag value." }, - "required": [ - "action" - ], - "description": "Lease Container request schema." + "timestamp": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the tag was added." + }, + "objectIdentifier": { + "type": "string", + "readOnly": true, + "description": "Returns the Object ID of the user who added the tag." + }, + "tenantId": { + "type": "string", + "readOnly": true, + "description": "Returns the Tenant ID that issued the token for the user who added the tag." + }, + "upn": { + "type": "string", + "readOnly": true, + "description": "Returns the User Principal Name of the user who added the tag." + } }, - "LeaseContainerResponse": { - "properties": { - "leaseId": { + "description": "A tag of the LegalHold of a blob container." + }, + "LegalHold": { + "properties": { + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." + }, + "tags": { + "type": "array", + "items": { "type": "string", - "description": "Returned unique lease ID that must be included with any request to delete the container, or to renew, change, or release the lease." + "maxLength": 23, + "minLength": 3 }, - "leaseTimeSeconds": { - "type": "string", - "description": "Approximate time remaining in the lease period, in seconds." - } - }, - "description": "Lease Container response schema." - } + "description": "Each tag should be 3 to 23 alphanumeric characters and is normalized to lower case at SRP." + } + }, + "required": [ + "tags" + ], + "description": "The LegalHold property of a blob container." + }, + "ListContainerItem": { + "properties": { + "properties": { + "$ref": "#/definitions/ContainerProperties", + "x-ms-client-flatten": true, + "description": "The blob container properties be listed out." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "description": "The blob container properties be listed out." }, - "parameters": { - "AccountName": { - "name": "accountName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.", - "maxLength": 24, - "minLength": 3, - "x-ms-parameter-location": "method" + "ListContainerItems": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ListContainerItem" + }, + "description": "The list of blob containers." + } }, - "ContainerName": { - "name": "containerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.", - "maxLength": 63, - "minLength": 3, - "x-ms-parameter-location": "method" + "description": "The list of blob containers." + }, + "LeaseContainerRequest": { + "properties": { + "action": { + "type": "string", + "enum": [ + "Acquire", + "Renew", + "Change", + "Release", + "Break" + ], + "description": "Specifies the lease action. Can be one of the available actions." + }, + "leaseId": { + "type": "string", + "description": "Identifies the lease. Can be specified in any valid GUID string format." + }, + "breakPeriod": { + "type": "integer", + "description": "Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60." + }, + "leaseDuration": { + "type": "integer", + "description": "Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires." + }, + "proposedLeaseId": { + "type": "string", + "description": "Optional for acquire, required for change. Proposed lease ID, in a GUID string format." + } }, - "ImmutabilityPolicyName": { - "name": "immutabilityPolicyName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'", - "enum":[ - "default" - ], - "x-ms-parameter-location": "method" - } + "required": [ + "action" + ], + "description": "Lease Container request schema." }, - "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" + "LeaseContainerResponse": { + "properties": { + "leaseId": { + "type": "string", + "description": "Returned unique lease ID that must be included with any request to delete the container, or to renew, change, or release the lease." + }, + "leaseTimeSeconds": { + "type": "string", + "description": "Approximate time remaining in the lease period, in seconds." } - } + }, + "description": "Lease Container response schema." + } + }, + "parameters": { + "AccountName": { + "name": "accountName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.", + "maxLength": 24, + "minLength": 3, + "x-ms-parameter-location": "method" + }, + "ContainerName": { + "name": "containerName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.", + "maxLength": 63, + "minLength": 3, + "x-ms-parameter-location": "method" }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "ImmutabilityPolicyName": { + "name": "immutabilityPolicyName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'", + "enum": [ + "default" + ], + "x-ms-parameter-location": "method" + } + }, + "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" } - ] - } \ No newline at end of file + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersClearLegalHold.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersClearLegalHold.json index 7034d3fffe3c..d06c91922930 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersClearLegalHold.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersClearLegalHold.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersDelete.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersDelete.json index 8f3553566378..5c8cf55a654d 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersDelete.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersExtendImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersExtendImmutabilityPolicy.json index de5928904dd3..a2780072ef05 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersExtendImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersExtendImmutabilityPolicy.json @@ -4,7 +4,7 @@ "resourceGroupName": "res6238", "accountName": "sto232", "containerName": "container5023", - "If-Match": "\"8d59f830d0c3bf9\"", + "If-Match": "\"8d59f830d0c3bf9\"", "api-version": "2018-02-01", "monitor": "true", "parameters": { @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersGet.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersGet.json index dfcdd715f1a1..0c2a79fe4a16 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersGet.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersGet.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersGetImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersGetImmutabilityPolicy.json index b4832e1a531b..c4c8c39c17d9 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersGetImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersGetImmutabilityPolicy.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLease_Acquire.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLease_Acquire.json index 4d1e6f7613d0..9d3777d97d2c 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLease_Acquire.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLease_Acquire.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLease_Break.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLease_Break.json index e14bdc92d3b3..1088477615bf 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLease_Break.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLease_Break.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersList.json index a37be2da97f0..1d3d7233ef7d 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersList.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLockImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLockImmutabilityPolicy.json index bf2d99c923ee..d7f5b9d0df3d 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLockImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersLockImmutabilityPolicy.json @@ -4,7 +4,7 @@ "resourceGroupName": "res2702", "accountName": "sto5009", "containerName": "container1631", - "If-Match": "\"8d59f825b721dd3\"", + "If-Match": "\"8d59f825b721dd3\"", "api-version": "2018-02-01", "monitor": "true" }, @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPatch.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPatch.json index 2b878d194e0d..d5685b3ef601 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPatch.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPatch.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPut.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPut.json index 649e2422b75f..eda6ba19fe15 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPut.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPut.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPutImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPutImmutabilityPolicy.json index d11c06313f81..f2ea8e6a5891 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPutImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersPutImmutabilityPolicy.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersSetLegalHold.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersSetLegalHold.json index f5a488a2e762..271963e4ceb5 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersSetLegalHold.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/BlobContainersSetLegalHold.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/OperationsList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/OperationsList.json index 687c60b969e4..d923f361f3fd 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/OperationsList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/OperationsList.json @@ -470,4 +470,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/SKUList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/SKUList.json index 855771666292..a994c9992dd6 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/SKUList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/SKUList.json @@ -6451,4 +6451,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountCheckNameAvailability.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountCheckNameAvailability.json index e14b1b1b8a20..1cac26c79a66 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountCheckNameAvailability.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountCheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountCreate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountCreate.json index fb48db0af159..e1b195751561 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountCreate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountCreate.json @@ -59,4 +59,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountDelete.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountDelete.json index 1611fc7a5a29..589a6bd99a85 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountGetProperties.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountGetProperties.json index 3a4e56baa292..9521e1fdceff 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountGetProperties.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountGetProperties.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountList.json index aaf1f6e7fe0f..78d650f5094e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountList.json @@ -180,4 +180,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListAccountSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListAccountSAS.json index f518bb837e5b..20bffb1b36ad 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListAccountSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListAccountSAS.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListByResourceGroup.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListByResourceGroup.json index af8bca6eb6b0..6906a6e474c1 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListByResourceGroup.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListByResourceGroup.json @@ -75,4 +75,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListKeys.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListKeys.json index c5de65b7c404..e5334383697d 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListKeys.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListKeys.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListLocationUsage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListLocationUsage.json index 100705deb0e1..2ffa71512bd5 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListLocationUsage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListLocationUsage.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListServiceSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListServiceSAS.json index 3799ff56dca7..1fd3fe783eb6 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListServiceSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountListServiceSAS.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountRegenerateKey.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountRegenerateKey.json index 35a883b764f8..08871e89bca2 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountRegenerateKey.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountRegenerateKey.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountUpdate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountUpdate.json index 1d2b14b351a8..132a66e53fc1 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountUpdate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/StorageAccountUpdate.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/UsageList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/UsageList.json index be75fae56bf8..ce2b65b1d603 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/UsageList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/examples/UsageList.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/storage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/storage.json index f19ab5c57d4a..2e4520d20761 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-02-01/storage.json @@ -505,7 +505,9 @@ "operationId": "Usage_ListByLocation", "description": "Gets the current usage count and the limit for the resources of the location under the subscription.", "x-ms-examples": { - "UsageList": { "$ref": "./examples/StorageAccountListLocationUsage.json"} + "UsageList": { + "$ref": "./examples/StorageAccountListLocationUsage.json" + } }, "parameters": [ { @@ -520,7 +522,7 @@ "required": true, "type": "string", "description": "The location of the Azure Storage resource." - } + } ], "responses": { "200": { @@ -1216,8 +1218,8 @@ "isHnsEnabled": { "type": "boolean", "default": false, - "x-ms-client-name": "IsHnsEnabled", - "description": "Account HierarchicalNamespace enabled if sets to true." + "x-ms-client-name": "IsHnsEnabled", + "description": "Account HierarchicalNamespace enabled if sets to true." } }, "description": "The parameters used to create the storage account." @@ -1445,8 +1447,8 @@ "isHnsEnabled": { "type": "boolean", "default": false, - "x-ms-client-name": "IsHnsEnabled", - "description": "Account HierarchicalNamespace enabled if sets to true." + "x-ms-client-name": "IsHnsEnabled", + "description": "Account HierarchicalNamespace enabled if sets to true." } }, "description": "Properties of the storage account." @@ -1971,4 +1973,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/blob.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/blob.json index d87260e5fb17..bd12253a7603 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/blob.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/blob.json @@ -1,25 +1,25 @@ - { - "swagger": "2.0", - "info": { - "version": "2018-07-01", - "title": "StorageManagementClient", - "description": "The Azure Storage Management API." - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/{BlobServicesName}": { - "put": { +{ + "swagger": "2.0", + "info": { + "version": "2018-07-01", + "title": "StorageManagementClient", + "description": "The Azure Storage Management API." + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/{BlobServicesName}": { + "put": { "tags": [ - "BlobService" + "BlobService" ], "operationId": "BlobServices_SetServiceProperties", "x-ms-examples": { @@ -42,30 +42,30 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/BlobServicesName" + "$ref": "#/parameters/BlobServicesName" }, { "name": "parameters", "in": "body", "required": true, "schema": { - "$ref": "#/definitions/BlobServiceProperties" + "$ref": "#/definitions/BlobServiceProperties" }, "description": "The properties of a storage account’s Blob service, including properties for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules." } ], "responses": { - "200": { - "description": "OK -- Sets The properties of a storage account’s Blob service successfully.", - "schema": { - "$ref": "#/definitions/BlobServiceProperties" + "200": { + "description": "OK -- Sets The properties of a storage account’s Blob service successfully.", + "schema": { + "$ref": "#/definitions/BlobServiceProperties" + } } - } } - }, - "get": { + }, + "get": { "tags": [ - "BlobService" + "BlobService" ], "operationId": "BlobServices_GetServiceProperties", "x-ms-examples": { @@ -88,976 +88,976 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/BlobServicesName" + "$ref": "#/parameters/BlobServicesName" } ], "responses": { - "200": { - "description": "OK -- returned the properties of a storage account’s Blob service.", - "schema": { - "$ref": "#/definitions/BlobServiceProperties" + "200": { + "description": "OK -- returned the properties of a storage account’s Blob service.", + "schema": { + "$ref": "#/definitions/BlobServiceProperties" + } } - } } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers": { - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_List", - "x-ms-examples": { - "ListContainers": { - "$ref": "./examples/BlobContainersList.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers": { + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_List", + "x-ms-examples": { + "ListContainers": { + "$ref": "./examples/BlobContainersList.json" + } + }, + "description": "Lists all containers and does not support a prefix like data plane. Also SRP today does not return continuation token.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Lists all containers and does not support a prefix like data plane. Also SRP today does not return continuation token.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- List Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/ListContainerItems" - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- List Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/ListContainerItems" } } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}": { - "put": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Create", - "x-ms-examples": { - "PutContainers": { - "$ref": "./examples/BlobContainersPut.json" - } - }, - "description": "Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "name": "blobContainer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BlobContainer" - }, - "description": "Properties of the blob container to create." - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "201": { - "description": "Created -- Create Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}": { + "put": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Create", + "x-ms-examples": { + "PutContainers": { + "$ref": "./examples/BlobContainersPut.json" } }, - "patch": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Update", - "x-ms-examples": { - "UpdateContainers": { - "$ref": "./examples/BlobContainersPatch.json" - } + "description": "Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Updates container properties as specified in request body. Properties not mentioned in the request will be unchanged. Update fails if the specified container doesn't already exist. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "name": "blobContainer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BlobContainer" - }, - "description": "Properties to update for the blob container." - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "name": "blobContainer", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BlobContainer" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Update Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer", - "description": "Properties of the updated blob container." - } + "description": "Properties of the blob container to create." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "201": { + "description": "Created -- Create Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer" } } + } + }, + "patch": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Update", + "x-ms-examples": { + "UpdateContainers": { + "$ref": "./examples/BlobContainersPatch.json" + } }, - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Get", - "x-ms-examples": { - "GetContainers": { - "$ref": "./examples/BlobContainersGet.json" - } + "description": "Updates container properties as specified in request body. Properties not mentioned in the request will be unchanged. Update fails if the specified container doesn't already exist. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Gets properties of a specified container. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "name": "blobContainer", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BlobContainer" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Get Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } + "description": "Properties to update for the blob container." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Update Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer", + "description": "Properties of the updated blob container." } } + } + }, + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Get", + "x-ms-examples": { + "GetContainers": { + "$ref": "./examples/BlobContainersGet.json" + } }, - "delete": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Delete", - "x-ms-examples": { - "DeleteContainers": { - "$ref": "./examples/BlobContainersDelete.json" - } + "description": "Gets properties of a specified container. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Deletes specified container under its account.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Delete Container operation completed successfully." - }, - "204": { - "description": "No Content -- The Container not exist." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Get Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer" } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_SetLegalHold", - "x-ms-examples": { - "SetLegalHoldContainers": { - "$ref": "./examples/BlobContainersSetLegalHold.json" - } + "delete": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Delete", + "x-ms-examples": { + "DeleteContainers": { + "$ref": "./examples/BlobContainersDelete.json" + } + }, + "description": "Deletes specified container under its account.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows an append pattern and does not clear out the existing tags that are not specified in the request.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "LegalHold", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LegalHold" - }, - "description": "The LegalHold property that will be set to a blob container." - } - ], - "responses": { - "200": { - "description": "OK -- Set legal hold tags for Container completed successfully.", - "schema": { - "$ref": "#/definitions/LegalHold" - } - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Delete Container operation completed successfully." + }, + "204": { + "description": "No Content -- The Container not exist." } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_ClearLegalHold", - "x-ms-examples": { - "ClearLegalHoldContainers": { - "$ref": "./examples/BlobContainersClearLegalHold.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_SetLegalHold", + "x-ms-examples": { + "SetLegalHoldContainers": { + "$ref": "./examples/BlobContainersSetLegalHold.json" + } + }, + "description": "Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows an append pattern and does not clear out the existing tags that are not specified in the request.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Clears legal hold tags. Clearing the same or non-existent tag results in an idempotent operation. ClearLegalHold clears out only the specified tags in the request.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "LegalHold", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LegalHold" }, - { - "name": "LegalHold", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LegalHold" - }, - "description": "The LegalHold property that will be clear from a blob container." - } - ], - "responses": { - "200": { - "description": "OK -- Clear legal hold tags for Container completed successfully.", - "schema": { - "$ref": "#/definitions/LegalHold" - } + "description": "The LegalHold property that will be set to a blob container." + } + ], + "responses": { + "200": { + "description": "OK -- Set legal hold tags for Container completed successfully.", + "schema": { + "$ref": "#/definitions/LegalHold" } } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}": { - "put": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_CreateOrUpdateImmutabilityPolicy", - "x-ms-examples": { - "CreateOrUpdateImmutabilityPolicy": { - "$ref": "./examples/BlobContainersPutImmutabilityPolicy.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_ClearLegalHold", + "x-ms-examples": { + "ClearLegalHoldContainers": { + "$ref": "./examples/BlobContainersClearLegalHold.json" + } + }, + "description": "Clears legal hold tags. Clearing the same or non-existent tag results in an idempotent operation. ClearLegalHold clears out only the specified tags in the request.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Creates or updates an unlocked immutability policy. ETag in If-Match is honored if given but not required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "description": "The ImmutabilityPolicy Properties that will be created or updated to a blob container." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "LegalHold", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LegalHold" }, - { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Creates or updates container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } - } + "description": "The LegalHold property that will be clear from a blob container." + } + ], + "responses": { + "200": { + "description": "OK -- Clear legal hold tags for Container completed successfully.", + "schema": { + "$ref": "#/definitions/LegalHold" } } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}": { + "put": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_CreateOrUpdateImmutabilityPolicy", + "x-ms-examples": { + "CreateOrUpdateImmutabilityPolicy": { + "$ref": "./examples/BlobContainersPutImmutabilityPolicy.json" + } }, - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_GetImmutabilityPolicy", - "x-ms-examples": { - "GetImmutabilityPolicy": { - "$ref": "./examples/BlobContainersGetImmutabilityPolicy.json" - } + "description": "Creates or updates an unlocked immutability policy. ETag in If-Match is honored if given but not required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Gets the existing immutability policy along with the corresponding ETag in response headers and body.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "description": "The ImmutabilityPolicy Properties that will be created or updated to a blob container." + }, + { + "name": "If-Match", + "in": "header", + "required": false, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Creates or updates container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Gets container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } + } + }, + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_GetImmutabilityPolicy", + "x-ms-examples": { + "GetImmutabilityPolicy": { + "$ref": "./examples/BlobContainersGetImmutabilityPolicy.json" + } }, - "delete": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_DeleteImmutabilityPolicy", - "x-ms-examples": { - "DeleteImmutabilityPolicy": { - "$ref": "./examples/BlobContainersDeleteImmutabilityPolicy.json" - } + "description": "Gets the existing immutability policy along with the corresponding ETag in response headers and body.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is not allowed, only way is to delete the container after deleting all blobs inside the container.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": false, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Gets container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Deletes container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_LockImmutabilityPolicy", - "x-ms-examples": { - "LockImmutabilityPolicy": { - "$ref": "./examples/BlobContainersLockImmutabilityPolicy.json" - } + "delete": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_DeleteImmutabilityPolicy", + "x-ms-examples": { + "DeleteImmutabilityPolicy": { + "$ref": "./examples/BlobContainersDeleteImmutabilityPolicy.json" + } + }, + "description": "Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is not allowed, only way is to delete the container after deleting all blobs inside the container.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Sets the ImmutabilityPolicy to Locked state. The only action allowed on a Locked policy is ExtendImmutabilityPolicy action. ETag in If-Match is required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Deletes container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Locks container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_ExtendImmutabilityPolicy", - "x-ms-examples": { - "ExtendImmutabilityPolicy": { - "$ref": "./examples/BlobContainersExtendImmutabilityPolicy.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_LockImmutabilityPolicy", + "x-ms-examples": { + "LockImmutabilityPolicy": { + "$ref": "./examples/BlobContainersLockImmutabilityPolicy.json" + } + }, + "description": "Sets the ImmutabilityPolicy to Locked state. The only action allowed on a Locked policy is ExtendImmutabilityPolicy action. ETag in If-Match is required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Extends the immutabilityPeriodSinceCreationInDays of a locked immutabilityPolicy. The only action allowed on a Locked policy will be this action. ETag in If-Match is required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "description": "The ImmutabilityPolicy Properties that will be extended for a blob container." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Locks container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Extends container ImmutabilityPolicy operation completed successfully..", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } - }, - "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Lease", - "x-ms-examples": { - "Acquire a lease on a container": { - "$ref": "./examples/BlobContainersLease_Acquire.json" - }, - "Break a lease on a container": { - "$ref": "./examples/BlobContainersLease_Break.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_ExtendImmutabilityPolicy", + "x-ms-examples": { + "ExtendImmutabilityPolicy": { + "$ref": "./examples/BlobContainersExtendImmutabilityPolicy.json" + } + }, + "description": "Extends the immutabilityPeriodSinceCreationInDays of a locked immutabilityPolicy. The only action allowed on a Locked policy will be this action. ETag in If-Match is required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" + }, + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, - "description": "The Lease Container operation establishes and manages a lock on a container for delete operations. The lock duration can be 15 to 60 seconds, or can be infinite.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "description": "The ImmutabilityPolicy Properties that will be extended for a blob container." + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Extends container ImmutabilityPolicy operation completed successfully..", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/LeaseContainerRequest" - }, - "description": "Lease Container request body." - } - ], - "responses": { - "200": { - "description": "OK -- Lease Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/LeaseContainerResponse" + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } } }, - "definitions": { - "ContainerProperties": { - "properties": { - "publicAccess": { - "type": "string", - "enum": [ - "Container", - "Blob", - "None" - ], - "x-ms-enum": { - "name": "PublicAccess", - "modelAsString": false - }, - "description": "Specifies whether data in the container may be accessed publicly and the level of access." + "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Lease", + "x-ms-examples": { + "Acquire a lease on a container": { + "$ref": "./examples/BlobContainersLease_Acquire.json" }, - "lastModifiedTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the container was last modified." + "Break a lease on a container": { + "$ref": "./examples/BlobContainersLease_Break.json" + } + }, + "description": "The Lease Container operation establishes and manages a lock on a container for delete operations. The lock duration can be 15 to 60 seconds, or can be infinite.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "leaseStatus": { - "type": "string", - "readOnly": true, - "enum": [ - "Locked", - "Unlocked" - ], - "x-ms-enum": { - "name": "LeaseStatus", - "modelAsString": true - }, - "description": "The lease status of the container." + { + "$ref": "./storage.json#/parameters/StorageAccountName" }, - "leaseState": { - "type": "string", - "readOnly": true, - "enum": [ - "Available", - "Leased", - "Expired", - "Breaking", - "Broken" - ], - "x-ms-enum": { - "name": "LeaseState", - "modelAsString": true - }, - "description": "Lease state of the container." + { + "$ref": "#/parameters/ContainerName" }, - "leaseDuration": { - "type": "string", - "readOnly": true, - "enum": [ - "Infinite", - "Fixed" - ], - "x-ms-enum": { - "name": "LeaseDuration", - "modelAsString": true - }, - "description": "Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, - "metadata": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "A name-value pair to associate with the container as metadata." - }, - "immutabilityPolicy": { - "readOnly": true, - "$ref": "#/definitions/ImmutabilityPolicyProperties", - "x-ms-client-name": "ImmutabilityPolicy", - "description": "The ImmutabilityPolicy property of the container." - }, - "legalHold": { - "readOnly": true, - "$ref": "#/definitions/LegalHoldProperties", - "description": "The LegalHold property of the container." - }, - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "hasImmutabilityPolicy": { - "type": "boolean", - "readOnly": true, - "description": "The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container." - } - }, - "description": "The properties of a container." - }, - "BlobContainer": { - "properties": { - "properties": { - "$ref": "#/definitions/ContainerProperties", - "x-ms-client-flatten": true, - "x-ms-client-name": "ContainerProperties", - "description": "Properties of the blob container." - } - }, - "allOf": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "description": "Properties of the blob container, including Id, resource name, resource type, Etag." - }, - "ImmutabilityPolicyProperty": { - "properties": { - "immutabilityPeriodSinceCreationInDays": { - "type": "integer", - "description": "The immutability period for the blobs in the container since the policy creation, in days." + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, - "state": { - "type": "string", - "readOnly": true, - "enum": [ - "Locked", - "Unlocked" - ], - "x-ms-enum": { - "name": "ImmutabilityPolicyState", - "modelAsString": true + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/LeaseContainerRequest" }, - "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked." + "description": "Lease Container request body." } - }, - "required": [ - "immutabilityPeriodSinceCreationInDays" ], - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "ImmutabilityPolicyProperties": { - "properties": { - "properties": { - "$ref": "#/definitions/ImmutabilityPolicyProperty", - "x-ms-client-flatten": true, - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "etag": { - "type": "string", - "readOnly": true, - "description": "ImmutabilityPolicy Etag." - }, - "updateHistory": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/UpdateHistoryProperty" - }, - "description": "The ImmutabilityPolicy update history of the blob container." + "responses": { + "200": { + "description": "OK -- Lease Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/LeaseContainerResponse" + } } + } + } + } + }, + "definitions": { + "ContainerProperties": { + "properties": { + "publicAccess": { + "type": "string", + "enum": [ + "Container", + "Blob", + "None" + ], + "x-ms-enum": { + "name": "PublicAccess", + "modelAsString": false + }, + "description": "Specifies whether data in the container may be accessed publicly and the level of access." }, - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "ImmutabilityPolicy": { - "properties": { - "properties": { - "$ref": "#/definitions/ImmutabilityPolicyProperty", - "x-ms-client-flatten": true, - "description": "The properties of an ImmutabilityPolicy of a blob container." - } + "lastModifiedTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the container was last modified." }, - "allOf": [ - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "required": [ - "properties" - ], - "description": "The ImmutabilityPolicy property of a blob container, including Id, resource name, resource type, Etag." - }, - "UpdateHistoryProperty": { - "properties": { - "update": { - "type": "string", - "readOnly": true, - "enum": [ - "put", - "lock", - "extend" - ], - "x-ms-enum": { - "name": "ImmutabilityPolicyUpdateType", - "modelAsString": true - }, - "description": "The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend." - }, - "immutabilityPeriodSinceCreationInDays": { - "type": "integer", - "readOnly": true, - "description": "The immutability period for the blobs in the container since the policy creation, in days." + "leaseStatus": { + "type": "string", + "readOnly": true, + "enum": [ + "Locked", + "Unlocked" + ], + "x-ms-enum": { + "name": "LeaseStatus", + "modelAsString": true }, - "timestamp": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the ImmutabilityPolicy was updated." + "description": "The lease status of the container." + }, + "leaseState": { + "type": "string", + "readOnly": true, + "enum": [ + "Available", + "Leased", + "Expired", + "Breaking", + "Broken" + ], + "x-ms-enum": { + "name": "LeaseState", + "modelAsString": true }, - "objectIdentifier": { - "type": "string", - "readOnly": true, - "description": "Returns the Object ID of the user who updated the ImmutabilityPolicy." + "description": "Lease state of the container." + }, + "leaseDuration": { + "type": "string", + "readOnly": true, + "enum": [ + "Infinite", + "Fixed" + ], + "x-ms-enum": { + "name": "LeaseDuration", + "modelAsString": true }, - "tenantId": { - "type": "string", - "readOnly": true, - "description": "Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy." + "description": "Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased." + }, + "metadata": { + "type": "object", + "additionalProperties": { + "type": "string" }, - "upn": { - "type": "string", - "readOnly": true, - "description": "Returns the User Principal Name of the user who updated the ImmutabilityPolicy." - } + "description": "A name-value pair to associate with the container as metadata." }, - "description": "An update history of the ImmutabilityPolicy of a blob container." - }, - "LegalHoldProperties": { - "properties": { - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "tags": { - "type": "array", - "items": { - "$ref": "#/definitions/TagProperty" - }, - "description": "The list of LegalHold tags of a blob container." - } + "immutabilityPolicy": { + "readOnly": true, + "$ref": "#/definitions/ImmutabilityPolicyProperties", + "x-ms-client-name": "ImmutabilityPolicy", + "description": "The ImmutabilityPolicy property of the container." }, - "description": "The LegalHold property of a blob container." + "legalHold": { + "readOnly": true, + "$ref": "#/definitions/LegalHoldProperties", + "description": "The LegalHold property of the container." + }, + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." + }, + "hasImmutabilityPolicy": { + "type": "boolean", + "readOnly": true, + "description": "The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container." + } }, - "TagProperty": { - "properties": { - "tag": { - "type": "string", - "readOnly": true, - "description": "The tag value." - }, - "timestamp": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the tag was added." + "description": "The properties of a container." + }, + "BlobContainer": { + "properties": { + "properties": { + "$ref": "#/definitions/ContainerProperties", + "x-ms-client-flatten": true, + "x-ms-client-name": "ContainerProperties", + "description": "Properties of the blob container." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "description": "Properties of the blob container, including Id, resource name, resource type, Etag." + }, + "ImmutabilityPolicyProperty": { + "properties": { + "immutabilityPeriodSinceCreationInDays": { + "type": "integer", + "description": "The immutability period for the blobs in the container since the policy creation, in days." + }, + "state": { + "type": "string", + "readOnly": true, + "enum": [ + "Locked", + "Unlocked" + ], + "x-ms-enum": { + "name": "ImmutabilityPolicyState", + "modelAsString": true }, - "objectIdentifier": { - "type": "string", - "readOnly": true, - "description": "Returns the Object ID of the user who added the tag." + "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked." + } + }, + "required": [ + "immutabilityPeriodSinceCreationInDays" + ], + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "ImmutabilityPolicyProperties": { + "properties": { + "properties": { + "$ref": "#/definitions/ImmutabilityPolicyProperty", + "x-ms-client-flatten": true, + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "etag": { + "type": "string", + "readOnly": true, + "description": "ImmutabilityPolicy Etag." + }, + "updateHistory": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/UpdateHistoryProperty" }, - "tenantId": { - "type": "string", - "readOnly": true, - "description": "Returns the Tenant ID that issued the token for the user who added the tag." + "description": "The ImmutabilityPolicy update history of the blob container." + } + }, + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "ImmutabilityPolicy": { + "properties": { + "properties": { + "$ref": "#/definitions/ImmutabilityPolicyProperty", + "x-ms-client-flatten": true, + "description": "The properties of an ImmutabilityPolicy of a blob container." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "required": [ + "properties" + ], + "description": "The ImmutabilityPolicy property of a blob container, including Id, resource name, resource type, Etag." + }, + "UpdateHistoryProperty": { + "properties": { + "update": { + "type": "string", + "readOnly": true, + "enum": [ + "put", + "lock", + "extend" + ], + "x-ms-enum": { + "name": "ImmutabilityPolicyUpdateType", + "modelAsString": true }, - "upn": { - "type": "string", - "readOnly": true, - "description": "Returns the User Principal Name of the user who added the tag." - } + "description": "The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend." }, - "description": "A tag of the LegalHold of a blob container." - }, - "LegalHold": { - "properties": { - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "tags": { - "type": "array", - "items": { - "type": "string", - "maxLength": 23, - "minLength": 3 - }, - "description": "Each tag should be 3 to 23 alphanumeric characters and is normalized to lower case at SRP." - } + "immutabilityPeriodSinceCreationInDays": { + "type": "integer", + "readOnly": true, + "description": "The immutability period for the blobs in the container since the policy creation, in days." }, - "required": [ - "tags" - ], - "description": "The LegalHold property of a blob container." + "timestamp": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the ImmutabilityPolicy was updated." + }, + "objectIdentifier": { + "type": "string", + "readOnly": true, + "description": "Returns the Object ID of the user who updated the ImmutabilityPolicy." + }, + "tenantId": { + "type": "string", + "readOnly": true, + "description": "Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy." + }, + "upn": { + "type": "string", + "readOnly": true, + "description": "Returns the User Principal Name of the user who updated the ImmutabilityPolicy." + } }, - "ListContainerItem": { - "properties": { - "properties": { - "$ref": "#/definitions/ContainerProperties", - "x-ms-client-flatten": true, - "description": "The blob container properties be listed out." - } + "description": "An update history of the ImmutabilityPolicy of a blob container." + }, + "LegalHoldProperties": { + "properties": { + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." }, - "allOf": [ - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "description": "The blob container properties be listed out." + "tags": { + "type": "array", + "items": { + "$ref": "#/definitions/TagProperty" + }, + "description": "The list of LegalHold tags of a blob container." + } }, - "ListContainerItems": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ListContainerItem" - }, - "description": "The list of blob containers." - } + "description": "The LegalHold property of a blob container." + }, + "TagProperty": { + "properties": { + "tag": { + "type": "string", + "readOnly": true, + "description": "The tag value." + }, + "timestamp": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the tag was added." + }, + "objectIdentifier": { + "type": "string", + "readOnly": true, + "description": "Returns the Object ID of the user who added the tag." }, - "description": "The list of blob containers." - }, - "BlobServiceProperties": { + "tenantId": { + "type": "string", + "readOnly": true, + "description": "Returns the Tenant ID that issued the token for the user who added the tag." + }, + "upn": { + "type": "string", + "readOnly": true, + "description": "Returns the User Principal Name of the user who added the tag." + } + }, + "description": "A tag of the LegalHold of a blob container." + }, + "LegalHold": { + "properties": { + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." + }, + "tags": { + "type": "array", + "items": { + "type": "string", + "maxLength": 23, + "minLength": 3 + }, + "description": "Each tag should be 3 to 23 alphanumeric characters and is normalized to lower case at SRP." + } + }, + "required": [ + "tags" + ], + "description": "The LegalHold property of a blob container." + }, + "ListContainerItem": { + "properties": { "properties": { + "$ref": "#/definitions/ContainerProperties", + "x-ms-client-flatten": true, + "description": "The blob container properties be listed out." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "description": "The blob container properties be listed out." + }, + "ListContainerItems": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ListContainerItem" + }, + "description": "The list of blob containers." + } + }, + "description": "The list of blob containers." + }, + "BlobServiceProperties": { + "properties": { "properties": { "properties": { - "cors": { + "cors": { "$ref": "#/definitions/CorsRules", "description": "Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service." }, @@ -1074,48 +1074,48 @@ "x-ms-client-name": "BlobServiceProperties", "description": "The properties of a storage account’s Blob service." } - }, - "allOf": [ + }, + "allOf": [ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource" } - ], - "description": "The properties of a storage account’s Blob service." - }, - "DeleteRetentionPolicy": { - "properties": { - "enabled": { - "type": "boolean", - "description": "Indicates whether DeleteRetentionPolicy is enabled for the Blob service." - }, - "days": { - "type": "integer", - "minimum": 1, - "maximum": 365, - "description": "Indicates the number of days that the deleted blob should be retained. The minimum specified value can be 1 and the maximum value can be 365." - } - }, - "description": "The blob service properties for soft delete." - }, - "CorsRules": { - "properties": { - "corsRules": { - "type": "array", - "items": { - "description": "Specifies a CORS rule for the Blob service. ", - "$ref": "#/definitions/CorsRule" - }, - "description": "The List of CORS rules. You can include up to five CorsRule elements in the request. " - } + ], + "description": "The properties of a storage account’s Blob service." + }, + "DeleteRetentionPolicy": { + "properties": { + "enabled": { + "type": "boolean", + "description": "Indicates whether DeleteRetentionPolicy is enabled for the Blob service." }, - "description": "Sets the CORS rules. You can include up to five CorsRule elements in the request. " + "days": { + "type": "integer", + "minimum": 1, + "maximum": 365, + "description": "Indicates the number of days that the deleted blob should be retained. The minimum specified value can be 1 and the maximum value can be 365." + } }, - "CorsRule": { - "properties": { + "description": "The blob service properties for soft delete." + }, + "CorsRules": { + "properties": { + "corsRules": { + "type": "array", + "items": { + "description": "Specifies a CORS rule for the Blob service. ", + "$ref": "#/definitions/CorsRule" + }, + "description": "The List of CORS rules. You can include up to five CorsRule elements in the request. " + } + }, + "description": "Sets the CORS rules. You can include up to five CorsRule elements in the request. " + }, + "CorsRule": { + "properties": { "allowedOrigins": { "type": "array", "items": { - "type": "string" + "type": "string" }, "description": "Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or \"*\" to allow all domains" }, @@ -1123,7 +1123,15 @@ "type": "array", "items": { "type": "string", - "enum": ["DELETE","GET","HEAD","MERGE","POST","OPTIONS","PUT"] + "enum": [ + "DELETE", + "GET", + "HEAD", + "MERGE", + "POST", + "OPTIONS", + "PUT" + ] }, "description": "Required if CorsRule element is present. A list of HTTP methods that are allowed to be executed by the origin." }, @@ -1145,115 +1153,115 @@ }, "description": "Required if CorsRule element is present. A list of headers allowed to be part of the cross-origin request." } - }, - "required": [ - "allowedOrigins", - "allowedMethods", - "maxAgeInSeconds", - "exposedHeaders", - "allowedHeaders" - ], - "description": "Specifies a CORS rule for the Blob service." }, - "LeaseContainerRequest": { - "properties": { - "action": { - "type": "string", - "enum": [ - "Acquire", - "Renew", - "Change", - "Release", - "Break" - ], - "description": "Specifies the lease action. Can be one of the available actions." - }, - "leaseId": { - "type": "string", - "description": "Identifies the lease. Can be specified in any valid GUID string format." - }, - "breakPeriod": { - "type": "integer", - "description": "Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60." - }, - "leaseDuration": { - "type": "integer", - "description": "Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires." - }, - "proposedLeaseId": { - "type": "string", - "description": "Optional for acquire, required for change. Proposed lease ID, in a GUID string format." - } + "required": [ + "allowedOrigins", + "allowedMethods", + "maxAgeInSeconds", + "exposedHeaders", + "allowedHeaders" + ], + "description": "Specifies a CORS rule for the Blob service." + }, + "LeaseContainerRequest": { + "properties": { + "action": { + "type": "string", + "enum": [ + "Acquire", + "Renew", + "Change", + "Release", + "Break" + ], + "description": "Specifies the lease action. Can be one of the available actions." }, - "required": [ - "action" - ], - "description": "Lease Container request schema." - }, - "LeaseContainerResponse": { - "properties": { - "leaseId": { - "type": "string", - "description": "Returned unique lease ID that must be included with any request to delete the container, or to renew, change, or release the lease." - }, - "leaseTimeSeconds": { - "type": "string", - "description": "Approximate time remaining in the lease period, in seconds." - } + "leaseId": { + "type": "string", + "description": "Identifies the lease. Can be specified in any valid GUID string format." }, - "description": "Lease Container response schema." - } - }, - "parameters": { - "ContainerName": { - "name": "containerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.", - "maxLength": 63, - "minLength": 3, - "x-ms-parameter-location": "method" - }, - "ImmutabilityPolicyName": { - "name": "immutabilityPolicyName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'", - "enum":[ - "default" - ], - "x-ms-parameter-location": "method" + "breakPeriod": { + "type": "integer", + "description": "Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60." + }, + "leaseDuration": { + "type": "integer", + "description": "Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires." + }, + "proposedLeaseId": { + "type": "string", + "description": "Optional for acquire, required for change. Proposed lease ID, in a GUID string format." + } }, - "BlobServicesName": { - "name": "BlobServicesName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob Service within the specified storage account. Blob Service Name must be 'default'", - "enum":[ - "default" - ], - "x-ms-parameter-location": "method" - } + "required": [ + "action" + ], + "description": "Lease Container request schema." }, - "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" + "LeaseContainerResponse": { + "properties": { + "leaseId": { + "type": "string", + "description": "Returned unique lease ID that must be included with any request to delete the container, or to renew, change, or release the lease." + }, + "leaseTimeSeconds": { + "type": "string", + "description": "Approximate time remaining in the lease period, in seconds." } - } + }, + "description": "Lease Container response schema." + } + }, + "parameters": { + "ContainerName": { + "name": "containerName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.", + "maxLength": 63, + "minLength": 3, + "x-ms-parameter-location": "method" + }, + "ImmutabilityPolicyName": { + "name": "immutabilityPolicyName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'", + "enum": [ + "default" + ], + "x-ms-parameter-location": "method" }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "BlobServicesName": { + "name": "BlobServicesName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob Service within the specified storage account. Blob Service Name must be 'default'", + "enum": [ + "default" + ], + "x-ms-parameter-location": "method" + } + }, + "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" } - ] - } \ No newline at end of file + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersClearLegalHold.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersClearLegalHold.json index 213783caf38e..bf6691a16f7e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersClearLegalHold.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersClearLegalHold.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersDelete.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersDelete.json index 7b60db47f977..ea1c1d60f0e8 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersDelete.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersExtendImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersExtendImmutabilityPolicy.json index 7432e0065076..cbbd2794d7ba 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersExtendImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersExtendImmutabilityPolicy.json @@ -4,7 +4,7 @@ "resourceGroupName": "res6238", "accountName": "sto232", "containerName": "container5023", - "If-Match": "\"8d59f830d0c3bf9\"", + "If-Match": "\"8d59f830d0c3bf9\"", "api-version": "2018-07-01", "monitor": "true", "parameters": { @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersGet.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersGet.json index 1be09b1b105d..4d0d1e165b0c 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersGet.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersGet.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersGetImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersGetImmutabilityPolicy.json index c69dc9aa8457..ba4d4d170467 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersGetImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersGetImmutabilityPolicy.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLease_Acquire.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLease_Acquire.json index 03d7d9e857bf..bfeaa3e35561 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLease_Acquire.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLease_Acquire.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLease_Break.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLease_Break.json index d0a97bce588d..47a71c76f601 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLease_Break.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLease_Break.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersList.json index 8e588163dc23..da4579268751 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersList.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLockImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLockImmutabilityPolicy.json index deb3a89d95ef..0c9aed602653 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLockImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersLockImmutabilityPolicy.json @@ -4,7 +4,7 @@ "resourceGroupName": "res2702", "accountName": "sto5009", "containerName": "container1631", - "If-Match": "\"8d59f825b721dd3\"", + "If-Match": "\"8d59f825b721dd3\"", "api-version": "2018-07-01", "monitor": "true" }, @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPatch.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPatch.json index 36342e866772..df41e48abc80 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPatch.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPatch.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPut.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPut.json index 3caff82d3766..914aeadfc929 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPut.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPut.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPutImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPutImmutabilityPolicy.json index fe588eb1705d..f72c2f9e5835 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPutImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersPutImmutabilityPolicy.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersSetLegalHold.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersSetLegalHold.json index 3d360f5aa9c0..ba7b8decad77 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersSetLegalHold.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobContainersSetLegalHold.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobServicesGet.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobServicesGet.json index 9a6e3acd683e..5926ce330a6d 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobServicesGet.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobServicesGet.json @@ -15,7 +15,8 @@ "type": "Microsoft.Storage/storageAccounts/blobServices", "properties": { "cors": { - "corsRules": [{ + "corsRules": [ + { "allowedOrigins": [ "http://www.contoso.com", "http://www.fabrikam.com" diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobServicesPut.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobServicesPut.json index 326e4bd06a8e..b1bc1ac15036 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobServicesPut.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/BlobServicesPut.json @@ -9,7 +9,8 @@ "parameters": { "properties": { "cors": { - "corsRules": [{ + "corsRules": [ + { "allowedOrigins": [ "http://www.contoso.com", "http://www.fabrikam.com" @@ -84,7 +85,8 @@ "type": "Microsoft.Storage/storageAccounts/blobServices", "properties": { "cors": { - "corsRules": [{ + "corsRules": [ + { "allowedOrigins": [ "http://www.contoso.com", "http://www.fabrikam.com" @@ -152,4 +154,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/OperationsList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/OperationsList.json index 34bff2451bf5..5298603e12fb 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/OperationsList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/OperationsList.json @@ -470,4 +470,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/SKUList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/SKUList.json index e25b3ffa73ca..1bcb2e63a12f 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/SKUList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/SKUList.json @@ -6451,4 +6451,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountCheckNameAvailability.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountCheckNameAvailability.json index 2f909042d71d..41a0ce8672fd 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountCheckNameAvailability.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountCheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountCreate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountCreate.json index 4d12a7f02ec8..edb2d1d541e3 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountCreate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountCreate.json @@ -61,4 +61,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountDelete.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountDelete.json index 86b62b340374..d34b0292e2a9 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountDeleteManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountDeleteManagementPolicy.json index cc09990ec8a3..72cd483cd07a 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountDeleteManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountDeleteManagementPolicy.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountFailover.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountFailover.json index 9f19caf35b0f..b3fc0173e511 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountFailover.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountFailover.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountGetManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountGetManagementPolicy.json index 7b9f475ba388..157a1b36e277 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountGetManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountGetManagementPolicy.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountGetProperties.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountGetProperties.json index 5a90b4563f5e..01248e2cbb7b 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountGetProperties.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountGetProperties.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountList.json index 087c7c925f7e..be655149fcf7 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountList.json @@ -181,4 +181,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListAccountSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListAccountSAS.json index de9a578d504c..e007d57f22af 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListAccountSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListAccountSAS.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListByResourceGroup.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListByResourceGroup.json index 50a889430a6d..c1662f85615e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListByResourceGroup.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListByResourceGroup.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListKeys.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListKeys.json index 3dbc0d639cc2..fe8865872ed9 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListKeys.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListKeys.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListLocationUsage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListLocationUsage.json index 4161b4dd5a78..3cffbd19aca0 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListLocationUsage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListLocationUsage.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListServiceSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListServiceSAS.json index 6f9ac36d10e9..181ab6c3655f 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListServiceSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountListServiceSAS.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountRegenerateKey.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountRegenerateKey.json index 3a5aafa74787..4022932a3661 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountRegenerateKey.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountRegenerateKey.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountSetManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountSetManagementPolicy.json index 6e16eb2ac455..8bb3e99b622f 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountSetManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountSetManagementPolicy.json @@ -97,4 +97,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountUpdate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountUpdate.json index 238302224aa0..444fbb2ea194 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountUpdate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/examples/StorageAccountUpdate.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/storage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/storage.json index 19feac6e62cf..a3f5148d53c9 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-07-01/storage.json @@ -450,7 +450,9 @@ "operationId": "Usages_ListByLocation", "description": "Gets the current usage count and the limit for the resources of the location under the subscription.", "x-ms-examples": { - "UsageList": { "$ref": "./examples/StorageAccountListLocationUsage.json"} + "UsageList": { + "$ref": "./examples/StorageAccountListLocationUsage.json" + } }, "parameters": [ { @@ -465,7 +467,7 @@ "required": true, "type": "string", "description": "The location of the Azure Storage resource." - } + } ], "responses": { "200": { @@ -1195,8 +1197,8 @@ }, "isHnsEnabled": { "type": "boolean", - "x-ms-client-name": "IsHnsEnabled", - "description": "Account HierarchicalNamespace enabled if sets to true." + "x-ms-client-name": "IsHnsEnabled", + "description": "Account HierarchicalNamespace enabled if sets to true." } }, "description": "The parameters used to create the storage account." @@ -1459,8 +1461,8 @@ }, "isHnsEnabled": { "type": "boolean", - "x-ms-client-name": "IsHnsEnabled", - "description": "Account HierarchicalNamespace enabled if sets to true." + "x-ms-client-name": "IsHnsEnabled", + "description": "Account HierarchicalNamespace enabled if sets to true." }, "geoReplicationStats": { "$ref": "#/definitions/GeoReplicationStats", @@ -2015,4 +2017,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/blob.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/blob.json index 786ef48f8132..c9b18897e42f 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/blob.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/blob.json @@ -1,25 +1,25 @@ - { - "swagger": "2.0", - "info": { - "version": "2018-11-01", - "title": "StorageManagementClient", - "description": "The Azure Storage Management API." - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/{BlobServicesName}": { - "put": { +{ + "swagger": "2.0", + "info": { + "version": "2018-11-01", + "title": "StorageManagementClient", + "description": "The Azure Storage Management API." + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/{BlobServicesName}": { + "put": { "tags": [ - "BlobService" + "BlobService" ], "operationId": "BlobServices_SetServiceProperties", "x-ms-examples": { @@ -49,23 +49,23 @@ "in": "body", "required": true, "schema": { - "$ref": "#/definitions/BlobServiceProperties" + "$ref": "#/definitions/BlobServiceProperties" }, "description": "The properties of a storage account’s Blob service, including properties for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules." } ], "responses": { - "200": { - "description": "OK -- Sets The properties of a storage account’s Blob service successfully.", - "schema": { - "$ref": "#/definitions/BlobServiceProperties" + "200": { + "description": "OK -- Sets The properties of a storage account’s Blob service successfully.", + "schema": { + "$ref": "#/definitions/BlobServiceProperties" + } } - } } - }, - "get": { + }, + "get": { "tags": [ - "BlobService" + "BlobService" ], "operationId": "BlobServices_GetServiceProperties", "x-ms-examples": { @@ -92,975 +92,975 @@ } ], "responses": { - "200": { - "description": "OK -- returned the properties of a storage account’s Blob service.", - "schema": { - "$ref": "#/definitions/BlobServiceProperties" + "200": { + "description": "OK -- returned the properties of a storage account’s Blob service.", + "schema": { + "$ref": "#/definitions/BlobServiceProperties" + } } - } } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers": { - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_List", - "x-ms-examples": { - "ListContainers": { - "$ref": "./examples/BlobContainersList.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers": { + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_List", + "x-ms-examples": { + "ListContainers": { + "$ref": "./examples/BlobContainersList.json" + } + }, + "description": "Lists all containers and does not support a prefix like data plane. Also SRP today does not return continuation token.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Lists all containers and does not support a prefix like data plane. Also SRP today does not return continuation token.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- List Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/ListContainerItems" - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- List Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/ListContainerItems" } } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}": { - "put": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Create", - "x-ms-examples": { - "PutContainers": { - "$ref": "./examples/BlobContainersPut.json" - } - }, - "description": "Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "name": "blobContainer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BlobContainer" - }, - "description": "Properties of the blob container to create." - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "201": { - "description": "Created -- Create Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } - }, - "200": { - "description": "OK -- The Container is already created.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}": { + "put": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Create", + "x-ms-examples": { + "PutContainers": { + "$ref": "./examples/BlobContainersPut.json" } }, - "patch": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Update", - "x-ms-examples": { - "UpdateContainers": { - "$ref": "./examples/BlobContainersPatch.json" - } + "description": "Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Updates container properties as specified in request body. Properties not mentioned in the request will be unchanged. Update fails if the specified container doesn't already exist. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "name": "blobContainer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BlobContainer" - }, - "description": "Properties to update for the blob container." - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "name": "blobContainer", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BlobContainer" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Update Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer", - "description": "Properties of the updated blob container." - } - } + "description": "Properties of the blob container to create." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" } - }, - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Get", - "x-ms-examples": { - "GetContainers": { - "$ref": "./examples/BlobContainersGet.json" + ], + "responses": { + "201": { + "description": "Created -- Create Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer" } }, - "description": "Gets properties of a specified container. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Get Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } + "200": { + "description": "OK -- The Container is already created.", + "schema": { + "$ref": "#/definitions/BlobContainer" } } + } + }, + "patch": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Update", + "x-ms-examples": { + "UpdateContainers": { + "$ref": "./examples/BlobContainersPatch.json" + } }, - "delete": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Delete", - "x-ms-examples": { - "DeleteContainers": { - "$ref": "./examples/BlobContainersDelete.json" - } + "description": "Updates container properties as specified in request body. Properties not mentioned in the request will be unchanged. Update fails if the specified container doesn't already exist. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Deletes specified container under its account.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Delete Container operation completed successfully." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "name": "blobContainer", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BlobContainer" }, - "204": { - "description": "No Content -- The Container not exist." + "description": "Properties to update for the blob container." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Update Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer", + "description": "Properties of the updated blob container." } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_SetLegalHold", - "x-ms-examples": { - "SetLegalHoldContainers": { - "$ref": "./examples/BlobContainersSetLegalHold.json" - } + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Get", + "x-ms-examples": { + "GetContainers": { + "$ref": "./examples/BlobContainersGet.json" + } + }, + "description": "Gets properties of a specified container. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows an append pattern and does not clear out the existing tags that are not specified in the request.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "LegalHold", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LegalHold" - }, - "description": "The LegalHold property that will be set to a blob container." - } - ], - "responses": { - "200": { - "description": "OK -- Set legal hold tags for Container completed successfully.", - "schema": { - "$ref": "#/definitions/LegalHold" - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Get Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer" } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_ClearLegalHold", - "x-ms-examples": { - "ClearLegalHoldContainers": { - "$ref": "./examples/BlobContainersClearLegalHold.json" - } + "delete": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Delete", + "x-ms-examples": { + "DeleteContainers": { + "$ref": "./examples/BlobContainersDelete.json" + } + }, + "description": "Deletes specified container under its account.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Clears legal hold tags. Clearing the same or non-existent tag results in an idempotent operation. ClearLegalHold clears out only the specified tags in the request.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "LegalHold", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LegalHold" - }, - "description": "The LegalHold property that will be clear from a blob container." - } - ], - "responses": { - "200": { - "description": "OK -- Clear legal hold tags for Container completed successfully.", - "schema": { - "$ref": "#/definitions/LegalHold" - } - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Delete Container operation completed successfully." + }, + "204": { + "description": "No Content -- The Container not exist." } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}": { - "put": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_CreateOrUpdateImmutabilityPolicy", - "x-ms-examples": { - "CreateOrUpdateImmutabilityPolicy": { - "$ref": "./examples/BlobContainersPutImmutabilityPolicy.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_SetLegalHold", + "x-ms-examples": { + "SetLegalHoldContainers": { + "$ref": "./examples/BlobContainersSetLegalHold.json" + } + }, + "description": "Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows an append pattern and does not clear out the existing tags that are not specified in the request.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Creates or updates an unlocked immutability policy. ETag in If-Match is honored if given but not required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "description": "The ImmutabilityPolicy Properties that will be created or updated to a blob container." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "LegalHold", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LegalHold" }, - { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Creates or updates container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } - } + "description": "The LegalHold property that will be set to a blob container." + } + ], + "responses": { + "200": { + "description": "OK -- Set legal hold tags for Container completed successfully.", + "schema": { + "$ref": "#/definitions/LegalHold" } } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_ClearLegalHold", + "x-ms-examples": { + "ClearLegalHoldContainers": { + "$ref": "./examples/BlobContainersClearLegalHold.json" + } }, - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_GetImmutabilityPolicy", - "x-ms-examples": { - "GetImmutabilityPolicy": { - "$ref": "./examples/BlobContainersGetImmutabilityPolicy.json" - } + "description": "Clears legal hold tags. Clearing the same or non-existent tag results in an idempotent operation. ClearLegalHold clears out only the specified tags in the request.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Gets the existing immutability policy along with the corresponding ETag in response headers and body.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "LegalHold", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LegalHold" }, - { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Gets container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } - } + "description": "The LegalHold property that will be clear from a blob container." + } + ], + "responses": { + "200": { + "description": "OK -- Clear legal hold tags for Container completed successfully.", + "schema": { + "$ref": "#/definitions/LegalHold" } } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}": { + "put": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_CreateOrUpdateImmutabilityPolicy", + "x-ms-examples": { + "CreateOrUpdateImmutabilityPolicy": { + "$ref": "./examples/BlobContainersPutImmutabilityPolicy.json" + } }, - "delete": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_DeleteImmutabilityPolicy", - "x-ms-examples": { - "DeleteImmutabilityPolicy": { - "$ref": "./examples/BlobContainersDeleteImmutabilityPolicy.json" - } + "description": "Creates or updates an unlocked immutability policy. ETag in If-Match is honored if given but not required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is not allowed, only way is to delete the container after deleting all blobs inside the container.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "description": "The ImmutabilityPolicy Properties that will be created or updated to a blob container." + }, + { + "name": "If-Match", + "in": "header", + "required": false, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Creates or updates container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Deletes container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_LockImmutabilityPolicy", - "x-ms-examples": { - "LockImmutabilityPolicy": { - "$ref": "./examples/BlobContainersLockImmutabilityPolicy.json" - } + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_GetImmutabilityPolicy", + "x-ms-examples": { + "GetImmutabilityPolicy": { + "$ref": "./examples/BlobContainersGetImmutabilityPolicy.json" + } + }, + "description": "Gets the existing immutability policy along with the corresponding ETag in response headers and body.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Sets the ImmutabilityPolicy to Locked state. The only action allowed on a Locked policy is ExtendImmutabilityPolicy action. ETag in If-Match is required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": false, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Gets container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Locks container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_ExtendImmutabilityPolicy", - "x-ms-examples": { - "ExtendImmutabilityPolicy": { - "$ref": "./examples/BlobContainersExtendImmutabilityPolicy.json" - } + "delete": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_DeleteImmutabilityPolicy", + "x-ms-examples": { + "DeleteImmutabilityPolicy": { + "$ref": "./examples/BlobContainersDeleteImmutabilityPolicy.json" + } + }, + "description": "Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is not allowed, only way is to delete the container after deleting all blobs inside the container.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Extends the immutabilityPeriodSinceCreationInDays of a locked immutabilityPolicy. The only action allowed on a Locked policy will be this action. ETag in If-Match is required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "description": "The ImmutabilityPolicy Properties that will be extended for a blob container." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Deletes container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Extends container ImmutabilityPolicy operation completed successfully..", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } - }, - "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Lease", - "x-ms-examples": { - "Acquire a lease on a container": { - "$ref": "./examples/BlobContainersLease_Acquire.json" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_LockImmutabilityPolicy", + "x-ms-examples": { + "LockImmutabilityPolicy": { + "$ref": "./examples/BlobContainersLockImmutabilityPolicy.json" + } + }, + "description": "Sets the ImmutabilityPolicy to Locked state. The only action allowed on a Locked policy is ExtendImmutabilityPolicy action. ETag in If-Match is required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" + }, + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Locks container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - "Break a lease on a container": { - "$ref": "./examples/BlobContainersLease_Break.json" + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" + } } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_ExtendImmutabilityPolicy", + "x-ms-examples": { + "ExtendImmutabilityPolicy": { + "$ref": "./examples/BlobContainersExtendImmutabilityPolicy.json" + } + }, + "description": "Extends the immutabilityPeriodSinceCreationInDays of a locked immutabilityPolicy. The only action allowed on a Locked policy will be this action. ETag in If-Match is required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" + }, + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, - "description": "The Lease Container operation establishes and manages a lock on a container for delete operations. The lock duration can be 15 to 60 seconds, or can be infinite.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "description": "The ImmutabilityPolicy Properties that will be extended for a blob container." + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Extends container ImmutabilityPolicy operation completed successfully..", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/LeaseContainerRequest" - }, - "description": "Lease Container request body." - } - ], - "responses": { - "200": { - "description": "OK -- Lease Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/LeaseContainerResponse" + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } } }, - "definitions": { - "ContainerProperties": { - "properties": { - "publicAccess": { - "type": "string", - "enum": [ - "Container", - "Blob", - "None" - ], - "x-ms-enum": { - "name": "PublicAccess", - "modelAsString": false - }, - "description": "Specifies whether data in the container may be accessed publicly and the level of access." + "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Lease", + "x-ms-examples": { + "Acquire a lease on a container": { + "$ref": "./examples/BlobContainersLease_Acquire.json" }, - "lastModifiedTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the container was last modified." + "Break a lease on a container": { + "$ref": "./examples/BlobContainersLease_Break.json" + } + }, + "description": "The Lease Container operation establishes and manages a lock on a container for delete operations. The lock duration can be 15 to 60 seconds, or can be infinite.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "leaseStatus": { - "type": "string", - "readOnly": true, - "enum": [ - "Locked", - "Unlocked" - ], - "x-ms-enum": { - "name": "LeaseStatus", - "modelAsString": true - }, - "description": "The lease status of the container." + { + "$ref": "./storage.json#/parameters/StorageAccountName" }, - "leaseState": { - "type": "string", - "readOnly": true, - "enum": [ - "Available", - "Leased", - "Expired", - "Breaking", - "Broken" - ], - "x-ms-enum": { - "name": "LeaseState", - "modelAsString": true - }, - "description": "Lease state of the container." + { + "$ref": "#/parameters/ContainerName" }, - "leaseDuration": { - "type": "string", - "readOnly": true, - "enum": [ - "Infinite", - "Fixed" - ], - "x-ms-enum": { - "name": "LeaseDuration", - "modelAsString": true - }, - "description": "Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, - "metadata": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "A name-value pair to associate with the container as metadata." - }, - "immutabilityPolicy": { - "readOnly": true, - "$ref": "#/definitions/ImmutabilityPolicyProperties", - "x-ms-client-name": "ImmutabilityPolicy", - "description": "The ImmutabilityPolicy property of the container." - }, - "legalHold": { - "readOnly": true, - "$ref": "#/definitions/LegalHoldProperties", - "description": "The LegalHold property of the container." - }, - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "hasImmutabilityPolicy": { - "type": "boolean", - "readOnly": true, - "description": "The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container." - } - }, - "description": "The properties of a container." - }, - "BlobContainer": { - "properties": { - "properties": { - "$ref": "#/definitions/ContainerProperties", - "x-ms-client-flatten": true, - "x-ms-client-name": "ContainerProperties", - "description": "Properties of the blob container." - } - }, - "allOf": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "description": "Properties of the blob container, including Id, resource name, resource type, Etag." - }, - "ImmutabilityPolicyProperty": { - "properties": { - "immutabilityPeriodSinceCreationInDays": { - "type": "integer", - "description": "The immutability period for the blobs in the container since the policy creation, in days." + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, - "state": { - "type": "string", - "readOnly": true, - "enum": [ - "Locked", - "Unlocked" - ], - "x-ms-enum": { - "name": "ImmutabilityPolicyState", - "modelAsString": true + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/LeaseContainerRequest" }, - "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked." + "description": "Lease Container request body." } - }, - "required": [ - "immutabilityPeriodSinceCreationInDays" ], - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "ImmutabilityPolicyProperties": { - "properties": { - "properties": { - "$ref": "#/definitions/ImmutabilityPolicyProperty", - "x-ms-client-flatten": true, - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "etag": { - "type": "string", - "readOnly": true, - "description": "ImmutabilityPolicy Etag." - }, - "updateHistory": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/UpdateHistoryProperty" - }, - "description": "The ImmutabilityPolicy update history of the blob container." + "responses": { + "200": { + "description": "OK -- Lease Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/LeaseContainerResponse" + } } + } + } + } + }, + "definitions": { + "ContainerProperties": { + "properties": { + "publicAccess": { + "type": "string", + "enum": [ + "Container", + "Blob", + "None" + ], + "x-ms-enum": { + "name": "PublicAccess", + "modelAsString": false + }, + "description": "Specifies whether data in the container may be accessed publicly and the level of access." }, - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "ImmutabilityPolicy": { - "properties": { - "properties": { - "$ref": "#/definitions/ImmutabilityPolicyProperty", - "x-ms-client-flatten": true, - "description": "The properties of an ImmutabilityPolicy of a blob container." - } + "lastModifiedTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the container was last modified." }, - "allOf": [ - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "required": [ - "properties" - ], - "description": "The ImmutabilityPolicy property of a blob container, including Id, resource name, resource type, Etag." - }, - "UpdateHistoryProperty": { - "properties": { - "update": { - "type": "string", - "readOnly": true, - "enum": [ - "put", - "lock", - "extend" - ], - "x-ms-enum": { - "name": "ImmutabilityPolicyUpdateType", - "modelAsString": true - }, - "description": "The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend." - }, - "immutabilityPeriodSinceCreationInDays": { - "type": "integer", - "readOnly": true, - "description": "The immutability period for the blobs in the container since the policy creation, in days." + "leaseStatus": { + "type": "string", + "readOnly": true, + "enum": [ + "Locked", + "Unlocked" + ], + "x-ms-enum": { + "name": "LeaseStatus", + "modelAsString": true }, - "timestamp": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the ImmutabilityPolicy was updated." + "description": "The lease status of the container." + }, + "leaseState": { + "type": "string", + "readOnly": true, + "enum": [ + "Available", + "Leased", + "Expired", + "Breaking", + "Broken" + ], + "x-ms-enum": { + "name": "LeaseState", + "modelAsString": true }, - "objectIdentifier": { - "type": "string", - "readOnly": true, - "description": "Returns the Object ID of the user who updated the ImmutabilityPolicy." + "description": "Lease state of the container." + }, + "leaseDuration": { + "type": "string", + "readOnly": true, + "enum": [ + "Infinite", + "Fixed" + ], + "x-ms-enum": { + "name": "LeaseDuration", + "modelAsString": true }, - "tenantId": { - "type": "string", - "readOnly": true, - "description": "Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy." + "description": "Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased." + }, + "metadata": { + "type": "object", + "additionalProperties": { + "type": "string" }, - "upn": { - "type": "string", - "readOnly": true, - "description": "Returns the User Principal Name of the user who updated the ImmutabilityPolicy." - } + "description": "A name-value pair to associate with the container as metadata." + }, + "immutabilityPolicy": { + "readOnly": true, + "$ref": "#/definitions/ImmutabilityPolicyProperties", + "x-ms-client-name": "ImmutabilityPolicy", + "description": "The ImmutabilityPolicy property of the container." }, - "description": "An update history of the ImmutabilityPolicy of a blob container." + "legalHold": { + "readOnly": true, + "$ref": "#/definitions/LegalHoldProperties", + "description": "The LegalHold property of the container." + }, + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." + }, + "hasImmutabilityPolicy": { + "type": "boolean", + "readOnly": true, + "description": "The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container." + } }, - "LegalHoldProperties": { + "description": "The properties of a container." + }, + "BlobContainer": { + "properties": { "properties": { - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "tags": { - "type": "array", - "items": { - "$ref": "#/definitions/TagProperty" - }, - "description": "The list of LegalHold tags of a blob container." - } + "$ref": "#/definitions/ContainerProperties", + "x-ms-client-flatten": true, + "x-ms-client-name": "ContainerProperties", + "description": "Properties of the blob container." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "description": "Properties of the blob container, including Id, resource name, resource type, Etag." + }, + "ImmutabilityPolicyProperty": { + "properties": { + "immutabilityPeriodSinceCreationInDays": { + "type": "integer", + "description": "The immutability period for the blobs in the container since the policy creation, in days." }, - "description": "The LegalHold property of a blob container." + "state": { + "type": "string", + "readOnly": true, + "enum": [ + "Locked", + "Unlocked" + ], + "x-ms-enum": { + "name": "ImmutabilityPolicyState", + "modelAsString": true + }, + "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked." + } }, - "TagProperty": { + "required": [ + "immutabilityPeriodSinceCreationInDays" + ], + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "ImmutabilityPolicyProperties": { + "properties": { "properties": { - "tag": { - "type": "string", - "readOnly": true, - "description": "The tag value." - }, - "timestamp": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the tag was added." - }, - "objectIdentifier": { - "type": "string", - "readOnly": true, - "description": "Returns the Object ID of the user who added the tag." + "$ref": "#/definitions/ImmutabilityPolicyProperty", + "x-ms-client-flatten": true, + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "etag": { + "type": "string", + "readOnly": true, + "description": "ImmutabilityPolicy Etag." + }, + "updateHistory": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/UpdateHistoryProperty" }, - "tenantId": { - "type": "string", - "readOnly": true, - "description": "Returns the Tenant ID that issued the token for the user who added the tag." + "description": "The ImmutabilityPolicy update history of the blob container." + } + }, + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "ImmutabilityPolicy": { + "properties": { + "properties": { + "$ref": "#/definitions/ImmutabilityPolicyProperty", + "x-ms-client-flatten": true, + "description": "The properties of an ImmutabilityPolicy of a blob container." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "required": [ + "properties" + ], + "description": "The ImmutabilityPolicy property of a blob container, including Id, resource name, resource type, Etag." + }, + "UpdateHistoryProperty": { + "properties": { + "update": { + "type": "string", + "readOnly": true, + "enum": [ + "put", + "lock", + "extend" + ], + "x-ms-enum": { + "name": "ImmutabilityPolicyUpdateType", + "modelAsString": true }, - "upn": { - "type": "string", - "readOnly": true, - "description": "Returns the User Principal Name of the user who added the tag." - } + "description": "The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend." + }, + "immutabilityPeriodSinceCreationInDays": { + "type": "integer", + "readOnly": true, + "description": "The immutability period for the blobs in the container since the policy creation, in days." }, - "description": "A tag of the LegalHold of a blob container." + "timestamp": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the ImmutabilityPolicy was updated." + }, + "objectIdentifier": { + "type": "string", + "readOnly": true, + "description": "Returns the Object ID of the user who updated the ImmutabilityPolicy." + }, + "tenantId": { + "type": "string", + "readOnly": true, + "description": "Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy." + }, + "upn": { + "type": "string", + "readOnly": true, + "description": "Returns the User Principal Name of the user who updated the ImmutabilityPolicy." + } }, - "LegalHold": { - "properties": { - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "tags": { - "type": "array", - "items": { - "type": "string", - "maxLength": 23, - "minLength": 3 - }, - "description": "Each tag should be 3 to 23 alphanumeric characters and is normalized to lower case at SRP." - } + "description": "An update history of the ImmutabilityPolicy of a blob container." + }, + "LegalHoldProperties": { + "properties": { + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." }, - "required": [ - "tags" - ], - "description": "The LegalHold property of a blob container." + "tags": { + "type": "array", + "items": { + "$ref": "#/definitions/TagProperty" + }, + "description": "The list of LegalHold tags of a blob container." + } }, - "ListContainerItem": { - "properties": { - "properties": { - "$ref": "#/definitions/ContainerProperties", - "x-ms-client-flatten": true, - "description": "The blob container properties be listed out." - } + "description": "The LegalHold property of a blob container." + }, + "TagProperty": { + "properties": { + "tag": { + "type": "string", + "readOnly": true, + "description": "The tag value." }, - "allOf": [ - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "description": "The blob container properties be listed out." + "timestamp": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the tag was added." + }, + "objectIdentifier": { + "type": "string", + "readOnly": true, + "description": "Returns the Object ID of the user who added the tag." + }, + "tenantId": { + "type": "string", + "readOnly": true, + "description": "Returns the Tenant ID that issued the token for the user who added the tag." + }, + "upn": { + "type": "string", + "readOnly": true, + "description": "Returns the User Principal Name of the user who added the tag." + } }, - "ListContainerItems": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ListContainerItem" - }, - "description": "The list of blob containers." - } + "description": "A tag of the LegalHold of a blob container." + }, + "LegalHold": { + "properties": { + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." }, - "description": "The list of blob containers." + "tags": { + "type": "array", + "items": { + "type": "string", + "maxLength": 23, + "minLength": 3 + }, + "description": "Each tag should be 3 to 23 alphanumeric characters and is normalized to lower case at SRP." + } }, - "BlobServiceProperties": { + "required": [ + "tags" + ], + "description": "The LegalHold property of a blob container." + }, + "ListContainerItem": { + "properties": { "properties": { + "$ref": "#/definitions/ContainerProperties", + "x-ms-client-flatten": true, + "description": "The blob container properties be listed out." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "description": "The blob container properties be listed out." + }, + "ListContainerItems": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ListContainerItem" + }, + "description": "The list of blob containers." + } + }, + "description": "The list of blob containers." + }, + "BlobServiceProperties": { + "properties": { "properties": { "properties": { "cors": { @@ -1080,48 +1080,48 @@ "x-ms-client-name": "BlobServiceProperties", "description": "The properties of a storage account’s Blob service." } - }, - "allOf": [ + }, + "allOf": [ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource" } - ], - "description": "The properties of a storage account’s Blob service." - }, - "DeleteRetentionPolicy": { - "properties": { - "enabled": { - "type": "boolean", - "description": "Indicates whether DeleteRetentionPolicy is enabled for the Blob service." - }, - "days": { - "type": "integer", - "minimum": 1, - "maximum": 365, - "description": "Indicates the number of days that the deleted blob should be retained. The minimum specified value can be 1 and the maximum value can be 365." - } + ], + "description": "The properties of a storage account’s Blob service." + }, + "DeleteRetentionPolicy": { + "properties": { + "enabled": { + "type": "boolean", + "description": "Indicates whether DeleteRetentionPolicy is enabled for the Blob service." }, - "description": "The blob service properties for soft delete." + "days": { + "type": "integer", + "minimum": 1, + "maximum": 365, + "description": "Indicates the number of days that the deleted blob should be retained. The minimum specified value can be 1 and the maximum value can be 365." + } }, - "CorsRules": { - "properties": { - "corsRules": { - "type": "array", - "items": { - "description": "Specifies a CORS rule for the Blob service. ", - "$ref": "#/definitions/CorsRule" - }, - "description": "The List of CORS rules. You can include up to five CorsRule elements in the request. " - } - }, - "description": "Sets the CORS rules. You can include up to five CorsRule elements in the request. " + "description": "The blob service properties for soft delete." + }, + "CorsRules": { + "properties": { + "corsRules": { + "type": "array", + "items": { + "description": "Specifies a CORS rule for the Blob service. ", + "$ref": "#/definitions/CorsRule" + }, + "description": "The List of CORS rules. You can include up to five CorsRule elements in the request. " + } }, - "CorsRule": { - "properties": { + "description": "Sets the CORS rules. You can include up to five CorsRule elements in the request. " + }, + "CorsRule": { + "properties": { "allowedOrigins": { "type": "array", "items": { - "type": "string" + "type": "string" }, "description": "Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or \"*\" to allow all domains" }, @@ -1129,7 +1129,15 @@ "type": "array", "items": { "type": "string", - "enum": ["DELETE","GET","HEAD","MERGE","POST","OPTIONS","PUT"] + "enum": [ + "DELETE", + "GET", + "HEAD", + "MERGE", + "POST", + "OPTIONS", + "PUT" + ] }, "description": "Required if CorsRule element is present. A list of HTTP methods that are allowed to be executed by the origin." }, @@ -1151,115 +1159,115 @@ }, "description": "Required if CorsRule element is present. A list of headers allowed to be part of the cross-origin request." } - }, - "required": [ - "allowedOrigins", - "allowedMethods", - "maxAgeInSeconds", - "exposedHeaders", - "allowedHeaders" - ], - "description": "Specifies a CORS rule for the Blob service." }, - "LeaseContainerRequest": { - "properties": { - "action": { - "type": "string", - "enum": [ - "Acquire", - "Renew", - "Change", - "Release", - "Break" - ], - "description": "Specifies the lease action. Can be one of the available actions." - }, - "leaseId": { - "type": "string", - "description": "Identifies the lease. Can be specified in any valid GUID string format." - }, - "breakPeriod": { - "type": "integer", - "description": "Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60." - }, - "leaseDuration": { - "type": "integer", - "description": "Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires." - }, - "proposedLeaseId": { - "type": "string", - "description": "Optional for acquire, required for change. Proposed lease ID, in a GUID string format." - } + "required": [ + "allowedOrigins", + "allowedMethods", + "maxAgeInSeconds", + "exposedHeaders", + "allowedHeaders" + ], + "description": "Specifies a CORS rule for the Blob service." + }, + "LeaseContainerRequest": { + "properties": { + "action": { + "type": "string", + "enum": [ + "Acquire", + "Renew", + "Change", + "Release", + "Break" + ], + "description": "Specifies the lease action. Can be one of the available actions." }, - "required": [ - "action" - ], - "description": "Lease Container request schema." - }, - "LeaseContainerResponse": { - "properties": { - "leaseId": { - "type": "string", - "description": "Returned unique lease ID that must be included with any request to delete the container, or to renew, change, or release the lease." - }, - "leaseTimeSeconds": { - "type": "string", - "description": "Approximate time remaining in the lease period, in seconds." - } + "leaseId": { + "type": "string", + "description": "Identifies the lease. Can be specified in any valid GUID string format." }, - "description": "Lease Container response schema." - } - }, - "parameters": { - "ContainerName": { - "name": "containerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.", - "maxLength": 63, - "minLength": 3, - "x-ms-parameter-location": "method" - }, - "ImmutabilityPolicyName": { - "name": "immutabilityPolicyName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'", - "enum":[ - "default" - ], - "x-ms-parameter-location": "method" + "breakPeriod": { + "type": "integer", + "description": "Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60." + }, + "leaseDuration": { + "type": "integer", + "description": "Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires." + }, + "proposedLeaseId": { + "type": "string", + "description": "Optional for acquire, required for change. Proposed lease ID, in a GUID string format." + } }, - "BlobServicesName": { - "name": "BlobServicesName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob Service within the specified storage account. Blob Service Name must be 'default'", - "enum":[ - "default" - ], - "x-ms-parameter-location": "method" - } + "required": [ + "action" + ], + "description": "Lease Container request schema." }, - "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" + "LeaseContainerResponse": { + "properties": { + "leaseId": { + "type": "string", + "description": "Returned unique lease ID that must be included with any request to delete the container, or to renew, change, or release the lease." + }, + "leaseTimeSeconds": { + "type": "string", + "description": "Approximate time remaining in the lease period, in seconds." } - } + }, + "description": "Lease Container response schema." + } + }, + "parameters": { + "ContainerName": { + "name": "containerName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.", + "maxLength": 63, + "minLength": 3, + "x-ms-parameter-location": "method" + }, + "ImmutabilityPolicyName": { + "name": "immutabilityPolicyName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'", + "enum": [ + "default" + ], + "x-ms-parameter-location": "method" }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "BlobServicesName": { + "name": "BlobServicesName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob Service within the specified storage account. Blob Service Name must be 'default'", + "enum": [ + "default" + ], + "x-ms-parameter-location": "method" + } + }, + "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" } - ] - } \ No newline at end of file + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersClearLegalHold.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersClearLegalHold.json index 7321d39a1a42..bdbe1984cdf9 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersClearLegalHold.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersClearLegalHold.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersDelete.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersDelete.json index 3c85d214edf3..fac6c65f70eb 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersDelete.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersExtendImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersExtendImmutabilityPolicy.json index ff22023adb8b..36299303b11a 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersExtendImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersExtendImmutabilityPolicy.json @@ -4,7 +4,7 @@ "resourceGroupName": "res6238", "accountName": "sto232", "containerName": "container5023", - "If-Match": "\"8d59f830d0c3bf9\"", + "If-Match": "\"8d59f830d0c3bf9\"", "api-version": "2018-11-01", "monitor": "true", "parameters": { @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersGet.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersGet.json index 25034a60c12e..66fcd7816837 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersGet.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersGet.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersGetImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersGetImmutabilityPolicy.json index c20e1d46b025..e274d9b082e2 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersGetImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersGetImmutabilityPolicy.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLease_Acquire.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLease_Acquire.json index a7d2e6b56976..bbcaa0758712 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLease_Acquire.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLease_Acquire.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLease_Break.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLease_Break.json index 54ef93b1f6e3..8c3fb2a8b77e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLease_Break.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLease_Break.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersList.json index ca77b15a674b..918040a39ce5 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersList.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLockImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLockImmutabilityPolicy.json index a23d9942e9f7..9c87757d255b 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLockImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersLockImmutabilityPolicy.json @@ -4,7 +4,7 @@ "resourceGroupName": "res2702", "accountName": "sto5009", "containerName": "container1631", - "If-Match": "\"8d59f825b721dd3\"", + "If-Match": "\"8d59f825b721dd3\"", "api-version": "2018-11-01", "monitor": "true" }, @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPatch.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPatch.json index 3546dfdcbf0a..5369fc873df3 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPatch.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPatch.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPut.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPut.json index 90491ef9b7de..ed778614ed31 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPut.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPut.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPutImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPutImmutabilityPolicy.json index 3d5fd50e80c4..73b2f4796c61 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPutImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersPutImmutabilityPolicy.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersSetLegalHold.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersSetLegalHold.json index e7c307faed58..701b30362e81 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersSetLegalHold.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobContainersSetLegalHold.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobServicesGet.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobServicesGet.json index ad8aa05f1a04..fdeada2f9e9f 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobServicesGet.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobServicesGet.json @@ -15,7 +15,8 @@ "type": "Microsoft.Storage/storageAccounts/blobServices", "properties": { "cors": { - "corsRules": [{ + "corsRules": [ + { "allowedOrigins": [ "http://www.contoso.com", "http://www.fabrikam.com" diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobServicesPut.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobServicesPut.json index f3f25587065b..50c0a13cdb19 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobServicesPut.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/BlobServicesPut.json @@ -9,7 +9,8 @@ "parameters": { "properties": { "cors": { - "corsRules": [{ + "corsRules": [ + { "allowedOrigins": [ "http://www.contoso.com", "http://www.fabrikam.com" @@ -84,7 +85,8 @@ "type": "Microsoft.Storage/storageAccounts/blobServices", "properties": { "cors": { - "corsRules": [{ + "corsRules": [ + { "allowedOrigins": [ "http://www.contoso.com", "http://www.fabrikam.com" @@ -152,4 +154,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/OperationsList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/OperationsList.json index 783b3da4a1a7..e1ad1c481f80 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/OperationsList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/OperationsList.json @@ -470,4 +470,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/SKUList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/SKUList.json index fdae16487cb1..7e9bc9b99131 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/SKUList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/SKUList.json @@ -6451,4 +6451,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountCheckNameAvailability.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountCheckNameAvailability.json index dc0f8f08eeb4..85e257ef2b1c 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountCheckNameAvailability.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountCheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountCreate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountCreate.json index f318cef23fa5..efb820e8982b 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountCreate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountCreate.json @@ -61,4 +61,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountDelete.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountDelete.json index 0c1cacc118a5..7f09d3f8e142 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountDeleteManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountDeleteManagementPolicy.json index 8d58ea35a4ef..95017465fd05 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountDeleteManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountDeleteManagementPolicy.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountFailover.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountFailover.json index 0692c44bbb6d..90714af45975 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountFailover.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountFailover.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountGetManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountGetManagementPolicy.json index 61ac5bc15cc7..e5cd3b2db8bc 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountGetManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountGetManagementPolicy.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountGetProperties.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountGetProperties.json index e2dde7a3e15e..4e7b8ef3a975 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountGetProperties.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountGetProperties.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountList.json index b7cdecd1b691..88e76ae16c42 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountList.json @@ -181,4 +181,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListAccountSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListAccountSAS.json index d36038171133..fcba3070ca13 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListAccountSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListAccountSAS.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListByResourceGroup.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListByResourceGroup.json index b6724e0a3055..a20ec45730a9 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListByResourceGroup.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListByResourceGroup.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListKeys.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListKeys.json index 4985a252eaab..6797c1b9c9c7 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListKeys.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListKeys.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListLocationUsage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListLocationUsage.json index 968a8b130938..a93494b4ab67 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListLocationUsage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListLocationUsage.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListServiceSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListServiceSAS.json index 5c2edb036ba5..5489e1a3b34c 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListServiceSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountListServiceSAS.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountRegenerateKey.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountRegenerateKey.json index eb21a8d05093..3d2ea2945b69 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountRegenerateKey.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountRegenerateKey.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountRevokeUserDelegationKeys.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountRevokeUserDelegationKeys.json index a25d564a2006..9f34dd1c12d5 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountRevokeUserDelegationKeys.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountRevokeUserDelegationKeys.json @@ -1,12 +1,11 @@ { - "parameters": { - "subscriptionId": "{subscription-id}", - "resourceGroupName": "res4167", - "accountName": "sto3539", - "api-version": "2018-11-01" - }, - "responses": { - "200": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "{subscription-id}", + "resourceGroupName": "res4167", + "accountName": "sto3539", + "api-version": "2018-11-01" + }, + "responses": { + "200": {} + } +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountSetManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountSetManagementPolicy.json index a762ef8ffc62..b139d4cd1f7a 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountSetManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountSetManagementPolicy.json @@ -97,4 +97,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountUpdate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountUpdate.json index b871c1eef657..e24fab303572 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountUpdate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/examples/StorageAccountUpdate.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/storage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/storage.json index 7cbfca724e64..8f187ea9c8d5 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2018-11-01/storage.json @@ -450,7 +450,9 @@ "operationId": "Usages_ListByLocation", "description": "Gets the current usage count and the limit for the resources of the location under the subscription.", "x-ms-examples": { - "UsageList": { "$ref": "./examples/StorageAccountListLocationUsage.json"} + "UsageList": { + "$ref": "./examples/StorageAccountListLocationUsage.json" + } }, "parameters": [ { @@ -618,7 +620,9 @@ "operationId": "ManagementPolicies_Get", "description": "Gets the managementpolicy associated with the specified storage account.", "x-ms-examples": { - "StorageAccountGetManagementPolicies": { "$ref": "./examples/StorageAccountGetManagementPolicy.json" } + "StorageAccountGetManagementPolicies": { + "$ref": "./examples/StorageAccountGetManagementPolicy.json" + } }, "parameters": [ { @@ -653,7 +657,9 @@ "operationId": "ManagementPolicies_CreateOrUpdate", "description": "Sets the managementpolicy to the specified storage account.", "x-ms-examples": { - "StorageAccountSetManagementPolicies": { "$ref": "./examples/StorageAccountSetManagementPolicy.json" } + "StorageAccountSetManagementPolicies": { + "$ref": "./examples/StorageAccountSetManagementPolicy.json" + } }, "parameters": [ { @@ -697,7 +703,9 @@ "operationId": "ManagementPolicies_Delete", "description": "Deletes the managementpolicy associated with the specified storage account.", "x-ms-examples": { - "StorageAccountDeleteManagementPolicies": { "$ref": "./examples/StorageAccountDeleteManagementPolicy.json" } + "StorageAccountDeleteManagementPolicies": { + "$ref": "./examples/StorageAccountDeleteManagementPolicy.json" + } }, "parameters": [ { @@ -2153,14 +2161,16 @@ "description": "Returns the date and time the ManagementPolicies was last modified." }, "policy": { - "$ref": "#/definitions/ManagementPolicySchema", - "description": "The Storage Account ManagementPolicy, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." + "$ref": "#/definitions/ManagementPolicySchema", + "description": "The Storage Account ManagementPolicy, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." } }, - "required": ["policy"], + "required": [ + "policy" + ], "description": "The Storage Account ManagementPolicy properties." }, - "ManagementPolicySchema":{ + "ManagementPolicySchema": { "properties": { "rules": { "type": "array", @@ -2170,7 +2180,9 @@ "description": "The Storage Account ManagementPolicies Rules. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." } }, - "required": ["rules"], + "required": [ + "rules" + ], "description": "The Storage Account ManagementPolicies Rules. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." }, "ManagementPolicyRule": { @@ -2199,7 +2211,11 @@ "description": "An object that defines the Lifecycle rule." } }, - "required": ["name", "type", "definition"], + "required": [ + "name", + "type", + "definition" + ], "description": "An object that wraps the Lifecycle rule. Each rule is uniquely defined by name." }, "ManagementPolicyDefinition": { @@ -2213,7 +2229,9 @@ "description": "An object that defines the filter set." } }, - "required": ["actions"], + "required": [ + "actions" + ], "description": "An object that defines the Lifecycle rule. Each definition is made up with a filters set and an actions set." }, "ManagementPolicyFilter": { @@ -2233,7 +2251,9 @@ "description": "An array of predefined enum values. Only blockBlob is supported." } }, - "required": [ "blobTypes" ], + "required": [ + "blobTypes" + ], "description": "Filters limit rule actions to a subset of blobs within the storage account. If multiple filters are defined, a logical AND is performed on all filters. " }, "ManagementPolicyAction": { @@ -2252,8 +2272,8 @@ "ManagementPolicyBaseBlob": { "properties": { "tierToCool": { - "$ref": "#/definitions/DateAfterModification", - "description": "The function to tier blobs to cool storage. Support blobs currently at Hot tier" + "$ref": "#/definitions/DateAfterModification", + "description": "The function to tier blobs to cool storage. Support blobs currently at Hot tier" }, "tierToArchive": { "$ref": "#/definitions/DateAfterModification", @@ -2283,7 +2303,9 @@ "description": "Integer value indicating the age in days after last modification" } }, - "required": ["daysAfterModificationGreaterThan"], + "required": [ + "daysAfterModificationGreaterThan" + ], "description": "Object to define the number of days after last modification." }, "DateAfterCreation": { @@ -2294,7 +2316,9 @@ "description": "Integer value indicating the age in days after creation" } }, - "required": ["daysAfterCreationGreaterThan"], + "required": [ + "daysAfterCreationGreaterThan" + ], "description": "Object to define the number of days after creation." } }, @@ -2326,12 +2350,12 @@ "required": true, "type": "string", "description": "The name of the Storage Account Management Policy. It should always be 'default'", - "enum":[ + "enum": [ "default" ], "x-ms-enum": { - "name": "ManagementPolicyName", - "modelAsString": true + "name": "ManagementPolicyName", + "modelAsString": true }, "x-ms-parameter-location": "method" } @@ -2354,4 +2378,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/blob.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/blob.json index 3cdd724dcb68..b0b8e4ba4fdf 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/blob.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/blob.json @@ -1,25 +1,25 @@ - { - "swagger": "2.0", - "info": { - "version": "2019-04-01", - "title": "StorageManagementClient", - "description": "The Azure Storage Management API." - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/{BlobServicesName}": { - "put": { +{ + "swagger": "2.0", + "info": { + "version": "2019-04-01", + "title": "StorageManagementClient", + "description": "The Azure Storage Management API." + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/{BlobServicesName}": { + "put": { "tags": [ - "BlobService" + "BlobService" ], "operationId": "BlobServices_SetServiceProperties", "x-ms-examples": { @@ -49,23 +49,23 @@ "in": "body", "required": true, "schema": { - "$ref": "#/definitions/BlobServiceProperties" + "$ref": "#/definitions/BlobServiceProperties" }, "description": "The properties of a storage account’s Blob service, including properties for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules." } ], "responses": { - "200": { - "description": "OK -- Sets The properties of a storage account’s Blob service successfully.", - "schema": { - "$ref": "#/definitions/BlobServiceProperties" + "200": { + "description": "OK -- Sets The properties of a storage account’s Blob service successfully.", + "schema": { + "$ref": "#/definitions/BlobServiceProperties" + } } - } } - }, - "get": { + }, + "get": { "tags": [ - "BlobService" + "BlobService" ], "operationId": "BlobServices_GetServiceProperties", "x-ms-examples": { @@ -92,999 +92,999 @@ } ], "responses": { - "200": { - "description": "OK -- returned the properties of a storage account’s Blob service.", - "schema": { - "$ref": "#/definitions/BlobServiceProperties" + "200": { + "description": "OK -- returned the properties of a storage account’s Blob service.", + "schema": { + "$ref": "#/definitions/BlobServiceProperties" + } } - } } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers": { - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_List", - "x-ms-examples": { - "ListContainers": { - "$ref": "./examples/BlobContainersList.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers": { + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_List", + "x-ms-examples": { + "ListContainers": { + "$ref": "./examples/BlobContainersList.json" + } + }, + "description": "Lists all containers and does not support a prefix like data plane. Also SRP today does not return continuation token.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Lists all containers and does not support a prefix like data plane. Also SRP today does not return continuation token.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "$skipToken", - "in": "query", - "type": "string", - "description": "Optional. Continuation token for the list operation." - }, - { - "name": "$maxpagesize", - "in": "query", - "type": "string", - "description": "Optional. Specified maximum number of containers that can be included in the list." - }, - { - "name": "$filter", - "in": "query", - "type": "string", - "description": "Optional. When specified, only container names starting with the filter will be listed." - } - ], - "responses": { - "200": { - "description": "OK -- List Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/ListContainerItems" - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "$skipToken", + "in": "query", + "type": "string", + "description": "Optional. Continuation token for the list operation." + }, + { + "name": "$maxpagesize", + "in": "query", + "type": "string", + "description": "Optional. Specified maximum number of containers that can be included in the list." + }, + { + "name": "$filter", + "in": "query", + "type": "string", + "description": "Optional. When specified, only container names starting with the filter will be listed." + } + ], + "responses": { + "200": { + "description": "OK -- List Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/ListContainerItems" } } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}": { - "put": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Create", - "x-ms-examples": { - "PutContainers": { - "$ref": "./examples/BlobContainersPut.json" - } - }, - "description": "Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "name": "blobContainer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BlobContainer" - }, - "description": "Properties of the blob container to create." - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "201": { - "description": "Created -- Create Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } - }, - "200": { - "description": "OK -- The Container is already created.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}": { + "put": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Create", + "x-ms-examples": { + "PutContainers": { + "$ref": "./examples/BlobContainersPut.json" } }, - "patch": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Update", - "x-ms-examples": { - "UpdateContainers": { - "$ref": "./examples/BlobContainersPatch.json" - } + "description": "Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Updates container properties as specified in request body. Properties not mentioned in the request will be unchanged. Update fails if the specified container doesn't already exist. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "name": "blobContainer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/BlobContainer" - }, - "description": "Properties to update for the blob container." - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "name": "blobContainer", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BlobContainer" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Update Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer", - "description": "Properties of the updated blob container." - } - } + "description": "Properties of the blob container to create." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" } - }, - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Get", - "x-ms-examples": { - "GetContainers": { - "$ref": "./examples/BlobContainersGet.json" + ], + "responses": { + "201": { + "description": "Created -- Create Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer" } }, - "description": "Gets properties of a specified container. ", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Get Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/BlobContainer" - } + "200": { + "description": "OK -- The Container is already created.", + "schema": { + "$ref": "#/definitions/BlobContainer" } } + } + }, + "patch": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Update", + "x-ms-examples": { + "UpdateContainers": { + "$ref": "./examples/BlobContainersPatch.json" + } }, - "delete": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Delete", - "x-ms-examples": { - "DeleteContainers": { - "$ref": "./examples/BlobContainersDelete.json" - } + "description": "Updates container properties as specified in request body. Properties not mentioned in the request will be unchanged. Update fails if the specified container doesn't already exist. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Deletes specified container under its account.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "OK -- Delete Container operation completed successfully." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "name": "blobContainer", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/BlobContainer" }, - "204": { - "description": "No Content -- The Container not exist." + "description": "Properties to update for the blob container." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Update Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer", + "description": "Properties of the updated blob container." } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_SetLegalHold", - "x-ms-examples": { - "SetLegalHoldContainers": { - "$ref": "./examples/BlobContainersSetLegalHold.json" - } + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Get", + "x-ms-examples": { + "GetContainers": { + "$ref": "./examples/BlobContainersGet.json" + } + }, + "description": "Gets properties of a specified container. ", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows an append pattern and does not clear out the existing tags that are not specified in the request.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "LegalHold", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LegalHold" - }, - "description": "The LegalHold property that will be set to a blob container." - } - ], - "responses": { - "200": { - "description": "OK -- Set legal hold tags for Container completed successfully.", - "schema": { - "$ref": "#/definitions/LegalHold" - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Get Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/BlobContainer" } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_ClearLegalHold", - "x-ms-examples": { - "ClearLegalHoldContainers": { - "$ref": "./examples/BlobContainersClearLegalHold.json" - } + "delete": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Delete", + "x-ms-examples": { + "DeleteContainers": { + "$ref": "./examples/BlobContainersDelete.json" + } + }, + "description": "Deletes specified container under its account.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Clears legal hold tags. Clearing the same or non-existent tag results in an idempotent operation. ClearLegalHold clears out only the specified tags in the request.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "LegalHold", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/LegalHold" - }, - "description": "The LegalHold property that will be clear from a blob container." - } - ], - "responses": { - "200": { - "description": "OK -- Clear legal hold tags for Container completed successfully.", - "schema": { - "$ref": "#/definitions/LegalHold" - } - } + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Delete Container operation completed successfully." + }, + "204": { + "description": "No Content -- The Container not exist." } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}": { - "put": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_CreateOrUpdateImmutabilityPolicy", - "x-ms-examples": { - "CreateOrUpdateImmutabilityPolicy": { - "$ref": "./examples/BlobContainersPutImmutabilityPolicy.json" - } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_SetLegalHold", + "x-ms-examples": { + "SetLegalHoldContainers": { + "$ref": "./examples/BlobContainersSetLegalHold.json" + } + }, + "description": "Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows an append pattern and does not clear out the existing tags that are not specified in the request.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Creates or updates an unlocked immutability policy. ETag in If-Match is honored if given but not required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "description": "The ImmutabilityPolicy Properties that will be created or updated to a blob container." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "LegalHold", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LegalHold" }, - { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Creates or updates container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } - } + "description": "The LegalHold property that will be set to a blob container." + } + ], + "responses": { + "200": { + "description": "OK -- Set legal hold tags for Container completed successfully.", + "schema": { + "$ref": "#/definitions/LegalHold" } } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_ClearLegalHold", + "x-ms-examples": { + "ClearLegalHoldContainers": { + "$ref": "./examples/BlobContainersClearLegalHold.json" + } }, - "get": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_GetImmutabilityPolicy", - "x-ms-examples": { - "GetImmutabilityPolicy": { - "$ref": "./examples/BlobContainersGetImmutabilityPolicy.json" - } + "description": "Clears legal hold tags. Clearing the same or non-existent tag results in an idempotent operation. ClearLegalHold clears out only the specified tags in the request.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Gets the existing immutability policy along with the corresponding ETag in response headers and body.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "LegalHold", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/LegalHold" }, - { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Gets container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } - } + "description": "The LegalHold property that will be clear from a blob container." + } + ], + "responses": { + "200": { + "description": "OK -- Clear legal hold tags for Container completed successfully.", + "schema": { + "$ref": "#/definitions/LegalHold" } } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}": { + "put": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_CreateOrUpdateImmutabilityPolicy", + "x-ms-examples": { + "CreateOrUpdateImmutabilityPolicy": { + "$ref": "./examples/BlobContainersPutImmutabilityPolicy.json" + } }, - "delete": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_DeleteImmutabilityPolicy", - "x-ms-examples": { - "DeleteImmutabilityPolicy": { - "$ref": "./examples/BlobContainersDeleteImmutabilityPolicy.json" - } + "description": "Creates or updates an unlocked immutability policy. ETag in If-Match is honored if given but not required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is not allowed, only way is to delete the container after deleting all blobs inside the container.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "#/parameters/ImmutabilityPolicyName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "description": "The ImmutabilityPolicy Properties that will be created or updated to a blob container." + }, + { + "name": "If-Match", + "in": "header", + "required": false, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Creates or updates container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Deletes container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_LockImmutabilityPolicy", - "x-ms-examples": { - "LockImmutabilityPolicy": { - "$ref": "./examples/BlobContainersLockImmutabilityPolicy.json" - } + "get": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_GetImmutabilityPolicy", + "x-ms-examples": { + "GetImmutabilityPolicy": { + "$ref": "./examples/BlobContainersGetImmutabilityPolicy.json" + } + }, + "description": "Gets the existing immutability policy along with the corresponding ETag in response headers and body.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Sets the ImmutabilityPolicy to Locked state. The only action allowed on a Locked policy is ExtendImmutabilityPolicy action. ETag in If-Match is required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": false, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Gets container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Locks container ImmutabilityPolicy operation completed successfully.", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_ExtendImmutabilityPolicy", - "x-ms-examples": { - "ExtendImmutabilityPolicy": { - "$ref": "./examples/BlobContainersExtendImmutabilityPolicy.json" - } + "delete": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_DeleteImmutabilityPolicy", + "x-ms-examples": { + "DeleteImmutabilityPolicy": { + "$ref": "./examples/BlobContainersDeleteImmutabilityPolicy.json" + } + }, + "description": "Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is not allowed, only way is to delete the container after deleting all blobs inside the container.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "description": "Extends the immutabilityPeriodSinceCreationInDays of a locked immutabilityPolicy. The only action allowed on a Locked policy will be this action. ETag in If-Match is required for this operation.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "description": "The ImmutabilityPolicy Properties that will be extended for a blob container." + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "#/parameters/ImmutabilityPolicyName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Deletes container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "If-Match", - "in": "header", - "required": true, - "type": "string", - "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." - } - ], - "responses": { - "200": { - "description": "OK -- Extends container ImmutabilityPolicy operation completed successfully..", - "schema": { - "$ref": "#/definitions/ImmutabilityPolicy" - }, - "headers": { - "ETag": { - "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", - "type": "string" - } + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease": { - "post": { - "tags": [ - "BlobContainers" - ], - "operationId": "BlobContainers_Lease", - "x-ms-examples": { - "Acquire a lease on a container": { - "$ref": "./examples/BlobContainersLease_Acquire.json" + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_LockImmutabilityPolicy", + "x-ms-examples": { + "LockImmutabilityPolicy": { + "$ref": "./examples/BlobContainersLockImmutabilityPolicy.json" + } + }, + "description": "Sets the ImmutabilityPolicy to Locked state. The only action allowed on a Locked policy is ExtendImmutabilityPolicy action. ETag in If-Match is required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" + }, + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Locks container ImmutabilityPolicy operation completed successfully.", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - "Break a lease on a container": { - "$ref": "./examples/BlobContainersLease_Break.json" + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" + } } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_ExtendImmutabilityPolicy", + "x-ms-examples": { + "ExtendImmutabilityPolicy": { + "$ref": "./examples/BlobContainersExtendImmutabilityPolicy.json" + } + }, + "description": "Extends the immutabilityPeriodSinceCreationInDays of a locked immutabilityPolicy. The only action allowed on a Locked policy will be this action. ETag in If-Match is required for this operation.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" + }, + { + "$ref": "./storage.json#/parameters/StorageAccountName" + }, + { + "$ref": "#/parameters/ContainerName" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, - "description": "The Lease Container operation establishes and manages a lock on a container for delete operations. The lock duration can be 15 to 60 seconds, or can be infinite.", - "parameters": [ - { - "$ref": "./storage.json#/parameters/ResourceGroupName" - }, - { - "$ref": "./storage.json#/parameters/StorageAccountName" - }, - { - "$ref": "#/parameters/ContainerName" - }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "description": "The ImmutabilityPolicy Properties that will be extended for a blob container." + }, + { + "name": "If-Match", + "in": "header", + "required": true, + "type": "string", + "description": "The entity state (ETag) version of the immutability policy to update. A value of \"*\" can be used to apply the operation only if the immutability policy already exists. If omitted, this operation will always be applied." + } + ], + "responses": { + "200": { + "description": "OK -- Extends container ImmutabilityPolicy operation completed successfully..", + "schema": { + "$ref": "#/definitions/ImmutabilityPolicy" }, - { - "name": "parameters", - "in": "body", - "schema": { - "$ref": "#/definitions/LeaseContainerRequest" - }, - "description": "Lease Container request body." - } - ], - "responses": { - "200": { - "description": "OK -- Lease Container operation completed successfully.", - "schema": { - "$ref": "#/definitions/LeaseContainerResponse" + "headers": { + "ETag": { + "description": "The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers.", + "type": "string" } } } } } }, - "definitions": { - "ContainerProperties": { - "properties": { - "publicAccess": { - "type": "string", - "enum": [ - "Container", - "Blob", - "None" - ], - "x-ms-enum": { - "name": "PublicAccess", - "modelAsString": false - }, - "description": "Specifies whether data in the container may be accessed publicly and the level of access." + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease": { + "post": { + "tags": [ + "BlobContainers" + ], + "operationId": "BlobContainers_Lease", + "x-ms-examples": { + "Acquire a lease on a container": { + "$ref": "./examples/BlobContainersLease_Acquire.json" }, - "lastModifiedTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the container was last modified." + "Break a lease on a container": { + "$ref": "./examples/BlobContainersLease_Break.json" + } + }, + "description": "The Lease Container operation establishes and manages a lock on a container for delete operations. The lock duration can be 15 to 60 seconds, or can be infinite.", + "parameters": [ + { + "$ref": "./storage.json#/parameters/ResourceGroupName" }, - "leaseStatus": { - "type": "string", - "readOnly": true, - "enum": [ - "Locked", - "Unlocked" - ], - "x-ms-enum": { - "name": "LeaseStatus", - "modelAsString": true - }, - "description": "The lease status of the container." + { + "$ref": "./storage.json#/parameters/StorageAccountName" }, - "leaseState": { - "type": "string", - "readOnly": true, - "enum": [ - "Available", - "Leased", - "Expired", - "Breaking", - "Broken" - ], - "x-ms-enum": { - "name": "LeaseState", - "modelAsString": true - }, - "description": "Lease state of the container." + { + "$ref": "#/parameters/ContainerName" }, - "leaseDuration": { - "type": "string", - "readOnly": true, - "enum": [ - "Infinite", - "Fixed" - ], - "x-ms-enum": { - "name": "LeaseDuration", - "modelAsString": true - }, - "description": "Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased." + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, - "metadata": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "A name-value pair to associate with the container as metadata." - }, - "immutabilityPolicy": { - "readOnly": true, - "$ref": "#/definitions/ImmutabilityPolicyProperties", - "x-ms-client-name": "ImmutabilityPolicy", - "description": "The ImmutabilityPolicy property of the container." - }, - "legalHold": { - "readOnly": true, - "$ref": "#/definitions/LegalHoldProperties", - "description": "The LegalHold property of the container." - }, - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "hasImmutabilityPolicy": { - "type": "boolean", - "readOnly": true, - "description": "The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container." - } - }, - "description": "The properties of a container." - }, - "BlobContainer": { - "properties": { - "properties": { - "$ref": "#/definitions/ContainerProperties", - "x-ms-client-flatten": true, - "x-ms-client-name": "ContainerProperties", - "description": "Properties of the blob container." - } - }, - "allOf": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "description": "Properties of the blob container, including Id, resource name, resource type, Etag." - }, - "ImmutabilityPolicyProperty": { - "properties": { - "immutabilityPeriodSinceCreationInDays": { - "type": "integer", - "description": "The immutability period for the blobs in the container since the policy creation, in days." + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, - "state": { - "type": "string", - "readOnly": true, - "enum": [ - "Locked", - "Unlocked" - ], - "x-ms-enum": { - "name": "ImmutabilityPolicyState", - "modelAsString": true + { + "name": "parameters", + "in": "body", + "schema": { + "$ref": "#/definitions/LeaseContainerRequest" }, - "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked." + "description": "Lease Container request body." } - }, - "required": [ - "immutabilityPeriodSinceCreationInDays" ], - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "ImmutabilityPolicyProperties": { - "properties": { - "properties": { - "$ref": "#/definitions/ImmutabilityPolicyProperty", - "x-ms-client-flatten": true, - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "etag": { - "type": "string", - "readOnly": true, - "description": "ImmutabilityPolicy Etag." - }, - "updateHistory": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/UpdateHistoryProperty" - }, - "description": "The ImmutabilityPolicy update history of the blob container." + "responses": { + "200": { + "description": "OK -- Lease Container operation completed successfully.", + "schema": { + "$ref": "#/definitions/LeaseContainerResponse" + } } + } + } + } + }, + "definitions": { + "ContainerProperties": { + "properties": { + "publicAccess": { + "type": "string", + "enum": [ + "Container", + "Blob", + "None" + ], + "x-ms-enum": { + "name": "PublicAccess", + "modelAsString": false + }, + "description": "Specifies whether data in the container may be accessed publicly and the level of access." }, - "description": "The properties of an ImmutabilityPolicy of a blob container." - }, - "ImmutabilityPolicy": { - "properties": { - "properties": { - "$ref": "#/definitions/ImmutabilityPolicyProperty", - "x-ms-client-flatten": true, - "description": "The properties of an ImmutabilityPolicy of a blob container." - } + "lastModifiedTime": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the container was last modified." }, - "allOf": [ - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "required": [ - "properties" - ], - "description": "The ImmutabilityPolicy property of a blob container, including Id, resource name, resource type, Etag." - }, - "UpdateHistoryProperty": { - "properties": { - "update": { - "type": "string", - "readOnly": true, - "enum": [ - "put", - "lock", - "extend" - ], - "x-ms-enum": { - "name": "ImmutabilityPolicyUpdateType", - "modelAsString": true - }, - "description": "The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend." - }, - "immutabilityPeriodSinceCreationInDays": { - "type": "integer", - "readOnly": true, - "description": "The immutability period for the blobs in the container since the policy creation, in days." + "leaseStatus": { + "type": "string", + "readOnly": true, + "enum": [ + "Locked", + "Unlocked" + ], + "x-ms-enum": { + "name": "LeaseStatus", + "modelAsString": true }, - "timestamp": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the ImmutabilityPolicy was updated." + "description": "The lease status of the container." + }, + "leaseState": { + "type": "string", + "readOnly": true, + "enum": [ + "Available", + "Leased", + "Expired", + "Breaking", + "Broken" + ], + "x-ms-enum": { + "name": "LeaseState", + "modelAsString": true }, - "objectIdentifier": { - "type": "string", - "readOnly": true, - "description": "Returns the Object ID of the user who updated the ImmutabilityPolicy." + "description": "Lease state of the container." + }, + "leaseDuration": { + "type": "string", + "readOnly": true, + "enum": [ + "Infinite", + "Fixed" + ], + "x-ms-enum": { + "name": "LeaseDuration", + "modelAsString": true }, - "tenantId": { - "type": "string", - "readOnly": true, - "description": "Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy." + "description": "Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased." + }, + "metadata": { + "type": "object", + "additionalProperties": { + "type": "string" }, - "upn": { - "type": "string", - "readOnly": true, - "description": "Returns the User Principal Name of the user who updated the ImmutabilityPolicy." - } + "description": "A name-value pair to associate with the container as metadata." + }, + "immutabilityPolicy": { + "readOnly": true, + "$ref": "#/definitions/ImmutabilityPolicyProperties", + "x-ms-client-name": "ImmutabilityPolicy", + "description": "The ImmutabilityPolicy property of the container." + }, + "legalHold": { + "readOnly": true, + "$ref": "#/definitions/LegalHoldProperties", + "description": "The LegalHold property of the container." + }, + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." }, - "description": "An update history of the ImmutabilityPolicy of a blob container." + "hasImmutabilityPolicy": { + "type": "boolean", + "readOnly": true, + "description": "The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container." + } }, - "LegalHoldProperties": { + "description": "The properties of a container." + }, + "BlobContainer": { + "properties": { "properties": { - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "tags": { - "type": "array", - "items": { - "$ref": "#/definitions/TagProperty" - }, - "description": "The list of LegalHold tags of a blob container." - } + "$ref": "#/definitions/ContainerProperties", + "x-ms-client-flatten": true, + "x-ms-client-name": "ContainerProperties", + "description": "Properties of the blob container." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "description": "Properties of the blob container, including Id, resource name, resource type, Etag." + }, + "ImmutabilityPolicyProperty": { + "properties": { + "immutabilityPeriodSinceCreationInDays": { + "type": "integer", + "description": "The immutability period for the blobs in the container since the policy creation, in days." }, - "description": "The LegalHold property of a blob container." + "state": { + "type": "string", + "readOnly": true, + "enum": [ + "Locked", + "Unlocked" + ], + "x-ms-enum": { + "name": "ImmutabilityPolicyState", + "modelAsString": true + }, + "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked." + } }, - "TagProperty": { + "required": [ + "immutabilityPeriodSinceCreationInDays" + ], + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "ImmutabilityPolicyProperties": { + "properties": { "properties": { - "tag": { - "type": "string", - "readOnly": true, - "description": "The tag value." - }, - "timestamp": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "Returns the date and time the tag was added." - }, - "objectIdentifier": { - "type": "string", - "readOnly": true, - "description": "Returns the Object ID of the user who added the tag." + "$ref": "#/definitions/ImmutabilityPolicyProperty", + "x-ms-client-flatten": true, + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "etag": { + "type": "string", + "readOnly": true, + "description": "ImmutabilityPolicy Etag." + }, + "updateHistory": { + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/UpdateHistoryProperty" }, - "tenantId": { - "type": "string", - "readOnly": true, - "description": "Returns the Tenant ID that issued the token for the user who added the tag." + "description": "The ImmutabilityPolicy update history of the blob container." + } + }, + "description": "The properties of an ImmutabilityPolicy of a blob container." + }, + "ImmutabilityPolicy": { + "properties": { + "properties": { + "$ref": "#/definitions/ImmutabilityPolicyProperty", + "x-ms-client-flatten": true, + "description": "The properties of an ImmutabilityPolicy of a blob container." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "required": [ + "properties" + ], + "description": "The ImmutabilityPolicy property of a blob container, including Id, resource name, resource type, Etag." + }, + "UpdateHistoryProperty": { + "properties": { + "update": { + "type": "string", + "readOnly": true, + "enum": [ + "put", + "lock", + "extend" + ], + "x-ms-enum": { + "name": "ImmutabilityPolicyUpdateType", + "modelAsString": true }, - "upn": { - "type": "string", - "readOnly": true, - "description": "Returns the User Principal Name of the user who added the tag." - } + "description": "The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend." + }, + "immutabilityPeriodSinceCreationInDays": { + "type": "integer", + "readOnly": true, + "description": "The immutability period for the blobs in the container since the policy creation, in days." + }, + "timestamp": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the ImmutabilityPolicy was updated." }, - "description": "A tag of the LegalHold of a blob container." + "objectIdentifier": { + "type": "string", + "readOnly": true, + "description": "Returns the Object ID of the user who updated the ImmutabilityPolicy." + }, + "tenantId": { + "type": "string", + "readOnly": true, + "description": "Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy." + }, + "upn": { + "type": "string", + "readOnly": true, + "description": "Returns the User Principal Name of the user who updated the ImmutabilityPolicy." + } }, - "LegalHold": { - "properties": { - "hasLegalHold": { - "type": "boolean", - "readOnly": true, - "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." - }, - "tags": { - "type": "array", - "items": { - "type": "string", - "maxLength": 23, - "minLength": 3 - }, - "description": "Each tag should be 3 to 23 alphanumeric characters and is normalized to lower case at SRP." - } + "description": "An update history of the ImmutabilityPolicy of a blob container." + }, + "LegalHoldProperties": { + "properties": { + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." }, - "required": [ - "tags" - ], - "description": "The LegalHold property of a blob container." + "tags": { + "type": "array", + "items": { + "$ref": "#/definitions/TagProperty" + }, + "description": "The list of LegalHold tags of a blob container." + } }, - "ListContainerItem": { - "properties": { - "properties": { - "$ref": "#/definitions/ContainerProperties", - "x-ms-client-flatten": true, - "description": "The blob container properties be listed out." - } + "description": "The LegalHold property of a blob container." + }, + "TagProperty": { + "properties": { + "tag": { + "type": "string", + "readOnly": true, + "description": "The tag value." }, - "allOf": [ - { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" - } - ], - "description": "The blob container properties be listed out." + "timestamp": { + "type": "string", + "format": "date-time", + "readOnly": true, + "description": "Returns the date and time the tag was added." + }, + "objectIdentifier": { + "type": "string", + "readOnly": true, + "description": "Returns the Object ID of the user who added the tag." + }, + "tenantId": { + "type": "string", + "readOnly": true, + "description": "Returns the Tenant ID that issued the token for the user who added the tag." + }, + "upn": { + "type": "string", + "readOnly": true, + "description": "Returns the User Principal Name of the user who added the tag." + } }, - "ListContainerItems": { + "description": "A tag of the LegalHold of a blob container." + }, + "LegalHold": { + "properties": { + "hasLegalHold": { + "type": "boolean", + "readOnly": true, + "description": "The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account." + }, + "tags": { + "type": "array", + "items": { + "type": "string", + "maxLength": 23, + "minLength": 3 + }, + "description": "Each tag should be 3 to 23 alphanumeric characters and is normalized to lower case at SRP." + } + }, + "required": [ + "tags" + ], + "description": "The LegalHold property of a blob container." + }, + "ListContainerItem": { + "properties": { "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/ListContainerItem" - }, - "description": "List of blobs containers returned.", - "readOnly": true + "$ref": "#/definitions/ContainerProperties", + "x-ms-client-flatten": true, + "description": "The blob container properties be listed out." + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/AzureEntityResource" + } + ], + "description": "The blob container properties be listed out." + }, + "ListContainerItems": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/ListContainerItem" }, - "nextLink": { - "type": "string", - "description": "Request URL that can be used to query next page of containers. Returned when total number of requested containers exceed maximum page size.", - "readOnly": true - } + "description": "List of blobs containers returned.", + "readOnly": true }, - "description": "Response schema. Contains list of blobs returned, and if paging is requested or required, a URL to next page of containers." + "nextLink": { + "type": "string", + "description": "Request URL that can be used to query next page of containers. Returned when total number of requested containers exceed maximum page size.", + "readOnly": true + } }, - "BlobServiceProperties": { - "properties": { + "description": "Response schema. Contains list of blobs returned, and if paging is requested or required, a URL to next page of containers." + }, + "BlobServiceProperties": { + "properties": { "properties": { "properties": { "cors": { @@ -1108,48 +1108,48 @@ "x-ms-client-name": "BlobServiceProperties", "description": "The properties of a storage account’s Blob service." } - }, - "allOf": [ + }, + "allOf": [ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource" } - ], - "description": "The properties of a storage account’s Blob service." - }, - "DeleteRetentionPolicy": { - "properties": { - "enabled": { - "type": "boolean", - "description": "Indicates whether DeleteRetentionPolicy is enabled for the Blob service." - }, - "days": { - "type": "integer", - "minimum": 1, - "maximum": 365, - "description": "Indicates the number of days that the deleted blob should be retained. The minimum specified value can be 1 and the maximum value can be 365." - } + ], + "description": "The properties of a storage account’s Blob service." + }, + "DeleteRetentionPolicy": { + "properties": { + "enabled": { + "type": "boolean", + "description": "Indicates whether DeleteRetentionPolicy is enabled for the Blob service." }, - "description": "The blob service properties for soft delete." + "days": { + "type": "integer", + "minimum": 1, + "maximum": 365, + "description": "Indicates the number of days that the deleted blob should be retained. The minimum specified value can be 1 and the maximum value can be 365." + } }, - "CorsRules": { - "properties": { - "corsRules": { - "type": "array", - "items": { - "description": "Specifies a CORS rule for the Blob service. ", - "$ref": "#/definitions/CorsRule" - }, - "description": "The List of CORS rules. You can include up to five CorsRule elements in the request. " - } - }, - "description": "Sets the CORS rules. You can include up to five CorsRule elements in the request. " + "description": "The blob service properties for soft delete." + }, + "CorsRules": { + "properties": { + "corsRules": { + "type": "array", + "items": { + "description": "Specifies a CORS rule for the Blob service. ", + "$ref": "#/definitions/CorsRule" + }, + "description": "The List of CORS rules. You can include up to five CorsRule elements in the request. " + } }, - "CorsRule": { - "properties": { + "description": "Sets the CORS rules. You can include up to five CorsRule elements in the request. " + }, + "CorsRule": { + "properties": { "allowedOrigins": { "type": "array", "items": { - "type": "string" + "type": "string" }, "description": "Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or \"*\" to allow all domains" }, @@ -1157,7 +1157,15 @@ "type": "array", "items": { "type": "string", - "enum": ["DELETE","GET","HEAD","MERGE","POST","OPTIONS","PUT"] + "enum": [ + "DELETE", + "GET", + "HEAD", + "MERGE", + "POST", + "OPTIONS", + "PUT" + ] }, "description": "Required if CorsRule element is present. A list of HTTP methods that are allowed to be executed by the origin." }, @@ -1179,115 +1187,115 @@ }, "description": "Required if CorsRule element is present. A list of headers allowed to be part of the cross-origin request." } - }, - "required": [ - "allowedOrigins", - "allowedMethods", - "maxAgeInSeconds", - "exposedHeaders", - "allowedHeaders" - ], - "description": "Specifies a CORS rule for the Blob service." }, - "LeaseContainerRequest": { - "properties": { - "action": { - "type": "string", - "enum": [ - "Acquire", - "Renew", - "Change", - "Release", - "Break" - ], - "description": "Specifies the lease action. Can be one of the available actions." - }, - "leaseId": { - "type": "string", - "description": "Identifies the lease. Can be specified in any valid GUID string format." - }, - "breakPeriod": { - "type": "integer", - "description": "Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60." - }, - "leaseDuration": { - "type": "integer", - "description": "Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires." - }, - "proposedLeaseId": { - "type": "string", - "description": "Optional for acquire, required for change. Proposed lease ID, in a GUID string format." - } + "required": [ + "allowedOrigins", + "allowedMethods", + "maxAgeInSeconds", + "exposedHeaders", + "allowedHeaders" + ], + "description": "Specifies a CORS rule for the Blob service." + }, + "LeaseContainerRequest": { + "properties": { + "action": { + "type": "string", + "enum": [ + "Acquire", + "Renew", + "Change", + "Release", + "Break" + ], + "description": "Specifies the lease action. Can be one of the available actions." }, - "required": [ - "action" - ], - "description": "Lease Container request schema." - }, - "LeaseContainerResponse": { - "properties": { - "leaseId": { - "type": "string", - "description": "Returned unique lease ID that must be included with any request to delete the container, or to renew, change, or release the lease." - }, - "leaseTimeSeconds": { - "type": "string", - "description": "Approximate time remaining in the lease period, in seconds." - } + "leaseId": { + "type": "string", + "description": "Identifies the lease. Can be specified in any valid GUID string format." }, - "description": "Lease Container response schema." - } - }, - "parameters": { - "ContainerName": { - "name": "containerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.", - "maxLength": 63, - "minLength": 3, - "x-ms-parameter-location": "method" - }, - "ImmutabilityPolicyName": { - "name": "immutabilityPolicyName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'", - "enum":[ - "default" - ], - "x-ms-parameter-location": "method" + "breakPeriod": { + "type": "integer", + "description": "Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60." + }, + "leaseDuration": { + "type": "integer", + "description": "Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires." + }, + "proposedLeaseId": { + "type": "string", + "description": "Optional for acquire, required for change. Proposed lease ID, in a GUID string format." + } }, - "BlobServicesName": { - "name": "BlobServicesName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the blob Service within the specified storage account. Blob Service Name must be 'default'", - "enum":[ - "default" - ], - "x-ms-parameter-location": "method" - } + "required": [ + "action" + ], + "description": "Lease Container request schema." }, - "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" + "LeaseContainerResponse": { + "properties": { + "leaseId": { + "type": "string", + "description": "Returned unique lease ID that must be included with any request to delete the container, or to renew, change, or release the lease." + }, + "leaseTimeSeconds": { + "type": "string", + "description": "Approximate time remaining in the lease period, in seconds." } - } + }, + "description": "Lease Container response schema." + } + }, + "parameters": { + "ContainerName": { + "name": "containerName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.", + "maxLength": 63, + "minLength": 3, + "x-ms-parameter-location": "method" + }, + "ImmutabilityPolicyName": { + "name": "immutabilityPolicyName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'", + "enum": [ + "default" + ], + "x-ms-parameter-location": "method" }, - "security": [ - { - "azure_auth": [ - "user_impersonation" - ] + "BlobServicesName": { + "name": "BlobServicesName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the blob Service within the specified storage account. Blob Service Name must be 'default'", + "enum": [ + "default" + ], + "x-ms-parameter-location": "method" + } + }, + "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" } - ] - } \ No newline at end of file + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersClearLegalHold.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersClearLegalHold.json index b2570af57688..df3912099039 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersClearLegalHold.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersClearLegalHold.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersDelete.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersDelete.json index 7dd0670a692d..154348285c9d 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersDelete.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersExtendImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersExtendImmutabilityPolicy.json index 3ee0c02e4de7..d7d92460877b 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersExtendImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersExtendImmutabilityPolicy.json @@ -4,7 +4,7 @@ "resourceGroupName": "res6238", "accountName": "sto232", "containerName": "container5023", - "If-Match": "\"8d59f830d0c3bf9\"", + "If-Match": "\"8d59f830d0c3bf9\"", "api-version": "2019-04-01", "monitor": "true", "parameters": { @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersGet.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersGet.json index 8439ef0032a0..bded3406a619 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersGet.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersGet.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersGetImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersGetImmutabilityPolicy.json index b426f1f91a54..34820f079670 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersGetImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersGetImmutabilityPolicy.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLease_Acquire.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLease_Acquire.json index b12570e9ef7f..3ed6a8c894de 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLease_Acquire.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLease_Acquire.json @@ -1,24 +1,24 @@ -{ - "parameters": { - "subscriptionId": "{subscription-id}", - "resourceGroupName": "res3376", - "accountName": "sto328", - "containerName": "container6185", - "api-version": "2019-04-01", - "monitor": "true", - "parameters": { - "action": "Acquire", - "leaseId": null, - "breakPeriod": null, - "leaseDuration": -1, - "proposedLeaseId": null - } - }, - "responses": { - "200": { - "body": { - "leaseId": "8698f513-fa75-44a1-b8eb-30ba336af27d" - } - } - } -} \ No newline at end of file +{ + "parameters": { + "subscriptionId": "{subscription-id}", + "resourceGroupName": "res3376", + "accountName": "sto328", + "containerName": "container6185", + "api-version": "2019-04-01", + "monitor": "true", + "parameters": { + "action": "Acquire", + "leaseId": null, + "breakPeriod": null, + "leaseDuration": -1, + "proposedLeaseId": null + } + }, + "responses": { + "200": { + "body": { + "leaseId": "8698f513-fa75-44a1-b8eb-30ba336af27d" + } + } + } +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLease_Break.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLease_Break.json index 4a786add7ec4..d200272d1e46 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLease_Break.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLease_Break.json @@ -1,24 +1,24 @@ -{ - "parameters": { - "subscriptionId": "{subscription-id}", - "resourceGroupName": "res3376", - "accountName": "sto328", - "containerName": "container6185", - "api-version": "2019-04-01", - "monitor": "true", - "parameters": { - "action": "Break", - "leaseId": "8698f513-fa75-44a1-b8eb-30ba336af27d", - "breakPeriod": null, - "leaseDuration": null, - "proposedLeaseId": null - } - }, - "responses": { - "200": { - "body": { - "leaseTimeSeconds": "0" - } - } - } -} \ No newline at end of file +{ + "parameters": { + "subscriptionId": "{subscription-id}", + "resourceGroupName": "res3376", + "accountName": "sto328", + "containerName": "container6185", + "api-version": "2019-04-01", + "monitor": "true", + "parameters": { + "action": "Break", + "leaseId": "8698f513-fa75-44a1-b8eb-30ba336af27d", + "breakPeriod": null, + "leaseDuration": null, + "proposedLeaseId": null + } + }, + "responses": { + "200": { + "body": { + "leaseTimeSeconds": "0" + } + } + } +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersList.json index 3cd0f27d6e19..4452819927df 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersList.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLockImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLockImmutabilityPolicy.json index daf6b9c98525..a1cce2fe16a2 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLockImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersLockImmutabilityPolicy.json @@ -4,7 +4,7 @@ "resourceGroupName": "res2702", "accountName": "sto5009", "containerName": "container1631", - "If-Match": "\"8d59f825b721dd3\"", + "If-Match": "\"8d59f825b721dd3\"", "api-version": "2019-04-01", "monitor": "true" }, @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPatch.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPatch.json index dde2ce096e94..e9d65c281902 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPatch.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPatch.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPut.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPut.json index e1f4ec3a5730..eb8d409deaaf 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPut.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPut.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPutImmutabilityPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPutImmutabilityPolicy.json index c6446ccbcb41..1914972062fd 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPutImmutabilityPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersPutImmutabilityPolicy.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersSetLegalHold.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersSetLegalHold.json index b95902c7bcd7..85241d1e1bd6 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersSetLegalHold.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobContainersSetLegalHold.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesGet.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesGet.json index 8b837c988559..9b03d54608e3 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesGet.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesGet.json @@ -15,7 +15,8 @@ "type": "Microsoft.Storage/storageAccounts/blobServices", "properties": { "cors": { - "corsRules": [{ + "corsRules": [ + { "allowedOrigins": [ "http://www.contoso.com", "http://www.fabrikam.com" diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesPut.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesPut.json index 2cef4975700b..45231ea77eef 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesPut.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesPut.json @@ -9,7 +9,8 @@ "parameters": { "properties": { "cors": { - "corsRules": [{ + "corsRules": [ + { "allowedOrigins": [ "http://www.contoso.com", "http://www.fabrikam.com" @@ -85,7 +86,8 @@ "type": "Microsoft.Storage/storageAccounts/blobServices", "properties": { "cors": { - "corsRules": [{ + "corsRules": [ + { "allowedOrigins": [ "http://www.contoso.com", "http://www.fabrikam.com" @@ -154,4 +156,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/OperationsList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/OperationsList.json index 8b1b070b4b37..71fc1443767e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/OperationsList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/OperationsList.json @@ -470,4 +470,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/SKUList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/SKUList.json index e8071caa9efc..d686f6946cdd 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/SKUList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/SKUList.json @@ -6451,4 +6451,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountCheckNameAvailability.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountCheckNameAvailability.json index 56e20783b70c..a0383f8ad2da 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountCheckNameAvailability.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountCheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountCreate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountCreate.json index 85fdc7c13144..85d2758babdd 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountCreate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountCreate.json @@ -61,4 +61,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountDelete.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountDelete.json index 0cf21b90e2fa..cb13f44a7518 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountDelete.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountDeleteManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountDeleteManagementPolicy.json index fe12a58b3d2e..1ea0398fbaa5 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountDeleteManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountDeleteManagementPolicy.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountFailover.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountFailover.json index 4413caa1f858..1e158037cd98 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountFailover.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountFailover.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountGetManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountGetManagementPolicy.json index b27bbdd903e4..7d86f343b632 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountGetManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountGetManagementPolicy.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountGetProperties.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountGetProperties.json index 8aa657dfadf0..82e27800ca5e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountGetProperties.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountGetProperties.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountList.json index 5cc48618f9fc..22ecc6bfc194 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountList.json @@ -181,4 +181,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListAccountSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListAccountSAS.json index be42a4099b2e..ffabd4cac596 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListAccountSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListAccountSAS.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListByResourceGroup.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListByResourceGroup.json index b3b81ecf58d3..034e858c4430 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListByResourceGroup.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListByResourceGroup.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListKeys.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListKeys.json index f30b49ee1c6f..df5d8ffd1b10 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListKeys.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListKeys.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListLocationUsage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListLocationUsage.json index cddef6ef4f8f..5419aabfdeb7 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListLocationUsage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListLocationUsage.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListServiceSAS.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListServiceSAS.json index fcad3f840e2e..0d80aba87c1c 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListServiceSAS.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountListServiceSAS.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountRegenerateKey.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountRegenerateKey.json index 611e81de8418..1c5669cb105d 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountRegenerateKey.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountRegenerateKey.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountRevokeUserDelegationKeys.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountRevokeUserDelegationKeys.json index 9d5dbe286b18..d518f1604cb6 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountRevokeUserDelegationKeys.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountRevokeUserDelegationKeys.json @@ -1,12 +1,11 @@ { - "parameters": { - "subscriptionId": "{subscription-id}", - "resourceGroupName": "res4167", - "accountName": "sto3539", - "api-version": "2019-04-01" - }, - "responses": { - "200": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "{subscription-id}", + "resourceGroupName": "res4167", + "accountName": "sto3539", + "api-version": "2019-04-01" + }, + "responses": { + "200": {} + } +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountSetManagementPolicy.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountSetManagementPolicy.json index 74ea69042196..b8f00f58185e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountSetManagementPolicy.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountSetManagementPolicy.json @@ -97,4 +97,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountUpdate.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountUpdate.json index 0610cb939294..9574d8c97499 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountUpdate.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/StorageAccountUpdate.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/storage.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/storage.json index 452a1fb52eca..79e06ca35fb5 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/storage.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/storage.json @@ -450,7 +450,9 @@ "operationId": "Usages_ListByLocation", "description": "Gets the current usage count and the limit for the resources of the location under the subscription.", "x-ms-examples": { - "UsageList": { "$ref": "./examples/StorageAccountListLocationUsage.json"} + "UsageList": { + "$ref": "./examples/StorageAccountListLocationUsage.json" + } }, "parameters": [ { @@ -618,7 +620,9 @@ "operationId": "ManagementPolicies_Get", "description": "Gets the managementpolicy associated with the specified storage account.", "x-ms-examples": { - "StorageAccountGetManagementPolicies": { "$ref": "./examples/StorageAccountGetManagementPolicy.json" } + "StorageAccountGetManagementPolicies": { + "$ref": "./examples/StorageAccountGetManagementPolicy.json" + } }, "parameters": [ { @@ -653,7 +657,9 @@ "operationId": "ManagementPolicies_CreateOrUpdate", "description": "Sets the managementpolicy to the specified storage account.", "x-ms-examples": { - "StorageAccountSetManagementPolicies": { "$ref": "./examples/StorageAccountSetManagementPolicy.json" } + "StorageAccountSetManagementPolicies": { + "$ref": "./examples/StorageAccountSetManagementPolicy.json" + } }, "parameters": [ { @@ -697,7 +703,9 @@ "operationId": "ManagementPolicies_Delete", "description": "Deletes the managementpolicy associated with the specified storage account.", "x-ms-examples": { - "StorageAccountDeleteManagementPolicies": { "$ref": "./examples/StorageAccountDeleteManagementPolicy.json" } + "StorageAccountDeleteManagementPolicies": { + "$ref": "./examples/StorageAccountDeleteManagementPolicy.json" + } }, "parameters": [ { @@ -2155,14 +2163,16 @@ "description": "Returns the date and time the ManagementPolicies was last modified." }, "policy": { - "$ref": "#/definitions/ManagementPolicySchema", - "description": "The Storage Account ManagementPolicy, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." + "$ref": "#/definitions/ManagementPolicySchema", + "description": "The Storage Account ManagementPolicy, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." } }, - "required": ["policy"], + "required": [ + "policy" + ], "description": "The Storage Account ManagementPolicy properties." }, - "ManagementPolicySchema":{ + "ManagementPolicySchema": { "properties": { "rules": { "type": "array", @@ -2172,7 +2182,9 @@ "description": "The Storage Account ManagementPolicies Rules. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." } }, - "required": ["rules"], + "required": [ + "rules" + ], "description": "The Storage Account ManagementPolicies Rules. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts." }, "ManagementPolicyRule": { @@ -2201,7 +2213,11 @@ "description": "An object that defines the Lifecycle rule." } }, - "required": ["name", "type", "definition"], + "required": [ + "name", + "type", + "definition" + ], "description": "An object that wraps the Lifecycle rule. Each rule is uniquely defined by name." }, "ManagementPolicyDefinition": { @@ -2215,7 +2231,9 @@ "description": "An object that defines the filter set." } }, - "required": ["actions"], + "required": [ + "actions" + ], "description": "An object that defines the Lifecycle rule. Each definition is made up with a filters set and an actions set." }, "ManagementPolicyFilter": { @@ -2235,7 +2253,9 @@ "description": "An array of predefined enum values. Only blockBlob is supported." } }, - "required": [ "blobTypes" ], + "required": [ + "blobTypes" + ], "description": "Filters limit rule actions to a subset of blobs within the storage account. If multiple filters are defined, a logical AND is performed on all filters. " }, "ManagementPolicyAction": { @@ -2254,8 +2274,8 @@ "ManagementPolicyBaseBlob": { "properties": { "tierToCool": { - "$ref": "#/definitions/DateAfterModification", - "description": "The function to tier blobs to cool storage. Support blobs currently at Hot tier" + "$ref": "#/definitions/DateAfterModification", + "description": "The function to tier blobs to cool storage. Support blobs currently at Hot tier" }, "tierToArchive": { "$ref": "#/definitions/DateAfterModification", @@ -2285,7 +2305,9 @@ "description": "Integer value indicating the age in days after last modification" } }, - "required": ["daysAfterModificationGreaterThan"], + "required": [ + "daysAfterModificationGreaterThan" + ], "description": "Object to define the number of days after last modification." }, "DateAfterCreation": { @@ -2296,7 +2318,9 @@ "description": "Integer value indicating the age in days after creation" } }, - "required": ["daysAfterCreationGreaterThan"], + "required": [ + "daysAfterCreationGreaterThan" + ], "description": "Object to define the number of days after creation." } }, @@ -2328,12 +2352,12 @@ "required": true, "type": "string", "description": "The name of the Storage Account Management Policy. It should always be 'default'", - "enum":[ + "enum": [ "default" ], "x-ms-enum": { - "name": "ManagementPolicyName", - "modelAsString": true + "name": "ManagementPolicyName", + "modelAsString": true }, "x-ms-parameter-location": "method" } @@ -2356,4 +2380,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/CreateJob.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/CreateJob.json index b534fd1a18f9..f9d11ac2df19 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/CreateJob.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/CreateJob.json @@ -1,10 +1,10 @@ { "parameters": { "api-version": "2016-11-01", - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "resourceGroupName": "Default-Storage-WestUS", - "jobName": "test-by1-import", - "body": { + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "resourceGroupName": "Default-Storage-WestUS", + "jobName": "test-by1-import", + "body": { "location": "West US", "properties": { "storageAccountId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", @@ -37,100 +37,100 @@ }, "responses": { "200": { - "body": { - "properties":{ - "storageAccountId":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", - "jobType":"Import", - "returnAddress":{ - "recipientName":"Tets", - "streetAddress1":"Street1", - "streetAddress2":"street2", - "city":"Redmond", - "stateOrProvince":"wa", - "postalCode":"98007", - "countryOrRegion":"USA", - "phone":"4250000000", - "email":"Test@contoso.com" + "body": { + "properties": { + "storageAccountId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", + "jobType": "Import", + "returnAddress": { + "recipientName": "Tets", + "streetAddress1": "Street1", + "streetAddress2": "street2", + "city": "Redmond", + "stateOrProvince": "wa", + "postalCode": "98007", + "countryOrRegion": "USA", + "phone": "4250000000", + "email": "Test@contoso.com" }, - "shippingInformation":{ - "recipientName":"Microsoft Azure Import/Export Service", - "streetAddress1":"2045 Lafayette Street", - "streetAddress2":"", - "city":"Santa Clara", - "stateOrProvince":"CA", - "postalCode":"95050", - "countryOrRegion":"USA", - "phone":"408 0000 0000" + "shippingInformation": { + "recipientName": "Microsoft Azure Import/Export Service", + "streetAddress1": "2045 Lafayette Street", + "streetAddress2": "", + "city": "Santa Clara", + "stateOrProvince": "CA", + "postalCode": "95050", + "countryOrRegion": "USA", + "phone": "408 0000 0000" }, - "diagnosticsPath":"waimportexport", - "logLevel":"Verbose", - "backupDriveManifest":true, - "cancelRequested":false, - "state":"Creating", - "driveList":[ - { - "driveId":"9CA995BB", - "manifestFile":"\\DriveManifest.xml", - "manifestHash":"109B21108597EF36D5785F08303F3638", - "driveHeaderHash":"", - "state":"Specified" + "diagnosticsPath": "waimportexport", + "logLevel": "Verbose", + "backupDriveManifest": true, + "cancelRequested": false, + "state": "Creating", + "driveList": [ + { + "driveId": "9CA995BB", + "manifestFile": "\\DriveManifest.xml", + "manifestHash": "109B21108597EF36D5785F08303F3638", + "driveHeaderHash": "", + "state": "Specified" } ], - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" }, - "id":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test", - "name":"test-by1-import", - "type":"Microsoft.ImportExport/jobs", - "location":"West US" + "id": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test", + "name": "test-by1-import", + "type": "Microsoft.ImportExport/jobs", + "location": "West US" } - }, + }, "201": { - "body": { - "properties":{ - "storageAccountId":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", - "jobType":"Import", - "returnAddress":{ - "recipientName":"Tets", - "streetAddress1":"Street1", - "streetAddress2":"street2", - "city":"Redmond", - "stateOrProvince":"wa", - "postalCode":"98007", - "countryOrRegion":"USA", - "phone":"4250000000", - "email":"Test@contoso.com" + "body": { + "properties": { + "storageAccountId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", + "jobType": "Import", + "returnAddress": { + "recipientName": "Tets", + "streetAddress1": "Street1", + "streetAddress2": "street2", + "city": "Redmond", + "stateOrProvince": "wa", + "postalCode": "98007", + "countryOrRegion": "USA", + "phone": "4250000000", + "email": "Test@contoso.com" }, - "shippingInformation":{ - "recipientName":"Microsoft Azure Import/Export Service", - "streetAddress1":"2045 Lafayette Street", - "streetAddress2":"", - "city":"Santa Clara", - "stateOrProvince":"CA", - "postalCode":"95050", - "countryOrRegion":"USA", - "phone":"408 0000 0000" + "shippingInformation": { + "recipientName": "Microsoft Azure Import/Export Service", + "streetAddress1": "2045 Lafayette Street", + "streetAddress2": "", + "city": "Santa Clara", + "stateOrProvince": "CA", + "postalCode": "95050", + "countryOrRegion": "USA", + "phone": "408 0000 0000" }, - "diagnosticsPath":"waimportexport", - "logLevel":"Verbose", - "backupDriveManifest":true, - "cancelRequested":false, - "state":"Creating", - "driveList":[ - { - "driveId":"9CA995BB", - "manifestFile":"\\DriveManifest.xml", - "manifestHash":"109B21108597EF36D5785F08303F3638", - "driveHeaderHash":"", - "state":"Specified" + "diagnosticsPath": "waimportexport", + "logLevel": "Verbose", + "backupDriveManifest": true, + "cancelRequested": false, + "state": "Creating", + "driveList": [ + { + "driveId": "9CA995BB", + "manifestFile": "\\DriveManifest.xml", + "manifestHash": "109B21108597EF36D5785F08303F3638", + "driveHeaderHash": "", + "state": "Specified" } ], - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" }, - "id":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test", - "name":"test-by1-import", - "type":"Microsoft.ImportExport/jobs", - "location":"West US" + "id": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test", + "name": "test-by1-import", + "type": "Microsoft.ImportExport/jobs", + "location": "West US" } - } + } } -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/DeleteJob.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/DeleteJob.json index 7408d5d92625..37b2b754c6bc 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/DeleteJob.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/DeleteJob.json @@ -1,56 +1,56 @@ { "parameters": { "api-version": "2016-11-01", - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "resourceGroupName": "Default-Storage-WestUS", - "jobName": "test-by1-import" + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "resourceGroupName": "Default-Storage-WestUS", + "jobName": "test-by1-import" }, "responses": { "200": { - "properties":{ - "storageAccountId":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", - "jobType":"Import", - "returnAddress":{ - "recipientName":"Tets", - "streetAddress1":"Street1", - "streetAddress2":"street2", - "city":"Redmond", - "stateOrProvince":"wa", - "postalCode":"98007", - "countryOrRegion":"USA", - "phone":"4250000000", - "email":"Test@contoso.com" + "properties": { + "storageAccountId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", + "jobType": "Import", + "returnAddress": { + "recipientName": "Tets", + "streetAddress1": "Street1", + "streetAddress2": "street2", + "city": "Redmond", + "stateOrProvince": "wa", + "postalCode": "98007", + "countryOrRegion": "USA", + "phone": "4250000000", + "email": "Test@contoso.com" }, - "shippingInformation":{ - "recipientName":"Microsoft Azure Import/Export Service", - "streetAddress1":"2045 Lafayette Street", - "streetAddress2":"", - "city":"Santa Clara", - "stateOrProvince":"CA", - "postalCode":"95050", - "countryOrRegion":"USA", - "phone":"408 0000 0000" + "shippingInformation": { + "recipientName": "Microsoft Azure Import/Export Service", + "streetAddress1": "2045 Lafayette Street", + "streetAddress2": "", + "city": "Santa Clara", + "stateOrProvince": "CA", + "postalCode": "95050", + "countryOrRegion": "USA", + "phone": "408 0000 0000" }, - "diagnosticsPath":"waimportexport", - "logLevel":"Verbose", - "backupDriveManifest":true, - "cancelRequested":false, - "state":"Creating", - "driveList":[ - { - "driveId":"9CA995BB", - "manifestFile":"\\DriveManifest.xml", - "manifestHash":"109B21108597EF36D5785F08303F3638", - "driveHeaderHash":"", - "state":"Specified" + "diagnosticsPath": "waimportexport", + "logLevel": "Verbose", + "backupDriveManifest": true, + "cancelRequested": false, + "state": "Creating", + "driveList": [ + { + "driveId": "9CA995BB", + "manifestFile": "\\DriveManifest.xml", + "manifestHash": "109B21108597EF36D5785F08303F3638", + "driveHeaderHash": "", + "state": "Specified" } ], - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" }, - "id":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test", - "name":"test-by1-import", - "type":"Microsoft.ImportExport/jobs", - "location":"West US" - } + "id": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test", + "name": "test-by1-import", + "type": "Microsoft.ImportExport/jobs", + "location": "West US" + } } -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/GetJob.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/GetJob.json index 1c166cc1d34f..148beb2dc74c 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/GetJob.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/GetJob.json @@ -1,58 +1,58 @@ { "parameters": { "api-version": "2016-11-01", - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "resourceGroupName": "Default-Storage-WestUS", - "jobName": "test-by1-import" + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "resourceGroupName": "Default-Storage-WestUS", + "jobName": "test-by1-import" }, "responses": { "200": { - "body": { - "properties":{ - "storageAccountId":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", - "jobType":"Import", - "returnAddress":{ - "recipientName":"Tets", - "streetAddress1":"Street1", - "streetAddress2":"street2", - "city":"Redmond", - "stateOrProvince":"wa", - "postalCode":"98007", - "countryOrRegion":"USA", - "phone":"4250000000", - "email":"Test@contoso.com" + "body": { + "properties": { + "storageAccountId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", + "jobType": "Import", + "returnAddress": { + "recipientName": "Tets", + "streetAddress1": "Street1", + "streetAddress2": "street2", + "city": "Redmond", + "stateOrProvince": "wa", + "postalCode": "98007", + "countryOrRegion": "USA", + "phone": "4250000000", + "email": "Test@contoso.com" }, - "shippingInformation":{ - "recipientName":"Microsoft Azure Import/Export Service", - "streetAddress1":"2045 Lafayette Street", - "streetAddress2":"", - "city":"Santa Clara", - "stateOrProvince":"CA", - "postalCode":"95050", - "countryOrRegion":"USA", - "phone":"408 0000 0000" + "shippingInformation": { + "recipientName": "Microsoft Azure Import/Export Service", + "streetAddress1": "2045 Lafayette Street", + "streetAddress2": "", + "city": "Santa Clara", + "stateOrProvince": "CA", + "postalCode": "95050", + "countryOrRegion": "USA", + "phone": "408 0000 0000" }, - "diagnosticsPath":"waimportexport", - "logLevel":"Verbose", - "backupDriveManifest":true, - "cancelRequested":false, - "state":"Creating", - "driveList":[ - { - "driveId":"9CA995BB", - "manifestFile":"\\DriveManifest.xml", - "manifestHash":"109B21108597EF36D5785F08303F3638", - "driveHeaderHash":"", - "state":"Specified" + "diagnosticsPath": "waimportexport", + "logLevel": "Verbose", + "backupDriveManifest": true, + "cancelRequested": false, + "state": "Creating", + "driveList": [ + { + "driveId": "9CA995BB", + "manifestFile": "\\DriveManifest.xml", + "manifestHash": "109B21108597EF36D5785F08303F3638", + "driveHeaderHash": "", + "state": "Specified" } ], - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" }, - "id":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test", - "name":"test-by1-import", - "type":"Microsoft.ImportExport/jobs", - "location":"West US" + "id": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test", + "name": "test-by1-import", + "type": "Microsoft.ImportExport/jobs", + "location": "West US" } - } + } } -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/GetLocation.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/GetLocation.json index b791f05410f6..0de2eecc4b23 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/GetLocation.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/GetLocation.json @@ -1,31 +1,31 @@ { "parameters": { "api-version": "2016-11-01", - "locationName": "West US" + "locationName": "West US" }, "responses": { "200": { - "body": { - "properties":{ - "recipientName":"Microsoft Azure Import/Export Service", - "streetAddress1":"2045 Lafayette Street", - "streetAddress2":"", - "city":"Santa Clara", - "stateOrProvince":"CA", - "postalCode":"95050", - "countryOrRegion":"USA", - "phone":"408 352 7600", - "supportedCarriers":[ + "body": { + "properties": { + "recipientName": "Microsoft Azure Import/Export Service", + "streetAddress1": "2045 Lafayette Street", + "streetAddress2": "", + "city": "Santa Clara", + "stateOrProvince": "CA", + "postalCode": "95050", + "countryOrRegion": "USA", + "phone": "408 352 7600", + "supportedCarriers": [ "FedEx" ], - "alternateLocations":[ + "alternateLocations": [ "/providers/Microsoft.ImportExport/locations/westus" ] }, - "id":"/providers/Microsoft.ImportExport/locations/westus", - "name":"West US", - "type":"Microsoft.ImportExport/locations" + "id": "/providers/Microsoft.ImportExport/locations/westus", + "name": "West US", + "type": "Microsoft.ImportExport/locations" } } } -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListBitLockerKeys.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListBitLockerKeys.json index 107257a77d0b..38c483bbbdad 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListBitLockerKeys.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListBitLockerKeys.json @@ -1,20 +1,20 @@ { "parameters": { "api-version": "2016-11-01", - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "resourceGroupName": "Default-Storage-WestUS", - "jobName": "test-by1-import" + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "resourceGroupName": "Default-Storage-WestUS", + "jobName": "test-by1-import" }, "responses": { "200": { - "body": { - "value":[ - { - "driveId":"9CA995BB", - "bitLockerKey":"000000-000000-111111-222222-333333-444444-555555-666666" + "body": { + "value": [ + { + "driveId": "9CA995BB", + "bitLockerKey": "000000-000000-111111-222222-333333-444444-555555-666666" } ] } - } + } } -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListJobsInResourceGroup.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListJobsInResourceGroup.json index ab42b024b5eb..706514e82e46 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListJobsInResourceGroup.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListJobsInResourceGroup.json @@ -1,58 +1,58 @@ { "parameters": { "api-version": "2016-11-01", - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "resourceGroupName": "Default-Storage-WestUS" + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "resourceGroupName": "Default-Storage-WestUS" }, "responses": { "200": { - "body": { - "value":[ - { - "properties":{ - "storageAccountId":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/xtprodtestwu", - "jobType":"Import", - "returnAddress":{ - "recipientName":"La", - "streetAddress1":"Street1", - "streetAddress2":"street2", - "city":"Redmond", - "stateOrProvince":"wa", - "postalCode":"98007", - "countryOrRegion":"USA", - "phone":"4250000000", - "email":"test@contoso.com" + "body": { + "value": [ + { + "properties": { + "storageAccountId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/xtprodtestwu", + "jobType": "Import", + "returnAddress": { + "recipientName": "La", + "streetAddress1": "Street1", + "streetAddress2": "street2", + "city": "Redmond", + "stateOrProvince": "wa", + "postalCode": "98007", + "countryOrRegion": "USA", + "phone": "4250000000", + "email": "test@contoso.com" }, - "shippingInformation":{ - "recipientName":"Microsoft Azure Import/Export Service", - "streetAddress1":"2045 Lafayette Street", - "streetAddress2":"", - "city":"Santa Clara", - "stateOrProvince":"CA", - "postalCode":"95050", - "countryOrRegion":"USA", - "phone":"408 352 7600" + "shippingInformation": { + "recipientName": "Microsoft Azure Import/Export Service", + "streetAddress1": "2045 Lafayette Street", + "streetAddress2": "", + "city": "Santa Clara", + "stateOrProvince": "CA", + "postalCode": "95050", + "countryOrRegion": "USA", + "phone": "408 352 7600" }, - "deliveryPackage":{ - "carrierName":"FedEx", - "trackingNumber":"787895108176", - "driveCount":1, - "shipDate":"9/29/2017 10:28:35 PM" + "deliveryPackage": { + "carrierName": "FedEx", + "trackingNumber": "787895108176", + "driveCount": 1, + "shipDate": "9/29/2017 10:28:35 PM" }, - "diagnosticsPath":"waimportexport", - "logLevel":"Verbose", - "backupDriveManifest":true, - "cancelRequested":false, - "state":"Received", - "provisioningState":"Succeeded" + "diagnosticsPath": "waimportexport", + "logLevel": "Verbose", + "backupDriveManifest": true, + "cancelRequested": false, + "state": "Received", + "provisioningState": "Succeeded" }, - "id":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test-by1-ssd-2", - "name":"test-by1-ssd-2", - "type":"Microsoft.ImportExport/jobs", - "location":"West US" + "id": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test-by1-ssd-2", + "name": "test-by1-ssd-2", + "type": "Microsoft.ImportExport/jobs", + "location": "West US" } ] } } } -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListJobsInSubscription.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListJobsInSubscription.json index 97db839cfc5c..6d7de1d7d00e 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListJobsInSubscription.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListJobsInSubscription.json @@ -1,121 +1,121 @@ { "parameters": { "api-version": "2016-11-01", - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" }, "responses": { "200": { - "body": { - "value":[ - { - "properties":{ - "storageAccountId":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/xtprodtestarmos2", - "jobType":"Import", - "returnAddress":{ - "recipientName":"La", - "streetAddress1":"Street1", - "streetAddress2":"street2", - "city":"city", - "stateOrProvince":"wa", - "postalCode":"98007", - "countryOrRegion":"USA", - "phone":"425000000", - "email":"test@contoso.com" + "body": { + "value": [ + { + "properties": { + "storageAccountId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/xtprodtestarmos2", + "jobType": "Import", + "returnAddress": { + "recipientName": "La", + "streetAddress1": "Street1", + "streetAddress2": "street2", + "city": "city", + "stateOrProvince": "wa", + "postalCode": "98007", + "countryOrRegion": "USA", + "phone": "425000000", + "email": "test@contoso.com" }, - "shippingInformation":{ - "recipientName":"Windows Azure Import Export Service", - "streetAddress1":"Boydton 1 / BLDG # 1 101 Herbert Drive", - "streetAddress2":"", - "city":"Boydton", - "stateOrProvince":"VA", - "postalCode":"23917", - "countryOrRegion":"USA", - "phone":"+1-434-738-9443" + "shippingInformation": { + "recipientName": "Windows Azure Import Export Service", + "streetAddress1": "Boydton 1 / BLDG # 1 101 Herbert Drive", + "streetAddress2": "", + "city": "Boydton", + "stateOrProvince": "VA", + "postalCode": "23917", + "countryOrRegion": "USA", + "phone": "+1-434-738-9443" }, - "deliveryPackage":{ - "carrierName":"FedEx", - "trackingNumber":"992016102507", - "driveCount":1, - "shipDate":"8/11/2017 9:05:00 PM" + "deliveryPackage": { + "carrierName": "FedEx", + "trackingNumber": "992016102507", + "driveCount": 1, + "shipDate": "8/11/2017 9:05:00 PM" }, - "diagnosticsPath":"waimportexport", - "logLevel":"Verbose", - "backupDriveManifest":true, - "cancelRequested":false, - "state":"Received", - "driveList":[ - { - "driveId":"7PHR882C", - "manifestFile":"\\DriveManifest.xml", - "manifestHash":"E5D632DB047C74B3B17C8F3359950ADB", - "state":"Received" + "diagnosticsPath": "waimportexport", + "logLevel": "Verbose", + "backupDriveManifest": true, + "cancelRequested": false, + "state": "Received", + "driveList": [ + { + "driveId": "7PHR882C", + "manifestFile": "\\DriveManifest.xml", + "manifestHash": "E5D632DB047C74B3B17C8F3359950ADB", + "state": "Received" } ], - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" }, - "id":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/testrg/providers/Microsoft.ImportExport/jobs/test-bn1-import-cpu100-01", - "name":"test-bn1-import-cpu100-01", - "type":"Microsoft.ImportExport/jobs", - "location":"East US 2" + "id": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/testrg/providers/Microsoft.ImportExport/jobs/test-bn1-import-cpu100-01", + "name": "test-bn1-import-cpu100-01", + "type": "Microsoft.ImportExport/jobs", + "location": "East US 2" }, - { - "properties":{ - "storageAccountId":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/xtprodtestarmos2", - "jobType":"Import", - "returnAddress":{ - "recipientName":"La", - "streetAddress1":"Street1", - "streetAddress2":"street2", - "city":"city", - "stateOrProvince":"wa", - "postalCode":"98007", - "countryOrRegion":"USA", - "phone":"4256150991", - "email":"test@contoso.com" + { + "properties": { + "storageAccountId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/xtprodtestarmos2", + "jobType": "Import", + "returnAddress": { + "recipientName": "La", + "streetAddress1": "Street1", + "streetAddress2": "street2", + "city": "city", + "stateOrProvince": "wa", + "postalCode": "98007", + "countryOrRegion": "USA", + "phone": "4256150991", + "email": "test@contoso.com" }, - "shippingInformation":{ - "recipientName":"Windows Azure Import Export Service", - "streetAddress1":"Boydton 1 / BLDG # 1 101 Herbert Drive", - "streetAddress2":"", - "city":"Boydton", - "stateOrProvince":"VA", - "postalCode":"23917", - "countryOrRegion":"USA", - "phone":"+1-434-738-9443" + "shippingInformation": { + "recipientName": "Windows Azure Import Export Service", + "streetAddress1": "Boydton 1 / BLDG # 1 101 Herbert Drive", + "streetAddress2": "", + "city": "Boydton", + "stateOrProvince": "VA", + "postalCode": "23917", + "countryOrRegion": "USA", + "phone": "+1-434-738-9443" }, - "deliveryPackage":{ - "carrierName":"FedEx", - "trackingNumber":"992016102508", - "driveCount":1, - "shipDate":"8/13/2017 7:32:23 PM" + "deliveryPackage": { + "carrierName": "FedEx", + "trackingNumber": "992016102508", + "driveCount": 1, + "shipDate": "8/13/2017 7:32:23 PM" }, - "diagnosticsPath":"waimportexport", - "logLevel":"Verbose", - "backupDriveManifest":true, - "cancelRequested":false, - "state":"Transferring", - "percentComplete":6, - "driveList":[ - { - "driveId":"KV6H86XP", - "manifestFile":"\\DriveManifest.xml", - "manifestHash":"F6A488A65AF0CCA7D050B7F9F43A197C", - "state":"CompletedMoreInfo", - "copyStatus":"InProgress", - "verboseLogUri":"https://foo.blob.core.windows.net/waimportexport/waies/test-bn1-import-cpu100-02_KV6H86XP_20170813-194618-350_verbose.xml", - "errorLogUri":"https://foo.blob.core.windows.net/waimportexport/waies/test-bn1-import-cpu100-02_KV6H86XP_20170813-194620-021_error.xml", - "manifestUri":"https://foo.blob.core.windows.net/waimportexport/waies/test-bn1-import-cpu100-02_KV6H86XP_20170813-194620-574_manifest.xml" + "diagnosticsPath": "waimportexport", + "logLevel": "Verbose", + "backupDriveManifest": true, + "cancelRequested": false, + "state": "Transferring", + "percentComplete": 6, + "driveList": [ + { + "driveId": "KV6H86XP", + "manifestFile": "\\DriveManifest.xml", + "manifestHash": "F6A488A65AF0CCA7D050B7F9F43A197C", + "state": "CompletedMoreInfo", + "copyStatus": "InProgress", + "verboseLogUri": "https://foo.blob.core.windows.net/waimportexport/waies/test-bn1-import-cpu100-02_KV6H86XP_20170813-194618-350_verbose.xml", + "errorLogUri": "https://foo.blob.core.windows.net/waimportexport/waies/test-bn1-import-cpu100-02_KV6H86XP_20170813-194620-021_error.xml", + "manifestUri": "https://foo.blob.core.windows.net/waimportexport/waies/test-bn1-import-cpu100-02_KV6H86XP_20170813-194620-574_manifest.xml" } ], - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" }, - "id":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/testrg/providers/Microsoft.ImportExport/jobs/test-bn1-import-cpu100-02", - "name":"test-bn1-import-cpu100-02", - "type":"Microsoft.ImportExport/jobs", - "location":"East US 2" + "id": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/testrg/providers/Microsoft.ImportExport/jobs/test-bn1-import-cpu100-02", + "name": "test-bn1-import-cpu100-02", + "type": "Microsoft.ImportExport/jobs", + "location": "East US 2" } ] } } } -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListLocations.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListLocations.json index ad46df5f8dd3..eaf8de53c26a 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListLocations.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListLocations.json @@ -4,52 +4,52 @@ }, "responses": { "200": { - "body": { - "value":[ - { - "properties":{ - "recipientName":"Windows Azure Import/Export Service", - "streetAddress1":"Customer-A c/o NEXTDC Ltd, Delivery code ABCDEFG, 4 Eden Park Drive", - "streetAddress2":"", - "city":"Macquarie Park", - "stateOrProvince":"NSW", - "postalCode":"2113", - "countryOrRegion":"Australia", - "phone":"612 0000 0000", - "supportedCarriers":[ + "body": { + "value": [ + { + "properties": { + "recipientName": "Windows Azure Import/Export Service", + "streetAddress1": "Customer-A c/o NEXTDC Ltd, Delivery code ABCDEFG, 4 Eden Park Drive", + "streetAddress2": "", + "city": "Macquarie Park", + "stateOrProvince": "NSW", + "postalCode": "2113", + "countryOrRegion": "Australia", + "phone": "612 0000 0000", + "supportedCarriers": [ "DHL" ], - "alternateLocations":[ + "alternateLocations": [ "/providers/Microsoft.ImportExport/locations/australiaeast" ] }, - "id":"/providers/Microsoft.ImportExport/locations/australiaeast", - "name":"Australia East", - "type":"Microsoft.ImportExport/locations" + "id": "/providers/Microsoft.ImportExport/locations/australiaeast", + "name": "Australia East", + "type": "Microsoft.ImportExport/locations" }, - { - "properties":{ - "recipientName":"Microsoft Azure Import/Export Service", - "streetAddress1":"Microsoft, c/o NEXTDC Ltd, Delivery code ABCDEFG, 826-830 Lorimer St, Port", - "streetAddress2":"", - "city":"Melbourne", - "stateOrProvince":"Melbourne", - "postalCode":"3207", - "countryOrRegion":"Australia", - "phone":"61 0 0000 0000", - "supportedCarriers":[ + { + "properties": { + "recipientName": "Microsoft Azure Import/Export Service", + "streetAddress1": "Microsoft, c/o NEXTDC Ltd, Delivery code ABCDEFG, 826-830 Lorimer St, Port", + "streetAddress2": "", + "city": "Melbourne", + "stateOrProvince": "Melbourne", + "postalCode": "3207", + "countryOrRegion": "Australia", + "phone": "61 0 0000 0000", + "supportedCarriers": [ "DHL" ], - "alternateLocations":[ + "alternateLocations": [ "/providers/Microsoft.ImportExport/locations/australiasoutheast" ] }, - "id":"/providers/Microsoft.ImportExport/locations/australiasoutheast", - "name":"Australia Southeast", - "type":"Microsoft.ImportExport/locations" + "id": "/providers/Microsoft.ImportExport/locations/australiasoutheast", + "name": "Australia Southeast", + "type": "Microsoft.ImportExport/locations" } ] } } } -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListOperations.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListOperations.json index 43d1b308661f..da15f1ef5600 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListOperations.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/ListOperations.json @@ -4,64 +4,64 @@ }, "responses": { "200": { - "body": { - "value":[ - { - "name":"Microsoft.ImportExport/locations/read", - "display":{ - "provider":"Microsoft Import/Export", - "resource":"Locations", - "operation":"Get or List Locations", - "description":"Gets the properties for the specified location or returns the list of locations." + "body": { + "value": [ + { + "name": "Microsoft.ImportExport/locations/read", + "display": { + "provider": "Microsoft Import/Export", + "resource": "Locations", + "operation": "Get or List Locations", + "description": "Gets the properties for the specified location or returns the list of locations." } }, - { - "name":"Microsoft.ImportExport/jobs/write", - "display":{ - "provider":"Microsoft Import/Export", - "resource":"Jobs", - "operation":"Create or Update Job", - "description":"Creates a job with the specified parameters or update the properties or tags for the specified job." + { + "name": "Microsoft.ImportExport/jobs/write", + "display": { + "provider": "Microsoft Import/Export", + "resource": "Jobs", + "operation": "Create or Update Job", + "description": "Creates a job with the specified parameters or update the properties or tags for the specified job." } }, - { - "name":"Microsoft.ImportExport/jobs/read", - "display":{ - "provider":"Microsoft Import/Export", - "resource":"Jobs", - "operation":"Get or List Jobs", - "description":"Gets the properties for the specified job or returns the list of jobs." + { + "name": "Microsoft.ImportExport/jobs/read", + "display": { + "provider": "Microsoft Import/Export", + "resource": "Jobs", + "operation": "Get or List Jobs", + "description": "Gets the properties for the specified job or returns the list of jobs." } }, - { - "name":"Microsoft.ImportExport/jobs/listBitLockerKeys/action", - "display":{ - "provider":"Microsoft Import/Export", - "resource":"Jobs", - "operation":"List BitLocker Keys", - "description":"Gets the BitLocker keys for the specified job." + { + "name": "Microsoft.ImportExport/jobs/listBitLockerKeys/action", + "display": { + "provider": "Microsoft Import/Export", + "resource": "Jobs", + "operation": "List BitLocker Keys", + "description": "Gets the BitLocker keys for the specified job." } }, - { - "name":"Microsoft.ImportExport/jobs/delete", - "display":{ - "provider":"Microsoft Import/Export", - "resource":"Jobs", - "operation":"Delete Job", - "description":"Deletes an existing job." + { + "name": "Microsoft.ImportExport/jobs/delete", + "display": { + "provider": "Microsoft Import/Export", + "resource": "Jobs", + "operation": "Delete Job", + "description": "Deletes an existing job." } }, - { - "name":"Microsoft.ImportExport/register/action", - "display":{ - "provider":"Microsoft Import/Export", - "resource":"Import/Export Resource Provider", - "operation":"Registers the Import/Export Resource Provider", - "description":"Registers the subscription for the import/export resource provider and enables the creation of import/export jobs." + { + "name": "Microsoft.ImportExport/register/action", + "display": { + "provider": "Microsoft Import/Export", + "resource": "Import/Export Resource Provider", + "operation": "Registers the Import/Export Resource Provider", + "description": "Registers the subscription for the import/export resource provider and enables the creation of import/export jobs." } } ] } } } -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/UpdateJob.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/UpdateJob.json index 6a0bba757379..fbd80906abc7 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/UpdateJob.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/examples/UpdateJob.json @@ -1,10 +1,10 @@ { "parameters": { "api-version": "2016-11-01", - "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "resourceGroupName": "Default-Storage-WestUS", - "jobName": "test-by1-import", - "body": { + "subscriptionId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + "resourceGroupName": "Default-Storage-WestUS", + "jobName": "test-by1-import", + "body": { "properties": { "state": "", "logLevel": "Verbose", @@ -14,52 +14,52 @@ }, "responses": { "200": { - "body": { - "properties":{ - "storageAccountId":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", - "jobType":"Import", - "returnAddress":{ - "recipientName":"Tets", - "streetAddress1":"Street1", - "streetAddress2":"street2", - "city":"Redmond", - "stateOrProvince":"wa", - "postalCode":"98007", - "countryOrRegion":"USA", - "phone":"4250000000", - "email":"Test@contoso.com" + "body": { + "properties": { + "storageAccountId": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/test", + "jobType": "Import", + "returnAddress": { + "recipientName": "Tets", + "streetAddress1": "Street1", + "streetAddress2": "street2", + "city": "Redmond", + "stateOrProvince": "wa", + "postalCode": "98007", + "countryOrRegion": "USA", + "phone": "4250000000", + "email": "Test@contoso.com" }, - "shippingInformation":{ - "recipientName":"Microsoft Azure Import/Export Service", - "streetAddress1":"2045 Lafayette Street", - "streetAddress2":"", - "city":"Santa Clara", - "stateOrProvince":"CA", - "postalCode":"95050", - "countryOrRegion":"USA", - "phone":"408 352 7600" + "shippingInformation": { + "recipientName": "Microsoft Azure Import/Export Service", + "streetAddress1": "2045 Lafayette Street", + "streetAddress2": "", + "city": "Santa Clara", + "stateOrProvince": "CA", + "postalCode": "95050", + "countryOrRegion": "USA", + "phone": "408 352 7600" }, - "diagnosticsPath":"waimportexport", - "logLevel":"Verbose", - "backupDriveManifest":true, - "cancelRequested":false, - "state":"Creating", - "driveList":[ - { - "driveId":"9CA995BB", - "manifestFile":"\\DriveManifest.xml", - "manifestHash":"109B21108597EF36D5785F08303F3638", - "driveHeaderHash":"", - "state":"Specified" + "diagnosticsPath": "waimportexport", + "logLevel": "Verbose", + "backupDriveManifest": true, + "cancelRequested": false, + "state": "Creating", + "driveList": [ + { + "driveId": "9CA995BB", + "manifestFile": "\\DriveManifest.xml", + "manifestHash": "109B21108597EF36D5785F08303F3638", + "driveHeaderHash": "", + "state": "Specified" } ], - "provisioningState":"Succeeded" + "provisioningState": "Succeeded" }, - "id":"/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test-by1-import", - "name":"test-by1-import", - "type":"Microsoft.ImportExport/jobs", - "location":"West US" + "id": "/subscriptions/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ImportExport/jobs/test-by1-import", + "name": "test-by1-import", + "type": "Microsoft.ImportExport/jobs", + "location": "West US" } - } + } } -} \ No newline at end of file +} diff --git a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/storageimportexport.json b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/storageimportexport.json index b0b69d26cb01..b7c2b8284486 100644 --- a/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/storageimportexport.json +++ b/specification/storageimportexport/resource-manager/Microsoft.ImportExport/stable/2016-11-01/storageimportexport.json @@ -1,1143 +1,1243 @@ { - "swagger": "2.0", - "info": { - "title": "StorageImportExport", - "description": "The Storage Import/Export Resource Provider API.", - "version": "2016-11-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" + "swagger": "2.0", + "info": { + "title": "StorageImportExport", + "description": "The Storage Import/Export Resource Provider API.", + "version": "2016-11-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": { + "/providers/Microsoft.ImportExport/locations": { + "get": { + "tags": [ + "StorageImportExport" + ], + "operationId": "Locations_List", + "description": "Returns a list of locations to which you can ship the disks associated with an import or export job. A location is a Microsoft data center region.", + "x-ms-examples": { + "List locations": { + "$ref": "examples/ListLocations.json" + } + }, + "externalDocs": { + "url": "" + }, + "parameters": [ + { + "$ref": "#/parameters/api-version" + }, + { + "$ref": "#/parameters/Accept-Language" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/LocationsResponse" + } + }, + "default": { + "description": "An error occurs.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + }, + "x-ms-pageable": { + "nextLinkName": null } + } }, - "paths": { - "/providers/Microsoft.ImportExport/locations":{ - "get":{ - "tags": [ - "StorageImportExport" - ], - "operationId": "Locations_List", - "description": "Returns a list of locations to which you can ship the disks associated with an import or export job. A location is a Microsoft data center region.", - "x-ms-examples": { - "List locations": { "$ref": "examples/ListLocations.json" } - }, - "externalDocs": { - "url": "" - }, - "parameters": [ - {"$ref": "#/parameters/api-version"}, - {"$ref": "#/parameters/Accept-Language"} - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/LocationsResponse" - } - }, - "default": { - "description": "An error occurs.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } + "/providers/Microsoft.ImportExport/locations/{locationName}": { + "get": { + "tags": [ + "StorageImportExport" + ], + "operationId": "Locations_Get", + "description": "Returns the details about a location to which you can ship the disks associated with an import or export job. A location is an Azure region.", + "x-ms-examples": { + "Get locations": { + "$ref": "examples/GetLocation.json" + } }, - "/providers/Microsoft.ImportExport/locations/{locationName}":{ - "get":{ - "tags": [ - "StorageImportExport" - ], - "operationId": "Locations_Get", - "description": "Returns the details about a location to which you can ship the disks associated with an import or export job. A location is an Azure region.", - "x-ms-examples": { - "Get locations": { "$ref": "examples/GetLocation.json" } - }, - "externalDocs": { - "url": "" - }, - "parameters": [ - { - "name": "locationName", - "in": "path", - "description": "The name of the location. For example, West US or westus.", - "required": true, - "type": "string" - }, - {"$ref": "#/parameters/api-version"}, - {"$ref": "#/parameters/Accept-Language"} - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/Location" - } - }, - "default": { - "description": "An error occurs.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - } + "externalDocs": { + "url": "" }, - "/subscriptions/{subscriptionId}/providers/Microsoft.ImportExport/jobs":{ - "get":{ - "tags": [ - "StorageImportExport" - ], - "operationId": "Jobs_ListBySubscription", - "description": "Returns all active and completed jobs in a subscription.", - "x-ms-examples": { - "List jobs in a subscription": { "$ref": "examples/ListJobsInSubscription.json" } - }, - "externalDocs": { - "url": "" - }, - "parameters": [ - { - "name": "$top", - "in": "query", - "description": "An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100.", - "required": false, - "type": "integer" - }, - { - "name": "$filter", - "in": "query", - "description": "Can be used to restrict the results to certain conditions.", - "required": false, - "type": "string" - }, - {"$ref": "#/parameters/subscriptionId"}, - {"$ref": "#/parameters/api-version"}, - {"$ref": "#/parameters/Accept-Language"} - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ListJobsResponse" - } - }, - "default": { - "description": "An error occurs.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + "parameters": [ + { + "name": "locationName", + "in": "path", + "description": "The name of the location. For example, West US or westus.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "$ref": "#/parameters/Accept-Language" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/Location" } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs":{ - "get":{ - "tags": [ - "StorageImportExport" - ], - "operationId": "Jobs_ListByResourceGroup", - "description": "Returns all active and completed jobs in a resource group.", - "x-ms-examples": { - "List jobs in a resource group": { "$ref": "examples/ListJobsInResourceGroup.json" } - }, - "externalDocs": { - "url": "" - }, - "parameters": [ - { - "name": "$top", - "in": "query", - "description": "An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100.", - "required": false, - "type": "integer" - }, - { - "name": "$filter", - "in": "query", - "description": "Can be used to restrict the results to certain conditions.", - "required": false, - "type": "string" - }, - {"$ref": "#/parameters/subscriptionId"}, - {"$ref": "#/parameters/resourceGroupName"}, - {"$ref": "#/parameters/api-version"}, - {"$ref": "#/parameters/Accept-Language"} - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ListJobsResponse" - } - }, - "default": { - "description": "An error occurs.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } + }, + "default": { + "description": "An error occurs.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.ImportExport/jobs": { + "get": { + "tags": [ + "StorageImportExport" + ], + "operationId": "Jobs_ListBySubscription", + "description": "Returns all active and completed jobs in a subscription.", + "x-ms-examples": { + "List jobs in a subscription": { + "$ref": "examples/ListJobsInSubscription.json" + } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}":{ - "get":{ - "tags": [ - "StorageImportExport" - ], - "operationId": "Jobs_Get", - "description": "Gets information about an existing job.", - "x-ms-examples": { - "Get job": { "$ref": "examples/GetJob.json" } - }, - "externalDocs": { - "url": "" - }, - "parameters": [ - { - "name": "jobName", - "in": "path", - "description": "The name of the import/export job.", - "required": true, - "type": "string" - }, - {"$ref": "#/parameters/subscriptionId"}, - {"$ref": "#/parameters/resourceGroupName"}, - {"$ref": "#/parameters/api-version"}, - {"$ref": "#/parameters/Accept-Language"} - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/JobResponse" - } - }, - "default": { - "description": "An error occurs.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "patch":{ - "tags": [ - "StorageImportExport" - ], - "operationId": "Jobs_Update", - "description": "Updates specific properties of a job. You can call this operation to notify the Import/Export service that the hard drives comprising the import or export job have been shipped to the Microsoft data center. It can also be used to cancel an existing job.", - "x-ms-examples": { - "Update job": { "$ref": "examples/UpdateJob.json" } - }, - "externalDocs": { - "url": "" - }, - "parameters": [ - { - "name": "jobName", - "in": "path", - "description": "The name of the import/export job.", - "required": true, - "type": "string" - }, - {"$ref": "#/parameters/subscriptionId"}, - {"$ref": "#/parameters/resourceGroupName"}, - {"$ref": "#/parameters/api-version"}, - {"$ref": "#/parameters/Accept-Language"}, - { - "name": "body", - "in": "body", - "required": true, - "description": "The parameters to update in the job", - "schema": { - "$ref": "#/definitions/UpdateJobParameters" - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/JobResponse" - } - }, - "default": { - "description": "An error occurs.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "put":{ - "tags": [ - "StorageImportExport" - ], - "operationId": "Jobs_Create", - "description": "Creates a new job or updates an existing job in the specified subscription.", - "x-ms-examples": { - "Create job": { "$ref": "examples/CreateJob.json" } - }, - "externalDocs": { - "url": "" - }, - "parameters": [ - { - "name": "jobName", - "in": "path", - "description": "The name of the import/export job.", - "required": true, - "type": "string" - }, - {"$ref": "#/parameters/subscriptionId"}, - {"$ref": "#/parameters/resourceGroupName"}, - {"$ref": "#/parameters/api-version"}, - {"$ref": "#/parameters/Accept-Language"}, - {"$ref": "#/parameters/x-ms-client-tenant-id"}, - { - "name": "body", - "in": "body", - "description": "The parameters used for creating the job", - "required": true, - "schema": { - "$ref": "#/definitions/PutJobParameters" - } - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/JobResponse" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/JobResponse" - } - }, - "default": { - "description": "An error occurs.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - }, - "delete":{ - "tags": [ - "StorageImportExport" - ], - "operationId": "Jobs_Delete", - "description": "Deletes an existing job. Only jobs in the Creating or Completed states can be deleted.", - "x-ms-examples": { - "Delete job": { "$ref": "examples/DeleteJob.json" } - }, - "externalDocs": { - "url": "" - }, - "parameters": [ - { - "name": "jobName", - "in": "path", - "description": "The name of the import/export job.", - "required": true, - "type": "string" - }, - {"$ref": "#/parameters/subscriptionId"}, - {"$ref": "#/parameters/resourceGroupName"}, - {"$ref": "#/parameters/api-version"}, - {"$ref": "#/parameters/Accept-Language"} - ], - "responses": { - "200": { - "description": "OK" - }, - "default": { - "description": "An error occurs.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - } - } + "externalDocs": { + "url": "" }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}/listBitLockerKeys":{ - "post":{ - "tags": [ - "StorageImportExport" - ], - "operationId": "BitLockerKeys_List", - "description": "Returns the BitLocker Keys for all drives in the specified job.", - "x-ms-examples": { - "List BitLocker Keys for drives in a job": { "$ref": "examples/ListBitLockerKeys.json" } - }, - "externalDocs": { - "url": "" - }, - "parameters": [ - { - "name": "jobName", - "in": "path", - "description": "The name of the import/export job.", - "required": true, - "type": "string" - }, - {"$ref": "#/parameters/subscriptionId"}, - {"$ref": "#/parameters/resourceGroupName"}, - {"$ref": "#/parameters/api-version"}, - {"$ref": "#/parameters/Accept-Language"} - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/GetBitLockerKeysResponse" - } - }, - "default": { - "description": "An error occurs.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + "parameters": [ + { + "name": "$top", + "in": "query", + "description": "An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100.", + "required": false, + "type": "integer" + }, + { + "name": "$filter", + "in": "query", + "description": "Can be used to restrict the results to certain conditions.", + "required": false, + "type": "string" + }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "$ref": "#/parameters/Accept-Language" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ListJobsResponse" } - }, - "/providers/Microsoft.ImportExport/operations":{ - "get":{ - "tags": [ - "StorageImportExport" - ], - "operationId": "Operations_List", - "description": "Returns the list of operations supported by the import/export resource provider.", - "x-ms-examples": { - "List available operations": { "$ref": "examples/ListOperations.json" } - }, - "externalDocs": { - "url": "" - }, - "parameters": [ - {"$ref": "#/parameters/api-version"}, - {"$ref": "#/parameters/Accept-Language"} - ], - "responses": { - "200": { - "description": "OK", - "schema": { "$ref": "#/definitions/ListOperationsResponse" } - }, - "default": { - "description": "An error occurs.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } + }, + "default": { + "description": "An error occurs.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" } + } }, - "definitions": { - "ErrorResponse":{ - "description": "Response when errors occurred", - "properties": { - "error":{ - "x-ms-client-flatten": true, - "description": "Describes the error information.", - "properties": { - "code":{ - "type": "string", - "description": "Provides information about the error code." - }, - "message":{ - "type": "string", - "description": "Provides information about the error message." - }, - "target":{ - "type": "string", - "description": "Provides information about the error target." - }, - "details":{ - "type": "array", - "description": "Describes the error details if present.", - "items": { - "properties": { - "code":{ - "type": "string", - "description": "Provides information about the error code." - }, - "target":{ - "type": "string", - "description": "Provides information about the error target." - }, - "message":{ - "type": "string", - "description": "Provides information about the error message." - } - } - } - }, - "innererror":{ - "type": "object", - "description": "Inner error object if present." - } - } - } - } + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs": { + "get": { + "tags": [ + "StorageImportExport" + ], + "operationId": "Jobs_ListByResourceGroup", + "description": "Returns all active and completed jobs in a resource group.", + "x-ms-examples": { + "List jobs in a resource group": { + "$ref": "examples/ListJobsInResourceGroup.json" + } }, - "PutJobParameters":{ - "description": "Put Job parameters", - "properties": { - "location":{ - "type": "string", - "description": "Specifies the supported Azure location where the job should be created" - }, - "tags":{ - "type": "object", - "description": "Specifies the tags that will be assigned to the job." - }, - "properties": { - "$ref": "#/definitions/JobDetails", - "description": "Specifies the job properties" - } - } + "externalDocs": { + "url": "" }, - "JobDetails":{ - "description": "Specifies the job properties", - "properties": { - "storageAccountId":{ - "type": "string", - "description": "The resource identifier of the storage account where data will be imported to or exported from." - }, - "jobType":{ - "type": "string", - "description": "The type of job" - }, - "returnAddress":{ - "description": "Specifies the return address information for the job. ", - "$ref": "#/definitions/ReturnAddress" - }, - "returnShipping":{ - "description": "Specifies the return carrier and customer's account with the carrier. ", - "$ref": "#/definitions/ReturnShipping" - }, - "shippingInformation":{ - "description": "Contains information about the Microsoft datacenter to which the drives should be shipped. ", - "$ref": "#/definitions/ShippingInformation" - }, - "deliveryPackage":{ - "description": "Contains information about the package being shipped by the customer to the Microsoft data center. ", - "$ref": "#/definitions/PackageInfomation" - }, - "returnPackage":{ - "description": "Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned. ", - "$ref": "#/definitions/PackageInfomation" - }, - "diagnosticsPath":{ - "type": "string", - "description": "The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored." - }, - "logLevel":{ - "type": "string", - "description": "Default value is Error. Indicates whether error logging or verbose logging will be enabled." - }, - "backupDriveManifest":{ - "type": "boolean", - "description": "Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs." - }, - "state":{ - "type": "string", - "description": "Current state of the job." - }, - "cancelRequested":{ - "type": "boolean", - "description": "Indicates whether a request has been submitted to cancel the job." - }, - "percentComplete":{ - "type": "integer", - "description": "Overall percentage completed for the job." - }, - "incompleteBlobListUri":{ - "type": "string", - "description": "A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response." - }, - "driveList":{ - "description": "List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.", - "type": "array", - "items": { - "$ref": "#/definitions/DriveStatus" - } - }, - "export":{ - "description": "A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.", - "$ref": "#/definitions/Export" - }, - "provisioningState":{ - "type": "string", - "description": "Specifies the provisioning state of the job." - } + "parameters": [ + { + "name": "$top", + "in": "query", + "description": "An integer value that specifies how many jobs at most should be returned. The value cannot exceed 100.", + "required": false, + "type": "integer" + }, + { + "name": "$filter", + "in": "query", + "description": "Can be used to restrict the results to certain conditions.", + "required": false, + "type": "string" + }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "$ref": "#/parameters/Accept-Language" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ListJobsResponse" } - }, - "UpdateJobParameters":{ - "description": "Update Job parameters", - "properties": { - "tags":{ - "type": "object", - "description": "Specifies the tags that will be assigned to the job" - }, - "properties": { - "x-ms-client-flatten": true, - "properties": { - "cancelRequested":{ - "type": "boolean", - "description": "If specified, the value must be true. The service will attempt to cancel the job. " - }, - "state":{ - "type": "string", - "description": "If specified, the value must be Shipping, which tells the Import/Export service that the package for the job has been shipped. The ReturnAddress and DeliveryPackage properties must have been set either in this request or in a previous request, otherwise the request will fail. " - }, - "returnAddress":{ - "description": "Specifies the return address information for the job.", - "$ref": "#/definitions/ReturnAddress" - }, - "returnShipping":{ - "description": "Specifies the return carrier and customer's account with the carrier.", - "$ref": "#/definitions/ReturnShipping" - }, - "deliveryPackage":{ - "description": "Contains information about the package being shipped by the customer to the Microsoft data center.", - "$ref": "#/definitions/PackageInfomation" - }, - "logLevel":{ - "type": "string", - "description": "Indicates whether error logging or verbose logging is enabled." - }, - "backupDriveManifest":{ - "type": "boolean", - "description": "Indicates whether the manifest files on the drives should be copied to block blobs." - }, - "driveList":{ - "description": "List of drives that comprise the job.", - "type": "array", - "items": { - "$ref": "#/definitions/DriveStatus" - } - } - }, - "description": "Specifies the properties of a UpdateJob." - } + }, + "default": { + "description": "An error occurs.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } }, - "ListJobsResponse":{ - "description": "List jobs response", - "properties": { - "nextLink":{ - "type": "string", - "description": "link to next batch of jobs" - }, - "value":{ - "type": "array", - "description": "Job list", - "items":{ - "$ref": "#/definitions/JobResponse" - } - } - } + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}": { + "get": { + "tags": [ + "StorageImportExport" + ], + "operationId": "Jobs_Get", + "description": "Gets information about an existing job.", + "x-ms-examples": { + "Get job": { + "$ref": "examples/GetJob.json" + } }, - "JobResponse":{ - "x-ms-azure-resource": true, - "description": "Contains the job information.", - "properties": { - "id":{ - "type": "string", - "description": "Specifies the resource identifier of the job.", - "readOnly": true - }, - "name":{ - "type": "string", - "description": "Specifies the name of the job.", - "readOnly": true - }, - "type":{ - "type": "string", - "description": "Specifies the type of the job resource.", - "readOnly": true - }, - "location":{ - "type": "string", - "description": "Specifies the Azure location where the job is created." - }, - "tags":{ - "type": "object", - "description": "Specifies the tags that are assigned to the job." - }, - "properties": { - "$ref": "#/definitions/JobDetails", - "description": "Specifies the job properties" - } - } + "externalDocs": { + "url": "" }, - "Operation":{ - "description": "Describes a supported operation by the Storage Import/Export job API.", - "required": ["name", "display"], - "properties": { - "name":{ - "type": "string", - "description": "Name of the operation." - }, - "display": { - "x-ms-client-flatten": true, - "description": "operation display properties", - "properties": { - "provider":{ - "type": "string", - "description": "The resource provider name to which the operation belongs." - }, - "resource":{ - "type": "string", - "description": "The name of the resource to which the operation belongs." - }, - "operation":{ - "type": "string", - "description": "The display name of the operation." - }, - "description":{ - "type": "string", - "description": "Short description of the operation." - } - } - } + "parameters": [ + { + "name": "jobName", + "in": "path", + "description": "The name of the import/export job.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "$ref": "#/parameters/Accept-Language" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/JobResponse" } + }, + "default": { + "description": "An error occurs.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "tags": [ + "StorageImportExport" + ], + "operationId": "Jobs_Update", + "description": "Updates specific properties of a job. You can call this operation to notify the Import/Export service that the hard drives comprising the import or export job have been shipped to the Microsoft data center. It can also be used to cancel an existing job.", + "x-ms-examples": { + "Update job": { + "$ref": "examples/UpdateJob.json" + } }, - "Location":{ - "description": "Provides information about an Azure data center location.", - "properties": { - "id":{ - "description": "Specifies the resource identifier of the location. ", - "type": "string" - }, - "name":{ - "description": "Specifies the name of the location. Use List Locations to get all supported locations. ", - "type": "string" - }, - "type":{ - "description": "Specifies the type of the location. ", - "type": "string" - }, - "properties": { - "x-ms-client-flatten": true, - "description": "location properties", - "properties": { - "recipientName":{ - "description": "The recipient name to use when shipping the drives to the Azure data center. ", - "type": "string" - }, - "streetAddress1":{ - "description": "The first line of the street address to use when shipping the drives to the Azure data center. ", - "type": "string" - }, - "streetAddress2":{ - "description": "The second line of the street address to use when shipping the drives to the Azure data center. ", - "type": "string" - }, - "city":{ - "description": "The city name to use when shipping the drives to the Azure data center. ", - "type": "string" - }, - "stateOrProvince":{ - "description": "The state or province to use when shipping the drives to the Azure data center. ", - "type": "string" - }, - "postalCode":{ - "description": "The postal code to use when shipping the drives to the Azure data center. ", - "type": "string" - }, - "countryOrRegion":{ - "description": "The country or region to use when shipping the drives to the Azure data center. ", - "type": "string" - }, - "phone":{ - "description": "The phone number for the Azure data center. ", - "type": "string" - }, - "supportedCarriers":{ - "type": "array", - "description": "A list of carriers that are supported at this location. ", - "items":{ - "type": "string" - } - }, - "alternateLocations":{ - "type": "array", - "description": "A list of location IDs that should be used to ship shipping drives to for jobs created against the current location. If the current location is active, it will be part of the list. If it is temporarily closed due to maintenance, this list may contain other locations. ", - "items":{ - "type": "string" - } - } - } - } + "externalDocs": { + "url": "" + }, + "parameters": [ + { + "name": "jobName", + "in": "path", + "description": "The name of the import/export job.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "$ref": "#/parameters/Accept-Language" + }, + { + "name": "body", + "in": "body", + "required": true, + "description": "The parameters to update in the job", + "schema": { + "$ref": "#/definitions/UpdateJobParameters" } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/JobResponse" + } + }, + "default": { + "description": "An error occurs.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "put": { + "tags": [ + "StorageImportExport" + ], + "operationId": "Jobs_Create", + "description": "Creates a new job or updates an existing job in the specified subscription.", + "x-ms-examples": { + "Create job": { + "$ref": "examples/CreateJob.json" + } }, - "ReturnAddress": { - "description": "Specifies the return address information for the job.", - "required": [ - "recipientName", - "streetAddress1", - "city", - "postalCode", - "countryOrRegion", - "phone", - "email" - ], - "properties": { - "recipientName": { - "type": "string", - "description": "The name of the recipient who will receive the hard drives when they are returned. " - }, - "streetAddress1": { - "type": "string", - "description": "The first line of the street address to use when returning the drives. " - }, - "streetAddress2": { - "type": "string", - "description": "The second line of the street address to use when returning the drives. " - }, - "city": { - "type": "string", - "description": "The city name to use when returning the drives." - }, - "stateOrProvince": { - "type": "string", - "description": "The state or province to use when returning the drives." - }, - "postalCode": { - "type": "string", - "description": "The postal code to use when returning the drives." - }, - "countryOrRegion": { - "type": "string", - "description": "The country or region to use when returning the drives. " - }, - "phone": { - "type": "string", - "description": "Phone number of the recipient of the returned drives." - }, - "email": { - "type": "string", - "description": "Email address of the recipient of the returned drives." - } + "externalDocs": { + "url": "" + }, + "parameters": [ + { + "name": "jobName", + "in": "path", + "description": "The name of the import/export job.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "$ref": "#/parameters/Accept-Language" + }, + { + "$ref": "#/parameters/x-ms-client-tenant-id" + }, + { + "name": "body", + "in": "body", + "description": "The parameters used for creating the job", + "required": true, + "schema": { + "$ref": "#/definitions/PutJobParameters" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/JobResponse" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/JobResponse" + } + }, + "default": { + "description": "An error occurs.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + }, + "delete": { + "tags": [ + "StorageImportExport" + ], + "operationId": "Jobs_Delete", + "description": "Deletes an existing job. Only jobs in the Creating or Completed states can be deleted.", + "x-ms-examples": { + "Delete job": { + "$ref": "examples/DeleteJob.json" + } }, - "ReturnShipping":{ - "description": "Specifies the return carrier and customer's account with the carrier.", - "required": [ - "carrierName", - "carrierAccountNumber" - ], - "properties": { - "carrierName": { - "type": "string", - "description": "The carrier's name." - }, - "carrierAccountNumber": { - "type": "string", - "description": "The customer's account number with the carrier." - } + "externalDocs": { + "url": "" + }, + "parameters": [ + { + "name": "jobName", + "in": "path", + "description": "The name of the import/export job.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "$ref": "#/parameters/Accept-Language" + } + ], + "responses": { + "200": { + "description": "OK" + }, + "default": { + "description": "An error occurs.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}/listBitLockerKeys": { + "post": { + "tags": [ + "StorageImportExport" + ], + "operationId": "BitLockerKeys_List", + "description": "Returns the BitLocker Keys for all drives in the specified job.", + "x-ms-examples": { + "List BitLocker Keys for drives in a job": { + "$ref": "examples/ListBitLockerKeys.json" + } }, - "ShippingInformation":{ - "description": "Contains information about the Microsoft datacenter to which the drives should be shipped.", - "required": [ - "recipientName", - "streetAddress1", - "city", - "stateOrProvince", - "postalCode", - "countryOrRegion" - ], - "properties": { - "recipientName": { - "type": "string", - "description": "The name of the recipient who will receive the hard drives when they are returned. " - }, - "streetAddress1": { - "type": "string", - "description": "The first line of the street address to use when returning the drives. " - }, - "streetAddress2": { - "type": "string", - "description": "The second line of the street address to use when returning the drives. " - }, - "city": { - "type": "string", - "description": "The city name to use when returning the drives." - }, - "stateOrProvince": { - "type": "string", - "description": "The state or province to use when returning the drives." - }, - "postalCode": { - "type": "string", - "description": "The postal code to use when returning the drives." - }, - "countryOrRegion": { - "type": "string", - "description": "The country or region to use when returning the drives. " - }, - "phone": { - "type": "string", - "description": "Phone number of the recipient of the returned drives." - } + "externalDocs": { + "url": "" + }, + "parameters": [ + { + "name": "jobName", + "in": "path", + "description": "The name of the import/export job.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/subscriptionId" + }, + { + "$ref": "#/parameters/resourceGroupName" + }, + { + "$ref": "#/parameters/api-version" + }, + { + "$ref": "#/parameters/Accept-Language" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/GetBitLockerKeysResponse" } + }, + "default": { + "description": "An error occurs.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } }, - "PackageInfomation":{ - "description": "Contains information about the package being shipped by the customer to the Microsoft data center.", - "required": [ - "carrierName", - "trackingNumber", - "driveCount", - "shipDate" - ], - "properties": { - "carrierName": { - "type": "string", - "description": "The name of the carrier that is used to ship the import or export drives." - }, - "trackingNumber": { - "type": "string", - "description": "The tracking number of the package." - }, - "driveCount": { - "type": "integer", - "description": "The number of drives included in the package." - }, - "shipDate": { - "type": "string", - "description": "The date when the package is shipped." - } + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/providers/Microsoft.ImportExport/operations": { + "get": { + "tags": [ + "StorageImportExport" + ], + "operationId": "Operations_List", + "description": "Returns the list of operations supported by the import/export resource provider.", + "x-ms-examples": { + "List available operations": { + "$ref": "examples/ListOperations.json" + } + }, + "externalDocs": { + "url": "" + }, + "parameters": [ + { + "$ref": "#/parameters/api-version" + }, + { + "$ref": "#/parameters/Accept-Language" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ListOperationsResponse" + } + }, + "default": { + "description": "An error occurs.", + "schema": { + "$ref": "#/definitions/ErrorResponse" } + } }, - "DriveStatus":{ - "description": "Provides information about the drive's status", - "properties": { - "driveId": { - "type": "string", - "description": "The drive's hardware serial number, without spaces." - }, - "bitLockerKey": { - "type": "string", - "description": "The BitLocker key used to encrypt the drive." - }, - "manifestFile": { - "type": "string", - "description": "The relative path of the manifest file on the drive. " - }, - "manifestHash": { - "type": "string", - "description": "The Base16-encoded MD5 hash of the manifest file on the drive." - }, - "driveHeaderHash": { - "type": "string", - "description": "The drive header hash value." - }, - "state":{ - "type": "string", - "description": "The drive's current state. ", - "enum": [ "Specified", "Received", "NeverReceived", "Transferring", "Completed", "CompletedMoreInfo", "ShippedBack" ], - "x-ms-enum": { - "name": "DriveState", - "modelAsString": true - } - }, - "copyStatus":{ - "type": "string", - "description": "Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state." - }, - "percentComplete":{ - "type": "integer", - "description": "Percentage completed for the drive. " - }, - "verboseLogUri":{ + "x-ms-pageable": { + "nextLinkName": null + } + } + } + }, + "definitions": { + "ErrorResponse": { + "description": "Response when errors occurred", + "properties": { + "error": { + "x-ms-client-flatten": true, + "description": "Describes the error information.", + "properties": { + "code": { + "type": "string", + "description": "Provides information about the error code." + }, + "message": { + "type": "string", + "description": "Provides information about the error message." + }, + "target": { + "type": "string", + "description": "Provides information about the error target." + }, + "details": { + "type": "array", + "description": "Describes the error details if present.", + "items": { + "properties": { + "code": { "type": "string", - "description": "A URI that points to the blob containing the verbose log for the data transfer operation. " - }, - "errorLogUri":{ + "description": "Provides information about the error code." + }, + "target": { "type": "string", - "description": "A URI that points to the blob containing the error log for the data transfer operation." - }, - "manifestUri":{ + "description": "Provides information about the error target." + }, + "message": { "type": "string", - "description": "A URI that points to the blob containing the drive manifest file. " - }, - "bytesSucceeded": { - "type": "integer", - "format": "int64", - "description": "Bytes successfully transferred for the drive." + "description": "Provides information about the error message." + } } + } + }, + "innererror": { + "type": "object", + "description": "Inner error object if present." } + } + } + } + }, + "PutJobParameters": { + "description": "Put Job parameters", + "properties": { + "location": { + "type": "string", + "description": "Specifies the supported Azure location where the job should be created" }, - "Export": { - "description": "A property containing information about the blobs to be exported for an export job. This property is required for export jobs, but must not be specified for import jobs.", - "properties":{ - "blobList":{ - "description": "A list of the blobs to be exported.", - "x-ms-client-flatten": true, - "properties": { - "blobPath": { - "type": "array", - "description":"A collection of blob-path strings.", - "items": { - "type": "string" - } - }, - "blobPathPrefix":{ - "type": "array", - "description":"A collection of blob-prefix strings.", - "items": { - "type": "string" - } - } - } - }, - "blobListblobPath":{ - "type": "string", - "description": "The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root. " - } - } + "tags": { + "type": "object", + "description": "Specifies the tags that will be assigned to the job." }, - "LocationsResponse": { - "description": "Locations response", - "properties": { - "value":{ - "type": "array", - "description": "locations", - "items":{ - "$ref": "#/definitions/Location" - } - } - } + "properties": { + "$ref": "#/definitions/JobDetails", + "description": "Specifies the job properties" + } + } + }, + "JobDetails": { + "description": "Specifies the job properties", + "properties": { + "storageAccountId": { + "type": "string", + "description": "The resource identifier of the storage account where data will be imported to or exported from." }, - "GetBitLockerKeysResponse": { - "description": "GetBitLockerKeys response", - "properties": { - "value":{ - "type": "array", - "description": "drive status", - "items":{ - "$ref": "#/definitions/DriveBitLockerKey" - } - } + "jobType": { + "type": "string", + "description": "The type of job" + }, + "returnAddress": { + "description": "Specifies the return address information for the job. ", + "$ref": "#/definitions/ReturnAddress" + }, + "returnShipping": { + "description": "Specifies the return carrier and customer's account with the carrier. ", + "$ref": "#/definitions/ReturnShipping" + }, + "shippingInformation": { + "description": "Contains information about the Microsoft datacenter to which the drives should be shipped. ", + "$ref": "#/definitions/ShippingInformation" + }, + "deliveryPackage": { + "description": "Contains information about the package being shipped by the customer to the Microsoft data center. ", + "$ref": "#/definitions/PackageInfomation" + }, + "returnPackage": { + "description": "Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned. ", + "$ref": "#/definitions/PackageInfomation" + }, + "diagnosticsPath": { + "type": "string", + "description": "The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored." + }, + "logLevel": { + "type": "string", + "description": "Default value is Error. Indicates whether error logging or verbose logging will be enabled." + }, + "backupDriveManifest": { + "type": "boolean", + "description": "Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs." + }, + "state": { + "type": "string", + "description": "Current state of the job." + }, + "cancelRequested": { + "type": "boolean", + "description": "Indicates whether a request has been submitted to cancel the job." + }, + "percentComplete": { + "type": "integer", + "description": "Overall percentage completed for the job." + }, + "incompleteBlobListUri": { + "type": "string", + "description": "A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response." + }, + "driveList": { + "description": "List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.", + "type": "array", + "items": { + "$ref": "#/definitions/DriveStatus" + } + }, + "export": { + "description": "A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.", + "$ref": "#/definitions/Export" + }, + "provisioningState": { + "type": "string", + "description": "Specifies the provisioning state of the job." + } + } + }, + "UpdateJobParameters": { + "description": "Update Job parameters", + "properties": { + "tags": { + "type": "object", + "description": "Specifies the tags that will be assigned to the job" + }, + "properties": { + "x-ms-client-flatten": true, + "properties": { + "cancelRequested": { + "type": "boolean", + "description": "If specified, the value must be true. The service will attempt to cancel the job. " + }, + "state": { + "type": "string", + "description": "If specified, the value must be Shipping, which tells the Import/Export service that the package for the job has been shipped. The ReturnAddress and DeliveryPackage properties must have been set either in this request or in a previous request, otherwise the request will fail. " + }, + "returnAddress": { + "description": "Specifies the return address information for the job.", + "$ref": "#/definitions/ReturnAddress" + }, + "returnShipping": { + "description": "Specifies the return carrier and customer's account with the carrier.", + "$ref": "#/definitions/ReturnShipping" + }, + "deliveryPackage": { + "description": "Contains information about the package being shipped by the customer to the Microsoft data center.", + "$ref": "#/definitions/PackageInfomation" + }, + "logLevel": { + "type": "string", + "description": "Indicates whether error logging or verbose logging is enabled." + }, + "backupDriveManifest": { + "type": "boolean", + "description": "Indicates whether the manifest files on the drives should be copied to block blobs." + }, + "driveList": { + "description": "List of drives that comprise the job.", + "type": "array", + "items": { + "$ref": "#/definitions/DriveStatus" + } } + }, + "description": "Specifies the properties of a UpdateJob." + } + } + }, + "ListJobsResponse": { + "description": "List jobs response", + "properties": { + "nextLink": { + "type": "string", + "description": "link to next batch of jobs" }, - "DriveBitLockerKey": { - "description": "BitLocker recovery key or password to the specified drive", - "properties": { - "bitLockerKey": { - "type": "string", - "description": "BitLocker recovery key or password" - }, - "driveId": { - "type": "string", - "description": "Drive ID" - } + "value": { + "type": "array", + "description": "Job list", + "items": { + "$ref": "#/definitions/JobResponse" + } + } + } + }, + "JobResponse": { + "x-ms-azure-resource": true, + "description": "Contains the job information.", + "properties": { + "id": { + "type": "string", + "description": "Specifies the resource identifier of the job.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Specifies the name of the job.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Specifies the type of the job resource.", + "readOnly": true + }, + "location": { + "type": "string", + "description": "Specifies the Azure location where the job is created." + }, + "tags": { + "type": "object", + "description": "Specifies the tags that are assigned to the job." + }, + "properties": { + "$ref": "#/definitions/JobDetails", + "description": "Specifies the job properties" + } + } + }, + "Operation": { + "description": "Describes a supported operation by the Storage Import/Export job API.", + "required": [ + "name", + "display" + ], + "properties": { + "name": { + "type": "string", + "description": "Name of the operation." + }, + "display": { + "x-ms-client-flatten": true, + "description": "operation display properties", + "properties": { + "provider": { + "type": "string", + "description": "The resource provider name to which the operation belongs." + }, + "resource": { + "type": "string", + "description": "The name of the resource to which the operation belongs." + }, + "operation": { + "type": "string", + "description": "The display name of the operation." + }, + "description": { + "type": "string", + "description": "Short description of the operation." } + } + } + } + }, + "Location": { + "description": "Provides information about an Azure data center location.", + "properties": { + "id": { + "description": "Specifies the resource identifier of the location. ", + "type": "string" }, - "ListOperationsResponse": { - "description": "List operations response", - "properties": { - "value":{ - "type": "array", - "description": "operations", - "items":{ - "$ref": "#/definitions/Operation" - } - } + "name": { + "description": "Specifies the name of the location. Use List Locations to get all supported locations. ", + "type": "string" + }, + "type": { + "description": "Specifies the type of the location. ", + "type": "string" + }, + "properties": { + "x-ms-client-flatten": true, + "description": "location properties", + "properties": { + "recipientName": { + "description": "The recipient name to use when shipping the drives to the Azure data center. ", + "type": "string" + }, + "streetAddress1": { + "description": "The first line of the street address to use when shipping the drives to the Azure data center. ", + "type": "string" + }, + "streetAddress2": { + "description": "The second line of the street address to use when shipping the drives to the Azure data center. ", + "type": "string" + }, + "city": { + "description": "The city name to use when shipping the drives to the Azure data center. ", + "type": "string" + }, + "stateOrProvince": { + "description": "The state or province to use when shipping the drives to the Azure data center. ", + "type": "string" + }, + "postalCode": { + "description": "The postal code to use when shipping the drives to the Azure data center. ", + "type": "string" + }, + "countryOrRegion": { + "description": "The country or region to use when shipping the drives to the Azure data center. ", + "type": "string" + }, + "phone": { + "description": "The phone number for the Azure data center. ", + "type": "string" + }, + "supportedCarriers": { + "type": "array", + "description": "A list of carriers that are supported at this location. ", + "items": { + "type": "string" + } + }, + "alternateLocations": { + "type": "array", + "description": "A list of location IDs that should be used to ship shipping drives to for jobs created against the current location. If the current location is active, it will be part of the list. If it is temporarily closed due to maintenance, this list may contain other locations. ", + "items": { + "type": "string" + } } + } } + } }, - "parameters":{ - "api-version":{ - "name": "api-version", - "in": "query", - "description": "Specifies the API version to use for this request.", - "required": true, - "type": "string", - "enum": [ - "2016-11-01" - ] + "ReturnAddress": { + "description": "Specifies the return address information for the job.", + "required": [ + "recipientName", + "streetAddress1", + "city", + "postalCode", + "countryOrRegion", + "phone", + "email" + ], + "properties": { + "recipientName": { + "type": "string", + "description": "The name of the recipient who will receive the hard drives when they are returned. " }, - "subscriptionId": { - "name": "subscriptionId", - "in": "path", - "description": "The subscription ID for the Azure user.", - "required": true, - "type": "string" + "streetAddress1": { + "type": "string", + "description": "The first line of the street address to use when returning the drives. " }, - "resourceGroupName": { - "name": "resourceGroupName", - "in": "path", - "description": "The resource group name uniquely identifies the resource group within the user subscription.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" + "streetAddress2": { + "type": "string", + "description": "The second line of the street address to use when returning the drives. " }, - "Accept-Language":{ - "name": "Accept-Language", - "in": "header", - "description": "Specifies the preferred language for the response.", - "required": false, - "type": "string", - "x-ms-parameter-location": "client" + "city": { + "type": "string", + "description": "The city name to use when returning the drives." }, - "x-ms-client-tenant-id":{ - "name": "x-ms-client-tenant-id", - "in": "header", - "description": "The tenant ID of the client making the request.", - "required": false, - "type": "string", - "x-ms-client-name": "ClientTenantId", - "x-ms-parameter-location": "method" + "stateOrProvince": { + "type": "string", + "description": "The state or province to use when returning the drives." + }, + "postalCode": { + "type": "string", + "description": "The postal code to use when returning the drives." + }, + "countryOrRegion": { + "type": "string", + "description": "The country or region to use when returning the drives. " + }, + "phone": { + "type": "string", + "description": "Phone number of the recipient of the returned drives." + }, + "email": { + "type": "string", + "description": "Email address of the recipient of the returned drives." + } + } + }, + "ReturnShipping": { + "description": "Specifies the return carrier and customer's account with the carrier.", + "required": [ + "carrierName", + "carrierAccountNumber" + ], + "properties": { + "carrierName": { + "type": "string", + "description": "The carrier's name." + }, + "carrierAccountNumber": { + "type": "string", + "description": "The customer's account number with the carrier." + } + } + }, + "ShippingInformation": { + "description": "Contains information about the Microsoft datacenter to which the drives should be shipped.", + "required": [ + "recipientName", + "streetAddress1", + "city", + "stateOrProvince", + "postalCode", + "countryOrRegion" + ], + "properties": { + "recipientName": { + "type": "string", + "description": "The name of the recipient who will receive the hard drives when they are returned. " + }, + "streetAddress1": { + "type": "string", + "description": "The first line of the street address to use when returning the drives. " + }, + "streetAddress2": { + "type": "string", + "description": "The second line of the street address to use when returning the drives. " + }, + "city": { + "type": "string", + "description": "The city name to use when returning the drives." + }, + "stateOrProvince": { + "type": "string", + "description": "The state or province to use when returning the drives." + }, + "postalCode": { + "type": "string", + "description": "The postal code to use when returning the drives." + }, + "countryOrRegion": { + "type": "string", + "description": "The country or region to use when returning the drives. " + }, + "phone": { + "type": "string", + "description": "Phone number of the recipient of the returned drives." + } + } + }, + "PackageInfomation": { + "description": "Contains information about the package being shipped by the customer to the Microsoft data center.", + "required": [ + "carrierName", + "trackingNumber", + "driveCount", + "shipDate" + ], + "properties": { + "carrierName": { + "type": "string", + "description": "The name of the carrier that is used to ship the import or export drives." + }, + "trackingNumber": { + "type": "string", + "description": "The tracking number of the package." + }, + "driveCount": { + "type": "integer", + "description": "The number of drives included in the package." + }, + "shipDate": { + "type": "string", + "description": "The date when the package is shipped." + } + } + }, + "DriveStatus": { + "description": "Provides information about the drive's status", + "properties": { + "driveId": { + "type": "string", + "description": "The drive's hardware serial number, without spaces." + }, + "bitLockerKey": { + "type": "string", + "description": "The BitLocker key used to encrypt the drive." + }, + "manifestFile": { + "type": "string", + "description": "The relative path of the manifest file on the drive. " + }, + "manifestHash": { + "type": "string", + "description": "The Base16-encoded MD5 hash of the manifest file on the drive." + }, + "driveHeaderHash": { + "type": "string", + "description": "The drive header hash value." + }, + "state": { + "type": "string", + "description": "The drive's current state. ", + "enum": [ + "Specified", + "Received", + "NeverReceived", + "Transferring", + "Completed", + "CompletedMoreInfo", + "ShippedBack" + ], + "x-ms-enum": { + "name": "DriveState", + "modelAsString": true + } + }, + "copyStatus": { + "type": "string", + "description": "Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state." + }, + "percentComplete": { + "type": "integer", + "description": "Percentage completed for the drive. " + }, + "verboseLogUri": { + "type": "string", + "description": "A URI that points to the blob containing the verbose log for the data transfer operation. " + }, + "errorLogUri": { + "type": "string", + "description": "A URI that points to the blob containing the error log for the data transfer operation." + }, + "manifestUri": { + "type": "string", + "description": "A URI that points to the blob containing the drive manifest file. " + }, + "bytesSucceeded": { + "type": "integer", + "format": "int64", + "description": "Bytes successfully transferred for the drive." } - + } + }, + "Export": { + "description": "A property containing information about the blobs to be exported for an export job. This property is required for export jobs, but must not be specified for import jobs.", + "properties": { + "blobList": { + "description": "A list of the blobs to be exported.", + "x-ms-client-flatten": true, + "properties": { + "blobPath": { + "type": "array", + "description": "A collection of blob-path strings.", + "items": { + "type": "string" + } + }, + "blobPathPrefix": { + "type": "array", + "description": "A collection of blob-prefix strings.", + "items": { + "type": "string" + } + } + } + }, + "blobListblobPath": { + "type": "string", + "description": "The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root. " + } + } + }, + "LocationsResponse": { + "description": "Locations response", + "properties": { + "value": { + "type": "array", + "description": "locations", + "items": { + "$ref": "#/definitions/Location" + } + } + } + }, + "GetBitLockerKeysResponse": { + "description": "GetBitLockerKeys response", + "properties": { + "value": { + "type": "array", + "description": "drive status", + "items": { + "$ref": "#/definitions/DriveBitLockerKey" + } + } + } + }, + "DriveBitLockerKey": { + "description": "BitLocker recovery key or password to the specified drive", + "properties": { + "bitLockerKey": { + "type": "string", + "description": "BitLocker recovery key or password" + }, + "driveId": { + "type": "string", + "description": "Drive ID" + } + } + }, + "ListOperationsResponse": { + "description": "List operations response", + "properties": { + "value": { + "type": "array", + "description": "operations", + "items": { + "$ref": "#/definitions/Operation" + } + } + } + } + }, + "parameters": { + "api-version": { + "name": "api-version", + "in": "query", + "description": "Specifies the API version to use for this request.", + "required": true, + "type": "string", + "enum": [ + "2016-11-01" + ] + }, + "subscriptionId": { + "name": "subscriptionId", + "in": "path", + "description": "The subscription ID for the Azure user.", + "required": true, + "type": "string" + }, + "resourceGroupName": { + "name": "resourceGroupName", + "in": "path", + "description": "The resource group name uniquely identifies the resource group within the user subscription.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "Accept-Language": { + "name": "Accept-Language", + "in": "header", + "description": "Specifies the preferred language for the response.", + "required": false, + "type": "string", + "x-ms-parameter-location": "client" + }, + "x-ms-client-tenant-id": { + "name": "x-ms-client-tenant-id", + "in": "header", + "description": "The tenant ID of the client making the request.", + "required": false, + "type": "string", + "x-ms-client-name": "ClientTenantId", + "x-ms-parameter-location": "method" } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Create.json index a0b6154a71e1..ddeb70b2fdc6 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Create.json @@ -1,52 +1,51 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2017-06-05-preview", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2017-06-05-preview", - "parameters": { - "properties": { - "provisioningState": "Created", - "storageAccountKey": "storageaccountkeyvalue", - "storageAccount": "https://storageaccounturl/SampleCloudEndpoint", - "storageAccountResourceId": "", - "storageAccountShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"" - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "storageAccount": "https://storageaccounturl/ankushbsubscriptionmgmtmab", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "friendlyName": "ankushbsubscriptionmgmtmab", - "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/6fe524cf-5944-4e87-816f-e4a85a1f3533", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", - "type": "10.91.86.47/storageSyncServices/syncGroups/cloudEndpoints" - } + "properties": { + "provisioningState": "Created", + "storageAccountKey": "storageaccountkeyvalue", + "storageAccount": "https://storageaccounturl/SampleCloudEndpoint", + "storageAccountResourceId": "", + "storageAccountShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"" + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "storageAccount": "https://storageaccounturl/ankushbsubscriptionmgmtmab", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "friendlyName": "ankushbsubscriptionmgmtmab", + "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/6fe524cf-5944-4e87-816f-e4a85a1f3533", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2017-06-05-preview", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2017-06-05-preview", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", + "type": "10.91.86.47/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2017-06-05-preview", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2017-06-05-preview", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Delete.json index b5ccf6fdd067..6829b26b034c 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Delete.json @@ -1,30 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2017-06-05-preview" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2017-06-05-preview", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2017-06-05-preview", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2017-06-05-preview", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2017-06-05-preview", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Get.json index 552b04fb22ee..5a57fb828b8e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_Get.json @@ -1,34 +1,34 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "storageAccountKey": "storageaccountkeyvalue", - "storageAccount": "https://storageaccounturl/SampleAzureFileShareName_1", - "storageAccountResourceId": "", - "storageAccountShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "storageAccountKey": "storageaccountkeyvalue", + "storageAccount": "https://storageaccounturl/SampleAzureFileShareName_1", + "storageAccountResourceId": "", + "storageAccountShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_ListBySyncGroup.json index 2b400ac7211a..17f3f4c54900 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_ListBySyncGroup.json @@ -1,35 +1,37 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "CEP_Restore_08-08_Test112", + "properties": { + "provisioningState": "Succeeded", + "storageAccountKey": "storageaccountKeyvalue", + "storageAccount": "https://storageaccounturl/SampleAzureFileShareName_1", + "storageAccountResourceId": "", + "storageAccountShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky" }, - "body": { - "value": [{ - "name": "CEP_Restore_08-08_Test112", - "properties": { - "provisioningState": "Succeeded", - "storageAccountKey": "storageaccountKeyvalue", - "storageAccount": "https://storageaccounturl/SampleAzureFileShareName_1", - "storageAccountResourceId": "", - "storageAccountShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PostBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PostBackup.json index 46d1a3d72411..a1f390dc8450 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PostBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PostBackup.json @@ -1,34 +1,34 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" - }, - "api-version": "2017-06-05-preview" + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "backupMetadata": { - "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" - } - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2017-06-05-preview&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "backupMetadata": { + "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" } + } + }, + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2017-06-05-preview&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PostRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PostRestore.json index 3c0a8a0b2785..29b9d26c34d3 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PostRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PostRestore.json @@ -1,48 +1,49 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "status": "Succeeded", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "status": "Succeeded", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false }, - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir", + "isdir": true + }, + { + "path": "MyDir/SubDir", + "isdir": false }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2017-06-05-preview&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + }, + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2017-06-05-preview&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PreBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PreBackup.json index f5b51ce9efc9..eaad9d7d9d86 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PreBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PreBackup.json @@ -1,29 +1,29 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2017-06-05-preview", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2017-06-05-preview", - "parameters" : { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" - } + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2017-06-05-preview&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2017-06-05-preview&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PreRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PreRestore.json index dcaceabc240b..1451e84cc07b 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PreRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_PreRestore.json @@ -1,46 +1,47 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2017-06-05-preview", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2017-06-05-preview", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] - } - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false + }, + { + "path": "MyDir", + "isdir": true }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2017-06-05-preview&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir", + "isdir": false + }, + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2017-06-05-preview&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_RestoreHeatbeat.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_RestoreHeatbeat.json index a0667d8f9a4b..254ec91f1bd7 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_RestoreHeatbeat.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/CloudEndpoints_RestoreHeatbeat.json @@ -1,19 +1,19 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": "" - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Operations_List.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Operations_List.json index 66da10fc7522..75342a96a6c7 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Operations_List.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Operations_List.json @@ -1,193 +1,214 @@ { - "parameters": { - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "body": { - "value": [{ - "name": "Microsoft.StorageSync/storageSyncServices/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Read Storage Sync Services", - "description": "Read any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Create or Update Storage Sync Services", - "description": "Create or Update any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Delete Storage Sync Services", - "description": "Delete any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Read Sync Groups", - "description": "Read any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Create or Update Sync Groups", - "description": "Create or Update any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Delete Sync Groups", - "description": "Delete any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Read Cloud Endpoints", - "description": "Read any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Create or Update Cloud Endpoints", - "description": "Create or Update any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Delete Cloud Endpoints", - "description": "Delete any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prebackup", - "description": "Call this action before backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postbackup", - "description": "Call this action after backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prerestore", - "description": "Call this action before restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postrestore", - "description": "Call this action after restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Read Server Endpoints", - "description": "Read any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Create or Update Server Endpoints", - "description": "Create or Update any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Delete Server Endpoints", - "description": "Delete any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "recallAction", - "description": "Call this action to recall files to a server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Read Registered Server", - "description": "Read any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Create or Update Registered Server", - "description": "Create or Update any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Delete Registered Server", - "description": "Delete any Registered Server" - }, - "origin": "User" - }], - "nextLink": "" - } - } + "parameters": { + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.StorageSync/storageSyncServices/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Read Storage Sync Services", + "description": "Read any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Create or Update Storage Sync Services", + "description": "Create or Update any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Delete Storage Sync Services", + "description": "Delete any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Read Sync Groups", + "description": "Read any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Create or Update Sync Groups", + "description": "Create or Update any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Delete Sync Groups", + "description": "Delete any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Read Cloud Endpoints", + "description": "Read any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Create or Update Cloud Endpoints", + "description": "Create or Update any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Delete Cloud Endpoints", + "description": "Delete any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prebackup", + "description": "Call this action before backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postbackup", + "description": "Call this action after backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prerestore", + "description": "Call this action before restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postrestore", + "description": "Call this action after restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Read Server Endpoints", + "description": "Read any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Create or Update Server Endpoints", + "description": "Create or Update any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Delete Server Endpoints", + "description": "Delete any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "recallAction", + "description": "Call this action to recall files to a server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Read Registered Server", + "description": "Read any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Create or Update Registered Server", + "description": "Create or Update any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Delete Registered Server", + "description": "Delete any Registered Server" + }, + "origin": "User" + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Create.json index 66b144ae5a56..03fe764a81a6 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Create.json @@ -1,56 +1,56 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", - "parameters": { - "name": "SampleServer-prod3.redmond.corp.microsoft.com", - "properties": { - "serverRole": "Standalone", - "provisioningState": "Created", - "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", - "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", - "serverManagementtErrorCode": 0, - "serverOSVersion": "10.0.14393.0", - "agentVersion": "1.0.277.0" - }, - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }, - "api-version": "2017-06-05-preview" + "name": "SampleServer-prod3.redmond.corp.microsoft.com", + "properties": { + "serverRole": "Standalone", + "provisioningState": "Created", + "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", + "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", + "serverManagementtErrorCode": 0, + "serverOSVersion": "10.0.14393.0", + "agentVersion": "1.0.277.0" + }, + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", - "type": "10.91.86.47/storageSyncServices/registeredServers", - "name": "ankushb-prod3.redmond.corp.microsoft.com", - "properties": { - "serverId": "\"530a0384-50ac-456d-8240-9d6621404151\"", - "serverRole": "Standalone", - "provisioningState": "Succeeded", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "lastHeartBeat": "\"2017-08-21T13:24:18.2641509-07:00\"", - "serverManagementtErrorCode": 0, - "serverOSVersion": "10.0.14393.0", - "agentVersion": "1.0.278.0", - "storageSyncServiceUid": "\"56cfb290-f846-4c96-abc4-ee338bd252e8\"", - "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/c36c3bcb-a72e-492a-b700-4ad74a8e3d69" - } - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2017-06-05-preview", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2017-06-05-preview", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", + "type": "10.91.86.47/storageSyncServices/registeredServers", + "name": "ankushb-prod3.redmond.corp.microsoft.com", + "properties": { + "serverId": "\"530a0384-50ac-456d-8240-9d6621404151\"", + "serverRole": "Standalone", + "provisioningState": "Succeeded", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "lastHeartBeat": "\"2017-08-21T13:24:18.2641509-07:00\"", + "serverManagementtErrorCode": 0, + "serverOSVersion": "10.0.14393.0", + "agentVersion": "1.0.278.0", + "storageSyncServiceUid": "\"56cfb290-f846-4c96-abc4-ee338bd252e8\"", + "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/c36c3bcb-a72e-492a-b700-4ad74a8e3d69" } + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2017-06-05-preview", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2017-06-05-preview", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Delete.json index 77ed370cdf85..e51b7eeab6fd 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Delete.json @@ -1,29 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", - "api-version": "2017-06-05-preview" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2017-06-05-preview", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2017-06-05-preview", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2017-06-05-preview", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2017-06-05-preview", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Get.json index 66239532fab2..2ba4820cde0e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_Get.json @@ -1,35 +1,35 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", - "serverRole": "Standalone", - "provisioningState": "Created", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "lastHeartBeat": "\"2017-08-08T18:29:06.470652+00:00\"", - "serverManagementtErrorCode": 0, - "serverOSVersion": "10.0.14393.0", - "agentVersion": "1.0.277.0", - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"", - "lastWorkflowId": "" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", + "serverRole": "Standalone", + "provisioningState": "Created", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "lastHeartBeat": "\"2017-08-08T18:29:06.470652+00:00\"", + "serverManagementtErrorCode": 0, + "serverOSVersion": "10.0.14393.0", + "agentVersion": "1.0.277.0", + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"", + "lastWorkflowId": "" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_ListByStorageSyncService.json index f3d52bde1aed..7b4587a53122 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/RegisteredServers_ListByStorageSyncService.json @@ -1,36 +1,38 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", + "serverRole": "Standalone", + "provisioningState": "Created", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "lastHeartBeat": "\"2017-08-08T18:29:06.470652+00:00\"", + "serverManagementtErrorCode": 0, + "serverOSVersion": "10.0.14393.0", + "agentVersion": "1.0.277.0", + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"", + "lastWorkflowId": "" }, - "body": { - "value": [{ - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", - "serverRole": "Standalone", - "provisioningState": "Created", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "lastHeartBeat": "\"2017-08-08T18:29:06.470652+00:00\"", - "serverManagementtErrorCode": 0, - "serverOSVersion": "10.0.14393.0", - "agentVersion": "1.0.277.0", - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"", - "lastWorkflowId": "" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Create.json index 5010aaf781d2..b15d8267d393 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Create.json @@ -1,52 +1,52 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters": { - "properties": { - "provisioningState": "Created", - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncServer_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100 - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, - "api-version": "2017-06-05-preview" + "properties": { + "provisioningState": "Created", + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncServer_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100 + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "ankushb-prod3.redmond.corp.microsoft.com", - "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/901054e8-d66f-4e2f-8266-f05a68dbfce4" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" - } + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "ankushb-prod3.redmond.corp.microsoft.com", + "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/901054e8-d66f-4e2f-8266-f05a68dbfce4" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2017-06-05-preview", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2017-06-05-preview", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2017-06-05-preview", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2017-06-05-preview", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Delete.json index a56776d040c6..e3401152fb6a 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Delete.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2017-06-05-preview" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2017-06-05-preview", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2017-06-05-preview", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2017-06-05-preview", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2017-06-05-preview", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Get.json index 3d53b79d8267..cb4363108fd2 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Get.json @@ -1,43 +1,43 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "friendlyName": "SampleRegisteredServer-prod3.redmond.corp.microsoft.com", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/219c62f3-8507-4b87-a85b-ac676ad198d1", - "lastSyncSuccess": "2017-02-24T22:24:43.3216408Z", - "syncErrorState": "0", - "syncErrorStateTimestamp": "2017-02-24T22:24:43.3216408Z", - "syncErrorDirection": "none", - "syncErrorContext": "", - "itemDownloadErrorCount": 0, - "itemUploadErrorCount": 0, - "currentProgressType": "none", - "itemProgressCount": 0, - "itemTotalCount": 0, - "byteProgress": 0 - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "friendlyName": "SampleRegisteredServer-prod3.redmond.corp.microsoft.com", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/219c62f3-8507-4b87-a85b-ac676ad198d1", + "lastSyncSuccess": "2017-02-24T22:24:43.3216408Z", + "syncErrorState": "0", + "syncErrorStateTimestamp": "2017-02-24T22:24:43.3216408Z", + "syncErrorDirection": "none", + "syncErrorContext": "", + "itemDownloadErrorCount": 0, + "itemUploadErrorCount": 0, + "currentProgressType": "none", + "itemProgressCount": 0, + "itemTotalCount": 0, + "byteProgress": 0 + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_ListBySyncGroup.json index 174d19a1516f..24f1ade15619 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_ListBySyncGroup.json @@ -1,70 +1,73 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleServerEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "friendlyName": "ankushb-prod3.redmond.corp.microsoft.com", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/219c62f3-8507-4b87-a85b-ac676ad198d1", + "lastSyncSuccess": "2017-02-24T22:24:43.3216408Z", + "syncErrorState": "0", + "syncErrorStateTimestamp": "2017-02-24T22:24:43.3216408Z", + "syncErrorDirection": "none", + "syncErrorContext": "", + "itemDownloadErrorCount": 0, + "itemUploadErrorCount": 0, + "currentProgressType": "none", + "itemProgressCount": 0, + "itemTotalCount": 0, + "byteProgress": 23, + "totalProgress": 23 }, - "body": { - "value": [{ - "name": "SampleServerEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "friendlyName": "ankushb-prod3.redmond.corp.microsoft.com", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/219c62f3-8507-4b87-a85b-ac676ad198d1", - "lastSyncSuccess": "2017-02-24T22:24:43.3216408Z", - "syncErrorState": "0", - "syncErrorStateTimestamp": "2017-02-24T22:24:43.3216408Z", - "syncErrorDirection": "none", - "syncErrorContext": "", - "itemDownloadErrorCount": 0, - "itemUploadErrorCount": 0, - "currentProgressType": "none", - "itemProgressCount": 0, - "itemTotalCount": 0, - "byteProgress": 23, - "totalProgress": 23 - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, { - "name": "SampleServerEndpoint_2", - "properties": { - "provisioningState": "Succeeded", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "serverLocalPath": "D:\\SampleServerEndpoint_2", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "friendlyName": "ankushb-prod3.redmond.corp.microsoft.com", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "lastSyncSuccess": "2017-02-24T22:24:43.3216408Z", - "syncErrorState": "0", - "syncErrorStateTimestamp": "2017-02-24T22:24:43.3216408Z", - "syncErrorDirection": "none", - "syncErrorContext": "", - "itemDownloadErrorCount": 0, - "itemUploadErrorCount": 0, - "currentProgressType": "none", - "itemProgressCount": 0, - "itemTotalCount": 0, - "byteProgress": 0, - "totalProgress": 0 - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_2", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + }, + { + "name": "SampleServerEndpoint_2", + "properties": { + "provisioningState": "Succeeded", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "serverLocalPath": "D:\\SampleServerEndpoint_2", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "friendlyName": "ankushb-prod3.redmond.corp.microsoft.com", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "lastSyncSuccess": "2017-02-24T22:24:43.3216408Z", + "syncErrorState": "0", + "syncErrorStateTimestamp": "2017-02-24T22:24:43.3216408Z", + "syncErrorDirection": "none", + "syncErrorContext": "", + "itemDownloadErrorCount": 0, + "itemUploadErrorCount": 0, + "currentProgressType": "none", + "itemProgressCount": 0, + "itemTotalCount": 0, + "byteProgress": 0, + "totalProgress": 0 + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_2", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Recall.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Recall.json index 1a114012c6de..14c6149408bc 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Recall.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Recall.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2017-06-05-preview" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2017-06-05-preview", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2017-06-05-preview", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2017-06-05-preview", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2017-06-05-preview", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Update.json index 9d0e6b47f5b6..12f90b633db7 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/ServerEndpoints_Update.json @@ -1,50 +1,50 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters" : { - "properties": { - "provisioningState": "Created", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100 - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, - "api-version": "2017-06-05-preview" + "properties": { + "provisioningState": "Created", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100 + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "ankushb-prod3.redmond.corp.microsoft.com", - "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/901054e8-d66f-4e2f-8266-f05a68dbfce4" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" - } + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "ankushb-prod3.redmond.corp.microsoft.com", + "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/901054e8-d66f-4e2f-8266-f05a68dbfce4" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2017-06-05-preview", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2017-06-05-preview", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2017-06-05-preview", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2017-06-05-preview", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Create.json index 7fb1b01e89ff..e028041ce8ea 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Create.json @@ -1,26 +1,26 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "parameters": { - "location": "WestUS", - "tags": {}, - "properties": {}, - "type": "Microsoft.StorageSync/storageSyncServices" - }, - "api-version": "2017-06-05-preview" + "location": "WestUS", + "tags": {}, + "properties": {}, + "type": "Microsoft.StorageSync/storageSyncServices" }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Delete.json index 445b5af000e0..85d8fa7d3559 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Delete.json @@ -1,14 +1,12 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - }, - "204": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Get.json index d0e22bc81ebe..5cc762435f26 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Get.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_ListByResourceGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_ListByResourceGroup.json index de718cafeec6..3a8b1c0f8ff7 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_ListByResourceGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_ListByResourceGroup.json @@ -1,48 +1,52 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] -} - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_ListBySubscription.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_ListBySubscription.json index 1fde371e12ec..0e6c25a3bb09 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_ListBySubscription.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_ListBySubscription.json @@ -1,47 +1,51 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] -} - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Update.json index b0a22de445fe..6abeec41c5aa 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/StorageSyncServices_Update.json @@ -1,32 +1,32 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2017-06-05-preview", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2017-06-05-preview", - "parameters": { - "location": "WestUS", - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {}, - "type": "Microsoft.StorageSync/storageSyncServices" - } - }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "location": "WestUS", + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {}, + "type": "Microsoft.StorageSync/storageSyncServices" } + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Create.json index b5272fd3a976..d6e3beed8d66 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Create.json @@ -1,26 +1,25 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2017-06-05-preview", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2017-06-05-preview", - "parameters": { - "properties": {}, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - - }, - "responses": { - "200": { - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "properties": {}, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" } + }, + "responses": { + "200": { + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Delete.json index c6979666be76..88750ba17e7f 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Delete.json @@ -1,19 +1,18 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2017-06-05-preview" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - } - } -} \ No newline at end of file + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Get.json index dc72917fb604..8b7790151210 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_Get.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_ListByStorageSyncService.json index c578ba8d0991..822a64fc051a 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/SyncGroups_ListByStorageSyncService.json @@ -1,27 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" }, - "body": { - "value": [{ - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - }] -} - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Workflows_Abort.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Workflows_Abort.json index 7c93deca14c9..923eaf4dd565 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Workflows_Abort.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Workflows_Abort.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Workflows_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Workflows_Get.json index 939c2b0200a7..b8443084ffec 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Workflows_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/examples/Workflows_Get.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "api-version": "2017-06-05-preview" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "properties": { - "status": "succeeded", - "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", - "operation": "do", - "lastStepName": "runServerJob", - "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "type": "Microsoft.StorageSync/storageSyncServices/workflows" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "api-version": "2017-06-05-preview" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "properties": { + "status": "succeeded", + "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", + "operation": "do", + "lastStepName": "runServerJob", + "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "type": "Microsoft.StorageSync/storageSyncServices/workflows" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/storagesync.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/storagesync.json index 636ed62c765d..f27ad2e35b2e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/storagesync.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/storagesync.json @@ -4,9 +4,9 @@ "title": "Microsoft Storage Sync", "description": "Microsoft Storage Sync Service API", "version": "2017-06-05-preview", - "x-ms-code-generation-settings": { + "x-ms-code-generation-settings": { "name": "StorageSyncManagementClient" - } + } }, "host": "management.azure.com", "schemes": [ @@ -3235,4 +3235,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Create.json index 70e8bd4b6ec6..e0b6fc370575 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Create.json @@ -1,51 +1,50 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-04-02", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-04-02", - "parameters": { - "properties": { - "provisioningState": "Created", - "storageAccountResourceId": "", - "storageAccountShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"" - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "storageAccount": "https://storageaccounturl/ankushbsubscriptionmgmtmab", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "friendlyName": "ankushbsubscriptionmgmtmab", - "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/6fe524cf-5944-4e87-816f-e4a85a1f3533", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", - "type": "10.91.86.47/storageSyncServices/syncGroups/cloudEndpoints" - } + "properties": { + "provisioningState": "Created", + "storageAccountResourceId": "", + "storageAccountShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"" + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "storageAccount": "https://storageaccounturl/ankushbsubscriptionmgmtmab", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "friendlyName": "ankushbsubscriptionmgmtmab", + "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/6fe524cf-5944-4e87-816f-e4a85a1f3533", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC", + "lastOperationName": "ICreateCloudEndpointWorkflow" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-04-02", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-04-02", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", + "type": "10.91.86.47/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-04-02", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-04-02", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Delete.json index bb357e80adb6..8e380ddeafba 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Delete.json @@ -1,30 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-04-02" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-04-02", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-04-02", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-04-02", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-04-02", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Get.json index a5dfb698da4c..d9ac810b0123 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_Get.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "", - "storageAccountShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "", + "storageAccountShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", + "lastOperationName": "ICreateCloudEndpointWorkflow" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_ListBySyncGroup.json index ac1fac035799..28115de3c2fb 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_ListBySyncGroup.json @@ -1,34 +1,36 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "CEP_Restore_08-08_Test112", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "", + "storageAccountShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", + "lastOperationName": "ICreateCloudEndpointWorkflow" }, - "body": { - "value": [{ - "name": "CEP_Restore_08-08_Test112", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "", - "storageAccountShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PostBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PostBackup.json index b02c247ad93c..5f4ba0ad25bd 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PostBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PostBackup.json @@ -1,34 +1,34 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" - }, - "api-version": "2018-04-02" + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "backupMetadata": { - "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" - } - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2018-04-02&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "backupMetadata": { + "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" } + } + }, + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2018-04-02&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PostRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PostRestore.json index 39eb86009f41..a8663bdec0bf 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PostRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PostRestore.json @@ -1,48 +1,49 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "status": "Succeeded", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "status": "Succeeded", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false }, - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir", + "isdir": true + }, + { + "path": "MyDir/SubDir", + "isdir": false }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-04-02&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + }, + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-04-02&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PreBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PreBackup.json index 38b6847c8522..7ac9477ec757 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PreBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PreBackup.json @@ -1,29 +1,29 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-04-02", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-04-02", - "parameters" : { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" - } + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-04-02&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-04-02&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PreRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PreRestore.json index 4a8edcaa8620..fe4b15f07196 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PreRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_PreRestore.json @@ -1,46 +1,47 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-04-02", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-04-02", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] - } - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false + }, + { + "path": "MyDir", + "isdir": true }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-04-02&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir", + "isdir": false + }, + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-04-02&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_RestoreHeatbeat.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_RestoreHeatbeat.json index 17e5ddd29de7..c7a119754884 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_RestoreHeatbeat.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/CloudEndpoints_RestoreHeatbeat.json @@ -1,19 +1,19 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": "" - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Operations_List.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Operations_List.json index 9665866fe371..7a9bc3dc46ea 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Operations_List.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Operations_List.json @@ -1,193 +1,214 @@ { - "parameters": { - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "body": { - "value": [{ - "name": "Microsoft.StorageSync/storageSyncServices/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Read Storage Sync Services", - "description": "Read any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Create or Update Storage Sync Services", - "description": "Create or Update any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Delete Storage Sync Services", - "description": "Delete any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Read Sync Groups", - "description": "Read any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Create or Update Sync Groups", - "description": "Create or Update any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Delete Sync Groups", - "description": "Delete any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Read Cloud Endpoints", - "description": "Read any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Create or Update Cloud Endpoints", - "description": "Create or Update any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Delete Cloud Endpoints", - "description": "Delete any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prebackup", - "description": "Call this action before backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postbackup", - "description": "Call this action after backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prerestore", - "description": "Call this action before restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postrestore", - "description": "Call this action after restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Read Server Endpoints", - "description": "Read any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Create or Update Server Endpoints", - "description": "Create or Update any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Delete Server Endpoints", - "description": "Delete any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "recallAction", - "description": "Call this action to recall files to a server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Read Registered Server", - "description": "Read any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Create or Update Registered Server", - "description": "Create or Update any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Delete Registered Server", - "description": "Delete any Registered Server" - }, - "origin": "User" - }], - "nextLink": "" - } - } + "parameters": { + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.StorageSync/storageSyncServices/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Read Storage Sync Services", + "description": "Read any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Create or Update Storage Sync Services", + "description": "Create or Update any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Delete Storage Sync Services", + "description": "Delete any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Read Sync Groups", + "description": "Read any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Create or Update Sync Groups", + "description": "Create or Update any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Delete Sync Groups", + "description": "Delete any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Read Cloud Endpoints", + "description": "Read any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Create or Update Cloud Endpoints", + "description": "Create or Update any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Delete Cloud Endpoints", + "description": "Delete any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prebackup", + "description": "Call this action before backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postbackup", + "description": "Call this action after backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prerestore", + "description": "Call this action before restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postrestore", + "description": "Call this action after restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Read Server Endpoints", + "description": "Read any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Create or Update Server Endpoints", + "description": "Create or Update any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Delete Server Endpoints", + "description": "Delete any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "recallAction", + "description": "Call this action to recall files to a server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Read Registered Server", + "description": "Read any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Create or Update Registered Server", + "description": "Create or Update any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Delete Registered Server", + "description": "Delete any Registered Server" + }, + "origin": "User" + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Create.json index 9fa6805a359b..9208aee2f6d0 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Create.json @@ -1,63 +1,63 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", - "parameters": { - "name": "SampleServer-prod3.redmond.corp.microsoft.com", - "properties": { - "serverRole": "Standalone", - "provisioningState": "Created", - "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", - "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", - "serverManagementtErrorCode": 0, - "serverOSVersion": "10.0.14393.0", - "agentVersion": "1.0.277.0" - }, - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }, - "api-version": "2018-04-02" + "name": "SampleServer-prod3.redmond.corp.microsoft.com", + "properties": { + "serverRole": "Standalone", + "provisioningState": "Created", + "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", + "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", + "serverManagementtErrorCode": 0, + "serverOSVersion": "10.0.14393.0", + "agentVersion": "1.0.277.0" + }, + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", - "type": "10.91.86.47/storageSyncServices/registeredServers", - "name": "ankushb-prod3.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementtErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - } - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-04-02", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-04-02", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", + "type": "10.91.86.47/storageSyncServices/registeredServers", + "name": "ankushb-prod3.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementtErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" } + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-04-02", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-04-02", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Delete.json index f5679eb3cddf..373e8c1d0738 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Delete.json @@ -1,29 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", - "api-version": "2018-04-02" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-04-02", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-04-02", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-04-02", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-04-02", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Get.json index d41db95fe750..840cce0f1ac1 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_Get.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementtErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementtErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_ListByStorageSyncService.json index 15ba678f84c9..1833c7d0975b 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/RegisteredServers_ListByStorageSyncService.json @@ -1,42 +1,44 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementtErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" }, - "body": { - "value": [{ - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementtErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Create.json index e918206db1f7..dab60109e861 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Create.json @@ -1,72 +1,72 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters": { - "properties": { - "provisioningState": "Created", - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncServer_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100 - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, - "api-version": "2018-04-02" + "properties": { + "provisioningState": "Created", + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncServer_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100 + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null - } - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" - } + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null + } }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-04-02", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-04-02", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-04-02", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-04-02", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Delete.json index 39bcc8d7dfc0..3c8081033471 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Delete.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2018-04-02" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-04-02", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-04-02", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-04-02", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-04-02", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Get.json index 93417bf43543..072fe77791f2 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Get.json @@ -1,52 +1,52 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null - } - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } - } + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null + } + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_ListBySyncGroup.json index a86a511b3998..eb1f9d258c93 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_ListBySyncGroup.json @@ -1,86 +1,89 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null + } }, - "body": { - "value": [{ - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null - } - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, { - "name": "SampleServerEndpoint_2", - "properties": { - "serverLocalPath": "C:\\data_quota2", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "somemachine2.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null - } - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_2", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + }, + { + "name": "SampleServerEndpoint_2", + "properties": { + "serverLocalPath": "C:\\data_quota2", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "somemachine2.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null + } + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_2", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Recall.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Recall.json index 8da18a1748f0..47de537f623d 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Recall.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Recall.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2018-04-02" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-04-02", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-04-02", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-04-02", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-04-02", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Update.json index 62ed934c6136..67d415f3fbc7 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/ServerEndpoints_Update.json @@ -1,68 +1,68 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters" : { - "properties": { - "cloudTiering": "off", - "volumeFreeSpacePercent": 100 - } - }, - "api-version": "2018-04-02" + "properties": { + "cloudTiering": "off", + "volumeFreeSpacePercent": 100 + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota2", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "somemachine2.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota2", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "somemachine2.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null - } - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" - } + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null + } }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-04-02", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-04-02", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-04-02", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-04-02", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json index 930849f6c999..a237a4d47e67 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServiceCheckNameAvailability_Available.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServiceCheckNameAvailability_Available.json index 42955183aee9..1a3c6c60b549 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServiceCheckNameAvailability_Available.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServiceCheckNameAvailability_Available.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Create.json index 3831635b3628..0311d9e4ca65 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Create.json @@ -1,26 +1,26 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "parameters": { - "location": "WestUS", - "tags": {}, - "properties": {}, - "type": "Microsoft.StorageSync/storageSyncServices" - }, - "api-version": "2018-04-02" + "location": "WestUS", + "tags": {}, + "properties": {}, + "type": "Microsoft.StorageSync/storageSyncServices" }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Delete.json index 8d802d92523e..c56579e5e812 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Delete.json @@ -1,14 +1,12 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - }, - "204": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Get.json index 977f6640c810..15ef2d24a99e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Get.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_ListByResourceGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_ListByResourceGroup.json index fab2edda5756..cf28381c900d 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_ListByResourceGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_ListByResourceGroup.json @@ -1,48 +1,52 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] -} - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_ListBySubscription.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_ListBySubscription.json index 7c7f5605b58d..b6d92f595007 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_ListBySubscription.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_ListBySubscription.json @@ -1,47 +1,51 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] -} - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Update.json index f41e41a621e7..4dfbebad0e5d 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/StorageSyncServices_Update.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-04-02", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-04-02", - "parameters": { - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {} - } - }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {} } + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Create.json index 29177fb1a112..f1f1bc14b015 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Create.json @@ -1,26 +1,25 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-04-02", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-04-02", - "parameters": { - "properties": {}, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - - }, - "responses": { - "200": { - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "properties": {}, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" } + }, + "responses": { + "200": { + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Delete.json index 32023ed74552..40b87dba2ad7 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Delete.json @@ -1,19 +1,18 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-04-02" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - } - } -} \ No newline at end of file + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Get.json index 399f9b34aa24..aa35914165b5 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_Get.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_ListByStorageSyncService.json index e18dd1c93732..0ab9bd5c6b8c 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/SyncGroups_ListByStorageSyncService.json @@ -1,27 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" }, - "body": { - "value": [{ - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - }] -} - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Workflows_Abort.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Workflows_Abort.json index 163db5778d44..d7fe791da4f9 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Workflows_Abort.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Workflows_Abort.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Workflows_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Workflows_Get.json index 9ebbb9904272..cdeac85cb881 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Workflows_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/examples/Workflows_Get.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "api-version": "2018-04-02" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "properties": { - "status": "succeeded", - "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", - "operation": "do", - "lastStepName": "runServerJob", - "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "type": "Microsoft.StorageSync/storageSyncServices/workflows" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "api-version": "2018-04-02" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "properties": { + "status": "succeeded", + "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", + "operation": "do", + "lastStepName": "runServerJob", + "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "type": "Microsoft.StorageSync/storageSyncServices/workflows" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/storagesync.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/storagesync.json index 8ac5a5e44017..27221020c1fc 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/storagesync.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/storagesync.json @@ -4,9 +4,9 @@ "title": "Microsoft Storage Sync", "description": "Microsoft Storage Sync Service API", "version": "2018-04-02", - "x-ms-code-generation-settings": { + "x-ms-code-generation-settings": { "name": "StorageSyncManagementClient" - } + } }, "host": "management.azure.com", "schemes": [ @@ -74,12 +74,16 @@ ], "operationId": "StorageSyncServices_CheckNameAvailability", "x-ms-examples": { - "StorageSyncServiceCheckNameAvailability_Available": { "$ref": "./examples/StorageSyncServiceCheckNameAvailability_Available.json" }, - "StorageSyncServiceCheckNameAvailability_AlreadyExists": { "$ref": "./examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json" } + "StorageSyncServiceCheckNameAvailability_Available": { + "$ref": "./examples/StorageSyncServiceCheckNameAvailability_Available.json" + }, + "StorageSyncServiceCheckNameAvailability_AlreadyExists": { + "$ref": "./examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json" + } }, "description": "Check the give namespace name availability.", "parameters": [ - { + { "name": "locationName", "in": "path", "required": true, @@ -2406,7 +2410,7 @@ "type": "object", "description": "Error type", "properties": { - "error": { + "error": { "$ref": "#/definitions/StorageSyncApiError", "description": "Error details of the given entry." }, @@ -2496,11 +2500,11 @@ } ], "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/StorageSyncServiceProperties", - "description": "Storage Sync Service properties." - } + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/StorageSyncServiceProperties", + "description": "Storage Sync Service properties." + } } }, "SyncGroup": { @@ -2510,13 +2514,13 @@ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource" } - ], + ], "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SyncGroupProperties", - "description": "SyncGroup properties." - } + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SyncGroupProperties", + "description": "SyncGroup properties." + } } }, "CloudEndpoint": { @@ -2526,12 +2530,12 @@ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource" } - ], + ], "properties": { "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/CloudEndpointProperties", - "description": "Cloud Endpoint properties." + "x-ms-client-flatten": true, + "$ref": "#/definitions/CloudEndpointProperties", + "description": "Cloud Endpoint properties." } } }, @@ -2588,8 +2592,7 @@ "SyncGroupCreateParametersProperties": { "type": "object", "description": "Sync Group Create Properties object.", - "properties": { - } + "properties": {} }, "CloudEndpointCreateParameters": { "properties": { @@ -2616,16 +2619,16 @@ "description": "CloudEndpoint Properties object.", "properties": { "storageAccountResourceId": { - "type": "string", - "description": "Storage Account Resource Id" + "type": "string", + "description": "Storage Account Resource Id" }, "storageAccountShareName": { - "type": "string", - "description": "Storage Account Share name" + "type": "string", + "description": "Storage Account Share name" }, "storageAccountTenantId": { - "type": "string", - "description": "Storage Account Tenant Id" + "type": "string", + "description": "Storage Account Tenant Id" } } }, @@ -2763,13 +2766,13 @@ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource" } - ], + ], "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointProperties", - "description": "Server Endpoint properties." - } + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointProperties", + "description": "Server Endpoint properties." + } } }, "RegisteredServer": { @@ -2779,13 +2782,13 @@ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource" } - ], + ], "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegisteredServerProperties", - "description": "RegisteredServer properties." - } + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegisteredServerProperties", + "description": "RegisteredServer properties." + } } }, "ResourcesMoveInfo": { @@ -2812,13 +2815,13 @@ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource" } - ], + ], "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/WorkflowProperties", - "description": "Workflow properties." - } + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/WorkflowProperties", + "description": "Workflow properties." + } } }, "OperationEntityListResult": { @@ -2908,7 +2911,9 @@ }, "type": { "type": "string", - "enum": [ "Microsoft.StorageSync/storageSyncServices" ], + "enum": [ + "Microsoft.StorageSync/storageSyncServices" + ], "x-ms-enum": { "name": "Type", "modelAsString": false @@ -3187,8 +3192,7 @@ "StorageSyncServiceUpdateProperties": { "type": "object", "description": "Storage Sync Service Update Properties object.", - "properties": { - } + "properties": {} }, "StorageSyncServiceProperties": { "type": "object", @@ -3498,4 +3502,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Create.json index a590250f4ea0..b27e2e1a90dd 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Create.json @@ -1,51 +1,51 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-07-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-07-01", - "parameters": { - "properties": { - "provisioningState": "Created", - "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", - "storageAccountShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", - "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"" - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", - "storageAccountShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", - "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", - "friendlyName": "ankushbsubscriptionmgmtmab", - "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/6fe524cf-5944-4e87-816f-e4a85a1f3533", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", - "type": "10.91.86.47/storageSyncServices/syncGroups/cloudEndpoints" - } + "properties": { + "provisioningState": "Created", + "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", + "storageAccountShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", + "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"" + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", + "storageAccountShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", + "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", + "friendlyName": "ankushbsubscriptionmgmtmab", + "lastWorkflowId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/workflows/6fe524cf-5944-4e87-816f-e4a85a1f3533", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC", + "lastOperationName": "ICreateCloudEndpointWorkflow" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-07-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-07-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", + "type": "10.91.86.47/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-07-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-07-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Delete.json index 69f04db152a7..7df63447e60a 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Delete.json @@ -1,30 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-07-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-07-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-07-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-07-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-07-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Get.json index 8b7937271b20..b27b2e46f7b0 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_Get.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "", - "storageAccountShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "", + "storageAccountShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", + "lastOperationName": "ICreateCloudEndpointWorkflow" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_ListBySyncGroup.json index efbe34179951..34dff7afc19a 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_ListBySyncGroup.json @@ -1,34 +1,36 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "CEP_Restore_08-08_Test112", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "", + "storageAccountShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", + "lastOperationName": "ICreateCloudEndpointWorkflow" }, - "body": { - "value": [{ - "name": "CEP_Restore_08-08_Test112", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "", - "storageAccountShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PostBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PostBackup.json index d9696e57c2e3..0b82b2af5190 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PostBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PostBackup.json @@ -1,34 +1,34 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" - }, - "api-version": "2018-07-01" + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "backupMetadata": { - "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" - } - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2018-07-01&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "backupMetadata": { + "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" } + } + }, + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2018-07-01&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PostRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PostRestore.json index 65f8ddd0cac6..c3aa2d9b6175 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PostRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PostRestore.json @@ -1,48 +1,49 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "status": "Succeeded", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "status": "Succeeded", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false }, - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir", + "isdir": true + }, + { + "path": "MyDir/SubDir", + "isdir": false }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-07-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + }, + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-07-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PreBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PreBackup.json index cdf0d9c32694..09beacf326f7 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PreBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PreBackup.json @@ -1,29 +1,29 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-07-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-07-01", - "parameters" : { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" - } + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-07-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-07-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PreRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PreRestore.json index e674432ddab0..f8dc7d595760 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PreRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_PreRestore.json @@ -1,46 +1,47 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-07-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-07-01", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] - } - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false + }, + { + "path": "MyDir", + "isdir": true }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-07-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir", + "isdir": false + }, + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-07-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_RestoreHeatbeat.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_RestoreHeatbeat.json index ea502c15f337..adbe77c1eea4 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_RestoreHeatbeat.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/CloudEndpoints_RestoreHeatbeat.json @@ -1,19 +1,19 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": "" - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Operations_List.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Operations_List.json index 06584b89d825..fe29a5d1b330 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Operations_List.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Operations_List.json @@ -1,193 +1,214 @@ { - "parameters": { - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "body": { - "value": [{ - "name": "Microsoft.StorageSync/storageSyncServices/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Read Storage Sync Services", - "description": "Read any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Create or Update Storage Sync Services", - "description": "Create or Update any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Delete Storage Sync Services", - "description": "Delete any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Read Sync Groups", - "description": "Read any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Create or Update Sync Groups", - "description": "Create or Update any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Delete Sync Groups", - "description": "Delete any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Read Cloud Endpoints", - "description": "Read any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Create or Update Cloud Endpoints", - "description": "Create or Update any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Delete Cloud Endpoints", - "description": "Delete any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prebackup", - "description": "Call this action before backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postbackup", - "description": "Call this action after backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prerestore", - "description": "Call this action before restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postrestore", - "description": "Call this action after restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Read Server Endpoints", - "description": "Read any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Create or Update Server Endpoints", - "description": "Create or Update any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Delete Server Endpoints", - "description": "Delete any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "recallAction", - "description": "Call this action to recall files to a server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Read Registered Server", - "description": "Read any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Create or Update Registered Server", - "description": "Create or Update any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Delete Registered Server", - "description": "Delete any Registered Server" - }, - "origin": "User" - }], - "nextLink": "" - } - } + "parameters": { + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.StorageSync/storageSyncServices/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Read Storage Sync Services", + "description": "Read any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Create or Update Storage Sync Services", + "description": "Create or Update any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Delete Storage Sync Services", + "description": "Delete any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Read Sync Groups", + "description": "Read any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Create or Update Sync Groups", + "description": "Create or Update any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Delete Sync Groups", + "description": "Delete any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Read Cloud Endpoints", + "description": "Read any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Create or Update Cloud Endpoints", + "description": "Create or Update any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Delete Cloud Endpoints", + "description": "Delete any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prebackup", + "description": "Call this action before backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postbackup", + "description": "Call this action after backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prerestore", + "description": "Call this action before restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postrestore", + "description": "Call this action after restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Read Server Endpoints", + "description": "Read any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Create or Update Server Endpoints", + "description": "Create or Update any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Delete Server Endpoints", + "description": "Delete any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "recallAction", + "description": "Call this action to recall files to a server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Read Registered Server", + "description": "Read any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Create or Update Registered Server", + "description": "Create or Update any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Delete Registered Server", + "description": "Delete any Registered Server" + }, + "origin": "User" + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Create.json index af85f4dc4d17..6a258d11b7ec 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Create.json @@ -1,63 +1,63 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", - "parameters": { - "name": "SampleServer-prod3.redmond.corp.microsoft.com", - "properties": { - "serverRole": "Standalone", - "provisioningState": "Created", - "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", - "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", - "serverManagementtErrorCode": 0, - "serverOSVersion": "10.0.14393.0", - "agentVersion": "1.0.277.0" - }, - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }, - "api-version": "2018-07-01" + "name": "SampleServer-prod3.redmond.corp.microsoft.com", + "properties": { + "serverRole": "Standalone", + "provisioningState": "Created", + "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", + "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", + "serverManagementtErrorCode": 0, + "serverOSVersion": "10.0.14393.0", + "agentVersion": "1.0.277.0" + }, + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", - "type": "10.91.86.47/storageSyncServices/registeredServers", - "name": "ankushb-prod3.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementtErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - } - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-07-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-07-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", + "type": "10.91.86.47/storageSyncServices/registeredServers", + "name": "ankushb-prod3.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementtErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" } + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-07-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-07-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Delete.json index 99cf9e77b7ea..b8d46af72dc5 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Delete.json @@ -1,29 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", - "api-version": "2018-07-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-07-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-07-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-07-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-07-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Get.json index d05673fe045d..9d8186178b48 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_Get.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementtErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementtErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_ListByStorageSyncService.json index cd3481d9730f..17f2f0fd8350 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_ListByStorageSyncService.json @@ -1,42 +1,44 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementtErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" }, - "body": { - "value": [{ - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementtErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_TriggerRollover.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_TriggerRollover.json index 0136bc789ffc..db147996a721 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_TriggerRollover.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/RegisteredServers_TriggerRollover.json @@ -1,29 +1,29 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "d166ca76-dad2-49df-b409-12345642d730", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "d166ca76-dad2-49df-b409-12345642d730", - "parameters": { - "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"" - }, - "api-version": "2018-07-01" + "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47222", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d222" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47222", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d222" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Create.json index 46a5f9ca16ee..d2f14bb34554 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Create.json @@ -1,74 +1,74 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters": { - "properties": { - "provisioningState": "Created", - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncServer_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "tierFilesOlderThanDays": 0 - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, - "api-version": "2018-07-01" + "properties": { + "provisioningState": "Created", + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncServer_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "tierFilesOlderThanDays": 0 + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null - } - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" - } + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null + } }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Delete.json index 406e8750f6be..70f4f06e7e0c 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Delete.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2018-07-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-07-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-07-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-07-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-07-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Get.json index 841c87231c30..a26baac37df3 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Get.json @@ -1,53 +1,53 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null - } - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } - } + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null + } + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_ListBySyncGroup.json index c249b2644b5f..fb99ebe0c32b 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_ListBySyncGroup.json @@ -1,86 +1,89 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null + } }, - "body": { - "value": [{ - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null - } - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, { - "name": "SampleServerEndpoint_2", - "properties": { - "serverLocalPath": "C:\\data_quota2", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "somemachine2.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null - } - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_2", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + }, + { + "name": "SampleServerEndpoint_2", + "properties": { + "serverLocalPath": "C:\\data_quota2", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "somemachine2.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null + } + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/serverEndpoints/SampleServerEndpoint_2", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Recall.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Recall.json index e3df14383eb0..cc9227bd6b17 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Recall.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Recall.json @@ -1,31 +1,31 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2018-07-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2018-07-01", - "parameters": { - "pattern": "", - "recallPath": "" - } + "pattern": "", + "recallPath": "" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-07-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Update.json index 56a8b939c5eb..fe6dc338a146 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/ServerEndpoints_Update.json @@ -1,68 +1,68 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters" : { - "properties": { - "cloudTiering": "off", - "volumeFreeSpacePercent": 100 - } - }, - "api-version": "2018-07-01" + "properties": { + "cloudTiering": "off", + "volumeFreeSpacePercent": 100 + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota2", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "friendlyName": "somemachine2.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota2", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "friendlyName": "somemachine2.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null - } - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" - } + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null + } }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-07-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-07-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/10.91.86.47/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "10.91.86.47/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-07-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-07-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json index eddb9c226ab0..0af887cb9722 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServiceCheckNameAvailability_Available.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServiceCheckNameAvailability_Available.json index 528cbbe0319d..01ef07f1b8c8 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServiceCheckNameAvailability_Available.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServiceCheckNameAvailability_Available.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Create.json index fadfd4c0cf4b..16c88caaccea 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Create.json @@ -1,25 +1,25 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "parameters": { - "location": "WestUS", - "tags": {}, - "properties": {} - }, - "api-version": "2018-07-01" + "location": "WestUS", + "tags": {}, + "properties": {} }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Delete.json index be39f9b2193d..dca570138247 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Delete.json @@ -1,14 +1,12 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - }, - "204": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Get.json index 44a42c2d4da4..9ba47ab25883 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Get.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_ListByResourceGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_ListByResourceGroup.json index 98e01908a7ba..aadaeaa57262 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_ListByResourceGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_ListByResourceGroup.json @@ -1,48 +1,52 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] -} - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_ListBySubscription.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_ListBySubscription.json index b692ba14ebad..2f4c719a3afd 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_ListBySubscription.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_ListBySubscription.json @@ -1,47 +1,51 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] -} - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Update.json index 38725183d6ce..1f7e4bffdef7 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/StorageSyncServices_Update.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-07-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-07-01", - "parameters": { - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {} - } - }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {} } + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Create.json index fe748a0880e4..6e04604efabb 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Create.json @@ -1,26 +1,25 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-07-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-07-01", - "parameters": { - "properties": {}, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - - }, - "responses": { - "200": { - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "properties": {}, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" } + }, + "responses": { + "200": { + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Delete.json index 0501688779ce..9cf49a9519ad 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Delete.json @@ -1,19 +1,18 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-07-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - } - } -} \ No newline at end of file + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Get.json index ac0272a4a29e..50408efa3dd2 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_Get.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_ListByStorageSyncService.json index fcfa4f9688ae..6e6f75c4db08 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/SyncGroups_ListByStorageSyncService.json @@ -1,27 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" }, - "body": { - "value": [{ - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - }] -} - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_Abort.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_Abort.json index 84e34badbf83..826cd291bc12 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_Abort.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_Abort.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_Get.json index 4d4d39648d21..2941db86d919 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_Get.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "properties": { - "status": "succeeded", - "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", - "operation": "do", - "lastStepName": "runServerJob", - "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "type": "Microsoft.StorageSync/storageSyncServices/workflows" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "properties": { + "status": "succeeded", + "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", + "operation": "do", + "lastStepName": "runServerJob", + "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "type": "Microsoft.StorageSync/storageSyncServices/workflows" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_ListByStorageSyncService.json index c5f24afc125a..4ee92fd8f49f 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/examples/Workflows_ListByStorageSyncService.json @@ -1,30 +1,32 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-07-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-07-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "properties": { + "status": "succeeded", + "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", + "operation": "do", + "lastStepName": "runServerJob", + "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" }, - "body": { - "value": [{ - "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "properties": { - "status": "succeeded", - "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", - "operation": "do", - "lastStepName": "runServerJob", - "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "type": "Microsoft.StorageSync/storageSyncServices/workflows" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "type": "Microsoft.StorageSync/storageSyncServices/workflows" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/storagesync.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/storagesync.json index 38cdc29d3f9e..c84fb2ad3145 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/storagesync.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/storagesync.json @@ -1,3417 +1,3660 @@ { - "swagger": "2.0", - "info": { - "title": "Microsoft Storage Sync", - "description": "Microsoft Storage Sync Service API", - "version": "2018-07-01", - "x-ms-code-generation-settings": { - "name": "StorageSyncManagementClient" - } - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/providers/Microsoft.StorageSync/operations": { - "get": { - "tags": [ - "ResourceProvider", - "Operations" - ], - "operationId": "Operations_List", - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "description": "Lists all of the available Storage Sync Rest API operations.", - "x-ms-examples": { - "Operations_List": { - "$ref": "./examples/Operations_List.json" - } - }, - "responses": { - "200": { - "description": "Array of operations resources in the Resource Provider", - "schema": { - "$ref": "#/definitions/OperationEntityListResult" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "deprecated": false, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/locations/{locationName}/checkNameAvailability": { - "post": { - "tags": [ - "StorageSyncService" - ], - "operationId": "StorageSyncServices_CheckNameAvailability", - "x-ms-examples": { - "StorageSyncServiceCheckNameAvailability_Available": { - "$ref": "./examples/StorageSyncServiceCheckNameAvailability_Available.json" - }, - "StorageSyncServiceCheckNameAvailability_AlreadyExists": { - "$ref": "./examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json" - } - }, - "description": "Check the give namespace name availability.", - "parameters": [{ - "name": "locationName", - "in": "path", - "required": true, - "type": "string", - "description": "The desired region for the name check." - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityParameters" - }, - "description": "Parameters to check availability of the given namespace name" - }], - "responses": { - "200": { - "description": "check availability returned successfully.", - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityResult" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Storage Sync Service resource name.", - "required": true, - "schema": { - "$ref": "#/definitions/StorageSyncServiceCreateParameters" - } - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Create", - "description": "Create a new StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Create": { - "$ref": "./examples/StorageSyncServices_Create.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object created/updated", - "schema": { - "$ref": "#/definitions/StorageSyncService" - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "swagger": "2.0", + "info": { + "title": "Microsoft Storage Sync", + "description": "Microsoft Storage Sync Service API", + "version": "2018-07-01", + "x-ms-code-generation-settings": { + "name": "StorageSyncManagementClient" + } + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/providers/Microsoft.StorageSync/operations": { + "get": { + "tags": [ + "ResourceProvider", + "Operations" + ], + "operationId": "Operations_List", + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "description": "Lists all of the available Storage Sync Rest API operations.", + "x-ms-examples": { + "Operations_List": { + "$ref": "./examples/Operations_List.json" + } + }, + "responses": { + "200": { + "description": "Array of operations resources in the Resource Provider", + "schema": { + "$ref": "#/definitions/OperationEntityListResult" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Get", - "description": "Get a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Get": { - "$ref": "./examples/StorageSyncServices_Get.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object", - "schema": { - "$ref": "#/definitions/StorageSyncService" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - }, - "patch": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Storage Sync Service resource.", - "schema": { - "$ref": "#/definitions/StorageSyncServiceUpdateParameters" - } - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Update", - "description": "Patch a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Update": { - "$ref": "./examples/StorageSyncServices_Update.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object created/updated", - "schema": { - "$ref": "#/definitions/StorageSyncService" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Delete", - "description": "Delete a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Delete": { - "$ref": "./examples/StorageSyncServices_Delete.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object was deleted.", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "204": { - "description": "Storage Sync Service Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_ListByResourceGroup", - "description": "Get a StorageSyncService list by Resource group name.", - "x-ms-examples": { - "StorageSyncServices_ListByResourceGroup": { - "$ref": "./examples/StorageSyncServices_ListByResourceGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of registered Storage Sync Service resources in the Resource Group", - "schema": { - "$ref": "#/definitions/StorageSyncServiceArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/storageSyncServices": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_ListBySubscription", - "description": "Get a StorageSyncService list by subscription.", - "x-ms-examples": { - "StorageSyncServices_ListBySubscription": { - "$ref": "./examples/StorageSyncServices_ListBySubscription.json" - } - }, - "responses": { - "200": { - "description": "Array of registered Storage Sync Service resources in the subscription.", - "schema": { - "$ref": "#/definitions/StorageSyncServiceArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_ListByStorageSyncService", - "description": "Get a SyncGroup List.", - "x-ms-examples": { - "SyncGroups_ListByStorageSyncService": { - "$ref": "./examples/SyncGroups_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Sync Group resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/SyncGroupArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Sync Group Body", - "required": true, - "schema": { - "$ref": "#/definitions/SyncGroupCreateParameters" - } - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Create", - "description": "Create a new SyncGroup.", - "x-ms-examples": { - "SyncGroups_Create": { - "$ref": "./examples/SyncGroups_Create.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object", - "schema": { - "$ref": "#/definitions/SyncGroup" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "deprecated": false, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/locations/{locationName}/checkNameAvailability": { + "post": { + "tags": [ + "StorageSyncService" + ], + "operationId": "StorageSyncServices_CheckNameAvailability", + "x-ms-examples": { + "StorageSyncServiceCheckNameAvailability_Available": { + "$ref": "./examples/StorageSyncServiceCheckNameAvailability_Available.json" + }, + "StorageSyncServiceCheckNameAvailability_AlreadyExists": { + "$ref": "./examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json" + } + }, + "description": "Check the give namespace name availability.", + "parameters": [ + { + "name": "locationName", + "in": "path", + "required": true, + "type": "string", + "description": "The desired region for the name check." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityParameters" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Get", - "description": "Get a given SyncGroup.", - "x-ms-examples": { - "SyncGroups_Get": { - "$ref": "./examples/SyncGroups_Get.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object", - "schema": { - "$ref": "#/definitions/SyncGroup" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "description": "Parameters to check availability of the given namespace name" + } + ], + "responses": { + "200": { + "description": "check availability returned successfully.", + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityResult" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Storage Sync Service resource name.", + "required": true, + "schema": { + "$ref": "#/definitions/StorageSyncServiceCreateParameters" + } + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Create", + "description": "Create a new StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Create": { + "$ref": "./examples/StorageSyncServices_Create.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object created/updated", + "schema": { + "$ref": "#/definitions/StorageSyncService" + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Get", + "description": "Get a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Get": { + "$ref": "./examples/StorageSyncServices_Get.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object", + "schema": { + "$ref": "#/definitions/StorageSyncService" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Delete", - "description": "Delete a given SyncGroup.", - "x-ms-examples": { - "SyncGroups_Delete": { - "$ref": "./examples/SyncGroups_Delete.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object was deleted", - "headers": { - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint resource.", - "required": true, - "schema": { - "$ref": "#/definitions/CloudEndpointCreateParameters" - } - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Create", - "description": "Create a new CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Create": { - "$ref": "./examples/CloudEndpoints_Create.json" - } - }, - "responses": { - "200": { - "description": "Cloud Endpoint object", - "schema": { - "$ref": "#/definitions/CloudEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Retry-After": { - "description": "Retry After", - "type": "string" - }, - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "patch": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Storage Sync Service resource.", + "schema": { + "$ref": "#/definitions/StorageSyncServiceUpdateParameters" + } + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Update", + "description": "Patch a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Update": { + "$ref": "./examples/StorageSyncServices_Update.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object created/updated", + "schema": { + "$ref": "#/definitions/StorageSyncService" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Get", - "description": "Get a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Get": { - "$ref": "./examples/CloudEndpoints_Get.json" - } - }, - "responses": { - "200": { - "description": "Cloud Endpoint object", - "schema": { - "$ref": "#/definitions/CloudEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Delete", + "description": "Delete a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Delete": { + "$ref": "./examples/StorageSyncServices_Delete.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object was deleted.", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "204": { + "description": "Storage Sync Service Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_ListByResourceGroup", + "description": "Get a StorageSyncService list by Resource group name.", + "x-ms-examples": { + "StorageSyncServices_ListByResourceGroup": { + "$ref": "./examples/StorageSyncServices_ListByResourceGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of registered Storage Sync Service resources in the Resource Group", + "schema": { + "$ref": "#/definitions/StorageSyncServiceArray" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Delete", - "description": "Delete a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Delete": { - "$ref": "./examples/CloudEndpoints_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Retry-After": { - "description": "Retry After", - "type": "string" - }, - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_ListBySyncGroup", - "description": "Get a CloudEndpoint List.", - "x-ms-examples": { - "CloudEndpoints_ListBySyncGroup": { - "$ref": "./examples/CloudEndpoints_ListBySyncGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of Cloud Endpoint resources in Sync Group", - "schema": { - "$ref": "#/definitions/CloudEndpointArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prebackup": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Backup request.", - "required": true, - "schema": { - "$ref": "#/definitions/BackupRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PreBackup", - "description": "Pre Backup a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PreBackup": { - "$ref": "./examples/CloudEndpoints_PreBackup.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postbackup": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Backup request.", - "required": true, - "schema": { - "$ref": "#/definitions/BackupRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PostBackup", - "description": "Post Backup a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PostBackup": { - "$ref": "./examples/CloudEndpoints_PostBackup.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "schema": { - "$ref": "#/definitions/PostBackupResponse" - }, - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prerestore": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/PreRestoreRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PreRestore", - "description": "Pre Restore a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PreRestore": { - "$ref": "./examples/CloudEndpoints_PreRestore.json" - } - }, - "responses": { - "200": { - "description": "Ok" - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/restoreheartbeat": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_restoreheartbeat", - "description": "Restore Heartbeat a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_restoreheartbeat": { - "$ref": "./examples/CloudEndpoints_RestoreHeatbeat.json" - } - }, - "responses": { - "200": { - "description": "Restore Heartbeat Operation has ran successfully.", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postrestore": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/PostRestoreRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PostRestore", - "description": "Post Restore a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PostRestore": { - "$ref": "./examples/CloudEndpoints_PostRestore.json" - } - }, - "responses": { - "200": { - "description": "Ok" - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Server Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/ServerEndpointCreateParameters" - } - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Create", - "description": "Create a new ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Create": { - "$ref": "./examples/ServerEndpoints_Create.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/storageSyncServices": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_ListBySubscription", + "description": "Get a StorageSyncService list by subscription.", + "x-ms-examples": { + "StorageSyncServices_ListBySubscription": { + "$ref": "./examples/StorageSyncServices_ListBySubscription.json" + } + }, + "responses": { + "200": { + "description": "Array of registered Storage Sync Service resources in the subscription.", + "schema": { + "$ref": "#/definitions/StorageSyncServiceArray" }, - "patch": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Any of the properties applicable in PUT request.", - "schema": { - "$ref": "#/definitions/ServerEndpointUpdateParameters" - } - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Update", - "description": "Patch a given ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Update": { - "$ref": "./examples/ServerEndpoints_Update.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_ListByStorageSyncService", + "description": "Get a SyncGroup List.", + "x-ms-examples": { + "SyncGroups_ListByStorageSyncService": { + "$ref": "./examples/SyncGroups_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Sync Group resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/SyncGroupArray" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Get", - "description": "Get a ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Get": { - "$ref": "./examples/ServerEndpoints_Get.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Sync Group Body", + "required": true, + "schema": { + "$ref": "#/definitions/SyncGroupCreateParameters" + } + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Create", + "description": "Create a new SyncGroup.", + "x-ms-examples": { + "SyncGroups_Create": { + "$ref": "./examples/SyncGroups_Create.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object", + "schema": { + "$ref": "#/definitions/SyncGroup" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Delete", - "description": "Delete a given ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Delete": { - "$ref": "./examples/ServerEndpoints_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_ListBySyncGroup", - "description": "Get a ServerEndpoint list.", - "x-ms-examples": { - "ServerEndpoints_ListBySyncGroup": { - "$ref": "./examples/ServerEndpoints_ListBySyncGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of Server Endpoint resources in Sync Group", - "schema": { - "$ref": "#/definitions/ServerEndpointArray" - }, - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}/recallAction": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Recall Action object.", - "required": true, - "schema": { - "$ref": "#/definitions/RecallActionParameters" - } - }], - "tags": [ - "ServerEndpoint Resource", - "Actions" - ], - "operationId": "ServerEndpoints_recallAction", - "description": "Recall a server endpoint.", - "x-ms-examples": { - "ServerEndpoints_recallAction": { - "$ref": "./examples/ServerEndpoints_Recall.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_ListByStorageSyncService", - "description": "Get a given registered server list.", - "x-ms-examples": { - "RegisteredServers_ListByStorageSyncService": { - "$ref": "./examples/RegisteredServers_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Registered Server resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/RegisteredServerArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Get", - "description": "Get a given registered server.", - "x-ms-examples": { - "RegisteredServers_Get": { - "$ref": "./examples/RegisteredServers_Get.json" - } - }, - "responses": { - "200": { - "description": "Registered Server resources in Sync Group", - "schema": { - "$ref": "#/definitions/RegisteredServer" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Get", + "description": "Get a given SyncGroup.", + "x-ms-examples": { + "SyncGroups_Get": { + "$ref": "./examples/SyncGroups_Get.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object", + "schema": { + "$ref": "#/definitions/SyncGroup" }, - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Registered Server object.", - "required": true, - "schema": { - "$ref": "#/definitions/RegisteredServerCreateParameters" - } - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Create", - "description": "Add a new registered server.", - "x-ms-examples": { - "RegisteredServers_Create": { - "$ref": "./examples/RegisteredServers_Create.json" - } - }, - "responses": { - "200": { - "description": "Registered Server resources in Sync Group", - "schema": { - "$ref": "#/definitions/RegisteredServer" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Delete", + "description": "Delete a given SyncGroup.", + "x-ms-examples": { + "SyncGroups_Delete": { + "$ref": "./examples/SyncGroups_Delete.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object was deleted", + "headers": { + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint resource.", + "required": true, + "schema": { + "$ref": "#/definitions/CloudEndpointCreateParameters" + } + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Create", + "description": "Create a new CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Create": { + "$ref": "./examples/CloudEndpoints_Create.json" + } + }, + "responses": { + "200": { + "description": "Cloud Endpoint object", + "schema": { + "$ref": "#/definitions/CloudEndpoint" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Delete", - "description": "Delete the given registered server.", - "x-ms-examples": { - "RegisteredServers_Delete": { - "$ref": "./examples/RegisteredServers_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}/triggerRollover": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "Server Id", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Trigger Rollover request.", - "required": true, - "schema": { - "$ref": "#/definitions/TriggerRolloverRequest" - } - }], - "tags": [ - "RegisteredServer Resource", - "Actions" - ], - "operationId": "RegisteredServers_triggerRollover", - "description": "Triggers Server certificate rollover.", - "x-ms-examples": { - "RegisteredServers_triggerRollover": { - "$ref": "./examples/RegisteredServers_TriggerRollover.json" - } - }, - "responses": { - "200": { - "description": "Trigger Rollover success status", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource" - ], - "operationId": "Workflows_ListByStorageSyncService", - "description": "Get a Workflow List", - "x-ms-examples": { - "Workflows_ListByStorageSyncService": { - "$ref": "./examples/Workflows_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Workflow resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/WorkflowArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "workflowId", - "in": "path", - "description": "workflow Id", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource" - ], - "operationId": "Workflows_Get", - "description": "Get Workflows resource", - "x-ms-examples": { - "Workflows_Get": { - "$ref": "./examples/Workflows_Get.json" - } - }, - "responses": { - "200": { - "description": "Workflow object", - "schema": { - "$ref": "#/definitions/Workflow" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}/abort": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "workflowId", - "in": "path", - "description": "workflow Id", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource", - "Actions" - ], - "operationId": "Workflows_Abort", - "description": "Abort the given workflow.", - "x-ms-examples": { - "Workflows_Abort": { - "$ref": "./examples/Workflows_Abort.json" - } - }, - "responses": { - "200": { - "description": "success", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - } - }, - "definitions": { - "StorageSyncError": { - "type": "object", - "description": "Error type", - "properties": { - "error": { - "$ref": "#/definitions/StorageSyncApiError", - "description": "Error details of the given entry." - }, - "innererror": { - "$ref": "#/definitions/StorageSyncApiError", - "description": "Error details of the given entry." - } - } - }, - "StorageSyncApiError": { - "type": "object", - "description": "Error type", - "properties": { - "code": { - "type": "string", - "description": "Error code of the given entry." - }, - "message": { - "type": "string", - "description": "Error message of the given entry." - }, - "target": { - "type": "string", - "description": "Target of the given error entry." - }, - "details": { - "$ref": "#/definitions/StorageSyncErrorDetails", - "description": "Error details of the given entry." - } - } - }, - "StorageSyncErrorDetails": { - "type": "object", - "description": "Error Details object.", - "properties": { - "code": { - "type": "string", - "description": "Error code of the given entry." - }, - "message": { - "type": "string", - "description": "Error message of the given entry." - }, - "target": { - "type": "string", - "description": "Target of the given entry." - } - } - }, - "SubscriptionState": { - "type": "object", - "description": "Subscription State object.", - "properties": { - "state": { - "type": "string", - "description": "State of Azure Subscription", - "enum": [ - "Registered", - "Unregistered", - "Warned", - "Suspended", - "Deleted" - ], - "x-ms-enum": { - "name": "Reason", - "modelAsString": true - } - }, - "istransitioning": { - "type": "boolean", - "description": "Is Transitioning", - "readOnly": true - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SubscriptionStateProperties", - "description": "Subscription state properties." - } - } - }, - "StorageSyncService": { - "type": "object", - "description": "Storage Sync Service object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/StorageSyncServiceProperties", - "description": "Storage Sync Service properties." - } - } - }, - "SyncGroup": { - "type": "object", - "description": "Sync Group object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SyncGroupProperties", - "description": "SyncGroup properties." - } - } - }, - "CloudEndpoint": { - "type": "object", - "description": "Cloud Endpoint object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/CloudEndpointProperties", - "description": "Cloud Endpoint properties." - } - } - }, - "RecallActionParameters": { - "properties": { - "pattern": { - "type": "string", - "description": "Pattern of the files." - }, - "recallPath": { - "type": "string", - "description": "Recall path." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Retry-After": { + "description": "Retry After", + "type": "string" + }, + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Get", + "description": "Get a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Get": { + "$ref": "./examples/CloudEndpoints_Get.json" + } + }, + "responses": { + "200": { + "description": "Cloud Endpoint object", + "schema": { + "$ref": "#/definitions/CloudEndpoint" }, - "description": "The parameters used when calling recall action on server endpoint." - }, - "StorageSyncServiceCreateParameters": { - "properties": { - "location": { - "type": "string", - "description": "Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed." - }, - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters." - }, - "properties": {} + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Delete", + "description": "Delete a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Delete": { + "$ref": "./examples/CloudEndpoints_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Retry-After": { + "description": "Retry After", + "type": "string" + }, + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_ListBySyncGroup", + "description": "Get a CloudEndpoint List.", + "x-ms-examples": { + "CloudEndpoints_ListBySyncGroup": { + "$ref": "./examples/CloudEndpoints_ListBySyncGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of Cloud Endpoint resources in Sync Group", + "schema": { + "$ref": "#/definitions/CloudEndpointArray" }, - "required": [ - "location" - ], - "description": "The parameters used when creating a storage sync service." - }, - "SyncGroupCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SyncGroupCreateParametersProperties", - "description": "The parameters used to create the sync group" - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prebackup": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Backup request.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PreBackup", + "description": "Pre Backup a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PreBackup": { + "$ref": "./examples/CloudEndpoints_PreBackup.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postbackup": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Backup request.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PostBackup", + "description": "Post Backup a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PostBackup": { + "$ref": "./examples/CloudEndpoints_PostBackup.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "schema": { + "$ref": "#/definitions/PostBackupResponse" }, - "description": "The parameters used when creating a sync group." - }, - "SyncGroupCreateParametersProperties": { - "type": "object", - "description": "Sync Group Create Properties object.", - "properties": {} - }, - "CloudEndpointCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/CloudEndpointCreateParametersProperties", - "description": "The parameters used to create the cloud endpoint." - } + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prerestore": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/PreRestoreRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PreRestore", + "description": "Pre Restore a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PreRestore": { + "$ref": "./examples/CloudEndpoints_PreRestore.json" + } + }, + "responses": { + "200": { + "description": "Ok" + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/restoreheartbeat": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_restoreheartbeat", + "description": "Restore Heartbeat a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_restoreheartbeat": { + "$ref": "./examples/CloudEndpoints_RestoreHeatbeat.json" + } + }, + "responses": { + "200": { + "description": "Restore Heartbeat Operation has ran successfully.", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postrestore": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/PostRestoreRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PostRestore", + "description": "Post Restore a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PostRestore": { + "$ref": "./examples/CloudEndpoints_PostRestore.json" + } + }, + "responses": { + "200": { + "description": "Ok" + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Server Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/ServerEndpointCreateParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Create", + "description": "Create a new ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Create": { + "$ref": "./examples/ServerEndpoints_Create.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "description": "The parameters used when creating a cloud endpoint." - }, - "CloudEndpointCreateParametersProperties": { - "description": "CloudEndpoint Properties object.", - "properties": { - "storageAccountResourceId": { - "type": "string", - "description": "Storage Account Resource Id" - }, - "storageAccountShareName": { - "type": "string", - "description": "Storage Account Share name" - }, - "storageAccountTenantId": { - "type": "string", - "description": "Storage Account Tenant Id" - } - } - }, - "ServerEndpointCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointCreateParametersProperties", - "description": "The parameters used to create the server endpoint." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "patch": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Any of the properties applicable in PUT request.", + "schema": { + "$ref": "#/definitions/ServerEndpointUpdateParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Update", + "description": "Patch a given ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Update": { + "$ref": "./examples/ServerEndpoints_Update.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "description": "The parameters used when creating a server endpoint." - }, - "ServerEndpointCreateParametersProperties": { - "description": "ServerEndpoint Properties object.", - "properties": { - "serverLocalPath": { - "$ref": "#/definitions/PhysicalPath", - "description": "Server Local path." - }, - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "serverResourceId": { - "$ref": "#/definitions/ResourceId", - "description": "Server Resource Id." - } - } - }, - "TriggerRolloverRequest": { - "type": "object", - "description": "Trigger Rollover Request.", - "properties": { - "serverCertificate": { - "type": "string", - "description": "Certificate Data" - } - } - }, - "RegisteredServerCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegisteredServerCreateParametersProperties", - "description": "The parameters used to create the registered server." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Get", + "description": "Get a ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Get": { + "$ref": "./examples/ServerEndpoints_Get.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "description": "The parameters used when creating a registered server." - }, - "RegisteredServerCreateParametersProperties": { - "properties": { - "serverCertificate": { - "type": "string", - "description": "Registered Server Certificate" - }, - "agentVersion": { - "type": "string", - "description": "Registered Server Agent Version" - }, - "serverOSVersion": { - "type": "string", - "description": "Registered Server OS Version" - }, - "lastHeartBeat": { - "type": "string", - "description": "Registered Server last heart beat" - }, - "serverRole": { - "type": "string", - "description": "Registered Server serverRole" - }, - "clusterId": { - "type": "string", - "description": "Registered Server clusterId" - }, - "clusterName": { - "type": "string", - "description": "Registered Server clusterName" - }, - "serverId": { - "type": "string", - "description": "Registered Server serverId" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - } - } - }, - "ServerEndpointUpdateParameters": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointUpdateProperties", - "description": "The properties of the server endpoint." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Delete", + "description": "Delete a given ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Delete": { + "$ref": "./examples/ServerEndpoints_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_ListBySyncGroup", + "description": "Get a ServerEndpoint list.", + "x-ms-examples": { + "ServerEndpoints_ListBySyncGroup": { + "$ref": "./examples/ServerEndpoints_ListBySyncGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of Server Endpoint resources in Sync Group", + "schema": { + "$ref": "#/definitions/ServerEndpointArray" }, - "description": "Parameters for updating an Server Endpoint." - }, - "ServerEndpoint": { - "type": "object", - "description": "Server Endpoint object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointProperties", - "description": "Server Endpoint properties." - } - } - }, - "RegisteredServer": { - "type": "object", - "description": "Registered Server resource.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegisteredServerProperties", - "description": "RegisteredServer properties." - } - } - }, - "ResourcesMoveInfo": { - "type": "object", - "description": "Resource Move Info.", - "properties": { - "targetResourceGroup": { - "type": "string", - "description": "Target resource group." - }, - "resources": { - "type": "array", - "description": "Collection of Resources.", - "items": { - "$ref": "#/definitions/ResourceId" - } - } - } - }, - "Workflow": { - "type": "object", - "description": "Workflow resource.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/WorkflowProperties", - "description": "Workflow properties." - } - } - }, - "OperationEntityListResult": { - "description": "The list of storage sync operations.", - "type": "object", - "properties": { - "nextLink": { - "description": "The link used to get the next page of operations.", - "type": "string" - }, - "value": { - "description": "The list of operations.", - "type": "array", - "items": { - "$ref": "#/definitions/OperationEntity" - } - } - } - }, - "OperationEntity": { - "description": "The operation supported by storage sync.", - "type": "object", - "properties": { - "name": { - "description": "Operation name: {provider}/{resource}/{operation}.", - "type": "string" - }, - "display": { - "$ref": "#/definitions/OperationDisplayInfo", - "description": "The operation supported by storage sync." - }, - "origin": { - "type": "string", - "description": "The origin." - } - } - }, - "OperationDisplayInfo": { - "description": "The operation supported by storage sync.", - "type": "object", - "properties": { - "description": { - "description": "The description of the operation.", - "type": "string" - }, - "operation": { - "description": "The action that users can perform, based on their permission level.", - "type": "string" - }, - "provider": { - "description": "Service provider: Microsoft StorageSync.", - "type": "string" - }, - "resource": { - "description": "Resource on which the operation is performed.", - "type": "string" - } - } - }, - "OperationDisplayResource": { - "type": "object", - "description": "Operation Display Resource object.", - "properties": { - "provider": { - "type": "string", - "description": "Operation Display Resource Provider." - }, - "resource": { - "type": "string", - "description": "Operation Display Resource." - }, - "operation": { - "type": "string", - "description": "Operation Display Resource Operation." - }, - "description": { - "type": "string", - "description": "Operation Display Resource Description." - } - } - }, - "CheckNameAvailabilityParameters": { - "properties": { - "name": { - "type": "string", - "description": "The name to check for availability" - }, - "type": { - "type": "string", - "enum": ["Microsoft.StorageSync/storageSyncServices"], - "x-ms-enum": { - "name": "Type", - "modelAsString": false - }, - "description": "The resource type. Must be set to Microsoft.StorageSync/storageSyncServices" - } + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}/recallAction": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Recall Action object.", + "required": true, + "schema": { + "$ref": "#/definitions/RecallActionParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource", + "Actions" + ], + "operationId": "ServerEndpoints_recallAction", + "description": "Recall a server endpoint.", + "x-ms-examples": { + "ServerEndpoints_recallAction": { + "$ref": "./examples/ServerEndpoints_Recall.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_ListByStorageSyncService", + "description": "Get a given registered server list.", + "x-ms-examples": { + "RegisteredServers_ListByStorageSyncService": { + "$ref": "./examples/RegisteredServers_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Registered Server resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/RegisteredServerArray" }, - "required": [ - "name", - "type" - ], - "description": "Parameters for a check name availability request." - }, - "CheckNameAvailabilityResult": { - "properties": { - "nameAvailable": { - "readOnly": true, - "type": "boolean", - "description": "Gets a boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or invalid and cannot be used." - }, - "reason": { - "readOnly": true, - "type": "string", - "enum": [ - "Invalid", - "AlreadyExists" - ], - "x-ms-enum": { - "name": "NameAvailabilityReason", - "modelAsString": false - }, - "description": "Gets the reason that a Storage Sync Service name could not be used. The Reason element is only returned if NameAvailable is false." - }, - "message": { - "readOnly": true, - "type": "string", - "description": "Gets an error message explaining the Reason value in more detail." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Get", + "description": "Get a given registered server.", + "x-ms-examples": { + "RegisteredServers_Get": { + "$ref": "./examples/RegisteredServers_Get.json" + } + }, + "responses": { + "200": { + "description": "Registered Server resources in Sync Group", + "schema": { + "$ref": "#/definitions/RegisteredServer" }, - "description": "The CheckNameAvailability operation response." - }, - "PostRestoreRequest": { - "type": "object", - "description": "Post Restore Request", - "properties": { - "partition": { - "type": "string", - "description": "Post Restore partition." - }, - "replicaGroup": { - "type": "string", - "description": "Post Restore replica group." - }, - "requestId": { - "type": "string", - "description": "Post Restore request id." - }, - "azureFileShareUri": { - "type": "string", - "description": "Post Restore Azure file share uri." - }, - "status": { - "type": "string", - "description": "Post Restore Azure status." - }, - "sourceAzureFileShareUri": { - "type": "string", - "description": "Post Restore Azure source azure file share uri." - }, - "failedFileList": { - "type": "string", - "description": "Post Restore Azure failed file list." - }, - "restoreFileSpec": { - "type": "array", - "description": "Post Restore restore file spec array.", - "items": { - "$ref": "#/definitions/RestoreFileSpec", - "description": "Post Restore restore file spec items array." - } - } - } - }, - "PreRestoreRequest": { - "type": "object", - "description": "Pre Restore request object.", - "properties": { - "partition": { - "type": "string", - "description": "Pre Restore partition." - }, - "replicaGroup": { - "type": "string", - "description": "Pre Restore replica group." - }, - "requestId": { - "type": "string", - "description": "Pre Restore request id." - }, - "azureFileShareUri": { - "type": "string", - "description": "Pre Restore Azure file share uri." - }, - "status": { - "type": "string", - "description": "Pre Restore Azure status." - }, - "sourceAzureFileShareUri": { - "type": "string", - "description": "Pre Restore Azure source azure file share uri." - }, - "backupMetadataPropertyBag": { - "type": "string", - "description": "Pre Restore backup metadata property bag." - }, - "restoreFileSpec": { - "type": "array", - "description": "Pre Restore restore file spec array.", - "items": { - "$ref": "#/definitions/RestoreFileSpec", - "description": "Pre Restore restore file spec items array." - } - }, - "pauseWaitForSyncDrainTimePeriodInSeconds": { - "type": "integer", - "description": "Pre Restore pause wait for sync drain time period in seconds." - } - } - }, - "BackupRequest": { - "type": "object", - "description": "Backup request", - "properties": { - "azureFileShare": { - "type": "string", - "description": "Azure File Share." - } - } - }, - "PostBackupResponse": { - "type": "object", - "description": "Post Backup Response", - "properties": { - "backupMetadata": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/PostBackupResponseProperties", - "description": "Post Backup Response Properties" - } - } - }, - "RestoreFileSpec": { - "type": "object", - "description": "Restore file spec.", - "properties": { - "path": { - "type": "string", - "description": "Restore file spec path" - }, - "isdir": { - "type": "boolean", - "description": "Restore file spec isdir", - "readOnly": true - } - } - }, - "StorageSyncServiceArray": { - "type": "object", - "description": "Array of StorageSyncServices", - "properties": { - "value": { - "type": "array", - "description": "Collection of StorageSyncServices.", - "items": { - "$ref": "#/definitions/StorageSyncService" - } - } - } - }, - "SyncGroupArray": { - "type": "object", - "description": "Array of SyncGroup", - "properties": { - "value": { - "type": "array", - "description": "Collection of SyncGroup.", - "items": { - "$ref": "#/definitions/SyncGroup" - } - } - } - }, - "CloudEndpointArray": { - "type": "object", - "description": "Array of CloudEndpoint", - "properties": { - "value": { - "type": "array", - "description": "Collection of CloudEndpoint.", - "items": { - "$ref": "#/definitions/CloudEndpoint" - } - } - } - }, - "ServerEndpointArray": { - "description": "Array of ServerEndpoint", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of ServerEndpoint.", - "items": { - "$ref": "#/definitions/ServerEndpoint" - } - } - } - }, - "RegisteredServerArray": { - "description": "Array of RegisteredServer", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of Registered Server.", - "items": { - "$ref": "#/definitions/RegisteredServer" - } - } - } - }, - "WorkflowArray": { - "description": "Array of Workflow", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of workflow items.", - "items": { - "$ref": "#/definitions/Workflow" - } - } - } - }, - "SubscriptionStateProperties": { - "type": "object", - "description": "Subscription State properties." - }, - "PostBackupResponseProperties": { - "type": "object", - "description": "Post Backup Response Properties object.", - "properties": { - "cloudEndpointName": { - "type": "string", - "description": "cloud endpoint Name.", - "readOnly": true - } - } - }, - "StorageSyncServiceUpdateParameters": { - "properties": { - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "The user-specified tags associated with the storage sync service." - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/StorageSyncServiceUpdateProperties", - "description": "The properties of the storage sync service." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Registered Server object.", + "required": true, + "schema": { + "$ref": "#/definitions/RegisteredServerCreateParameters" + } + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Create", + "description": "Add a new registered server.", + "x-ms-examples": { + "RegisteredServers_Create": { + "$ref": "./examples/RegisteredServers_Create.json" + } + }, + "responses": { + "200": { + "description": "Registered Server resources in Sync Group", + "schema": { + "$ref": "#/definitions/RegisteredServer" }, - "description": "Parameters for updating an Storage sync service." - }, - "StorageSyncServiceUpdateProperties": { - "type": "object", - "description": "Storage Sync Service Update Properties object.", - "properties": {} - }, - "StorageSyncServiceProperties": { - "type": "object", - "description": "Storage Sync Service Properties object.", - "properties": { - "storageSyncServiceStatus": { - "type": "integer", - "description": "Storage Sync service status.", - "readOnly": true - }, - "storageSyncServiceUid": { - "type": "string", - "description": "Storage Sync service Uid", - "readOnly": true - } - } - }, - "WorkflowProperties": { - "type": "object", - "description": "Workflow Properties object.", - "properties": { - "lastStepName": { - "type": "string", - "description": "last step name" - }, - "status": { - "$ref": "#/definitions/WorkflowStatus", - "description": "workflow status." - }, - "operation": { - "$ref": "#/definitions/OperationDirection", - "description": "operation direction." - }, - "steps": { - "type": "string", - "description": "workflow steps" - }, - "lastOperationId": { - "type": "string", - "description": "workflow last operation identifier." - } - } - }, - "SyncGroupProperties": { - "type": "object", - "description": "SyncGroup Properties object.", - "properties": { - "uniqueId": { - "type": "string", - "description": "Unique Id" - }, - "syncGroupStatus": { - "type": "string", - "description": "Sync group status", - "readOnly": true - } - } - }, - "RegisteredServerProperties": { - "type": "object", - "description": "RegisteredServer Properties object.", - "properties": { - "serverCertificate": { - "type": "string", - "description": "Registered Server Certificate" - }, - "agentVersion": { - "type": "string", - "description": "Registered Server Agent Version" - }, - "serverOSVersion": { - "type": "string", - "description": "Registered Server OS Version" - }, - "serverManagementtErrorCode": { - "type": "integer", - "description": "Registered Server Management Error Code" - }, - "lastHeartBeat": { - "type": "string", - "description": "Registered Server last heart beat" - }, - "provisioningState": { - "type": "string", - "description": "Registered Server Provisioning State" - }, - "serverRole": { - "type": "string", - "description": "Registered Server serverRole" - }, - "clusterId": { - "type": "string", - "description": "Registered Server clusterId" - }, - "clusterName": { - "type": "string", - "description": "Registered Server clusterName" - }, - "serverId": { - "type": "string", - "description": "Registered Server serverId" - }, - "storageSyncServiceUid": { - "type": "string", - "description": "Registered Server storageSyncServiceUid" - }, - "lastWorkflowId": { - "type": "string", - "description": "Registered Server lastWorkflowId" - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name" - }, - "discoveryEndpointUri": { - "type": "string", - "description": "Resource discoveryEndpointUri" - }, - "resourceLocation": { - "type": "string", - "description": "Resource Location" - }, - "serviceLocation": { - "type": "string", - "description": "Service Location" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "managementEndpointUri": { - "type": "string", - "description": "Management Endpoint Uri" - }, - "monitoringConfiguration": { - "type": "string", - "description": "Monitoring Configuration" - } - } - }, - "CloudEndpointProperties": { - "type": "object", - "description": "CloudEndpoint Properties object.", - "properties": { - "storageAccountResourceId": { - "type": "string", - "description": "Storage Account Resource Id" - }, - "storageAccountShareName": { - "type": "string", - "description": "Storage Account Share name" - }, - "storageAccountTenantId": { - "type": "string", - "description": "Storage Account Tenant Id" - }, - "partnershipId": { - "type": "string", - "description": "Partnership Id" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "backupEnabled": { - "type": "boolean", - "description": "Backup Enabled", - "readOnly": true - }, - "provisioningState": { - "type": "string", - "description": "CloudEndpoint Provisioning State" - }, - "lastWorkflowId": { - "type": "string", - "description": "CloudEndpoint lastWorkflowId" - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name" - } - } - }, - "ServerEndpointUpdateProperties": { - "type": "object", - "description": "ServerEndpoint Update Properties object.", - "properties": { - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - } - } - }, - "ServerEndpointProperties": { - "type": "object", - "description": "ServerEndpoint Properties object.", - "properties": { - "serverLocalPath": { - "$ref": "#/definitions/PhysicalPath", - "description": "Server Local path." - }, - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "serverResourceId": { - "$ref": "#/definitions/ResourceId", - "description": "Server Resource Id." - }, - "provisioningState": { - "type": "string", - "description": "ServerEndpoint Provisioning State" - }, - "lastWorkflowId": { - "type": "string", - "description": "ServerEndpoint lastWorkflowId" - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name" - }, - "syncStatus": { - "type": "object", - "description": "Sync Health Status" - } - } - }, - "PhysicalPath": { - "type": "string", - "description": "Server folder used for data synchronization" - }, - "ResourceId": { - "type": "string", - "description": "Arm resource identifier." + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Delete", + "description": "Delete the given registered server.", + "x-ms-examples": { + "RegisteredServers_Delete": { + "$ref": "./examples/RegisteredServers_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } }, - "TagsObject": { - "type": "object", - "description": "Tags object." + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}/triggerRollover": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "Server Id", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Trigger Rollover request.", + "required": true, + "schema": { + "$ref": "#/definitions/TriggerRolloverRequest" + } + } + ], + "tags": [ + "RegisteredServer Resource", + "Actions" + ], + "operationId": "RegisteredServers_triggerRollover", + "description": "Triggers Server certificate rollover.", + "x-ms-examples": { + "RegisteredServers_triggerRollover": { + "$ref": "./examples/RegisteredServers_TriggerRollover.json" + } + }, + "responses": { + "200": { + "description": "Trigger Rollover success status", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } }, - "FeatureStatus": { - "type": "string", - "description": "Type of the Feature Status", - "enum": [ - "on", - "off" - ] + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource" + ], + "operationId": "Workflows_ListByStorageSyncService", + "description": "Get a Workflow List", + "x-ms-examples": { + "Workflows_ListByStorageSyncService": { + "$ref": "./examples/Workflows_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Workflow resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/WorkflowArray" + }, + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } }, - "WorkflowStatus": { - "type": "string", - "description": "Type of the Workflow Status", - "enum": [ - "active", - "expired", - "succeeded", - "aborted", - "failed" - ] - }, - "OperationDirection": { - "type": "string", - "description": "Type of the Operation Direction", - "enum": [ - "do", - "undo", - "cancel" - ] - }, - "ProgressType": { - "type": "string", - "description": "Type of the ProgressType", - "enum": [ - "none", - "initialize", - "download", - "upload", - "recall" - ] - } - }, - "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" - } - } - }, - "security": [{ - "azure_auth": [ - "user_impersonation" - ] - }] -} \ No newline at end of file + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "workflowId", + "in": "path", + "description": "workflow Id", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource" + ], + "operationId": "Workflows_Get", + "description": "Get Workflows resource", + "x-ms-examples": { + "Workflows_Get": { + "$ref": "./examples/Workflows_Get.json" + } + }, + "responses": { + "200": { + "description": "Workflow object", + "schema": { + "$ref": "#/definitions/Workflow" + }, + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}/abort": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "workflowId", + "in": "path", + "description": "workflow Id", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource", + "Actions" + ], + "operationId": "Workflows_Abort", + "description": "Abort the given workflow.", + "x-ms-examples": { + "Workflows_Abort": { + "$ref": "./examples/Workflows_Abort.json" + } + }, + "responses": { + "200": { + "description": "success", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + } + }, + "definitions": { + "StorageSyncError": { + "type": "object", + "description": "Error type", + "properties": { + "error": { + "$ref": "#/definitions/StorageSyncApiError", + "description": "Error details of the given entry." + }, + "innererror": { + "$ref": "#/definitions/StorageSyncApiError", + "description": "Error details of the given entry." + } + } + }, + "StorageSyncApiError": { + "type": "object", + "description": "Error type", + "properties": { + "code": { + "type": "string", + "description": "Error code of the given entry." + }, + "message": { + "type": "string", + "description": "Error message of the given entry." + }, + "target": { + "type": "string", + "description": "Target of the given error entry." + }, + "details": { + "$ref": "#/definitions/StorageSyncErrorDetails", + "description": "Error details of the given entry." + } + } + }, + "StorageSyncErrorDetails": { + "type": "object", + "description": "Error Details object.", + "properties": { + "code": { + "type": "string", + "description": "Error code of the given entry." + }, + "message": { + "type": "string", + "description": "Error message of the given entry." + }, + "target": { + "type": "string", + "description": "Target of the given entry." + } + } + }, + "SubscriptionState": { + "type": "object", + "description": "Subscription State object.", + "properties": { + "state": { + "type": "string", + "description": "State of Azure Subscription", + "enum": [ + "Registered", + "Unregistered", + "Warned", + "Suspended", + "Deleted" + ], + "x-ms-enum": { + "name": "Reason", + "modelAsString": true + } + }, + "istransitioning": { + "type": "boolean", + "description": "Is Transitioning", + "readOnly": true + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SubscriptionStateProperties", + "description": "Subscription state properties." + } + } + }, + "StorageSyncService": { + "type": "object", + "description": "Storage Sync Service object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/StorageSyncServiceProperties", + "description": "Storage Sync Service properties." + } + } + }, + "SyncGroup": { + "type": "object", + "description": "Sync Group object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SyncGroupProperties", + "description": "SyncGroup properties." + } + } + }, + "CloudEndpoint": { + "type": "object", + "description": "Cloud Endpoint object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/CloudEndpointProperties", + "description": "Cloud Endpoint properties." + } + } + }, + "RecallActionParameters": { + "properties": { + "pattern": { + "type": "string", + "description": "Pattern of the files." + }, + "recallPath": { + "type": "string", + "description": "Recall path." + } + }, + "description": "The parameters used when calling recall action on server endpoint." + }, + "StorageSyncServiceCreateParameters": { + "properties": { + "location": { + "type": "string", + "description": "Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed." + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters." + }, + "properties": {} + }, + "required": [ + "location" + ], + "description": "The parameters used when creating a storage sync service." + }, + "SyncGroupCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SyncGroupCreateParametersProperties", + "description": "The parameters used to create the sync group" + } + }, + "description": "The parameters used when creating a sync group." + }, + "SyncGroupCreateParametersProperties": { + "type": "object", + "description": "Sync Group Create Properties object.", + "properties": {} + }, + "CloudEndpointCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/CloudEndpointCreateParametersProperties", + "description": "The parameters used to create the cloud endpoint." + } + }, + "description": "The parameters used when creating a cloud endpoint." + }, + "CloudEndpointCreateParametersProperties": { + "description": "CloudEndpoint Properties object.", + "properties": { + "storageAccountResourceId": { + "type": "string", + "description": "Storage Account Resource Id" + }, + "storageAccountShareName": { + "type": "string", + "description": "Storage Account Share name" + }, + "storageAccountTenantId": { + "type": "string", + "description": "Storage Account Tenant Id" + } + } + }, + "ServerEndpointCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointCreateParametersProperties", + "description": "The parameters used to create the server endpoint." + } + }, + "description": "The parameters used when creating a server endpoint." + }, + "ServerEndpointCreateParametersProperties": { + "description": "ServerEndpoint Properties object.", + "properties": { + "serverLocalPath": { + "$ref": "#/definitions/PhysicalPath", + "description": "Server Local path." + }, + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "serverResourceId": { + "$ref": "#/definitions/ResourceId", + "description": "Server Resource Id." + } + } + }, + "TriggerRolloverRequest": { + "type": "object", + "description": "Trigger Rollover Request.", + "properties": { + "serverCertificate": { + "type": "string", + "description": "Certificate Data" + } + } + }, + "RegisteredServerCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegisteredServerCreateParametersProperties", + "description": "The parameters used to create the registered server." + } + }, + "description": "The parameters used when creating a registered server." + }, + "RegisteredServerCreateParametersProperties": { + "properties": { + "serverCertificate": { + "type": "string", + "description": "Registered Server Certificate" + }, + "agentVersion": { + "type": "string", + "description": "Registered Server Agent Version" + }, + "serverOSVersion": { + "type": "string", + "description": "Registered Server OS Version" + }, + "lastHeartBeat": { + "type": "string", + "description": "Registered Server last heart beat" + }, + "serverRole": { + "type": "string", + "description": "Registered Server serverRole" + }, + "clusterId": { + "type": "string", + "description": "Registered Server clusterId" + }, + "clusterName": { + "type": "string", + "description": "Registered Server clusterName" + }, + "serverId": { + "type": "string", + "description": "Registered Server serverId" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + } + } + }, + "ServerEndpointUpdateParameters": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointUpdateProperties", + "description": "The properties of the server endpoint." + } + }, + "description": "Parameters for updating an Server Endpoint." + }, + "ServerEndpoint": { + "type": "object", + "description": "Server Endpoint object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointProperties", + "description": "Server Endpoint properties." + } + } + }, + "RegisteredServer": { + "type": "object", + "description": "Registered Server resource.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegisteredServerProperties", + "description": "RegisteredServer properties." + } + } + }, + "ResourcesMoveInfo": { + "type": "object", + "description": "Resource Move Info.", + "properties": { + "targetResourceGroup": { + "type": "string", + "description": "Target resource group." + }, + "resources": { + "type": "array", + "description": "Collection of Resources.", + "items": { + "$ref": "#/definitions/ResourceId" + } + } + } + }, + "Workflow": { + "type": "object", + "description": "Workflow resource.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/WorkflowProperties", + "description": "Workflow properties." + } + } + }, + "OperationEntityListResult": { + "description": "The list of storage sync operations.", + "type": "object", + "properties": { + "nextLink": { + "description": "The link used to get the next page of operations.", + "type": "string" + }, + "value": { + "description": "The list of operations.", + "type": "array", + "items": { + "$ref": "#/definitions/OperationEntity" + } + } + } + }, + "OperationEntity": { + "description": "The operation supported by storage sync.", + "type": "object", + "properties": { + "name": { + "description": "Operation name: {provider}/{resource}/{operation}.", + "type": "string" + }, + "display": { + "$ref": "#/definitions/OperationDisplayInfo", + "description": "The operation supported by storage sync." + }, + "origin": { + "type": "string", + "description": "The origin." + } + } + }, + "OperationDisplayInfo": { + "description": "The operation supported by storage sync.", + "type": "object", + "properties": { + "description": { + "description": "The description of the operation.", + "type": "string" + }, + "operation": { + "description": "The action that users can perform, based on their permission level.", + "type": "string" + }, + "provider": { + "description": "Service provider: Microsoft StorageSync.", + "type": "string" + }, + "resource": { + "description": "Resource on which the operation is performed.", + "type": "string" + } + } + }, + "OperationDisplayResource": { + "type": "object", + "description": "Operation Display Resource object.", + "properties": { + "provider": { + "type": "string", + "description": "Operation Display Resource Provider." + }, + "resource": { + "type": "string", + "description": "Operation Display Resource." + }, + "operation": { + "type": "string", + "description": "Operation Display Resource Operation." + }, + "description": { + "type": "string", + "description": "Operation Display Resource Description." + } + } + }, + "CheckNameAvailabilityParameters": { + "properties": { + "name": { + "type": "string", + "description": "The name to check for availability" + }, + "type": { + "type": "string", + "enum": [ + "Microsoft.StorageSync/storageSyncServices" + ], + "x-ms-enum": { + "name": "Type", + "modelAsString": false + }, + "description": "The resource type. Must be set to Microsoft.StorageSync/storageSyncServices" + } + }, + "required": [ + "name", + "type" + ], + "description": "Parameters for a check name availability request." + }, + "CheckNameAvailabilityResult": { + "properties": { + "nameAvailable": { + "readOnly": true, + "type": "boolean", + "description": "Gets a boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or invalid and cannot be used." + }, + "reason": { + "readOnly": true, + "type": "string", + "enum": [ + "Invalid", + "AlreadyExists" + ], + "x-ms-enum": { + "name": "NameAvailabilityReason", + "modelAsString": false + }, + "description": "Gets the reason that a Storage Sync Service name could not be used. The Reason element is only returned if NameAvailable is false." + }, + "message": { + "readOnly": true, + "type": "string", + "description": "Gets an error message explaining the Reason value in more detail." + } + }, + "description": "The CheckNameAvailability operation response." + }, + "PostRestoreRequest": { + "type": "object", + "description": "Post Restore Request", + "properties": { + "partition": { + "type": "string", + "description": "Post Restore partition." + }, + "replicaGroup": { + "type": "string", + "description": "Post Restore replica group." + }, + "requestId": { + "type": "string", + "description": "Post Restore request id." + }, + "azureFileShareUri": { + "type": "string", + "description": "Post Restore Azure file share uri." + }, + "status": { + "type": "string", + "description": "Post Restore Azure status." + }, + "sourceAzureFileShareUri": { + "type": "string", + "description": "Post Restore Azure source azure file share uri." + }, + "failedFileList": { + "type": "string", + "description": "Post Restore Azure failed file list." + }, + "restoreFileSpec": { + "type": "array", + "description": "Post Restore restore file spec array.", + "items": { + "$ref": "#/definitions/RestoreFileSpec", + "description": "Post Restore restore file spec items array." + } + } + } + }, + "PreRestoreRequest": { + "type": "object", + "description": "Pre Restore request object.", + "properties": { + "partition": { + "type": "string", + "description": "Pre Restore partition." + }, + "replicaGroup": { + "type": "string", + "description": "Pre Restore replica group." + }, + "requestId": { + "type": "string", + "description": "Pre Restore request id." + }, + "azureFileShareUri": { + "type": "string", + "description": "Pre Restore Azure file share uri." + }, + "status": { + "type": "string", + "description": "Pre Restore Azure status." + }, + "sourceAzureFileShareUri": { + "type": "string", + "description": "Pre Restore Azure source azure file share uri." + }, + "backupMetadataPropertyBag": { + "type": "string", + "description": "Pre Restore backup metadata property bag." + }, + "restoreFileSpec": { + "type": "array", + "description": "Pre Restore restore file spec array.", + "items": { + "$ref": "#/definitions/RestoreFileSpec", + "description": "Pre Restore restore file spec items array." + } + }, + "pauseWaitForSyncDrainTimePeriodInSeconds": { + "type": "integer", + "description": "Pre Restore pause wait for sync drain time period in seconds." + } + } + }, + "BackupRequest": { + "type": "object", + "description": "Backup request", + "properties": { + "azureFileShare": { + "type": "string", + "description": "Azure File Share." + } + } + }, + "PostBackupResponse": { + "type": "object", + "description": "Post Backup Response", + "properties": { + "backupMetadata": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/PostBackupResponseProperties", + "description": "Post Backup Response Properties" + } + } + }, + "RestoreFileSpec": { + "type": "object", + "description": "Restore file spec.", + "properties": { + "path": { + "type": "string", + "description": "Restore file spec path" + }, + "isdir": { + "type": "boolean", + "description": "Restore file spec isdir", + "readOnly": true + } + } + }, + "StorageSyncServiceArray": { + "type": "object", + "description": "Array of StorageSyncServices", + "properties": { + "value": { + "type": "array", + "description": "Collection of StorageSyncServices.", + "items": { + "$ref": "#/definitions/StorageSyncService" + } + } + } + }, + "SyncGroupArray": { + "type": "object", + "description": "Array of SyncGroup", + "properties": { + "value": { + "type": "array", + "description": "Collection of SyncGroup.", + "items": { + "$ref": "#/definitions/SyncGroup" + } + } + } + }, + "CloudEndpointArray": { + "type": "object", + "description": "Array of CloudEndpoint", + "properties": { + "value": { + "type": "array", + "description": "Collection of CloudEndpoint.", + "items": { + "$ref": "#/definitions/CloudEndpoint" + } + } + } + }, + "ServerEndpointArray": { + "description": "Array of ServerEndpoint", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of ServerEndpoint.", + "items": { + "$ref": "#/definitions/ServerEndpoint" + } + } + } + }, + "RegisteredServerArray": { + "description": "Array of RegisteredServer", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of Registered Server.", + "items": { + "$ref": "#/definitions/RegisteredServer" + } + } + } + }, + "WorkflowArray": { + "description": "Array of Workflow", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of workflow items.", + "items": { + "$ref": "#/definitions/Workflow" + } + } + } + }, + "SubscriptionStateProperties": { + "type": "object", + "description": "Subscription State properties." + }, + "PostBackupResponseProperties": { + "type": "object", + "description": "Post Backup Response Properties object.", + "properties": { + "cloudEndpointName": { + "type": "string", + "description": "cloud endpoint Name.", + "readOnly": true + } + } + }, + "StorageSyncServiceUpdateParameters": { + "properties": { + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "The user-specified tags associated with the storage sync service." + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/StorageSyncServiceUpdateProperties", + "description": "The properties of the storage sync service." + } + }, + "description": "Parameters for updating an Storage sync service." + }, + "StorageSyncServiceUpdateProperties": { + "type": "object", + "description": "Storage Sync Service Update Properties object.", + "properties": {} + }, + "StorageSyncServiceProperties": { + "type": "object", + "description": "Storage Sync Service Properties object.", + "properties": { + "storageSyncServiceStatus": { + "type": "integer", + "description": "Storage Sync service status.", + "readOnly": true + }, + "storageSyncServiceUid": { + "type": "string", + "description": "Storage Sync service Uid", + "readOnly": true + } + } + }, + "WorkflowProperties": { + "type": "object", + "description": "Workflow Properties object.", + "properties": { + "lastStepName": { + "type": "string", + "description": "last step name" + }, + "status": { + "$ref": "#/definitions/WorkflowStatus", + "description": "workflow status." + }, + "operation": { + "$ref": "#/definitions/OperationDirection", + "description": "operation direction." + }, + "steps": { + "type": "string", + "description": "workflow steps" + }, + "lastOperationId": { + "type": "string", + "description": "workflow last operation identifier." + } + } + }, + "SyncGroupProperties": { + "type": "object", + "description": "SyncGroup Properties object.", + "properties": { + "uniqueId": { + "type": "string", + "description": "Unique Id" + }, + "syncGroupStatus": { + "type": "string", + "description": "Sync group status", + "readOnly": true + } + } + }, + "RegisteredServerProperties": { + "type": "object", + "description": "RegisteredServer Properties object.", + "properties": { + "serverCertificate": { + "type": "string", + "description": "Registered Server Certificate" + }, + "agentVersion": { + "type": "string", + "description": "Registered Server Agent Version" + }, + "serverOSVersion": { + "type": "string", + "description": "Registered Server OS Version" + }, + "serverManagementtErrorCode": { + "type": "integer", + "description": "Registered Server Management Error Code" + }, + "lastHeartBeat": { + "type": "string", + "description": "Registered Server last heart beat" + }, + "provisioningState": { + "type": "string", + "description": "Registered Server Provisioning State" + }, + "serverRole": { + "type": "string", + "description": "Registered Server serverRole" + }, + "clusterId": { + "type": "string", + "description": "Registered Server clusterId" + }, + "clusterName": { + "type": "string", + "description": "Registered Server clusterName" + }, + "serverId": { + "type": "string", + "description": "Registered Server serverId" + }, + "storageSyncServiceUid": { + "type": "string", + "description": "Registered Server storageSyncServiceUid" + }, + "lastWorkflowId": { + "type": "string", + "description": "Registered Server lastWorkflowId" + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name" + }, + "discoveryEndpointUri": { + "type": "string", + "description": "Resource discoveryEndpointUri" + }, + "resourceLocation": { + "type": "string", + "description": "Resource Location" + }, + "serviceLocation": { + "type": "string", + "description": "Service Location" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "managementEndpointUri": { + "type": "string", + "description": "Management Endpoint Uri" + }, + "monitoringConfiguration": { + "type": "string", + "description": "Monitoring Configuration" + } + } + }, + "CloudEndpointProperties": { + "type": "object", + "description": "CloudEndpoint Properties object.", + "properties": { + "storageAccountResourceId": { + "type": "string", + "description": "Storage Account Resource Id" + }, + "storageAccountShareName": { + "type": "string", + "description": "Storage Account Share name" + }, + "storageAccountTenantId": { + "type": "string", + "description": "Storage Account Tenant Id" + }, + "partnershipId": { + "type": "string", + "description": "Partnership Id" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "backupEnabled": { + "type": "boolean", + "description": "Backup Enabled", + "readOnly": true + }, + "provisioningState": { + "type": "string", + "description": "CloudEndpoint Provisioning State" + }, + "lastWorkflowId": { + "type": "string", + "description": "CloudEndpoint lastWorkflowId" + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name" + } + } + }, + "ServerEndpointUpdateProperties": { + "type": "object", + "description": "ServerEndpoint Update Properties object.", + "properties": { + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + } + } + }, + "ServerEndpointProperties": { + "type": "object", + "description": "ServerEndpoint Properties object.", + "properties": { + "serverLocalPath": { + "$ref": "#/definitions/PhysicalPath", + "description": "Server Local path." + }, + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "serverResourceId": { + "$ref": "#/definitions/ResourceId", + "description": "Server Resource Id." + }, + "provisioningState": { + "type": "string", + "description": "ServerEndpoint Provisioning State" + }, + "lastWorkflowId": { + "type": "string", + "description": "ServerEndpoint lastWorkflowId" + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name" + }, + "syncStatus": { + "type": "object", + "description": "Sync Health Status" + } + } + }, + "PhysicalPath": { + "type": "string", + "description": "Server folder used for data synchronization" + }, + "ResourceId": { + "type": "string", + "description": "Arm resource identifier." + }, + "TagsObject": { + "type": "object", + "description": "Tags object." + }, + "FeatureStatus": { + "type": "string", + "description": "Type of the Feature Status", + "enum": [ + "on", + "off" + ] + }, + "WorkflowStatus": { + "type": "string", + "description": "Type of the Workflow Status", + "enum": [ + "active", + "expired", + "succeeded", + "aborted", + "failed" + ] + }, + "OperationDirection": { + "type": "string", + "description": "Type of the Operation Direction", + "enum": [ + "do", + "undo", + "cancel" + ] + }, + "ProgressType": { + "type": "string", + "description": "Type of the ProgressType", + "enum": [ + "none", + "initialize", + "download", + "upload", + "recall" + ] + } + }, + "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" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Create.json index ee40a99d1ced..cd58d3ea2262 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Create.json @@ -1,52 +1,52 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-10-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-10-01", - "parameters": { - "properties": { - "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", - "storageAccountShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", - "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", - "friendlyName": "ankushbsubscriptionmgmtmab" - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "backupEnabled" : "false", - "provisioningState": "Succeeded", - "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", - "storageAccountShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", - "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", - "friendlyName": "ankushbsubscriptionmgmtmab", - "lastWorkflowId": "storageSyncServices/GATest/workflows/24ba0c4a-348e-419b-8f7a-091d0d9f07a4", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } + "properties": { + "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", + "storageAccountShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", + "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", + "friendlyName": "ankushbsubscriptionmgmtmab" + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "backupEnabled": "false", + "provisioningState": "Succeeded", + "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", + "storageAccountShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", + "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", + "friendlyName": "ankushbsubscriptionmgmtmab", + "lastWorkflowId": "storageSyncServices/GATest/workflows/24ba0c4a-348e-419b-8f7a-091d0d9f07a4", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC", + "lastOperationName": "ICreateCloudEndpointWorkflow" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-10-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-10-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-10-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2018-10-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Delete.json index d8108a1e2628..70b5496af6f3 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Delete.json @@ -1,30 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-10-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-10-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-10-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-10-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2018-10-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Get.json index e9c6a0210475..66b25efbdb43 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_Get.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "", - "storageAccountShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "", + "storageAccountShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", + "lastOperationName": "ICreateCloudEndpointWorkflow" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_ListBySyncGroup.json index 97e59243a4a3..be99dd1118d8 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_ListBySyncGroup.json @@ -1,34 +1,36 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "CEP_Restore_08-08_Test112", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "", + "storageAccountShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", + "lastOperationName": "ICreateCloudEndpointWorkflow" }, - "body": { - "value": [{ - "name": "CEP_Restore_08-08_Test112", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "", - "storageAccountShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PostBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PostBackup.json index f426b8a091eb..d168699bd921 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PostBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PostBackup.json @@ -1,34 +1,34 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" - }, - "api-version": "2018-10-01" + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "backupMetadata": { - "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" - } - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2018-10-01&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "backupMetadata": { + "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" } + } + }, + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2018-10-01&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PostRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PostRestore.json index 301f8b4c4626..c7e21dd7a377 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PostRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PostRestore.json @@ -1,48 +1,49 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "status": "Succeeded", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "status": "Succeeded", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false }, - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir", + "isdir": true + }, + { + "path": "MyDir/SubDir", + "isdir": false }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-10-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + }, + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-10-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PreBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PreBackup.json index 91c96e444650..335a18d93d6e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PreBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PreBackup.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "api-version": "2018-10-01", - "parameters" : { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" + "parameters": { + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-10-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-10-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PreRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PreRestore.json index c9e86428f4db..d450193c3b47 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PreRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_PreRestore.json @@ -1,46 +1,47 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-10-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-10-01", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] - } - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false + }, + { + "path": "MyDir", + "isdir": true }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-10-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir", + "isdir": false + }, + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2018-10-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_RestoreHeatbeat.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_RestoreHeatbeat.json index ed0fa8ad8438..449ec1d3cf59 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_RestoreHeatbeat.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/CloudEndpoints_RestoreHeatbeat.json @@ -1,19 +1,19 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": "" - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Operations_List.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Operations_List.json index 1cd542994397..3a3f072b5685 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Operations_List.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Operations_List.json @@ -1,193 +1,214 @@ { - "parameters": { - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "body": { - "value": [{ - "name": "Microsoft.StorageSync/storageSyncServices/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Read Storage Sync Services", - "description": "Read any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Create or Update Storage Sync Services", - "description": "Create or Update any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Delete Storage Sync Services", - "description": "Delete any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Read Sync Groups", - "description": "Read any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Create or Update Sync Groups", - "description": "Create or Update any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Delete Sync Groups", - "description": "Delete any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Read Cloud Endpoints", - "description": "Read any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Create or Update Cloud Endpoints", - "description": "Create or Update any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Delete Cloud Endpoints", - "description": "Delete any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prebackup", - "description": "Call this action before backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postbackup", - "description": "Call this action after backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prerestore", - "description": "Call this action before restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postrestore", - "description": "Call this action after restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Read Server Endpoints", - "description": "Read any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Create or Update Server Endpoints", - "description": "Create or Update any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Delete Server Endpoints", - "description": "Delete any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "recallAction", - "description": "Call this action to recall files to a server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Read Registered Server", - "description": "Read any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Create or Update Registered Server", - "description": "Create or Update any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Delete Registered Server", - "description": "Delete any Registered Server" - }, - "origin": "User" - }], - "nextLink": "" - } - } + "parameters": { + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.StorageSync/storageSyncServices/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Read Storage Sync Services", + "description": "Read any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Create or Update Storage Sync Services", + "description": "Create or Update any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Delete Storage Sync Services", + "description": "Delete any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Read Sync Groups", + "description": "Read any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Create or Update Sync Groups", + "description": "Create or Update any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Delete Sync Groups", + "description": "Delete any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Read Cloud Endpoints", + "description": "Read any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Create or Update Cloud Endpoints", + "description": "Create or Update any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Delete Cloud Endpoints", + "description": "Delete any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prebackup", + "description": "Call this action before backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postbackup", + "description": "Call this action after backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prerestore", + "description": "Call this action before restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postrestore", + "description": "Call this action after restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Read Server Endpoints", + "description": "Read any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Create or Update Server Endpoints", + "description": "Create or Update any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Delete Server Endpoints", + "description": "Delete any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "recallAction", + "description": "Call this action to recall files to a server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Read Registered Server", + "description": "Read any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Create or Update Registered Server", + "description": "Create or Update any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Delete Registered Server", + "description": "Delete any Registered Server" + }, + "origin": "User" + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Create.json index 2f6dd2b5a4d5..edcf982b449f 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Create.json @@ -1,62 +1,62 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", - "parameters": { - "name": "SampleServer-prod3.redmond.corp.microsoft.com", - "properties": { - "serverRole": "Standalone", - "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", - "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", - "serverManagementErrorCode": 0, - "serverOSVersion": "10.0.14393.0", - "agentVersion": "1.0.277.0" - }, - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }, - "api-version": "2018-10-01" + "name": "SampleServer-prod3.redmond.corp.microsoft.com", + "properties": { + "serverRole": "Standalone", + "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", + "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", + "serverManagementErrorCode": 0, + "serverOSVersion": "10.0.14393.0", + "agentVersion": "1.0.277.0" + }, + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers", - "name": "ankushb-prod3.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - } - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-10-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-10-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers", + "name": "ankushb-prod3.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" } + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-10-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2018-10-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Delete.json index 2aa6677150ca..a601f447a606 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Delete.json @@ -1,28 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", - "api-version": "2018-10-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-10-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-10-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-10-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2018-10-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Get.json index c10b6ac63643..a06934122f74 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_Get.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_ListByStorageSyncService.json index 4513ae03609d..091aced1639e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_ListByStorageSyncService.json @@ -1,42 +1,44 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" }, - "body": { - "value": [{ - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_TriggerRollover.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_TriggerRollover.json index 741873ba1a59..a569e2737176 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_TriggerRollover.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/RegisteredServers_TriggerRollover.json @@ -1,29 +1,29 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "d166ca76-dad2-49df-b409-12345642d730", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "d166ca76-dad2-49df-b409-12345642d730", - "parameters": { - "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"" - }, - "api-version": "2018-10-01" + "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47222", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d222" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47222", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d222" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Create.json index 3c873c5a91e1..77f73d17f004 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Create.json @@ -1,60 +1,60 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters": { - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "tierFilesOlderThanDays": 0, - "offlineDataTransfer": "on", - "offlineDataTransferShareName": "myfileshare" - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, - "api-version": "2018-10-01" + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "tierFilesOlderThanDays": 0, + "offlineDataTransfer": "on", + "offlineDataTransferShareName": "myfileshare" + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": null, - "offlineDataTransfer": "on", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": null, + "offlineDataTransfer": "on", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Delete.json index e98d72d2f7f4..4b5f7a2b5280 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Delete.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2018-10-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-10-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-10-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-10-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2018-10-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Get.json index 1f4d3fcd3c08..b2df94b7449a 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Get.json @@ -1,58 +1,58 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null, - "offlineDataTransferStatus": "NotRunning" - }, - "offlineDataTransfer": "on", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } - } + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null, + "offlineDataTransferStatus": "NotRunning" + }, + "offlineDataTransfer": "on", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" + }, + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_ListBySyncGroup.json index 82ead36534fb..a014adb21b1d 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_ListBySyncGroup.json @@ -1,95 +1,98 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null, + "offlineDataTransferStatus": "NotRunning" + }, + "offlineDataTransfer": "on", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" }, - "body": { - "value": [{ - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null, - "offlineDataTransferStatus": "NotRunning" - }, - "offlineDataTransfer": "on", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, { - "name": "SampleServerEndpoint_2", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_2", - "cloudTiering": "on", - "volumeFreeSpacePercent": 80, - "friendlyName": "somemachine2.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/40b1dc00-d7d9-4721-a1e9-ab60139b830a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 5, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Healthy", - "combinedHealth": "Healthy", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null, - "offlineDataTransferStatus": "NotRunning" - }, - "offlineDataTransfer": "off" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_2", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }] - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + }, + { + "name": "SampleServerEndpoint_2", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_2", + "cloudTiering": "on", + "volumeFreeSpacePercent": 80, + "friendlyName": "somemachine2.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/40b1dc00-d7d9-4721-a1e9-ab60139b830a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 5, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Healthy", + "combinedHealth": "Healthy", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 + }, + "currentProgress": null, + "offlineDataTransferStatus": "NotRunning" + }, + "offlineDataTransfer": "off" + }, + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_2", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Recall.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Recall.json index 822648c210e1..25dc953d12a0 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Recall.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Recall.json @@ -1,31 +1,31 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2018-10-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2018-10-01", - "parameters": { - "pattern": "", - "recallPath": "" - } + "pattern": "", + "recallPath": "" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2018-10-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Update.json index 191dc27c285e..99b9a73eb539 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/ServerEndpoints_Update.json @@ -1,76 +1,76 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters" : { - "properties": { - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "tierFilesOlderThanDays" : 0, - "offlineDataTransfer": "off" - } - }, - "api-version": "2018-10-01" + "properties": { + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "tierFilesOlderThanDays": 0, + "offlineDataTransfer": "off" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota2", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "tierFilesOlderThanDays": 0, + "friendlyName": "somemachine2.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 69 + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0 }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota2", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "tierFilesOlderThanDays": 0, - "friendlyName": "somemachine2.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 69 - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0 - }, - "currentProgress": null, - "offlineDataTransferStatus": "NotRunning" - }, - "offlineDataTransfer": "off", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } + "currentProgress": null, + "offlineDataTransferStatus": "NotRunning" + }, + "offlineDataTransfer": "off", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-10-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-10-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-10-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2018-10-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json index 4a6791d4eb02..f0788db8f892 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json @@ -1,20 +1,20 @@ { + "parameters": { + "api-version": "2018-10-01", + "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", + "locationName": "westus", "parameters": { - "api-version": "2018-10-01", - "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", - "locationName": "westus", - "parameters": { - "name": "newstoragesyncservicename", - "type": "Microsoft.StorageSync/storageSyncServices" - } - }, - "responses": { - "200": { - "body": { - "nameAvailable": false, - "reason": "AlreadyExists", - "message": "An account named 'newstoragesyncservicename' is already in use." - } - } + "name": "newstoragesyncservicename", + "type": "Microsoft.StorageSync/storageSyncServices" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": false, + "reason": "AlreadyExists", + "message": "An account named 'newstoragesyncservicename' is already in use." + } + } + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServiceCheckNameAvailability_Available.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServiceCheckNameAvailability_Available.json index ebbb297ec612..be52b6cd7a73 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServiceCheckNameAvailability_Available.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServiceCheckNameAvailability_Available.json @@ -1,18 +1,18 @@ { + "parameters": { + "api-version": "2018-10-01", + "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", + "locationName": "westus", "parameters": { - "api-version": "2018-10-01", - "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", - "locationName": "westus", - "parameters": { - "name": "newstoragesyncservicename", - "type": "Microsoft.StorageSync/storageSyncServices" - } - }, - "responses": { - "200": { - "body": { - "nameAvailable": true - } - } + "name": "newstoragesyncservicename", + "type": "Microsoft.StorageSync/storageSyncServices" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": true + } + } + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Create.json index 7e1a3d40a951..2bdb1af39749 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Create.json @@ -1,25 +1,25 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "parameters": { - "location": "WestUS", - "tags": {}, - "properties": {} - }, - "api-version": "2018-10-01" + "location": "WestUS", + "tags": {}, + "properties": {} }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Delete.json index 842ca3022ae4..2c75c0ec1597 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Delete.json @@ -1,14 +1,12 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - }, - "204": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Get.json index ec7ad30699f4..b61c162863a0 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Get.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_ListByResourceGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_ListByResourceGroup.json index c8a4eed062ac..4b94adf9d5f8 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_ListByResourceGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_ListByResourceGroup.json @@ -1,48 +1,52 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_ListBySubscription.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_ListBySubscription.json index 90a7c1889ad4..2994f67fc506 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_ListBySubscription.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_ListBySubscription.json @@ -1,47 +1,51 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Update.json index c87a5bdb26b3..9592bc2e1440 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/StorageSyncServices_Update.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-10-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-10-01", - "parameters": { - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {} - } - }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {} } + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Create.json index 6ed4695412b1..69e6f6b935de 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Create.json @@ -1,25 +1,25 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-10-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-10-01", - "parameters": { - "properties": {}, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - }, - "responses": { - "200": { - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "properties": {}, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" } + }, + "responses": { + "200": { + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Delete.json index e38d69d301dd..32e0b2767a22 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Delete.json @@ -1,19 +1,18 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-10-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - } - } -} \ No newline at end of file + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Get.json index 88e3f9357511..6223843c2706 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_Get.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_ListByStorageSyncService.json index d16112052d9c..85b2b278ee48 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/SyncGroups_ListByStorageSyncService.json @@ -1,27 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" }, - "body": { - "value": [{ - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_Abort.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_Abort.json index 2325f07cd2cf..57e3d7fcba72 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_Abort.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_Abort.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_Get.json index d58e5a85339d..6bdb4bc88634 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_Get.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "properties": { - "status": "succeeded", - "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", - "operation": "do", - "lastStepName": "runServerJob", - "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "type": "Microsoft.StorageSync/storageSyncServices/workflows" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "properties": { + "status": "succeeded", + "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", + "operation": "do", + "lastStepName": "runServerJob", + "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "type": "Microsoft.StorageSync/storageSyncServices/workflows" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_ListByStorageSyncService.json index e31db2d79c0d..d5997551cc37 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/examples/Workflows_ListByStorageSyncService.json @@ -1,30 +1,32 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2018-10-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2018-10-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "properties": { + "status": "succeeded", + "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", + "operation": "do", + "lastStepName": "runServerJob", + "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" }, - "body": { - "value": [{ - "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "properties": { - "status": "succeeded", - "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", - "operation": "do", - "lastStepName": "runServerJob", - "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "type": "Microsoft.StorageSync/storageSyncServices/workflows" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "type": "Microsoft.StorageSync/storageSyncServices/workflows" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/storagesync.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/storagesync.json index 24d14b9204f9..114a64c8a422 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/storagesync.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/storagesync.json @@ -1,3583 +1,3826 @@ { - "swagger": "2.0", - "info": { - "title": "Microsoft Storage Sync", - "description": "Microsoft Storage Sync Service API", - "version": "2018-10-01", - "x-ms-code-generation-settings": { - "name": "StorageSyncManagementClient" - } - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/providers/Microsoft.StorageSync/operations": { - "get": { - "tags": [ - "ResourceProvider", - "Operations" - ], - "operationId": "Operations_List", - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "description": "Lists all of the available Storage Sync Rest API operations.", - "x-ms-examples": { - "Operations_List": { - "$ref": "./examples/Operations_List.json" - } - }, - "responses": { - "200": { - "description": "Array of operations resources in the Resource Provider", - "schema": { - "$ref": "#/definitions/OperationEntityListResult" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "deprecated": false, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/locations/{locationName}/checkNameAvailability": { - "post": { - "tags": [ - "StorageSyncService" - ], - "operationId": "StorageSyncServices_CheckNameAvailability", - "x-ms-examples": { - "StorageSyncServiceCheckNameAvailability_Available": { - "$ref": "./examples/StorageSyncServiceCheckNameAvailability_Available.json" - }, - "StorageSyncServiceCheckNameAvailability_AlreadyExists": { - "$ref": "./examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json" - } - }, - "description": "Check the give namespace name availability.", - "parameters": [{ - "name": "locationName", - "in": "path", - "required": true, - "type": "string", - "description": "The desired region for the name check." - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityParameters" - }, - "description": "Parameters to check availability of the given namespace name" - }], - "responses": { - "200": { - "description": "check availability returned successfully.", - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityResult" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Storage Sync Service resource name.", - "required": true, - "schema": { - "$ref": "#/definitions/StorageSyncServiceCreateParameters" - } - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Create", - "description": "Create a new StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Create": { - "$ref": "./examples/StorageSyncServices_Create.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object created/updated", - "schema": { - "$ref": "#/definitions/StorageSyncService" - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "swagger": "2.0", + "info": { + "title": "Microsoft Storage Sync", + "description": "Microsoft Storage Sync Service API", + "version": "2018-10-01", + "x-ms-code-generation-settings": { + "name": "StorageSyncManagementClient" + } + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/providers/Microsoft.StorageSync/operations": { + "get": { + "tags": [ + "ResourceProvider", + "Operations" + ], + "operationId": "Operations_List", + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "description": "Lists all of the available Storage Sync Rest API operations.", + "x-ms-examples": { + "Operations_List": { + "$ref": "./examples/Operations_List.json" + } + }, + "responses": { + "200": { + "description": "Array of operations resources in the Resource Provider", + "schema": { + "$ref": "#/definitions/OperationEntityListResult" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Get", - "description": "Get a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Get": { - "$ref": "./examples/StorageSyncServices_Get.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object", - "schema": { - "$ref": "#/definitions/StorageSyncService" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "deprecated": false, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/locations/{locationName}/checkNameAvailability": { + "post": { + "tags": [ + "StorageSyncService" + ], + "operationId": "StorageSyncServices_CheckNameAvailability", + "x-ms-examples": { + "StorageSyncServiceCheckNameAvailability_Available": { + "$ref": "./examples/StorageSyncServiceCheckNameAvailability_Available.json" + }, + "StorageSyncServiceCheckNameAvailability_AlreadyExists": { + "$ref": "./examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json" + } + }, + "description": "Check the give namespace name availability.", + "parameters": [ + { + "name": "locationName", + "in": "path", + "required": true, + "type": "string", + "description": "The desired region for the name check." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityParameters" }, - "patch": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Storage Sync Service resource.", - "schema": { - "$ref": "#/definitions/StorageSyncServiceUpdateParameters" - } - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Update", - "description": "Patch a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Update": { - "$ref": "./examples/StorageSyncServices_Update.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object created/updated", - "schema": { - "$ref": "#/definitions/StorageSyncService" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "description": "Parameters to check availability of the given namespace name" + } + ], + "responses": { + "200": { + "description": "check availability returned successfully.", + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityResult" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Storage Sync Service resource name.", + "required": true, + "schema": { + "$ref": "#/definitions/StorageSyncServiceCreateParameters" + } + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Create", + "description": "Create a new StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Create": { + "$ref": "./examples/StorageSyncServices_Create.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object created/updated", + "schema": { + "$ref": "#/definitions/StorageSyncService" + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Get", + "description": "Get a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Get": { + "$ref": "./examples/StorageSyncServices_Get.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object", + "schema": { + "$ref": "#/definitions/StorageSyncService" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Delete", - "description": "Delete a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Delete": { - "$ref": "./examples/StorageSyncServices_Delete.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object was deleted.", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "204": { - "description": "Storage Sync Service Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_ListByResourceGroup", - "description": "Get a StorageSyncService list by Resource group name.", - "x-ms-examples": { - "StorageSyncServices_ListByResourceGroup": { - "$ref": "./examples/StorageSyncServices_ListByResourceGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of registered Storage Sync Service resources in the Resource Group", - "schema": { - "$ref": "#/definitions/StorageSyncServiceArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/storageSyncServices": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_ListBySubscription", - "description": "Get a StorageSyncService list by subscription.", - "x-ms-examples": { - "StorageSyncServices_ListBySubscription": { - "$ref": "./examples/StorageSyncServices_ListBySubscription.json" - } - }, - "responses": { - "200": { - "description": "Array of registered Storage Sync Service resources in the subscription.", - "schema": { - "$ref": "#/definitions/StorageSyncServiceArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_ListByStorageSyncService", - "description": "Get a SyncGroup List.", - "x-ms-examples": { - "SyncGroups_ListByStorageSyncService": { - "$ref": "./examples/SyncGroups_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Sync Group resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/SyncGroupArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Sync Group Body", - "required": true, - "schema": { - "$ref": "#/definitions/SyncGroupCreateParameters" - } - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Create", - "description": "Create a new SyncGroup.", - "x-ms-examples": { - "SyncGroups_Create": { - "$ref": "./examples/SyncGroups_Create.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object", - "schema": { - "$ref": "#/definitions/SyncGroup" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "patch": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Storage Sync Service resource.", + "schema": { + "$ref": "#/definitions/StorageSyncServiceUpdateParameters" + } + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Update", + "description": "Patch a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Update": { + "$ref": "./examples/StorageSyncServices_Update.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object created/updated", + "schema": { + "$ref": "#/definitions/StorageSyncService" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Get", - "description": "Get a given SyncGroup.", - "x-ms-examples": { - "SyncGroups_Get": { - "$ref": "./examples/SyncGroups_Get.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object", - "schema": { - "$ref": "#/definitions/SyncGroup" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Delete", + "description": "Delete a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Delete": { + "$ref": "./examples/StorageSyncServices_Delete.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object was deleted.", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "204": { + "description": "Storage Sync Service Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_ListByResourceGroup", + "description": "Get a StorageSyncService list by Resource group name.", + "x-ms-examples": { + "StorageSyncServices_ListByResourceGroup": { + "$ref": "./examples/StorageSyncServices_ListByResourceGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of registered Storage Sync Service resources in the Resource Group", + "schema": { + "$ref": "#/definitions/StorageSyncServiceArray" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Delete", - "description": "Delete a given SyncGroup.", - "x-ms-examples": { - "SyncGroups_Delete": { - "$ref": "./examples/SyncGroups_Delete.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object was deleted", - "headers": { - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint resource.", - "required": true, - "schema": { - "$ref": "#/definitions/CloudEndpointCreateParameters" - } - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Create", - "description": "Create a new CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Create": { - "$ref": "./examples/CloudEndpoints_Create.json" - } - }, - "responses": { - "200": { - "description": "Cloud Endpoint object", - "schema": { - "$ref": "#/definitions/CloudEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Retry-After": { - "description": "Retry After", - "type": "string" - }, - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/storageSyncServices": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_ListBySubscription", + "description": "Get a StorageSyncService list by subscription.", + "x-ms-examples": { + "StorageSyncServices_ListBySubscription": { + "$ref": "./examples/StorageSyncServices_ListBySubscription.json" + } + }, + "responses": { + "200": { + "description": "Array of registered Storage Sync Service resources in the subscription.", + "schema": { + "$ref": "#/definitions/StorageSyncServiceArray" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Get", - "description": "Get a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Get": { - "$ref": "./examples/CloudEndpoints_Get.json" - } - }, - "responses": { - "200": { - "description": "Cloud Endpoint object", - "schema": { - "$ref": "#/definitions/CloudEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_ListByStorageSyncService", + "description": "Get a SyncGroup List.", + "x-ms-examples": { + "SyncGroups_ListByStorageSyncService": { + "$ref": "./examples/SyncGroups_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Sync Group resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/SyncGroupArray" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Delete", - "description": "Delete a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Delete": { - "$ref": "./examples/CloudEndpoints_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Retry-After": { - "description": "Retry After", - "type": "string" - }, - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_ListBySyncGroup", - "description": "Get a CloudEndpoint List.", - "x-ms-examples": { - "CloudEndpoints_ListBySyncGroup": { - "$ref": "./examples/CloudEndpoints_ListBySyncGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of Cloud Endpoint resources in Sync Group", - "schema": { - "$ref": "#/definitions/CloudEndpointArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prebackup": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Backup request.", - "required": true, - "schema": { - "$ref": "#/definitions/BackupRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PreBackup", - "description": "Pre Backup a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PreBackup": { - "$ref": "./examples/CloudEndpoints_PreBackup.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postbackup": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Backup request.", - "required": true, - "schema": { - "$ref": "#/definitions/BackupRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PostBackup", - "description": "Post Backup a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PostBackup": { - "$ref": "./examples/CloudEndpoints_PostBackup.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "schema": { - "$ref": "#/definitions/PostBackupResponse" - }, - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prerestore": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/PreRestoreRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PreRestore", - "description": "Pre Restore a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PreRestore": { - "$ref": "./examples/CloudEndpoints_PreRestore.json" - } - }, - "responses": { - "200": { - "description": "Ok" - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/restoreheartbeat": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_restoreheartbeat", - "description": "Restore Heartbeat a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_restoreheartbeat": { - "$ref": "./examples/CloudEndpoints_RestoreHeatbeat.json" - } - }, - "responses": { - "200": { - "description": "Restore Heartbeat Operation has ran successfully.", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postrestore": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/PostRestoreRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PostRestore", - "description": "Post Restore a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PostRestore": { - "$ref": "./examples/CloudEndpoints_PostRestore.json" - } - }, - "responses": { - "200": { - "description": "Ok" - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Server Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/ServerEndpointCreateParameters" - } - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Create", - "description": "Create a new ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Create": { - "$ref": "./examples/ServerEndpoints_Create.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Sync Group Body", + "required": true, + "schema": { + "$ref": "#/definitions/SyncGroupCreateParameters" + } + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Create", + "description": "Create a new SyncGroup.", + "x-ms-examples": { + "SyncGroups_Create": { + "$ref": "./examples/SyncGroups_Create.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object", + "schema": { + "$ref": "#/definitions/SyncGroup" }, - "patch": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Any of the properties applicable in PUT request.", - "schema": { - "$ref": "#/definitions/ServerEndpointUpdateParameters" - } - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Update", - "description": "Patch a given ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Update": { - "$ref": "./examples/ServerEndpoints_Update.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Get", + "description": "Get a given SyncGroup.", + "x-ms-examples": { + "SyncGroups_Get": { + "$ref": "./examples/SyncGroups_Get.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object", + "schema": { + "$ref": "#/definitions/SyncGroup" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Get", - "description": "Get a ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Get": { - "$ref": "./examples/ServerEndpoints_Get.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Delete", + "description": "Delete a given SyncGroup.", + "x-ms-examples": { + "SyncGroups_Delete": { + "$ref": "./examples/SyncGroups_Delete.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object was deleted", + "headers": { + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint resource.", + "required": true, + "schema": { + "$ref": "#/definitions/CloudEndpointCreateParameters" + } + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Create", + "description": "Create a new CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Create": { + "$ref": "./examples/CloudEndpoints_Create.json" + } + }, + "responses": { + "200": { + "description": "Cloud Endpoint object", + "schema": { + "$ref": "#/definitions/CloudEndpoint" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Delete", - "description": "Delete a given ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Delete": { - "$ref": "./examples/ServerEndpoints_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_ListBySyncGroup", - "description": "Get a ServerEndpoint list.", - "x-ms-examples": { - "ServerEndpoints_ListBySyncGroup": { - "$ref": "./examples/ServerEndpoints_ListBySyncGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of Server Endpoint resources in Sync Group", - "schema": { - "$ref": "#/definitions/ServerEndpointArray" - }, - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}/recallAction": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Recall Action object.", - "required": true, - "schema": { - "$ref": "#/definitions/RecallActionParameters" - } - }], - "tags": [ - "ServerEndpoint Resource", - "Actions" - ], - "operationId": "ServerEndpoints_recallAction", - "description": "Recall a server endpoint.", - "x-ms-examples": { - "ServerEndpoints_recallAction": { - "$ref": "./examples/ServerEndpoints_Recall.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_ListByStorageSyncService", - "description": "Get a given registered server list.", - "x-ms-examples": { - "RegisteredServers_ListByStorageSyncService": { - "$ref": "./examples/RegisteredServers_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Registered Server resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/RegisteredServerArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Get", - "description": "Get a given registered server.", - "x-ms-examples": { - "RegisteredServers_Get": { - "$ref": "./examples/RegisteredServers_Get.json" - } - }, - "responses": { - "200": { - "description": "Registered Server resources in Sync Group", - "schema": { - "$ref": "#/definitions/RegisteredServer" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Retry-After": { + "description": "Retry After", + "type": "string" + }, + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Get", + "description": "Get a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Get": { + "$ref": "./examples/CloudEndpoints_Get.json" + } + }, + "responses": { + "200": { + "description": "Cloud Endpoint object", + "schema": { + "$ref": "#/definitions/CloudEndpoint" }, - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Registered Server object.", - "required": true, - "schema": { - "$ref": "#/definitions/RegisteredServerCreateParameters" - } - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Create", - "description": "Add a new registered server.", - "x-ms-examples": { - "RegisteredServers_Create": { - "$ref": "./examples/RegisteredServers_Create.json" - } - }, - "responses": { - "200": { - "description": "Registered Server resources in Sync Group", - "schema": { - "$ref": "#/definitions/RegisteredServer" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Delete", + "description": "Delete a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Delete": { + "$ref": "./examples/CloudEndpoints_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Retry-After": { + "description": "Retry After", + "type": "string" + }, + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_ListBySyncGroup", + "description": "Get a CloudEndpoint List.", + "x-ms-examples": { + "CloudEndpoints_ListBySyncGroup": { + "$ref": "./examples/CloudEndpoints_ListBySyncGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of Cloud Endpoint resources in Sync Group", + "schema": { + "$ref": "#/definitions/CloudEndpointArray" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Delete", - "description": "Delete the given registered server.", - "x-ms-examples": { - "RegisteredServers_Delete": { - "$ref": "./examples/RegisteredServers_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}/triggerRollover": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "Server Id", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Trigger Rollover request.", - "required": true, - "schema": { - "$ref": "#/definitions/TriggerRolloverRequest" - } - }], - "tags": [ - "RegisteredServer Resource", - "Actions" - ], - "operationId": "RegisteredServers_triggerRollover", - "description": "Triggers Server certificate rollover.", - "x-ms-examples": { - "RegisteredServers_triggerRollover": { - "$ref": "./examples/RegisteredServers_TriggerRollover.json" - } - }, - "responses": { - "200": { - "description": "Trigger Rollover success status", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource" - ], - "operationId": "Workflows_ListByStorageSyncService", - "description": "Get a Workflow List", - "x-ms-examples": { - "Workflows_ListByStorageSyncService": { - "$ref": "./examples/Workflows_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Workflow resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/WorkflowArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "workflowId", - "in": "path", - "description": "workflow Id", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource" - ], - "operationId": "Workflows_Get", - "description": "Get Workflows resource", - "x-ms-examples": { - "Workflows_Get": { - "$ref": "./examples/Workflows_Get.json" - } - }, - "responses": { - "200": { - "description": "Workflow object", - "schema": { - "$ref": "#/definitions/Workflow" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}/abort": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "workflowId", - "in": "path", - "description": "workflow Id", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource", - "Actions" - ], - "operationId": "Workflows_Abort", - "description": "Abort the given workflow.", - "x-ms-examples": { - "Workflows_Abort": { - "$ref": "./examples/Workflows_Abort.json" - } - }, - "responses": { - "200": { - "description": "success", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - } - }, - "definitions": { - "StorageSyncError": { - "type": "object", - "description": "Error type", - "properties": { - "error": { - "$ref": "#/definitions/StorageSyncApiError", - "description": "Error details of the given entry." - }, - "innererror": { - "$ref": "#/definitions/StorageSyncApiError", - "description": "Error details of the given entry." - } - } - }, - "StorageSyncApiError": { - "type": "object", - "description": "Error type", - "properties": { - "code": { - "type": "string", - "description": "Error code of the given entry." - }, - "message": { - "type": "string", - "description": "Error message of the given entry." - }, - "target": { - "type": "string", - "description": "Target of the given error entry." - }, - "details": { - "$ref": "#/definitions/StorageSyncErrorDetails", - "description": "Error details of the given entry." - } - } - }, - "StorageSyncErrorDetails": { - "type": "object", - "description": "Error Details object.", - "properties": { - "code": { - "type": "string", - "description": "Error code of the given entry." - }, - "message": { - "type": "string", - "description": "Error message of the given entry." - }, - "target": { - "type": "string", - "description": "Target of the given entry." - } - } - }, - "SubscriptionState": { - "type": "object", - "description": "Subscription State object.", - "properties": { - "state": { - "type": "string", - "description": "State of Azure Subscription", - "enum": [ - "Registered", - "Unregistered", - "Warned", - "Suspended", - "Deleted" - ], - "x-ms-enum": { - "name": "Reason", - "modelAsString": true - } - }, - "istransitioning": { - "type": "boolean", - "description": "Is Transitioning", - "readOnly": true - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SubscriptionStateProperties", - "description": "Subscription state properties." - } - } - }, - "StorageSyncService": { - "type": "object", - "description": "Storage Sync Service object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/StorageSyncServiceProperties", - "description": "Storage Sync Service properties." - } - } - }, - "SyncGroup": { - "type": "object", - "description": "Sync Group object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SyncGroupProperties", - "description": "SyncGroup properties." - } - } - }, - "CloudEndpoint": { - "type": "object", - "description": "Cloud Endpoint object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/CloudEndpointProperties", - "description": "Cloud Endpoint properties." - } - } - }, - "RecallActionParameters": { - "properties": { - "pattern": { - "type": "string", - "description": "Pattern of the files." - }, - "recallPath": { - "type": "string", - "description": "Recall path." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prebackup": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Backup request.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PreBackup", + "description": "Pre Backup a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PreBackup": { + "$ref": "./examples/CloudEndpoints_PreBackup.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postbackup": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Backup request.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PostBackup", + "description": "Post Backup a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PostBackup": { + "$ref": "./examples/CloudEndpoints_PostBackup.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "schema": { + "$ref": "#/definitions/PostBackupResponse" }, - "description": "The parameters used when calling recall action on server endpoint." - }, - "StorageSyncServiceCreateParameters": { - "properties": { - "location": { - "type": "string", - "description": "Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed." - }, - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters." - }, - "properties": {} + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prerestore": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/PreRestoreRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PreRestore", + "description": "Pre Restore a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PreRestore": { + "$ref": "./examples/CloudEndpoints_PreRestore.json" + } + }, + "responses": { + "200": { + "description": "Ok" + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/restoreheartbeat": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_restoreheartbeat", + "description": "Restore Heartbeat a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_restoreheartbeat": { + "$ref": "./examples/CloudEndpoints_RestoreHeatbeat.json" + } + }, + "responses": { + "200": { + "description": "Restore Heartbeat Operation has ran successfully.", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postrestore": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/PostRestoreRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PostRestore", + "description": "Post Restore a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PostRestore": { + "$ref": "./examples/CloudEndpoints_PostRestore.json" + } + }, + "responses": { + "200": { + "description": "Ok" + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Server Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/ServerEndpointCreateParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Create", + "description": "Create a new ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Create": { + "$ref": "./examples/ServerEndpoints_Create.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "required": [ - "location" - ], - "description": "The parameters used when creating a storage sync service." - }, - "SyncGroupCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SyncGroupCreateParametersProperties", - "description": "The parameters used to create the sync group" - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "patch": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Any of the properties applicable in PUT request.", + "schema": { + "$ref": "#/definitions/ServerEndpointUpdateParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Update", + "description": "Patch a given ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Update": { + "$ref": "./examples/ServerEndpoints_Update.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "description": "The parameters used when creating a sync group." - }, - "SyncGroupCreateParametersProperties": { - "type": "object", - "description": "Sync Group Create Properties object.", - "properties": {} - }, - "CloudEndpointCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/CloudEndpointCreateParametersProperties", - "description": "The parameters used to create the cloud endpoint." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Get", + "description": "Get a ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Get": { + "$ref": "./examples/ServerEndpoints_Get.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "description": "The parameters used when creating a cloud endpoint." - }, - "CloudEndpointCreateParametersProperties": { - "description": "CloudEndpoint Properties object.", - "properties": { - "storageAccountResourceId": { - "type": "string", - "description": "Storage Account Resource Id" - }, - "storageAccountShareName": { - "type": "string", - "description": "Storage Account Share name" - }, - "storageAccountTenantId": { - "type": "string", - "description": "Storage Account Tenant Id" - } - } - }, - "ServerEndpointCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointCreateParametersProperties", - "description": "The parameters used to create the server endpoint." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Delete", + "description": "Delete a given ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Delete": { + "$ref": "./examples/ServerEndpoints_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_ListBySyncGroup", + "description": "Get a ServerEndpoint list.", + "x-ms-examples": { + "ServerEndpoints_ListBySyncGroup": { + "$ref": "./examples/ServerEndpoints_ListBySyncGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of Server Endpoint resources in Sync Group", + "schema": { + "$ref": "#/definitions/ServerEndpointArray" }, - "description": "The parameters used when creating a server endpoint." - }, - "ServerEndpointCreateParametersProperties": { - "description": "ServerEndpoint Properties object.", - "properties": { - "serverLocalPath": { - "$ref": "#/definitions/PhysicalPath", - "description": "Server Local path." - }, - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "serverResourceId": { - "$ref": "#/definitions/ResourceId", - "description": "Server Resource Id." - }, - "offlineDataTransfer": { - "$ref": "#/definitions/FeatureStatus", - "description": "Offline data transfer" - }, - "offlineDataTransferShareName": { - "type": "string", - "description": "Offline data transfer share name" - } - } - }, - "TriggerRolloverRequest": { - "type": "object", - "description": "Trigger Rollover Request.", - "properties": { - "serverCertificate": { - "type": "string", - "description": "Certificate Data" - } - } - }, - "RegisteredServerCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegisteredServerCreateParametersProperties", - "description": "The parameters used to create the registered server." - } + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}/recallAction": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Recall Action object.", + "required": true, + "schema": { + "$ref": "#/definitions/RecallActionParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource", + "Actions" + ], + "operationId": "ServerEndpoints_recallAction", + "description": "Recall a server endpoint.", + "x-ms-examples": { + "ServerEndpoints_recallAction": { + "$ref": "./examples/ServerEndpoints_Recall.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_ListByStorageSyncService", + "description": "Get a given registered server list.", + "x-ms-examples": { + "RegisteredServers_ListByStorageSyncService": { + "$ref": "./examples/RegisteredServers_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Registered Server resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/RegisteredServerArray" }, - "description": "The parameters used when creating a registered server." - }, - "RegisteredServerCreateParametersProperties": { - "properties": { - "serverCertificate": { - "type": "string", - "description": "Registered Server Certificate" - }, - "agentVersion": { - "type": "string", - "description": "Registered Server Agent Version" - }, - "serverOSVersion": { - "type": "string", - "description": "Registered Server OS Version" - }, - "lastHeartBeat": { - "type": "string", - "description": "Registered Server last heart beat" - }, - "serverRole": { - "type": "string", - "description": "Registered Server serverRole" - }, - "clusterId": { - "type": "string", - "description": "Registered Server clusterId" - }, - "clusterName": { - "type": "string", - "description": "Registered Server clusterName" - }, - "serverId": { - "type": "string", - "description": "Registered Server serverId" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - } - } - }, - "ServerEndpointUpdateParameters": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointUpdateProperties", - "description": "The properties of the server endpoint." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Get", + "description": "Get a given registered server.", + "x-ms-examples": { + "RegisteredServers_Get": { + "$ref": "./examples/RegisteredServers_Get.json" + } + }, + "responses": { + "200": { + "description": "Registered Server resources in Sync Group", + "schema": { + "$ref": "#/definitions/RegisteredServer" }, - "description": "Parameters for updating an Server Endpoint." - }, - "ServerEndpoint": { - "type": "object", - "description": "Server Endpoint object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointProperties", - "description": "Server Endpoint properties." - } - } - }, - "RegisteredServer": { - "type": "object", - "description": "Registered Server resource.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegisteredServerProperties", - "description": "RegisteredServer properties." - } - } - }, - "ResourcesMoveInfo": { - "type": "object", - "description": "Resource Move Info.", - "properties": { - "targetResourceGroup": { - "type": "string", - "description": "Target resource group." - }, - "resources": { - "type": "array", - "description": "Collection of Resources.", - "items": { - "$ref": "#/definitions/ResourceId" - } - } - } - }, - "Workflow": { - "type": "object", - "description": "Workflow resource.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/WorkflowProperties", - "description": "Workflow properties." - } - } - }, - "OperationEntityListResult": { - "description": "The list of storage sync operations.", - "type": "object", - "properties": { - "nextLink": { - "description": "The link used to get the next page of operations.", - "type": "string" - }, - "value": { - "description": "The list of operations.", - "type": "array", - "items": { - "$ref": "#/definitions/OperationEntity" - } - } - } - }, - "OperationEntity": { - "description": "The operation supported by storage sync.", - "type": "object", - "properties": { - "name": { - "description": "Operation name: {provider}/{resource}/{operation}.", - "type": "string" - }, - "display": { - "$ref": "#/definitions/OperationDisplayInfo", - "description": "The operation supported by storage sync." - }, - "origin": { - "type": "string", - "description": "The origin." - } - } - }, - "OperationDisplayInfo": { - "description": "The operation supported by storage sync.", - "type": "object", - "properties": { - "description": { - "description": "The description of the operation.", - "type": "string" - }, - "operation": { - "description": "The action that users can perform, based on their permission level.", - "type": "string" - }, - "provider": { - "description": "Service provider: Microsoft StorageSync.", - "type": "string" - }, - "resource": { - "description": "Resource on which the operation is performed.", - "type": "string" - } - } - }, - "OperationDisplayResource": { - "type": "object", - "description": "Operation Display Resource object.", - "properties": { - "provider": { - "type": "string", - "description": "Operation Display Resource Provider." - }, - "resource": { - "type": "string", - "description": "Operation Display Resource." - }, - "operation": { - "type": "string", - "description": "Operation Display Resource Operation." - }, - "description": { - "type": "string", - "description": "Operation Display Resource Description." - } - } - }, - "CheckNameAvailabilityParameters": { - "properties": { - "name": { - "type": "string", - "description": "The name to check for availability" - }, - "type": { - "type": "string", - "enum": ["Microsoft.StorageSync/storageSyncServices"], - "x-ms-enum": { - "name": "Type", - "modelAsString": false - }, - "description": "The resource type. Must be set to Microsoft.StorageSync/storageSyncServices" - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Registered Server object.", + "required": true, + "schema": { + "$ref": "#/definitions/RegisteredServerCreateParameters" + } + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Create", + "description": "Add a new registered server.", + "x-ms-examples": { + "RegisteredServers_Create": { + "$ref": "./examples/RegisteredServers_Create.json" + } + }, + "responses": { + "200": { + "description": "Registered Server resources in Sync Group", + "schema": { + "$ref": "#/definitions/RegisteredServer" }, - "required": [ - "name", - "type" - ], - "description": "Parameters for a check name availability request." - }, - "CheckNameAvailabilityResult": { - "properties": { - "nameAvailable": { - "readOnly": true, - "type": "boolean", - "description": "Gets a boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or invalid and cannot be used." - }, - "reason": { - "readOnly": true, - "type": "string", - "enum": [ - "Invalid", - "AlreadyExists" - ], - "x-ms-enum": { - "name": "NameAvailabilityReason", - "modelAsString": false - }, - "description": "Gets the reason that a Storage Sync Service name could not be used. The Reason element is only returned if NameAvailable is false." - }, - "message": { - "readOnly": true, - "type": "string", - "description": "Gets an error message explaining the Reason value in more detail." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Delete", + "description": "Delete the given registered server.", + "x-ms-examples": { + "RegisteredServers_Delete": { + "$ref": "./examples/RegisteredServers_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}/triggerRollover": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "Server Id", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Trigger Rollover request.", + "required": true, + "schema": { + "$ref": "#/definitions/TriggerRolloverRequest" + } + } + ], + "tags": [ + "RegisteredServer Resource", + "Actions" + ], + "operationId": "RegisteredServers_triggerRollover", + "description": "Triggers Server certificate rollover.", + "x-ms-examples": { + "RegisteredServers_triggerRollover": { + "$ref": "./examples/RegisteredServers_TriggerRollover.json" + } + }, + "responses": { + "200": { + "description": "Trigger Rollover success status", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource" + ], + "operationId": "Workflows_ListByStorageSyncService", + "description": "Get a Workflow List", + "x-ms-examples": { + "Workflows_ListByStorageSyncService": { + "$ref": "./examples/Workflows_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Workflow resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/WorkflowArray" }, - "description": "The CheckNameAvailability operation response." - }, - "PostRestoreRequest": { - "type": "object", - "description": "Post Restore Request", - "properties": { - "partition": { - "type": "string", - "description": "Post Restore partition." - }, - "replicaGroup": { - "type": "string", - "description": "Post Restore replica group." - }, - "requestId": { - "type": "string", - "description": "Post Restore request id." - }, - "azureFileShareUri": { - "type": "string", - "description": "Post Restore Azure file share uri." - }, - "status": { - "type": "string", - "description": "Post Restore Azure status." - }, - "sourceAzureFileShareUri": { - "type": "string", - "description": "Post Restore Azure source azure file share uri." - }, - "failedFileList": { - "type": "string", - "description": "Post Restore Azure failed file list." - }, - "restoreFileSpec": { - "type": "array", - "description": "Post Restore restore file spec array.", - "items": { - "$ref": "#/definitions/RestoreFileSpec", - "description": "Post Restore restore file spec items array." - } - } - } - }, - "PreRestoreRequest": { - "type": "object", - "description": "Pre Restore request object.", - "properties": { - "partition": { - "type": "string", - "description": "Pre Restore partition." - }, - "replicaGroup": { - "type": "string", - "description": "Pre Restore replica group." - }, - "requestId": { - "type": "string", - "description": "Pre Restore request id." - }, - "azureFileShareUri": { - "type": "string", - "description": "Pre Restore Azure file share uri." - }, - "status": { - "type": "string", - "description": "Pre Restore Azure status." - }, - "sourceAzureFileShareUri": { - "type": "string", - "description": "Pre Restore Azure source azure file share uri." - }, - "backupMetadataPropertyBag": { - "type": "string", - "description": "Pre Restore backup metadata property bag." - }, - "restoreFileSpec": { - "type": "array", - "description": "Pre Restore restore file spec array.", - "items": { - "$ref": "#/definitions/RestoreFileSpec", - "description": "Pre Restore restore file spec items array." - } - }, - "pauseWaitForSyncDrainTimePeriodInSeconds": { - "type": "integer", - "description": "Pre Restore pause wait for sync drain time period in seconds." - } - } - }, - "BackupRequest": { - "type": "object", - "description": "Backup request", - "properties": { - "azureFileShare": { - "type": "string", - "description": "Azure File Share." - } - } - }, - "PostBackupResponse": { - "type": "object", - "description": "Post Backup Response", - "properties": { - "backupMetadata": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/PostBackupResponseProperties", - "description": "Post Backup Response Properties" - } - } - }, - "RestoreFileSpec": { - "type": "object", - "description": "Restore file spec.", - "properties": { - "path": { - "type": "string", - "description": "Restore file spec path" - }, - "isdir": { - "type": "boolean", - "description": "Restore file spec isdir", - "readOnly": true - } - } - }, - "StorageSyncServiceArray": { - "type": "object", - "description": "Array of StorageSyncServices", - "properties": { - "value": { - "type": "array", - "description": "Collection of StorageSyncServices.", - "items": { - "$ref": "#/definitions/StorageSyncService" - } - } - } - }, - "SyncGroupArray": { - "type": "object", - "description": "Array of SyncGroup", - "properties": { - "value": { - "type": "array", - "description": "Collection of SyncGroup.", - "items": { - "$ref": "#/definitions/SyncGroup" - } - } - } - }, - "CloudEndpointArray": { - "type": "object", - "description": "Array of CloudEndpoint", - "properties": { - "value": { - "type": "array", - "description": "Collection of CloudEndpoint.", - "items": { - "$ref": "#/definitions/CloudEndpoint" - } - } - } - }, - "ServerEndpointArray": { - "description": "Array of ServerEndpoint", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of ServerEndpoint.", - "items": { - "$ref": "#/definitions/ServerEndpoint" - } - } - } - }, - "RegisteredServerArray": { - "description": "Array of RegisteredServer", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of Registered Server.", - "items": { - "$ref": "#/definitions/RegisteredServer" - } - } - } - }, - "WorkflowArray": { - "description": "Array of Workflow", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of workflow items.", - "items": { - "$ref": "#/definitions/Workflow" - } - } - } - }, - "SubscriptionStateProperties": { - "type": "object", - "description": "Subscription State properties." - }, - "PostBackupResponseProperties": { - "type": "object", - "description": "Post Backup Response Properties object.", - "properties": { - "cloudEndpointName": { - "type": "string", - "description": "cloud endpoint Name.", - "readOnly": true - } - } - }, - "StorageSyncServiceUpdateParameters": { - "properties": { - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "The user-specified tags associated with the storage sync service." - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/StorageSyncServiceUpdateProperties", - "description": "The properties of the storage sync service." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "workflowId", + "in": "path", + "description": "workflow Id", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource" + ], + "operationId": "Workflows_Get", + "description": "Get Workflows resource", + "x-ms-examples": { + "Workflows_Get": { + "$ref": "./examples/Workflows_Get.json" + } + }, + "responses": { + "200": { + "description": "Workflow object", + "schema": { + "$ref": "#/definitions/Workflow" }, - "description": "Parameters for updating an Storage sync service." - }, - "StorageSyncServiceUpdateProperties": { - "type": "object", - "description": "Storage Sync Service Update Properties object.", - "properties": {} - }, - "StorageSyncServiceProperties": { - "type": "object", - "description": "Storage Sync Service Properties object.", - "properties": { - "storageSyncServiceStatus": { - "type": "integer", - "description": "Storage Sync service status.", - "readOnly": true - }, - "storageSyncServiceUid": { - "type": "string", - "description": "Storage Sync service Uid", - "readOnly": true - } - } - }, - "WorkflowProperties": { - "type": "object", - "description": "Workflow Properties object.", - "properties": { - "lastStepName": { - "type": "string", - "description": "last step name" - }, - "status": { - "$ref": "#/definitions/WorkflowStatus", - "description": "workflow status." - }, - "operation": { - "$ref": "#/definitions/OperationDirection", - "description": "operation direction." - }, - "steps": { - "type": "string", - "description": "workflow steps" - }, - "lastOperationId": { - "type": "string", - "description": "workflow last operation identifier." - } - } - }, - "SyncGroupProperties": { - "type": "object", - "description": "SyncGroup Properties object.", - "properties": { - "uniqueId": { - "type": "string", - "description": "Unique Id" - }, - "syncGroupStatus": { - "type": "string", - "description": "Sync group status", - "readOnly": true - } - } - }, - "RegisteredServerProperties": { - "type": "object", - "description": "RegisteredServer Properties object.", - "properties": { - "serverCertificate": { - "type": "string", - "description": "Registered Server Certificate" - }, - "agentVersion": { - "type": "string", - "description": "Registered Server Agent Version" - }, - "serverOSVersion": { - "type": "string", - "description": "Registered Server OS Version" - }, - "serverManagementErrorCode": { - "type": "integer", - "description": "Registered Server Management Error Code" - }, - "lastHeartBeat": { - "type": "string", - "description": "Registered Server last heart beat" - }, - "provisioningState": { - "type": "string", - "description": "Registered Server Provisioning State" - }, - "serverRole": { - "type": "string", - "description": "Registered Server serverRole" - }, - "clusterId": { - "type": "string", - "description": "Registered Server clusterId" - }, - "clusterName": { - "type": "string", - "description": "Registered Server clusterName" - }, - "serverId": { - "type": "string", - "description": "Registered Server serverId" - }, - "storageSyncServiceUid": { - "type": "string", - "description": "Registered Server storageSyncServiceUid" - }, - "lastWorkflowId": { - "type": "string", - "description": "Registered Server lastWorkflowId" - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name" - }, - "discoveryEndpointUri": { - "type": "string", - "description": "Resource discoveryEndpointUri" - }, - "resourceLocation": { - "type": "string", - "description": "Resource Location" - }, - "serviceLocation": { - "type": "string", - "description": "Service Location" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "managementEndpointUri": { - "type": "string", - "description": "Management Endpoint Uri" - }, - "monitoringConfiguration": { - "type": "string", - "description": "Monitoring Configuration" - } - } - }, - "CloudEndpointProperties": { - "type": "object", - "description": "CloudEndpoint Properties object.", - "properties": { - "storageAccountResourceId": { - "type": "string", - "description": "Storage Account Resource Id" - }, - "storageAccountShareName": { - "type": "string", - "description": "Storage Account Share name" - }, - "storageAccountTenantId": { - "type": "string", - "description": "Storage Account Tenant Id" - }, - "partnershipId": { - "type": "string", - "description": "Partnership Id" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "backupEnabled": { - "type": "string", - "description": "Backup Enabled", - "readOnly": true - }, - "provisioningState": { - "type": "string", - "description": "CloudEndpoint Provisioning State" - }, - "lastWorkflowId": { - "type": "string", - "description": "CloudEndpoint lastWorkflowId" - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name" - } - } - }, - "ServerEndpointUpdateProperties": { - "type": "object", - "description": "ServerEndpoint Update Properties object.", - "properties": { - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "offlineDataTransfer": { - "$ref": "#/definitions/FeatureStatus", - "description": "Offline data transfer" - }, - "offlineDataTransferShareName": { - "type": "string", - "description": "Offline data transfer share name" - } - } - }, - "ServerEndpointProperties": { - "type": "object", - "description": "ServerEndpoint Properties object.", - "properties": { - "serverLocalPath": { - "$ref": "#/definitions/PhysicalPath", - "description": "Server Local path." - }, - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "serverResourceId": { - "$ref": "#/definitions/ResourceId", - "description": "Server Resource Id." - }, - "provisioningState": { - "type": "string", - "description": "ServerEndpoint Provisioning State" - }, - "lastWorkflowId": { - "type": "string", - "description": "ServerEndpoint lastWorkflowId" - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name" - }, - "syncStatus": { - "type": "object", - "$ref": "#/definitions/ServerEndpointHealth", - "description": "Server Endpoint properties." - }, - "offlineDataTransfer": { - "$ref": "#/definitions/FeatureStatus", - "description": "Offline data transfer" - }, - "offlineDataTransferStorageAccountResourceId": { - "type": "string", - "description": "Offline data transfer storage account resource ID", - "readOnly": true - }, - "offlineDataTransferStorageAccountTenantId": { - "type": "string", - "description": "Offline data transfer storage account tenant ID", - "readOnly": true - }, - "offlineDataTransferShareName": { - "type": "string", - "description": "Offline data transfer share name" - } - } - }, - "ServerEndpointHealth": { - "type": "object", - "description": "ServerEndpoint Health object.", - "properties": { - "downloadHealth": { - "$ref": "#/definitions/HealthState", - "description": "Download Health Status." - }, - "uploadHealth": { - "$ref": "#/definitions/HealthState", - "description": "Upload Health Status." - }, - "combinedHealth": { - "$ref": "#/definitions/HealthState", - "description": "Combined Health Status." - }, - "lastUpdatedTimestamp": { - "type" : "string", - "format" : "date-time", - "description": "Last Updated Timestamp" - }, - "uploadStatus": { - "$ref": "#/definitions/SyncSessionStatus", - "description": "Upload Status" - }, - "downloadStatus": { - "$ref": "#/definitions/SyncSessionStatus", - "description": "Download Status" - }, - "currentProgress": { - "$ref": "#/definitions/SyncProgressStatus", - "description": "Current progress" - }, - "offlineDataTransferStatus": { - "$ref": "#/definitions/OfflineDataTransferState", - "description": "Offline Data Transfer State" - } - } - }, - "SyncSessionStatus": { - "type": "object", - "description": "Sync Session status object.", - "properties": { - "lastSyncResult": { - "type": "integer", - "description": "Last sync status" - }, - "lastSyncTimestamp": { - "type" : "string", - "format" : "date-time", - "description": "Last sync timestamp" - }, - "lastSyncSuccessTimestamp": { - "type" : "string", - "format" : "date-time", - "description": "Last sync success timestamp" - }, - "lastSyncPerItemErrorCount": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Last sync per item error count." - } - } - }, - "SyncProgressStatus": { - "type": "object", - "description": "Sync Session status object.", - "properties": { - "progressTimestamp": { - "type" : "string", - "format" : "date-time", - "description": "Progress timestamp" - }, - "syncDirection": { - "$ref": "#/definitions/ProgressType", - "description": "Sync direction." - }, - "perItemErrorCount": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Per item error count" - }, - "appliedItemCount": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Applied item count." - }, - "totalItemCount": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Total item count" - }, - "appliedBytes": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Applied bytes" - }, - "totalBytes": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Total bytes" - } - } - }, - "PhysicalPath": { - "type": "string", - "description": "Server folder used for data synchronization" - }, - "ResourceId": { - "type": "string", - "description": "Arm resource identifier." - }, - "TagsObject": { - "type": "object", - "description": "Tags object." - }, - "FeatureStatus": { - "type": "string", - "description": "Type of the Feature Status", - "enum": [ - "on", - "off" - ] - }, - "HealthState": { - "type": "string", - "description": "Type of the Health state", - "enum": [ - "Healthy", - "Error", - "SyncBlockedForRestore", - "SyncBlockedForChangeDetectionPostRestore", - "NoActivity" - ] - }, - "OfflineDataTransferState": { - "type": "string", - "description": "Type of the Health state", - "enum": [ - "InProgress", - "Stopping", - "NotRunning", - "Complete" - ] - }, - "WorkflowStatus": { - "type": "string", - "description": "Type of the Workflow Status", - "enum": [ - "active", - "expired", - "succeeded", - "aborted", - "failed" - ] - }, - "OperationDirection": { - "type": "string", - "description": "Type of the Operation Direction", - "enum": [ - "do", - "undo", - "cancel" - ] - }, - "ProgressType": { - "type": "string", - "description": "Type of the ProgressType", - "enum": [ - "none", - "initialize", - "download", - "upload", - "recall" - ] - } - }, - "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" - } - } - }, - "security": [{ - "azure_auth": [ - "user_impersonation" - ] - }] -} \ No newline at end of file + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}/abort": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "workflowId", + "in": "path", + "description": "workflow Id", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource", + "Actions" + ], + "operationId": "Workflows_Abort", + "description": "Abort the given workflow.", + "x-ms-examples": { + "Workflows_Abort": { + "$ref": "./examples/Workflows_Abort.json" + } + }, + "responses": { + "200": { + "description": "success", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + } + }, + "definitions": { + "StorageSyncError": { + "type": "object", + "description": "Error type", + "properties": { + "error": { + "$ref": "#/definitions/StorageSyncApiError", + "description": "Error details of the given entry." + }, + "innererror": { + "$ref": "#/definitions/StorageSyncApiError", + "description": "Error details of the given entry." + } + } + }, + "StorageSyncApiError": { + "type": "object", + "description": "Error type", + "properties": { + "code": { + "type": "string", + "description": "Error code of the given entry." + }, + "message": { + "type": "string", + "description": "Error message of the given entry." + }, + "target": { + "type": "string", + "description": "Target of the given error entry." + }, + "details": { + "$ref": "#/definitions/StorageSyncErrorDetails", + "description": "Error details of the given entry." + } + } + }, + "StorageSyncErrorDetails": { + "type": "object", + "description": "Error Details object.", + "properties": { + "code": { + "type": "string", + "description": "Error code of the given entry." + }, + "message": { + "type": "string", + "description": "Error message of the given entry." + }, + "target": { + "type": "string", + "description": "Target of the given entry." + } + } + }, + "SubscriptionState": { + "type": "object", + "description": "Subscription State object.", + "properties": { + "state": { + "type": "string", + "description": "State of Azure Subscription", + "enum": [ + "Registered", + "Unregistered", + "Warned", + "Suspended", + "Deleted" + ], + "x-ms-enum": { + "name": "Reason", + "modelAsString": true + } + }, + "istransitioning": { + "type": "boolean", + "description": "Is Transitioning", + "readOnly": true + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SubscriptionStateProperties", + "description": "Subscription state properties." + } + } + }, + "StorageSyncService": { + "type": "object", + "description": "Storage Sync Service object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/StorageSyncServiceProperties", + "description": "Storage Sync Service properties." + } + } + }, + "SyncGroup": { + "type": "object", + "description": "Sync Group object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SyncGroupProperties", + "description": "SyncGroup properties." + } + } + }, + "CloudEndpoint": { + "type": "object", + "description": "Cloud Endpoint object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/CloudEndpointProperties", + "description": "Cloud Endpoint properties." + } + } + }, + "RecallActionParameters": { + "properties": { + "pattern": { + "type": "string", + "description": "Pattern of the files." + }, + "recallPath": { + "type": "string", + "description": "Recall path." + } + }, + "description": "The parameters used when calling recall action on server endpoint." + }, + "StorageSyncServiceCreateParameters": { + "properties": { + "location": { + "type": "string", + "description": "Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed." + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters." + }, + "properties": {} + }, + "required": [ + "location" + ], + "description": "The parameters used when creating a storage sync service." + }, + "SyncGroupCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SyncGroupCreateParametersProperties", + "description": "The parameters used to create the sync group" + } + }, + "description": "The parameters used when creating a sync group." + }, + "SyncGroupCreateParametersProperties": { + "type": "object", + "description": "Sync Group Create Properties object.", + "properties": {} + }, + "CloudEndpointCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/CloudEndpointCreateParametersProperties", + "description": "The parameters used to create the cloud endpoint." + } + }, + "description": "The parameters used when creating a cloud endpoint." + }, + "CloudEndpointCreateParametersProperties": { + "description": "CloudEndpoint Properties object.", + "properties": { + "storageAccountResourceId": { + "type": "string", + "description": "Storage Account Resource Id" + }, + "storageAccountShareName": { + "type": "string", + "description": "Storage Account Share name" + }, + "storageAccountTenantId": { + "type": "string", + "description": "Storage Account Tenant Id" + } + } + }, + "ServerEndpointCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointCreateParametersProperties", + "description": "The parameters used to create the server endpoint." + } + }, + "description": "The parameters used when creating a server endpoint." + }, + "ServerEndpointCreateParametersProperties": { + "description": "ServerEndpoint Properties object.", + "properties": { + "serverLocalPath": { + "$ref": "#/definitions/PhysicalPath", + "description": "Server Local path." + }, + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "serverResourceId": { + "$ref": "#/definitions/ResourceId", + "description": "Server Resource Id." + }, + "offlineDataTransfer": { + "$ref": "#/definitions/FeatureStatus", + "description": "Offline data transfer" + }, + "offlineDataTransferShareName": { + "type": "string", + "description": "Offline data transfer share name" + } + } + }, + "TriggerRolloverRequest": { + "type": "object", + "description": "Trigger Rollover Request.", + "properties": { + "serverCertificate": { + "type": "string", + "description": "Certificate Data" + } + } + }, + "RegisteredServerCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegisteredServerCreateParametersProperties", + "description": "The parameters used to create the registered server." + } + }, + "description": "The parameters used when creating a registered server." + }, + "RegisteredServerCreateParametersProperties": { + "properties": { + "serverCertificate": { + "type": "string", + "description": "Registered Server Certificate" + }, + "agentVersion": { + "type": "string", + "description": "Registered Server Agent Version" + }, + "serverOSVersion": { + "type": "string", + "description": "Registered Server OS Version" + }, + "lastHeartBeat": { + "type": "string", + "description": "Registered Server last heart beat" + }, + "serverRole": { + "type": "string", + "description": "Registered Server serverRole" + }, + "clusterId": { + "type": "string", + "description": "Registered Server clusterId" + }, + "clusterName": { + "type": "string", + "description": "Registered Server clusterName" + }, + "serverId": { + "type": "string", + "description": "Registered Server serverId" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + } + } + }, + "ServerEndpointUpdateParameters": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointUpdateProperties", + "description": "The properties of the server endpoint." + } + }, + "description": "Parameters for updating an Server Endpoint." + }, + "ServerEndpoint": { + "type": "object", + "description": "Server Endpoint object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointProperties", + "description": "Server Endpoint properties." + } + } + }, + "RegisteredServer": { + "type": "object", + "description": "Registered Server resource.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegisteredServerProperties", + "description": "RegisteredServer properties." + } + } + }, + "ResourcesMoveInfo": { + "type": "object", + "description": "Resource Move Info.", + "properties": { + "targetResourceGroup": { + "type": "string", + "description": "Target resource group." + }, + "resources": { + "type": "array", + "description": "Collection of Resources.", + "items": { + "$ref": "#/definitions/ResourceId" + } + } + } + }, + "Workflow": { + "type": "object", + "description": "Workflow resource.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/WorkflowProperties", + "description": "Workflow properties." + } + } + }, + "OperationEntityListResult": { + "description": "The list of storage sync operations.", + "type": "object", + "properties": { + "nextLink": { + "description": "The link used to get the next page of operations.", + "type": "string" + }, + "value": { + "description": "The list of operations.", + "type": "array", + "items": { + "$ref": "#/definitions/OperationEntity" + } + } + } + }, + "OperationEntity": { + "description": "The operation supported by storage sync.", + "type": "object", + "properties": { + "name": { + "description": "Operation name: {provider}/{resource}/{operation}.", + "type": "string" + }, + "display": { + "$ref": "#/definitions/OperationDisplayInfo", + "description": "The operation supported by storage sync." + }, + "origin": { + "type": "string", + "description": "The origin." + } + } + }, + "OperationDisplayInfo": { + "description": "The operation supported by storage sync.", + "type": "object", + "properties": { + "description": { + "description": "The description of the operation.", + "type": "string" + }, + "operation": { + "description": "The action that users can perform, based on their permission level.", + "type": "string" + }, + "provider": { + "description": "Service provider: Microsoft StorageSync.", + "type": "string" + }, + "resource": { + "description": "Resource on which the operation is performed.", + "type": "string" + } + } + }, + "OperationDisplayResource": { + "type": "object", + "description": "Operation Display Resource object.", + "properties": { + "provider": { + "type": "string", + "description": "Operation Display Resource Provider." + }, + "resource": { + "type": "string", + "description": "Operation Display Resource." + }, + "operation": { + "type": "string", + "description": "Operation Display Resource Operation." + }, + "description": { + "type": "string", + "description": "Operation Display Resource Description." + } + } + }, + "CheckNameAvailabilityParameters": { + "properties": { + "name": { + "type": "string", + "description": "The name to check for availability" + }, + "type": { + "type": "string", + "enum": [ + "Microsoft.StorageSync/storageSyncServices" + ], + "x-ms-enum": { + "name": "Type", + "modelAsString": false + }, + "description": "The resource type. Must be set to Microsoft.StorageSync/storageSyncServices" + } + }, + "required": [ + "name", + "type" + ], + "description": "Parameters for a check name availability request." + }, + "CheckNameAvailabilityResult": { + "properties": { + "nameAvailable": { + "readOnly": true, + "type": "boolean", + "description": "Gets a boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or invalid and cannot be used." + }, + "reason": { + "readOnly": true, + "type": "string", + "enum": [ + "Invalid", + "AlreadyExists" + ], + "x-ms-enum": { + "name": "NameAvailabilityReason", + "modelAsString": false + }, + "description": "Gets the reason that a Storage Sync Service name could not be used. The Reason element is only returned if NameAvailable is false." + }, + "message": { + "readOnly": true, + "type": "string", + "description": "Gets an error message explaining the Reason value in more detail." + } + }, + "description": "The CheckNameAvailability operation response." + }, + "PostRestoreRequest": { + "type": "object", + "description": "Post Restore Request", + "properties": { + "partition": { + "type": "string", + "description": "Post Restore partition." + }, + "replicaGroup": { + "type": "string", + "description": "Post Restore replica group." + }, + "requestId": { + "type": "string", + "description": "Post Restore request id." + }, + "azureFileShareUri": { + "type": "string", + "description": "Post Restore Azure file share uri." + }, + "status": { + "type": "string", + "description": "Post Restore Azure status." + }, + "sourceAzureFileShareUri": { + "type": "string", + "description": "Post Restore Azure source azure file share uri." + }, + "failedFileList": { + "type": "string", + "description": "Post Restore Azure failed file list." + }, + "restoreFileSpec": { + "type": "array", + "description": "Post Restore restore file spec array.", + "items": { + "$ref": "#/definitions/RestoreFileSpec", + "description": "Post Restore restore file spec items array." + } + } + } + }, + "PreRestoreRequest": { + "type": "object", + "description": "Pre Restore request object.", + "properties": { + "partition": { + "type": "string", + "description": "Pre Restore partition." + }, + "replicaGroup": { + "type": "string", + "description": "Pre Restore replica group." + }, + "requestId": { + "type": "string", + "description": "Pre Restore request id." + }, + "azureFileShareUri": { + "type": "string", + "description": "Pre Restore Azure file share uri." + }, + "status": { + "type": "string", + "description": "Pre Restore Azure status." + }, + "sourceAzureFileShareUri": { + "type": "string", + "description": "Pre Restore Azure source azure file share uri." + }, + "backupMetadataPropertyBag": { + "type": "string", + "description": "Pre Restore backup metadata property bag." + }, + "restoreFileSpec": { + "type": "array", + "description": "Pre Restore restore file spec array.", + "items": { + "$ref": "#/definitions/RestoreFileSpec", + "description": "Pre Restore restore file spec items array." + } + }, + "pauseWaitForSyncDrainTimePeriodInSeconds": { + "type": "integer", + "description": "Pre Restore pause wait for sync drain time period in seconds." + } + } + }, + "BackupRequest": { + "type": "object", + "description": "Backup request", + "properties": { + "azureFileShare": { + "type": "string", + "description": "Azure File Share." + } + } + }, + "PostBackupResponse": { + "type": "object", + "description": "Post Backup Response", + "properties": { + "backupMetadata": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/PostBackupResponseProperties", + "description": "Post Backup Response Properties" + } + } + }, + "RestoreFileSpec": { + "type": "object", + "description": "Restore file spec.", + "properties": { + "path": { + "type": "string", + "description": "Restore file spec path" + }, + "isdir": { + "type": "boolean", + "description": "Restore file spec isdir", + "readOnly": true + } + } + }, + "StorageSyncServiceArray": { + "type": "object", + "description": "Array of StorageSyncServices", + "properties": { + "value": { + "type": "array", + "description": "Collection of StorageSyncServices.", + "items": { + "$ref": "#/definitions/StorageSyncService" + } + } + } + }, + "SyncGroupArray": { + "type": "object", + "description": "Array of SyncGroup", + "properties": { + "value": { + "type": "array", + "description": "Collection of SyncGroup.", + "items": { + "$ref": "#/definitions/SyncGroup" + } + } + } + }, + "CloudEndpointArray": { + "type": "object", + "description": "Array of CloudEndpoint", + "properties": { + "value": { + "type": "array", + "description": "Collection of CloudEndpoint.", + "items": { + "$ref": "#/definitions/CloudEndpoint" + } + } + } + }, + "ServerEndpointArray": { + "description": "Array of ServerEndpoint", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of ServerEndpoint.", + "items": { + "$ref": "#/definitions/ServerEndpoint" + } + } + } + }, + "RegisteredServerArray": { + "description": "Array of RegisteredServer", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of Registered Server.", + "items": { + "$ref": "#/definitions/RegisteredServer" + } + } + } + }, + "WorkflowArray": { + "description": "Array of Workflow", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of workflow items.", + "items": { + "$ref": "#/definitions/Workflow" + } + } + } + }, + "SubscriptionStateProperties": { + "type": "object", + "description": "Subscription State properties." + }, + "PostBackupResponseProperties": { + "type": "object", + "description": "Post Backup Response Properties object.", + "properties": { + "cloudEndpointName": { + "type": "string", + "description": "cloud endpoint Name.", + "readOnly": true + } + } + }, + "StorageSyncServiceUpdateParameters": { + "properties": { + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "The user-specified tags associated with the storage sync service." + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/StorageSyncServiceUpdateProperties", + "description": "The properties of the storage sync service." + } + }, + "description": "Parameters for updating an Storage sync service." + }, + "StorageSyncServiceUpdateProperties": { + "type": "object", + "description": "Storage Sync Service Update Properties object.", + "properties": {} + }, + "StorageSyncServiceProperties": { + "type": "object", + "description": "Storage Sync Service Properties object.", + "properties": { + "storageSyncServiceStatus": { + "type": "integer", + "description": "Storage Sync service status.", + "readOnly": true + }, + "storageSyncServiceUid": { + "type": "string", + "description": "Storage Sync service Uid", + "readOnly": true + } + } + }, + "WorkflowProperties": { + "type": "object", + "description": "Workflow Properties object.", + "properties": { + "lastStepName": { + "type": "string", + "description": "last step name" + }, + "status": { + "$ref": "#/definitions/WorkflowStatus", + "description": "workflow status." + }, + "operation": { + "$ref": "#/definitions/OperationDirection", + "description": "operation direction." + }, + "steps": { + "type": "string", + "description": "workflow steps" + }, + "lastOperationId": { + "type": "string", + "description": "workflow last operation identifier." + } + } + }, + "SyncGroupProperties": { + "type": "object", + "description": "SyncGroup Properties object.", + "properties": { + "uniqueId": { + "type": "string", + "description": "Unique Id" + }, + "syncGroupStatus": { + "type": "string", + "description": "Sync group status", + "readOnly": true + } + } + }, + "RegisteredServerProperties": { + "type": "object", + "description": "RegisteredServer Properties object.", + "properties": { + "serverCertificate": { + "type": "string", + "description": "Registered Server Certificate" + }, + "agentVersion": { + "type": "string", + "description": "Registered Server Agent Version" + }, + "serverOSVersion": { + "type": "string", + "description": "Registered Server OS Version" + }, + "serverManagementErrorCode": { + "type": "integer", + "description": "Registered Server Management Error Code" + }, + "lastHeartBeat": { + "type": "string", + "description": "Registered Server last heart beat" + }, + "provisioningState": { + "type": "string", + "description": "Registered Server Provisioning State" + }, + "serverRole": { + "type": "string", + "description": "Registered Server serverRole" + }, + "clusterId": { + "type": "string", + "description": "Registered Server clusterId" + }, + "clusterName": { + "type": "string", + "description": "Registered Server clusterName" + }, + "serverId": { + "type": "string", + "description": "Registered Server serverId" + }, + "storageSyncServiceUid": { + "type": "string", + "description": "Registered Server storageSyncServiceUid" + }, + "lastWorkflowId": { + "type": "string", + "description": "Registered Server lastWorkflowId" + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name" + }, + "discoveryEndpointUri": { + "type": "string", + "description": "Resource discoveryEndpointUri" + }, + "resourceLocation": { + "type": "string", + "description": "Resource Location" + }, + "serviceLocation": { + "type": "string", + "description": "Service Location" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "managementEndpointUri": { + "type": "string", + "description": "Management Endpoint Uri" + }, + "monitoringConfiguration": { + "type": "string", + "description": "Monitoring Configuration" + } + } + }, + "CloudEndpointProperties": { + "type": "object", + "description": "CloudEndpoint Properties object.", + "properties": { + "storageAccountResourceId": { + "type": "string", + "description": "Storage Account Resource Id" + }, + "storageAccountShareName": { + "type": "string", + "description": "Storage Account Share name" + }, + "storageAccountTenantId": { + "type": "string", + "description": "Storage Account Tenant Id" + }, + "partnershipId": { + "type": "string", + "description": "Partnership Id" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "backupEnabled": { + "type": "string", + "description": "Backup Enabled", + "readOnly": true + }, + "provisioningState": { + "type": "string", + "description": "CloudEndpoint Provisioning State" + }, + "lastWorkflowId": { + "type": "string", + "description": "CloudEndpoint lastWorkflowId" + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name" + } + } + }, + "ServerEndpointUpdateProperties": { + "type": "object", + "description": "ServerEndpoint Update Properties object.", + "properties": { + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "offlineDataTransfer": { + "$ref": "#/definitions/FeatureStatus", + "description": "Offline data transfer" + }, + "offlineDataTransferShareName": { + "type": "string", + "description": "Offline data transfer share name" + } + } + }, + "ServerEndpointProperties": { + "type": "object", + "description": "ServerEndpoint Properties object.", + "properties": { + "serverLocalPath": { + "$ref": "#/definitions/PhysicalPath", + "description": "Server Local path." + }, + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "serverResourceId": { + "$ref": "#/definitions/ResourceId", + "description": "Server Resource Id." + }, + "provisioningState": { + "type": "string", + "description": "ServerEndpoint Provisioning State" + }, + "lastWorkflowId": { + "type": "string", + "description": "ServerEndpoint lastWorkflowId" + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name" + }, + "syncStatus": { + "type": "object", + "$ref": "#/definitions/ServerEndpointHealth", + "description": "Server Endpoint properties." + }, + "offlineDataTransfer": { + "$ref": "#/definitions/FeatureStatus", + "description": "Offline data transfer" + }, + "offlineDataTransferStorageAccountResourceId": { + "type": "string", + "description": "Offline data transfer storage account resource ID", + "readOnly": true + }, + "offlineDataTransferStorageAccountTenantId": { + "type": "string", + "description": "Offline data transfer storage account tenant ID", + "readOnly": true + }, + "offlineDataTransferShareName": { + "type": "string", + "description": "Offline data transfer share name" + } + } + }, + "ServerEndpointHealth": { + "type": "object", + "description": "ServerEndpoint Health object.", + "properties": { + "downloadHealth": { + "$ref": "#/definitions/HealthState", + "description": "Download Health Status." + }, + "uploadHealth": { + "$ref": "#/definitions/HealthState", + "description": "Upload Health Status." + }, + "combinedHealth": { + "$ref": "#/definitions/HealthState", + "description": "Combined Health Status." + }, + "lastUpdatedTimestamp": { + "type": "string", + "format": "date-time", + "description": "Last Updated Timestamp" + }, + "uploadStatus": { + "$ref": "#/definitions/SyncSessionStatus", + "description": "Upload Status" + }, + "downloadStatus": { + "$ref": "#/definitions/SyncSessionStatus", + "description": "Download Status" + }, + "currentProgress": { + "$ref": "#/definitions/SyncProgressStatus", + "description": "Current progress" + }, + "offlineDataTransferStatus": { + "$ref": "#/definitions/OfflineDataTransferState", + "description": "Offline Data Transfer State" + } + } + }, + "SyncSessionStatus": { + "type": "object", + "description": "Sync Session status object.", + "properties": { + "lastSyncResult": { + "type": "integer", + "description": "Last sync status" + }, + "lastSyncTimestamp": { + "type": "string", + "format": "date-time", + "description": "Last sync timestamp" + }, + "lastSyncSuccessTimestamp": { + "type": "string", + "format": "date-time", + "description": "Last sync success timestamp" + }, + "lastSyncPerItemErrorCount": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Last sync per item error count." + } + } + }, + "SyncProgressStatus": { + "type": "object", + "description": "Sync Session status object.", + "properties": { + "progressTimestamp": { + "type": "string", + "format": "date-time", + "description": "Progress timestamp" + }, + "syncDirection": { + "$ref": "#/definitions/ProgressType", + "description": "Sync direction." + }, + "perItemErrorCount": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Per item error count" + }, + "appliedItemCount": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Applied item count." + }, + "totalItemCount": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Total item count" + }, + "appliedBytes": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Applied bytes" + }, + "totalBytes": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Total bytes" + } + } + }, + "PhysicalPath": { + "type": "string", + "description": "Server folder used for data synchronization" + }, + "ResourceId": { + "type": "string", + "description": "Arm resource identifier." + }, + "TagsObject": { + "type": "object", + "description": "Tags object." + }, + "FeatureStatus": { + "type": "string", + "description": "Type of the Feature Status", + "enum": [ + "on", + "off" + ] + }, + "HealthState": { + "type": "string", + "description": "Type of the Health state", + "enum": [ + "Healthy", + "Error", + "SyncBlockedForRestore", + "SyncBlockedForChangeDetectionPostRestore", + "NoActivity" + ] + }, + "OfflineDataTransferState": { + "type": "string", + "description": "Type of the Health state", + "enum": [ + "InProgress", + "Stopping", + "NotRunning", + "Complete" + ] + }, + "WorkflowStatus": { + "type": "string", + "description": "Type of the Workflow Status", + "enum": [ + "active", + "expired", + "succeeded", + "aborted", + "failed" + ] + }, + "OperationDirection": { + "type": "string", + "description": "Type of the Operation Direction", + "enum": [ + "do", + "undo", + "cancel" + ] + }, + "ProgressType": { + "type": "string", + "description": "Type of the ProgressType", + "enum": [ + "none", + "initialize", + "download", + "upload", + "recall" + ] + } + }, + "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" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Create.json index 1287015d6f8c..63c233d8de3e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Create.json @@ -1,52 +1,52 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2019-02-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2019-02-01", - "parameters": { - "properties": { - "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", - "azureFileShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", - "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", - "friendlyName": "ankushbsubscriptionmgmtmab" - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "backupEnabled" : "false", - "provisioningState": "Succeeded", - "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", - "azureFileShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", - "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", - "friendlyName": "ankushbsubscriptionmgmtmab", - "lastWorkflowId": "storageSyncServices/GATest/workflows/24ba0c4a-348e-419b-8f7a-091d0d9f07a4", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } + "properties": { + "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", + "azureFileShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", + "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", + "friendlyName": "ankushbsubscriptionmgmtmab" + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "backupEnabled": "false", + "provisioningState": "Succeeded", + "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", + "azureFileShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", + "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", + "friendlyName": "ankushbsubscriptionmgmtmab", + "lastWorkflowId": "storageSyncServices/GATest/workflows/24ba0c4a-348e-419b-8f7a-091d0d9f07a4", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC", + "lastOperationName": "ICreateCloudEndpointWorkflow" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2019-02-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2019-02-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2019-02-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2019-02-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Delete.json index cb1cf933e901..49172b9aea12 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Delete.json @@ -1,30 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2019-02-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2019-02-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2019-02-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2019-02-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2019-02-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Get.json index 807efadf4f0b..9a4e7114dbdd 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_Get.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "", - "azureFileShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "", + "azureFileShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", + "lastOperationName": "ICreateCloudEndpointWorkflow" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_ListBySyncGroup.json index 02f5dd8c79c6..89622a2d76fb 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_ListBySyncGroup.json @@ -1,34 +1,36 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "CEP_Restore_08-08_Test112", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "", + "azureFileShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", + "lastOperationName": "ICreateCloudEndpointWorkflow" }, - "body": { - "value": [{ - "name": "CEP_Restore_08-08_Test112", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "", - "azureFileShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PostBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PostBackup.json index 06bb9c6cc659..2ae3bb602809 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PostBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PostBackup.json @@ -1,34 +1,34 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" - }, - "api-version": "2019-02-01" + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "backupMetadata": { - "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" - } - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2019-02-01&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "backupMetadata": { + "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" } + } + }, + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2019-02-01&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PostRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PostRestore.json index 7700438fd610..a9fd067a6125 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PostRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PostRestore.json @@ -1,48 +1,49 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "status": "Succeeded", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "status": "Succeeded", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false }, - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir", + "isdir": true + }, + { + "path": "MyDir/SubDir", + "isdir": false }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-02-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + }, + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-02-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PreBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PreBackup.json index 7792f69b5a2c..5f99f4fb6eb3 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PreBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PreBackup.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "api-version": "2019-02-01", - "parameters" : { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" + "parameters": { + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-02-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-02-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PreRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PreRestore.json index b9528d41f5a5..c937e39600a1 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PreRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_PreRestore.json @@ -1,46 +1,47 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2019-02-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2019-02-01", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] - } - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false + }, + { + "path": "MyDir", + "isdir": true }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-02-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir", + "isdir": false + }, + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-02-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_RestoreHeatbeat.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_RestoreHeatbeat.json index 212fe63abfad..372f40608683 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_RestoreHeatbeat.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/CloudEndpoints_RestoreHeatbeat.json @@ -1,19 +1,19 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": "" - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Operations_List.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Operations_List.json index f599788d3ab8..959524472d3d 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Operations_List.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Operations_List.json @@ -1,193 +1,214 @@ { - "parameters": { - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "body": { - "value": [{ - "name": "Microsoft.StorageSync/storageSyncServices/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Read Storage Sync Services", - "description": "Read any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Create or Update Storage Sync Services", - "description": "Create or Update any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Delete Storage Sync Services", - "description": "Delete any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Read Sync Groups", - "description": "Read any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Create or Update Sync Groups", - "description": "Create or Update any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Delete Sync Groups", - "description": "Delete any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Read Cloud Endpoints", - "description": "Read any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Create or Update Cloud Endpoints", - "description": "Create or Update any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Delete Cloud Endpoints", - "description": "Delete any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prebackup", - "description": "Call this action before backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postbackup", - "description": "Call this action after backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prerestore", - "description": "Call this action before restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postrestore", - "description": "Call this action after restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Read Server Endpoints", - "description": "Read any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Create or Update Server Endpoints", - "description": "Create or Update any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Delete Server Endpoints", - "description": "Delete any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "recallAction", - "description": "Call this action to recall files to a server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Read Registered Server", - "description": "Read any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Create or Update Registered Server", - "description": "Create or Update any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Delete Registered Server", - "description": "Delete any Registered Server" - }, - "origin": "User" - }], - "nextLink": "" - } - } + "parameters": { + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.StorageSync/storageSyncServices/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Read Storage Sync Services", + "description": "Read any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Create or Update Storage Sync Services", + "description": "Create or Update any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Delete Storage Sync Services", + "description": "Delete any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Read Sync Groups", + "description": "Read any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Create or Update Sync Groups", + "description": "Create or Update any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Delete Sync Groups", + "description": "Delete any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Read Cloud Endpoints", + "description": "Read any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Create or Update Cloud Endpoints", + "description": "Create or Update any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Delete Cloud Endpoints", + "description": "Delete any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prebackup", + "description": "Call this action before backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postbackup", + "description": "Call this action after backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prerestore", + "description": "Call this action before restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postrestore", + "description": "Call this action after restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Read Server Endpoints", + "description": "Read any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Create or Update Server Endpoints", + "description": "Create or Update any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Delete Server Endpoints", + "description": "Delete any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "recallAction", + "description": "Call this action to recall files to a server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Read Registered Server", + "description": "Read any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Create or Update Registered Server", + "description": "Create or Update any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Delete Registered Server", + "description": "Delete any Registered Server" + }, + "origin": "User" + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Create.json index 196cb4ffd9c3..4026af63f2c7 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Create.json @@ -1,62 +1,62 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", - "parameters": { - "name": "SampleServer-prod3.redmond.corp.microsoft.com", - "properties": { - "serverRole": "Standalone", - "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", - "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", - "serverManagementErrorCode": 0, - "serverOSVersion": "10.0.14393.0", - "agentVersion": "1.0.277.0" - }, - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }, - "api-version": "2019-02-01" + "name": "SampleServer-prod3.redmond.corp.microsoft.com", + "properties": { + "serverRole": "Standalone", + "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", + "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", + "serverManagementErrorCode": 0, + "serverOSVersion": "10.0.14393.0", + "agentVersion": "1.0.277.0" + }, + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers", - "name": "ankushb-prod3.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - } - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2019-02-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2019-02-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers", + "name": "ankushb-prod3.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" } + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2019-02-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2019-02-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Delete.json index 5776d027ee3f..724a47f7522e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Delete.json @@ -1,28 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", - "api-version": "2019-02-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2019-02-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2019-02-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2019-02-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2019-02-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Get.json index 258c8755ea2b..f38b64472ac9 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_Get.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_ListByStorageSyncService.json index 377bfb3de692..56feba4a0d06 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_ListByStorageSyncService.json @@ -1,42 +1,44 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" }, - "body": { - "value": [{ - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_TriggerRollover.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_TriggerRollover.json index 0d20aa0e00e2..54da920119bf 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_TriggerRollover.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/RegisteredServers_TriggerRollover.json @@ -1,29 +1,29 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "d166ca76-dad2-49df-b409-12345642d730", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "d166ca76-dad2-49df-b409-12345642d730", - "parameters": { - "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"" - }, - "api-version": "2019-02-01" + "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47222", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d222" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47222", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d222" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Create.json index 6fd85275d12f..f3b32b66903b 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Create.json @@ -1,60 +1,60 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters": { - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "tierFilesOlderThanDays": 0, - "offlineDataTransfer": "on", - "offlineDataTransferShareName": "myfileshare" - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, - "api-version": "2019-02-01" + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "tierFilesOlderThanDays": 0, + "offlineDataTransfer": "on", + "offlineDataTransferShareName": "myfileshare" + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": null, - "offlineDataTransfer": "on", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": null, + "offlineDataTransfer": "on", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Delete.json index 8ef90c939966..ad7820de11a0 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Delete.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2019-02-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2019-02-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2019-02-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2019-02-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2019-02-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Get.json index cc3519b73feb..ddf4ebbd0454 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Get.json @@ -1,81 +1,81 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "syncActivity": "UploadAndDownload", + "totalPersistentFilesNotSyncingCount": null, + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 1000, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "syncActivity": "UploadAndDownload", - "totalPersistentFilesNotSyncingCount": null, - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 1000, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "uploadActivity": { - "timestamp": "2018-06-11T23:32:51.1057915Z", - "perItemErrorCount": 300, - "appliedItemCount": 1000, - "totalItemCount": 2300, - "appliedBytes": 57348983, - "totalBytes": 1958367412 - }, - "downloadActivity": { - "timestamp": "2018-06-11T23:32:51.1057915Z", - "perItemErrorCount": 0, - "appliedItemCount": 100, - "totalItemCount": 300, - "appliedBytes": 94805587, - "totalBytes": 19583674 - }, - "offlineDataTransferStatus": "InProgress" - }, - "offlineDataTransfer": "on", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } - } + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "uploadActivity": { + "timestamp": "2018-06-11T23:32:51.1057915Z", + "perItemErrorCount": 300, + "appliedItemCount": 1000, + "totalItemCount": 2300, + "appliedBytes": 57348983, + "totalBytes": 1958367412 + }, + "downloadActivity": { + "timestamp": "2018-06-11T23:32:51.1057915Z", + "perItemErrorCount": 0, + "appliedItemCount": 100, + "totalItemCount": 300, + "appliedBytes": 94805587, + "totalBytes": 19583674 + }, + "offlineDataTransferStatus": "InProgress" + }, + "offlineDataTransfer": "on", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" + }, + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_ListBySyncGroup.json index 3c50d77e7dce..cf6416a8e31a 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_ListBySyncGroup.json @@ -1,120 +1,123 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "syncActivity": null, + "totalPersistentFilesNotSyncingCount": null, + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 1000, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "uploadActivity": null, + "downloadActivity": null, + "offlineDataTransferStatus": "Complete" + }, + "offlineDataTransfer": "on", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" }, - "body": { - "value": [{ - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "syncActivity": null, - "totalPersistentFilesNotSyncingCount": null, - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 1000, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "uploadActivity": null, - "downloadActivity": null, - "offlineDataTransferStatus": "Complete" - }, - "offlineDataTransfer": "on", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, { - "name": "SampleServerEndpoint_2", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_2", - "cloudTiering": "on", - "volumeFreeSpacePercent": 80, - "friendlyName": "somemachine2.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/40b1dc00-d7d9-4721-a1e9-ab60139b830a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 5, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Healthy", - "combinedHealth": "Healthy", - "syncActivity": "Upload", - "totalPersistentFilesNotSyncingCount": null, - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "uploadActivity": { - "timestamp": "2018-06-11T23:32:51.1057915Z", - "perItemErrorCount": 300, - "appliedItemCount": 1000, - "totalItemCount": 2300, - "appliedBytes": 57348983, - "totalBytes": 1958367412 - }, - "downloadActivity": null, - "offlineDataTransferStatus": "NotRunning" - }, - "offlineDataTransfer": "off" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_2", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }] - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + }, + { + "name": "SampleServerEndpoint_2", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_2", + "cloudTiering": "on", + "volumeFreeSpacePercent": 80, + "friendlyName": "somemachine2.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/40b1dc00-d7d9-4721-a1e9-ab60139b830a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 5, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Healthy", + "combinedHealth": "Healthy", + "syncActivity": "Upload", + "totalPersistentFilesNotSyncingCount": null, + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "uploadActivity": { + "timestamp": "2018-06-11T23:32:51.1057915Z", + "perItemErrorCount": 300, + "appliedItemCount": 1000, + "totalItemCount": 2300, + "appliedBytes": 57348983, + "totalBytes": 1958367412 + }, + "downloadActivity": null, + "offlineDataTransferStatus": "NotRunning" + }, + "offlineDataTransfer": "off" + }, + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_2", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Recall.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Recall.json index a70ad5b9b038..3bd57b52272b 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Recall.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Recall.json @@ -1,31 +1,31 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2019-02-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2019-02-01", - "parameters": { - "pattern": "", - "recallPath": "" - } + "pattern": "", + "recallPath": "" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-02-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Update.json index 7c3393f756ac..7132d087da0f 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/ServerEndpoints_Update.json @@ -1,85 +1,85 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters" : { - "properties": { - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "tierFilesOlderThanDays" : 0, - "offlineDataTransfer": "off" - } - }, - "api-version": "2019-02-01" + "properties": { + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "tierFilesOlderThanDays": 0, + "offlineDataTransfer": "off" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota2", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "tierFilesOlderThanDays": 0, + "friendlyName": "somemachine2.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "syncActivity": null, + "totalPersistentFilesNotSyncingCount": null, + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota2", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "tierFilesOlderThanDays": 0, - "friendlyName": "somemachine2.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "syncActivity": null, - "totalPersistentFilesNotSyncingCount": null, - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "uploadActivity": null, - "downloadActivity": null, - "offlineDataTransferStatus": "Stopping" - }, - "offlineDataTransfer": "off", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } + "uploadActivity": null, + "downloadActivity": null, + "offlineDataTransferStatus": "Stopping" + }, + "offlineDataTransfer": "off", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2019-02-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2019-02-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2019-02-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2019-02-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json index 7cf15dcb428c..823c0dbcd714 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json @@ -1,20 +1,20 @@ { + "parameters": { + "api-version": "2019-02-01", + "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", + "locationName": "westus", "parameters": { - "api-version": "2019-02-01", - "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", - "locationName": "westus", - "parameters": { - "name": "newstoragesyncservicename", - "type": "Microsoft.StorageSync/storageSyncServices" - } - }, - "responses": { - "200": { - "body": { - "nameAvailable": false, - "reason": "AlreadyExists", - "message": "An account named 'newstoragesyncservicename' is already in use." - } - } + "name": "newstoragesyncservicename", + "type": "Microsoft.StorageSync/storageSyncServices" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": false, + "reason": "AlreadyExists", + "message": "An account named 'newstoragesyncservicename' is already in use." + } + } + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServiceCheckNameAvailability_Available.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServiceCheckNameAvailability_Available.json index 234f1df6aaad..0c03c7b76aa1 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServiceCheckNameAvailability_Available.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServiceCheckNameAvailability_Available.json @@ -1,18 +1,18 @@ { + "parameters": { + "api-version": "2019-02-01", + "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", + "locationName": "westus", "parameters": { - "api-version": "2019-02-01", - "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", - "locationName": "westus", - "parameters": { - "name": "newstoragesyncservicename", - "type": "Microsoft.StorageSync/storageSyncServices" - } - }, - "responses": { - "200": { - "body": { - "nameAvailable": true - } - } + "name": "newstoragesyncservicename", + "type": "Microsoft.StorageSync/storageSyncServices" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": true + } + } + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Create.json index 71a5b7e2ad9a..19328bd84d48 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Create.json @@ -1,25 +1,25 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "parameters": { - "location": "WestUS", - "tags": {}, - "properties": {} - }, - "api-version": "2019-02-01" + "location": "WestUS", + "tags": {}, + "properties": {} }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Delete.json index 80648fc47cb5..ae25abfc0a96 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Delete.json @@ -1,14 +1,12 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - }, - "204": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Get.json index fd397214a27c..c009eeb01590 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Get.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_ListByResourceGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_ListByResourceGroup.json index 8cbd1d4dd661..aed8c0c11f0f 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_ListByResourceGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_ListByResourceGroup.json @@ -1,48 +1,52 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_ListBySubscription.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_ListBySubscription.json index e2cac9cbd7d4..c8b15ce024b5 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_ListBySubscription.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_ListBySubscription.json @@ -1,47 +1,51 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Update.json index 11b62d0163d5..5863bcd55828 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/StorageSyncServices_Update.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2019-02-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2019-02-01", - "parameters": { - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {} - } - }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {} } + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Create.json index 85e03c934180..ca4b28866323 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Create.json @@ -1,25 +1,25 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-02-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-02-01", - "parameters": { - "properties": {}, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - }, - "responses": { - "200": { - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "properties": {}, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" } + }, + "responses": { + "200": { + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Delete.json index a607bde34b78..206726acc3ad 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Delete.json @@ -1,19 +1,18 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-02-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - } - } -} \ No newline at end of file + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Get.json index 99bf05d3206a..f985b5737505 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_Get.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_ListByStorageSyncService.json index 929f8281a6ad..eb6ee35c1e57 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/SyncGroups_ListByStorageSyncService.json @@ -1,27 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" }, - "body": { - "value": [{ - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_Abort.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_Abort.json index 385fea15878c..92198214fca2 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_Abort.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_Abort.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_Get.json index 895b9824bdb5..638345b052e9 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_Get.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "properties": { - "status": "succeeded", - "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", - "operation": "do", - "lastStepName": "runServerJob", - "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "type": "Microsoft.StorageSync/storageSyncServices/workflows" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "properties": { + "status": "succeeded", + "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", + "operation": "do", + "lastStepName": "runServerJob", + "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "type": "Microsoft.StorageSync/storageSyncServices/workflows" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_ListByStorageSyncService.json index 81b504a64ff0..15c569a9cf3d 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/examples/Workflows_ListByStorageSyncService.json @@ -1,30 +1,32 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2019-02-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2019-02-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "properties": { + "status": "succeeded", + "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", + "operation": "do", + "lastStepName": "runServerJob", + "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" }, - "body": { - "value": [{ - "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "properties": { - "status": "succeeded", - "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", - "operation": "do", - "lastStepName": "runServerJob", - "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "type": "Microsoft.StorageSync/storageSyncServices/workflows" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "type": "Microsoft.StorageSync/storageSyncServices/workflows" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/storagesync.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/storagesync.json index 3f3f71d5b716..f79519bcbe2f 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/storagesync.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-02-01/storagesync.json @@ -1,3665 +1,3908 @@ { - "swagger": "2.0", - "info": { - "title": "Microsoft Storage Sync", - "description": "Microsoft Storage Sync Service API", - "version": "2019-02-01", - "x-ms-code-generation-settings": { - "name": "StorageSyncManagementClient" - } - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/providers/Microsoft.StorageSync/operations": { - "get": { - "tags": [ - "ResourceProvider", - "Operations" - ], - "operationId": "Operations_List", - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "description": "Lists all of the available Storage Sync Rest API operations.", - "x-ms-examples": { - "Operations_List": { - "$ref": "./examples/Operations_List.json" - } - }, - "responses": { - "200": { - "description": "Array of operations resources in the Resource Provider", - "schema": { - "$ref": "#/definitions/OperationEntityListResult" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "deprecated": false, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/locations/{locationName}/checkNameAvailability": { - "post": { - "tags": [ - "StorageSyncService" - ], - "operationId": "StorageSyncServices_CheckNameAvailability", - "x-ms-examples": { - "StorageSyncServiceCheckNameAvailability_Available": { - "$ref": "./examples/StorageSyncServiceCheckNameAvailability_Available.json" - }, - "StorageSyncServiceCheckNameAvailability_AlreadyExists": { - "$ref": "./examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json" - } - }, - "description": "Check the give namespace name availability.", - "parameters": [{ - "name": "locationName", - "in": "path", - "required": true, - "type": "string", - "description": "The desired region for the name check." - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityParameters" - }, - "description": "Parameters to check availability of the given namespace name" - }], - "responses": { - "200": { - "description": "check availability returned successfully.", - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityResult" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Storage Sync Service resource name.", - "required": true, - "schema": { - "$ref": "#/definitions/StorageSyncServiceCreateParameters" - } - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Create", - "description": "Create a new StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Create": { - "$ref": "./examples/StorageSyncServices_Create.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object created/updated", - "schema": { - "$ref": "#/definitions/StorageSyncService" - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "swagger": "2.0", + "info": { + "title": "Microsoft Storage Sync", + "description": "Microsoft Storage Sync Service API", + "version": "2019-02-01", + "x-ms-code-generation-settings": { + "name": "StorageSyncManagementClient" + } + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/providers/Microsoft.StorageSync/operations": { + "get": { + "tags": [ + "ResourceProvider", + "Operations" + ], + "operationId": "Operations_List", + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "description": "Lists all of the available Storage Sync Rest API operations.", + "x-ms-examples": { + "Operations_List": { + "$ref": "./examples/Operations_List.json" + } + }, + "responses": { + "200": { + "description": "Array of operations resources in the Resource Provider", + "schema": { + "$ref": "#/definitions/OperationEntityListResult" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Get", - "description": "Get a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Get": { - "$ref": "./examples/StorageSyncServices_Get.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object", - "schema": { - "$ref": "#/definitions/StorageSyncService" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "deprecated": false, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/locations/{locationName}/checkNameAvailability": { + "post": { + "tags": [ + "StorageSyncService" + ], + "operationId": "StorageSyncServices_CheckNameAvailability", + "x-ms-examples": { + "StorageSyncServiceCheckNameAvailability_Available": { + "$ref": "./examples/StorageSyncServiceCheckNameAvailability_Available.json" + }, + "StorageSyncServiceCheckNameAvailability_AlreadyExists": { + "$ref": "./examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json" + } + }, + "description": "Check the give namespace name availability.", + "parameters": [ + { + "name": "locationName", + "in": "path", + "required": true, + "type": "string", + "description": "The desired region for the name check." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityParameters" }, - "patch": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Storage Sync Service resource.", - "schema": { - "$ref": "#/definitions/StorageSyncServiceUpdateParameters" - } - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Update", - "description": "Patch a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Update": { - "$ref": "./examples/StorageSyncServices_Update.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object created/updated", - "schema": { - "$ref": "#/definitions/StorageSyncService" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "description": "Parameters to check availability of the given namespace name" + } + ], + "responses": { + "200": { + "description": "check availability returned successfully.", + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityResult" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Storage Sync Service resource name.", + "required": true, + "schema": { + "$ref": "#/definitions/StorageSyncServiceCreateParameters" + } + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Create", + "description": "Create a new StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Create": { + "$ref": "./examples/StorageSyncServices_Create.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object created/updated", + "schema": { + "$ref": "#/definitions/StorageSyncService" + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Get", + "description": "Get a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Get": { + "$ref": "./examples/StorageSyncServices_Get.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object", + "schema": { + "$ref": "#/definitions/StorageSyncService" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Delete", - "description": "Delete a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Delete": { - "$ref": "./examples/StorageSyncServices_Delete.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object was deleted.", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "204": { - "description": "Storage Sync Service Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_ListByResourceGroup", - "description": "Get a StorageSyncService list by Resource group name.", - "x-ms-examples": { - "StorageSyncServices_ListByResourceGroup": { - "$ref": "./examples/StorageSyncServices_ListByResourceGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of registered Storage Sync Service resources in the Resource Group", - "schema": { - "$ref": "#/definitions/StorageSyncServiceArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/storageSyncServices": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_ListBySubscription", - "description": "Get a StorageSyncService list by subscription.", - "x-ms-examples": { - "StorageSyncServices_ListBySubscription": { - "$ref": "./examples/StorageSyncServices_ListBySubscription.json" - } - }, - "responses": { - "200": { - "description": "Array of registered Storage Sync Service resources in the subscription.", - "schema": { - "$ref": "#/definitions/StorageSyncServiceArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_ListByStorageSyncService", - "description": "Get a SyncGroup List.", - "x-ms-examples": { - "SyncGroups_ListByStorageSyncService": { - "$ref": "./examples/SyncGroups_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Sync Group resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/SyncGroupArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Sync Group Body", - "required": true, - "schema": { - "$ref": "#/definitions/SyncGroupCreateParameters" - } - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Create", - "description": "Create a new SyncGroup.", - "x-ms-examples": { - "SyncGroups_Create": { - "$ref": "./examples/SyncGroups_Create.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object", - "schema": { - "$ref": "#/definitions/SyncGroup" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "patch": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Storage Sync Service resource.", + "schema": { + "$ref": "#/definitions/StorageSyncServiceUpdateParameters" + } + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Update", + "description": "Patch a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Update": { + "$ref": "./examples/StorageSyncServices_Update.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object created/updated", + "schema": { + "$ref": "#/definitions/StorageSyncService" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Get", - "description": "Get a given SyncGroup.", - "x-ms-examples": { - "SyncGroups_Get": { - "$ref": "./examples/SyncGroups_Get.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object", - "schema": { - "$ref": "#/definitions/SyncGroup" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Delete", + "description": "Delete a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Delete": { + "$ref": "./examples/StorageSyncServices_Delete.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object was deleted.", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "204": { + "description": "Storage Sync Service Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_ListByResourceGroup", + "description": "Get a StorageSyncService list by Resource group name.", + "x-ms-examples": { + "StorageSyncServices_ListByResourceGroup": { + "$ref": "./examples/StorageSyncServices_ListByResourceGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of registered Storage Sync Service resources in the Resource Group", + "schema": { + "$ref": "#/definitions/StorageSyncServiceArray" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Delete", - "description": "Delete a given SyncGroup.", - "x-ms-examples": { - "SyncGroups_Delete": { - "$ref": "./examples/SyncGroups_Delete.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object was deleted", - "headers": { - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint resource.", - "required": true, - "schema": { - "$ref": "#/definitions/CloudEndpointCreateParameters" - } - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Create", - "description": "Create a new CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Create": { - "$ref": "./examples/CloudEndpoints_Create.json" - } - }, - "responses": { - "200": { - "description": "Cloud Endpoint object", - "schema": { - "$ref": "#/definitions/CloudEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Retry-After": { - "description": "Retry After", - "type": "string" - }, - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/storageSyncServices": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_ListBySubscription", + "description": "Get a StorageSyncService list by subscription.", + "x-ms-examples": { + "StorageSyncServices_ListBySubscription": { + "$ref": "./examples/StorageSyncServices_ListBySubscription.json" + } + }, + "responses": { + "200": { + "description": "Array of registered Storage Sync Service resources in the subscription.", + "schema": { + "$ref": "#/definitions/StorageSyncServiceArray" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Get", - "description": "Get a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Get": { - "$ref": "./examples/CloudEndpoints_Get.json" - } - }, - "responses": { - "200": { - "description": "Cloud Endpoint object", - "schema": { - "$ref": "#/definitions/CloudEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_ListByStorageSyncService", + "description": "Get a SyncGroup List.", + "x-ms-examples": { + "SyncGroups_ListByStorageSyncService": { + "$ref": "./examples/SyncGroups_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Sync Group resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/SyncGroupArray" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Delete", - "description": "Delete a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Delete": { - "$ref": "./examples/CloudEndpoints_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Retry-After": { - "description": "Retry After", - "type": "string" - }, - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_ListBySyncGroup", - "description": "Get a CloudEndpoint List.", - "x-ms-examples": { - "CloudEndpoints_ListBySyncGroup": { - "$ref": "./examples/CloudEndpoints_ListBySyncGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of Cloud Endpoint resources in Sync Group", - "schema": { - "$ref": "#/definitions/CloudEndpointArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prebackup": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Backup request.", - "required": true, - "schema": { - "$ref": "#/definitions/BackupRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PreBackup", - "description": "Pre Backup a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PreBackup": { - "$ref": "./examples/CloudEndpoints_PreBackup.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postbackup": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Backup request.", - "required": true, - "schema": { - "$ref": "#/definitions/BackupRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PostBackup", - "description": "Post Backup a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PostBackup": { - "$ref": "./examples/CloudEndpoints_PostBackup.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "schema": { - "$ref": "#/definitions/PostBackupResponse" - }, - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prerestore": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/PreRestoreRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PreRestore", - "description": "Pre Restore a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PreRestore": { - "$ref": "./examples/CloudEndpoints_PreRestore.json" - } - }, - "responses": { - "200": { - "description": "Ok" - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/restoreheartbeat": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_restoreheartbeat", - "description": "Restore Heartbeat a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_restoreheartbeat": { - "$ref": "./examples/CloudEndpoints_RestoreHeatbeat.json" - } - }, - "responses": { - "200": { - "description": "Restore Heartbeat Operation has ran successfully.", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postrestore": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/PostRestoreRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PostRestore", - "description": "Post Restore a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PostRestore": { - "$ref": "./examples/CloudEndpoints_PostRestore.json" - } - }, - "responses": { - "200": { - "description": "Ok" - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Server Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/ServerEndpointCreateParameters" - } - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Create", - "description": "Create a new ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Create": { - "$ref": "./examples/ServerEndpoints_Create.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Sync Group Body", + "required": true, + "schema": { + "$ref": "#/definitions/SyncGroupCreateParameters" + } + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Create", + "description": "Create a new SyncGroup.", + "x-ms-examples": { + "SyncGroups_Create": { + "$ref": "./examples/SyncGroups_Create.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object", + "schema": { + "$ref": "#/definitions/SyncGroup" }, - "patch": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Any of the properties applicable in PUT request.", - "schema": { - "$ref": "#/definitions/ServerEndpointUpdateParameters" - } - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Update", - "description": "Patch a given ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Update": { - "$ref": "./examples/ServerEndpoints_Update.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Get", + "description": "Get a given SyncGroup.", + "x-ms-examples": { + "SyncGroups_Get": { + "$ref": "./examples/SyncGroups_Get.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object", + "schema": { + "$ref": "#/definitions/SyncGroup" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Get", - "description": "Get a ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Get": { - "$ref": "./examples/ServerEndpoints_Get.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Delete", + "description": "Delete a given SyncGroup.", + "x-ms-examples": { + "SyncGroups_Delete": { + "$ref": "./examples/SyncGroups_Delete.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object was deleted", + "headers": { + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint resource.", + "required": true, + "schema": { + "$ref": "#/definitions/CloudEndpointCreateParameters" + } + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Create", + "description": "Create a new CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Create": { + "$ref": "./examples/CloudEndpoints_Create.json" + } + }, + "responses": { + "200": { + "description": "Cloud Endpoint object", + "schema": { + "$ref": "#/definitions/CloudEndpoint" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Delete", - "description": "Delete a given ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Delete": { - "$ref": "./examples/ServerEndpoints_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_ListBySyncGroup", - "description": "Get a ServerEndpoint list.", - "x-ms-examples": { - "ServerEndpoints_ListBySyncGroup": { - "$ref": "./examples/ServerEndpoints_ListBySyncGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of Server Endpoint resources in Sync Group", - "schema": { - "$ref": "#/definitions/ServerEndpointArray" - }, - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}/recallAction": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Recall Action object.", - "required": true, - "schema": { - "$ref": "#/definitions/RecallActionParameters" - } - }], - "tags": [ - "ServerEndpoint Resource", - "Actions" - ], - "operationId": "ServerEndpoints_recallAction", - "description": "Recall a server endpoint.", - "x-ms-examples": { - "ServerEndpoints_recallAction": { - "$ref": "./examples/ServerEndpoints_Recall.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_ListByStorageSyncService", - "description": "Get a given registered server list.", - "x-ms-examples": { - "RegisteredServers_ListByStorageSyncService": { - "$ref": "./examples/RegisteredServers_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Registered Server resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/RegisteredServerArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Get", - "description": "Get a given registered server.", - "x-ms-examples": { - "RegisteredServers_Get": { - "$ref": "./examples/RegisteredServers_Get.json" - } - }, - "responses": { - "200": { - "description": "Registered Server resources in Sync Group", - "schema": { - "$ref": "#/definitions/RegisteredServer" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Retry-After": { + "description": "Retry After", + "type": "string" + }, + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Get", + "description": "Get a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Get": { + "$ref": "./examples/CloudEndpoints_Get.json" + } + }, + "responses": { + "200": { + "description": "Cloud Endpoint object", + "schema": { + "$ref": "#/definitions/CloudEndpoint" }, - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Registered Server object.", - "required": true, - "schema": { - "$ref": "#/definitions/RegisteredServerCreateParameters" - } - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Create", - "description": "Add a new registered server.", - "x-ms-examples": { - "RegisteredServers_Create": { - "$ref": "./examples/RegisteredServers_Create.json" - } - }, - "responses": { - "200": { - "description": "Registered Server resources in Sync Group", - "schema": { - "$ref": "#/definitions/RegisteredServer" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Delete", + "description": "Delete a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Delete": { + "$ref": "./examples/CloudEndpoints_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Retry-After": { + "description": "Retry After", + "type": "string" + }, + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_ListBySyncGroup", + "description": "Get a CloudEndpoint List.", + "x-ms-examples": { + "CloudEndpoints_ListBySyncGroup": { + "$ref": "./examples/CloudEndpoints_ListBySyncGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of Cloud Endpoint resources in Sync Group", + "schema": { + "$ref": "#/definitions/CloudEndpointArray" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Delete", - "description": "Delete the given registered server.", - "x-ms-examples": { - "RegisteredServers_Delete": { - "$ref": "./examples/RegisteredServers_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}/triggerRollover": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "Server Id", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Trigger Rollover request.", - "required": true, - "schema": { - "$ref": "#/definitions/TriggerRolloverRequest" - } - }], - "tags": [ - "RegisteredServer Resource", - "Actions" - ], - "operationId": "RegisteredServers_triggerRollover", - "description": "Triggers Server certificate rollover.", - "x-ms-examples": { - "RegisteredServers_triggerRollover": { - "$ref": "./examples/RegisteredServers_TriggerRollover.json" - } - }, - "responses": { - "200": { - "description": "Trigger Rollover success status", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource" - ], - "operationId": "Workflows_ListByStorageSyncService", - "description": "Get a Workflow List", - "x-ms-examples": { - "Workflows_ListByStorageSyncService": { - "$ref": "./examples/Workflows_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Workflow resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/WorkflowArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "workflowId", - "in": "path", - "description": "workflow Id", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource" - ], - "operationId": "Workflows_Get", - "description": "Get Workflows resource", - "x-ms-examples": { - "Workflows_Get": { - "$ref": "./examples/Workflows_Get.json" - } - }, - "responses": { - "200": { - "description": "Workflow object", - "schema": { - "$ref": "#/definitions/Workflow" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}/abort": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "workflowId", - "in": "path", - "description": "workflow Id", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource", - "Actions" - ], - "operationId": "Workflows_Abort", - "description": "Abort the given workflow.", - "x-ms-examples": { - "Workflows_Abort": { - "$ref": "./examples/Workflows_Abort.json" - } - }, - "responses": { - "200": { - "description": "success", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - } - }, - "definitions": { - "StorageSyncError": { - "type": "object", - "description": "Error type", - "properties": { - "error": { - "$ref": "#/definitions/StorageSyncApiError", - "description": "Error details of the given entry." - }, - "innererror": { - "$ref": "#/definitions/StorageSyncApiError", - "description": "Error details of the given entry." - } - } - }, - "StorageSyncApiError": { - "type": "object", - "description": "Error type", - "properties": { - "code": { - "type": "string", - "description": "Error code of the given entry." - }, - "message": { - "type": "string", - "description": "Error message of the given entry." - }, - "target": { - "type": "string", - "description": "Target of the given error entry." - }, - "details": { - "$ref": "#/definitions/StorageSyncErrorDetails", - "description": "Error details of the given entry." - } - } - }, - "StorageSyncErrorDetails": { - "type": "object", - "description": "Error Details object.", - "properties": { - "code": { - "type": "string", - "description": "Error code of the given entry." - }, - "message": { - "type": "string", - "description": "Error message of the given entry." - }, - "target": { - "type": "string", - "description": "Target of the given entry." - } - } - }, - "SubscriptionState": { - "type": "object", - "description": "Subscription State object.", - "properties": { - "state": { - "type": "string", - "description": "State of Azure Subscription", - "enum": [ - "Registered", - "Unregistered", - "Warned", - "Suspended", - "Deleted" - ], - "x-ms-enum": { - "name": "Reason", - "modelAsString": true - } - }, - "istransitioning": { - "type": "boolean", - "description": "Is Transitioning", - "readOnly": true - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SubscriptionStateProperties", - "description": "Subscription state properties." - } - } - }, - "StorageSyncService": { - "type": "object", - "description": "Storage Sync Service object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/StorageSyncServiceProperties", - "description": "Storage Sync Service properties." - } - } - }, - "SyncGroup": { - "type": "object", - "description": "Sync Group object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SyncGroupProperties", - "description": "SyncGroup properties." - } - } - }, - "CloudEndpoint": { - "type": "object", - "description": "Cloud Endpoint object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/CloudEndpointProperties", - "description": "Cloud Endpoint properties." - } - } - }, - "RecallActionParameters": { - "properties": { - "pattern": { - "type": "string", - "description": "Pattern of the files." - }, - "recallPath": { - "type": "string", - "description": "Recall path." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prebackup": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Backup request.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PreBackup", + "description": "Pre Backup a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PreBackup": { + "$ref": "./examples/CloudEndpoints_PreBackup.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postbackup": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Backup request.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PostBackup", + "description": "Post Backup a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PostBackup": { + "$ref": "./examples/CloudEndpoints_PostBackup.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "schema": { + "$ref": "#/definitions/PostBackupResponse" }, - "description": "The parameters used when calling recall action on server endpoint." - }, - "StorageSyncServiceCreateParameters": { - "properties": { - "location": { - "type": "string", - "description": "Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed." - }, - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters." - }, - "properties": {} + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prerestore": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/PreRestoreRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PreRestore", + "description": "Pre Restore a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PreRestore": { + "$ref": "./examples/CloudEndpoints_PreRestore.json" + } + }, + "responses": { + "200": { + "description": "Ok" + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/restoreheartbeat": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_restoreheartbeat", + "description": "Restore Heartbeat a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_restoreheartbeat": { + "$ref": "./examples/CloudEndpoints_RestoreHeatbeat.json" + } + }, + "responses": { + "200": { + "description": "Restore Heartbeat Operation has ran successfully.", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postrestore": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/PostRestoreRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PostRestore", + "description": "Post Restore a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PostRestore": { + "$ref": "./examples/CloudEndpoints_PostRestore.json" + } + }, + "responses": { + "200": { + "description": "Ok" + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Server Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/ServerEndpointCreateParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Create", + "description": "Create a new ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Create": { + "$ref": "./examples/ServerEndpoints_Create.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "required": [ - "location" - ], - "description": "The parameters used when creating a storage sync service." - }, - "SyncGroupCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SyncGroupCreateParametersProperties", - "description": "The parameters used to create the sync group" - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "patch": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Any of the properties applicable in PUT request.", + "schema": { + "$ref": "#/definitions/ServerEndpointUpdateParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Update", + "description": "Patch a given ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Update": { + "$ref": "./examples/ServerEndpoints_Update.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "description": "The parameters used when creating a sync group." - }, - "SyncGroupCreateParametersProperties": { - "type": "object", - "description": "Sync Group Create Properties object.", - "properties": {} - }, - "CloudEndpointCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/CloudEndpointCreateParametersProperties", - "description": "The parameters used to create the cloud endpoint." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Get", + "description": "Get a ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Get": { + "$ref": "./examples/ServerEndpoints_Get.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "description": "The parameters used when creating a cloud endpoint." - }, - "CloudEndpointCreateParametersProperties": { - "description": "CloudEndpoint Properties object.", - "properties": { - "storageAccountResourceId": { - "type": "string", - "description": "Storage Account Resource Id" - }, - "azureFileShareName": { - "type": "string", - "description": "Azure file share name" - }, - "storageAccountTenantId": { - "type": "string", - "description": "Storage Account Tenant Id" - } - } - }, - "ServerEndpointCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointCreateParametersProperties", - "description": "The parameters used to create the server endpoint." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Delete", + "description": "Delete a given ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Delete": { + "$ref": "./examples/ServerEndpoints_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_ListBySyncGroup", + "description": "Get a ServerEndpoint list.", + "x-ms-examples": { + "ServerEndpoints_ListBySyncGroup": { + "$ref": "./examples/ServerEndpoints_ListBySyncGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of Server Endpoint resources in Sync Group", + "schema": { + "$ref": "#/definitions/ServerEndpointArray" }, - "description": "The parameters used when creating a server endpoint." - }, - "ServerEndpointCreateParametersProperties": { - "description": "ServerEndpoint Properties object.", - "properties": { - "serverLocalPath": { - "$ref": "#/definitions/PhysicalPath", - "description": "Server Local path." - }, - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "serverResourceId": { - "$ref": "#/definitions/ResourceId", - "description": "Server Resource Id." - }, - "offlineDataTransfer": { - "$ref": "#/definitions/FeatureStatus", - "description": "Offline data transfer" - }, - "offlineDataTransferShareName": { - "type": "string", - "description": "Offline data transfer share name" - } - } - }, - "TriggerRolloverRequest": { - "type": "object", - "description": "Trigger Rollover Request.", - "properties": { - "serverCertificate": { - "type": "string", - "description": "Certificate Data" - } - } - }, - "RegisteredServerCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegisteredServerCreateParametersProperties", - "description": "The parameters used to create the registered server." - } + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}/recallAction": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Recall Action object.", + "required": true, + "schema": { + "$ref": "#/definitions/RecallActionParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource", + "Actions" + ], + "operationId": "ServerEndpoints_recallAction", + "description": "Recall a server endpoint.", + "x-ms-examples": { + "ServerEndpoints_recallAction": { + "$ref": "./examples/ServerEndpoints_Recall.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_ListByStorageSyncService", + "description": "Get a given registered server list.", + "x-ms-examples": { + "RegisteredServers_ListByStorageSyncService": { + "$ref": "./examples/RegisteredServers_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Registered Server resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/RegisteredServerArray" }, - "description": "The parameters used when creating a registered server." - }, - "RegisteredServerCreateParametersProperties": { - "properties": { - "serverCertificate": { - "type": "string", - "description": "Registered Server Certificate" - }, - "agentVersion": { - "type": "string", - "description": "Registered Server Agent Version" - }, - "serverOSVersion": { - "type": "string", - "description": "Registered Server OS Version" - }, - "lastHeartBeat": { - "type": "string", - "description": "Registered Server last heart beat" - }, - "serverRole": { - "type": "string", - "description": "Registered Server serverRole" - }, - "clusterId": { - "type": "string", - "description": "Registered Server clusterId" - }, - "clusterName": { - "type": "string", - "description": "Registered Server clusterName" - }, - "serverId": { - "type": "string", - "description": "Registered Server serverId" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - } - } - }, - "ServerEndpointUpdateParameters": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointUpdateProperties", - "description": "The properties of the server endpoint." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Get", + "description": "Get a given registered server.", + "x-ms-examples": { + "RegisteredServers_Get": { + "$ref": "./examples/RegisteredServers_Get.json" + } + }, + "responses": { + "200": { + "description": "Registered Server resources in Sync Group", + "schema": { + "$ref": "#/definitions/RegisteredServer" }, - "description": "Parameters for updating an Server Endpoint." - }, - "ServerEndpoint": { - "type": "object", - "description": "Server Endpoint object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointProperties", - "description": "Server Endpoint properties." - } - } - }, - "RegisteredServer": { - "type": "object", - "description": "Registered Server resource.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegisteredServerProperties", - "description": "RegisteredServer properties." - } - } - }, - "ResourcesMoveInfo": { - "type": "object", - "description": "Resource Move Info.", - "properties": { - "targetResourceGroup": { - "type": "string", - "description": "Target resource group." - }, - "resources": { - "type": "array", - "description": "Collection of Resources.", - "items": { - "$ref": "#/definitions/ResourceId" - } - } - } - }, - "Workflow": { - "type": "object", - "description": "Workflow resource.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/WorkflowProperties", - "description": "Workflow properties." - } - } - }, - "OperationEntityListResult": { - "description": "The list of storage sync operations.", - "type": "object", - "properties": { - "nextLink": { - "description": "The link used to get the next page of operations.", - "type": "string" - }, - "value": { - "description": "The list of operations.", - "type": "array", - "items": { - "$ref": "#/definitions/OperationEntity" - } - } - } - }, - "OperationEntity": { - "description": "The operation supported by storage sync.", - "type": "object", - "properties": { - "name": { - "description": "Operation name: {provider}/{resource}/{operation}.", - "type": "string" - }, - "display": { - "$ref": "#/definitions/OperationDisplayInfo", - "description": "The operation supported by storage sync." - }, - "origin": { - "type": "string", - "description": "The origin." - } - } - }, - "OperationDisplayInfo": { - "description": "The operation supported by storage sync.", - "type": "object", - "properties": { - "description": { - "description": "The description of the operation.", - "type": "string" - }, - "operation": { - "description": "The action that users can perform, based on their permission level.", - "type": "string" - }, - "provider": { - "description": "Service provider: Microsoft StorageSync.", - "type": "string" - }, - "resource": { - "description": "Resource on which the operation is performed.", - "type": "string" - } - } - }, - "OperationDisplayResource": { - "type": "object", - "description": "Operation Display Resource object.", - "properties": { - "provider": { - "type": "string", - "description": "Operation Display Resource Provider." - }, - "resource": { - "type": "string", - "description": "Operation Display Resource." - }, - "operation": { - "type": "string", - "description": "Operation Display Resource Operation." - }, - "description": { - "type": "string", - "description": "Operation Display Resource Description." - } - } - }, - "CheckNameAvailabilityParameters": { - "properties": { - "name": { - "type": "string", - "description": "The name to check for availability" - }, - "type": { - "type": "string", - "enum": ["Microsoft.StorageSync/storageSyncServices"], - "x-ms-enum": { - "name": "Type", - "modelAsString": false - }, - "description": "The resource type. Must be set to Microsoft.StorageSync/storageSyncServices" - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Registered Server object.", + "required": true, + "schema": { + "$ref": "#/definitions/RegisteredServerCreateParameters" + } + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Create", + "description": "Add a new registered server.", + "x-ms-examples": { + "RegisteredServers_Create": { + "$ref": "./examples/RegisteredServers_Create.json" + } + }, + "responses": { + "200": { + "description": "Registered Server resources in Sync Group", + "schema": { + "$ref": "#/definitions/RegisteredServer" }, - "required": [ - "name", - "type" - ], - "description": "Parameters for a check name availability request." - }, - "CheckNameAvailabilityResult": { - "properties": { - "nameAvailable": { - "readOnly": true, - "type": "boolean", - "description": "Gets a boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or invalid and cannot be used." - }, - "reason": { - "readOnly": true, - "type": "string", - "enum": [ - "Invalid", - "AlreadyExists" - ], - "x-ms-enum": { - "name": "NameAvailabilityReason", - "modelAsString": false - }, - "description": "Gets the reason that a Storage Sync Service name could not be used. The Reason element is only returned if NameAvailable is false." - }, - "message": { - "readOnly": true, - "type": "string", - "description": "Gets an error message explaining the Reason value in more detail." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Delete", + "description": "Delete the given registered server.", + "x-ms-examples": { + "RegisteredServers_Delete": { + "$ref": "./examples/RegisteredServers_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}/triggerRollover": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "Server Id", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Trigger Rollover request.", + "required": true, + "schema": { + "$ref": "#/definitions/TriggerRolloverRequest" + } + } + ], + "tags": [ + "RegisteredServer Resource", + "Actions" + ], + "operationId": "RegisteredServers_triggerRollover", + "description": "Triggers Server certificate rollover.", + "x-ms-examples": { + "RegisteredServers_triggerRollover": { + "$ref": "./examples/RegisteredServers_TriggerRollover.json" + } + }, + "responses": { + "200": { + "description": "Trigger Rollover success status", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource" + ], + "operationId": "Workflows_ListByStorageSyncService", + "description": "Get a Workflow List", + "x-ms-examples": { + "Workflows_ListByStorageSyncService": { + "$ref": "./examples/Workflows_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Workflow resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/WorkflowArray" }, - "description": "The CheckNameAvailability operation response." - }, - "PostRestoreRequest": { - "type": "object", - "description": "Post Restore Request", - "properties": { - "partition": { - "type": "string", - "description": "Post Restore partition." - }, - "replicaGroup": { - "type": "string", - "description": "Post Restore replica group." - }, - "requestId": { - "type": "string", - "description": "Post Restore request id." - }, - "azureFileShareUri": { - "type": "string", - "description": "Post Restore Azure file share uri." - }, - "status": { - "type": "string", - "description": "Post Restore Azure status." - }, - "sourceAzureFileShareUri": { - "type": "string", - "description": "Post Restore Azure source azure file share uri." - }, - "failedFileList": { - "type": "string", - "description": "Post Restore Azure failed file list." - }, - "restoreFileSpec": { - "type": "array", - "description": "Post Restore restore file spec array.", - "items": { - "$ref": "#/definitions/RestoreFileSpec", - "description": "Post Restore restore file spec items array." - } - } - } - }, - "PreRestoreRequest": { - "type": "object", - "description": "Pre Restore request object.", - "properties": { - "partition": { - "type": "string", - "description": "Pre Restore partition." - }, - "replicaGroup": { - "type": "string", - "description": "Pre Restore replica group." - }, - "requestId": { - "type": "string", - "description": "Pre Restore request id." - }, - "azureFileShareUri": { - "type": "string", - "description": "Pre Restore Azure file share uri." - }, - "status": { - "type": "string", - "description": "Pre Restore Azure status." - }, - "sourceAzureFileShareUri": { - "type": "string", - "description": "Pre Restore Azure source azure file share uri." - }, - "backupMetadataPropertyBag": { - "type": "string", - "description": "Pre Restore backup metadata property bag." - }, - "restoreFileSpec": { - "type": "array", - "description": "Pre Restore restore file spec array.", - "items": { - "$ref": "#/definitions/RestoreFileSpec", - "description": "Pre Restore restore file spec items array." - } - }, - "pauseWaitForSyncDrainTimePeriodInSeconds": { - "type": "integer", - "description": "Pre Restore pause wait for sync drain time period in seconds." - } - } - }, - "BackupRequest": { - "type": "object", - "description": "Backup request", - "properties": { - "azureFileShare": { - "type": "string", - "description": "Azure File Share." - } - } - }, - "PostBackupResponse": { - "type": "object", - "description": "Post Backup Response", - "properties": { - "backupMetadata": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/PostBackupResponseProperties", - "description": "Post Backup Response Properties" - } - } - }, - "RestoreFileSpec": { - "type": "object", - "description": "Restore file spec.", - "properties": { - "path": { - "type": "string", - "description": "Restore file spec path" - }, - "isdir": { - "type": "boolean", - "description": "Restore file spec isdir", - "readOnly": true - } - } - }, - "StorageSyncServiceArray": { - "type": "object", - "description": "Array of StorageSyncServices", - "properties": { - "value": { - "type": "array", - "description": "Collection of StorageSyncServices.", - "items": { - "$ref": "#/definitions/StorageSyncService" - } - } - } - }, - "SyncGroupArray": { - "type": "object", - "description": "Array of SyncGroup", - "properties": { - "value": { - "type": "array", - "description": "Collection of SyncGroup.", - "items": { - "$ref": "#/definitions/SyncGroup" - } - } - } - }, - "CloudEndpointArray": { - "type": "object", - "description": "Array of CloudEndpoint", - "properties": { - "value": { - "type": "array", - "description": "Collection of CloudEndpoint.", - "items": { - "$ref": "#/definitions/CloudEndpoint" - } - } - } - }, - "ServerEndpointArray": { - "description": "Array of ServerEndpoint", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of ServerEndpoint.", - "items": { - "$ref": "#/definitions/ServerEndpoint" - } - } - } - }, - "RegisteredServerArray": { - "description": "Array of RegisteredServer", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of Registered Server.", - "items": { - "$ref": "#/definitions/RegisteredServer" - } - } - } - }, - "WorkflowArray": { - "description": "Array of Workflow", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of workflow items.", - "items": { - "$ref": "#/definitions/Workflow" - } - } - } - }, - "SubscriptionStateProperties": { - "type": "object", - "description": "Subscription State properties." - }, - "PostBackupResponseProperties": { - "type": "object", - "description": "Post Backup Response Properties object.", - "properties": { - "cloudEndpointName": { - "type": "string", - "description": "cloud endpoint Name.", - "readOnly": true - } - } - }, - "StorageSyncServiceUpdateParameters": { - "properties": { - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "The user-specified tags associated with the storage sync service." - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/StorageSyncServiceUpdateProperties", - "description": "The properties of the storage sync service." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "workflowId", + "in": "path", + "description": "workflow Id", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource" + ], + "operationId": "Workflows_Get", + "description": "Get Workflows resource", + "x-ms-examples": { + "Workflows_Get": { + "$ref": "./examples/Workflows_Get.json" + } + }, + "responses": { + "200": { + "description": "Workflow object", + "schema": { + "$ref": "#/definitions/Workflow" }, - "description": "Parameters for updating an Storage sync service." - }, - "StorageSyncServiceUpdateProperties": { - "type": "object", - "description": "Storage Sync Service Update Properties object.", - "properties": {} - }, - "StorageSyncServiceProperties": { - "type": "object", - "description": "Storage Sync Service Properties object.", - "properties": { - "storageSyncServiceStatus": { - "type": "integer", - "description": "Storage Sync service status.", - "readOnly": true - }, - "storageSyncServiceUid": { - "type": "string", - "description": "Storage Sync service Uid", - "readOnly": true - } - } - }, - "WorkflowProperties": { - "type": "object", - "description": "Workflow Properties object.", - "properties": { - "lastStepName": { - "type": "string", - "description": "last step name" - }, - "status": { - "$ref": "#/definitions/WorkflowStatus", - "description": "workflow status." - }, - "operation": { - "$ref": "#/definitions/OperationDirection", - "description": "operation direction." - }, - "steps": { - "type": "string", - "description": "workflow steps" - }, - "lastOperationId": { - "type": "string", - "description": "workflow last operation identifier." - } - } - }, - "SyncGroupProperties": { - "type": "object", - "description": "SyncGroup Properties object.", - "properties": { - "uniqueId": { - "type": "string", - "description": "Unique Id" - }, - "syncGroupStatus": { - "type": "string", - "description": "Sync group status", - "readOnly": true - } - } - }, - "RegisteredServerProperties": { - "type": "object", - "description": "RegisteredServer Properties object.", - "properties": { - "serverCertificate": { - "type": "string", - "description": "Registered Server Certificate" - }, - "agentVersion": { - "type": "string", - "description": "Registered Server Agent Version" - }, - "serverOSVersion": { - "type": "string", - "description": "Registered Server OS Version" - }, - "serverManagementErrorCode": { - "type": "integer", - "description": "Registered Server Management Error Code" - }, - "lastHeartBeat": { - "type": "string", - "description": "Registered Server last heart beat" - }, - "provisioningState": { - "type": "string", - "description": "Registered Server Provisioning State" - }, - "serverRole": { - "type": "string", - "description": "Registered Server serverRole" - }, - "clusterId": { - "type": "string", - "description": "Registered Server clusterId" - }, - "clusterName": { - "type": "string", - "description": "Registered Server clusterName" - }, - "serverId": { - "type": "string", - "description": "Registered Server serverId" - }, - "storageSyncServiceUid": { - "type": "string", - "description": "Registered Server storageSyncServiceUid" - }, - "lastWorkflowId": { - "type": "string", - "description": "Registered Server lastWorkflowId" - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name" - }, - "discoveryEndpointUri": { - "type": "string", - "description": "Resource discoveryEndpointUri" - }, - "resourceLocation": { - "type": "string", - "description": "Resource Location" - }, - "serviceLocation": { - "type": "string", - "description": "Service Location" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "managementEndpointUri": { - "type": "string", - "description": "Management Endpoint Uri" - }, - "monitoringConfiguration": { - "type": "string", - "description": "Monitoring Configuration" - } - } - }, - "CloudEndpointProperties": { - "type": "object", - "description": "CloudEndpoint Properties object.", - "properties": { - "storageAccountResourceId": { - "type": "string", - "description": "Storage Account Resource Id" - }, - "azureFileShareName": { - "type": "string", - "description": "Azure file share name" - }, - "storageAccountTenantId": { - "type": "string", - "description": "Storage Account Tenant Id" - }, - "partnershipId": { - "type": "string", - "description": "Partnership Id" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "backupEnabled": { - "type": "string", - "description": "Backup Enabled", - "readOnly": true - }, - "provisioningState": { - "type": "string", - "description": "CloudEndpoint Provisioning State" - }, - "lastWorkflowId": { - "type": "string", - "description": "CloudEndpoint lastWorkflowId" - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name" - } - } - }, - "ServerEndpointUpdateProperties": { - "type": "object", - "description": "ServerEndpoint Update Properties object.", - "properties": { - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "offlineDataTransfer": { - "$ref": "#/definitions/FeatureStatus", - "description": "Offline data transfer" - }, - "offlineDataTransferShareName": { - "type": "string", - "description": "Offline data transfer share name" - } - } - }, - "ServerEndpointProperties": { - "type": "object", - "description": "ServerEndpoint Properties object.", - "properties": { - "serverLocalPath": { - "$ref": "#/definitions/PhysicalPath", - "description": "Server Local path." - }, - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "serverResourceId": { - "$ref": "#/definitions/ResourceId", - "description": "Server Resource Id." - }, - "provisioningState": { - "type": "string", - "description": "ServerEndpoint Provisioning State", - "readOnly": true - }, - "lastWorkflowId": { - "type": "string", - "description": "ServerEndpoint lastWorkflowId", - "readOnly": true - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name", - "readOnly": true - }, - "syncStatus": { - "type": "object", - "$ref": "#/definitions/ServerEndpointSyncStatus", - "description": "Server Endpoint sync status", - "readOnly": true - }, - "offlineDataTransfer": { - "$ref": "#/definitions/FeatureStatus", - "description": "Offline data transfer" - }, - "offlineDataTransferStorageAccountResourceId": { - "type": "string", - "description": "Offline data transfer storage account resource ID", - "readOnly": true - }, - "offlineDataTransferStorageAccountTenantId": { - "type": "string", - "description": "Offline data transfer storage account tenant ID", - "readOnly": true - }, - "offlineDataTransferShareName": { - "type": "string", - "description": "Offline data transfer share name" - } - } - }, - "ServerEndpointSyncStatus": { - "type": "object", - "description": "Server Endpoint sync status", - "properties": { - "downloadHealth": { - "$ref": "#/definitions/HealthState", - "description": "Download Health Status.", - "readOnly": true - }, - "uploadHealth": { - "$ref": "#/definitions/HealthState", - "description": "Upload Health Status.", - "readOnly": true - }, - "combinedHealth": { - "$ref": "#/definitions/HealthState", - "description": "Combined Health Status.", - "readOnly": true - }, - "syncActivity": { - "$ref": "#/definitions/SyncActivityState", - "description": "Sync activity", - "readOnly": true - }, - "totalPersistentFilesNotSyncingCount": { - "type": "integer", - "format": "int64", - "description": "Total count of persistent files not syncing (combined upload + download). Reserved for future use.", - "readOnly": true - }, - "lastUpdatedTimestamp": { - "type" : "string", - "format" : "date-time", - "description": "Last Updated Timestamp", - "readOnly": true - }, - "uploadStatus": { - "$ref": "#/definitions/SyncSessionStatus", - "description": "Upload Status", - "readOnly": true - }, - "downloadStatus": { - "$ref": "#/definitions/SyncSessionStatus", - "description": "Download Status", - "readOnly": true - }, - "uploadActivity": { - "$ref": "#/definitions/SyncActivityStatus", - "description": "Upload sync activity", - "readOnly": true - }, - "downloadActivity": { - "$ref": "#/definitions/SyncActivityStatus", - "description": "Download sync activity", - "readOnly": true - }, - "offlineDataTransferStatus": { - "$ref": "#/definitions/OfflineDataTransferState", - "description": "Offline Data Transfer State", - "readOnly": true - } - } - }, - "SyncSessionStatus": { - "type": "object", - "description": "Sync Session status object.", - "properties": { - "lastSyncResult": { - "type": "integer", - "format": "int32", - "description": "Last sync result (HResult)", - "readOnly": true - }, - "lastSyncTimestamp": { - "type" : "string", - "format" : "date-time", - "description": "Last sync timestamp", - "readOnly": true - }, - "lastSyncSuccessTimestamp": { - "type" : "string", - "format" : "date-time", - "description": "Last sync success timestamp", - "readOnly": true - }, - "lastSyncPerItemErrorCount": { - "type": "integer", - "format": "int64", - "description": "Last sync per item error count.", - "readOnly": true - }, - "persistentFilesNotSyncingCount": { - "type": "integer", - "format": "int64", - "description": "Count of persistent files not syncing. Reserved for future use.", - "readOnly": true - }, - "transientFilesNotSyncingCount": { - "type": "integer", - "format": "int64", - "description": "Count of transient files not syncing. Reserved for future use.", - "readOnly": true - }, - "filesNotSyncingErrors": { - "type": "array", - "items": { - "$ref": "#/definitions/FilesNotSyncingError" - }, - "description": "Array of per-item errors coming from the last sync session. Reserved for future use.", - "readOnly": true - } - } - }, - "SyncActivityStatus": { - "type": "object", - "description": "Sync Session status object.", - "properties": { - "timestamp": { - "type" : "string", - "format" : "date-time", - "description": "Timestamp when properties were updated", - "readOnly": true - }, - "perItemErrorCount": { - "type": "integer", - "format": "int64", - "description": "Per item error count", - "readOnly": true - }, - "appliedItemCount": { - "type": "integer", - "format": "int64", - "description": "Applied item count.", - "readOnly": true - }, - "totalItemCount": { - "type": "integer", - "format": "int64", - "description": "Total item count (if available)", - "readOnly": true - }, - "appliedBytes": { - "type": "integer", - "format": "int64", - "description": "Applied bytes", - "readOnly": true - }, - "totalBytes": { - "type": "integer", - "format": "int64", - "description": "Total bytes (if available)", - "readOnly": true - } - } - }, - "FilesNotSyncingError": { - "type": "object", - "description": "Files not syncing error object", - "properties": { - "errorCode": { - "type": "integer", - "format": "int32", - "description": "Error code (HResult)", - "readOnly": true - }, - "persistentCount": { - "type": "integer", - "format": "int64", - "description": "Count of persistent files not syncing with the specified error code", - "readOnly": true - }, - "transientCount": { - "type": "integer", - "format": "int64", - "description": "Count of transient files not syncing with the specified error code", - "readOnly": true - } - } - }, - "PhysicalPath": { - "type": "string", - "description": "Server folder used for data synchronization" - }, - "ResourceId": { - "type": "string", - "description": "Arm resource identifier." - }, - "TagsObject": { - "type": "object", - "description": "Tags object." - }, - "FeatureStatus": { - "type": "string", - "description": "Type of the Feature Status", - "enum": [ - "on", - "off" - ] - }, - "HealthState": { - "type": "string", - "description": "Type of the Health state", - "enum": [ - "Healthy", - "Error", - "SyncBlockedForRestore", - "SyncBlockedForChangeDetectionPostRestore", - "NoActivity" - ] - }, - "SyncActivityState": { - "type": "string", - "description": "Type of the sync activity state", - "enum": [ - "Upload", - "Download", - "UploadAndDownload" - ] - }, - "OfflineDataTransferState": { - "type": "string", - "description": "Type of the Health state", - "enum": [ - "InProgress", - "Stopping", - "NotRunning", - "Complete" - ] - }, - "WorkflowStatus": { - "type": "string", - "description": "Type of the Workflow Status", - "enum": [ - "active", - "expired", - "succeeded", - "aborted", - "failed" - ] - }, - "OperationDirection": { - "type": "string", - "description": "Type of the Operation Direction", - "enum": [ - "do", - "undo", - "cancel" - ] - }, - "ProgressType": { - "type": "string", - "description": "Type of the ProgressType", - "enum": [ - "none", - "initialize", - "download", - "upload", - "recall" - ] - } - }, - "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" - } - } - }, - "security": [{ - "azure_auth": [ - "user_impersonation" - ] - }] -} \ No newline at end of file + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}/abort": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "workflowId", + "in": "path", + "description": "workflow Id", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource", + "Actions" + ], + "operationId": "Workflows_Abort", + "description": "Abort the given workflow.", + "x-ms-examples": { + "Workflows_Abort": { + "$ref": "./examples/Workflows_Abort.json" + } + }, + "responses": { + "200": { + "description": "success", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + } + }, + "definitions": { + "StorageSyncError": { + "type": "object", + "description": "Error type", + "properties": { + "error": { + "$ref": "#/definitions/StorageSyncApiError", + "description": "Error details of the given entry." + }, + "innererror": { + "$ref": "#/definitions/StorageSyncApiError", + "description": "Error details of the given entry." + } + } + }, + "StorageSyncApiError": { + "type": "object", + "description": "Error type", + "properties": { + "code": { + "type": "string", + "description": "Error code of the given entry." + }, + "message": { + "type": "string", + "description": "Error message of the given entry." + }, + "target": { + "type": "string", + "description": "Target of the given error entry." + }, + "details": { + "$ref": "#/definitions/StorageSyncErrorDetails", + "description": "Error details of the given entry." + } + } + }, + "StorageSyncErrorDetails": { + "type": "object", + "description": "Error Details object.", + "properties": { + "code": { + "type": "string", + "description": "Error code of the given entry." + }, + "message": { + "type": "string", + "description": "Error message of the given entry." + }, + "target": { + "type": "string", + "description": "Target of the given entry." + } + } + }, + "SubscriptionState": { + "type": "object", + "description": "Subscription State object.", + "properties": { + "state": { + "type": "string", + "description": "State of Azure Subscription", + "enum": [ + "Registered", + "Unregistered", + "Warned", + "Suspended", + "Deleted" + ], + "x-ms-enum": { + "name": "Reason", + "modelAsString": true + } + }, + "istransitioning": { + "type": "boolean", + "description": "Is Transitioning", + "readOnly": true + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SubscriptionStateProperties", + "description": "Subscription state properties." + } + } + }, + "StorageSyncService": { + "type": "object", + "description": "Storage Sync Service object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/StorageSyncServiceProperties", + "description": "Storage Sync Service properties." + } + } + }, + "SyncGroup": { + "type": "object", + "description": "Sync Group object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SyncGroupProperties", + "description": "SyncGroup properties." + } + } + }, + "CloudEndpoint": { + "type": "object", + "description": "Cloud Endpoint object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/CloudEndpointProperties", + "description": "Cloud Endpoint properties." + } + } + }, + "RecallActionParameters": { + "properties": { + "pattern": { + "type": "string", + "description": "Pattern of the files." + }, + "recallPath": { + "type": "string", + "description": "Recall path." + } + }, + "description": "The parameters used when calling recall action on server endpoint." + }, + "StorageSyncServiceCreateParameters": { + "properties": { + "location": { + "type": "string", + "description": "Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed." + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters." + }, + "properties": {} + }, + "required": [ + "location" + ], + "description": "The parameters used when creating a storage sync service." + }, + "SyncGroupCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SyncGroupCreateParametersProperties", + "description": "The parameters used to create the sync group" + } + }, + "description": "The parameters used when creating a sync group." + }, + "SyncGroupCreateParametersProperties": { + "type": "object", + "description": "Sync Group Create Properties object.", + "properties": {} + }, + "CloudEndpointCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/CloudEndpointCreateParametersProperties", + "description": "The parameters used to create the cloud endpoint." + } + }, + "description": "The parameters used when creating a cloud endpoint." + }, + "CloudEndpointCreateParametersProperties": { + "description": "CloudEndpoint Properties object.", + "properties": { + "storageAccountResourceId": { + "type": "string", + "description": "Storage Account Resource Id" + }, + "azureFileShareName": { + "type": "string", + "description": "Azure file share name" + }, + "storageAccountTenantId": { + "type": "string", + "description": "Storage Account Tenant Id" + } + } + }, + "ServerEndpointCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointCreateParametersProperties", + "description": "The parameters used to create the server endpoint." + } + }, + "description": "The parameters used when creating a server endpoint." + }, + "ServerEndpointCreateParametersProperties": { + "description": "ServerEndpoint Properties object.", + "properties": { + "serverLocalPath": { + "$ref": "#/definitions/PhysicalPath", + "description": "Server Local path." + }, + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "serverResourceId": { + "$ref": "#/definitions/ResourceId", + "description": "Server Resource Id." + }, + "offlineDataTransfer": { + "$ref": "#/definitions/FeatureStatus", + "description": "Offline data transfer" + }, + "offlineDataTransferShareName": { + "type": "string", + "description": "Offline data transfer share name" + } + } + }, + "TriggerRolloverRequest": { + "type": "object", + "description": "Trigger Rollover Request.", + "properties": { + "serverCertificate": { + "type": "string", + "description": "Certificate Data" + } + } + }, + "RegisteredServerCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegisteredServerCreateParametersProperties", + "description": "The parameters used to create the registered server." + } + }, + "description": "The parameters used when creating a registered server." + }, + "RegisteredServerCreateParametersProperties": { + "properties": { + "serverCertificate": { + "type": "string", + "description": "Registered Server Certificate" + }, + "agentVersion": { + "type": "string", + "description": "Registered Server Agent Version" + }, + "serverOSVersion": { + "type": "string", + "description": "Registered Server OS Version" + }, + "lastHeartBeat": { + "type": "string", + "description": "Registered Server last heart beat" + }, + "serverRole": { + "type": "string", + "description": "Registered Server serverRole" + }, + "clusterId": { + "type": "string", + "description": "Registered Server clusterId" + }, + "clusterName": { + "type": "string", + "description": "Registered Server clusterName" + }, + "serverId": { + "type": "string", + "description": "Registered Server serverId" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + } + } + }, + "ServerEndpointUpdateParameters": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointUpdateProperties", + "description": "The properties of the server endpoint." + } + }, + "description": "Parameters for updating an Server Endpoint." + }, + "ServerEndpoint": { + "type": "object", + "description": "Server Endpoint object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointProperties", + "description": "Server Endpoint properties." + } + } + }, + "RegisteredServer": { + "type": "object", + "description": "Registered Server resource.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegisteredServerProperties", + "description": "RegisteredServer properties." + } + } + }, + "ResourcesMoveInfo": { + "type": "object", + "description": "Resource Move Info.", + "properties": { + "targetResourceGroup": { + "type": "string", + "description": "Target resource group." + }, + "resources": { + "type": "array", + "description": "Collection of Resources.", + "items": { + "$ref": "#/definitions/ResourceId" + } + } + } + }, + "Workflow": { + "type": "object", + "description": "Workflow resource.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/WorkflowProperties", + "description": "Workflow properties." + } + } + }, + "OperationEntityListResult": { + "description": "The list of storage sync operations.", + "type": "object", + "properties": { + "nextLink": { + "description": "The link used to get the next page of operations.", + "type": "string" + }, + "value": { + "description": "The list of operations.", + "type": "array", + "items": { + "$ref": "#/definitions/OperationEntity" + } + } + } + }, + "OperationEntity": { + "description": "The operation supported by storage sync.", + "type": "object", + "properties": { + "name": { + "description": "Operation name: {provider}/{resource}/{operation}.", + "type": "string" + }, + "display": { + "$ref": "#/definitions/OperationDisplayInfo", + "description": "The operation supported by storage sync." + }, + "origin": { + "type": "string", + "description": "The origin." + } + } + }, + "OperationDisplayInfo": { + "description": "The operation supported by storage sync.", + "type": "object", + "properties": { + "description": { + "description": "The description of the operation.", + "type": "string" + }, + "operation": { + "description": "The action that users can perform, based on their permission level.", + "type": "string" + }, + "provider": { + "description": "Service provider: Microsoft StorageSync.", + "type": "string" + }, + "resource": { + "description": "Resource on which the operation is performed.", + "type": "string" + } + } + }, + "OperationDisplayResource": { + "type": "object", + "description": "Operation Display Resource object.", + "properties": { + "provider": { + "type": "string", + "description": "Operation Display Resource Provider." + }, + "resource": { + "type": "string", + "description": "Operation Display Resource." + }, + "operation": { + "type": "string", + "description": "Operation Display Resource Operation." + }, + "description": { + "type": "string", + "description": "Operation Display Resource Description." + } + } + }, + "CheckNameAvailabilityParameters": { + "properties": { + "name": { + "type": "string", + "description": "The name to check for availability" + }, + "type": { + "type": "string", + "enum": [ + "Microsoft.StorageSync/storageSyncServices" + ], + "x-ms-enum": { + "name": "Type", + "modelAsString": false + }, + "description": "The resource type. Must be set to Microsoft.StorageSync/storageSyncServices" + } + }, + "required": [ + "name", + "type" + ], + "description": "Parameters for a check name availability request." + }, + "CheckNameAvailabilityResult": { + "properties": { + "nameAvailable": { + "readOnly": true, + "type": "boolean", + "description": "Gets a boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or invalid and cannot be used." + }, + "reason": { + "readOnly": true, + "type": "string", + "enum": [ + "Invalid", + "AlreadyExists" + ], + "x-ms-enum": { + "name": "NameAvailabilityReason", + "modelAsString": false + }, + "description": "Gets the reason that a Storage Sync Service name could not be used. The Reason element is only returned if NameAvailable is false." + }, + "message": { + "readOnly": true, + "type": "string", + "description": "Gets an error message explaining the Reason value in more detail." + } + }, + "description": "The CheckNameAvailability operation response." + }, + "PostRestoreRequest": { + "type": "object", + "description": "Post Restore Request", + "properties": { + "partition": { + "type": "string", + "description": "Post Restore partition." + }, + "replicaGroup": { + "type": "string", + "description": "Post Restore replica group." + }, + "requestId": { + "type": "string", + "description": "Post Restore request id." + }, + "azureFileShareUri": { + "type": "string", + "description": "Post Restore Azure file share uri." + }, + "status": { + "type": "string", + "description": "Post Restore Azure status." + }, + "sourceAzureFileShareUri": { + "type": "string", + "description": "Post Restore Azure source azure file share uri." + }, + "failedFileList": { + "type": "string", + "description": "Post Restore Azure failed file list." + }, + "restoreFileSpec": { + "type": "array", + "description": "Post Restore restore file spec array.", + "items": { + "$ref": "#/definitions/RestoreFileSpec", + "description": "Post Restore restore file spec items array." + } + } + } + }, + "PreRestoreRequest": { + "type": "object", + "description": "Pre Restore request object.", + "properties": { + "partition": { + "type": "string", + "description": "Pre Restore partition." + }, + "replicaGroup": { + "type": "string", + "description": "Pre Restore replica group." + }, + "requestId": { + "type": "string", + "description": "Pre Restore request id." + }, + "azureFileShareUri": { + "type": "string", + "description": "Pre Restore Azure file share uri." + }, + "status": { + "type": "string", + "description": "Pre Restore Azure status." + }, + "sourceAzureFileShareUri": { + "type": "string", + "description": "Pre Restore Azure source azure file share uri." + }, + "backupMetadataPropertyBag": { + "type": "string", + "description": "Pre Restore backup metadata property bag." + }, + "restoreFileSpec": { + "type": "array", + "description": "Pre Restore restore file spec array.", + "items": { + "$ref": "#/definitions/RestoreFileSpec", + "description": "Pre Restore restore file spec items array." + } + }, + "pauseWaitForSyncDrainTimePeriodInSeconds": { + "type": "integer", + "description": "Pre Restore pause wait for sync drain time period in seconds." + } + } + }, + "BackupRequest": { + "type": "object", + "description": "Backup request", + "properties": { + "azureFileShare": { + "type": "string", + "description": "Azure File Share." + } + } + }, + "PostBackupResponse": { + "type": "object", + "description": "Post Backup Response", + "properties": { + "backupMetadata": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/PostBackupResponseProperties", + "description": "Post Backup Response Properties" + } + } + }, + "RestoreFileSpec": { + "type": "object", + "description": "Restore file spec.", + "properties": { + "path": { + "type": "string", + "description": "Restore file spec path" + }, + "isdir": { + "type": "boolean", + "description": "Restore file spec isdir", + "readOnly": true + } + } + }, + "StorageSyncServiceArray": { + "type": "object", + "description": "Array of StorageSyncServices", + "properties": { + "value": { + "type": "array", + "description": "Collection of StorageSyncServices.", + "items": { + "$ref": "#/definitions/StorageSyncService" + } + } + } + }, + "SyncGroupArray": { + "type": "object", + "description": "Array of SyncGroup", + "properties": { + "value": { + "type": "array", + "description": "Collection of SyncGroup.", + "items": { + "$ref": "#/definitions/SyncGroup" + } + } + } + }, + "CloudEndpointArray": { + "type": "object", + "description": "Array of CloudEndpoint", + "properties": { + "value": { + "type": "array", + "description": "Collection of CloudEndpoint.", + "items": { + "$ref": "#/definitions/CloudEndpoint" + } + } + } + }, + "ServerEndpointArray": { + "description": "Array of ServerEndpoint", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of ServerEndpoint.", + "items": { + "$ref": "#/definitions/ServerEndpoint" + } + } + } + }, + "RegisteredServerArray": { + "description": "Array of RegisteredServer", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of Registered Server.", + "items": { + "$ref": "#/definitions/RegisteredServer" + } + } + } + }, + "WorkflowArray": { + "description": "Array of Workflow", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of workflow items.", + "items": { + "$ref": "#/definitions/Workflow" + } + } + } + }, + "SubscriptionStateProperties": { + "type": "object", + "description": "Subscription State properties." + }, + "PostBackupResponseProperties": { + "type": "object", + "description": "Post Backup Response Properties object.", + "properties": { + "cloudEndpointName": { + "type": "string", + "description": "cloud endpoint Name.", + "readOnly": true + } + } + }, + "StorageSyncServiceUpdateParameters": { + "properties": { + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "The user-specified tags associated with the storage sync service." + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/StorageSyncServiceUpdateProperties", + "description": "The properties of the storage sync service." + } + }, + "description": "Parameters for updating an Storage sync service." + }, + "StorageSyncServiceUpdateProperties": { + "type": "object", + "description": "Storage Sync Service Update Properties object.", + "properties": {} + }, + "StorageSyncServiceProperties": { + "type": "object", + "description": "Storage Sync Service Properties object.", + "properties": { + "storageSyncServiceStatus": { + "type": "integer", + "description": "Storage Sync service status.", + "readOnly": true + }, + "storageSyncServiceUid": { + "type": "string", + "description": "Storage Sync service Uid", + "readOnly": true + } + } + }, + "WorkflowProperties": { + "type": "object", + "description": "Workflow Properties object.", + "properties": { + "lastStepName": { + "type": "string", + "description": "last step name" + }, + "status": { + "$ref": "#/definitions/WorkflowStatus", + "description": "workflow status." + }, + "operation": { + "$ref": "#/definitions/OperationDirection", + "description": "operation direction." + }, + "steps": { + "type": "string", + "description": "workflow steps" + }, + "lastOperationId": { + "type": "string", + "description": "workflow last operation identifier." + } + } + }, + "SyncGroupProperties": { + "type": "object", + "description": "SyncGroup Properties object.", + "properties": { + "uniqueId": { + "type": "string", + "description": "Unique Id" + }, + "syncGroupStatus": { + "type": "string", + "description": "Sync group status", + "readOnly": true + } + } + }, + "RegisteredServerProperties": { + "type": "object", + "description": "RegisteredServer Properties object.", + "properties": { + "serverCertificate": { + "type": "string", + "description": "Registered Server Certificate" + }, + "agentVersion": { + "type": "string", + "description": "Registered Server Agent Version" + }, + "serverOSVersion": { + "type": "string", + "description": "Registered Server OS Version" + }, + "serverManagementErrorCode": { + "type": "integer", + "description": "Registered Server Management Error Code" + }, + "lastHeartBeat": { + "type": "string", + "description": "Registered Server last heart beat" + }, + "provisioningState": { + "type": "string", + "description": "Registered Server Provisioning State" + }, + "serverRole": { + "type": "string", + "description": "Registered Server serverRole" + }, + "clusterId": { + "type": "string", + "description": "Registered Server clusterId" + }, + "clusterName": { + "type": "string", + "description": "Registered Server clusterName" + }, + "serverId": { + "type": "string", + "description": "Registered Server serverId" + }, + "storageSyncServiceUid": { + "type": "string", + "description": "Registered Server storageSyncServiceUid" + }, + "lastWorkflowId": { + "type": "string", + "description": "Registered Server lastWorkflowId" + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name" + }, + "discoveryEndpointUri": { + "type": "string", + "description": "Resource discoveryEndpointUri" + }, + "resourceLocation": { + "type": "string", + "description": "Resource Location" + }, + "serviceLocation": { + "type": "string", + "description": "Service Location" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "managementEndpointUri": { + "type": "string", + "description": "Management Endpoint Uri" + }, + "monitoringConfiguration": { + "type": "string", + "description": "Monitoring Configuration" + } + } + }, + "CloudEndpointProperties": { + "type": "object", + "description": "CloudEndpoint Properties object.", + "properties": { + "storageAccountResourceId": { + "type": "string", + "description": "Storage Account Resource Id" + }, + "azureFileShareName": { + "type": "string", + "description": "Azure file share name" + }, + "storageAccountTenantId": { + "type": "string", + "description": "Storage Account Tenant Id" + }, + "partnershipId": { + "type": "string", + "description": "Partnership Id" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "backupEnabled": { + "type": "string", + "description": "Backup Enabled", + "readOnly": true + }, + "provisioningState": { + "type": "string", + "description": "CloudEndpoint Provisioning State" + }, + "lastWorkflowId": { + "type": "string", + "description": "CloudEndpoint lastWorkflowId" + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name" + } + } + }, + "ServerEndpointUpdateProperties": { + "type": "object", + "description": "ServerEndpoint Update Properties object.", + "properties": { + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "offlineDataTransfer": { + "$ref": "#/definitions/FeatureStatus", + "description": "Offline data transfer" + }, + "offlineDataTransferShareName": { + "type": "string", + "description": "Offline data transfer share name" + } + } + }, + "ServerEndpointProperties": { + "type": "object", + "description": "ServerEndpoint Properties object.", + "properties": { + "serverLocalPath": { + "$ref": "#/definitions/PhysicalPath", + "description": "Server Local path." + }, + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "serverResourceId": { + "$ref": "#/definitions/ResourceId", + "description": "Server Resource Id." + }, + "provisioningState": { + "type": "string", + "description": "ServerEndpoint Provisioning State", + "readOnly": true + }, + "lastWorkflowId": { + "type": "string", + "description": "ServerEndpoint lastWorkflowId", + "readOnly": true + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name", + "readOnly": true + }, + "syncStatus": { + "type": "object", + "$ref": "#/definitions/ServerEndpointSyncStatus", + "description": "Server Endpoint sync status", + "readOnly": true + }, + "offlineDataTransfer": { + "$ref": "#/definitions/FeatureStatus", + "description": "Offline data transfer" + }, + "offlineDataTransferStorageAccountResourceId": { + "type": "string", + "description": "Offline data transfer storage account resource ID", + "readOnly": true + }, + "offlineDataTransferStorageAccountTenantId": { + "type": "string", + "description": "Offline data transfer storage account tenant ID", + "readOnly": true + }, + "offlineDataTransferShareName": { + "type": "string", + "description": "Offline data transfer share name" + } + } + }, + "ServerEndpointSyncStatus": { + "type": "object", + "description": "Server Endpoint sync status", + "properties": { + "downloadHealth": { + "$ref": "#/definitions/HealthState", + "description": "Download Health Status.", + "readOnly": true + }, + "uploadHealth": { + "$ref": "#/definitions/HealthState", + "description": "Upload Health Status.", + "readOnly": true + }, + "combinedHealth": { + "$ref": "#/definitions/HealthState", + "description": "Combined Health Status.", + "readOnly": true + }, + "syncActivity": { + "$ref": "#/definitions/SyncActivityState", + "description": "Sync activity", + "readOnly": true + }, + "totalPersistentFilesNotSyncingCount": { + "type": "integer", + "format": "int64", + "description": "Total count of persistent files not syncing (combined upload + download). Reserved for future use.", + "readOnly": true + }, + "lastUpdatedTimestamp": { + "type": "string", + "format": "date-time", + "description": "Last Updated Timestamp", + "readOnly": true + }, + "uploadStatus": { + "$ref": "#/definitions/SyncSessionStatus", + "description": "Upload Status", + "readOnly": true + }, + "downloadStatus": { + "$ref": "#/definitions/SyncSessionStatus", + "description": "Download Status", + "readOnly": true + }, + "uploadActivity": { + "$ref": "#/definitions/SyncActivityStatus", + "description": "Upload sync activity", + "readOnly": true + }, + "downloadActivity": { + "$ref": "#/definitions/SyncActivityStatus", + "description": "Download sync activity", + "readOnly": true + }, + "offlineDataTransferStatus": { + "$ref": "#/definitions/OfflineDataTransferState", + "description": "Offline Data Transfer State", + "readOnly": true + } + } + }, + "SyncSessionStatus": { + "type": "object", + "description": "Sync Session status object.", + "properties": { + "lastSyncResult": { + "type": "integer", + "format": "int32", + "description": "Last sync result (HResult)", + "readOnly": true + }, + "lastSyncTimestamp": { + "type": "string", + "format": "date-time", + "description": "Last sync timestamp", + "readOnly": true + }, + "lastSyncSuccessTimestamp": { + "type": "string", + "format": "date-time", + "description": "Last sync success timestamp", + "readOnly": true + }, + "lastSyncPerItemErrorCount": { + "type": "integer", + "format": "int64", + "description": "Last sync per item error count.", + "readOnly": true + }, + "persistentFilesNotSyncingCount": { + "type": "integer", + "format": "int64", + "description": "Count of persistent files not syncing. Reserved for future use.", + "readOnly": true + }, + "transientFilesNotSyncingCount": { + "type": "integer", + "format": "int64", + "description": "Count of transient files not syncing. Reserved for future use.", + "readOnly": true + }, + "filesNotSyncingErrors": { + "type": "array", + "items": { + "$ref": "#/definitions/FilesNotSyncingError" + }, + "description": "Array of per-item errors coming from the last sync session. Reserved for future use.", + "readOnly": true + } + } + }, + "SyncActivityStatus": { + "type": "object", + "description": "Sync Session status object.", + "properties": { + "timestamp": { + "type": "string", + "format": "date-time", + "description": "Timestamp when properties were updated", + "readOnly": true + }, + "perItemErrorCount": { + "type": "integer", + "format": "int64", + "description": "Per item error count", + "readOnly": true + }, + "appliedItemCount": { + "type": "integer", + "format": "int64", + "description": "Applied item count.", + "readOnly": true + }, + "totalItemCount": { + "type": "integer", + "format": "int64", + "description": "Total item count (if available)", + "readOnly": true + }, + "appliedBytes": { + "type": "integer", + "format": "int64", + "description": "Applied bytes", + "readOnly": true + }, + "totalBytes": { + "type": "integer", + "format": "int64", + "description": "Total bytes (if available)", + "readOnly": true + } + } + }, + "FilesNotSyncingError": { + "type": "object", + "description": "Files not syncing error object", + "properties": { + "errorCode": { + "type": "integer", + "format": "int32", + "description": "Error code (HResult)", + "readOnly": true + }, + "persistentCount": { + "type": "integer", + "format": "int64", + "description": "Count of persistent files not syncing with the specified error code", + "readOnly": true + }, + "transientCount": { + "type": "integer", + "format": "int64", + "description": "Count of transient files not syncing with the specified error code", + "readOnly": true + } + } + }, + "PhysicalPath": { + "type": "string", + "description": "Server folder used for data synchronization" + }, + "ResourceId": { + "type": "string", + "description": "Arm resource identifier." + }, + "TagsObject": { + "type": "object", + "description": "Tags object." + }, + "FeatureStatus": { + "type": "string", + "description": "Type of the Feature Status", + "enum": [ + "on", + "off" + ] + }, + "HealthState": { + "type": "string", + "description": "Type of the Health state", + "enum": [ + "Healthy", + "Error", + "SyncBlockedForRestore", + "SyncBlockedForChangeDetectionPostRestore", + "NoActivity" + ] + }, + "SyncActivityState": { + "type": "string", + "description": "Type of the sync activity state", + "enum": [ + "Upload", + "Download", + "UploadAndDownload" + ] + }, + "OfflineDataTransferState": { + "type": "string", + "description": "Type of the Health state", + "enum": [ + "InProgress", + "Stopping", + "NotRunning", + "Complete" + ] + }, + "WorkflowStatus": { + "type": "string", + "description": "Type of the Workflow Status", + "enum": [ + "active", + "expired", + "succeeded", + "aborted", + "failed" + ] + }, + "OperationDirection": { + "type": "string", + "description": "Type of the Operation Direction", + "enum": [ + "do", + "undo", + "cancel" + ] + }, + "ProgressType": { + "type": "string", + "description": "Type of the ProgressType", + "enum": [ + "none", + "initialize", + "download", + "upload", + "recall" + ] + } + }, + "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" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Create.json index 444f6ee5b476..64401be66a5e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Create.json @@ -1,52 +1,52 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2019-03-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2019-03-01", - "parameters": { - "properties": { - "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", - "azureFileShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", - "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", - "friendlyName": "ankushbsubscriptionmgmtmab" - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "backupEnabled" : "false", - "provisioningState": "Succeeded", - "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", - "azureFileShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", - "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", - "friendlyName": "ankushbsubscriptionmgmtmab", - "lastWorkflowId": "storageSyncServices/GATest/workflows/24ba0c4a-348e-419b-8f7a-091d0d9f07a4", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } + "properties": { + "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", + "azureFileShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", + "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", + "friendlyName": "ankushbsubscriptionmgmtmab" + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "backupEnabled": "false", + "provisioningState": "Succeeded", + "storageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage", + "azureFileShareName": "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4", + "storageAccountTenantId": "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"", + "friendlyName": "ankushbsubscriptionmgmtmab", + "lastWorkflowId": "storageSyncServices/GATest/workflows/24ba0c4a-348e-419b-8f7a-091d0d9f07a4", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8RjhDODcwQTItMkFGNi00NDUyLTgzMDgtRjJCQTZEQjI3RkEwfEdFTkVSSUN8NTJCOERBMkYtNjFFMC00QTFGLThEREUtMzM2OTExRjM2N0ZC", + "lastOperationName": "ICreateCloudEndpointWorkflow" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2019-03-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2019-03-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operations/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2019-03-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncservice_1/workflows/c1d54be7-4738-4898-8212-cc36774314f8/operationresults/7ce689b2-0eca-48f5-86f0-0b8d6ceef14a?api-version=2019-03-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Delete.json index e5a3ae565b9e..63cdc3af666d 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Delete.json @@ -1,30 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2019-03-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2019-03-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2019-03-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operations/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2019-03-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/78a71465-77ef-4509-a026-2c0cd8b30208/operationresults/2d7f573a-7acd-4a3c-9425-fed7d029c69d?api-version=2019-03-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Get.json index 8f0164dc0038..0a99eb4b90d7 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_Get.json @@ -1,33 +1,33 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleCloudEndpoint_1", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "", - "azureFileShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleCloudEndpoint_1", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "", + "azureFileShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5USEZTVjJ8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", + "lastOperationName": "ICreateCloudEndpointWorkflow" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_ListBySyncGroup.json index 3faa7f7d8748..4ae586f43ea3 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_ListBySyncGroup.json @@ -1,34 +1,36 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "CEP_Restore_08-08_Test112", + "properties": { + "provisioningState": "Succeeded", + "storageAccountResourceId": "", + "azureFileShareName": "", + "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", + "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", + "friendlyName": "SampleAzureFileShareName_1", + "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", + "lastOperationName": "ICreateCloudEndpointWorkflow" }, - "body": { - "value": [{ - "name": "CEP_Restore_08-08_Test112", - "properties": { - "provisioningState": "Succeeded", - "storageAccountResourceId": "", - "azureFileShareName": "", - "storageAccountTenantId": "\"a4d1b191-c1af-4cef-a14b-f670e0beea52\"", - "lastWorkflowId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/a377fdd5-949a-40ab-9629-06cd0e9852f9", - "friendlyName": "SampleAzureFileShareName_1", - "partnershipId": "1|U0VSVkVSQVNTWU5DQ0xJRU5Udfsdfdsfs8MTkxNjYwQ0QtNkExQS00RjhDLTk3ODctQTZCRUQyMDZBMUREfEdFTkVSSUN8M0EwNDgyODMtMzM4Ri00MDAyLUE5REQtQTUwRkRBRENCMzky", - "lastOperationName": "ICreateCloudEndpointWorkflow" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SyncGroup_Restore_08-08_Test112/cloudEndpoints/CEP_Restore_08-08_Test112", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PostBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PostBackup.json index 0178740a938b..cac0869824d8 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PostBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PostBackup.json @@ -1,34 +1,34 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" - }, - "api-version": "2019-03-01" + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "backupMetadata": { - "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" - } - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2019-03-01&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "backupMetadata": { + "cloudEndpointName": "subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/cloudEndpoints/SampleCloudEndpoint_1" } + } + }, + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/baa40401-b043-4d1b-a80b-cb4e79fa1398?api-version=2019-03-01&resourcetype=PostBackupResourceType&ifxctx3=1847a938-7638-4d1b-943c-96ff2f8a2ec8", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PostRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PostRestore.json index 2bf9f4591a30..8864542cc705 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PostRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PostRestore.json @@ -1,48 +1,49 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "status": "Succeeded", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "sourceAzureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "status": "Succeeded", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false }, - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir", + "isdir": true + }, + { + "path": "MyDir/SubDir", + "isdir": false }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-03-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + }, + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-03-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PreBackup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PreBackup.json index a77233ac295c..58c600012986 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PreBackup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PreBackup.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "api-version": "2019-03-01", - "parameters" : { - "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" + "parameters": { + "azureFileShare": "https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare" } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-03-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "x-ms-location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-03-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PreRestore.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PreRestore.json index c137b73984b7..4979953efe0c 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PreRestore.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_PreRestore.json @@ -1,46 +1,47 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2019-03-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2019-03-01", - "parameters": { - "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", - "restoreFileSpec": [ - { - "path": "text1.txt", - "isdir" : false - }, - { - "path": "MyDir", - "isdir" : true - }, - { - "path": "MyDir/SubDir", - "isdir" : false - }, - { - "path": "MyDir/SubDir/File1.pdf", - "isdir" : false - }] - } - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "azureFileShareUri": "https://hfsazbackupdevintncus2.file.core.test-cint.azure-test.net/sampleFileShare", + "restoreFileSpec": [ + { + "path": "text1.txt", + "isdir": false + }, + { + "path": "MyDir", + "isdir": true }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-03-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + { + "path": "MyDir/SubDir", + "isdir": false + }, + { + "path": "MyDir/SubDir/File1.pdf", + "isdir": false } + ] + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-03-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_RestoreHeatbeat.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_RestoreHeatbeat.json index 944c6e8337fd..4e7f4c83685d 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_RestoreHeatbeat.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_RestoreHeatbeat.json @@ -1,19 +1,19 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": "" - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": "" } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_TriggerChangeDetection.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_TriggerChangeDetection.json index 4cfbbd70877c..b11499da6fc6 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_TriggerChangeDetection.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/CloudEndpoints_TriggerChangeDetection.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "cloudEndpointName": "SampleCloudEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "parameters": { - "directoryPath": "NewDirectory", - "changeDetectionMode": "Recursive" - }, - "api-version": "2019-03-01" + "directoryPath": "NewDirectory", + "changeDetectionMode": "Recursive" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-03-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "202": { + "headers": { + "x-ms-location": "https: //management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/HfsMabFS1/syncGroups/HfsMabDS1/cloudEndpoints/HfsMabCE1/operationresults/d67cfb91-1b13-4710-8226-83467bb5b66d?api-version=2019-03-01&resourcetype=preBackupResourceType&ifxctx3=005909ad-d156-4514-a26e-dd1cc566db64", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/OperationStatus_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/OperationStatus_Get.json index 4c456749470c..0e772ccbfb96 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/OperationStatus_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/OperationStatus_Get.json @@ -1,25 +1,25 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "locationName": "westus", - "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "operationId": "14b50e24-f68d-4b29-a882-38be9dfb8bd1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "14b50e24-f68d-4b29-a882-38be9dfb8bd1", - "status": "Succeeded", - "startTime": "2019-05-09T23:53:21.7328715Z", - "endTime": "2019-05-09T23:53:23.3735483Z", - "error": null - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "locationName": "westus", + "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "operationId": "14b50e24-f68d-4b29-a882-38be9dfb8bd1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "14b50e24-f68d-4b29-a882-38be9dfb8bd1", + "status": "Succeeded", + "startTime": "2019-05-09T23:53:21.7328715Z", + "endTime": "2019-05-09T23:53:23.3735483Z", + "error": null + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Operations_List.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Operations_List.json index 16ba8f34fe0e..d027bda3e3d6 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Operations_List.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Operations_List.json @@ -1,193 +1,214 @@ { - "parameters": { - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "body": { - "value": [{ - "name": "Microsoft.StorageSync/storageSyncServices/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Read Storage Sync Services", - "description": "Read any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Create or Update Storage Sync Services", - "description": "Create or Update any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Storage Sync Services", - "operation": "Delete Storage Sync Services", - "description": "Delete any Storage Sync Services" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Read Sync Groups", - "description": "Read any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Create or Update Sync Groups", - "description": "Create or Update any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Sync Groups", - "operation": "Delete Sync Groups", - "description": "Delete any Sync Groups" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Read Cloud Endpoints", - "description": "Read any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Create or Update Cloud Endpoints", - "description": "Create or Update any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "Delete Cloud Endpoints", - "description": "Delete any Cloud Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prebackup", - "description": "Call this action before backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postbackup", - "description": "Call this action after backup" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "prerestore", - "description": "Call this action before restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Cloud Endpoints", - "operation": "postrestore", - "description": "Call this action after restore" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Read Server Endpoints", - "description": "Read any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Create or Update Server Endpoints", - "description": "Create or Update any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "Delete Server Endpoints", - "description": "Delete any Server Endpoints" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Server Endpoints", - "operation": "recallAction", - "description": "Call this action to recall files to a server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Read Registered Server", - "description": "Read any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Create or Update Registered Server", - "description": "Create or Update any Registered Server" - }, - "origin": "User" - }, { - "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", - "display": { - "provider": "Microsoft.StorageSync", - "resource": "Registered Server", - "operation": "Delete Registered Server", - "description": "Delete any Registered Server" - }, - "origin": "User" - }], - "nextLink": "" - } - } + "parameters": { + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.StorageSync/storageSyncServices/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Read Storage Sync Services", + "description": "Read any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Create or Update Storage Sync Services", + "description": "Create or Update any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Storage Sync Services", + "operation": "Delete Storage Sync Services", + "description": "Delete any Storage Sync Services" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Read Sync Groups", + "description": "Read any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Create or Update Sync Groups", + "description": "Create or Update any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Sync Groups", + "operation": "Delete Sync Groups", + "description": "Delete any Sync Groups" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Read Cloud Endpoints", + "description": "Read any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Create or Update Cloud Endpoints", + "description": "Create or Update any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "Delete Cloud Endpoints", + "description": "Delete any Cloud Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prebackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prebackup", + "description": "Call this action before backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postbackup/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postbackup", + "description": "Call this action after backup" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/prerestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "prerestore", + "description": "Call this action before restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints/postrestore/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Cloud Endpoints", + "operation": "postrestore", + "description": "Call this action after restore" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Read Server Endpoints", + "description": "Read any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Create or Update Server Endpoints", + "description": "Create or Update any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "Delete Server Endpoints", + "description": "Delete any Server Endpoints" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints/recallAction/action", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Server Endpoints", + "operation": "recallAction", + "description": "Call this action to recall files to a server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/read", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Read Registered Server", + "description": "Read any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/write", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Create or Update Registered Server", + "description": "Create or Update any Registered Server" + }, + "origin": "User" + }, + { + "name": "Microsoft.StorageSync/storageSyncServices/registeredServers/delete", + "display": { + "provider": "Microsoft.StorageSync", + "resource": "Registered Server", + "operation": "Delete Registered Server", + "description": "Delete any Registered Server" + }, + "origin": "User" + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Create.json index 4fd1d56982f1..8586245421c6 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Create.json @@ -1,61 +1,61 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "\"080d4133-bdb5-40a0-96a0-71a6057bfe9a\"", - "parameters": { - "name": "SampleServer-prod3.redmond.corp.microsoft.com", - "properties": { - "serverRole": "Standalone", - "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", - "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", - "serverOSVersion": "10.0.14393.0", - "agentVersion": "1.0.277.0" - }, - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }, - "api-version": "2019-03-01" + "name": "SampleServer-prod3.redmond.corp.microsoft.com", + "properties": { + "serverRole": "Standalone", + "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"", + "lastHeartBeat": "\"2017-08-08T18:29:06.470652Z\"", + "serverOSVersion": "10.0.14393.0", + "agentVersion": "1.0.277.0" + }, + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers", - "name": "ankushb-prod3.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - } - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2019-03-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2019-03-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/530a0384-50ac-456d-8240-9d6621404151", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers", + "name": "ankushb-prod3.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" } + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operations/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2019-03-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/63e554fd-4d27-4b91-8249-2fc697de7c69/operationresults/d4b00aa1-7ae0-47f0-9fa7-7ed3ea527bc9?api-version=2019-03-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Delete.json index 6041e210dab0..33571b131a5d 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Delete.json @@ -1,28 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", - "api-version": "2019-03-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "41166691-ab03-43e9-ab3e-0330eda162ac", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2019-03-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2019-03-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - } - } -} \ No newline at end of file + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operations/20675646-8111-4158-954b-6b637e922cbf?api-version=2019-03-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/cdb963fd-ea36-457e-9222-f85754ff398c/operationresults/20675646-8111-4158-954b-6b637e922cbf?api-version=2019-03-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } + }, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Get.json index a414b48efbe9..ad1016ce2dbe 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_Get.json @@ -1,41 +1,41 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_ListByStorageSyncService.json index 0d9090e9f1cc..368b07315fc9 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_ListByStorageSyncService.json @@ -1,42 +1,44 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", + "properties": { + "agentVersion": "3.1.5.0", + "serverOSVersion": "10.0.14393.0", + "serverManagementErrorCode": 0, + "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", + "provisioningState": "Succeeded", + "serverRole": "Standalone", + "clusterId": "\"00000000-0000-0000-0000-000000000000\"", + "clusterName": "", + "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", + "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", + "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", + "lastOperationName": "ICreateRegisteredServerWorkflow", + "friendlyName": "afscv-2304-139", + "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", + "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", + "resourceLocation": "westus", + "serviceLocation": "westus" }, - "body": { - "value": [{ - "name": "SampleRegisteredServer_1.redmond.corp.microsoft.com", - "properties": { - "agentVersion": "3.1.5.0", - "serverOSVersion": "10.0.14393.0", - "serverManagementErrorCode": 0, - "lastHeartBeat": "\"2018-06-11T21:50:40.5840543Z\"", - "provisioningState": "Succeeded", - "serverRole": "Standalone", - "clusterId": "\"00000000-0000-0000-0000-000000000000\"", - "clusterName": "", - "serverId": "\"3635ca8b-5cc8-4a5c-bd43-c2de5ad8dc64\"", - "storageSyncServiceUid": "\"4aa14534-1c61-483b-b6a6-9630a76f109a\"", - "lastWorkflowId": "storageSyncServices/CV_FileStore_F1D485AA/workflows/4eecfbcf-9537-4b61-8fee-aaa3ace11c44", - "lastOperationName": "ICreateRegisteredServerWorkflow", - "friendlyName": "afscv-2304-139", - "managementEndpointUri": "\"https://kailanitest99.one.microsoft.com:443/\"", - "discoveryEndpointUri": "\"https://kailanitest99.one.microsoft.com:443\"", - "resourceLocation": "westus", - "serviceLocation": "westus" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "type": "Microsoft.StorageSync/storageSyncServices/registeredServers" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_TriggerRollover.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_TriggerRollover.json index 20e5373752e0..1cd0c85fb40d 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_TriggerRollover.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/RegisteredServers_TriggerRollover.json @@ -1,29 +1,29 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "serverId": "d166ca76-dad2-49df-b409-12345642d730", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "serverId": "d166ca76-dad2-49df-b409-12345642d730", - "parameters": { - "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"" - }, - "api-version": "2019-03-01" + "serverCertificate": "\"MIIDFjCCAf6gAwIBAgIQQS+DS8uhc4VNzUkTw7wbRjANBgkqhkiG9w0BAQ0FADAzMTEwLwYDVQQDEyhhbmt1c2hiLXByb2QzLnJlZG1vbmQuY29ycC5taWNyb3NvZnQuY29tMB4XDTE3MDgwMzE3MDQyNFoXDTE4MDgwNDE3MDQyNFowMzExMC8GA1UEAxMoYW5rdXNoYi1wcm9kMy5yZWRtb25kLmNvcnAubWljcm9zb2Z0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALDRvV4gmsIy6jGDPiHsXmvgVP749NNP7DopdlbHaNhjFmYINHl0uWylyaZmgJrROt2mnxN/zEyJtGnqYHlzUr4xvGq/qV5pqgdB9tag/sw9i22gfe9PRZ0FmSOZnXMbLYgLiDFqLtut5gHcOuWMj03YnkfoBEKlFBxWbagvW2yxz/Sxi9OVSJOKCaXra0RpcIHrO/KFl6ho2eE1/7Ykmfa8hZvSdoPd5gHdLiQcMB/pxq+mWp1fI6c8vFZoDu7Atn+NXTzYPKUxKzaisF12TsaKpohUsJpbB3Wocb0F5frn614D2pg14ERB5otjAMWw1m65csQWPI6dP8KIYe0+QPkCAwEAAaMmMCQwIgYDVR0lAQH/BBgwFgYIKwYBBQUHAwIGCisGAQQBgjcKAwwwDQYJKoZIhvcNAQENBQADggEBAA4RhVIBkw34M1RwakJgHvtjsOFxF1tVQA941NtLokx1l2Z8+GFQkcG4xpZSt+UN6wLerdCbnNhtkCErWUDeaT0jxk4g71Ofex7iM04crT4iHJr8mi96/XnhnkTUs+GDk12VgdeeNEczMZz+8Mxw9dJ5NCnYgTwO0SzGlclRsDvjzkLo8rh2ZG6n/jKrEyNXXo+hOqhupij0QbRP2Tvexdfw201kgN1jdZify8XzJ8Oi0bTS0KpJf2pNPOlooK2bjMUei9ANtEdXwwfVZGWvVh6tJjdv6k14wWWJ1L7zhA1IIVb1J+sQUzJji5iX0DrezjTz1Fg+gAzITaA/WsuujlM=\"" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47222", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d222" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47222", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d222" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Create.json index 5c6671c58678..a0144a3ae843 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Create.json @@ -1,60 +1,60 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters": { - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "tierFilesOlderThanDays": 0, - "offlineDataTransfer": "on", - "offlineDataTransferShareName": "myfileshare" - }, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, - "api-version": "2019-03-01" + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "tierFilesOlderThanDays": 0, + "offlineDataTransfer": "on", + "offlineDataTransferShareName": "myfileshare" + }, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": null, - "offlineDataTransfer": "on", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": null, + "offlineDataTransfer": "on", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Delete.json index c41846b55853..55cffea74f82 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Delete.json @@ -1,27 +1,27 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2019-03-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2019-03-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2019-03-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operations/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2019-03-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/9122d971-147b-4dba-bada-1ceb7c9311e5/operationresults/6dce076b-1df5-4449-829b-69b24f38b5a1?api-version=2019-03-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Get.json index 9fa2ebf16706..98f14d0f7a61 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Get.json @@ -1,81 +1,81 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "syncActivity": "UploadAndDownload", + "totalPersistentFilesNotSyncingCount": null, + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 1000, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "syncActivity": "UploadAndDownload", - "totalPersistentFilesNotSyncingCount": null, - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 1000, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "uploadActivity": { - "timestamp": "2018-06-11T23:32:51.1057915Z", - "perItemErrorCount": 300, - "appliedItemCount": 1000, - "totalItemCount": 2300, - "appliedBytes": 57348983, - "totalBytes": 1958367412 - }, - "downloadActivity": { - "timestamp": "2018-06-11T23:32:51.1057915Z", - "perItemErrorCount": 0, - "appliedItemCount": 100, - "totalItemCount": 300, - "appliedBytes": 94805587, - "totalBytes": 19583674 - }, - "offlineDataTransferStatus": "InProgress" - }, - "offlineDataTransfer": "on", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } - } + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "uploadActivity": { + "timestamp": "2018-06-11T23:32:51.1057915Z", + "perItemErrorCount": 300, + "appliedItemCount": 1000, + "totalItemCount": 2300, + "appliedBytes": 57348983, + "totalBytes": 1958367412 + }, + "downloadActivity": { + "timestamp": "2018-06-11T23:32:51.1057915Z", + "perItemErrorCount": 0, + "appliedItemCount": 100, + "totalItemCount": 300, + "appliedBytes": 94805587, + "totalBytes": 19583674 + }, + "offlineDataTransferStatus": "InProgress" + }, + "offlineDataTransfer": "on", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" + }, + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_ListBySyncGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_ListBySyncGroup.json index 21ab8e1969db..4f2c3938881a 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_ListBySyncGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_ListBySyncGroup.json @@ -1,120 +1,123 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_1", + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "friendlyName": "somemachine.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 0, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "syncActivity": null, + "totalPersistentFilesNotSyncingCount": null, + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 1000, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "uploadActivity": null, + "downloadActivity": null, + "offlineDataTransferStatus": "Complete" + }, + "offlineDataTransfer": "on", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" }, - "body": { - "value": [{ - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_1", - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "friendlyName": "somemachine.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 0, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "syncActivity": null, - "totalPersistentFilesNotSyncingCount": null, - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 1000, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "uploadActivity": null, - "downloadActivity": null, - "offlineDataTransferStatus": "Complete" - }, - "offlineDataTransfer": "on", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }, { - "name": "SampleServerEndpoint_2", - "properties": { - "serverLocalPath": "D:\\SampleServerEndpoint_2", - "cloudTiering": "on", - "volumeFreeSpacePercent": 80, - "friendlyName": "somemachine2.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/40b1dc00-d7d9-4721-a1e9-ab60139b830a", - "lastOperationName": "ICreateServerEndpointWorkflow", - "tierFilesOlderThanDays" : 5, - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Healthy", - "combinedHealth": "Healthy", - "syncActivity": "Upload", - "totalPersistentFilesNotSyncingCount": null, - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "uploadActivity": { - "timestamp": "2018-06-11T23:32:51.1057915Z", - "perItemErrorCount": 300, - "appliedItemCount": 1000, - "totalItemCount": 2300, - "appliedBytes": 57348983, - "totalBytes": 1958367412 - }, - "downloadActivity": null, - "offlineDataTransferStatus": "NotRunning" - }, - "offlineDataTransfer": "off" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_2", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - }] - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + }, + { + "name": "SampleServerEndpoint_2", + "properties": { + "serverLocalPath": "D:\\SampleServerEndpoint_2", + "cloudTiering": "on", + "volumeFreeSpacePercent": 80, + "friendlyName": "somemachine2.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/40b1dc00-d7d9-4721-a1e9-ab60139b830a", + "lastOperationName": "ICreateServerEndpointWorkflow", + "tierFilesOlderThanDays": 5, + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Healthy", + "combinedHealth": "Healthy", + "syncActivity": "Upload", + "totalPersistentFilesNotSyncingCount": null, + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "uploadActivity": { + "timestamp": "2018-06-11T23:32:51.1057915Z", + "perItemErrorCount": 300, + "appliedItemCount": 1000, + "totalItemCount": 2300, + "appliedBytes": 57348983, + "totalBytes": 1958367412 + }, + "downloadActivity": null, + "offlineDataTransferStatus": "NotRunning" + }, + "offlineDataTransfer": "off" + }, + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_2", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Recall.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Recall.json index 79364fc29d3c..cde72b2b1a3e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Recall.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Recall.json @@ -1,31 +1,31 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", + "api-version": "2019-03-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "api-version": "2019-03-01", - "parameters": { - "pattern": "", - "recallPath": "" - } + "pattern": "", + "recallPath": "" + } + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operations/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75/operationresults/fe680c98-5725-49c8-b0dc-5e29745f752b?api-version=2019-03-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Update.json index 70e28357aaa8..1c4321796c94 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/ServerEndpoints_Update.json @@ -1,85 +1,85 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "cloudEndpointName": "SampleCloudEndpoint_1", + "syncGroupName": "SampleSyncGroup_1", + "serverEndpointName": "SampleServerEndpoint_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "cloudEndpointName": "SampleCloudEndpoint_1", - "syncGroupName": "SampleSyncGroup_1", - "serverEndpointName": "SampleServerEndpoint_1", - "parameters" : { - "properties": { - "cloudTiering": "off", - "volumeFreeSpacePercent": 100, - "tierFilesOlderThanDays" : 0, - "offlineDataTransfer": "off" - } - }, - "api-version": "2019-03-01" + "properties": { + "cloudTiering": "off", + "volumeFreeSpacePercent": 100, + "tierFilesOlderThanDays": 0, + "offlineDataTransfer": "off" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleServerEndpoint_1", + "properties": { + "serverLocalPath": "C:\\data_quota2", + "cloudTiering": "off", + "volumeFreeSpacePercent": 20, + "tierFilesOlderThanDays": 0, + "friendlyName": "somemachine2.redmond.corp.microsoft.com", + "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", + "provisioningState": "Succeeded", + "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", + "lastOperationName": "ICreateServerEndpointWorkflow", + "syncStatus": { + "downloadHealth": "Healthy", + "uploadHealth": "Error", + "combinedHealth": "Error", + "syncActivity": null, + "totalPersistentFilesNotSyncingCount": null, + "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", + "uploadStatus": { + "lastSyncResult": -2134351810, + "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", + "lastSyncSuccessTimestamp": null, + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null + }, + "downloadStatus": { + "lastSyncResult": 0, + "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", + "lastSyncPerItemErrorCount": 0, + "persistentFilesNotSyncingCount": null, + "transientFilesNotSyncingCount": null, + "filesNotSyncingErrors": null }, - "body": { - "name": "SampleServerEndpoint_1", - "properties": { - "serverLocalPath": "C:\\data_quota2", - "cloudTiering": "off", - "volumeFreeSpacePercent": 20, - "tierFilesOlderThanDays": 0, - "friendlyName": "somemachine2.redmond.corp.microsoft.com", - "serverResourceId": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/anpintDemoRG/providers/kailanitest07.one.microsoft.com/storageSyncServices/healthdemo1/registeredServers/f94e2944-b48d-4e5b-bdc7-c48ab3712659", - "provisioningState": "Succeeded", - "lastWorkflowId": "storageSyncServices/healthDemo1/workflows/569afb5c-7172-4cf8-a8ea-d987f727f11b", - "lastOperationName": "ICreateServerEndpointWorkflow", - "syncStatus": { - "downloadHealth": "Healthy", - "uploadHealth": "Error", - "combinedHealth": "Error", - "syncActivity": null, - "totalPersistentFilesNotSyncingCount": null, - "lastUpdatedTimestamp": "2018-06-11T23:32:51.1057915Z", - "uploadStatus": { - "lastSyncResult": -2134351810, - "lastSyncTimestamp": "2018-06-11T23:32:51.1057915Z", - "lastSyncSuccessTimestamp": null, - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "downloadStatus": { - "lastSyncResult": 0, - "lastSyncTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncSuccessTimestamp": "2018-06-11T23:28:33.9217334Z", - "lastSyncPerItemErrorCount": 0, - "persistentFilesNotSyncingCount": null, - "transientFilesNotSyncingCount": null, - "filesNotSyncingErrors": null - }, - "uploadActivity": null, - "downloadActivity": null, - "offlineDataTransferStatus": "Stopping" - }, - "offlineDataTransfer": "off", - "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", - "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "offlineDataTransferShareName": "myfileshare" - }, - "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" - } + "uploadActivity": null, + "downloadActivity": null, + "offlineDataTransferStatus": "Stopping" + }, + "offlineDataTransfer": "off", + "offlineDataTransferStorageAccountResourceId": "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/myRG/providers/Microsoft.Storage/storageAccounts/mysa", + "offlineDataTransferStorageAccountTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "offlineDataTransferShareName": "myfileshare" }, - "202": { - "headers": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2019-03-01", - "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2019-03-01", - "Retry-After": "10", - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "id": "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1/serverEndpoints/SampleServerEndpoint_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operations/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2019-03-01", + "Location": "https://management.azure.com/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Swagger_08-09_Test212/workflows/3af798a9-26fd-44e7-a121-a4ad65f451bd/operationresults/ef2a30f4-9bb8-40e7-b403-5d6d3dc67a3c?api-version=2019-03-01", + "Retry-After": "10", + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json index 9bea7b871b5d..d92e7c82158e 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json @@ -1,20 +1,20 @@ { + "parameters": { + "api-version": "2019-03-01", + "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", + "locationName": "westus", "parameters": { - "api-version": "2019-03-01", - "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", - "locationName": "westus", - "parameters": { - "name": "newstoragesyncservicename", - "type": "Microsoft.StorageSync/storageSyncServices" - } - }, - "responses": { - "200": { - "body": { - "nameAvailable": false, - "reason": "AlreadyExists", - "message": "An account named 'newstoragesyncservicename' is already in use." - } - } + "name": "newstoragesyncservicename", + "type": "Microsoft.StorageSync/storageSyncServices" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": false, + "reason": "AlreadyExists", + "message": "An account named 'newstoragesyncservicename' is already in use." + } + } + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServiceCheckNameAvailability_Available.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServiceCheckNameAvailability_Available.json index 8b13eb776604..917a8ff49ce8 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServiceCheckNameAvailability_Available.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServiceCheckNameAvailability_Available.json @@ -1,18 +1,18 @@ { + "parameters": { + "api-version": "2019-03-01", + "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", + "locationName": "westus", "parameters": { - "api-version": "2019-03-01", - "subscriptionId": "5c6bc8e1-1eaf-4192-94d8-58ce463ac86c", - "locationName": "westus", - "parameters": { - "name": "newstoragesyncservicename", - "type": "Microsoft.StorageSync/storageSyncServices" - } - }, - "responses": { - "200": { - "body": { - "nameAvailable": true - } - } + "name": "newstoragesyncservicename", + "type": "Microsoft.StorageSync/storageSyncServices" } -} \ No newline at end of file + }, + "responses": { + "200": { + "body": { + "nameAvailable": true + } + } + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Create.json index d2b8d22769f2..aef912cd9ad2 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Create.json @@ -1,25 +1,25 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "parameters": { - "location": "WestUS", - "tags": {}, - "properties": {} - }, - "api-version": "2019-03-01" + "location": "WestUS", + "tags": {}, + "properties": {} }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Delete.json index b655a4a44651..485f32d41c6c 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Delete.json @@ -1,14 +1,12 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - }, - "204": { - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Get.json index 5609cd409055..77f3c43be588 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Get.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_ListByResourceGroup.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_ListByResourceGroup.json index d4fc8c2635ba..a4ed4fb7e0ce 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_ListByResourceGroup.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_ListByResourceGroup.json @@ -1,48 +1,52 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_ListBySubscription.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_ListBySubscription.json index a4bd85c6d612..81dc34dfee45 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_ListBySubscription.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_ListBySubscription.json @@ -1,47 +1,51 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" }, - "body": { - "value": [{ - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"3d1bf292-0f2a-4cc1-a3e1-60f35800e40c\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_2", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", - "type": "Microsoft.StorageSync/storageSyncServices" - }, { - "name": "SampleStorageSyncService_3", - "location": "WestUS", - "tags": {}, - "properties": { - "storageSyncServiceStatus": 0, - "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", - "type": "Microsoft.StorageSync/storageSyncServices" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_2", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"2de01144-72da-4d7f-9d0c-e858855114a8\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_2", + "type": "Microsoft.StorageSync/storageSyncServices" + }, + { + "name": "SampleStorageSyncService_3", + "location": "WestUS", + "tags": {}, + "properties": { + "storageSyncServiceStatus": 0, + "storageSyncServiceUid": "\"b2c58ee5-933e-462c-8a9e-b30f2bdd8fa3\"" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_3", + "type": "Microsoft.StorageSync/storageSyncServices" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Update.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Update.json index ce97565b223f..f8e5efe21a56 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Update.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/StorageSyncServices_Update.json @@ -1,30 +1,30 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2019-03-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2019-03-01", - "parameters": { - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {} - } - }, - "responses": { - "200": { - "body": { - "name": "SampleStorageSyncService_1", - "location": "WestUS", - "tags": { - "Environment": "Test", - "Dept": "IT" - }, - "properties": {}, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", - "type": "Microsoft.StorageSync/storageSyncServices" - } - } + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {} } + }, + "responses": { + "200": { + "body": { + "name": "SampleStorageSyncService_1", + "location": "WestUS", + "tags": { + "Environment": "Test", + "Dept": "IT" + }, + "properties": {}, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1", + "type": "Microsoft.StorageSync/storageSyncServices" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Create.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Create.json index 87e5968e1df8..66279ce86dfc 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Create.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Create.json @@ -1,25 +1,25 @@ { + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-03-01", "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-03-01", - "parameters": { - "properties": {}, - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - }, - "responses": { - "200": { - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "properties": {}, + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" } + }, + "responses": { + "200": { + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "7868e4ee-8ddd-4a2d-941b-0041f6052a8a" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + } + } } diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Delete.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Delete.json index c9711625b428..22fee2a1550b 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Delete.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Delete.json @@ -1,19 +1,18 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-03-01" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - }, - "204": { - } - } -} \ No newline at end of file + "204": {} + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Get.json index 44836ec3ad0a..b3f406e15fb3 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_Get.json @@ -1,26 +1,26 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "syncGroupName": "SampleSyncGroup_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "syncGroupName": "SampleSyncGroup_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_ListByStorageSyncService.json index 0f0c5960e1a7..5687f640851c 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/SyncGroups_ListByStorageSyncService.json @@ -1,27 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "SampleSyncGroup_1", + "properties": { + "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", + "syncGroupStatus": "0" }, - "body": { - "value": [{ - "name": "SampleSyncGroup_1", - "properties": { - "uniqueId": "191660cd-6a1a-4f8c-9787-a6bed206a1dd", - "syncGroupStatus": "0" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", - "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SSS_Restore_08-08_Test112/syncGroups/SampleSyncGroup_1", + "type": "Microsoft.StorageSync/storageSyncServices/syncGroups" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_Abort.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_Abort.json index 812a719498ee..e90c5456a510 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_Abort.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_Abort.json @@ -1,17 +1,17 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "7ffd50b3-5574-478d-9ff2-9371bc42ce68", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_Get.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_Get.json index bdc26f686265..af1e57cb45eb 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_Get.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_Get.json @@ -1,29 +1,29 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" - }, - "body": { - "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "properties": { - "status": "succeeded", - "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", - "operation": "do", - "lastStepName": "runServerJob", - "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "type": "Microsoft.StorageSync/storageSyncServices/workflows" - } - } + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "workflowId": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "properties": { + "status": "succeeded", + "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", + "operation": "do", + "lastStepName": "runServerJob", + "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" + }, + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "type": "Microsoft.StorageSync/storageSyncServices/workflows" + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_ListByStorageSyncService.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_ListByStorageSyncService.json index b2c769bc76a9..9eee8be702c2 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_ListByStorageSyncService.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/examples/Workflows_ListByStorageSyncService.json @@ -1,30 +1,32 @@ { - "parameters": { - "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", - "resourceGroupName": "SampleResourceGroup_1", - "storageSyncServiceName": "SampleStorageSyncService_1", - "api-version": "2019-03-01" - }, - "responses": { - "200": { - "headers": { - "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", - "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + "parameters": { + "subscriptionId": "52b8da2f-61e0-4a1f-8dde-336911f367fb", + "resourceGroupName": "SampleResourceGroup_1", + "storageSyncServiceName": "SampleStorageSyncService_1", + "api-version": "2019-03-01" + }, + "responses": { + "200": { + "headers": { + "x-ms-request-id": "74e55a4d-1c6f-46de-9a8d-278e53a47403", + "x-ms-correlation-request-id": "d166ca76-dad2-49df-b409-d2acfd42d730" + }, + "body": { + "value": [ + { + "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", + "properties": { + "status": "succeeded", + "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", + "operation": "do", + "lastStepName": "runServerJob", + "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" }, - "body": { - "value": [{ - "name": "828219ea-083e-48b5-89ea-8fd9991b2e75", - "properties": { - "status": "succeeded", - "lastOperationId": "\"fe680c98-5725-49c8-b0dc-5e29745f752b\"", - "operation": "do", - "lastStepName": "runServerJob", - "steps": "[{\"name\":\"validateInput\",\"friendlyName\":\"validateInput\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"newServerEndpoint\",\"friendlyName\":\"newServerEndpoint\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"updateReplicaGroupCertificates\",\"friendlyName\":\"updateReplicaGroupCertificates\",\"status\":\"Succeeded\",\"error\":null},{\"name\":\"runServerJob\",\"friendlyName\":\"runServerJob\",\"status\":\"Succeeded\",\"error\":null}]" - }, - "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", - "type": "Microsoft.StorageSync/storageSyncServices/workflows" - }] - } - } + "id": "/subscriptions/3a048283-338f-4002-a9dd-a50fdadcb392/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/workflows/828219ea-083e-48b5-89ea-8fd9991b2e75", + "type": "Microsoft.StorageSync/storageSyncServices/workflows" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/storagesync.json b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/storagesync.json index c0039fb505f2..4752aa4664a9 100644 --- a/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/storagesync.json +++ b/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2019-03-01/storagesync.json @@ -1,3872 +1,4129 @@ { - "swagger": "2.0", - "info": { - "title": "Microsoft Storage Sync", - "description": "Microsoft Storage Sync Service API", - "version": "2019-03-01", - "x-ms-code-generation-settings": { - "name": "StorageSyncManagementClient" - } - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/providers/Microsoft.StorageSync/operations": { - "get": { - "tags": [ - "ResourceProvider", - "Operations" - ], - "operationId": "Operations_List", - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "description": "Lists all of the available Storage Sync Rest API operations.", - "x-ms-examples": { - "Operations_List": { - "$ref": "./examples/Operations_List.json" - } - }, - "responses": { - "200": { - "description": "Array of operations resources in the Resource Provider", - "schema": { - "$ref": "#/definitions/OperationEntityListResult" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "deprecated": false, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/locations/{locationName}/checkNameAvailability": { - "post": { - "tags": [ - "StorageSyncService" - ], - "operationId": "StorageSyncServices_CheckNameAvailability", - "x-ms-examples": { - "StorageSyncServiceCheckNameAvailability_Available": { - "$ref": "./examples/StorageSyncServiceCheckNameAvailability_Available.json" - }, - "StorageSyncServiceCheckNameAvailability_AlreadyExists": { - "$ref": "./examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json" - } - }, - "description": "Check the give namespace name availability.", - "parameters": [{ - "name": "locationName", - "in": "path", - "required": true, - "type": "string", - "description": "The desired region for the name check." - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityParameters" - }, - "description": "Parameters to check availability of the given namespace name" - }], - "responses": { - "200": { - "description": "check availability returned successfully.", - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityResult" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Storage Sync Service resource name.", - "required": true, - "schema": { - "$ref": "#/definitions/StorageSyncServiceCreateParameters" - } - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Create", - "description": "Create a new StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Create": { - "$ref": "./examples/StorageSyncServices_Create.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object created/updated", - "schema": { - "$ref": "#/definitions/StorageSyncService" - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Get", - "description": "Get a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Get": { - "$ref": "./examples/StorageSyncServices_Get.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object", - "schema": { - "$ref": "#/definitions/StorageSyncService" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - }, - "patch": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Storage Sync Service resource.", - "schema": { - "$ref": "#/definitions/StorageSyncServiceUpdateParameters" - } - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Update", - "description": "Patch a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Update": { - "$ref": "./examples/StorageSyncServices_Update.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object created/updated", - "schema": { - "$ref": "#/definitions/StorageSyncService" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "swagger": "2.0", + "info": { + "title": "Microsoft Storage Sync", + "description": "Microsoft Storage Sync Service API", + "version": "2019-03-01", + "x-ms-code-generation-settings": { + "name": "StorageSyncManagementClient" + } + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/providers/Microsoft.StorageSync/operations": { + "get": { + "tags": [ + "ResourceProvider", + "Operations" + ], + "operationId": "Operations_List", + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "description": "Lists all of the available Storage Sync Rest API operations.", + "x-ms-examples": { + "Operations_List": { + "$ref": "./examples/Operations_List.json" + } + }, + "responses": { + "200": { + "description": "Array of operations resources in the Resource Provider", + "schema": { + "$ref": "#/definitions/OperationEntityListResult" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_Delete", - "description": "Delete a given StorageSyncService.", - "x-ms-examples": { - "StorageSyncServices_Delete": { - "$ref": "./examples/StorageSyncServices_Delete.json" - } - }, - "responses": { - "200": { - "description": "Storage Sync Service object was deleted.", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "204": { - "description": "Storage Sync Service Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_ListByResourceGroup", - "description": "Get a StorageSyncService list by Resource group name.", - "x-ms-examples": { - "StorageSyncServices_ListByResourceGroup": { - "$ref": "./examples/StorageSyncServices_ListByResourceGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of registered Storage Sync Service resources in the Resource Group", - "schema": { - "$ref": "#/definitions/StorageSyncServiceArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/storageSyncServices": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }], - "tags": [ - "StorageSyncServices Resource" - ], - "operationId": "StorageSyncServices_ListBySubscription", - "description": "Get a StorageSyncService list by subscription.", - "x-ms-examples": { - "StorageSyncServices_ListBySubscription": { - "$ref": "./examples/StorageSyncServices_ListBySubscription.json" - } - }, - "responses": { - "200": { - "description": "Array of registered Storage Sync Service resources in the subscription.", - "schema": { - "$ref": "#/definitions/StorageSyncServiceArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_ListByStorageSyncService", - "description": "Get a SyncGroup List.", - "x-ms-examples": { - "SyncGroups_ListByStorageSyncService": { - "$ref": "./examples/SyncGroups_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Sync Group resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/SyncGroupArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Sync Group Body", - "required": true, - "schema": { - "$ref": "#/definitions/SyncGroupCreateParameters" - } - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Create", - "description": "Create a new SyncGroup.", - "x-ms-examples": { - "SyncGroups_Create": { - "$ref": "./examples/SyncGroups_Create.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object", - "schema": { - "$ref": "#/definitions/SyncGroup" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "deprecated": false, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/locations/{locationName}/checkNameAvailability": { + "post": { + "tags": [ + "StorageSyncService" + ], + "operationId": "StorageSyncServices_CheckNameAvailability", + "x-ms-examples": { + "StorageSyncServiceCheckNameAvailability_Available": { + "$ref": "./examples/StorageSyncServiceCheckNameAvailability_Available.json" + }, + "StorageSyncServiceCheckNameAvailability_AlreadyExists": { + "$ref": "./examples/StorageSyncServiceCheckNameAvailability_AlreadyExists.json" + } + }, + "description": "Check the give namespace name availability.", + "parameters": [ + { + "name": "locationName", + "in": "path", + "required": true, + "type": "string", + "description": "The desired region for the name check." + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityParameters" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Get", - "description": "Get a given SyncGroup.", - "x-ms-examples": { - "SyncGroups_Get": { - "$ref": "./examples/SyncGroups_Get.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object", - "schema": { - "$ref": "#/definitions/SyncGroup" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "description": "Parameters to check availability of the given namespace name" + } + ], + "responses": { + "200": { + "description": "check availability returned successfully.", + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityResult" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Storage Sync Service resource name.", + "required": true, + "schema": { + "$ref": "#/definitions/StorageSyncServiceCreateParameters" + } + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Create", + "description": "Create a new StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Create": { + "$ref": "./examples/StorageSyncServices_Create.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object created/updated", + "schema": { + "$ref": "#/definitions/StorageSyncService" + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Get", + "description": "Get a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Get": { + "$ref": "./examples/StorageSyncServices_Get.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object", + "schema": { + "$ref": "#/definitions/StorageSyncService" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "SyncGroup Resource" - ], - "operationId": "SyncGroups_Delete", - "description": "Delete a given SyncGroup.", - "x-ms-examples": { - "SyncGroups_Delete": { - "$ref": "./examples/SyncGroups_Delete.json" - } - }, - "responses": { - "200": { - "description": "Sync Group object was deleted", - "headers": { - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint resource.", - "required": true, - "schema": { - "$ref": "#/definitions/CloudEndpointCreateParameters" - } - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Create", - "description": "Create a new CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Create": { - "$ref": "./examples/CloudEndpoints_Create.json" - } - }, - "responses": { - "200": { - "description": "Cloud Endpoint object", - "schema": { - "$ref": "#/definitions/CloudEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Retry-After": { - "description": "Retry After", - "type": "string" - }, - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "patch": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Storage Sync Service resource.", + "schema": { + "$ref": "#/definitions/StorageSyncServiceUpdateParameters" + } + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Update", + "description": "Patch a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Update": { + "$ref": "./examples/StorageSyncServices_Update.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object created/updated", + "schema": { + "$ref": "#/definitions/StorageSyncService" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Get", - "description": "Get a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Get": { - "$ref": "./examples/CloudEndpoints_Get.json" - } - }, - "responses": { - "200": { - "description": "Cloud Endpoint object", - "schema": { - "$ref": "#/definitions/CloudEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_Delete", + "description": "Delete a given StorageSyncService.", + "x-ms-examples": { + "StorageSyncServices_Delete": { + "$ref": "./examples/StorageSyncServices_Delete.json" + } + }, + "responses": { + "200": { + "description": "Storage Sync Service object was deleted.", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "204": { + "description": "Storage Sync Service Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_ListByResourceGroup", + "description": "Get a StorageSyncService list by Resource group name.", + "x-ms-examples": { + "StorageSyncServices_ListByResourceGroup": { + "$ref": "./examples/StorageSyncServices_ListByResourceGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of registered Storage Sync Service resources in the Resource Group", + "schema": { + "$ref": "#/definitions/StorageSyncServiceArray" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_Delete", - "description": "Delete a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_Delete": { - "$ref": "./examples/CloudEndpoints_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Retry-After": { - "description": "Retry After", - "type": "string" - }, - "x-ms-request-id": { - "description": "Request id", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource" - ], - "operationId": "CloudEndpoints_ListBySyncGroup", - "description": "Get a CloudEndpoint List.", - "x-ms-examples": { - "CloudEndpoints_ListBySyncGroup": { - "$ref": "./examples/CloudEndpoints_ListBySyncGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of Cloud Endpoint resources in Sync Group", - "schema": { - "$ref": "#/definitions/CloudEndpointArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prebackup": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Backup request.", - "required": true, - "schema": { - "$ref": "#/definitions/BackupRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PreBackup", - "description": "Pre Backup a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PreBackup": { - "$ref": "./examples/CloudEndpoints_PreBackup.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postbackup": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Backup request.", - "required": true, - "schema": { - "$ref": "#/definitions/BackupRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PostBackup", - "description": "Post Backup a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PostBackup": { - "$ref": "./examples/CloudEndpoints_PostBackup.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "schema": { - "$ref": "#/definitions/PostBackupResponse" - }, - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prerestore": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/PreRestoreRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PreRestore", - "description": "Pre Restore a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PreRestore": { - "$ref": "./examples/CloudEndpoints_PreRestore.json" - } - }, - "responses": { - "200": { - "description": "Ok" - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/restoreheartbeat": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_restoreheartbeat", - "description": "Restore Heartbeat a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_restoreheartbeat": { - "$ref": "./examples/CloudEndpoints_RestoreHeatbeat.json" - } - }, - "responses": { - "200": { - "description": "Restore Heartbeat Operation has ran successfully.", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postrestore": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Cloud Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/PostRestoreRequest" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Backup Restore" - ], - "operationId": "CloudEndpoints_PostRestore", - "description": "Post Restore a given CloudEndpoint.", - "x-ms-examples": { - "CloudEndpoints_PostRestore": { - "$ref": "./examples/CloudEndpoints_PostRestore.json" - } - }, - "responses": { - "200": { - "description": "Ok" - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/triggerChangeDetection": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "cloudEndpointName", - "in": "path", - "description": "Name of Cloud Endpoint object.", - "required": true, - "type": "string" - }, - { - "name": "parameters", - "in": "body", - "description": "Trigger Change Detection Action parameters.", - "required": true, - "schema": { - "$ref": "#/definitions/TriggerChangeDetectionParameters" - } - }], - "tags": [ - "CloudEndpoint Resource", - "Actions", - "Change Detection" - ], - "operationId": "CloudEndpoints_TriggerChangeDetection", - "description": "Triggers detection of changes performed on Azure File share connected to the specified Azure File Sync Cloud Endpoint.", - "x-ms-examples": { - "CloudEndpoints_TriggerChangeDetection": { - "$ref": "./examples/CloudEndpoints_TriggerChangeDetection.json" - } - }, - "responses": { - "200": { - "description": "Ok" - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}": { - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Server Endpoint object.", - "required": true, - "schema": { - "$ref": "#/definitions/ServerEndpointCreateParameters" - } - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Create", - "description": "Create a new ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Create": { - "$ref": "./examples/ServerEndpoints_Create.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.StorageSync/storageSyncServices": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + } + ], + "tags": [ + "StorageSyncServices Resource" + ], + "operationId": "StorageSyncServices_ListBySubscription", + "description": "Get a StorageSyncService list by subscription.", + "x-ms-examples": { + "StorageSyncServices_ListBySubscription": { + "$ref": "./examples/StorageSyncServices_ListBySubscription.json" + } + }, + "responses": { + "200": { + "description": "Array of registered Storage Sync Service resources in the subscription.", + "schema": { + "$ref": "#/definitions/StorageSyncServiceArray" }, - "patch": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Any of the properties applicable in PUT request.", - "schema": { - "$ref": "#/definitions/ServerEndpointUpdateParameters" - } - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Update", - "description": "Patch a given ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Update": { - "$ref": "./examples/ServerEndpoints_Update.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_ListByStorageSyncService", + "description": "Get a SyncGroup List.", + "x-ms-examples": { + "SyncGroups_ListByStorageSyncService": { + "$ref": "./examples/SyncGroups_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Sync Group resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/SyncGroupArray" }, - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Get", - "description": "Get a ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Get": { - "$ref": "./examples/ServerEndpoints_Get.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "schema": { - "$ref": "#/definitions/ServerEndpoint" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Sync Group Body", + "required": true, + "schema": { + "$ref": "#/definitions/SyncGroupCreateParameters" + } + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Create", + "description": "Create a new SyncGroup.", + "x-ms-examples": { + "SyncGroups_Create": { + "$ref": "./examples/SyncGroups_Create.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object", + "schema": { + "$ref": "#/definitions/SyncGroup" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_Delete", - "description": "Delete a given ServerEndpoint.", - "x-ms-examples": { - "ServerEndpoints_Delete": { - "$ref": "./examples/ServerEndpoints_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }], - "tags": [ - "ServerEndpoint Resource" - ], - "operationId": "ServerEndpoints_ListBySyncGroup", - "description": "Get a ServerEndpoint list.", - "x-ms-examples": { - "ServerEndpoints_ListBySyncGroup": { - "$ref": "./examples/ServerEndpoints_ListBySyncGroup.json" - } - }, - "responses": { - "200": { - "description": "Array of Server Endpoint resources in Sync Group", - "schema": { - "$ref": "#/definitions/ServerEndpointArray" - }, - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}/recallAction": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "syncGroupName", - "in": "path", - "description": "Name of Sync Group resource.", - "required": true, - "type": "string" - }, { - "name": "serverEndpointName", - "in": "path", - "description": "Name of Server Endpoint object.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Recall Action object.", - "required": true, - "schema": { - "$ref": "#/definitions/RecallActionParameters" - } - }], - "tags": [ - "ServerEndpoint Resource", - "Actions" - ], - "operationId": "ServerEndpoints_recallAction", - "description": "Recall a server endpoint.", - "x-ms-examples": { - "ServerEndpoints_recallAction": { - "$ref": "./examples/ServerEndpoints_Recall.json" - } - }, - "responses": { - "200": { - "description": "Server Endpoint object", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_ListByStorageSyncService", - "description": "Get a given registered server list.", - "x-ms-examples": { - "RegisteredServers_ListByStorageSyncService": { - "$ref": "./examples/RegisteredServers_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Registered Server resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/RegisteredServerArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Get", - "description": "Get a given registered server.", - "x-ms-examples": { - "RegisteredServers_Get": { - "$ref": "./examples/RegisteredServers_Get.json" - } - }, - "responses": { - "200": { - "description": "Registered Server resources in Sync Group", - "schema": { - "$ref": "#/definitions/RegisteredServer" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Get", + "description": "Get a given SyncGroup.", + "x-ms-examples": { + "SyncGroups_Get": { + "$ref": "./examples/SyncGroups_Get.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object", + "schema": { + "$ref": "#/definitions/SyncGroup" }, - "put": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Registered Server object.", - "required": true, - "schema": { - "$ref": "#/definitions/RegisteredServerCreateParameters" - } - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Create", - "description": "Add a new registered server.", - "x-ms-examples": { - "RegisteredServers_Create": { - "$ref": "./examples/RegisteredServers_Create.json" - } - }, - "responses": { - "200": { - "description": "Registered Server resources in Sync Group", - "schema": { - "$ref": "#/definitions/RegisteredServer" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Azure-AsyncOperation": { - "description": "Operation Status Location URI", - "type": "string" - }, - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "SyncGroup Resource" + ], + "operationId": "SyncGroups_Delete", + "description": "Delete a given SyncGroup.", + "x-ms-examples": { + "SyncGroups_Delete": { + "$ref": "./examples/SyncGroups_Delete.json" + } + }, + "responses": { + "200": { + "description": "Sync Group object was deleted", + "headers": { + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint resource.", + "required": true, + "schema": { + "$ref": "#/definitions/CloudEndpointCreateParameters" + } + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Create", + "description": "Create a new CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Create": { + "$ref": "./examples/CloudEndpoints_Create.json" + } + }, + "responses": { + "200": { + "description": "Cloud Endpoint object", + "schema": { + "$ref": "#/definitions/CloudEndpoint" }, - "delete": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "GUID identifying the on-premises server.", - "required": true, - "type": "string" - }], - "tags": [ - "RegisteredServer Resource" - ], - "operationId": "RegisteredServers_Delete", - "description": "Delete the given registered server.", - "x-ms-examples": { - "RegisteredServers_Delete": { - "$ref": "./examples/RegisteredServers_Delete.json" - } - }, - "responses": { - "200": { - "description": "Ok", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "204": { - "description": "Resource doesn't exist" - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}/triggerRollover": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "serverId", - "in": "path", - "description": "Server Id", - "required": true, - "type": "string" - }, { - "name": "parameters", - "in": "body", - "description": "Body of Trigger Rollover request.", - "required": true, - "schema": { - "$ref": "#/definitions/TriggerRolloverRequest" - } - }], - "tags": [ - "RegisteredServer Resource", - "Actions" - ], - "operationId": "RegisteredServers_triggerRollover", - "description": "Triggers Server certificate rollover.", - "x-ms-examples": { - "RegisteredServers_triggerRollover": { - "$ref": "./examples/RegisteredServers_TriggerRollover.json" - } - }, - "responses": { - "200": { - "description": "Trigger Rollover success status", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "202": { - "description": "Asynchronous Operation Status Location", - "headers": { - "Location": { - "description": "Operation Status Location URI", - "type": "string" - }, - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-long-running-operation": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource" - ], - "operationId": "Workflows_ListByStorageSyncService", - "description": "Get a Workflow List", - "x-ms-examples": { - "Workflows_ListByStorageSyncService": { - "$ref": "./examples/Workflows_ListByStorageSyncService.json" - } - }, - "responses": { - "200": { - "description": "Array of Workflow resources in Storage Sync Service", - "schema": { - "$ref": "#/definitions/WorkflowArray" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "workflowId", - "in": "path", - "description": "workflow Id", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource" - ], - "operationId": "Workflows_Get", - "description": "Get Workflows resource", - "x-ms-examples": { - "Workflows_Get": { - "$ref": "./examples/Workflows_Get.json" - } - }, - "responses": { - "200": { - "description": "Workflow object", - "schema": { - "$ref": "#/definitions/Workflow" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}/abort": { - "post": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "storageSyncServiceName", - "in": "path", - "description": "Name of Storage Sync Service resource.", - "required": true, - "type": "string" - }, { - "name": "workflowId", - "in": "path", - "description": "workflow Id", - "required": true, - "type": "string" - }], - "tags": [ - "Workflow Resource", - "Actions" - ], - "operationId": "Workflows_Abort", - "description": "Abort the given workflow.", - "x-ms-examples": { - "Workflows_Abort": { - "$ref": "./examples/Workflows_Abort.json" - } - }, - "responses": { - "200": { - "description": "success", - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/locations/{locationName}/workflows/{workflowId}/operations/{operationId}": { - "get": { - "parameters": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" - }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" - }, { - "name": "locationName", - "in": "path", - "required": true, - "type": "string", - "description": "The desired region to obtain information from." - }, { - "name": "workflowId", - "in": "path", - "description": "workflow Id", - "required": true, - "type": "string" - }, { - "name": "operationId", - "in": "path", - "description": "operation Id", - "required": true, - "type": "string" - }], - "tags": [ - "Operation Status" - ], - "operationId": "OperationStatus_Get", - "description": "Get Operation status", - "x-ms-examples": { - "Workflows_Get": { - "$ref": "./examples/OperationStatus_Get.json" - } - }, - "responses": { - "200": { - "description": "Operation Status", - "schema": { - "$ref": "#/definitions/OperationStatus" - }, - "headers": { - "x-ms-request-id": { - "description": "request id.", - "type": "string" - }, - "x-ms-correlation-request-id": { - "description": "correlation request id.", - "type": "string" - } - } - }, - "default": { - "description": "Error message indicating why the operation failed.", - "schema": { - "$ref": "#/definitions/StorageSyncError" - } - } - } - } - } - }, - "definitions": { - "StorageSyncError": { - "type": "object", - "description": "Error type", - "properties": { - "error": { - "$ref": "#/definitions/StorageSyncApiError", - "description": "Error details of the given entry." - }, - "innererror": { - "$ref": "#/definitions/StorageSyncApiError", - "description": "Error details of the given entry." - } - } - }, - "StorageSyncApiError": { - "type": "object", - "description": "Error type", - "properties": { - "code": { - "type": "string", - "description": "Error code of the given entry." - }, - "message": { - "type": "string", - "description": "Error message of the given entry." - }, - "target": { - "type": "string", - "description": "Target of the given error entry." - }, - "details": { - "$ref": "#/definitions/StorageSyncErrorDetails", - "description": "Error details of the given entry." - } - } - }, - "StorageSyncErrorDetails": { - "type": "object", - "description": "Error Details object.", - "properties": { - "code": { - "type": "string", - "description": "Error code of the given entry." - }, - "message": { - "type": "string", - "description": "Error message of the given entry." - }, - "target": { - "type": "string", - "description": "Target of the given entry." - } - } - }, - "SubscriptionState": { - "type": "object", - "description": "Subscription State object.", - "properties": { - "state": { - "type": "string", - "description": "State of Azure Subscription", - "enum": [ - "Registered", - "Unregistered", - "Warned", - "Suspended", - "Deleted" - ], - "x-ms-enum": { - "name": "Reason", - "modelAsString": true - } - }, - "istransitioning": { - "type": "boolean", - "description": "Is Transitioning", - "readOnly": true - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SubscriptionStateProperties", - "description": "Subscription state properties." - } - } - }, - "StorageSyncService": { - "type": "object", - "description": "Storage Sync Service object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/StorageSyncServiceProperties", - "description": "Storage Sync Service properties." - } - } - }, - "SyncGroup": { - "type": "object", - "description": "Sync Group object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SyncGroupProperties", - "description": "SyncGroup properties." - } - } - }, - "CloudEndpoint": { - "type": "object", - "description": "Cloud Endpoint object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/CloudEndpointProperties", - "description": "Cloud Endpoint properties." - } - } - }, - "TriggerChangeDetectionParameters": { - "properties": { - "directoryPath": { - "type": "string", - "description": "Relative path to a directory Azure File share for which change detection is to be performed." - }, - "changeDetectionMode": { - "type": "string", - "description": "Change Detection Mode. Applies to a directory specified in directoryPath parameter.", - "enum": [ - "Default", - "Recursive" - ], - "x-ms-enum": { - "name": "changeDetectionMode", - "modelAsString": true - } - }, - "paths": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of relative paths on the Azure File share to be included in the change detection. Can be files and directories." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Retry-After": { + "description": "Retry After", + "type": "string" + }, + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Get", + "description": "Get a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Get": { + "$ref": "./examples/CloudEndpoints_Get.json" + } + }, + "responses": { + "200": { + "description": "Cloud Endpoint object", + "schema": { + "$ref": "#/definitions/CloudEndpoint" }, - "description": "The parameters used when calling trigger change detection action on cloud endpoint." - }, - "RecallActionParameters": { - "properties": { - "pattern": { - "type": "string", - "description": "Pattern of the files." - }, - "recallPath": { - "type": "string", - "description": "Recall path." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_Delete", + "description": "Delete a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_Delete": { + "$ref": "./examples/CloudEndpoints_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Retry-After": { + "description": "Retry After", + "type": "string" + }, + "x-ms-request-id": { + "description": "Request id", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource" + ], + "operationId": "CloudEndpoints_ListBySyncGroup", + "description": "Get a CloudEndpoint List.", + "x-ms-examples": { + "CloudEndpoints_ListBySyncGroup": { + "$ref": "./examples/CloudEndpoints_ListBySyncGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of Cloud Endpoint resources in Sync Group", + "schema": { + "$ref": "#/definitions/CloudEndpointArray" }, - "description": "The parameters used when calling recall action on server endpoint." - }, - "StorageSyncServiceCreateParameters": { - "properties": { - "location": { - "type": "string", - "description": "Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed." - }, - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters." - }, - "properties": {} + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prebackup": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Backup request.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PreBackup", + "description": "Pre Backup a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PreBackup": { + "$ref": "./examples/CloudEndpoints_PreBackup.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postbackup": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Backup request.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PostBackup", + "description": "Post Backup a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PostBackup": { + "$ref": "./examples/CloudEndpoints_PostBackup.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "schema": { + "$ref": "#/definitions/PostBackupResponse" }, - "required": [ - "location" - ], - "description": "The parameters used when creating a storage sync service." - }, - "SyncGroupCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/SyncGroupCreateParametersProperties", - "description": "The parameters used to create the sync group" - } + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/prerestore": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/PreRestoreRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PreRestore", + "description": "Pre Restore a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PreRestore": { + "$ref": "./examples/CloudEndpoints_PreRestore.json" + } + }, + "responses": { + "200": { + "description": "Ok" + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/restoreheartbeat": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_restoreheartbeat", + "description": "Restore Heartbeat a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_restoreheartbeat": { + "$ref": "./examples/CloudEndpoints_RestoreHeatbeat.json" + } + }, + "responses": { + "200": { + "description": "Restore Heartbeat Operation has ran successfully.", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/postrestore": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Cloud Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/PostRestoreRequest" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Backup Restore" + ], + "operationId": "CloudEndpoints_PostRestore", + "description": "Post Restore a given CloudEndpoint.", + "x-ms-examples": { + "CloudEndpoints_PostRestore": { + "$ref": "./examples/CloudEndpoints_PostRestore.json" + } + }, + "responses": { + "200": { + "description": "Ok" + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName}/triggerChangeDetection": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "cloudEndpointName", + "in": "path", + "description": "Name of Cloud Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Trigger Change Detection Action parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/TriggerChangeDetectionParameters" + } + } + ], + "tags": [ + "CloudEndpoint Resource", + "Actions", + "Change Detection" + ], + "operationId": "CloudEndpoints_TriggerChangeDetection", + "description": "Triggers detection of changes performed on Azure File share connected to the specified Azure File Sync Cloud Endpoint.", + "x-ms-examples": { + "CloudEndpoints_TriggerChangeDetection": { + "$ref": "./examples/CloudEndpoints_TriggerChangeDetection.json" + } + }, + "responses": { + "200": { + "description": "Ok" + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}": { + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Server Endpoint object.", + "required": true, + "schema": { + "$ref": "#/definitions/ServerEndpointCreateParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Create", + "description": "Create a new ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Create": { + "$ref": "./examples/ServerEndpoints_Create.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "description": "The parameters used when creating a sync group." - }, - "SyncGroupCreateParametersProperties": { - "type": "object", - "description": "Sync Group Create Properties object.", - "properties": {} - }, - "CloudEndpointCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/CloudEndpointCreateParametersProperties", - "description": "The parameters used to create the cloud endpoint." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "patch": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Any of the properties applicable in PUT request.", + "schema": { + "$ref": "#/definitions/ServerEndpointUpdateParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Update", + "description": "Patch a given ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Update": { + "$ref": "./examples/ServerEndpoints_Update.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "description": "The parameters used when creating a cloud endpoint." - }, - "CloudEndpointCreateParametersProperties": { - "description": "CloudEndpoint Properties object.", - "properties": { - "storageAccountResourceId": { - "type": "string", - "description": "Storage Account Resource Id" - }, - "azureFileShareName": { - "type": "string", - "description": "Azure file share name" - }, - "storageAccountTenantId": { - "type": "string", - "description": "Storage Account Tenant Id" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - } - } - }, - "ServerEndpointCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointCreateParametersProperties", - "description": "The parameters used to create the server endpoint." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Get", + "description": "Get a ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Get": { + "$ref": "./examples/ServerEndpoints_Get.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "schema": { + "$ref": "#/definitions/ServerEndpoint" }, - "description": "The parameters used when creating a server endpoint." - }, - "ServerEndpointCreateParametersProperties": { - "description": "ServerEndpoint Properties object.", - "properties": { - "serverLocalPath": { - "$ref": "#/definitions/PhysicalPath", - "description": "Server Local path." - }, - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "serverResourceId": { - "$ref": "#/definitions/ResourceId", - "description": "Server Resource Id." - }, - "offlineDataTransfer": { - "$ref": "#/definitions/FeatureStatus", - "description": "Offline data transfer" - }, - "offlineDataTransferShareName": { - "type": "string", - "description": "Offline data transfer share name" - } - } - }, - "TriggerRolloverRequest": { - "type": "object", - "description": "Trigger Rollover Request.", - "properties": { - "serverCertificate": { - "type": "string", - "description": "Certificate Data" - } - } - }, - "RegisteredServerCreateParameters": { - "type": "object", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegisteredServerCreateParametersProperties", - "description": "The parameters used to create the registered server." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_Delete", + "description": "Delete a given ServerEndpoint.", + "x-ms-examples": { + "ServerEndpoints_Delete": { + "$ref": "./examples/ServerEndpoints_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "ServerEndpoint Resource" + ], + "operationId": "ServerEndpoints_ListBySyncGroup", + "description": "Get a ServerEndpoint list.", + "x-ms-examples": { + "ServerEndpoints_ListBySyncGroup": { + "$ref": "./examples/ServerEndpoints_ListBySyncGroup.json" + } + }, + "responses": { + "200": { + "description": "Array of Server Endpoint resources in Sync Group", + "schema": { + "$ref": "#/definitions/ServerEndpointArray" }, - "description": "The parameters used when creating a registered server." - }, - "RegisteredServerCreateParametersProperties": { - "properties": { - "serverCertificate": { - "type": "string", - "description": "Registered Server Certificate" - }, - "agentVersion": { - "type": "string", - "description": "Registered Server Agent Version" - }, - "serverOSVersion": { - "type": "string", - "description": "Registered Server OS Version" - }, - "lastHeartBeat": { - "type": "string", - "description": "Registered Server last heart beat" - }, - "serverRole": { - "type": "string", - "description": "Registered Server serverRole" - }, - "clusterId": { - "type": "string", - "description": "Registered Server clusterId" - }, - "clusterName": { - "type": "string", - "description": "Registered Server clusterName" - }, - "serverId": { - "type": "string", - "description": "Registered Server serverId" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - } - } - }, - "ServerEndpointUpdateParameters": { - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointUpdateProperties", - "description": "The properties of the server endpoint." - } + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName}/recallAction": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "syncGroupName", + "in": "path", + "description": "Name of Sync Group resource.", + "required": true, + "type": "string" + }, + { + "name": "serverEndpointName", + "in": "path", + "description": "Name of Server Endpoint object.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Recall Action object.", + "required": true, + "schema": { + "$ref": "#/definitions/RecallActionParameters" + } + } + ], + "tags": [ + "ServerEndpoint Resource", + "Actions" + ], + "operationId": "ServerEndpoints_recallAction", + "description": "Recall a server endpoint.", + "x-ms-examples": { + "ServerEndpoints_recallAction": { + "$ref": "./examples/ServerEndpoints_Recall.json" + } + }, + "responses": { + "200": { + "description": "Server Endpoint object", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_ListByStorageSyncService", + "description": "Get a given registered server list.", + "x-ms-examples": { + "RegisteredServers_ListByStorageSyncService": { + "$ref": "./examples/RegisteredServers_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Registered Server resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/RegisteredServerArray" }, - "description": "Parameters for updating an Server Endpoint." - }, - "ServerEndpoint": { - "type": "object", - "description": "Server Endpoint object.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/ServerEndpointProperties", - "description": "Server Endpoint properties." - } - } - }, - "RegisteredServer": { - "type": "object", - "description": "Registered Server resource.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/RegisteredServerProperties", - "description": "RegisteredServer properties." - } - } - }, - "ResourcesMoveInfo": { - "type": "object", - "description": "Resource Move Info.", - "properties": { - "targetResourceGroup": { - "type": "string", - "description": "Target resource group." - }, - "resources": { - "type": "array", - "description": "Collection of Resources.", - "items": { - "$ref": "#/definitions/ResourceId" - } - } - } - }, - "Workflow": { - "type": "object", - "description": "Workflow resource.", - "allOf": [{ - "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" - }], - "properties": { - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/WorkflowProperties", - "description": "Workflow properties." - } - } - }, - "OperationEntityListResult": { - "description": "The list of storage sync operations.", - "type": "object", - "properties": { - "nextLink": { - "description": "The link used to get the next page of operations.", - "type": "string" - }, - "value": { - "description": "The list of operations.", - "type": "array", - "items": { - "$ref": "#/definitions/OperationEntity" - } - } - } - }, - "OperationEntity": { - "description": "The operation supported by storage sync.", - "type": "object", - "properties": { - "name": { - "description": "Operation name: {provider}/{resource}/{operation}.", - "type": "string" - }, - "display": { - "$ref": "#/definitions/OperationDisplayInfo", - "description": "The operation supported by storage sync." - }, - "origin": { - "type": "string", - "description": "The origin." - } - } - }, - "OperationDisplayInfo": { - "description": "The operation supported by storage sync.", - "type": "object", - "properties": { - "description": { - "description": "The description of the operation.", - "type": "string" - }, - "operation": { - "description": "The action that users can perform, based on their permission level.", - "type": "string" - }, - "provider": { - "description": "Service provider: Microsoft StorageSync.", - "type": "string" - }, - "resource": { - "description": "Resource on which the operation is performed.", - "type": "string" - } - } - }, - "OperationDisplayResource": { - "type": "object", - "description": "Operation Display Resource object.", - "properties": { - "provider": { - "type": "string", - "description": "Operation Display Resource Provider." - }, - "resource": { - "type": "string", - "description": "Operation Display Resource." - }, - "operation": { - "type": "string", - "description": "Operation Display Resource Operation." - }, - "description": { - "type": "string", - "description": "Operation Display Resource Description." - } - } - }, - "CheckNameAvailabilityParameters": { - "properties": { - "name": { - "type": "string", - "description": "The name to check for availability" - }, - "type": { - "type": "string", - "enum": ["Microsoft.StorageSync/storageSyncServices"], - "x-ms-enum": { - "name": "Type", - "modelAsString": false - }, - "description": "The resource type. Must be set to Microsoft.StorageSync/storageSyncServices" - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Get", + "description": "Get a given registered server.", + "x-ms-examples": { + "RegisteredServers_Get": { + "$ref": "./examples/RegisteredServers_Get.json" + } + }, + "responses": { + "200": { + "description": "Registered Server resources in Sync Group", + "schema": { + "$ref": "#/definitions/RegisteredServer" }, - "required": [ - "name", - "type" - ], - "description": "Parameters for a check name availability request." - }, - "CheckNameAvailabilityResult": { - "properties": { - "nameAvailable": { - "readOnly": true, - "type": "boolean", - "description": "Gets a boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or invalid and cannot be used." - }, - "reason": { - "readOnly": true, - "type": "string", - "enum": [ - "Invalid", - "AlreadyExists" - ], - "x-ms-enum": { - "name": "NameAvailabilityReason", - "modelAsString": false - }, - "description": "Gets the reason that a Storage Sync Service name could not be used. The Reason element is only returned if NameAvailable is false." - }, - "message": { - "readOnly": true, - "type": "string", - "description": "Gets an error message explaining the Reason value in more detail." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + }, + "put": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Registered Server object.", + "required": true, + "schema": { + "$ref": "#/definitions/RegisteredServerCreateParameters" + } + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Create", + "description": "Add a new registered server.", + "x-ms-examples": { + "RegisteredServers_Create": { + "$ref": "./examples/RegisteredServers_Create.json" + } + }, + "responses": { + "200": { + "description": "Registered Server resources in Sync Group", + "schema": { + "$ref": "#/definitions/RegisteredServer" }, - "description": "The CheckNameAvailability operation response." - }, - "PostRestoreRequest": { - "type": "object", - "description": "Post Restore Request", - "properties": { - "partition": { - "type": "string", - "description": "Post Restore partition." - }, - "replicaGroup": { - "type": "string", - "description": "Post Restore replica group." - }, - "requestId": { - "type": "string", - "description": "Post Restore request id." - }, - "azureFileShareUri": { - "type": "string", - "description": "Post Restore Azure file share uri." - }, - "status": { - "type": "string", - "description": "Post Restore Azure status." - }, - "sourceAzureFileShareUri": { - "type": "string", - "description": "Post Restore Azure source azure file share uri." - }, - "failedFileList": { - "type": "string", - "description": "Post Restore Azure failed file list." - }, - "restoreFileSpec": { - "type": "array", - "description": "Post Restore restore file spec array.", - "items": { - "$ref": "#/definitions/RestoreFileSpec", - "description": "Post Restore restore file spec items array." - } - } - } - }, - "PreRestoreRequest": { - "type": "object", - "description": "Pre Restore request object.", - "properties": { - "partition": { - "type": "string", - "description": "Pre Restore partition." - }, - "replicaGroup": { - "type": "string", - "description": "Pre Restore replica group." - }, - "requestId": { - "type": "string", - "description": "Pre Restore request id." - }, - "azureFileShareUri": { - "type": "string", - "description": "Pre Restore Azure file share uri." - }, - "status": { - "type": "string", - "description": "Pre Restore Azure status." - }, - "sourceAzureFileShareUri": { - "type": "string", - "description": "Pre Restore Azure source azure file share uri." - }, - "backupMetadataPropertyBag": { - "type": "string", - "description": "Pre Restore backup metadata property bag." - }, - "restoreFileSpec": { - "type": "array", - "description": "Pre Restore restore file spec array.", - "items": { - "$ref": "#/definitions/RestoreFileSpec", - "description": "Pre Restore restore file spec items array." - } - }, - "pauseWaitForSyncDrainTimePeriodInSeconds": { - "type": "integer", - "description": "Pre Restore pause wait for sync drain time period in seconds." - } - } - }, - "BackupRequest": { - "type": "object", - "description": "Backup request", - "properties": { - "azureFileShare": { - "type": "string", - "description": "Azure File Share." - } - } - }, - "PostBackupResponse": { - "type": "object", - "description": "Post Backup Response", - "properties": { - "backupMetadata": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/PostBackupResponseProperties", - "description": "Post Backup Response Properties" - } - } - }, - "RestoreFileSpec": { - "type": "object", - "description": "Restore file spec.", - "properties": { - "path": { - "type": "string", - "description": "Restore file spec path" - }, - "isdir": { - "type": "boolean", - "description": "Restore file spec isdir", - "readOnly": true - } - } - }, - "StorageSyncServiceArray": { - "type": "object", - "description": "Array of StorageSyncServices", - "properties": { - "value": { - "type": "array", - "description": "Collection of StorageSyncServices.", - "items": { - "$ref": "#/definitions/StorageSyncService" - } - } - } - }, - "SyncGroupArray": { - "type": "object", - "description": "Array of SyncGroup", - "properties": { - "value": { - "type": "array", - "description": "Collection of SyncGroup.", - "items": { - "$ref": "#/definitions/SyncGroup" - } - } - } - }, - "CloudEndpointArray": { - "type": "object", - "description": "Array of CloudEndpoint", - "properties": { - "value": { - "type": "array", - "description": "Collection of CloudEndpoint.", - "items": { - "$ref": "#/definitions/CloudEndpoint" - } - } - } - }, - "ServerEndpointArray": { - "description": "Array of ServerEndpoint", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of ServerEndpoint.", - "items": { - "$ref": "#/definitions/ServerEndpoint" - } - } - } - }, - "RegisteredServerArray": { - "description": "Array of RegisteredServer", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of Registered Server.", - "items": { - "$ref": "#/definitions/RegisteredServer" - } - } - } - }, - "WorkflowArray": { - "description": "Array of Workflow", - "type": "object", - "properties": { - "value": { - "type": "array", - "description": "Collection of workflow items.", - "items": { - "$ref": "#/definitions/Workflow" - } - } - } - }, - "SubscriptionStateProperties": { - "type": "object", - "description": "Subscription State properties." - }, - "PostBackupResponseProperties": { - "type": "object", - "description": "Post Backup Response Properties object.", - "properties": { - "cloudEndpointName": { - "type": "string", - "description": "cloud endpoint Name.", - "readOnly": true - } - } - }, - "StorageSyncServiceUpdateParameters": { - "properties": { - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "The user-specified tags associated with the storage sync service." - }, - "properties": { - "x-ms-client-flatten": true, - "$ref": "#/definitions/StorageSyncServiceUpdateProperties", - "description": "The properties of the storage sync service." - } + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Azure-AsyncOperation": { + "description": "Operation Status Location URI", + "type": "string" + }, + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + }, + "delete": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "GUID identifying the on-premises server.", + "required": true, + "type": "string" + } + ], + "tags": [ + "RegisteredServer Resource" + ], + "operationId": "RegisteredServers_Delete", + "description": "Delete the given registered server.", + "x-ms-examples": { + "RegisteredServers_Delete": { + "$ref": "./examples/RegisteredServers_Delete.json" + } + }, + "responses": { + "200": { + "description": "Ok", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "204": { + "description": "Resource doesn't exist" + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/registeredServers/{serverId}/triggerRollover": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "serverId", + "in": "path", + "description": "Server Id", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Body of Trigger Rollover request.", + "required": true, + "schema": { + "$ref": "#/definitions/TriggerRolloverRequest" + } + } + ], + "tags": [ + "RegisteredServer Resource", + "Actions" + ], + "operationId": "RegisteredServers_triggerRollover", + "description": "Triggers Server certificate rollover.", + "x-ms-examples": { + "RegisteredServers_triggerRollover": { + "$ref": "./examples/RegisteredServers_TriggerRollover.json" + } + }, + "responses": { + "200": { + "description": "Trigger Rollover success status", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "202": { + "description": "Asynchronous Operation Status Location", + "headers": { + "Location": { + "description": "Operation Status Location URI", + "type": "string" + }, + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource" + ], + "operationId": "Workflows_ListByStorageSyncService", + "description": "Get a Workflow List", + "x-ms-examples": { + "Workflows_ListByStorageSyncService": { + "$ref": "./examples/Workflows_ListByStorageSyncService.json" + } + }, + "responses": { + "200": { + "description": "Array of Workflow resources in Storage Sync Service", + "schema": { + "$ref": "#/definitions/WorkflowArray" }, - "description": "Parameters for updating an Storage sync service." - }, - "StorageSyncServiceUpdateProperties": { - "type": "object", - "description": "Storage Sync Service Update Properties object.", - "properties": {} - }, - "StorageSyncServiceProperties": { - "type": "object", - "description": "Storage Sync Service Properties object.", - "properties": { - "storageSyncServiceStatus": { - "type": "integer", - "description": "Storage Sync service status.", - "readOnly": true - }, - "storageSyncServiceUid": { - "type": "string", - "description": "Storage Sync service Uid", - "readOnly": true - } - } - }, - "WorkflowProperties": { - "type": "object", - "description": "Workflow Properties object.", - "properties": { - "lastStepName": { - "type": "string", - "description": "last step name" - }, - "status": { - "$ref": "#/definitions/WorkflowStatus", - "description": "workflow status." - }, - "operation": { - "$ref": "#/definitions/OperationDirection", - "description": "operation direction." - }, - "steps": { - "type": "string", - "description": "workflow steps" - }, - "lastOperationId": { - "type": "string", - "description": "workflow last operation identifier." - } - } - }, - "SyncGroupProperties": { - "type": "object", - "description": "SyncGroup Properties object.", - "properties": { - "uniqueId": { - "type": "string", - "description": "Unique Id" - }, - "syncGroupStatus": { - "type": "string", - "description": "Sync group status", - "readOnly": true - } - } - }, - "RegisteredServerProperties": { - "type": "object", - "description": "RegisteredServer Properties object.", - "properties": { - "serverCertificate": { - "type": "string", - "description": "Registered Server Certificate" - }, - "agentVersion": { - "type": "string", - "description": "Registered Server Agent Version" - }, - "serverOSVersion": { - "type": "string", - "description": "Registered Server OS Version" - }, - "serverManagementErrorCode": { - "type": "integer", - "description": "Registered Server Management Error Code" - }, - "lastHeartBeat": { - "type": "string", - "description": "Registered Server last heart beat" - }, - "provisioningState": { - "type": "string", - "description": "Registered Server Provisioning State" - }, - "serverRole": { - "type": "string", - "description": "Registered Server serverRole" - }, - "clusterId": { - "type": "string", - "description": "Registered Server clusterId" - }, - "clusterName": { - "type": "string", - "description": "Registered Server clusterName" - }, - "serverId": { - "type": "string", - "description": "Registered Server serverId" - }, - "storageSyncServiceUid": { - "type": "string", - "description": "Registered Server storageSyncServiceUid" - }, - "lastWorkflowId": { - "type": "string", - "description": "Registered Server lastWorkflowId" - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name" - }, - "discoveryEndpointUri": { - "type": "string", - "description": "Resource discoveryEndpointUri" - }, - "resourceLocation": { - "type": "string", - "description": "Resource Location" - }, - "serviceLocation": { - "type": "string", - "description": "Service Location" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "managementEndpointUri": { - "type": "string", - "description": "Management Endpoint Uri" - }, - "monitoringConfiguration": { - "type": "string", - "description": "Monitoring Configuration" - } - } - }, - "CloudEndpointProperties": { - "type": "object", - "description": "CloudEndpoint Properties object.", - "properties": { - "storageAccountResourceId": { - "type": "string", - "description": "Storage Account Resource Id" - }, - "azureFileShareName": { - "type": "string", - "description": "Azure file share name" - }, - "storageAccountTenantId": { - "type": "string", - "description": "Storage Account Tenant Id" - }, - "partnershipId": { - "type": "string", - "description": "Partnership Id" - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "backupEnabled": { - "type": "string", - "description": "Backup Enabled", - "readOnly": true - }, - "provisioningState": { - "type": "string", - "description": "CloudEndpoint Provisioning State" - }, - "lastWorkflowId": { - "type": "string", - "description": "CloudEndpoint lastWorkflowId" - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name" - } - } - }, - "ServerEndpointUpdateProperties": { - "type": "object", - "description": "ServerEndpoint Update Properties object.", - "properties": { - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "offlineDataTransfer": { - "$ref": "#/definitions/FeatureStatus", - "description": "Offline data transfer" - }, - "offlineDataTransferShareName": { - "type": "string", - "description": "Offline data transfer share name" - } - } - }, - "ServerEndpointProperties": { - "type": "object", - "description": "ServerEndpoint Properties object.", - "properties": { - "serverLocalPath": { - "$ref": "#/definitions/PhysicalPath", - "description": "Server Local path." - }, - "cloudTiering": { - "$ref": "#/definitions/FeatureStatus", - "description": "Cloud Tiering." - }, - "volumeFreeSpacePercent": { - "type": "integer", - "minimum": 0, - "maximum": 100, - "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." - }, - "tierFilesOlderThanDays": { - "type": "integer", - "minimum": 0, - "maximum": 2147483647, - "description": "Tier files older than days." - }, - "friendlyName": { - "type": "string", - "description": "Friendly Name" - }, - "serverResourceId": { - "$ref": "#/definitions/ResourceId", - "description": "Server Resource Id." - }, - "provisioningState": { - "type": "string", - "description": "ServerEndpoint Provisioning State", - "readOnly": true - }, - "lastWorkflowId": { - "type": "string", - "description": "ServerEndpoint lastWorkflowId", - "readOnly": true - }, - "lastOperationName": { - "type": "string", - "description": "Resource Last Operation Name", - "readOnly": true - }, - "syncStatus": { - "type": "object", - "$ref": "#/definitions/ServerEndpointSyncStatus", - "description": "Server Endpoint sync status", - "readOnly": true - }, - "offlineDataTransfer": { - "$ref": "#/definitions/FeatureStatus", - "description": "Offline data transfer" - }, - "offlineDataTransferStorageAccountResourceId": { - "type": "string", - "description": "Offline data transfer storage account resource ID", - "readOnly": true - }, - "offlineDataTransferStorageAccountTenantId": { - "type": "string", - "description": "Offline data transfer storage account tenant ID", - "readOnly": true - }, - "offlineDataTransferShareName": { - "type": "string", - "description": "Offline data transfer share name" - } - } - }, - "ServerEndpointSyncStatus": { - "type": "object", - "description": "Server Endpoint sync status", - "properties": { - "downloadHealth": { - "$ref": "#/definitions/HealthState", - "description": "Download Health Status.", - "readOnly": true - }, - "uploadHealth": { - "$ref": "#/definitions/HealthState", - "description": "Upload Health Status.", - "readOnly": true - }, - "combinedHealth": { - "$ref": "#/definitions/HealthState", - "description": "Combined Health Status.", - "readOnly": true - }, - "syncActivity": { - "$ref": "#/definitions/SyncActivityState", - "description": "Sync activity", - "readOnly": true - }, - "totalPersistentFilesNotSyncingCount": { - "type": "integer", - "format": "int64", - "description": "Total count of persistent files not syncing (combined upload + download). Reserved for future use.", - "readOnly": true - }, - "lastUpdatedTimestamp": { - "type" : "string", - "format" : "date-time", - "description": "Last Updated Timestamp", - "readOnly": true - }, - "uploadStatus": { - "$ref": "#/definitions/SyncSessionStatus", - "description": "Upload Status", - "readOnly": true - }, - "downloadStatus": { - "$ref": "#/definitions/SyncSessionStatus", - "description": "Download Status", - "readOnly": true - }, - "uploadActivity": { - "$ref": "#/definitions/SyncActivityStatus", - "description": "Upload sync activity", - "readOnly": true - }, - "downloadActivity": { - "$ref": "#/definitions/SyncActivityStatus", - "description": "Download sync activity", - "readOnly": true - }, - "offlineDataTransferStatus": { - "$ref": "#/definitions/OfflineDataTransferState", - "description": "Offline Data Transfer State", - "readOnly": true - } - } - }, - "SyncSessionStatus": { - "type": "object", - "description": "Sync Session status object.", - "properties": { - "lastSyncResult": { - "type": "integer", - "format": "int32", - "description": "Last sync result (HResult)", - "readOnly": true - }, - "lastSyncTimestamp": { - "type" : "string", - "format" : "date-time", - "description": "Last sync timestamp", - "readOnly": true - }, - "lastSyncSuccessTimestamp": { - "type" : "string", - "format" : "date-time", - "description": "Last sync success timestamp", - "readOnly": true - }, - "lastSyncPerItemErrorCount": { - "type": "integer", - "format": "int64", - "description": "Last sync per item error count.", - "readOnly": true - }, - "persistentFilesNotSyncingCount": { - "type": "integer", - "format": "int64", - "description": "Count of persistent files not syncing. Reserved for future use.", - "readOnly": true - }, - "transientFilesNotSyncingCount": { - "type": "integer", - "format": "int64", - "description": "Count of transient files not syncing. Reserved for future use.", - "readOnly": true - }, - "filesNotSyncingErrors": { - "type": "array", - "items": { - "$ref": "#/definitions/FilesNotSyncingError" - }, - "description": "Array of per-item errors coming from the last sync session. Reserved for future use.", - "readOnly": true - } - } - }, - "SyncActivityStatus": { - "type": "object", - "description": "Sync Session status object.", - "properties": { - "timestamp": { - "type" : "string", - "format" : "date-time", - "description": "Timestamp when properties were updated", - "readOnly": true - }, - "perItemErrorCount": { - "type": "integer", - "format": "int64", - "description": "Per item error count", - "readOnly": true - }, - "appliedItemCount": { - "type": "integer", - "format": "int64", - "description": "Applied item count.", - "readOnly": true - }, - "totalItemCount": { - "type": "integer", - "format": "int64", - "description": "Total item count (if available)", - "readOnly": true - }, - "appliedBytes": { - "type": "integer", - "format": "int64", - "description": "Applied bytes", - "readOnly": true - }, - "totalBytes": { - "type": "integer", - "format": "int64", - "description": "Total bytes (if available)", - "readOnly": true - } - } - }, - "FilesNotSyncingError": { - "type": "object", - "description": "Files not syncing error object", - "properties": { - "errorCode": { - "type": "integer", - "format": "int32", - "description": "Error code (HResult)", - "readOnly": true - }, - "persistentCount": { - "type": "integer", - "format": "int64", - "description": "Count of persistent files not syncing with the specified error code", - "readOnly": true - }, - "transientCount": { - "type": "integer", - "format": "int64", - "description": "Count of transient files not syncing with the specified error code", - "readOnly": true - } - } - }, - "PhysicalPath": { - "type": "string", - "description": "Server folder used for data synchronization" + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } }, - "ResourceId": { - "type": "string", - "description": "Arm resource identifier." + "x-ms-pageable": { + "nextLinkName": null + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "workflowId", + "in": "path", + "description": "workflow Id", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource" + ], + "operationId": "Workflows_Get", + "description": "Get Workflows resource", + "x-ms-examples": { + "Workflows_Get": { + "$ref": "./examples/Workflows_Get.json" + } }, - "TagsObject": { - "type": "object", - "description": "Tags object." + "responses": { + "200": { + "description": "Workflow object", + "schema": { + "$ref": "#/definitions/Workflow" + }, + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/workflows/{workflowId}/abort": { + "post": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "storageSyncServiceName", + "in": "path", + "description": "Name of Storage Sync Service resource.", + "required": true, + "type": "string" + }, + { + "name": "workflowId", + "in": "path", + "description": "workflow Id", + "required": true, + "type": "string" + } + ], + "tags": [ + "Workflow Resource", + "Actions" + ], + "operationId": "Workflows_Abort", + "description": "Abort the given workflow.", + "x-ms-examples": { + "Workflows_Abort": { + "$ref": "./examples/Workflows_Abort.json" + } }, - "FeatureStatus": { + "responses": { + "200": { + "description": "success", + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/locations/{locationName}/workflows/{workflowId}/operations/{operationId}": { + "get": { + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "locationName", + "in": "path", + "required": true, "type": "string", - "description": "Type of the Feature Status", - "enum": [ - "on", - "off" - ] + "description": "The desired region to obtain information from." + }, + { + "name": "workflowId", + "in": "path", + "description": "workflow Id", + "required": true, + "type": "string" + }, + { + "name": "operationId", + "in": "path", + "description": "operation Id", + "required": true, + "type": "string" + } + ], + "tags": [ + "Operation Status" + ], + "operationId": "OperationStatus_Get", + "description": "Get Operation status", + "x-ms-examples": { + "Workflows_Get": { + "$ref": "./examples/OperationStatus_Get.json" + } }, - "HealthState": { - "type": "string", - "description": "Type of the Health state", - "enum": [ - "Healthy", - "Error", - "SyncBlockedForRestore", - "SyncBlockedForChangeDetectionPostRestore", - "NoActivity" - ] - }, - "SyncActivityState": { - "type": "string", - "description": "Type of the sync activity state", - "enum": [ - "Upload", - "Download", - "UploadAndDownload" - ] - }, - "OfflineDataTransferState": { - "type": "string", - "description": "Type of the Health state", - "enum": [ - "InProgress", - "Stopping", - "NotRunning", - "Complete" - ] - }, - "WorkflowStatus": { - "type": "string", - "description": "Type of the Workflow Status", - "enum": [ - "active", - "expired", - "succeeded", - "aborted", - "failed" - ] - }, - "OperationDirection": { - "type": "string", - "description": "Type of the Operation Direction", - "enum": [ - "do", - "undo", - "cancel" - ] - }, - "ProgressType": { - "type": "string", - "description": "Type of the ProgressType", - "enum": [ - "none", - "initialize", - "download", - "upload", - "recall" - ] - }, - "OperationStatus": { - "type": "object", - "properties": { - "name": { - "readOnly": true, - "type": "string", - "description": "Operation Id" - }, - "status": { - "readOnly": true, - "type": "string", - "description": "Operation status" - }, - "startTime": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "Start time of the operation" - }, - "endTime": { - "readOnly": true, - "type": "string", - "format": "date-time", - "description": "End time of the operation" - }, - "error": { - "readOnly": true, - "$ref": "#/definitions/StorageSyncApiError", - "description": "Error details." - } + "responses": { + "200": { + "description": "Operation Status", + "schema": { + "$ref": "#/definitions/OperationStatus" }, - "description": "Operation status object" - } - }, - "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" + "headers": { + "x-ms-request-id": { + "description": "request id.", + "type": "string" + }, + "x-ms-correlation-request-id": { + "description": "correlation request id.", + "type": "string" + } + } + }, + "default": { + "description": "Error message indicating why the operation failed.", + "schema": { + "$ref": "#/definitions/StorageSyncError" } + } + } + } + } + }, + "definitions": { + "StorageSyncError": { + "type": "object", + "description": "Error type", + "properties": { + "error": { + "$ref": "#/definitions/StorageSyncApiError", + "description": "Error details of the given entry." + }, + "innererror": { + "$ref": "#/definitions/StorageSyncApiError", + "description": "Error details of the given entry." + } + } + }, + "StorageSyncApiError": { + "type": "object", + "description": "Error type", + "properties": { + "code": { + "type": "string", + "description": "Error code of the given entry." + }, + "message": { + "type": "string", + "description": "Error message of the given entry." + }, + "target": { + "type": "string", + "description": "Target of the given error entry." + }, + "details": { + "$ref": "#/definitions/StorageSyncErrorDetails", + "description": "Error details of the given entry." + } + } + }, + "StorageSyncErrorDetails": { + "type": "object", + "description": "Error Details object.", + "properties": { + "code": { + "type": "string", + "description": "Error code of the given entry." + }, + "message": { + "type": "string", + "description": "Error message of the given entry." + }, + "target": { + "type": "string", + "description": "Target of the given entry." + } + } + }, + "SubscriptionState": { + "type": "object", + "description": "Subscription State object.", + "properties": { + "state": { + "type": "string", + "description": "State of Azure Subscription", + "enum": [ + "Registered", + "Unregistered", + "Warned", + "Suspended", + "Deleted" + ], + "x-ms-enum": { + "name": "Reason", + "modelAsString": true + } + }, + "istransitioning": { + "type": "boolean", + "description": "Is Transitioning", + "readOnly": true + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SubscriptionStateProperties", + "description": "Subscription state properties." + } + } + }, + "StorageSyncService": { + "type": "object", + "description": "Storage Sync Service object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/StorageSyncServiceProperties", + "description": "Storage Sync Service properties." + } + } + }, + "SyncGroup": { + "type": "object", + "description": "Sync Group object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SyncGroupProperties", + "description": "SyncGroup properties." + } + } + }, + "CloudEndpoint": { + "type": "object", + "description": "Cloud Endpoint object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/CloudEndpointProperties", + "description": "Cloud Endpoint properties." + } + } + }, + "TriggerChangeDetectionParameters": { + "properties": { + "directoryPath": { + "type": "string", + "description": "Relative path to a directory Azure File share for which change detection is to be performed." + }, + "changeDetectionMode": { + "type": "string", + "description": "Change Detection Mode. Applies to a directory specified in directoryPath parameter.", + "enum": [ + "Default", + "Recursive" + ], + "x-ms-enum": { + "name": "changeDetectionMode", + "modelAsString": true + } + }, + "paths": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of relative paths on the Azure File share to be included in the change detection. Can be files and directories." + } + }, + "description": "The parameters used when calling trigger change detection action on cloud endpoint." + }, + "RecallActionParameters": { + "properties": { + "pattern": { + "type": "string", + "description": "Pattern of the files." + }, + "recallPath": { + "type": "string", + "description": "Recall path." + } + }, + "description": "The parameters used when calling recall action on server endpoint." + }, + "StorageSyncServiceCreateParameters": { + "properties": { + "location": { + "type": "string", + "description": "Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed." + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters." + }, + "properties": {} + }, + "required": [ + "location" + ], + "description": "The parameters used when creating a storage sync service." + }, + "SyncGroupCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/SyncGroupCreateParametersProperties", + "description": "The parameters used to create the sync group" + } + }, + "description": "The parameters used when creating a sync group." + }, + "SyncGroupCreateParametersProperties": { + "type": "object", + "description": "Sync Group Create Properties object.", + "properties": {} + }, + "CloudEndpointCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/CloudEndpointCreateParametersProperties", + "description": "The parameters used to create the cloud endpoint." + } + }, + "description": "The parameters used when creating a cloud endpoint." + }, + "CloudEndpointCreateParametersProperties": { + "description": "CloudEndpoint Properties object.", + "properties": { + "storageAccountResourceId": { + "type": "string", + "description": "Storage Account Resource Id" + }, + "azureFileShareName": { + "type": "string", + "description": "Azure file share name" + }, + "storageAccountTenantId": { + "type": "string", + "description": "Storage Account Tenant Id" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + } + } + }, + "ServerEndpointCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointCreateParametersProperties", + "description": "The parameters used to create the server endpoint." + } + }, + "description": "The parameters used when creating a server endpoint." + }, + "ServerEndpointCreateParametersProperties": { + "description": "ServerEndpoint Properties object.", + "properties": { + "serverLocalPath": { + "$ref": "#/definitions/PhysicalPath", + "description": "Server Local path." + }, + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "serverResourceId": { + "$ref": "#/definitions/ResourceId", + "description": "Server Resource Id." + }, + "offlineDataTransfer": { + "$ref": "#/definitions/FeatureStatus", + "description": "Offline data transfer" + }, + "offlineDataTransferShareName": { + "type": "string", + "description": "Offline data transfer share name" + } + } + }, + "TriggerRolloverRequest": { + "type": "object", + "description": "Trigger Rollover Request.", + "properties": { + "serverCertificate": { + "type": "string", + "description": "Certificate Data" + } + } + }, + "RegisteredServerCreateParameters": { + "type": "object", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegisteredServerCreateParametersProperties", + "description": "The parameters used to create the registered server." + } + }, + "description": "The parameters used when creating a registered server." + }, + "RegisteredServerCreateParametersProperties": { + "properties": { + "serverCertificate": { + "type": "string", + "description": "Registered Server Certificate" + }, + "agentVersion": { + "type": "string", + "description": "Registered Server Agent Version" + }, + "serverOSVersion": { + "type": "string", + "description": "Registered Server OS Version" + }, + "lastHeartBeat": { + "type": "string", + "description": "Registered Server last heart beat" + }, + "serverRole": { + "type": "string", + "description": "Registered Server serverRole" + }, + "clusterId": { + "type": "string", + "description": "Registered Server clusterId" + }, + "clusterName": { + "type": "string", + "description": "Registered Server clusterName" + }, + "serverId": { + "type": "string", + "description": "Registered Server serverId" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + } + } + }, + "ServerEndpointUpdateParameters": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointUpdateProperties", + "description": "The properties of the server endpoint." + } + }, + "description": "Parameters for updating an Server Endpoint." + }, + "ServerEndpoint": { + "type": "object", + "description": "Server Endpoint object.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/ServerEndpointProperties", + "description": "Server Endpoint properties." + } + } + }, + "RegisteredServer": { + "type": "object", + "description": "Registered Server resource.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/RegisteredServerProperties", + "description": "RegisteredServer properties." + } + } + }, + "ResourcesMoveInfo": { + "type": "object", + "description": "Resource Move Info.", + "properties": { + "targetResourceGroup": { + "type": "string", + "description": "Target resource group." + }, + "resources": { + "type": "array", + "description": "Collection of Resources.", + "items": { + "$ref": "#/definitions/ResourceId" + } + } + } + }, + "Workflow": { + "type": "object", + "description": "Workflow resource.", + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/WorkflowProperties", + "description": "Workflow properties." + } + } + }, + "OperationEntityListResult": { + "description": "The list of storage sync operations.", + "type": "object", + "properties": { + "nextLink": { + "description": "The link used to get the next page of operations.", + "type": "string" + }, + "value": { + "description": "The list of operations.", + "type": "array", + "items": { + "$ref": "#/definitions/OperationEntity" + } + } + } + }, + "OperationEntity": { + "description": "The operation supported by storage sync.", + "type": "object", + "properties": { + "name": { + "description": "Operation name: {provider}/{resource}/{operation}.", + "type": "string" + }, + "display": { + "$ref": "#/definitions/OperationDisplayInfo", + "description": "The operation supported by storage sync." + }, + "origin": { + "type": "string", + "description": "The origin." + } + } + }, + "OperationDisplayInfo": { + "description": "The operation supported by storage sync.", + "type": "object", + "properties": { + "description": { + "description": "The description of the operation.", + "type": "string" + }, + "operation": { + "description": "The action that users can perform, based on their permission level.", + "type": "string" + }, + "provider": { + "description": "Service provider: Microsoft StorageSync.", + "type": "string" + }, + "resource": { + "description": "Resource on which the operation is performed.", + "type": "string" + } + } + }, + "OperationDisplayResource": { + "type": "object", + "description": "Operation Display Resource object.", + "properties": { + "provider": { + "type": "string", + "description": "Operation Display Resource Provider." + }, + "resource": { + "type": "string", + "description": "Operation Display Resource." + }, + "operation": { + "type": "string", + "description": "Operation Display Resource Operation." + }, + "description": { + "type": "string", + "description": "Operation Display Resource Description." + } + } + }, + "CheckNameAvailabilityParameters": { + "properties": { + "name": { + "type": "string", + "description": "The name to check for availability" + }, + "type": { + "type": "string", + "enum": [ + "Microsoft.StorageSync/storageSyncServices" + ], + "x-ms-enum": { + "name": "Type", + "modelAsString": false + }, + "description": "The resource type. Must be set to Microsoft.StorageSync/storageSyncServices" + } + }, + "required": [ + "name", + "type" + ], + "description": "Parameters for a check name availability request." + }, + "CheckNameAvailabilityResult": { + "properties": { + "nameAvailable": { + "readOnly": true, + "type": "boolean", + "description": "Gets a boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or invalid and cannot be used." + }, + "reason": { + "readOnly": true, + "type": "string", + "enum": [ + "Invalid", + "AlreadyExists" + ], + "x-ms-enum": { + "name": "NameAvailabilityReason", + "modelAsString": false + }, + "description": "Gets the reason that a Storage Sync Service name could not be used. The Reason element is only returned if NameAvailable is false." + }, + "message": { + "readOnly": true, + "type": "string", + "description": "Gets an error message explaining the Reason value in more detail." + } + }, + "description": "The CheckNameAvailability operation response." + }, + "PostRestoreRequest": { + "type": "object", + "description": "Post Restore Request", + "properties": { + "partition": { + "type": "string", + "description": "Post Restore partition." + }, + "replicaGroup": { + "type": "string", + "description": "Post Restore replica group." + }, + "requestId": { + "type": "string", + "description": "Post Restore request id." + }, + "azureFileShareUri": { + "type": "string", + "description": "Post Restore Azure file share uri." + }, + "status": { + "type": "string", + "description": "Post Restore Azure status." + }, + "sourceAzureFileShareUri": { + "type": "string", + "description": "Post Restore Azure source azure file share uri." + }, + "failedFileList": { + "type": "string", + "description": "Post Restore Azure failed file list." + }, + "restoreFileSpec": { + "type": "array", + "description": "Post Restore restore file spec array.", + "items": { + "$ref": "#/definitions/RestoreFileSpec", + "description": "Post Restore restore file spec items array." + } + } + } + }, + "PreRestoreRequest": { + "type": "object", + "description": "Pre Restore request object.", + "properties": { + "partition": { + "type": "string", + "description": "Pre Restore partition." + }, + "replicaGroup": { + "type": "string", + "description": "Pre Restore replica group." + }, + "requestId": { + "type": "string", + "description": "Pre Restore request id." + }, + "azureFileShareUri": { + "type": "string", + "description": "Pre Restore Azure file share uri." + }, + "status": { + "type": "string", + "description": "Pre Restore Azure status." + }, + "sourceAzureFileShareUri": { + "type": "string", + "description": "Pre Restore Azure source azure file share uri." + }, + "backupMetadataPropertyBag": { + "type": "string", + "description": "Pre Restore backup metadata property bag." + }, + "restoreFileSpec": { + "type": "array", + "description": "Pre Restore restore file spec array.", + "items": { + "$ref": "#/definitions/RestoreFileSpec", + "description": "Pre Restore restore file spec items array." + } + }, + "pauseWaitForSyncDrainTimePeriodInSeconds": { + "type": "integer", + "description": "Pre Restore pause wait for sync drain time period in seconds." + } + } + }, + "BackupRequest": { + "type": "object", + "description": "Backup request", + "properties": { + "azureFileShare": { + "type": "string", + "description": "Azure File Share." + } + } + }, + "PostBackupResponse": { + "type": "object", + "description": "Post Backup Response", + "properties": { + "backupMetadata": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/PostBackupResponseProperties", + "description": "Post Backup Response Properties" + } + } + }, + "RestoreFileSpec": { + "type": "object", + "description": "Restore file spec.", + "properties": { + "path": { + "type": "string", + "description": "Restore file spec path" + }, + "isdir": { + "type": "boolean", + "description": "Restore file spec isdir", + "readOnly": true + } + } + }, + "StorageSyncServiceArray": { + "type": "object", + "description": "Array of StorageSyncServices", + "properties": { + "value": { + "type": "array", + "description": "Collection of StorageSyncServices.", + "items": { + "$ref": "#/definitions/StorageSyncService" + } + } + } + }, + "SyncGroupArray": { + "type": "object", + "description": "Array of SyncGroup", + "properties": { + "value": { + "type": "array", + "description": "Collection of SyncGroup.", + "items": { + "$ref": "#/definitions/SyncGroup" + } + } + } + }, + "CloudEndpointArray": { + "type": "object", + "description": "Array of CloudEndpoint", + "properties": { + "value": { + "type": "array", + "description": "Collection of CloudEndpoint.", + "items": { + "$ref": "#/definitions/CloudEndpoint" + } + } + } + }, + "ServerEndpointArray": { + "description": "Array of ServerEndpoint", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of ServerEndpoint.", + "items": { + "$ref": "#/definitions/ServerEndpoint" + } + } + } + }, + "RegisteredServerArray": { + "description": "Array of RegisteredServer", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of Registered Server.", + "items": { + "$ref": "#/definitions/RegisteredServer" + } + } + } + }, + "WorkflowArray": { + "description": "Array of Workflow", + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Collection of workflow items.", + "items": { + "$ref": "#/definitions/Workflow" + } + } + } + }, + "SubscriptionStateProperties": { + "type": "object", + "description": "Subscription State properties." + }, + "PostBackupResponseProperties": { + "type": "object", + "description": "Post Backup Response Properties object.", + "properties": { + "cloudEndpointName": { + "type": "string", + "description": "cloud endpoint Name.", + "readOnly": true + } + } + }, + "StorageSyncServiceUpdateParameters": { + "properties": { + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "The user-specified tags associated with the storage sync service." + }, + "properties": { + "x-ms-client-flatten": true, + "$ref": "#/definitions/StorageSyncServiceUpdateProperties", + "description": "The properties of the storage sync service." + } + }, + "description": "Parameters for updating an Storage sync service." + }, + "StorageSyncServiceUpdateProperties": { + "type": "object", + "description": "Storage Sync Service Update Properties object.", + "properties": {} + }, + "StorageSyncServiceProperties": { + "type": "object", + "description": "Storage Sync Service Properties object.", + "properties": { + "storageSyncServiceStatus": { + "type": "integer", + "description": "Storage Sync service status.", + "readOnly": true + }, + "storageSyncServiceUid": { + "type": "string", + "description": "Storage Sync service Uid", + "readOnly": true + } + } + }, + "WorkflowProperties": { + "type": "object", + "description": "Workflow Properties object.", + "properties": { + "lastStepName": { + "type": "string", + "description": "last step name" + }, + "status": { + "$ref": "#/definitions/WorkflowStatus", + "description": "workflow status." + }, + "operation": { + "$ref": "#/definitions/OperationDirection", + "description": "operation direction." + }, + "steps": { + "type": "string", + "description": "workflow steps" + }, + "lastOperationId": { + "type": "string", + "description": "workflow last operation identifier." + } + } + }, + "SyncGroupProperties": { + "type": "object", + "description": "SyncGroup Properties object.", + "properties": { + "uniqueId": { + "type": "string", + "description": "Unique Id" + }, + "syncGroupStatus": { + "type": "string", + "description": "Sync group status", + "readOnly": true + } + } + }, + "RegisteredServerProperties": { + "type": "object", + "description": "RegisteredServer Properties object.", + "properties": { + "serverCertificate": { + "type": "string", + "description": "Registered Server Certificate" + }, + "agentVersion": { + "type": "string", + "description": "Registered Server Agent Version" + }, + "serverOSVersion": { + "type": "string", + "description": "Registered Server OS Version" + }, + "serverManagementErrorCode": { + "type": "integer", + "description": "Registered Server Management Error Code" + }, + "lastHeartBeat": { + "type": "string", + "description": "Registered Server last heart beat" + }, + "provisioningState": { + "type": "string", + "description": "Registered Server Provisioning State" + }, + "serverRole": { + "type": "string", + "description": "Registered Server serverRole" + }, + "clusterId": { + "type": "string", + "description": "Registered Server clusterId" + }, + "clusterName": { + "type": "string", + "description": "Registered Server clusterName" + }, + "serverId": { + "type": "string", + "description": "Registered Server serverId" + }, + "storageSyncServiceUid": { + "type": "string", + "description": "Registered Server storageSyncServiceUid" + }, + "lastWorkflowId": { + "type": "string", + "description": "Registered Server lastWorkflowId" + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name" + }, + "discoveryEndpointUri": { + "type": "string", + "description": "Resource discoveryEndpointUri" + }, + "resourceLocation": { + "type": "string", + "description": "Resource Location" + }, + "serviceLocation": { + "type": "string", + "description": "Service Location" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "managementEndpointUri": { + "type": "string", + "description": "Management Endpoint Uri" + }, + "monitoringConfiguration": { + "type": "string", + "description": "Monitoring Configuration" + } + } + }, + "CloudEndpointProperties": { + "type": "object", + "description": "CloudEndpoint Properties object.", + "properties": { + "storageAccountResourceId": { + "type": "string", + "description": "Storage Account Resource Id" + }, + "azureFileShareName": { + "type": "string", + "description": "Azure file share name" + }, + "storageAccountTenantId": { + "type": "string", + "description": "Storage Account Tenant Id" + }, + "partnershipId": { + "type": "string", + "description": "Partnership Id" + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "backupEnabled": { + "type": "string", + "description": "Backup Enabled", + "readOnly": true + }, + "provisioningState": { + "type": "string", + "description": "CloudEndpoint Provisioning State" + }, + "lastWorkflowId": { + "type": "string", + "description": "CloudEndpoint lastWorkflowId" + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name" } + } }, - "security": [{ - "azure_auth": [ - "user_impersonation" - ] - }] + "ServerEndpointUpdateProperties": { + "type": "object", + "description": "ServerEndpoint Update Properties object.", + "properties": { + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "offlineDataTransfer": { + "$ref": "#/definitions/FeatureStatus", + "description": "Offline data transfer" + }, + "offlineDataTransferShareName": { + "type": "string", + "description": "Offline data transfer share name" + } + } + }, + "ServerEndpointProperties": { + "type": "object", + "description": "ServerEndpoint Properties object.", + "properties": { + "serverLocalPath": { + "$ref": "#/definitions/PhysicalPath", + "description": "Server Local path." + }, + "cloudTiering": { + "$ref": "#/definitions/FeatureStatus", + "description": "Cloud Tiering." + }, + "volumeFreeSpacePercent": { + "type": "integer", + "minimum": 0, + "maximum": 100, + "description": "Level of free space to be maintained by Cloud Tiering if it is enabled." + }, + "tierFilesOlderThanDays": { + "type": "integer", + "minimum": 0, + "maximum": 2147483647, + "description": "Tier files older than days." + }, + "friendlyName": { + "type": "string", + "description": "Friendly Name" + }, + "serverResourceId": { + "$ref": "#/definitions/ResourceId", + "description": "Server Resource Id." + }, + "provisioningState": { + "type": "string", + "description": "ServerEndpoint Provisioning State", + "readOnly": true + }, + "lastWorkflowId": { + "type": "string", + "description": "ServerEndpoint lastWorkflowId", + "readOnly": true + }, + "lastOperationName": { + "type": "string", + "description": "Resource Last Operation Name", + "readOnly": true + }, + "syncStatus": { + "type": "object", + "$ref": "#/definitions/ServerEndpointSyncStatus", + "description": "Server Endpoint sync status", + "readOnly": true + }, + "offlineDataTransfer": { + "$ref": "#/definitions/FeatureStatus", + "description": "Offline data transfer" + }, + "offlineDataTransferStorageAccountResourceId": { + "type": "string", + "description": "Offline data transfer storage account resource ID", + "readOnly": true + }, + "offlineDataTransferStorageAccountTenantId": { + "type": "string", + "description": "Offline data transfer storage account tenant ID", + "readOnly": true + }, + "offlineDataTransferShareName": { + "type": "string", + "description": "Offline data transfer share name" + } + } + }, + "ServerEndpointSyncStatus": { + "type": "object", + "description": "Server Endpoint sync status", + "properties": { + "downloadHealth": { + "$ref": "#/definitions/HealthState", + "description": "Download Health Status.", + "readOnly": true + }, + "uploadHealth": { + "$ref": "#/definitions/HealthState", + "description": "Upload Health Status.", + "readOnly": true + }, + "combinedHealth": { + "$ref": "#/definitions/HealthState", + "description": "Combined Health Status.", + "readOnly": true + }, + "syncActivity": { + "$ref": "#/definitions/SyncActivityState", + "description": "Sync activity", + "readOnly": true + }, + "totalPersistentFilesNotSyncingCount": { + "type": "integer", + "format": "int64", + "description": "Total count of persistent files not syncing (combined upload + download). Reserved for future use.", + "readOnly": true + }, + "lastUpdatedTimestamp": { + "type": "string", + "format": "date-time", + "description": "Last Updated Timestamp", + "readOnly": true + }, + "uploadStatus": { + "$ref": "#/definitions/SyncSessionStatus", + "description": "Upload Status", + "readOnly": true + }, + "downloadStatus": { + "$ref": "#/definitions/SyncSessionStatus", + "description": "Download Status", + "readOnly": true + }, + "uploadActivity": { + "$ref": "#/definitions/SyncActivityStatus", + "description": "Upload sync activity", + "readOnly": true + }, + "downloadActivity": { + "$ref": "#/definitions/SyncActivityStatus", + "description": "Download sync activity", + "readOnly": true + }, + "offlineDataTransferStatus": { + "$ref": "#/definitions/OfflineDataTransferState", + "description": "Offline Data Transfer State", + "readOnly": true + } + } + }, + "SyncSessionStatus": { + "type": "object", + "description": "Sync Session status object.", + "properties": { + "lastSyncResult": { + "type": "integer", + "format": "int32", + "description": "Last sync result (HResult)", + "readOnly": true + }, + "lastSyncTimestamp": { + "type": "string", + "format": "date-time", + "description": "Last sync timestamp", + "readOnly": true + }, + "lastSyncSuccessTimestamp": { + "type": "string", + "format": "date-time", + "description": "Last sync success timestamp", + "readOnly": true + }, + "lastSyncPerItemErrorCount": { + "type": "integer", + "format": "int64", + "description": "Last sync per item error count.", + "readOnly": true + }, + "persistentFilesNotSyncingCount": { + "type": "integer", + "format": "int64", + "description": "Count of persistent files not syncing. Reserved for future use.", + "readOnly": true + }, + "transientFilesNotSyncingCount": { + "type": "integer", + "format": "int64", + "description": "Count of transient files not syncing. Reserved for future use.", + "readOnly": true + }, + "filesNotSyncingErrors": { + "type": "array", + "items": { + "$ref": "#/definitions/FilesNotSyncingError" + }, + "description": "Array of per-item errors coming from the last sync session. Reserved for future use.", + "readOnly": true + } + } + }, + "SyncActivityStatus": { + "type": "object", + "description": "Sync Session status object.", + "properties": { + "timestamp": { + "type": "string", + "format": "date-time", + "description": "Timestamp when properties were updated", + "readOnly": true + }, + "perItemErrorCount": { + "type": "integer", + "format": "int64", + "description": "Per item error count", + "readOnly": true + }, + "appliedItemCount": { + "type": "integer", + "format": "int64", + "description": "Applied item count.", + "readOnly": true + }, + "totalItemCount": { + "type": "integer", + "format": "int64", + "description": "Total item count (if available)", + "readOnly": true + }, + "appliedBytes": { + "type": "integer", + "format": "int64", + "description": "Applied bytes", + "readOnly": true + }, + "totalBytes": { + "type": "integer", + "format": "int64", + "description": "Total bytes (if available)", + "readOnly": true + } + } + }, + "FilesNotSyncingError": { + "type": "object", + "description": "Files not syncing error object", + "properties": { + "errorCode": { + "type": "integer", + "format": "int32", + "description": "Error code (HResult)", + "readOnly": true + }, + "persistentCount": { + "type": "integer", + "format": "int64", + "description": "Count of persistent files not syncing with the specified error code", + "readOnly": true + }, + "transientCount": { + "type": "integer", + "format": "int64", + "description": "Count of transient files not syncing with the specified error code", + "readOnly": true + } + } + }, + "PhysicalPath": { + "type": "string", + "description": "Server folder used for data synchronization" + }, + "ResourceId": { + "type": "string", + "description": "Arm resource identifier." + }, + "TagsObject": { + "type": "object", + "description": "Tags object." + }, + "FeatureStatus": { + "type": "string", + "description": "Type of the Feature Status", + "enum": [ + "on", + "off" + ] + }, + "HealthState": { + "type": "string", + "description": "Type of the Health state", + "enum": [ + "Healthy", + "Error", + "SyncBlockedForRestore", + "SyncBlockedForChangeDetectionPostRestore", + "NoActivity" + ] + }, + "SyncActivityState": { + "type": "string", + "description": "Type of the sync activity state", + "enum": [ + "Upload", + "Download", + "UploadAndDownload" + ] + }, + "OfflineDataTransferState": { + "type": "string", + "description": "Type of the Health state", + "enum": [ + "InProgress", + "Stopping", + "NotRunning", + "Complete" + ] + }, + "WorkflowStatus": { + "type": "string", + "description": "Type of the Workflow Status", + "enum": [ + "active", + "expired", + "succeeded", + "aborted", + "failed" + ] + }, + "OperationDirection": { + "type": "string", + "description": "Type of the Operation Direction", + "enum": [ + "do", + "undo", + "cancel" + ] + }, + "ProgressType": { + "type": "string", + "description": "Type of the ProgressType", + "enum": [ + "none", + "initialize", + "download", + "upload", + "recall" + ] + }, + "OperationStatus": { + "type": "object", + "properties": { + "name": { + "readOnly": true, + "type": "string", + "description": "Operation Id" + }, + "status": { + "readOnly": true, + "type": "string", + "description": "Operation status" + }, + "startTime": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "Start time of the operation" + }, + "endTime": { + "readOnly": true, + "type": "string", + "format": "date-time", + "description": "End time of the operation" + }, + "error": { + "readOnly": true, + "$ref": "#/definitions/StorageSyncApiError", + "description": "Error details." + } + }, + "description": "Operation status object" + } + }, + "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" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] } diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsCreateOrUpdate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsCreateOrUpdate.json index 50b0761d0816..fd59bf61e70e 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsCreateOrUpdate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsCreateOrUpdate.json @@ -19,4 +19,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsDelete.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsDelete.json index 37dc32272c47..1f1271cef74b 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsDelete.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsDelete.json @@ -12,4 +12,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsGet.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsGet.json index c3d70c512832..a6aca38e8279 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsGet.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsGet.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsListByManager.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsListByManager.json index 5402d3312556..12b801a6ab4d 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsListByManager.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AccessControlRecordsListByManager.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsClear.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsClear.json index 82ca7d973a2f..7290889ffb84 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsClear.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsClear.json @@ -17,4 +17,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsListByManager.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsListByManager.json index ea388ee04d39..b5614778206f 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsListByManager.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsListByManager.json @@ -73,4 +73,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsSendTestEmail.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsSendTestEmail.json index e105c0584627..d8bb0e07573d 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsSendTestEmail.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/AlertsSendTestEmail.json @@ -16,4 +16,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesBackupNow.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesBackupNow.json index 0295fcf21edc..d594466be58c 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesBackupNow.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesBackupNow.json @@ -14,4 +14,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesCreateOrUpdate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesCreateOrUpdate.json index 023995f3704e..ef960fc14488 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesCreateOrUpdate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesCreateOrUpdate.json @@ -24,4 +24,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesDelete.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesDelete.json index e53816e4de6f..92fa702dbb94 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesDelete.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesDelete.json @@ -15,4 +15,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesGet.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesGet.json index a1ac42a7fdbe..d8af077bcd15 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesGet.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesGet.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesListByDevice.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesListByDevice.json index 99330d1bac13..0d12120cef42 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesListByDevice.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupPoliciesListByDevice.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesCreateOrUpdate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesCreateOrUpdate.json index c78de59d29db..e4e5e8662b9f 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesCreateOrUpdate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesCreateOrUpdate.json @@ -34,4 +34,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesDelete.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesDelete.json index 714ef0ca6aba..c2e7b139a0a1 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesDelete.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesDelete.json @@ -16,4 +16,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesGet.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesGet.json index cc2568512d61..c56a8a45f8df 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesGet.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesGet.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesListByBackupPolicy.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesListByBackupPolicy.json index 09c9f72ef8cd..6a98185eea25 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesListByBackupPolicy.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupSchedulesListByBackupPolicy.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsClone.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsClone.json index 39665ab50cd3..2107f54d211f 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsClone.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsClone.json @@ -34,4 +34,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsDelete.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsDelete.json index 2826be6790a0..2962b76cbccc 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsDelete.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsDelete.json @@ -15,4 +15,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsListByDevice.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsListByDevice.json index 023a40e697cb..c37954a36eec 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsListByDevice.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsListByDevice.json @@ -82,4 +82,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsRestore.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsRestore.json index 1a3a24b6864b..3bafa725ff54 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsRestore.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BackupsRestore.json @@ -11,10 +11,10 @@ }, "responses": { "200": { - "body": "" + "body": "" }, "202": { "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsCreateOrUpdate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsCreateOrUpdate.json index b68c2940ca95..2850d62d632c 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsCreateOrUpdate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsCreateOrUpdate.json @@ -37,4 +37,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsDelete.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsDelete.json index 51793c2d04d9..fb88d0cce62e 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsDelete.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsDelete.json @@ -12,4 +12,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsGet.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsGet.json index a34cbc6cd000..bbd0d01cc40e 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsGet.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsGet.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsListByManager.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsListByManager.json index de3086052385..8c21d6eb655d 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsListByManager.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/BandwidthSettingsListByManager.json @@ -113,4 +113,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/CloudAppliancesListSupportedConfigurations.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/CloudAppliancesListSupportedConfigurations.json index 67e0847ef45f..49f10bda433c 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/CloudAppliancesListSupportedConfigurations.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/CloudAppliancesListSupportedConfigurations.json @@ -93,4 +93,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/CloudAppliancesProvision.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/CloudAppliancesProvision.json index 22a20eff912a..b5aa86efb7f6 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/CloudAppliancesProvision.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/CloudAppliancesProvision.json @@ -18,4 +18,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsCreateOrUpdateAlertSettings.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsCreateOrUpdateAlertSettings.json index a7b5960aae39..cbce44eef9f7 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsCreateOrUpdateAlertSettings.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsCreateOrUpdateAlertSettings.json @@ -22,4 +22,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsCreateOrUpdateTimeSettings.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsCreateOrUpdateTimeSettings.json index a58874039193..9b7bc9761b89 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsCreateOrUpdateTimeSettings.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsCreateOrUpdateTimeSettings.json @@ -23,4 +23,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetAlertSettings.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetAlertSettings.json index e4690adff858..ab7f321c1d0a 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetAlertSettings.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetAlertSettings.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetNetworkSettings.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetNetworkSettings.json index cf0fb50c5846..1bf665ab2e7b 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetNetworkSettings.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetNetworkSettings.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetSecuritySettings.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetSecuritySettings.json index 79f11677a01b..9139ec2ff966 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetSecuritySettings.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetSecuritySettings.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetTimeSettings.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetTimeSettings.json index bc9a5b3d48fb..888cbe67ad5a 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetTimeSettings.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsGetTimeSettings.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsSyncRemotemanagementCertificate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsSyncRemotemanagementCertificate.json index ad9a503f34ea..5516e8326847 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsSyncRemotemanagementCertificate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsSyncRemotemanagementCertificate.json @@ -12,4 +12,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsUpdateNetworkSettings.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsUpdateNetworkSettings.json index 385227cac169..f60139eed9f1 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsUpdateNetworkSettings.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsUpdateNetworkSettings.json @@ -24,4 +24,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsUpdateSecuritySettings.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsUpdateSecuritySettings.json index 294daaf81efa..7cc7b56dbbec 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsUpdateSecuritySettings.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DeviceSettingsUpdateSecuritySettings.json @@ -45,4 +45,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesAuthorizeForServiceEncryptionKeyRollover.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesAuthorizeForServiceEncryptionKeyRollover.json index 3362993d148b..f1cdbab261a4 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesAuthorizeForServiceEncryptionKeyRollover.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesAuthorizeForServiceEncryptionKeyRollover.json @@ -11,4 +11,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesConfigure.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesConfigure.json index a49e6ea95b85..9bbeed98eda1 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesConfigure.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesConfigure.json @@ -23,4 +23,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesDeactivate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesDeactivate.json index c7edd2ef0b50..11d2e83ca85b 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesDeactivate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesDeactivate.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesDelete.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesDelete.json index 8958d2728313..4df17eaa164d 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesDelete.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesDelete.json @@ -13,4 +13,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesFailover.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesFailover.json index d6fe60c65200..3d881a921a04 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesFailover.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesFailover.json @@ -18,4 +18,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesGet.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesGet.json index 553af98b83c6..d51559ea910e 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesGet.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesGet.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesGetUpdateSummary.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesGetUpdateSummary.json index f04bba597b42..f4d1bed015e6 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesGetUpdateSummary.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesGetUpdateSummary.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesInstallUpdates.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesInstallUpdates.json index e562f839a344..75eb768074e4 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesInstallUpdates.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesInstallUpdates.json @@ -12,4 +12,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListByManager.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListByManager.json index e152d502dc2e..53501603df1b 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListByManager.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListByManager.json @@ -103,4 +103,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListFailoverSets.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListFailoverSets.json index 45861eb7092c..5f29b6591b8e 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListFailoverSets.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListFailoverSets.json @@ -65,4 +65,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListFailoverTargets.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListFailoverTargets.json index 8f7656f666e2..2fc1b48706c1 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListFailoverTargets.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListFailoverTargets.json @@ -72,4 +72,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListMetricDefinition.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListMetricDefinition.json index 3354294ece07..708b30cdf8bc 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListMetricDefinition.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListMetricDefinition.json @@ -895,4 +895,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListMetrics.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListMetrics.json index 8b9a8b9c6797..27fb4c09355a 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListMetrics.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesListMetrics.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesScanForUpdates.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesScanForUpdates.json index e562f839a344..75eb768074e4 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesScanForUpdates.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesScanForUpdates.json @@ -12,4 +12,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesUpdate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesUpdate.json index f1287b51e3b4..a2a40b90d127 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesUpdate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/DevicesUpdate.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/HardwareComponentGroupsChangeControllerPowerState.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/HardwareComponentGroupsChangeControllerPowerState.json index 750a9cf72bcc..36040718b062 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/HardwareComponentGroupsChangeControllerPowerState.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/HardwareComponentGroupsChangeControllerPowerState.json @@ -21,4 +21,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/HardwareComponentGroupsListByDevice.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/HardwareComponentGroupsListByDevice.json index f227662ef1e8..91d769a2e2d9 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/HardwareComponentGroupsListByDevice.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/HardwareComponentGroupsListByDevice.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsCancel.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsCancel.json index 51c84a7a7545..16762e269a93 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsCancel.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsCancel.json @@ -15,4 +15,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsGet.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsGet.json index 906c7ab407c5..0f52cd4b4be3 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsGet.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsGet.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsListByDevice.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsListByDevice.json index 8e0a19b7e396..68fc7fcf63fe 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsListByDevice.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsListByDevice.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsListByManager.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsListByManager.json index 1775178c884a..23c3528a40dd 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsListByManager.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/JobsListByManager.json @@ -182,4 +182,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersCreateExtendedInfo.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersCreateExtendedInfo.json index 9faa8b9acc49..35a6e9e6ae68 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersCreateExtendedInfo.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersCreateExtendedInfo.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersCreateOrUpdate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersCreateOrUpdate.json index 4e796a190221..d8986c558e92 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersCreateOrUpdate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersCreateOrUpdate.json @@ -52,6 +52,6 @@ "id": "/subscriptions/4385cf00-2d3a-425a-832f-f4285b1c9dce/resourceGroups/ResourceGroupForSDKTest/providers/Microsoft.StorSimple/Managers/ManagerForSDKTest2", "type": "Microsoft.StorSimple/Managers" } - } + } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersDelete.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersDelete.json index 484431fce595..4371a7be4ca2 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersDelete.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersDelete.json @@ -11,4 +11,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersDeleteExtendedInfo.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersDeleteExtendedInfo.json index 6ae2f3d6181e..85f50b3d9e61 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersDeleteExtendedInfo.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersDeleteExtendedInfo.json @@ -10,4 +10,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGet.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGet.json index f06bb9bec573..52e712db2100 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGet.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGet.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetActivationKey.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetActivationKey.json index f1fc415f34a2..bb7159770c61 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetActivationKey.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetActivationKey.json @@ -12,4 +12,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetDevicePublicEncryptionKey.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetDevicePublicEncryptionKey.json index 4b82cf55f773..706993f80903 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetDevicePublicEncryptionKey.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetDevicePublicEncryptionKey.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetEncryptionSettings.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetEncryptionSettings.json index f0f0606c09e2..1d882582cf84 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetEncryptionSettings.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetEncryptionSettings.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetExtendedInfo.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetExtendedInfo.json index 6b9a17194663..fb3437c4f9c0 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetExtendedInfo.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetExtendedInfo.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetPublicEncryptionKey.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetPublicEncryptionKey.json index 93277aa6dfce..0f55aaef4092 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetPublicEncryptionKey.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersGetPublicEncryptionKey.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersList.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersList.json index 7b021b399ffc..19f8976d3bab 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersList.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersList.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListByResourceGroup.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListByResourceGroup.json index 625171969887..931eac32da66 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListByResourceGroup.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListByResourceGroup.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListFeatureSupportStatus.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListFeatureSupportStatus.json index e462521886ab..2c94ee3f6e9a 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListFeatureSupportStatus.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListFeatureSupportStatus.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListMetricDefinition.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListMetricDefinition.json index 6457cfd0e7b1..68f89fbd6d87 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListMetricDefinition.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListMetricDefinition.json @@ -130,4 +130,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListMetrics.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListMetrics.json index 391c82980a67..a5ad1f3fc595 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListMetrics.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersListMetrics.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersRegenerateActivationKey.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersRegenerateActivationKey.json index 9af6bc872805..18bee3ffeb1b 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersRegenerateActivationKey.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersRegenerateActivationKey.json @@ -12,4 +12,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersUpdate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersUpdate.json index 95026a0b83ec..ed227588cef8 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersUpdate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersUpdate.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersUpdateExtendedInfo.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersUpdateExtendedInfo.json index 637c60916d66..02139dc2234e 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersUpdateExtendedInfo.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/ManagersUpdateExtendedInfo.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/OperationsList.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/OperationsList.json index c3319c030ff0..43e14054ac4c 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/OperationsList.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/OperationsList.json @@ -1281,5 +1281,3 @@ } } } - - diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsCreateOrUpdate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsCreateOrUpdate.json index a98e99a9ff51..95bafa9e8c62 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsCreateOrUpdate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsCreateOrUpdate.json @@ -25,4 +25,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsDelete.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsDelete.json index 174085749cc7..2f9d0e62f46f 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsDelete.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsDelete.json @@ -12,4 +12,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsGet.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsGet.json index a67c7479a110..25ec7e0e07a5 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsGet.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsGet.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsListByManager.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsListByManager.json index ca021fe25504..2eacc965b48c 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsListByManager.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/StorageAccountCredentialsListByManager.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersCreateOrUpdate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersCreateOrUpdate.json index a2393c0a1c4e..1872809b3e4c 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersCreateOrUpdate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersCreateOrUpdate.json @@ -26,4 +26,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersDelete.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersDelete.json index a1336ee27a51..2203b40dbe2a 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersDelete.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersDelete.json @@ -13,4 +13,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersGet.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersGet.json index 4fcf64bc4aca..b6920ff0cf47 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersGet.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersGet.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListByDevice.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListByDevice.json index 2d5191d54142..c02569a6e309 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListByDevice.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListByDevice.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListMetricDefinition.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListMetricDefinition.json index 71722480bfcb..e13005f34921 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListMetricDefinition.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListMetricDefinition.json @@ -361,4 +361,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListMetrics.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListMetrics.json index d9bd7a2ba348..bda358463597 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListMetrics.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumeContainersListMetrics.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesCreateOrUpdate.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesCreateOrUpdate.json index 42d9211572a9..393b74f3ea4c 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesCreateOrUpdate.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesCreateOrUpdate.json @@ -27,4 +27,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesDelete.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesDelete.json index a5f5d9513778..df3dc3612386 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesDelete.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesDelete.json @@ -14,4 +14,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesGet.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesGet.json index 15e72e58e874..f87c325bbf49 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesGet.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesGet.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListByDevice.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListByDevice.json index 8eaa8c2150d9..4a5f0420a7e4 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListByDevice.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListByDevice.json @@ -81,4 +81,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListByVolumeContainer.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListByVolumeContainer.json index 4cf435741ba7..c03a06fb7ff4 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListByVolumeContainer.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListByVolumeContainer.json @@ -76,4 +76,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListMetricDefinition.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListMetricDefinition.json index 84e7d0c21beb..86ed2f1f2709 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListMetricDefinition.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListMetricDefinition.json @@ -397,4 +397,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListMetrics.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListMetrics.json index ccb1571737cf..3cf78147df2f 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListMetrics.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/examples/VolumesListMetrics.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/storsimple.json b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/storsimple.json index ecbb6d852729..757f160e77aa 100644 --- a/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/storsimple.json +++ b/specification/storsimple8000series/resource-manager/Microsoft.StorSimple/stable/2017-06-01/storsimple.json @@ -8900,4 +8900,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Create_AzureML.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Create_AzureML.json index 1d7f8b38bf65..7f18648ce9bc 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Create_AzureML.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Create_AzureML.json @@ -139,4 +139,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Create_JavaScript.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Create_JavaScript.json index 6c2039ead0fa..4f89ca5efe77 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Create_JavaScript.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Create_JavaScript.json @@ -87,4 +87,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Delete.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Delete.json index 2e270bd2b4ea..3e1c58904e65 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Delete.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Delete.json @@ -7,7 +7,7 @@ "functionName": "function8197" }, "responses": { - "200": { }, - "204": { } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Get_AzureML.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Get_AzureML.json index d3d5c60e2aaf..1c19c3fbea3e 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Get_AzureML.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Get_AzureML.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Get_JavaScript.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Get_JavaScript.json index a5c023f2f506..2bb2163798ed 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Get_JavaScript.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Get_JavaScript.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_ListByStreamingJob.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_ListByStreamingJob.json index 8859522e0efc..181b5c065f1c 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_ListByStreamingJob.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_ListByStreamingJob.json @@ -80,4 +80,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_RetrieveDefaultDefinition_AzureML.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_RetrieveDefaultDefinition_AzureML.json index a6a6be51b3ec..5354506aad52 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_RetrieveDefaultDefinition_AzureML.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_RetrieveDefaultDefinition_AzureML.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Test_AzureML.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Test_AzureML.json index f10118894961..89366949168d 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Test_AzureML.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Test_AzureML.json @@ -12,6 +12,6 @@ "status": "TestSucceeded" } }, - "202": { } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Test_JavaScript.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Test_JavaScript.json index 1100ca5f8bf3..ec1550488dfe 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Test_JavaScript.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Test_JavaScript.json @@ -16,6 +16,6 @@ } } }, - "202": { } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Update_AzureML.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Update_AzureML.json index f4aca156d9e8..73c640b03567 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Update_AzureML.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Update_AzureML.json @@ -67,4 +67,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Update_JavaScript.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Update_JavaScript.json index 0e8ce5a51c1f..4a8f40607fae 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Update_JavaScript.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Function_Update_JavaScript.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Reference_Blob_CSV.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Reference_Blob_CSV.json index d572e0c8c9f7..c3534db73472 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Reference_Blob_CSV.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Reference_Blob_CSV.json @@ -103,4 +103,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_Blob_CSV.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_Blob_CSV.json index a8cb1ab9ea4d..752229fadcce 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_Blob_CSV.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_Blob_CSV.json @@ -106,4 +106,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_EventHub_JSON.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_EventHub_JSON.json index 316aa1e15c59..e7d5830e94aa 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_EventHub_JSON.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_EventHub_JSON.json @@ -85,4 +85,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_IoTHub_Avro.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_IoTHub_Avro.json index 853b1c14261d..a3ccf3141281 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_IoTHub_Avro.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Create_Stream_IoTHub_Avro.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Delete.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Delete.json index 106c920779ca..433fb3bed6b8 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Delete.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Delete.json @@ -7,7 +7,7 @@ "inputName": "input7225" }, "responses": { - "200": { }, - "204": { } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Reference_Blob_CSV.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Reference_Blob_CSV.json index 55184f818279..e77c7821d340 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Reference_Blob_CSV.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Reference_Blob_CSV.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_Blob_CSV.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_Blob_CSV.json index 9fec1256ab1a..477b2d1e07c7 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_Blob_CSV.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_Blob_CSV.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_EventHub_JSON.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_EventHub_JSON.json index d93fa1705328..c011ffd42ddc 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_EventHub_JSON.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_EventHub_JSON.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_IoTHub_Avro.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_IoTHub_Avro.json index cc819634c61e..82cbabda42f9 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_IoTHub_Avro.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Get_Stream_IoTHub_Avro.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_ListByStreamingJob.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_ListByStreamingJob.json index 25ff405eaebc..78d9d5426daf 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_ListByStreamingJob.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_ListByStreamingJob.json @@ -121,4 +121,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_ListByStreamingJob_Diagnostics.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_ListByStreamingJob_Diagnostics.json index b11982d8cd80..394f3df5759e 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_ListByStreamingJob_Diagnostics.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_ListByStreamingJob_Diagnostics.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Test.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Test.json index 81883c36ee18..12d72b504d77 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Test.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Test.json @@ -12,6 +12,6 @@ "status": "TestSucceeded" } }, - "202": { } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Reference_Blob.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Reference_Blob.json index 87fa7c5afc4d..94ad8bab48dd 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Reference_Blob.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Reference_Blob.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_Blob.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_Blob.json index d4db1e1790c2..8791432ba0ed 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_Blob.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_Blob.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_EventHub.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_EventHub.json index 797744d409aa..e77bfef7d4fb 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_EventHub.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_EventHub.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_IoTHub.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_IoTHub.json index 27b907d824b0..3922f319d63d 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_IoTHub.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Input_Update_Stream_IoTHub.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Operation_List.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Operation_List.json index 90dac002ccfd..5dbf3a19d505 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Operation_List.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Operation_List.json @@ -172,4 +172,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureDataLakeStore_JSON.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureDataLakeStore_JSON.json index a5b9128fb158..005bd7533aea 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureDataLakeStore_JSON.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureDataLakeStore_JSON.json @@ -94,4 +94,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureSQL.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureSQL.json index f8abc3c729a5..7e67ae656e2b 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureSQL.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureSQL.json @@ -64,4 +64,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureTable.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureTable.json index 8212b7abaa63..cbb4f48c9543 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureTable.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_AzureTable.json @@ -79,4 +79,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_Blob_CSV.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_Blob_CSV.json index a8c3e0485e03..fa6a00a6abbd 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_Blob_CSV.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_Blob_CSV.json @@ -100,4 +100,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_DocumentDB.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_DocumentDB.json index 3c952441e198..9adef805afd8 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_DocumentDB.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_DocumentDB.json @@ -67,4 +67,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_EventHub_JSON.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_EventHub_JSON.json index 92548b63e02a..573f99a14045 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_EventHub_JSON.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_EventHub_JSON.json @@ -85,4 +85,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_PowerBI.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_PowerBI.json index 0fe9b442e1c8..b34f8e5ee280 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_PowerBI.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_PowerBI.json @@ -33,7 +33,7 @@ "type": "Microsoft.StreamAnalytics/streamingjobs/outputs", "properties": { "datasource": { - "type": "PowerBI", + "type": "PowerBI", "properties": { "dataset": "someDataset", "table": "someTable", @@ -56,7 +56,7 @@ "type": "Microsoft.StreamAnalytics/streamingjobs/outputs", "properties": { "datasource": { - "type": "PowerBI", + "type": "PowerBI", "properties": { "dataset": "someDataset", "table": "someTable", @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_ServiceBusQueue_Avro.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_ServiceBusQueue_Avro.json index 5adfffda70bc..625c8bf7e0d0 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_ServiceBusQueue_Avro.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_ServiceBusQueue_Avro.json @@ -84,4 +84,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_ServiceBusTopic_CSV.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_ServiceBusTopic_CSV.json index 5f53980f637d..66f6b3a1d73e 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_ServiceBusTopic_CSV.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Create_ServiceBusTopic_CSV.json @@ -94,4 +94,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Delete.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Delete.json index bfb0bbfb7b2e..28248f5579a1 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Delete.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Delete.json @@ -7,7 +7,7 @@ "outputName": "output1755" }, "responses": { - "200": { }, - "204": { } + "200": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureDataLakeStore_JSON.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureDataLakeStore_JSON.json index 5fcd511f6a20..24981a31e83f 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureDataLakeStore_JSON.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureDataLakeStore_JSON.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureSQL.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureSQL.json index 46dbeae04d97..fcc6a196e4d0 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureSQL.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureSQL.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureTable.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureTable.json index 5e850f24d091..23152a0fa04e 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureTable.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_AzureTable.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_Blob_CSV.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_Blob_CSV.json index d80dc7e4b150..1e8086bca3d1 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_Blob_CSV.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_Blob_CSV.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_DocumentDB.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_DocumentDB.json index 39d4497d50f6..76829ed60c27 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_DocumentDB.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_DocumentDB.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_EventHub_JSON.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_EventHub_JSON.json index 305a259235f8..b5793235a693 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_EventHub_JSON.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_EventHub_JSON.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_PowerBI.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_PowerBI.json index 5c57d2e6bc80..a11579304f2b 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_PowerBI.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_PowerBI.json @@ -17,7 +17,7 @@ "type": "Microsoft.StreamAnalytics/streamingjobs/outputs", "properties": { "datasource": { - "type": "PowerBI", + "type": "PowerBI", "properties": { "dataset": "someDataset", "table": "someTable", @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_ServiceBusQueue_Avro.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_ServiceBusQueue_Avro.json index 88c96eece582..74236301d57b 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_ServiceBusQueue_Avro.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_ServiceBusQueue_Avro.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_ServiceBusTopic_CSV.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_ServiceBusTopic_CSV.json index 6ad89e1ee7a5..b575d5ff0a1e 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_ServiceBusTopic_CSV.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Get_ServiceBusTopic_CSV.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_ListByStreamingJob.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_ListByStreamingJob.json index abe45682709c..24a49fd5289c 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_ListByStreamingJob.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_ListByStreamingJob.json @@ -179,7 +179,7 @@ "type": "Microsoft.StreamAnalytics/streamingjobs/outputs", "properties": { "datasource": { - "type": "PowerBI", + "type": "PowerBI", "properties": { "dataset": "differentDataset", "table": "someTable", @@ -223,4 +223,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Test.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Test.json index 3b04d722508c..2b6f05fa13e2 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Test.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Test.json @@ -12,6 +12,6 @@ "status": "TestSucceeded" } }, - "202": { } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureDataLakeStore.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureDataLakeStore.json index 2ae6907a5f1e..15a2470f67d5 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureDataLakeStore.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureDataLakeStore.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureSQL.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureSQL.json index a97caf13a758..2e950dcb357a 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureSQL.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureSQL.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureTable.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureTable.json index 2d0025bfba01..453afa0f5f64 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureTable.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_AzureTable.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_Blob.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_Blob.json index a90564754271..b13895a35dc2 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_Blob.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_Blob.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_DocumentDB.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_DocumentDB.json index 45c549e0e992..8e1af4dc906e 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_DocumentDB.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_DocumentDB.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_EventHub.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_EventHub.json index da11a0b34933..e1d4e95e1760 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_EventHub.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_EventHub.json @@ -53,4 +53,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_PowerBI.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_PowerBI.json index 5f5d70d25aba..b92c0174770f 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_PowerBI.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_PowerBI.json @@ -27,7 +27,7 @@ "type": "Microsoft.StreamAnalytics/streamingjobs/outputs", "properties": { "datasource": { - "type": "PowerBI", + "type": "PowerBI", "properties": { "dataset": "differentDataset", "table": "someTable", @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_ServiceBusQueue.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_ServiceBusQueue.json index 7b9451785cd3..bd7d483f8dca 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_ServiceBusQueue.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_ServiceBusQueue.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_ServiceBusTopic.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_ServiceBusTopic.json index 19279861ba85..e10f97619e29 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_ServiceBusTopic.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Output_Update_ServiceBusTopic.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Create_CompleteJob.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Create_CompleteJob.json index 48ffa3870cdd..b427f6d8bcaf 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Create_CompleteJob.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Create_CompleteJob.json @@ -258,4 +258,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Create_JobShell.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Create_JobShell.json index 1adca3818d6d..ff082ef8674f 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Create_JobShell.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Create_JobShell.json @@ -97,4 +97,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Delete.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Delete.json index c8560ac598cd..dcd15cf8a664 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Delete.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Delete.json @@ -6,8 +6,8 @@ "jobName": "sj59" }, "responses": { - "200": { }, - "202": { }, - "204": { } + "200": {}, + "202": {}, + "204": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Get_Expand.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Get_Expand.json index d43e68de7075..ec266748bb58 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Get_Expand.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Get_Expand.json @@ -98,4 +98,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Get_NoExpand.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Get_NoExpand.json index e5c39fea5275..c991756581f4 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Get_NoExpand.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Get_NoExpand.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_ByResourceGroup_Expand.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_ByResourceGroup_Expand.json index e21f93b3804f..f418fd22b957 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_ByResourceGroup_Expand.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_ByResourceGroup_Expand.json @@ -185,4 +185,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_ByResourceGroup_NoExpand.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_ByResourceGroup_NoExpand.json index 99b1a2b679c8..296da8a80b16 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_ByResourceGroup_NoExpand.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_ByResourceGroup_NoExpand.json @@ -66,4 +66,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_BySubscription_Expand.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_BySubscription_Expand.json index dcfc977f2f55..84a98b9a3690 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_BySubscription_Expand.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_BySubscription_Expand.json @@ -184,4 +184,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_BySubscription_NoExpand.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_BySubscription_NoExpand.json index ba222c7aba2d..bbb12dac5c50 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_BySubscription_NoExpand.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_List_BySubscription_NoExpand.json @@ -65,4 +65,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_CustomTime.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_CustomTime.json index 8535a1b96f13..e00e11b8e203 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_CustomTime.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_CustomTime.json @@ -10,7 +10,7 @@ } }, "responses": { - "200": { }, - "202": { } + "200": {}, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_JobStartTime.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_JobStartTime.json index 69617e2d3da0..0852be5ce035 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_JobStartTime.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_JobStartTime.json @@ -9,7 +9,7 @@ } }, "responses": { - "200": { }, - "202": { } + "200": {}, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_LastOutputEventTime.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_LastOutputEventTime.json index e8577fc00cdd..e2873d19e997 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_LastOutputEventTime.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Start_LastOutputEventTime.json @@ -9,7 +9,7 @@ } }, "responses": { - "200": { }, - "202": { } + "200": {}, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Stop.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Stop.json index 1a1b33d05e06..4bc91469fb70 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Stop.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Stop.json @@ -6,7 +6,7 @@ "jobName": "sj59" }, "responses": { - "200": { }, - "202": { } + "200": {}, + "202": {} } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Update.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Update.json index 443254393970..ae78ba2a8b4f 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Update.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/StreamingJob_Update.json @@ -44,4 +44,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Subscription_ListQuotas.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Subscription_ListQuotas.json index a07f26ca9432..c7c3b5149548 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Subscription_ListQuotas.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Subscription_ListQuotas.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Create.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Create.json index 848cae2a3969..95eae8295b63 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Create.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Create.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Get.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Get.json index 685f2604d1de..95ea79f32fb2 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Get.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Get.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Update.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Update.json index ad1cf5eae29d..b0b9fd871d33 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Update.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/examples/Transformation_Update.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/functions.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/functions.json index 4eb0b4d3cff2..e5aa2b14299a 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/functions.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/functions.json @@ -41,8 +41,12 @@ "operationId": "Functions_CreateOrReplace", "description": "Creates a function or replaces an already existing function under an existing streaming job.", "x-ms-examples": { - "Create an Azure ML function": { "$ref": "./examples/Function_Create_AzureML.json" }, - "Create a JavaScript function": { "$ref": "./examples/Function_Create_JavaScript.json" } + "Create an Azure ML function": { + "$ref": "./examples/Function_Create_AzureML.json" + }, + "Create a JavaScript function": { + "$ref": "./examples/Function_Create_JavaScript.json" + } }, "parameters": [ { @@ -120,8 +124,12 @@ "operationId": "Functions_Update", "description": "Updates an existing function under an existing streaming job. This can be used to partially update (ie. update one or two properties) a function without affecting the rest the job or function definition.", "x-ms-examples": { - "Update an Azure ML function": { "$ref": "./examples/Function_Update_AzureML.json" }, - "Update a JavaScript function": { "$ref": "./examples/Function_Update_JavaScript.json" } + "Update an Azure ML function": { + "$ref": "./examples/Function_Update_AzureML.json" + }, + "Update a JavaScript function": { + "$ref": "./examples/Function_Update_JavaScript.json" + } }, "parameters": [ { @@ -179,7 +187,9 @@ "operationId": "Functions_Delete", "description": "Deletes a function from the streaming job.", "x-ms-examples": { - "Delete a function": { "$ref": "./examples/Function_Delete.json" } + "Delete a function": { + "$ref": "./examples/Function_Delete.json" + } }, "parameters": [ { @@ -214,8 +224,12 @@ "operationId": "Functions_Get", "description": "Gets details about the specified function.", "x-ms-examples": { - "Get an Azure ML function": { "$ref": "./examples/Function_Get_AzureML.json" }, - "Get a JavaScript function": { "$ref": "./examples/Function_Get_JavaScript.json" } + "Get an Azure ML function": { + "$ref": "./examples/Function_Get_AzureML.json" + }, + "Get a JavaScript function": { + "$ref": "./examples/Function_Get_JavaScript.json" + } }, "parameters": [ { @@ -258,7 +272,9 @@ "operationId": "Functions_ListByStreamingJob", "description": "Lists all of the functions under the specified streaming job.", "x-ms-examples": { - "List all functions in a streaming job": { "$ref": "./examples/Function_ListByStreamingJob.json" } + "List all functions in a streaming job": { + "$ref": "./examples/Function_ListByStreamingJob.json" + } }, "parameters": [ { @@ -302,8 +318,12 @@ "operationId": "Functions_Test", "description": "Tests if the information provided for a function is valid. This can range from testing the connection to the underlying web service behind the function or making sure the function code provided is syntactically correct.", "x-ms-examples": { - "Test the connection for an Azure ML function": { "$ref": "./examples/Function_Test_AzureML.json" }, - "Test the connection for a JavaScript function": { "$ref": "./examples/Function_Test_JavaScript.json" } + "Test the connection for an Azure ML function": { + "$ref": "./examples/Function_Test_AzureML.json" + }, + "Test the connection for a JavaScript function": { + "$ref": "./examples/Function_Test_JavaScript.json" + } }, "parameters": [ { @@ -353,7 +373,9 @@ "operationId": "Functions_RetrieveDefaultDefinition", "description": "Retrieves the default definition of a function based on the parameters specified.", "x-ms-examples": { - "Retrieve the default definition for an Azure ML function": { "$ref": "./examples/Function_RetrieveDefaultDefinition_AzureML.json" } + "Retrieve the default definition for an Azure ML function": { + "$ref": "./examples/Function_RetrieveDefaultDefinition_AzureML.json" + } }, "parameters": [ { @@ -765,4 +787,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/inputs.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/inputs.json index 69461eb57e65..9f2f288b961b 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/inputs.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/inputs.json @@ -41,10 +41,18 @@ "operationId": "Inputs_CreateOrReplace", "description": "Creates an input or replaces an already existing input under an existing streaming job.", "x-ms-examples": { - "Create a reference blob input with CSV serialization": { "$ref": "./examples/Input_Create_Reference_Blob_CSV.json" }, - "Create a stream blob input with CSV serialization": { "$ref": "./examples/Input_Create_Stream_Blob_CSV.json" }, - "Create a stream Event Hub input with JSON serialization": { "$ref": "./examples/Input_Create_Stream_EventHub_JSON.json" }, - "Create a stream IoT Hub input with Avro serialization": { "$ref": "./examples/Input_Create_Stream_IoTHub_Avro.json" } + "Create a reference blob input with CSV serialization": { + "$ref": "./examples/Input_Create_Reference_Blob_CSV.json" + }, + "Create a stream blob input with CSV serialization": { + "$ref": "./examples/Input_Create_Stream_Blob_CSV.json" + }, + "Create a stream Event Hub input with JSON serialization": { + "$ref": "./examples/Input_Create_Stream_EventHub_JSON.json" + }, + "Create a stream IoT Hub input with Avro serialization": { + "$ref": "./examples/Input_Create_Stream_IoTHub_Avro.json" + } }, "parameters": [ { @@ -122,10 +130,18 @@ "operationId": "Inputs_Update", "description": "Updates an existing input under an existing streaming job. This can be used to partially update (ie. update one or two properties) an input without affecting the rest the job or input definition.", "x-ms-examples": { - "Update a reference blob input": { "$ref": "./examples/Input_Update_Reference_Blob.json" }, - "Update a stream blob input": { "$ref": "./examples/Input_Update_Stream_Blob.json" }, - "Update a stream Event Hub input": { "$ref": "./examples/Input_Update_Stream_EventHub.json" }, - "Update a stream IoT Hub input": { "$ref": "./examples/Input_Update_Stream_IoTHub.json" } + "Update a reference blob input": { + "$ref": "./examples/Input_Update_Reference_Blob.json" + }, + "Update a stream blob input": { + "$ref": "./examples/Input_Update_Stream_Blob.json" + }, + "Update a stream Event Hub input": { + "$ref": "./examples/Input_Update_Stream_EventHub.json" + }, + "Update a stream IoT Hub input": { + "$ref": "./examples/Input_Update_Stream_IoTHub.json" + } }, "parameters": [ { @@ -183,7 +199,9 @@ "operationId": "Inputs_Delete", "description": "Deletes an input from the streaming job.", "x-ms-examples": { - "Delete an input": { "$ref": "./examples/Input_Delete.json" } + "Delete an input": { + "$ref": "./examples/Input_Delete.json" + } }, "parameters": [ { @@ -218,10 +236,18 @@ "operationId": "Inputs_Get", "description": "Gets details about the specified input.", "x-ms-examples": { - "Get a reference blob input with CSV serialization": { "$ref": "./examples/Input_Get_Reference_Blob_CSV.json" }, - "Get a stream blob input with CSV serialization": { "$ref": "./examples/Input_Get_Stream_Blob_CSV.json" }, - "Get a stream Event Hub input with JSON serialization": { "$ref": "./examples/Input_Get_Stream_EventHub_JSON.json" }, - "Get a stream IoT Hub input with Avro serialization": { "$ref": "./examples/Input_Get_Stream_IoTHub_Avro.json" } + "Get a reference blob input with CSV serialization": { + "$ref": "./examples/Input_Get_Reference_Blob_CSV.json" + }, + "Get a stream blob input with CSV serialization": { + "$ref": "./examples/Input_Get_Stream_Blob_CSV.json" + }, + "Get a stream Event Hub input with JSON serialization": { + "$ref": "./examples/Input_Get_Stream_EventHub_JSON.json" + }, + "Get a stream IoT Hub input with Avro serialization": { + "$ref": "./examples/Input_Get_Stream_IoTHub_Avro.json" + } }, "parameters": [ { @@ -264,8 +290,12 @@ "operationId": "Inputs_ListByStreamingJob", "description": "Lists all of the inputs under the specified streaming job.", "x-ms-examples": { - "List all inputs in a streaming job": { "$ref": "./examples/Input_ListByStreamingJob.json" }, - "List all inputs in a streaming job and include diagnostic information using the $select OData query parameter": { "$ref": "./examples/Input_ListByStreamingJob_Diagnostics.json" } + "List all inputs in a streaming job": { + "$ref": "./examples/Input_ListByStreamingJob.json" + }, + "List all inputs in a streaming job and include diagnostic information using the $select OData query parameter": { + "$ref": "./examples/Input_ListByStreamingJob_Diagnostics.json" + } }, "parameters": [ { @@ -309,7 +339,9 @@ "operationId": "Inputs_Test", "description": "Tests whether an input’s datasource is reachable and usable by the Azure Stream Analytics service.", "x-ms-examples": { - "Test the connection for an input": { "$ref": "./examples/Input_Test.json" } + "Test the connection for an input": { + "$ref": "./examples/Input_Test.json" + } }, "parameters": [ { @@ -893,4 +925,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/outputs.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/outputs.json index 096664f3776c..89c617f33ffe 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/outputs.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/outputs.json @@ -41,15 +41,33 @@ "operationId": "Outputs_CreateOrReplace", "description": "Creates an output or replaces an already existing output under an existing streaming job.", "x-ms-examples": { - "Create an Azure SQL database output": { "$ref": "./examples/Output_Create_AzureSQL.json" }, - "Create an Azure Table output": { "$ref": "./examples/Output_Create_AzureTable.json" }, - "Create a blob output with CSV serialization": { "$ref": "./examples/Output_Create_Blob_CSV.json" }, - "Create a DocumentDB output": { "$ref": "./examples/Output_Create_DocumentDB.json" }, - "Create an Event Hub output with JSON serialization": { "$ref": "./examples/Output_Create_EventHub_JSON.json" }, - "Create a Service Bus Queue output with Avro serialization": { "$ref": "./examples/Output_Create_ServiceBusQueue_Avro.json" }, - "Create a Service Bus Topic output with CSV serialization": { "$ref": "./examples/Output_Create_ServiceBusTopic_CSV.json" }, - "Create a Power BI output": { "$ref": "./examples/Output_Create_PowerBI.json" }, - "Create an Azure Data Lake Store output with JSON serialization": { "$ref": "./examples/Output_Create_AzureDataLakeStore_JSON.json" } + "Create an Azure SQL database output": { + "$ref": "./examples/Output_Create_AzureSQL.json" + }, + "Create an Azure Table output": { + "$ref": "./examples/Output_Create_AzureTable.json" + }, + "Create a blob output with CSV serialization": { + "$ref": "./examples/Output_Create_Blob_CSV.json" + }, + "Create a DocumentDB output": { + "$ref": "./examples/Output_Create_DocumentDB.json" + }, + "Create an Event Hub output with JSON serialization": { + "$ref": "./examples/Output_Create_EventHub_JSON.json" + }, + "Create a Service Bus Queue output with Avro serialization": { + "$ref": "./examples/Output_Create_ServiceBusQueue_Avro.json" + }, + "Create a Service Bus Topic output with CSV serialization": { + "$ref": "./examples/Output_Create_ServiceBusTopic_CSV.json" + }, + "Create a Power BI output": { + "$ref": "./examples/Output_Create_PowerBI.json" + }, + "Create an Azure Data Lake Store output with JSON serialization": { + "$ref": "./examples/Output_Create_AzureDataLakeStore_JSON.json" + } }, "parameters": [ { @@ -127,15 +145,33 @@ "operationId": "Outputs_Update", "description": "Updates an existing output under an existing streaming job. This can be used to partially update (ie. update one or two properties) an output without affecting the rest the job or output definition.", "x-ms-examples": { - "Update an Azure SQL database output": { "$ref": "./examples/Output_Update_AzureSQL.json" }, - "Update an Azure Table output": { "$ref": "./examples/Output_Update_AzureTable.json" }, - "Update a blob output with CSV serialization": { "$ref": "./examples/Output_Update_Blob.json" }, - "Update a DocumentDB output": { "$ref": "./examples/Output_Update_DocumentDB.json" }, - "Update an Event Hub output with JSON serialization": { "$ref": "./examples/Output_Update_EventHub.json" }, - "Update a Service Bus Queue output with Avro serialization": { "$ref": "./examples/Output_Update_ServiceBusQueue.json" }, - "Update a Service Bus Topic output with CSV serialization": { "$ref": "./examples/Output_Update_ServiceBusTopic.json" }, - "Update a Power BI output": { "$ref": "./examples/Output_Update_PowerBI.json" }, - "Update an Azure Data Lake Store output with JSON serialization": { "$ref": "./examples/Output_Update_AzureDataLakeStore.json" } + "Update an Azure SQL database output": { + "$ref": "./examples/Output_Update_AzureSQL.json" + }, + "Update an Azure Table output": { + "$ref": "./examples/Output_Update_AzureTable.json" + }, + "Update a blob output with CSV serialization": { + "$ref": "./examples/Output_Update_Blob.json" + }, + "Update a DocumentDB output": { + "$ref": "./examples/Output_Update_DocumentDB.json" + }, + "Update an Event Hub output with JSON serialization": { + "$ref": "./examples/Output_Update_EventHub.json" + }, + "Update a Service Bus Queue output with Avro serialization": { + "$ref": "./examples/Output_Update_ServiceBusQueue.json" + }, + "Update a Service Bus Topic output with CSV serialization": { + "$ref": "./examples/Output_Update_ServiceBusTopic.json" + }, + "Update a Power BI output": { + "$ref": "./examples/Output_Update_PowerBI.json" + }, + "Update an Azure Data Lake Store output with JSON serialization": { + "$ref": "./examples/Output_Update_AzureDataLakeStore.json" + } }, "parameters": [ { @@ -193,7 +229,9 @@ "operationId": "Outputs_Delete", "description": "Deletes an output from the streaming job.", "x-ms-examples": { - "Delete an output": { "$ref": "./examples/Output_Delete.json" } + "Delete an output": { + "$ref": "./examples/Output_Delete.json" + } }, "parameters": [ { @@ -228,15 +266,33 @@ "operationId": "Outputs_Get", "description": "Gets details about the specified output.", "x-ms-examples": { - "Get an Azure SQL database output": { "$ref": "./examples/Output_Get_AzureSQL.json" }, - "Get an Azure Table output": { "$ref": "./examples/Output_Get_AzureTable.json" }, - "Get a blob output with CSV serialization": { "$ref": "./examples/Output_Get_Blob_CSV.json" }, - "Get a DocumentDB output": { "$ref": "./examples/Output_Get_DocumentDB.json" }, - "Get an Event Hub output with JSON serialization": { "$ref": "./examples/Output_Get_EventHub_JSON.json" }, - "Get a Service Bus Queue output with Avro serialization": { "$ref": "./examples/Output_Get_ServiceBusQueue_Avro.json" }, - "Get a Service Bus Topic output with CSV serialization": { "$ref": "./examples/Output_Get_ServiceBusTopic_CSV.json" }, - "Get a Power BI output": { "$ref": "./examples/Output_Get_PowerBI.json" }, - "Get an Azure Data Lake Store output with JSON serialization": { "$ref": "./examples/Output_Get_AzureDataLakeStore_JSON.json" } + "Get an Azure SQL database output": { + "$ref": "./examples/Output_Get_AzureSQL.json" + }, + "Get an Azure Table output": { + "$ref": "./examples/Output_Get_AzureTable.json" + }, + "Get a blob output with CSV serialization": { + "$ref": "./examples/Output_Get_Blob_CSV.json" + }, + "Get a DocumentDB output": { + "$ref": "./examples/Output_Get_DocumentDB.json" + }, + "Get an Event Hub output with JSON serialization": { + "$ref": "./examples/Output_Get_EventHub_JSON.json" + }, + "Get a Service Bus Queue output with Avro serialization": { + "$ref": "./examples/Output_Get_ServiceBusQueue_Avro.json" + }, + "Get a Service Bus Topic output with CSV serialization": { + "$ref": "./examples/Output_Get_ServiceBusTopic_CSV.json" + }, + "Get a Power BI output": { + "$ref": "./examples/Output_Get_PowerBI.json" + }, + "Get an Azure Data Lake Store output with JSON serialization": { + "$ref": "./examples/Output_Get_AzureDataLakeStore_JSON.json" + } }, "parameters": [ { @@ -279,7 +335,9 @@ "operationId": "Outputs_ListByStreamingJob", "description": "Lists all of the outputs under the specified streaming job.", "x-ms-examples": { - "List all outputs in a streaming job": { "$ref": "./examples/Output_ListByStreamingJob.json" } + "List all outputs in a streaming job": { + "$ref": "./examples/Output_ListByStreamingJob.json" + } }, "parameters": [ { @@ -323,7 +381,9 @@ "operationId": "Outputs_Test", "description": "Tests whether an output’s datasource is reachable and usable by the Azure Stream Analytics service.", "x-ms-examples": { - "Test the connection for an output": { "$ref": "./examples/Output_Test.json" } + "Test the connection for an output": { + "$ref": "./examples/Output_Test.json" + } }, "parameters": [ { @@ -876,4 +936,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/streamingjobs.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/streamingjobs.json index ac8e6fc57dcb..fa38cd05f5ae 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/streamingjobs.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/streamingjobs.json @@ -33,7 +33,7 @@ } }, "paths": { - "/providers/Microsoft.StreamAnalytics/operations": { + "/providers/Microsoft.StreamAnalytics/operations": { "get": { "tags": [ "Operations" @@ -41,7 +41,9 @@ "operationId": "Operations_List", "description": "Lists all of the available Stream Analytics related operations.", "x-ms-examples": { - "List available operations for the Stream Analytics resource provider": { "$ref": "./examples/Operation_List.json" } + "List available operations for the Stream Analytics resource provider": { + "$ref": "./examples/Operation_List.json" + } }, "parameters": [ { @@ -69,8 +71,12 @@ "operationId": "StreamingJobs_CreateOrReplace", "description": "Creates a streaming job or replaces an already existing streaming job.", "x-ms-examples": { - "Create a streaming job shell (a streaming job with no inputs, outputs, transformation, or functions)": { "$ref": "./examples/StreamingJob_Create_JobShell.json" }, - "Create a complete streaming job (a streaming job with a transformation, at least 1 input and at least 1 output)": { "$ref": "./examples/StreamingJob_Create_CompleteJob.json" } + "Create a streaming job shell (a streaming job with no inputs, outputs, transformation, or functions)": { + "$ref": "./examples/StreamingJob_Create_JobShell.json" + }, + "Create a complete streaming job (a streaming job with a transformation, at least 1 input and at least 1 output)": { + "$ref": "./examples/StreamingJob_Create_CompleteJob.json" + } }, "parameters": [ { @@ -146,7 +152,9 @@ "operationId": "StreamingJobs_Update", "description": "Updates an existing streaming job. This can be used to partially update (ie. update one or two properties) a streaming job without affecting the rest the job definition.", "x-ms-examples": { - "Update a streaming job": { "$ref": "./examples/StreamingJob_Update.json" } + "Update a streaming job": { + "$ref": "./examples/StreamingJob_Update.json" + } }, "parameters": [ { @@ -201,7 +209,9 @@ "operationId": "StreamingJobs_Delete", "description": "Deletes a streaming job.", "x-ms-examples": { - "Delete a streaming job": { "$ref": "./examples/StreamingJob_Delete.json" } + "Delete a streaming job": { + "$ref": "./examples/StreamingJob_Delete.json" + } }, "parameters": [ { @@ -237,8 +247,12 @@ "operationId": "StreamingJobs_Get", "description": "Gets details about the specified streaming job.", "x-ms-examples": { - "Get a streaming job and do not use the $expand OData query parameter": { "$ref": "./examples/StreamingJob_Get_NoExpand.json" }, - "Get a streaming job and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions": { "$ref": "./examples/StreamingJob_Get_Expand.json" } + "Get a streaming job and do not use the $expand OData query parameter": { + "$ref": "./examples/StreamingJob_Get_NoExpand.json" + }, + "Get a streaming job and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions": { + "$ref": "./examples/StreamingJob_Get_Expand.json" + } }, "parameters": [ { @@ -285,8 +299,12 @@ "operationId": "StreamingJobs_ListByResourceGroup", "description": "Lists all of the streaming jobs in the specified resource group.", "x-ms-examples": { - "List all streaming jobs in a resource group and do not use the $expand OData query parameter": { "$ref": "./examples/StreamingJob_List_ByResourceGroup_NoExpand.json" }, - "List all streaming jobs in a resource group and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions": { "$ref": "./examples/StreamingJob_List_ByResourceGroup_Expand.json" } + "List all streaming jobs in a resource group and do not use the $expand OData query parameter": { + "$ref": "./examples/StreamingJob_List_ByResourceGroup_NoExpand.json" + }, + "List all streaming jobs in a resource group and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions": { + "$ref": "./examples/StreamingJob_List_ByResourceGroup_Expand.json" + } }, "parameters": [ { @@ -327,8 +345,12 @@ "operationId": "StreamingJobs_List", "description": "Lists all of the streaming jobs in the given subscription.", "x-ms-examples": { - "List all streaming jobs in a subscription and do not use the $expand OData query parameter": { "$ref": "./examples/StreamingJob_List_BySubscription_NoExpand.json" }, - "List all streaming jobs in a subscription and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions": { "$ref": "./examples/StreamingJob_List_BySubscription_Expand.json" } + "List all streaming jobs in a subscription and do not use the $expand OData query parameter": { + "$ref": "./examples/StreamingJob_List_BySubscription_NoExpand.json" + }, + "List all streaming jobs in a subscription and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions": { + "$ref": "./examples/StreamingJob_List_BySubscription_Expand.json" + } }, "parameters": [ { @@ -366,9 +388,15 @@ "operationId": "StreamingJobs_Start", "description": "Starts a streaming job. Once a job is started it will start processing input events and produce output.", "x-ms-examples": { - "Start a streaming job with CustomTime output start mode": { "$ref": "./examples/StreamingJob_Start_CustomTime.json" }, - "Start a streaming job with JobStartTime output start mode": { "$ref": "./examples/StreamingJob_Start_JobStartTime.json" }, - "Start a streaming job with LastOutputEventTime output start mode": { "$ref": "./examples/StreamingJob_Start_LastOutputEventTime.json" } + "Start a streaming job with CustomTime output start mode": { + "$ref": "./examples/StreamingJob_Start_CustomTime.json" + }, + "Start a streaming job with JobStartTime output start mode": { + "$ref": "./examples/StreamingJob_Start_JobStartTime.json" + }, + "Start a streaming job with LastOutputEventTime output start mode": { + "$ref": "./examples/StreamingJob_Start_LastOutputEventTime.json" + } }, "parameters": [ { @@ -412,7 +440,9 @@ "operationId": "StreamingJobs_Stop", "description": "Stops a running streaming job. This will cause a running streaming job to stop processing input events and producing output.", "x-ms-examples": { - "Stop a streaming job": { "$ref": "./examples/StreamingJob_Stop.json" } + "Stop a streaming job": { + "$ref": "./examples/StreamingJob_Stop.json" + } }, "parameters": [ { @@ -773,4 +803,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/subscriptions.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/subscriptions.json index 2d4db5a2325e..7a733fb1fb1e 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/subscriptions.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/subscriptions.json @@ -33,7 +33,7 @@ } }, "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.StreamAnalytics/locations/{location}/quotas": { + "/subscriptions/{subscriptionId}/providers/Microsoft.StreamAnalytics/locations/{location}/quotas": { "get": { "tags": [ "Subscriptions" @@ -41,7 +41,9 @@ "operationId": "Subscriptions_ListQuotas", "description": "Retrieves the subscription's current quota information in a particular region.", "x-ms-examples": { - "List subscription quota information in West US": { "$ref": "./examples/Subscription_ListQuotas.json" } + "List subscription quota information in West US": { + "$ref": "./examples/Subscription_ListQuotas.json" + } }, "parameters": [ { @@ -150,4 +152,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/transformations.json b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/transformations.json index 8f2a273b7668..2f630597f66d 100644 --- a/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/transformations.json +++ b/specification/streamanalytics/resource-manager/Microsoft.StreamAnalytics/stable/2016-03-01/transformations.json @@ -41,7 +41,9 @@ "operationId": "Transformations_CreateOrReplace", "description": "Creates a transformation or replaces an already existing transformation under an existing streaming job.", "x-ms-examples": { - "Create a transformation": { "$ref": "./examples/Transformation_Create.json" } + "Create a transformation": { + "$ref": "./examples/Transformation_Create.json" + } }, "parameters": [ { @@ -119,7 +121,9 @@ "operationId": "Transformations_Update", "description": "Updates an existing transformation under an existing streaming job. This can be used to partially update (ie. update one or two properties) a transformation without affecting the rest the job or transformation definition.", "x-ms-examples": { - "Update a transformation": { "$ref": "./examples/Transformation_Update.json" } + "Update a transformation": { + "$ref": "./examples/Transformation_Update.json" + } }, "parameters": [ { @@ -177,7 +181,9 @@ "operationId": "Transformations_Get", "description": "Gets details about the specified transformation.", "x-ms-examples": { - "Get a transformation": { "$ref": "./examples/Transformation_Get.json" } + "Get a transformation": { + "$ref": "./examples/Transformation_Get.json" + } }, "parameters": [ { @@ -309,4 +315,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/createSubscriptionDefinition.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/createSubscriptionDefinition.json index a692910400f9..311cfd38db65 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/createSubscriptionDefinition.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/createSubscriptionDefinition.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getOperations.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getOperations.json index afd2bd947d1d..68c552bb468f 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getOperations.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getOperations.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getSubscriptionDefinition.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getSubscriptionDefinition.json index 6fa9aa49bfd7..9c8d2a1488c8 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getSubscriptionDefinition.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getSubscriptionDefinition.json @@ -16,11 +16,7 @@ "offerType": "MS-AZR-0017P", "etag": "somestring" } - } - } - } - -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getSubscriptionDefinitionOperation.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getSubscriptionDefinitionOperation.json index ceca22f2064e..b6ad25f6cf21 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getSubscriptionDefinitionOperation.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getSubscriptionDefinitionOperation.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/listSubscriptionDefinitions.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/listSubscriptionDefinitions.json index 6eb6bb441ed4..29e0c0124467 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/listSubscriptionDefinitions.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/listSubscriptionDefinitions.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/subscriptionDefinitions.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/subscriptionDefinitions.json index d6c9273d676e..e2eeee039c19 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/subscriptionDefinitions.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/subscriptionDefinitions.json @@ -393,4 +393,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/createSubscription.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/createSubscription.json index 61eb752fccf9..6e43c53b257d 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/createSubscription.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/createSubscription.json @@ -24,8 +24,7 @@ "responses": { "202": { "headers": { - "Location": - "/providers/Microsoft.Subscription/subscriptionOperations/aeb76128-ebde-4f5a-a9ed-e7bbf2dbc994?api-version=2018-03-01-preview", + "Location": "/providers/Microsoft.Subscription/subscriptionOperations/aeb76128-ebde-4f5a-a9ed-e7bbf2dbc994?api-version=2018-03-01-preview", "Retry-After": "60" } }, @@ -35,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/getOperations.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/getOperations.json index 6e944a509550..ea3321cc349d 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/getOperations.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/getOperations.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/getSubscriptionOperations.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/getSubscriptionOperations.json index 7e1eb5b2331e..0e7256f9c25c 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/getSubscriptionOperations.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/getSubscriptionOperations.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/subscriptions.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/subscriptions.json index 9da204026fb3..85cba1b8d908 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/subscriptions.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/subscriptions.json @@ -173,10 +173,10 @@ "MS-AZR-0148P" ] }, - "additionalParameters": { + "additionalParameters": { "description": "Additional, untyped parameters to support custom subscription creation scenarios.", "type": "object", - "additionalProperties": { + "additionalProperties": { "type": "object" } } @@ -309,4 +309,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/createSubscription.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/createSubscription.json index d93c7f851a1b..a8ed928e2fd0 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/createSubscription.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/createSubscription.json @@ -9,17 +9,15 @@ "skuId": "0001", "costCenter": "myCostCenter123", "owner": { - "objectId": "973034ff-acb7-409c-b731-e789672c7b31" + "objectId": "973034ff-acb7-409c-b731-e789672c7b31" }, - "additionalParameters": { - } + "additionalParameters": {} } }, "responses": { "202": { "headers": { - "Location": - "/providers/Microsoft.Subscription/subscriptionOperations/aeb76128-ebde-4f5a-a9ed-e7bbf2dbc994?api-version=2018-11-01-preview", + "Location": "/providers/Microsoft.Subscription/subscriptionOperations/aeb76128-ebde-4f5a-a9ed-e7bbf2dbc994?api-version=2018-11-01-preview", "Retry-After": 8 } }, @@ -29,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/getOperations.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/getOperations.json index e0713487bc1d..2ada8c51e381 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/getOperations.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/getOperations.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/getSubscriptionOperation.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/getSubscriptionOperation.json index a78d675da35b..a3435a3287af 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/getSubscriptionOperation.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/examples/getSubscriptionOperation.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/subscriptions.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/subscriptions.json index ce41ae183aa1..4be926aea563 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/subscriptions.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-11-01-preview/subscriptions.json @@ -327,4 +327,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/cancelSubscription.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/cancelSubscription.json index 5c26308c88ca..56fdb0884237 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/cancelSubscription.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/cancelSubscription.json @@ -10,4 +10,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/getOperations.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/getOperations.json index 18a760d850cc..230ba7cab4ae 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/getOperations.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/getOperations.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/renameSubscription.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/renameSubscription.json index c3e2e12590f3..8ab2abba3dae 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/renameSubscription.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/examples/renameSubscription.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/subscriptions.json b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/subscriptions.json index c4d1db077314..ecd855d7c54f 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/subscriptions.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/preview/2019-03-01-preview/subscriptions.json @@ -250,4 +250,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/subscription/resource-manager/Microsoft.Subscription/stable/2016-06-01/subscriptions.json b/specification/subscription/resource-manager/Microsoft.Subscription/stable/2016-06-01/subscriptions.json index b3426bbdf865..020fda6e55cb 100644 --- a/specification/subscription/resource-manager/Microsoft.Subscription/stable/2016-06-01/subscriptions.json +++ b/specification/subscription/resource-manager/Microsoft.Subscription/stable/2016-06-01/subscriptions.json @@ -332,4 +332,4 @@ "x-ms-parameter-location": "client" } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/AvailabilityGet.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/AvailabilityGet.json index 91266ab82b55..6d33f53d8138 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/AvailabilityGet.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/AvailabilityGet.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/AvailabilityGetEmpty.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/AvailabilityGetEmpty.json index 1f1298797b21..45512b7c37fa 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/AvailabilityGetEmpty.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/AvailabilityGetEmpty.json @@ -8,4 +8,4 @@ "body": {} } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/EventSchemaGet.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/EventSchemaGet.json index f0055ea205a9..bacda9fd39d6 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/EventSchemaGet.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/EventSchemaGet.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/EventSchemaGetEmpty.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/EventSchemaGetEmpty.json index 4ba97f2d0342..798e8c314e30 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/EventSchemaGetEmpty.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/EventSchemaGetEmpty.json @@ -16,4 +16,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchDeleteByIds.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchDeleteByIds.json index 7f525960c77d..9d625e269976 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchDeleteByIds.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchDeleteByIds.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchDeleteByNames.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchDeleteByNames.json index 8f9695fdb028..e8f1c1098374 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchDeleteByNames.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchDeleteByNames.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchGetByIds.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchGetByIds.json index 0354198864bd..dd235acc4832 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchGetByIds.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchGetByIds.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchGetByNames.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchGetByNames.json index c45178967e16..12f91a55bab6 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchGetByNames.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchGetByNames.json @@ -43,4 +43,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchPut.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchPut.json index 813faa3120be..f721d4f85627 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchPut.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesBatchPut.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage1.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage1.json index d6d53c985c2c..8e9cd4ccc56d 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage1.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage1.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage2.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage2.json index b498dc95ce4a..ee899eade91f 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage2.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage2.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage3.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage3.json index 996d7c351b96..0efe91089d64 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage3.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/HierarchiesGetPage3.json @@ -11,4 +11,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchDeleteByIds.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchDeleteByIds.json index c77b05e4ab20..d0039bcec6b0 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchDeleteByIds.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchDeleteByIds.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchDeleteByNames.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchDeleteByNames.json index a35391744a0d..d8302aa70992 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchDeleteByNames.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchDeleteByNames.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchGetByIds.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchGetByIds.json index 97801bec052d..707f18d1dd13 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchGetByIds.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchGetByIds.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchGetByNames.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchGetByNames.json index 69d188ef05d6..4d7e870a87b8 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchGetByNames.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchGetByNames.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchPut.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchPut.json index cb17e5ccf2d8..96b3c7607b73 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchPut.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchPut.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchUpdate.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchUpdate.json index 4d07f403f6c0..cef18e908bac 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchUpdate.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesBatchUpdate.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage1.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage1.json index 5ad42e84db91..6228d4d09cbe 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage1.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage1.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage2.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage2.json index 912fb94c2ff1..e073f5aad18a 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage2.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage2.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage3.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage3.json index 4f97895d7a30..49b39f084b3a 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage3.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesGetPage3.json @@ -11,4 +11,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage1.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage1.json index 4689ee92e57a..c201006a93fd 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage1.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage1.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage2.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage2.json index 0dc85846337e..82f18fdeecf3 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage2.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage2.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage3.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage3.json index a6f82d0f7c65..d32ea0262194 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage3.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSearchPage3.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSuggest.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSuggest.json index a93b0ac3b8f0..3f6783e48663 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSuggest.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/InstancesSuggest.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/ModelSettingsGet.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/ModelSettingsGet.json index 9bd1908eeecc..33be629b0ae6 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/ModelSettingsGet.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/ModelSettingsGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/ModelSettingsUpdateName.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/ModelSettingsUpdateName.json index 387b1a288451..a293f2d67e83 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/ModelSettingsUpdateName.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/ModelSettingsUpdateName.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryAggregateSeriesPage1.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryAggregateSeriesPage1.json index ad812dab5831..1d6d698130d6 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryAggregateSeriesPage1.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryAggregateSeriesPage1.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryAggregateSeriesPage2.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryAggregateSeriesPage2.json index 44bb3630dbb7..64cdb0420ba5 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryAggregateSeriesPage2.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryAggregateSeriesPage2.json @@ -140,4 +140,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage1.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage1.json index 515b20d16834..8ccd3a16d2ac 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage1.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage1.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage2.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage2.json index 64a6d2bab965..c5632f969536 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage2.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage2.json @@ -82,4 +82,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage3.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage3.json index 45193c9b47b7..faa557dcdd37 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage3.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage3.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage4.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage4.json index c348f54fe6b5..635bb387b0c3 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage4.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetEventsPage4.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage1.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage1.json index 48589c3c3f6d..d6728874a152 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage1.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage1.json @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage2.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage2.json index a39dc39c17a2..ebc36eda5bbd 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage2.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage2.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage3.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage3.json index 9fa16bd2e2a3..6f586344d7d2 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage3.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/QueryGetSeriesPage3.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchDeleteByIds.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchDeleteByIds.json index 5f8e0ec63a3b..06cffe01e03d 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchDeleteByIds.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchDeleteByIds.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchDeleteByNames.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchDeleteByNames.json index 808976da579b..048590e0d8c2 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchDeleteByNames.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchDeleteByNames.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchGetByIds.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchGetByIds.json index 974e8be640c7..79708427f893 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchGetByIds.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchGetByIds.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchGetByNames.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchGetByNames.json index 563ca21d5dec..09ba068d160b 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchGetByNames.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchGetByNames.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchPut.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchPut.json index 4c7fc49f7a24..cfce86fd80b8 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchPut.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesBatchPut.json @@ -87,4 +87,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage1.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage1.json index 692f56ea1e03..204a4d9cca64 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage1.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage1.json @@ -26,4 +26,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage2.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage2.json index 89a8c5a73a7b..dacfd9da4740 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage2.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage2.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage3.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage3.json index b42f5396ec94..65be4bc46f2a 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage3.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/examples/TypesGetPage3.json @@ -11,4 +11,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/timeseriesinsights.json b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/timeseriesinsights.json index 501d0b19b2bc..a5aa8d44eda0 100644 --- a/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/timeseriesinsights.json +++ b/specification/timeseriesinsights/data-plane/Microsoft.TimeSeriesInsights/preview/2018-11-01-preview/timeseriesinsights.json @@ -1250,7 +1250,7 @@ "values": { "description": "Values of a single property corresponding to the timestamps. May contain nulls. Type of values matches the type of property.", "type": "array", - "items": { } + "items": {} } } } @@ -1309,7 +1309,7 @@ "instanceFields": { "description": "Set of key-value pairs that contain user-defined instance properties. May be null.", "type": "object", - "additionalProperties": { } + "additionalProperties": {} } }, "required": [ diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesCreate.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesCreate.json index 2d87c03cf9bb..082ed4a8b4dd 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesCreate.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesCreate.json @@ -7,7 +7,9 @@ "parameters": { "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } }, @@ -21,7 +23,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } @@ -33,7 +37,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesGet.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesGet.json index 6a61ea5f0e51..b7c041c4c367 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesGet.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesGet.json @@ -14,7 +14,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesListByEnvironment.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesListByEnvironment.json index b90a1d0adf46..f622b124f75e 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesListByEnvironment.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesListByEnvironment.json @@ -15,7 +15,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } @@ -23,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesPatchRoles.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesPatchRoles.json index 4c533c2cae15..00c7c7bf07f1 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesPatchRoles.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/AccessPoliciesPatchRoles.json @@ -6,7 +6,10 @@ "accessPolicyName": "ap1", "accessPolicyUpdateParameters": { "properties": { - "roles": [ "Reader", "Contributor" ] + "roles": [ + "Reader", + "Contributor" + ] } }, "api-version": "2017-02-28-preview" @@ -19,7 +22,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EnvironmentsListByResourceGroup.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EnvironmentsListByResourceGroup.json index 3ddc9e241025..f94d4a1c7832 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EnvironmentsListByResourceGroup.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EnvironmentsListByResourceGroup.json @@ -1,31 +1,31 @@ { - "parameters": { - "subscriptionId": "subid", - "resourceGroupName": "rg1", - "api-version": "2017-02-28-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.TimeSeriesInsights/Environments/env1", - "location": "West US", - "name": "env1", - "type": "Microsoft.TimeSeriesInsights/Environments", - "tags": {}, - "properties": { - "dataRetentionTime": "P31D", - "provisioningState": "Succeeded", - "creationTime": "2017-04-18T19:20:33.2288820Z" - }, - "sku": { - "name": "S1", - "capacity": 1 - } - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "subid", + "resourceGroupName": "rg1", + "api-version": "2017-02-28-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.TimeSeriesInsights/Environments/env1", + "location": "West US", + "name": "env1", + "type": "Microsoft.TimeSeriesInsights/Environments", + "tags": {}, + "properties": { + "dataRetentionTime": "P31D", + "provisioningState": "Succeeded", + "creationTime": "2017-04-18T19:20:33.2288820Z" + }, + "sku": { + "name": "S1", + "capacity": 1 + } + } + ] + } + } + } +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EnvironmentsListBySubscription.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EnvironmentsListBySubscription.json index 0eab9adeda7f..3aa366aa7488 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EnvironmentsListBySubscription.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EnvironmentsListBySubscription.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EventSourcesListByEnvironment.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EventSourcesListByEnvironment.json index fc0e1753cfb5..60e3c3ba5098 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EventSourcesListByEnvironment.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/EventSourcesListByEnvironment.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/Operation_List.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/Operation_List.json index 90dac002ccfd..5dbf3a19d505 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/Operation_List.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/Operation_List.json @@ -172,4 +172,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsCreate.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsCreate.json index e7e3d3505495..46cd42994205 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsCreate.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsCreate.json @@ -31,10 +31,10 @@ "tags": {}, "properties": { "keyProperties": [ - { - "name": "DeviceId1", - "type": "String" - }, + { + "name": "DeviceId1", + "type": "String" + }, { "name": "DeviceFloor", "type": "Double" diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsListByEnvironment.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsListByEnvironment.json index b1b19bcac124..d21d32eabf29 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsListByEnvironment.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsListByEnvironment.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsPatchTags.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsPatchTags.json index b3f9ebf17e8e..6a5e742d1bc1 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsPatchTags.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/examples/ReferenceDataSetsPatchTags.json @@ -5,7 +5,9 @@ "environmentName": "env1", "referenceDataSetName": "rds1", "referenceDataSetUpdateParameters": { - "tags": { "someKey": "someValue" } + "tags": { + "someKey": "someValue" + } }, "api-version": "2017-02-28-preview" }, @@ -16,7 +18,9 @@ "location": "West US", "name": "rds1", "type": "Microsoft.TimeSeriesInsights/Environments/ReferenceDataSets", - "tags": { "someKey": "someValue" }, + "tags": { + "someKey": "someValue" + }, "properties": { "keyProperties": [ { diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/timeseriesinsights.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/timeseriesinsights.json index deb20e0cfa77..240dd0cb7414 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/timeseriesinsights.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2017-02-28-preview/timeseriesinsights.json @@ -42,7 +42,9 @@ "operationId": "Operations_List", "description": "Lists all of the available Time Series Insights related operations.", "x-ms-examples": { - "List available operations for the Time Series Insights resource provider": { "$ref": "./examples/Operation_List.json" } + "List available operations for the Time Series Insights resource provider": { + "$ref": "./examples/Operation_List.json" + } }, "parameters": [ { @@ -69,7 +71,9 @@ ], "operationId": "Environments_CreateOrUpdate", "x-ms-examples": { - "EnvironmentsCreate": { "$ref": "./examples/EnvironmentsCreate.json" } + "EnvironmentsCreate": { + "$ref": "./examples/EnvironmentsCreate.json" + } }, "x-ms-long-running-operation": true, "description": "Create or update an environment in the specified subscription and resource group.", @@ -133,7 +137,9 @@ ], "operationId": "Environments_Get", "x-ms-examples": { - "EnvironmentsGet": { "$ref": "./examples/EnvironmentsGet.json" } + "EnvironmentsGet": { + "$ref": "./examples/EnvironmentsGet.json" + } }, "description": "Gets the environment with the specified name in the specified subscription and resource group.", "parameters": [ @@ -171,7 +177,9 @@ ], "operationId": "Environments_Update", "x-ms-examples": { - "EnvironmentsUpdate": { "$ref": "./examples/EnvironmentsPatchSkuCapacity.json" } + "EnvironmentsUpdate": { + "$ref": "./examples/EnvironmentsPatchSkuCapacity.json" + } }, "x-ms-long-running-operation": true, "description": "Updates the environment with the specified name in the specified subscription and resource group.", @@ -219,7 +227,9 @@ ], "operationId": "Environments_Delete", "x-ms-examples": { - "EnvironmentsDelete": { "$ref": "./examples/EnvironmentsDelete.json" } + "EnvironmentsDelete": { + "$ref": "./examples/EnvironmentsDelete.json" + } }, "description": "Deletes the environment with the specified name in the specified subscription and resource group.", "parameters": [ @@ -259,7 +269,9 @@ ], "operationId": "Environments_ListByResourceGroup", "x-ms-examples": { - "EnvironmentsByResourceGroup": { "$ref": "./examples/EnvironmentsListByResourceGroup.json" } + "EnvironmentsByResourceGroup": { + "$ref": "./examples/EnvironmentsListByResourceGroup.json" + } }, "description": "Lists all the available environments associated with the subscription and within the specified resource group.", "parameters": [ @@ -296,7 +308,9 @@ ], "operationId": "Environments_ListBySubscription", "x-ms-examples": { - "EnvironmentsBySubscription": { "$ref": "./examples/EnvironmentsListBySubscription.json" } + "EnvironmentsBySubscription": { + "$ref": "./examples/EnvironmentsListBySubscription.json" + } }, "description": "Lists all the available environments within a subscription, irrespective of the resource groups.", "parameters": [ @@ -552,7 +566,9 @@ ], "operationId": "ReferenceDataSets_CreateOrUpdate", "x-ms-examples": { - "ReferenceDataSetsCreate": { "$ref": "./examples/ReferenceDataSetsCreate.json" } + "ReferenceDataSetsCreate": { + "$ref": "./examples/ReferenceDataSetsCreate.json" + } }, "description": "Create or update a reference data set in the specified environment.", "parameters": [ @@ -615,7 +631,9 @@ ], "operationId": "ReferenceDataSets_Get", "x-ms-examples": { - "ReferenceDataSetsGet": { "$ref": "./examples/ReferenceDataSetsGet.json" } + "ReferenceDataSetsGet": { + "$ref": "./examples/ReferenceDataSetsGet.json" + } }, "description": "Gets the reference data set with the specified name in the specified environment.", "parameters": [ @@ -656,7 +674,9 @@ ], "operationId": "ReferenceDataSets_Update", "x-ms-examples": { - "ReferenceDataSetsUpdate": { "$ref": "./examples/ReferenceDataSetsPatchTags.json" } + "ReferenceDataSetsUpdate": { + "$ref": "./examples/ReferenceDataSetsPatchTags.json" + } }, "description": "Updates the reference data set with the specified name in the specified subscription, resource group, and environment.", "parameters": [ @@ -706,7 +726,9 @@ ], "operationId": "ReferenceDataSets_Delete", "x-ms-examples": { - "ReferenceDataSetsDelete": { "$ref": "./examples/ReferenceDataSetsDelete.json" } + "ReferenceDataSetsDelete": { + "$ref": "./examples/ReferenceDataSetsDelete.json" + } }, "description": "Deletes the reference data set with the specified name in the specified subscription, resource group, and environment", "parameters": [ @@ -749,7 +771,9 @@ ], "operationId": "ReferenceDataSets_ListByEnvironment", "x-ms-examples": { - "ReferenceDataSetsListByEnvironment": { "$ref": "./examples/ReferenceDataSetsListByEnvironment.json" } + "ReferenceDataSetsListByEnvironment": { + "$ref": "./examples/ReferenceDataSetsListByEnvironment.json" + } }, "description": "Lists all the available reference data sets associated with the subscription and within the specified resource group and environment.", "parameters": [ @@ -789,7 +813,9 @@ ], "operationId": "AccessPolicies_CreateOrUpdate", "x-ms-examples": { - "AccessPoliciesCreate": { "$ref": "./examples/AccessPoliciesCreate.json" } + "AccessPoliciesCreate": { + "$ref": "./examples/AccessPoliciesCreate.json" + } }, "description": "Create or update an access policy in the specified environment.", "parameters": [ @@ -852,7 +878,9 @@ ], "operationId": "AccessPolicies_Get", "x-ms-examples": { - "AccessPoliciesGet": { "$ref": "./examples/AccessPoliciesGet.json" } + "AccessPoliciesGet": { + "$ref": "./examples/AccessPoliciesGet.json" + } }, "description": "Gets the access policy with the specified name in the specified environment.", "parameters": [ @@ -893,7 +921,9 @@ ], "operationId": "AccessPolicies_Update", "x-ms-examples": { - "AccessPoliciesUpdate": { "$ref": "./examples/AccessPoliciesPatchRoles.json" } + "AccessPoliciesUpdate": { + "$ref": "./examples/AccessPoliciesPatchRoles.json" + } }, "description": "Updates the access policy with the specified name in the specified subscription, resource group, and environment.", "parameters": [ @@ -943,7 +973,9 @@ ], "operationId": "AccessPolicies_Delete", "x-ms-examples": { - "AccessPoliciesDelete": { "$ref": "./examples/AccessPoliciesDelete.json" } + "AccessPoliciesDelete": { + "$ref": "./examples/AccessPoliciesDelete.json" + } }, "description": "Deletes the access policy with the specified name in the specified subscription, resource group, and environment", "parameters": [ @@ -986,7 +1018,9 @@ ], "operationId": "AccessPolicies_ListByEnvironment", "x-ms-examples": { - "AccessPoliciesByEnvironment": { "$ref": "./examples/AccessPoliciesListByEnvironment.json" } + "AccessPoliciesByEnvironment": { + "$ref": "./examples/AccessPoliciesListByEnvironment.json" + } }, "description": "Lists all the available access policies associated with the environment.", "parameters": [ @@ -1279,7 +1313,10 @@ "storageLimitExceededBehavior": { "type": "string", "description": "The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If \"PauseIngress\" is specified, new events will not be read from the event source. If \"PurgeOldData\" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.", - "enum": [ "PurgeOldData", "PauseIngress" ], + "enum": [ + "PurgeOldData", + "PauseIngress" + ], "x-ms-enum": { "name": "StorageLimitExceededBehavior", "modelAsString": false @@ -1455,7 +1492,10 @@ "kind": { "type": "string", "description": "The kind of the event source.", - "enum": [ "Microsoft.EventHub", "Microsoft.IoTHub" ] + "enum": [ + "Microsoft.EventHub", + "Microsoft.IoTHub" + ] } }, "required": [ @@ -1667,7 +1707,7 @@ "properties": { "propertyName": { "type": "string", - "description": "The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)" + "description": "The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)" } } } @@ -2018,4 +2058,4 @@ "x-ms-parameter-location": "method" } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesCreate.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesCreate.json index df11a732d205..1fadc67765e9 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesCreate.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesCreate.json @@ -7,7 +7,9 @@ "parameters": { "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } }, @@ -21,7 +23,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } @@ -33,7 +37,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesGet.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesGet.json index 82fefa1074be..794bb5b6bbd1 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesGet.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesGet.json @@ -14,7 +14,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesListByEnvironment.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesListByEnvironment.json index cd8af78c4a01..d136edee9fc6 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesListByEnvironment.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesListByEnvironment.json @@ -15,7 +15,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } @@ -23,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesPatchRoles.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesPatchRoles.json index 074d5c19fb39..ccaf2db483ec 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesPatchRoles.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/AccessPoliciesPatchRoles.json @@ -6,7 +6,10 @@ "accessPolicyName": "ap1", "accessPolicyUpdateParameters": { "properties": { - "roles": [ "Reader", "Contributor" ] + "roles": [ + "Reader", + "Contributor" + ] } }, "api-version": "2018-08-15-preview" @@ -19,7 +22,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsGetExpandStatus.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsGetExpandStatus.json index 7fd36b2a6af8..b5e571bf3438 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsGetExpandStatus.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsGetExpandStatus.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsListByResourceGroup.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsListByResourceGroup.json index a01b5d89a9fb..cfe9264bd6c6 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsListByResourceGroup.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsListByResourceGroup.json @@ -1,32 +1,32 @@ { - "parameters": { - "subscriptionId": "subid", - "resourceGroupName": "rg1", - "api-version": "2018-08-15-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.TimeSeriesInsights/Environments/env1", - "location": "West US", - "name": "env1", - "type": "Microsoft.TimeSeriesInsights/Environments", - "kind": "Standard", - "tags": {}, - "properties": { - "dataRetentionTime": "P31D", - "provisioningState": "Succeeded", - "creationTime": "2017-04-18T19:20:33.2288820Z" - }, - "sku": { - "name": "S1", - "capacity": 1 - } - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "subid", + "resourceGroupName": "rg1", + "api-version": "2018-08-15-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.TimeSeriesInsights/Environments/env1", + "location": "West US", + "name": "env1", + "type": "Microsoft.TimeSeriesInsights/Environments", + "kind": "Standard", + "tags": {}, + "properties": { + "dataRetentionTime": "P31D", + "provisioningState": "Succeeded", + "creationTime": "2017-04-18T19:20:33.2288820Z" + }, + "sku": { + "name": "S1", + "capacity": 1 + } + } + ] + } + } + } +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsListBySubscription.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsListBySubscription.json index e85e4f3753fd..e4dc57a4db02 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsListBySubscription.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsListBySubscription.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsStatusGet.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsStatusGet.json index 7b72070d7781..1bd795bc7268 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsStatusGet.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EnvironmentsStatusGet.json @@ -16,5 +16,3 @@ } } } - - \ No newline at end of file diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EventSourcesListByEnvironment.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EventSourcesListByEnvironment.json index 6c856aaf637a..4403ed39553e 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EventSourcesListByEnvironment.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EventSourcesListByEnvironment.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EventSourcesPatchTags.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EventSourcesPatchTags.json index 94e96ec1eb25..e88b868684d5 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EventSourcesPatchTags.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/EventSourcesPatchTags.json @@ -5,7 +5,9 @@ "environmentName": "env1", "eventSourceName": "es1", "eventSourceUpdateParameters": { - "tags": { "someKey": "someValue" } + "tags": { + "someKey": "someValue" + } }, "api-version": "2018-08-15-preview" }, @@ -16,7 +18,9 @@ "location": "West US", "name": "es1", "type": "Microsoft.TimeSeriesInsights/Environments/EventSources", - "tags": { "someKey": "someValue" }, + "tags": { + "someKey": "someValue" + }, "kind": "Microsoft.EventHub", "properties": { "eventSourceResourceId": "somePathInArm", diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/Operation_List.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/Operation_List.json index f9c9a47fde7a..a418b7799b6d 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/Operation_List.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/Operation_List.json @@ -127,4 +127,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsCreate.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsCreate.json index 26cb825ea353..6f846f2d86e7 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsCreate.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsCreate.json @@ -31,10 +31,10 @@ "tags": {}, "properties": { "keyProperties": [ - { - "name": "DeviceId1", - "type": "String" - }, + { + "name": "DeviceId1", + "type": "String" + }, { "name": "DeviceFloor", "type": "Double" diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsListByEnvironment.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsListByEnvironment.json index 713863e531e9..cb6fbed1710e 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsListByEnvironment.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsListByEnvironment.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsPatchTags.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsPatchTags.json index 586ec38ca0ce..c068b90532cf 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsPatchTags.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/examples/ReferenceDataSetsPatchTags.json @@ -5,7 +5,9 @@ "environmentName": "env1", "referenceDataSetName": "rds1", "referenceDataSetUpdateParameters": { - "tags": { "someKey": "someValue" } + "tags": { + "someKey": "someValue" + } }, "api-version": "2018-08-15-preview" }, @@ -16,7 +18,9 @@ "location": "West US", "name": "rds1", "type": "Microsoft.TimeSeriesInsights/Environments/ReferenceDataSets", - "tags": { "someKey": "someValue" }, + "tags": { + "someKey": "someValue" + }, "properties": { "keyProperties": [ { diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/timeseriesinsights.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/timeseriesinsights.json index 144e5b06a0e7..9c875fd60286 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/timeseriesinsights.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/preview/2018-08-15-preview/timeseriesinsights.json @@ -42,7 +42,9 @@ "operationId": "Operations_List", "description": "Lists all of the available Time Series Insights related operations.", "x-ms-examples": { - "List available operations for the Time Series Insights resource provider": { "$ref": "./examples/Operation_List.json" } + "List available operations for the Time Series Insights resource provider": { + "$ref": "./examples/Operation_List.json" + } }, "parameters": [ { @@ -69,7 +71,9 @@ ], "operationId": "Environments_CreateOrUpdate", "x-ms-examples": { - "EnvironmentsCreate": { "$ref": "./examples/EnvironmentsCreate.json" } + "EnvironmentsCreate": { + "$ref": "./examples/EnvironmentsCreate.json" + } }, "x-ms-long-running-operation": true, "description": "Create or update an environment in the specified subscription and resource group.", @@ -133,7 +137,9 @@ ], "operationId": "Environments_Get", "x-ms-examples": { - "EnvironmentsGet": { "$ref": "./examples/EnvironmentsGet.json" } + "EnvironmentsGet": { + "$ref": "./examples/EnvironmentsGet.json" + } }, "description": "Gets the environment with the specified name in the specified subscription and resource group.", "parameters": [ @@ -174,7 +180,9 @@ ], "operationId": "Environments_Update", "x-ms-examples": { - "EnvironmentsUpdate": { "$ref": "./examples/EnvironmentsPatchSkuCapacity.json" } + "EnvironmentsUpdate": { + "$ref": "./examples/EnvironmentsPatchSkuCapacity.json" + } }, "x-ms-long-running-operation": true, "description": "Updates the environment with the specified name in the specified subscription and resource group.", @@ -222,7 +230,9 @@ ], "operationId": "Environments_Delete", "x-ms-examples": { - "EnvironmentsDelete": { "$ref": "./examples/EnvironmentsDelete.json" } + "EnvironmentsDelete": { + "$ref": "./examples/EnvironmentsDelete.json" + } }, "description": "Deletes the environment with the specified name in the specified subscription and resource group.", "parameters": [ @@ -262,7 +272,9 @@ ], "operationId": "Environments_ListByResourceGroup", "x-ms-examples": { - "EnvironmentsByResourceGroup": { "$ref": "./examples/EnvironmentsListByResourceGroup.json" } + "EnvironmentsByResourceGroup": { + "$ref": "./examples/EnvironmentsListByResourceGroup.json" + } }, "description": "Lists all the available environments associated with the subscription and within the specified resource group.", "parameters": [ @@ -299,7 +311,9 @@ ], "operationId": "Environments_ListBySubscription", "x-ms-examples": { - "EnvironmentsBySubscription": { "$ref": "./examples/EnvironmentsListBySubscription.json" } + "EnvironmentsBySubscription": { + "$ref": "./examples/EnvironmentsListBySubscription.json" + } }, "description": "Lists all the available environments within a subscription, irrespective of the resource groups.", "parameters": [ @@ -333,7 +347,9 @@ ], "operationId": "EventSources_CreateOrUpdate", "x-ms-examples": { - "CreateEventHubEventSource": { "$ref": "./examples/EventSourcesCreateEventHub.json" } + "CreateEventHubEventSource": { + "$ref": "./examples/EventSourcesCreateEventHub.json" + } }, "description": "Create or update an event source under the specified environment.", "parameters": [ @@ -396,7 +412,9 @@ ], "operationId": "EventSources_Get", "x-ms-examples": { - "GetEventHubEventSource": { "$ref": "./examples/EventSourcesGetEventHub.json" } + "GetEventHubEventSource": { + "$ref": "./examples/EventSourcesGetEventHub.json" + } }, "description": "Gets the event source with the specified name in the specified environment.", "parameters": [ @@ -437,7 +455,9 @@ ], "operationId": "EventSources_Update", "x-ms-examples": { - "UpdateEventSource": { "$ref": "./examples/EventSourcesPatchTags.json" } + "UpdateEventSource": { + "$ref": "./examples/EventSourcesPatchTags.json" + } }, "description": "Updates the event source with the specified name in the specified subscription, resource group, and environment.", "parameters": [ @@ -487,7 +507,9 @@ ], "operationId": "EventSources_Delete", "x-ms-examples": { - "DeleteEventSource": { "$ref": "./examples/EventSourcesDelete.json" } + "DeleteEventSource": { + "$ref": "./examples/EventSourcesDelete.json" + } }, "description": "Deletes the event source with the specified name in the specified subscription, resource group, and environment", "parameters": [ @@ -530,7 +552,9 @@ ], "operationId": "EventSources_ListByEnvironment", "x-ms-examples": { - "ListEventSourcesByEnvironment": { "$ref": "./examples/EventSourcesListByEnvironment.json" } + "ListEventSourcesByEnvironment": { + "$ref": "./examples/EventSourcesListByEnvironment.json" + } }, "description": "Lists all the available event sources associated with the subscription and within the specified resource group and environment.", "parameters": [ @@ -570,7 +594,9 @@ ], "operationId": "ReferenceDataSets_CreateOrUpdate", "x-ms-examples": { - "ReferenceDataSetsCreate": { "$ref": "./examples/ReferenceDataSetsCreate.json" } + "ReferenceDataSetsCreate": { + "$ref": "./examples/ReferenceDataSetsCreate.json" + } }, "description": "Create or update a reference data set in the specified environment.", "parameters": [ @@ -633,7 +659,9 @@ ], "operationId": "ReferenceDataSets_Get", "x-ms-examples": { - "ReferenceDataSetsGet": { "$ref": "./examples/ReferenceDataSetsGet.json" } + "ReferenceDataSetsGet": { + "$ref": "./examples/ReferenceDataSetsGet.json" + } }, "description": "Gets the reference data set with the specified name in the specified environment.", "parameters": [ @@ -674,7 +702,9 @@ ], "operationId": "ReferenceDataSets_Update", "x-ms-examples": { - "ReferenceDataSetsUpdate": { "$ref": "./examples/ReferenceDataSetsPatchTags.json" } + "ReferenceDataSetsUpdate": { + "$ref": "./examples/ReferenceDataSetsPatchTags.json" + } }, "description": "Updates the reference data set with the specified name in the specified subscription, resource group, and environment.", "parameters": [ @@ -724,7 +754,9 @@ ], "operationId": "ReferenceDataSets_Delete", "x-ms-examples": { - "ReferenceDataSetsDelete": { "$ref": "./examples/ReferenceDataSetsDelete.json" } + "ReferenceDataSetsDelete": { + "$ref": "./examples/ReferenceDataSetsDelete.json" + } }, "description": "Deletes the reference data set with the specified name in the specified subscription, resource group, and environment", "parameters": [ @@ -767,7 +799,9 @@ ], "operationId": "ReferenceDataSets_ListByEnvironment", "x-ms-examples": { - "ReferenceDataSetsListByEnvironment": { "$ref": "./examples/ReferenceDataSetsListByEnvironment.json" } + "ReferenceDataSetsListByEnvironment": { + "$ref": "./examples/ReferenceDataSetsListByEnvironment.json" + } }, "description": "Lists all the available reference data sets associated with the subscription and within the specified resource group and environment.", "parameters": [ @@ -807,7 +841,9 @@ ], "operationId": "AccessPolicies_CreateOrUpdate", "x-ms-examples": { - "AccessPoliciesCreate": { "$ref": "./examples/AccessPoliciesCreate.json" } + "AccessPoliciesCreate": { + "$ref": "./examples/AccessPoliciesCreate.json" + } }, "description": "Create or update an access policy in the specified environment.", "parameters": [ @@ -870,7 +906,9 @@ ], "operationId": "AccessPolicies_Get", "x-ms-examples": { - "AccessPoliciesGet": { "$ref": "./examples/AccessPoliciesGet.json" } + "AccessPoliciesGet": { + "$ref": "./examples/AccessPoliciesGet.json" + } }, "description": "Gets the access policy with the specified name in the specified environment.", "parameters": [ @@ -911,7 +949,9 @@ ], "operationId": "AccessPolicies_Update", "x-ms-examples": { - "AccessPoliciesUpdate": { "$ref": "./examples/AccessPoliciesPatchRoles.json" } + "AccessPoliciesUpdate": { + "$ref": "./examples/AccessPoliciesPatchRoles.json" + } }, "description": "Updates the access policy with the specified name in the specified subscription, resource group, and environment.", "parameters": [ @@ -961,7 +1001,9 @@ ], "operationId": "AccessPolicies_Delete", "x-ms-examples": { - "AccessPoliciesDelete": { "$ref": "./examples/AccessPoliciesDelete.json" } + "AccessPoliciesDelete": { + "$ref": "./examples/AccessPoliciesDelete.json" + } }, "description": "Deletes the access policy with the specified name in the specified subscription, resource group, and environment", "parameters": [ @@ -1004,7 +1046,9 @@ ], "operationId": "AccessPolicies_ListByEnvironment", "x-ms-examples": { - "AccessPoliciesByEnvironment": { "$ref": "./examples/AccessPoliciesListByEnvironment.json" } + "AccessPoliciesByEnvironment": { + "$ref": "./examples/AccessPoliciesListByEnvironment.json" + } }, "description": "Lists all the available access policies associated with the environment.", "parameters": [ @@ -1120,7 +1164,10 @@ "location": { "type": "string", "description": "Resource location", - "x-ms-mutability": [ "read", "create" ] + "x-ms-mutability": [ + "read", + "create" + ] }, "tags": { "type": "object", @@ -1251,7 +1298,10 @@ "location": { "type": "string", "description": "The location of the resource.", - "x-ms-mutability": [ "read", "create" ] + "x-ms-mutability": [ + "read", + "create" + ] }, "tags": { "type": "object", @@ -1468,7 +1518,10 @@ "storageLimitExceededBehavior": { "type": "string", "description": "The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If \"PauseIngress\" is specified, new events will not be read from the event source. If \"PurgeOldData\" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.", - "enum": [ "PurgeOldData", "PauseIngress" ], + "enum": [ + "PurgeOldData", + "PauseIngress" + ], "x-ms-enum": { "name": "StorageLimitExceededBehavior", "modelAsString": true @@ -1589,7 +1642,10 @@ "storageLimitExceededBehavior": { "type": "string", "description": "The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If \"PauseIngress\" is specified, new events will not be read from the event source. If \"PurgeOldData\" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.", - "enum": [ "PurgeOldData", "PauseIngress" ], + "enum": [ + "PurgeOldData", + "PauseIngress" + ], "x-ms-enum": { "name": "StorageLimitExceededBehavior", "modelAsString": true @@ -1819,7 +1875,10 @@ "kind": { "type": "string", "description": "The kind of the event source.", - "enum": [ "Microsoft.EventHub", "Microsoft.IoTHub" ] + "enum": [ + "Microsoft.EventHub", + "Microsoft.IoTHub" + ] } }, "required": [ @@ -2148,7 +2207,10 @@ "dataStringComparisonBehavior": { "type": "string", "description": "The reference data set key comparison behavior can be set using this property. By default, the value is 'Ordinal' - which means case sensitive key comparison will be performed while joining reference data with events or while adding new reference data. When 'OrdinalIgnoreCase' is set, case insensitive comparison will be used.", - "enum": [ "Ordinal", "OrdinalIgnoreCase" ], + "enum": [ + "Ordinal", + "OrdinalIgnoreCase" + ], "x-ms-enum": { "name": "DataStringComparisonBehavior", "modelAsString": true diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesCreate.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesCreate.json index 9fccdc6f1e69..97b3de975f49 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesCreate.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesCreate.json @@ -7,7 +7,9 @@ "parameters": { "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } }, @@ -21,7 +23,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } @@ -33,7 +37,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesGet.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesGet.json index 3adba06d9ee9..734fa639157e 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesGet.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesGet.json @@ -14,7 +14,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesListByEnvironment.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesListByEnvironment.json index 346b329785f6..cd64bb6e3d91 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesListByEnvironment.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesListByEnvironment.json @@ -15,7 +15,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } @@ -23,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesPatchRoles.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesPatchRoles.json index 4fb64c43cb11..26da9c346cc7 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesPatchRoles.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/AccessPoliciesPatchRoles.json @@ -6,7 +6,10 @@ "accessPolicyName": "ap1", "accessPolicyUpdateParameters": { "properties": { - "roles": [ "Reader", "Contributor" ] + "roles": [ + "Reader", + "Contributor" + ] } }, "api-version": "2017-11-15" @@ -19,7 +22,9 @@ "type": "Microsoft.TimeSeriesInsights/Environments/AccessPolicies", "properties": { "principalObjectId": "aGuid", - "roles": [ "Reader" ], + "roles": [ + "Reader" + ], "description": "some description" } } diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsGetExpandStatus.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsGetExpandStatus.json index be7b1b720fd2..7c815959e7ee 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsGetExpandStatus.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsGetExpandStatus.json @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsListByResourceGroup.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsListByResourceGroup.json index db0ada363dd6..45f691143427 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsListByResourceGroup.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsListByResourceGroup.json @@ -1,31 +1,31 @@ { - "parameters": { - "subscriptionId": "subid", - "resourceGroupName": "rg1", - "api-version": "2017-11-15" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.TimeSeriesInsights/Environments/env1", - "location": "West US", - "name": "env1", - "type": "Microsoft.TimeSeriesInsights/Environments", - "tags": {}, - "properties": { - "dataRetentionTime": "P31D", - "provisioningState": "Succeeded", - "creationTime": "2017-04-18T19:20:33.2288820Z" - }, - "sku": { - "name": "S1", - "capacity": 1 - } - } - ] - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "subid", + "resourceGroupName": "rg1", + "api-version": "2017-11-15" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.TimeSeriesInsights/Environments/env1", + "location": "West US", + "name": "env1", + "type": "Microsoft.TimeSeriesInsights/Environments", + "tags": {}, + "properties": { + "dataRetentionTime": "P31D", + "provisioningState": "Succeeded", + "creationTime": "2017-04-18T19:20:33.2288820Z" + }, + "sku": { + "name": "S1", + "capacity": 1 + } + } + ] + } + } + } +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsListBySubscription.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsListBySubscription.json index 5dda39de1533..6ed32040818a 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsListBySubscription.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EnvironmentsListBySubscription.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EventSourcesListByEnvironment.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EventSourcesListByEnvironment.json index c32fc3166999..3f228251bbd3 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EventSourcesListByEnvironment.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EventSourcesListByEnvironment.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EventSourcesPatchTags.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EventSourcesPatchTags.json index 3df0b181ca05..0d485987de61 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EventSourcesPatchTags.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/EventSourcesPatchTags.json @@ -5,7 +5,9 @@ "environmentName": "env1", "eventSourceName": "es1", "eventSourceUpdateParameters": { - "tags": { "someKey": "someValue" } + "tags": { + "someKey": "someValue" + } }, "api-version": "2017-11-15" }, @@ -16,7 +18,9 @@ "location": "West US", "name": "es1", "type": "Microsoft.TimeSeriesInsights/Environments/EventSources", - "tags": { "someKey": "someValue" }, + "tags": { + "someKey": "someValue" + }, "kind": "Microsoft.EventHub", "properties": { "eventSourceResourceId": "somePathInArm", diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/Operation_List.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/Operation_List.json index f9c9a47fde7a..a418b7799b6d 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/Operation_List.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/Operation_List.json @@ -127,4 +127,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsCreate.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsCreate.json index 2602015e3a3e..319bbf15b47d 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsCreate.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsCreate.json @@ -31,10 +31,10 @@ "tags": {}, "properties": { "keyProperties": [ - { - "name": "DeviceId1", - "type": "String" - }, + { + "name": "DeviceId1", + "type": "String" + }, { "name": "DeviceFloor", "type": "Double" diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsListByEnvironment.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsListByEnvironment.json index 588149883acf..89278580086d 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsListByEnvironment.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsListByEnvironment.json @@ -34,4 +34,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsPatchTags.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsPatchTags.json index f269e8ebf991..8cf3f32c4b83 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsPatchTags.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/examples/ReferenceDataSetsPatchTags.json @@ -5,7 +5,9 @@ "environmentName": "env1", "referenceDataSetName": "rds1", "referenceDataSetUpdateParameters": { - "tags": { "someKey": "someValue" } + "tags": { + "someKey": "someValue" + } }, "api-version": "2017-11-15" }, @@ -16,7 +18,9 @@ "location": "West US", "name": "rds1", "type": "Microsoft.TimeSeriesInsights/Environments/ReferenceDataSets", - "tags": { "someKey": "someValue" }, + "tags": { + "someKey": "someValue" + }, "properties": { "keyProperties": [ { diff --git a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/timeseriesinsights.json b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/timeseriesinsights.json index 147d1e1d718d..2ea8a5585f7c 100644 --- a/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/timeseriesinsights.json +++ b/specification/timeseriesinsights/resource-manager/Microsoft.TimeSeriesInsights/stable/2017-11-15/timeseriesinsights.json @@ -42,7 +42,9 @@ "operationId": "Operations_List", "description": "Lists all of the available Time Series Insights related operations.", "x-ms-examples": { - "List available operations for the Time Series Insights resource provider": { "$ref": "./examples/Operation_List.json" } + "List available operations for the Time Series Insights resource provider": { + "$ref": "./examples/Operation_List.json" + } }, "parameters": [ { @@ -69,7 +71,9 @@ ], "operationId": "Environments_CreateOrUpdate", "x-ms-examples": { - "EnvironmentsCreate": { "$ref": "./examples/EnvironmentsCreate.json" } + "EnvironmentsCreate": { + "$ref": "./examples/EnvironmentsCreate.json" + } }, "x-ms-long-running-operation": true, "description": "Create or update an environment in the specified subscription and resource group.", @@ -133,7 +137,9 @@ ], "operationId": "Environments_Get", "x-ms-examples": { - "EnvironmentsGet": { "$ref": "./examples/EnvironmentsGet.json" } + "EnvironmentsGet": { + "$ref": "./examples/EnvironmentsGet.json" + } }, "description": "Gets the environment with the specified name in the specified subscription and resource group.", "parameters": [ @@ -174,7 +180,9 @@ ], "operationId": "Environments_Update", "x-ms-examples": { - "EnvironmentsUpdate": { "$ref": "./examples/EnvironmentsPatchSkuCapacity.json" } + "EnvironmentsUpdate": { + "$ref": "./examples/EnvironmentsPatchSkuCapacity.json" + } }, "x-ms-long-running-operation": true, "description": "Updates the environment with the specified name in the specified subscription and resource group.", @@ -222,7 +230,9 @@ ], "operationId": "Environments_Delete", "x-ms-examples": { - "EnvironmentsDelete": { "$ref": "./examples/EnvironmentsDelete.json" } + "EnvironmentsDelete": { + "$ref": "./examples/EnvironmentsDelete.json" + } }, "description": "Deletes the environment with the specified name in the specified subscription and resource group.", "parameters": [ @@ -262,7 +272,9 @@ ], "operationId": "Environments_ListByResourceGroup", "x-ms-examples": { - "EnvironmentsByResourceGroup": { "$ref": "./examples/EnvironmentsListByResourceGroup.json" } + "EnvironmentsByResourceGroup": { + "$ref": "./examples/EnvironmentsListByResourceGroup.json" + } }, "description": "Lists all the available environments associated with the subscription and within the specified resource group.", "parameters": [ @@ -299,7 +311,9 @@ ], "operationId": "Environments_ListBySubscription", "x-ms-examples": { - "EnvironmentsBySubscription": { "$ref": "./examples/EnvironmentsListBySubscription.json" } + "EnvironmentsBySubscription": { + "$ref": "./examples/EnvironmentsListBySubscription.json" + } }, "description": "Lists all the available environments within a subscription, irrespective of the resource groups.", "parameters": [ @@ -333,7 +347,9 @@ ], "operationId": "EventSources_CreateOrUpdate", "x-ms-examples": { - "CreateEventHubEventSource": { "$ref": "./examples/EventSourcesCreateEventHub.json" } + "CreateEventHubEventSource": { + "$ref": "./examples/EventSourcesCreateEventHub.json" + } }, "description": "Create or update an event source under the specified environment.", "parameters": [ @@ -396,7 +412,9 @@ ], "operationId": "EventSources_Get", "x-ms-examples": { - "GetEventHubEventSource": { "$ref": "./examples/EventSourcesGetEventHub.json" } + "GetEventHubEventSource": { + "$ref": "./examples/EventSourcesGetEventHub.json" + } }, "description": "Gets the event source with the specified name in the specified environment.", "parameters": [ @@ -437,7 +455,9 @@ ], "operationId": "EventSources_Update", "x-ms-examples": { - "UpdateEventSource": { "$ref": "./examples/EventSourcesPatchTags.json" } + "UpdateEventSource": { + "$ref": "./examples/EventSourcesPatchTags.json" + } }, "description": "Updates the event source with the specified name in the specified subscription, resource group, and environment.", "parameters": [ @@ -487,7 +507,9 @@ ], "operationId": "EventSources_Delete", "x-ms-examples": { - "DeleteEventSource": { "$ref": "./examples/EventSourcesDelete.json" } + "DeleteEventSource": { + "$ref": "./examples/EventSourcesDelete.json" + } }, "description": "Deletes the event source with the specified name in the specified subscription, resource group, and environment", "parameters": [ @@ -530,7 +552,9 @@ ], "operationId": "EventSources_ListByEnvironment", "x-ms-examples": { - "ListEventSourcesByEnvironment": { "$ref": "./examples/EventSourcesListByEnvironment.json" } + "ListEventSourcesByEnvironment": { + "$ref": "./examples/EventSourcesListByEnvironment.json" + } }, "description": "Lists all the available event sources associated with the subscription and within the specified resource group and environment.", "parameters": [ @@ -570,7 +594,9 @@ ], "operationId": "ReferenceDataSets_CreateOrUpdate", "x-ms-examples": { - "ReferenceDataSetsCreate": { "$ref": "./examples/ReferenceDataSetsCreate.json" } + "ReferenceDataSetsCreate": { + "$ref": "./examples/ReferenceDataSetsCreate.json" + } }, "description": "Create or update a reference data set in the specified environment.", "parameters": [ @@ -633,7 +659,9 @@ ], "operationId": "ReferenceDataSets_Get", "x-ms-examples": { - "ReferenceDataSetsGet": { "$ref": "./examples/ReferenceDataSetsGet.json" } + "ReferenceDataSetsGet": { + "$ref": "./examples/ReferenceDataSetsGet.json" + } }, "description": "Gets the reference data set with the specified name in the specified environment.", "parameters": [ @@ -674,7 +702,9 @@ ], "operationId": "ReferenceDataSets_Update", "x-ms-examples": { - "ReferenceDataSetsUpdate": { "$ref": "./examples/ReferenceDataSetsPatchTags.json" } + "ReferenceDataSetsUpdate": { + "$ref": "./examples/ReferenceDataSetsPatchTags.json" + } }, "description": "Updates the reference data set with the specified name in the specified subscription, resource group, and environment.", "parameters": [ @@ -724,7 +754,9 @@ ], "operationId": "ReferenceDataSets_Delete", "x-ms-examples": { - "ReferenceDataSetsDelete": { "$ref": "./examples/ReferenceDataSetsDelete.json" } + "ReferenceDataSetsDelete": { + "$ref": "./examples/ReferenceDataSetsDelete.json" + } }, "description": "Deletes the reference data set with the specified name in the specified subscription, resource group, and environment", "parameters": [ @@ -767,7 +799,9 @@ ], "operationId": "ReferenceDataSets_ListByEnvironment", "x-ms-examples": { - "ReferenceDataSetsListByEnvironment": { "$ref": "./examples/ReferenceDataSetsListByEnvironment.json" } + "ReferenceDataSetsListByEnvironment": { + "$ref": "./examples/ReferenceDataSetsListByEnvironment.json" + } }, "description": "Lists all the available reference data sets associated with the subscription and within the specified resource group and environment.", "parameters": [ @@ -807,7 +841,9 @@ ], "operationId": "AccessPolicies_CreateOrUpdate", "x-ms-examples": { - "AccessPoliciesCreate": { "$ref": "./examples/AccessPoliciesCreate.json" } + "AccessPoliciesCreate": { + "$ref": "./examples/AccessPoliciesCreate.json" + } }, "description": "Create or update an access policy in the specified environment.", "parameters": [ @@ -870,7 +906,9 @@ ], "operationId": "AccessPolicies_Get", "x-ms-examples": { - "AccessPoliciesGet": { "$ref": "./examples/AccessPoliciesGet.json" } + "AccessPoliciesGet": { + "$ref": "./examples/AccessPoliciesGet.json" + } }, "description": "Gets the access policy with the specified name in the specified environment.", "parameters": [ @@ -911,7 +949,9 @@ ], "operationId": "AccessPolicies_Update", "x-ms-examples": { - "AccessPoliciesUpdate": { "$ref": "./examples/AccessPoliciesPatchRoles.json" } + "AccessPoliciesUpdate": { + "$ref": "./examples/AccessPoliciesPatchRoles.json" + } }, "description": "Updates the access policy with the specified name in the specified subscription, resource group, and environment.", "parameters": [ @@ -961,7 +1001,9 @@ ], "operationId": "AccessPolicies_Delete", "x-ms-examples": { - "AccessPoliciesDelete": { "$ref": "./examples/AccessPoliciesDelete.json" } + "AccessPoliciesDelete": { + "$ref": "./examples/AccessPoliciesDelete.json" + } }, "description": "Deletes the access policy with the specified name in the specified subscription, resource group, and environment", "parameters": [ @@ -1004,7 +1046,9 @@ ], "operationId": "AccessPolicies_ListByEnvironment", "x-ms-examples": { - "AccessPoliciesByEnvironment": { "$ref": "./examples/AccessPoliciesListByEnvironment.json" } + "AccessPoliciesByEnvironment": { + "$ref": "./examples/AccessPoliciesListByEnvironment.json" + } }, "description": "Lists all the available access policies associated with the environment.", "parameters": [ @@ -1120,7 +1164,10 @@ "location": { "type": "string", "description": "Resource location", - "x-ms-mutability":["read", "create"] + "x-ms-mutability": [ + "read", + "create" + ] }, "tags": { "type": "object", @@ -1206,7 +1253,10 @@ "location": { "type": "string", "description": "The location of the resource.", - "x-ms-mutability":["read", "create"] + "x-ms-mutability": [ + "read", + "create" + ] }, "tags": { "type": "object", @@ -1305,7 +1355,10 @@ "storageLimitExceededBehavior": { "type": "string", "description": "The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If \"PauseIngress\" is specified, new events will not be read from the event source. If \"PurgeOldData\" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.", - "enum": [ "PurgeOldData", "PauseIngress" ], + "enum": [ + "PurgeOldData", + "PauseIngress" + ], "x-ms-enum": { "name": "StorageLimitExceededBehavior", "modelAsString": false @@ -1367,7 +1420,10 @@ "storageLimitExceededBehavior": { "type": "string", "description": "The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If \"PauseIngress\" is specified, new events will not be read from the event source. If \"PurgeOldData\" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.", - "enum": [ "PurgeOldData", "PauseIngress" ], + "enum": [ + "PurgeOldData", + "PauseIngress" + ], "x-ms-enum": { "name": "StorageLimitExceededBehavior", "modelAsString": false @@ -1443,7 +1499,7 @@ "readOnly": true, "type": "object", "description": "An object that contains the details about an environment's state.", - "properties":{ + "properties": { "code": { "type": "string", "description": "Contains the code that represents the reason of an environment being in a particular state. Can be used to programmatically handle specific cases." @@ -1580,7 +1636,10 @@ "kind": { "type": "string", "description": "The kind of the event source.", - "enum": [ "Microsoft.EventHub", "Microsoft.IoTHub" ] + "enum": [ + "Microsoft.EventHub", + "Microsoft.IoTHub" + ] } }, "required": [ @@ -1792,7 +1851,7 @@ "properties": { "propertyName": { "type": "string", - "description": "The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)" + "description": "The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)" } } } @@ -1909,7 +1968,10 @@ "dataStringComparisonBehavior": { "type": "string", "description": "The reference data set key comparison behavior can be set using this property. By default, the value is 'Ordinal' - which means case sensitive key comparison will be performed while joining reference data with events or while adding new reference data. When 'OrdinalIgnoreCase' is set, case insensitive comparison will be used.", - "enum": [ "Ordinal", "OrdinalIgnoreCase" ], + "enum": [ + "Ordinal", + "OrdinalIgnoreCase" + ], "x-ms-enum": { "name": "DataStringComparisonBehavior", "modelAsString": false diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET-With-Null-Values.json b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET-With-Null-Values.json index a0bbcbd25901..1e516a44b885 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET-With-Null-Values.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET-With-Null-Values.json @@ -16,52 +16,52 @@ "startTime": "2017-08-15T12:00:00Z", "endTime": "2017-08-22T12:50:00Z", "endpoints": [ - { - "endpointId": 0, - "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" - }, - { - "endpointId": 1, - "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" - } + { + "endpointId": 0, + "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" + }, + { + "endpointId": 1, + "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" + } ], "trafficFlows": [ - { - "latitude": 99.99, - "longitude": 0.00, - "sourceIp": "1.1.1.1", - "queryExperiences": [ - { - "endpointId": 0, - "latency": 99, - "queryCount": 1000000 - }, - { - "endpointId": 1, - "latency": 1, - "queryCount": 1 - } - ] - }, - { - "latitude": 1.11, - "longitude": -2.35, - "sourceIp": "2.255.1.1", - "queryExperiences": [ - { - "endpointId": 0, - "queryCount": 100 - }, - { - "endpointId": 1, - "latency": 4.222, - "queryCount": 500 - } - ] - } + { + "latitude": 99.99, + "longitude": 0.00, + "sourceIp": "1.1.1.1", + "queryExperiences": [ + { + "endpointId": 0, + "latency": 99, + "queryCount": 1000000 + }, + { + "endpointId": 1, + "latency": 1, + "queryCount": 1 + } + ] + }, + { + "latitude": 1.11, + "longitude": -2.35, + "sourceIp": "2.255.1.1", + "queryExperiences": [ + { + "endpointId": 0, + "queryCount": 100 + }, + { + "endpointId": 1, + "latency": 4.222, + "queryCount": 500 + } + ] + } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET-With-TopLeft-BotRight.json b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET-With-TopLeft-BotRight.json index 104e577dfc9d..de9ada96eaec 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET-With-TopLeft-BotRight.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET-With-TopLeft-BotRight.json @@ -4,8 +4,14 @@ "resourceGroupName": "azuresdkfornetautoresttrafficmanager1323", "profileName": "azuresdkfornetautoresttrafficmanager3880", "heatMapType": "default", - "topLeft": [10.000,50.001], - "botRight": [-50.001,80.000], + "topLeft": [ + 10.000, + 50.001 + ], + "botRight": [ + -50.001, + 80.000 + ], "api-version": "2017-09-01-preview" }, "responses": { @@ -18,53 +24,53 @@ "startTime": "2017-08-15T12:00:00Z", "endTime": "2017-08-22T12:50:00Z", "endpoints": [ - { - "endpointId": 1, - "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" - }, - { - "endpointId": 2, - "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" - } + { + "endpointId": 1, + "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" + }, + { + "endpointId": 2, + "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" + } ], "trafficFlows": [ - { - "latitude": 9.99, - "longitude": 75.01, - "sourceIp": "1.1.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 99.222, - "queryCount": 1000000 - }, - { - "endpointId": 2, - "latency": 1.222, - "queryCount": 1 - } - ] - }, - { - "latitude": -49.99, - "longitude": 51.00, - "sourceIp": "2.255.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 96.222, - "queryCount": 100 - }, - { - "endpointId": 2, - "latency": 4.222, - "queryCount": 500 - } - ] - } + { + "latitude": 9.99, + "longitude": 75.01, + "sourceIp": "1.1.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 99.222, + "queryCount": 1000000 + }, + { + "endpointId": 2, + "latency": 1.222, + "queryCount": 1 + } + ] + }, + { + "latitude": -49.99, + "longitude": 51.00, + "sourceIp": "2.255.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 96.222, + "queryCount": 100 + }, + { + "endpointId": 2, + "latency": 4.222, + "queryCount": 500 + } + ] + } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET.json b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET.json index 43ef96d21449..09f9fb65d169 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/HeatMap-GET.json @@ -16,53 +16,53 @@ "startTime": "2017-08-15T12:00:00Z", "endTime": "2017-08-22T12:50:00Z", "endpoints": [ - { - "endpointId": 1, - "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" - }, - { - "endpointId": 2, - "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" - } + { + "endpointId": 1, + "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" + }, + { + "endpointId": 2, + "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" + } ], "trafficFlows": [ - { - "latitude": 99.99, - "longitude": 0.00, - "sourceIp": "1.1.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 99.222, - "queryCount": 1000000 - }, - { - "endpointId": 2, - "latency": 1.222, - "queryCount": 1 - } - ] - }, - { - "latitude": -99.99, - "longitude": 1.00, - "sourceIp": "2.255.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 96.222, - "queryCount": 100 - }, - { - "endpointId": 2, - "latency": 4.222, - "queryCount": 500 - } - ] - } + { + "latitude": 99.99, + "longitude": 0.00, + "sourceIp": "1.1.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 99.222, + "queryCount": 1000000 + }, + { + "endpointId": 2, + "latency": 1.222, + "queryCount": 1 + } + ] + }, + { + "latitude": -99.99, + "longitude": 1.00, + "sourceIp": "2.255.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 96.222, + "queryCount": 100 + }, + { + "endpointId": 2, + "latency": 4.222, + "queryCount": 500 + } + ] + } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-DELETE.json b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-DELETE.json index 9b10e4184296..4b7686c4e13e 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-DELETE.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-DELETE.json @@ -8,4 +8,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-GET.json b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-GET.json index 929499650e67..338818607503 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-GET.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-GET.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-PUT.json b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-PUT.json index 850d1a825b9b..9e98035d9279 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-PUT.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/examples/TrafficManagerUserMetricsKeys-PUT.json @@ -13,4 +13,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/trafficmanageranalytics.json b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/trafficmanageranalytics.json index 961ee9351626..2cf73db0d653 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/trafficmanageranalytics.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/preview/2017-09-01-preview/trafficmanageranalytics.json @@ -45,7 +45,9 @@ "in": "path", "required": true, "type": "string", - "enum": [ "default" ], + "enum": [ + "default" + ], "description": "The type of HeatMap for the Traffic Manager profile." }, { @@ -366,19 +368,19 @@ }, "QueryExperience": { "properties": { - "endpointId": { - "type": "integer", - "description": "The id of the endpoint from the 'endpoints' array which these queries were routed to." - }, - "queryCount": { - "type": "integer", - "description": "The number of queries originating from this location." - }, - "latency": { - "type": "number", - "format": "double", - "description": "The latency experienced by queries originating from this location." - } + "endpointId": { + "type": "integer", + "description": "The id of the endpoint from the 'endpoints' array which these queries were routed to." + }, + "queryCount": { + "type": "integer", + "description": "The number of queries originating from this location." + }, + "latency": { + "type": "number", + "format": "double", + "description": "The latency experienced by queries originating from this location." + } }, "required": [ "endpointId", @@ -388,27 +390,27 @@ }, "TrafficFlow": { "properties": { - "sourceIp": { - "type": "string", - "description": "The IP address that this query experience originated from." - }, - "latitude": { - "type": "number", - "format": "double", - "description": "The approximate latitude that these queries originated from." - }, - "longitude": { - "type": "number", - "format": "double", - "description": "The approximate longitude that these queries originated from." - }, - "queryExperiences": { - "type": "array", - "description": "The query experiences produced in this HeatMap calculation.", - "items": { - "$ref": "#/definitions/QueryExperience" - } + "sourceIp": { + "type": "string", + "description": "The IP address that this query experience originated from." + }, + "latitude": { + "type": "number", + "format": "double", + "description": "The approximate latitude that these queries originated from." + }, + "longitude": { + "type": "number", + "format": "double", + "description": "The approximate longitude that these queries originated from." + }, + "queryExperiences": { + "type": "array", + "description": "The query experiences produced in this HeatMap calculation.", + "items": { + "$ref": "#/definitions/QueryExperience" } + } }, "description": "Class representing a Traffic Manager HeatMap traffic flow properties." }, @@ -430,19 +432,19 @@ "TrafficManagerUserMetricsKeyModel": { "properties": { "id": { - "type" : "string", + "type": "string", "description": "Fully qualified resource Id for the resource. Ex - /providers/Microsoft.Network/trafficManagerUserMetricsKeys" }, "name": { - "type" : "string", + "type": "string", "description": "The word default." }, "type": { - "type" : "string", + "type": "string", "description": "The type of the resource. Ex- Microsoft.Network/trafficManagerUserMetricsKeys." }, "key": { - "type" : "string", + "type": "string", "description": "The key returned by the Real User Metrics operation." } }, @@ -488,4 +490,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2015-11-01/trafficmanager.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2015-11-01/trafficmanager.json index 62593906011a..c69c150cdd4f 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2015-11-01/trafficmanager.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2015-11-01/trafficmanager.json @@ -71,10 +71,10 @@ ], "responses": { "200": { - "description": "The updated Traffic Manager endpoint.", - "schema": { - "$ref": "#/definitions/Endpoint" - } + "description": "The updated Traffic Manager endpoint.", + "schema": { + "$ref": "#/definitions/Endpoint" + } } } }, @@ -122,10 +122,10 @@ ], "responses": { "200": { - "description": "The Traffic Manager endpoint.", - "schema": { - "$ref": "#/definitions/Endpoint" - } + "description": "The Traffic Manager endpoint.", + "schema": { + "$ref": "#/definitions/Endpoint" + } } } }, @@ -182,16 +182,16 @@ ], "responses": { "200": { - "description": "The created or updated Endpoint.", - "schema": { - "$ref": "#/definitions/Endpoint" - } + "description": "The created or updated Endpoint.", + "schema": { + "$ref": "#/definitions/Endpoint" + } }, "201": { - "description": "The created or updated Endpoint.", - "schema": { - "$ref": "#/definitions/Endpoint" - } + "description": "The created or updated Endpoint.", + "schema": { + "$ref": "#/definitions/Endpoint" + } } } }, @@ -239,10 +239,10 @@ ], "responses": { "200": { - "description": "" + "description": "" }, "204": { - "description": "" + "description": "" } } } @@ -270,10 +270,10 @@ ], "responses": { "200": { - "description": "", - "schema": { - "$ref": "#/definitions/TrafficManagerNameAvailability" - } + "description": "", + "schema": { + "$ref": "#/definitions/TrafficManagerNameAvailability" + } } } } @@ -305,9 +305,9 @@ ], "responses": { "200": { - "description": "", - "schema": { - "$ref": "#/definitions/ProfileListResult" + "description": "", + "schema": { + "$ref": "#/definitions/ProfileListResult" } } } @@ -333,9 +333,9 @@ ], "responses": { "200": { - "description": "", - "schema": { - "$ref": "#/definitions/ProfileListResult" + "description": "", + "schema": { + "$ref": "#/definitions/ProfileListResult" } } } @@ -372,10 +372,10 @@ ], "responses": { "200": { - "description": "The Traffic Manager profile.", - "schema": { - "$ref": "#/definitions/Profile" - } + "description": "The Traffic Manager profile.", + "schema": { + "$ref": "#/definitions/Profile" + } } } }, @@ -418,16 +418,16 @@ ], "responses": { "200": { - "description": "The created or updated Traffic Manager profile.", - "schema": { - "$ref": "#/definitions/Profile" - } + "description": "The created or updated Traffic Manager profile.", + "schema": { + "$ref": "#/definitions/Profile" + } }, "201": { - "description": "The created or updated Traffic Manager profile.", - "schema": { - "$ref": "#/definitions/Profile" - } + "description": "The created or updated Traffic Manager profile.", + "schema": { + "$ref": "#/definitions/Profile" + } } } }, @@ -461,10 +461,10 @@ ], "responses": { "200": { - "description": "" + "description": "" }, "204": { - "description": "" + "description": "" } } }, @@ -507,10 +507,10 @@ ], "responses": { "200": { - "description": "The updated Traffic Manager profile.", - "schema": { - "$ref": "#/definitions/Profile" - } + "description": "The updated Traffic Manager profile.", + "schema": { + "$ref": "#/definitions/Profile" + } } } } @@ -767,4 +767,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-03-01/trafficmanager.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-03-01/trafficmanager.json index ac253634265d..ff689b736613 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-03-01/trafficmanager.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-03-01/trafficmanager.json @@ -69,10 +69,10 @@ ], "responses": { "200": { - "description": "The updated Traffic Manager endpoint.", - "schema": { - "$ref": "#/definitions/Endpoint" - } + "description": "The updated Traffic Manager endpoint.", + "schema": { + "$ref": "#/definitions/Endpoint" + } }, "default": { "description": "Default response. It will be deserialized as per the Error definition.", @@ -126,10 +126,10 @@ ], "responses": { "200": { - "description": "The Traffic Manager endpoint.", - "schema": { - "$ref": "#/definitions/Endpoint" - } + "description": "The Traffic Manager endpoint.", + "schema": { + "$ref": "#/definitions/Endpoint" + } }, "default": { "description": "Default response. It will be deserialized as per the Error definition.", @@ -192,16 +192,16 @@ ], "responses": { "200": { - "description": "The created or updated Endpoint.", - "schema": { - "$ref": "#/definitions/Endpoint" - } + "description": "The created or updated Endpoint.", + "schema": { + "$ref": "#/definitions/Endpoint" + } }, "201": { - "description": "The created or updated Endpoint.", - "schema": { - "$ref": "#/definitions/Endpoint" - } + "description": "The created or updated Endpoint.", + "schema": { + "$ref": "#/definitions/Endpoint" + } }, "default": { "description": "Default response. It will be deserialized as per the Error definition.", @@ -255,16 +255,16 @@ ], "responses": { "200": { - "description": "The Traffic Manager Endpoint was deleted successfully.", - "schema": { - "$ref": "#/definitions/DeleteOperationResult" - } + "description": "The Traffic Manager Endpoint was deleted successfully.", + "schema": { + "$ref": "#/definitions/DeleteOperationResult" + } }, "204": { - "description": "The Traffic Manager Endpoint does not exist. It could have been deleted on a previous request.", - "schema": { - "$ref": "#/definitions/DeleteOperationResult" - } + "description": "The Traffic Manager Endpoint does not exist. It could have been deleted on a previous request.", + "schema": { + "$ref": "#/definitions/DeleteOperationResult" + } }, "default": { "description": "Default response. It will be deserialized as per the Error definition.", @@ -298,10 +298,10 @@ ], "responses": { "200": { - "description": "The Traffic Manager Name Availability.", - "schema": { - "$ref": "#/definitions/TrafficManagerNameAvailability" - } + "description": "The Traffic Manager Name Availability.", + "schema": { + "$ref": "#/definitions/TrafficManagerNameAvailability" + } }, "default": { "description": "Default response. It will be deserialized as per the Error definition.", @@ -339,9 +339,9 @@ ], "responses": { "200": { - "description": "The list of Traffic Manager profiles.", - "schema": { - "$ref": "#/definitions/ProfileListResult" + "description": "The list of Traffic Manager profiles.", + "schema": { + "$ref": "#/definitions/ProfileListResult" } }, "default": { @@ -373,9 +373,9 @@ ], "responses": { "200": { - "description": "The list of Traffic Manager profiles.", - "schema": { - "$ref": "#/definitions/ProfileListResult" + "description": "The list of Traffic Manager profiles.", + "schema": { + "$ref": "#/definitions/ProfileListResult" } }, "default": { @@ -418,10 +418,10 @@ ], "responses": { "200": { - "description": "The Traffic Manager profile.", - "schema": { - "$ref": "#/definitions/Profile" - } + "description": "The Traffic Manager profile.", + "schema": { + "$ref": "#/definitions/Profile" + } }, "default": { "description": "Default response. It will be deserialized as per the Error definition.", @@ -470,16 +470,16 @@ ], "responses": { "200": { - "description": "The created or updated Traffic Manager profile.", - "schema": { - "$ref": "#/definitions/Profile" - } + "description": "The created or updated Traffic Manager profile.", + "schema": { + "$ref": "#/definitions/Profile" + } }, "201": { - "description": "The created or updated Traffic Manager profile.", - "schema": { - "$ref": "#/definitions/Profile" - } + "description": "The created or updated Traffic Manager profile.", + "schema": { + "$ref": "#/definitions/Profile" + } }, "default": { "description": "Default response. It will be deserialized as per the Error definition.", @@ -519,16 +519,16 @@ ], "responses": { "200": { - "description": "The Traffic Manager Profile was deleted successfully.", - "schema": { - "$ref": "#/definitions/DeleteOperationResult" - } + "description": "The Traffic Manager Profile was deleted successfully.", + "schema": { + "$ref": "#/definitions/DeleteOperationResult" + } }, "204": { - "description": "The profile does not exist. It could have been deleted on a previous request.", - "schema": { - "$ref": "#/definitions/DeleteOperationResult" - } + "description": "The profile does not exist. It could have been deleted on a previous request.", + "schema": { + "$ref": "#/definitions/DeleteOperationResult" + } }, "default": { "description": "Default response. It will be deserialized as per the Error definition.", @@ -577,10 +577,10 @@ ], "responses": { "200": { - "description": "The updated Traffic Manager profile.", - "schema": { - "$ref": "#/definitions/Profile" - } + "description": "The updated Traffic Manager profile.", + "schema": { + "$ref": "#/definitions/Profile" + } }, "default": { "description": "Default response. It will be deserialized as per the Error definition.", @@ -605,10 +605,10 @@ ], "responses": { "200": { - "description": "The default Geographic Hierarchy.", - "schema": { - "$ref": "#/definitions/TrafficManagerGeographicHierarchy" - } + "description": "The default Geographic Hierarchy.", + "schema": { + "$ref": "#/definitions/TrafficManagerGeographicHierarchy" + } }, "default": { "description": "Default response. It will be deserialized as per the Error definition.", @@ -918,18 +918,30 @@ }, "CloudError": { "type": "object", - "properties": { "error": { "$ref": "#/definitions/CloudErrorBody" } }, + "properties": { + "error": { + "$ref": "#/definitions/CloudErrorBody" + } + }, "x-ms-external": true }, "CloudErrorBody": { "type": "object", "properties": { - "code": { "type": "string" }, - "message": { "type": "string" }, - "target": { "type": "string" }, + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "target": { + "type": "string" + }, "details": { "type": "array", - "items": { "$ref": "#/definitions/CloudErrorBody" } + "items": { + "$ref": "#/definitions/CloudErrorBody" + } } }, "x-ms-external": true @@ -951,4 +963,4 @@ "description": "Client Api Version." } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-DELETE-External.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-DELETE-External.json index 9143454a9126..6e3ec4ce8109 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-DELETE-External.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-DELETE-External.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-GET-External-WithGeoMapping.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-GET-External-WithGeoMapping.json index a70078bf3634..5efc62ee6d3d 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-GET-External-WithGeoMapping.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-GET-External-WithGeoMapping.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-GET-External-WithLocation.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-GET-External-WithLocation.json index 53ff508ad1c9..7ad9b523d9fd 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-GET-External-WithLocation.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-GET-External-WithLocation.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PATCH-External-Target.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PATCH-External-Target.json index 0aca89f118e0..46545abe0fff 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PATCH-External-Target.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PATCH-External-Target.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PUT-External-WithGeoMapping.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PUT-External-WithGeoMapping.json index 1cbe461a0f39..8e130e64d3d0 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PUT-External-WithGeoMapping.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PUT-External-WithGeoMapping.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PUT-External-WithLocation.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PUT-External-WithLocation.json index 32d7d5ed530a..fe4656c9fe68 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PUT-External-WithLocation.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Endpoint-PUT-External-WithLocation.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/GeographicHierarchy-GET-default.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/GeographicHierarchy-GET-default.json index 061d9b63134c..366593479093 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/GeographicHierarchy-GET-default.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/GeographicHierarchy-GET-default.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json index ee69c6d3a24a..1785688a3844 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json index c94d59401ab6..c76ce8bd1432 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-DELETE.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-DELETE.json index 71f1ca52ba03..cdeb6884165f 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-DELETE.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-DELETE.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-ByResourceGroup.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-ByResourceGroup.json index 4c09c9413014..b914da5a5953 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-ByResourceGroup.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-ByResourceGroup.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-BySubscription.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-BySubscription.json index 4a82cb5e7e67..8b4cbba731fb 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-BySubscription.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-BySubscription.json @@ -119,4 +119,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-WithEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-WithEndpoints.json index 49844f988a53..b9ed7bf7cb6d 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-WithEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-GET-WithEndpoints.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PATCH-MonitorConfig.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PATCH-MonitorConfig.json index e9fb28dc0d25..e81be9576a43 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PATCH-MonitorConfig.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PATCH-MonitorConfig.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PUT-NoEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PUT-NoEndpoints.json index ae79c6653f34..d842fa7a1758 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PUT-NoEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PUT-NoEndpoints.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PUT-WithEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PUT-WithEndpoints.json index a5fb579a2f8f..1405a9ec564d 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PUT-WithEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/examples/Profile-PUT-WithEndpoints.json @@ -119,4 +119,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/trafficmanager.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/trafficmanager.json index 88ff6ca507b9..36a8c32dda02 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/trafficmanager.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2017-05-01/trafficmanager.json @@ -1142,4 +1142,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-DELETE-External.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-DELETE-External.json index cf9a541ea7d3..322e37ce3b33 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-DELETE-External.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-DELETE-External.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-GET-External-WithGeoMapping.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-GET-External-WithGeoMapping.json index 45d0ecc6d06a..af25faaf8112 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-GET-External-WithGeoMapping.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-GET-External-WithGeoMapping.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-GET-External-WithLocation.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-GET-External-WithLocation.json index 2a9bbf47f297..978a888037a1 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-GET-External-WithLocation.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-GET-External-WithLocation.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PATCH-External-Target.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PATCH-External-Target.json index 90fff205164d..db09153b3c78 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PATCH-External-Target.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PATCH-External-Target.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PUT-External-WithGeoMapping.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PUT-External-WithGeoMapping.json index d830e528140c..b476f95e4f71 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PUT-External-WithGeoMapping.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PUT-External-WithGeoMapping.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PUT-External-WithLocation.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PUT-External-WithLocation.json index 1275f5b23f2e..408e0ba34104 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PUT-External-WithLocation.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Endpoint-PUT-External-WithLocation.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/GeographicHierarchy-GET-default.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/GeographicHierarchy-GET-default.json index 785c1b6a6118..c8b156ef9684 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/GeographicHierarchy-GET-default.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/GeographicHierarchy-GET-default.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json index a106b8727712..872d6b873f30 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json index 183452fbf631..730a0b470b0f 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-DELETE.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-DELETE.json index bedfca67b180..00c9878643a1 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-DELETE.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-DELETE.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-ByResourceGroup.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-ByResourceGroup.json index 106a9f4f1ebb..e1015385e5da 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-ByResourceGroup.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-ByResourceGroup.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-BySubscription.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-BySubscription.json index f0a05fa4bc3b..65da2caafa3f 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-BySubscription.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-BySubscription.json @@ -119,4 +119,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-WithEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-WithEndpoints.json index b1bcfde63a56..6d8aa6b5e91a 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-WithEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-WithEndpoints.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-WithTrafficViewEnabled.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-WithTrafficViewEnabled.json index 4d10dfea66dc..42dd56399745 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-WithTrafficViewEnabled.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-GET-WithTrafficViewEnabled.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PATCH-MonitorConfig.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PATCH-MonitorConfig.json index 5e2d44cda189..0576067d3ee7 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PATCH-MonitorConfig.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PATCH-MonitorConfig.json @@ -61,4 +61,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PUT-NoEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PUT-NoEndpoints.json index 13120a065bf7..1be093373553 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PUT-NoEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PUT-NoEndpoints.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PUT-WithEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PUT-WithEndpoints.json index 20ae44cafba6..20fd95d0b65c 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PUT-WithEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/examples/Profile-PUT-WithEndpoints.json @@ -119,4 +119,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/trafficmanager.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/trafficmanager.json index 7da99e4bf151..325b69f73f1d 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/trafficmanager.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-02-01/trafficmanager.json @@ -1154,4 +1154,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-DELETE-External.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-DELETE-External.json index 9143454a9126..6e3ec4ce8109 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-DELETE-External.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-DELETE-External.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-GET-External-WithGeoMapping.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-GET-External-WithGeoMapping.json index a70078bf3634..5efc62ee6d3d 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-GET-External-WithGeoMapping.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-GET-External-WithGeoMapping.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-GET-External-WithLocation.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-GET-External-WithLocation.json index 53ff508ad1c9..7ad9b523d9fd 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-GET-External-WithLocation.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-GET-External-WithLocation.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PATCH-External-Target.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PATCH-External-Target.json index 0aca89f118e0..46545abe0fff 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PATCH-External-Target.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PATCH-External-Target.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithCustomHeaders.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithCustomHeaders.json index 0bed49febc02..194ca426f6b0 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithCustomHeaders.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithCustomHeaders.json @@ -14,7 +14,16 @@ "endpointStatus": "Enabled", "endpointLocation": "North Europe", "trafficViewEnrollmentStatus": "Disabled", - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] } } }, @@ -32,7 +41,16 @@ "priority": 1, "endpointLocation": "North Europe", "trafficViewEnrollmentStatus": "Disabled", - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] } } }, @@ -49,9 +67,18 @@ "priority": 1, "endpointLocation": "North Europe", "trafficViewEnrollmentStatus": "Disabled", - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithGeoMapping.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithGeoMapping.json index 1cbe461a0f39..8e130e64d3d0 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithGeoMapping.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithGeoMapping.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithLocation.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithLocation.json index 32d7d5ed530a..fe4656c9fe68 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithLocation.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Endpoint-PUT-External-WithLocation.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/GeographicHierarchy-GET-default.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/GeographicHierarchy-GET-default.json index 061d9b63134c..366593479093 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/GeographicHierarchy-GET-default.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/GeographicHierarchy-GET-default.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET-With-Null-Values.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET-With-Null-Values.json index a0bbcbd25901..1e516a44b885 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET-With-Null-Values.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET-With-Null-Values.json @@ -16,52 +16,52 @@ "startTime": "2017-08-15T12:00:00Z", "endTime": "2017-08-22T12:50:00Z", "endpoints": [ - { - "endpointId": 0, - "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" - }, - { - "endpointId": 1, - "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" - } + { + "endpointId": 0, + "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" + }, + { + "endpointId": 1, + "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" + } ], "trafficFlows": [ - { - "latitude": 99.99, - "longitude": 0.00, - "sourceIp": "1.1.1.1", - "queryExperiences": [ - { - "endpointId": 0, - "latency": 99, - "queryCount": 1000000 - }, - { - "endpointId": 1, - "latency": 1, - "queryCount": 1 - } - ] - }, - { - "latitude": 1.11, - "longitude": -2.35, - "sourceIp": "2.255.1.1", - "queryExperiences": [ - { - "endpointId": 0, - "queryCount": 100 - }, - { - "endpointId": 1, - "latency": 4.222, - "queryCount": 500 - } - ] - } + { + "latitude": 99.99, + "longitude": 0.00, + "sourceIp": "1.1.1.1", + "queryExperiences": [ + { + "endpointId": 0, + "latency": 99, + "queryCount": 1000000 + }, + { + "endpointId": 1, + "latency": 1, + "queryCount": 1 + } + ] + }, + { + "latitude": 1.11, + "longitude": -2.35, + "sourceIp": "2.255.1.1", + "queryExperiences": [ + { + "endpointId": 0, + "queryCount": 100 + }, + { + "endpointId": 1, + "latency": 4.222, + "queryCount": 500 + } + ] + } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET-With-TopLeft-BotRight.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET-With-TopLeft-BotRight.json index 104e577dfc9d..de9ada96eaec 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET-With-TopLeft-BotRight.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET-With-TopLeft-BotRight.json @@ -4,8 +4,14 @@ "resourceGroupName": "azuresdkfornetautoresttrafficmanager1323", "profileName": "azuresdkfornetautoresttrafficmanager3880", "heatMapType": "default", - "topLeft": [10.000,50.001], - "botRight": [-50.001,80.000], + "topLeft": [ + 10.000, + 50.001 + ], + "botRight": [ + -50.001, + 80.000 + ], "api-version": "2017-09-01-preview" }, "responses": { @@ -18,53 +24,53 @@ "startTime": "2017-08-15T12:00:00Z", "endTime": "2017-08-22T12:50:00Z", "endpoints": [ - { - "endpointId": 1, - "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" - }, - { - "endpointId": 2, - "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" - } + { + "endpointId": 1, + "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" + }, + { + "endpointId": 2, + "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" + } ], "trafficFlows": [ - { - "latitude": 9.99, - "longitude": 75.01, - "sourceIp": "1.1.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 99.222, - "queryCount": 1000000 - }, - { - "endpointId": 2, - "latency": 1.222, - "queryCount": 1 - } - ] - }, - { - "latitude": -49.99, - "longitude": 51.00, - "sourceIp": "2.255.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 96.222, - "queryCount": 100 - }, - { - "endpointId": 2, - "latency": 4.222, - "queryCount": 500 - } - ] - } + { + "latitude": 9.99, + "longitude": 75.01, + "sourceIp": "1.1.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 99.222, + "queryCount": 1000000 + }, + { + "endpointId": 2, + "latency": 1.222, + "queryCount": 1 + } + ] + }, + { + "latitude": -49.99, + "longitude": 51.00, + "sourceIp": "2.255.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 96.222, + "queryCount": 100 + }, + { + "endpointId": 2, + "latency": 4.222, + "queryCount": 500 + } + ] + } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET.json index 43ef96d21449..09f9fb65d169 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/HeatMap-GET.json @@ -16,53 +16,53 @@ "startTime": "2017-08-15T12:00:00Z", "endTime": "2017-08-22T12:50:00Z", "endpoints": [ - { - "endpointId": 1, - "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" - }, - { - "endpointId": 2, - "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" - } + { + "endpointId": 1, + "resourceId": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" + }, + { + "endpointId": 2, + "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" + } ], "trafficFlows": [ - { - "latitude": 99.99, - "longitude": 0.00, - "sourceIp": "1.1.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 99.222, - "queryCount": 1000000 - }, - { - "endpointId": 2, - "latency": 1.222, - "queryCount": 1 - } - ] - }, - { - "latitude": -99.99, - "longitude": 1.00, - "sourceIp": "2.255.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 96.222, - "queryCount": 100 - }, - { - "endpointId": 2, - "latency": 4.222, - "queryCount": 500 - } - ] - } + { + "latitude": 99.99, + "longitude": 0.00, + "sourceIp": "1.1.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 99.222, + "queryCount": 1000000 + }, + { + "endpointId": 2, + "latency": 1.222, + "queryCount": 1 + } + ] + }, + { + "latitude": -99.99, + "longitude": 1.00, + "sourceIp": "2.255.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 96.222, + "queryCount": 100 + }, + { + "endpointId": 2, + "latency": 4.222, + "queryCount": 500 + } + ] + } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json index ee69c6d3a24a..1785688a3844 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json index c94d59401ab6..c76ce8bd1432 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-DELETE.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-DELETE.json index 71f1ca52ba03..cdeb6884165f 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-DELETE.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-DELETE.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-ByResourceGroup.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-ByResourceGroup.json index 4c09c9413014..b914da5a5953 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-ByResourceGroup.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-ByResourceGroup.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-BySubscription.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-BySubscription.json index 4a82cb5e7e67..8b4cbba731fb 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-BySubscription.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-BySubscription.json @@ -119,4 +119,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithEndpoints.json index 49844f988a53..b9ed7bf7cb6d 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithEndpoints.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithTrafficViewDisabled.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithTrafficViewDisabled.json index 8a22dd795b61..a8d0d433dee0 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithTrafficViewDisabled.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithTrafficViewDisabled.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithTrafficViewEnabled.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithTrafficViewEnabled.json index b17abf6c6dc0..b652fe627472 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithTrafficViewEnabled.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-GET-WithTrafficViewEnabled.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PATCH-MonitorConfig.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PATCH-MonitorConfig.json index 3316009739d0..683d98d1b446 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PATCH-MonitorConfig.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PATCH-MonitorConfig.json @@ -13,7 +13,16 @@ "intervalInSeconds": 30, "timeoutInSeconds": 6, "toleratedNumberOfFailures": 4, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] } } } @@ -42,7 +51,16 @@ "intervalInSeconds": 30, "toleratedNumberOfFailures": 4, "timeoutInSeconds": 6, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] }, "endpoints": [ { @@ -63,4 +81,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-NoEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-NoEndpoints.json index ae79c6653f34..d842fa7a1758 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-NoEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-NoEndpoints.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithAliasing.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithAliasing.json index ff5478ed8cfa..06211eb3c0cc 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithAliasing.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithAliasing.json @@ -20,7 +20,9 @@ "timeoutInSeconds": 5, "toleratedNumberOfFailures": 2 }, - "allowedEndpointRecordTypes": ["DomainName"], + "allowedEndpointRecordTypes": [ + "DomainName" + ], "endpoints": [ { "name": "My external endpoint", @@ -59,9 +61,20 @@ "intervalInSeconds": 10, "toleratedNumberOfFailures": 2, "timeoutInSeconds": 5, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] }, - "allowedEndpointRecordTypes": ["DomainName"], + "allowedEndpointRecordTypes": [ + "DomainName" + ], "endpoints": [ { "id": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2583/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6192/externalEndpoints/My external endpoint", @@ -74,7 +87,12 @@ "weight": 1, "priority": 1, "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-2", "value":"value-2-overridden"}] + "customHeaders": [ + { + "name": "header-2", + "value": "value-2-overridden" + } + ] } } ] @@ -103,9 +121,20 @@ "intervalInSeconds": 10, "toleratedNumberOfFailures": 2, "timeoutInSeconds": 5, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] }, - "allowedEndpointRecordTypes": ["DomainName"], + "allowedEndpointRecordTypes": [ + "DomainName" + ], "endpoints": [ { "id": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2583/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6192/externalEndpoints/My external endpoint", @@ -118,7 +147,12 @@ "weight": 1, "priority": 1, "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-2", "value":"value-2-overridden"}] + "customHeaders": [ + { + "name": "header-2", + "value": "value-2-overridden" + } + ] } } ] @@ -126,4 +160,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithCustomHeaders.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithCustomHeaders.json index 652d2b5f4191..520964a2977a 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithCustomHeaders.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithCustomHeaders.json @@ -19,8 +19,26 @@ "intervalInSeconds": 10, "timeoutInSeconds": 5, "toleratedNumberOfFailures": 2, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}], - "expectedStatusCodeRanges" : [{"min":200, "max":205},{"min":400, "max":410}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ], + "expectedStatusCodeRanges": [ + { + "min": 200, + "max": 205 + }, + { + "min": 400, + "max": 410 + } + ] }, "trafficViewEnrollmentStatus": "Disabled", "endpoints": [ @@ -31,7 +49,12 @@ "target": "foobar.contoso.com", "endpointStatus": "Enabled", "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-2", "value":"value-2-overridden"}] + "customHeaders": [ + { + "name": "header-2", + "value": "value-2-overridden" + } + ] } } ] @@ -62,7 +85,16 @@ "intervalInSeconds": 10, "toleratedNumberOfFailures": 2, "timeoutInSeconds": 5, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] }, "trafficViewEnrollmentStatus": "Disabled", "endpoints": [ @@ -77,7 +109,12 @@ "weight": 1, "priority": 1, "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-2", "value":"value-2-overridden"}] + "customHeaders": [ + { + "name": "header-2", + "value": "value-2-overridden" + } + ] } } ] @@ -106,7 +143,16 @@ "intervalInSeconds": 10, "toleratedNumberOfFailures": 2, "timeoutInSeconds": 5, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] }, "trafficViewEnrollmentStatus": "Disabled", "endpoints": [ @@ -121,7 +167,12 @@ "weight": 1, "priority": 1, "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-2", "value":"value-2-overridden"}] + "customHeaders": [ + { + "name": "header-2", + "value": "value-2-overridden" + } + ] } } ] @@ -129,4 +180,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithEndpoints.json index a5fb579a2f8f..1405a9ec564d 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/examples/Profile-PUT-WithEndpoints.json @@ -119,4 +119,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/trafficmanager.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/trafficmanager.json index b08443d2ee96..2491b8972e3a 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/trafficmanager.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-03-01/trafficmanager.json @@ -902,19 +902,19 @@ }, "QueryExperience": { "properties": { - "endpointId": { - "type": "integer", - "description": "The id of the endpoint from the 'endpoints' array which these queries were routed to." - }, - "queryCount": { - "type": "integer", - "description": "The number of queries originating from this location." - }, - "latency": { - "type": "number", - "format": "double", - "description": "The latency experienced by queries originating from this location." - } + "endpointId": { + "type": "integer", + "description": "The id of the endpoint from the 'endpoints' array which these queries were routed to." + }, + "queryCount": { + "type": "integer", + "description": "The number of queries originating from this location." + }, + "latency": { + "type": "number", + "format": "double", + "description": "The latency experienced by queries originating from this location." + } }, "required": [ "endpointId", @@ -924,27 +924,27 @@ }, "TrafficFlow": { "properties": { - "sourceIp": { - "type": "string", - "description": "The IP address that this query experience originated from." - }, - "latitude": { - "type": "number", - "format": "double", - "description": "The approximate latitude that these queries originated from." - }, - "longitude": { - "type": "number", - "format": "double", - "description": "The approximate longitude that these queries originated from." - }, - "queryExperiences": { - "type": "array", - "description": "The query experiences produced in this HeatMap calculation.", - "items": { - "$ref": "#/definitions/QueryExperience" - } + "sourceIp": { + "type": "string", + "description": "The IP address that this query experience originated from." + }, + "latitude": { + "type": "number", + "format": "double", + "description": "The approximate latitude that these queries originated from." + }, + "longitude": { + "type": "number", + "format": "double", + "description": "The approximate longitude that these queries originated from." + }, + "queryExperiences": { + "type": "array", + "description": "The query experiences produced in this HeatMap calculation.", + "items": { + "$ref": "#/definitions/QueryExperience" } + } }, "description": "Class representing a Traffic Manager HeatMap traffic flow properties." }, @@ -1412,4 +1412,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-DELETE-External.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-DELETE-External.json index 84d5fc671d4f..016e19299949 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-DELETE-External.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-DELETE-External.json @@ -15,4 +15,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithGeoMapping.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithGeoMapping.json index 4d4c52e14a35..733d0cc383e6 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithGeoMapping.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithGeoMapping.json @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithLocation.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithLocation.json index 9efe77ed65c4..f5818ea2e3ca 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithLocation.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithLocation.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithSubnetMapping.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithSubnetMapping.json index 50af08bca284..740c4bc4e099 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithSubnetMapping.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-GET-External-WithSubnetMapping.json @@ -26,11 +26,11 @@ }, { "first": "25.26.27.28", - "last":"29.30.31.32" + "last": "29.30.31.32" } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PATCH-External-Target.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PATCH-External-Target.json index 5c3c1158c3c4..0b0fae6b550a 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PATCH-External-Target.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PATCH-External-Target.json @@ -32,4 +32,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithCustomHeaders.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithCustomHeaders.json index b69892fddea5..14bf2faba14d 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithCustomHeaders.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithCustomHeaders.json @@ -13,7 +13,16 @@ "target": "foobar.contoso.com", "endpointStatus": "Enabled", "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] } } }, @@ -30,7 +39,16 @@ "weight": 1, "priority": 1, "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] } } }, @@ -46,9 +64,18 @@ "weight": 1, "priority": 1, "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithGeoMapping.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithGeoMapping.json index dab7a7a0a663..87e023137b94 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithGeoMapping.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithGeoMapping.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithLocation.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithLocation.json index 89ffcf8b3c6b..44ebf2cda5ef 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithLocation.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithLocation.json @@ -48,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithSubnetMapping.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithSubnetMapping.json index 2ac78d46d183..d67acd04bb5f 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithSubnetMapping.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Endpoint-PUT-External-WithSubnetMapping.json @@ -19,7 +19,7 @@ }, { "first": "25.26.27.28", - "last":"29.30.31.32" + "last": "29.30.31.32" } ] } @@ -44,7 +44,7 @@ }, { "first": "25.26.27.28", - "last":"29.30.31.32" + "last": "29.30.31.32" } ] } @@ -68,11 +68,11 @@ }, { "first": "25.26.27.28", - "last":"29.30.31.32" + "last": "29.30.31.32" } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/GeographicHierarchy-GET-default.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/GeographicHierarchy-GET-default.json index 8626483a26df..5bfeb8b9bbd4 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/GeographicHierarchy-GET-default.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/GeographicHierarchy-GET-default.json @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET-With-Null-Values.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET-With-Null-Values.json index e18faf87ffa2..d75b7716c4b8 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET-With-Null-Values.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET-With-Null-Values.json @@ -16,52 +16,52 @@ "startTime": "2017-08-15T12:00:00Z", "endTime": "2017-08-22T12:50:00Z", "endpoints": [ - { - "endpointId": 0, - "resourceId": "/subscriptions/{subscription-id}/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" - }, - { - "endpointId": 1, - "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" - } + { + "endpointId": 0, + "resourceId": "/subscriptions/{subscription-id}/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" + }, + { + "endpointId": 1, + "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" + } ], "trafficFlows": [ - { - "latitude": 99.99, - "longitude": 0.00, - "sourceIp": "1.1.1.1", - "queryExperiences": [ - { - "endpointId": 0, - "latency": 99, - "queryCount": 1000000 - }, - { - "endpointId": 1, - "latency": 1, - "queryCount": 1 - } - ] - }, - { - "latitude": 1.11, - "longitude": -2.35, - "sourceIp": "2.255.1.1", - "queryExperiences": [ - { - "endpointId": 0, - "queryCount": 100 - }, - { - "endpointId": 1, - "latency": 4.222, - "queryCount": 500 - } - ] - } + { + "latitude": 99.99, + "longitude": 0.00, + "sourceIp": "1.1.1.1", + "queryExperiences": [ + { + "endpointId": 0, + "latency": 99, + "queryCount": 1000000 + }, + { + "endpointId": 1, + "latency": 1, + "queryCount": 1 + } + ] + }, + { + "latitude": 1.11, + "longitude": -2.35, + "sourceIp": "2.255.1.1", + "queryExperiences": [ + { + "endpointId": 0, + "queryCount": 100 + }, + { + "endpointId": 1, + "latency": 4.222, + "queryCount": 500 + } + ] + } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET-With-TopLeft-BotRight.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET-With-TopLeft-BotRight.json index b19dddf0f4d0..7f449944e6af 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET-With-TopLeft-BotRight.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET-With-TopLeft-BotRight.json @@ -4,8 +4,14 @@ "resourceGroupName": "azuresdkfornetautoresttrafficmanager1323", "profileName": "azuresdkfornetautoresttrafficmanager3880", "heatMapType": "default", - "topLeft": [10.000,50.001], - "botRight": [-50.001,80.000], + "topLeft": [ + 10.000, + 50.001 + ], + "botRight": [ + -50.001, + 80.000 + ], "api-version": "2018-04-01" }, "responses": { @@ -18,53 +24,53 @@ "startTime": "2017-08-15T12:00:00Z", "endTime": "2017-08-22T12:50:00Z", "endpoints": [ - { - "endpointId": 1, - "resourceId": "/subscriptions/{subscription-id}/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" - }, - { - "endpointId": 2, - "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" - } + { + "endpointId": 1, + "resourceId": "/subscriptions/{subscription-id}/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" + }, + { + "endpointId": 2, + "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" + } ], "trafficFlows": [ - { - "latitude": 9.99, - "longitude": 75.01, - "sourceIp": "1.1.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 99.222, - "queryCount": 1000000 - }, - { - "endpointId": 2, - "latency": 1.222, - "queryCount": 1 - } - ] - }, - { - "latitude": -49.99, - "longitude": 51.00, - "sourceIp": "2.255.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 96.222, - "queryCount": 100 - }, - { - "endpointId": 2, - "latency": 4.222, - "queryCount": 500 - } - ] - } + { + "latitude": 9.99, + "longitude": 75.01, + "sourceIp": "1.1.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 99.222, + "queryCount": 1000000 + }, + { + "endpointId": 2, + "latency": 1.222, + "queryCount": 1 + } + ] + }, + { + "latitude": -49.99, + "longitude": 51.00, + "sourceIp": "2.255.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 96.222, + "queryCount": 100 + }, + { + "endpointId": 2, + "latency": 4.222, + "queryCount": 500 + } + ] + } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET.json index 32419992b78d..0bf80535f13b 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/HeatMap-GET.json @@ -16,53 +16,53 @@ "startTime": "2017-08-15T12:00:00Z", "endTime": "2017-08-22T12:50:00Z", "endpoints": [ - { - "endpointId": 1, - "resourceId": "/subscriptions/{subscription-id}/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" - }, - { - "endpointId": 2, - "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" - } + { + "endpointId": 1, + "resourceId": "/subscriptions/{subscription-id}/resourceGroups/azuresdkfornetautoresttrafficmanager1323/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3880/externalEndpoints/azuresdkfornetautoresttrafficmanager3880" + }, + { + "endpointId": 2, + "resourceId": "/subscriptions/562d4115-c01e-4m67-9bbd-c11c2d58ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1300/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3885/externalEndpoints/azuresdkfornetautoresttrafficmanager3881" + } ], "trafficFlows": [ - { - "latitude": 99.99, - "longitude": 0.00, - "sourceIp": "1.1.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 99.222, - "queryCount": 1000000 - }, - { - "endpointId": 2, - "latency": 1.222, - "queryCount": 1 - } - ] - }, - { - "latitude": -99.99, - "longitude": 1.00, - "sourceIp": "2.255.1.1", - "queryExperiences": [ - { - "endpointId": 1, - "latency": 96.222, - "queryCount": 100 - }, - { - "endpointId": 2, - "latency": 4.222, - "queryCount": 500 - } - ] - } + { + "latitude": 99.99, + "longitude": 0.00, + "sourceIp": "1.1.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 99.222, + "queryCount": 1000000 + }, + { + "endpointId": 2, + "latency": 1.222, + "queryCount": 1 + } + ] + }, + { + "latitude": -99.99, + "longitude": 1.00, + "sourceIp": "2.255.1.1", + "queryExperiences": [ + { + "endpointId": 1, + "latency": 96.222, + "queryCount": 100 + }, + { + "endpointId": 2, + "latency": 4.222, + "queryCount": 500 + } + ] + } ] } } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json index 0e51da526d6f..a93539864b31 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/NameAvailabilityTest_NameAvailable-POST-example-21.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json index 4a3ff028ab19..731268468825 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/NameAvailabilityTest_NameNotAvailable-POST-example-23.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-DELETE.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-DELETE.json index d81efc536936..bc40ff7e4787 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-DELETE.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-DELETE.json @@ -13,4 +13,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-ByResourceGroup.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-ByResourceGroup.json index 5476fec0da14..cd6dcc036659 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-ByResourceGroup.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-ByResourceGroup.json @@ -92,4 +92,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-BySubscription.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-BySubscription.json index 91a4627e4262..ac73a1d8be85 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-BySubscription.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-BySubscription.json @@ -119,4 +119,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithEndpoints.json index ef798bb44456..46939d168692 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithEndpoints.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithTrafficViewDisabled.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithTrafficViewDisabled.json index 33689840aefd..f33d2cd2b550 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithTrafficViewDisabled.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithTrafficViewDisabled.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithTrafficViewEnabled.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithTrafficViewEnabled.json index 5d0ee32134be..6cbbdb652c68 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithTrafficViewEnabled.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-GET-WithTrafficViewEnabled.json @@ -50,4 +50,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PATCH-MonitorConfig.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PATCH-MonitorConfig.json index 5b83a6ae9694..3135c41dac37 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PATCH-MonitorConfig.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PATCH-MonitorConfig.json @@ -13,7 +13,16 @@ "intervalInSeconds": 30, "timeoutInSeconds": 6, "toleratedNumberOfFailures": 4, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] } } } @@ -42,7 +51,16 @@ "intervalInSeconds": 30, "toleratedNumberOfFailures": 4, "timeoutInSeconds": 6, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] }, "endpoints": [ { @@ -63,4 +81,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-MultiValue.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-MultiValue.json index 79580fe6e72d..a4023542ad22 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-MultiValue.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-MultiValue.json @@ -83,4 +83,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-NoEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-NoEndpoints.json index 191dc9d22cca..3fb1c0503814 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-NoEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-NoEndpoints.json @@ -77,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithAliasing.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithAliasing.json index cdfe025865a6..11d6045c1bf2 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithAliasing.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithAliasing.json @@ -20,7 +20,9 @@ "timeoutInSeconds": 5, "toleratedNumberOfFailures": 2 }, - "allowedEndpointRecordTypes": ["DomainName"], + "allowedEndpointRecordTypes": [ + "DomainName" + ], "endpoints": [ { "name": "My external endpoint", @@ -59,9 +61,20 @@ "intervalInSeconds": 10, "toleratedNumberOfFailures": 2, "timeoutInSeconds": 5, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] }, - "allowedEndpointRecordTypes": ["DomainName"], + "allowedEndpointRecordTypes": [ + "DomainName" + ], "endpoints": [ { "id": "/subscriptions/{subscription-id}/resourceGroups/azuresdkfornetautoresttrafficmanager2583/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6192/externalEndpoints/My external endpoint", @@ -74,7 +87,12 @@ "weight": 1, "priority": 1, "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-2", "value":"value-2-overridden"}] + "customHeaders": [ + { + "name": "header-2", + "value": "value-2-overridden" + } + ] } } ] @@ -103,9 +121,20 @@ "intervalInSeconds": 10, "toleratedNumberOfFailures": 2, "timeoutInSeconds": 5, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] }, - "allowedEndpointRecordTypes": ["DomainName"], + "allowedEndpointRecordTypes": [ + "DomainName" + ], "endpoints": [ { "id": "/subscriptions/{subscription-id}/resourceGroups/azuresdkfornetautoresttrafficmanager2583/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6192/externalEndpoints/My external endpoint", @@ -118,7 +147,12 @@ "weight": 1, "priority": 1, "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-2", "value":"value-2-overridden"}] + "customHeaders": [ + { + "name": "header-2", + "value": "value-2-overridden" + } + ] } } ] @@ -126,4 +160,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithCustomHeaders.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithCustomHeaders.json index 5d69ea98b659..0cc0c9e352e9 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithCustomHeaders.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithCustomHeaders.json @@ -19,8 +19,26 @@ "intervalInSeconds": 10, "timeoutInSeconds": 5, "toleratedNumberOfFailures": 2, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}], - "expectedStatusCodeRanges" : [{"min":200, "max":205},{"min":400, "max":410}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ], + "expectedStatusCodeRanges": [ + { + "min": 200, + "max": 205 + }, + { + "min": 400, + "max": 410 + } + ] }, "trafficViewEnrollmentStatus": "Disabled", "endpoints": [ @@ -31,7 +49,12 @@ "target": "foobar.contoso.com", "endpointStatus": "Enabled", "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-2", "value":"value-2-overridden"}] + "customHeaders": [ + { + "name": "header-2", + "value": "value-2-overridden" + } + ] } } ] @@ -62,7 +85,16 @@ "intervalInSeconds": 10, "toleratedNumberOfFailures": 2, "timeoutInSeconds": 5, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] }, "trafficViewEnrollmentStatus": "Disabled", "endpoints": [ @@ -77,7 +109,12 @@ "weight": 1, "priority": 1, "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-2", "value":"value-2-overridden"}] + "customHeaders": [ + { + "name": "header-2", + "value": "value-2-overridden" + } + ] } } ] @@ -106,7 +143,16 @@ "intervalInSeconds": 10, "toleratedNumberOfFailures": 2, "timeoutInSeconds": 5, - "customHeaders" : [{"name":"header-1", "value":"value-1"},{"name":"header-2", "value":"value-2"}] + "customHeaders": [ + { + "name": "header-1", + "value": "value-1" + }, + { + "name": "header-2", + "value": "value-2" + } + ] }, "trafficViewEnrollmentStatus": "Disabled", "endpoints": [ @@ -121,7 +167,12 @@ "weight": 1, "priority": 1, "endpointLocation": "North Europe", - "customHeaders" : [{"name":"header-2", "value":"value-2-overridden"}] + "customHeaders": [ + { + "name": "header-2", + "value": "value-2-overridden" + } + ] } } ] @@ -129,4 +180,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithEndpoints.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithEndpoints.json index 725ceb58ae0c..0d7112968c1f 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithEndpoints.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/Profile-PUT-WithEndpoints.json @@ -119,4 +119,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-DELETE.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-DELETE.json index 5b2257eb820b..25460516b991 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-DELETE.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-DELETE.json @@ -8,4 +8,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-GET.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-GET.json index 8ac2b43365b5..7b8197c90fca 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-GET.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-GET.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-PUT.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-PUT.json index 13942c7d9a05..2b13e9398231 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-PUT.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/examples/TrafficManagerUserMetricsKeys-PUT.json @@ -15,4 +15,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/trafficmanager.json b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/trafficmanager.json index 811e3679bf75..5f0ab4c10fb5 100644 --- a/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/trafficmanager.json +++ b/specification/trafficmanager/resource-manager/Microsoft.Network/stable/2018-04-01/trafficmanager.json @@ -1049,19 +1049,19 @@ }, "QueryExperience": { "properties": { - "endpointId": { - "type": "integer", - "description": "The id of the endpoint from the 'endpoints' array which these queries were routed to." - }, - "queryCount": { - "type": "integer", - "description": "The number of queries originating from this location." - }, - "latency": { - "type": "number", - "format": "double", - "description": "The latency experienced by queries originating from this location." - } + "endpointId": { + "type": "integer", + "description": "The id of the endpoint from the 'endpoints' array which these queries were routed to." + }, + "queryCount": { + "type": "integer", + "description": "The number of queries originating from this location." + }, + "latency": { + "type": "number", + "format": "double", + "description": "The latency experienced by queries originating from this location." + } }, "required": [ "endpointId", @@ -1071,27 +1071,27 @@ }, "TrafficFlow": { "properties": { - "sourceIp": { - "type": "string", - "description": "The IP address that this query experience originated from." - }, - "latitude": { - "type": "number", - "format": "double", - "description": "The approximate latitude that these queries originated from." - }, - "longitude": { - "type": "number", - "format": "double", - "description": "The approximate longitude that these queries originated from." - }, - "queryExperiences": { - "type": "array", - "description": "The query experiences produced in this HeatMap calculation.", - "items": { - "$ref": "#/definitions/QueryExperience" - } + "sourceIp": { + "type": "string", + "description": "The IP address that this query experience originated from." + }, + "latitude": { + "type": "number", + "format": "double", + "description": "The approximate latitude that these queries originated from." + }, + "longitude": { + "type": "number", + "format": "double", + "description": "The approximate longitude that these queries originated from." + }, + "queryExperiences": { + "type": "array", + "description": "The query experiences produced in this HeatMap calculation.", + "items": { + "$ref": "#/definitions/QueryExperience" } + } }, "description": "Class representing a Traffic Manager HeatMap traffic flow properties." }, @@ -1441,7 +1441,7 @@ "UserMetricsProperties": { "properties": { "key": { - "type" : "string", + "type": "string", "description": "The key returned by the User Metrics operation." } }, diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/Csm.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/Csm.json index b9a74fdbc55b..5d60d0900946 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/Csm.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/Csm.json @@ -894,13 +894,13 @@ "description": "The body of a Patch request to add tags to a Visual Studio account resource.", "type": "object", "properties": { - "tags": { + "tags": { "description": "The custom tags of the resource.", "type": "object", "additionalProperties": { "type": "string" } - } + } } }, "AccountResourceRequest": { @@ -1201,4 +1201,4 @@ "type": "string" } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CheckNameAvailability.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CheckNameAvailability.json index a5be10e06085..9c2d212b2e57 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CheckNameAvailability.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateExtensionResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateExtensionResource.json index 9fe6920a3d6b..2ac213d041f3 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateExtensionResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateExtensionResource.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateProjectResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateProjectResource.json index 846f2adc2355..364ea9634c36 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateProjectResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateProjectResource.json @@ -26,8 +26,8 @@ "location": "North Central US", "tags": {}, "properties": { - "AzureResourceName": "ExampleProject", - "TfsUniqueIdentifier": "vstfs:///Classification/TeamProject/7a4e6ba5-35bf-4667-86a4-9b598a88fa25" + "AzureResourceName": "ExampleProject", + "TfsUniqueIdentifier": "vstfs:///Classification/TeamProject/7a4e6ba5-35bf-4667-86a4-9b598a88fa25" } } }, @@ -38,4 +38,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateResource.json index a8e886c437bc..625065b03389 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/CreateResource.json @@ -25,7 +25,6 @@ } } }, - "404": { - } + "404": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/DeleteExtensionResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/DeleteExtensionResource.json index bca206e7733d..8544d9a8f125 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/DeleteExtensionResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/DeleteExtensionResource.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/DeleteResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/DeleteResource.json index a64eaa56fd8f..0bb058de5926 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/DeleteResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/DeleteResource.json @@ -6,7 +6,6 @@ "api-version": "2014-04-01-preview" }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetExtensionResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetExtensionResource.json index cc8752868373..474ac2001518 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetExtensionResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetExtensionResource.json @@ -9,23 +9,21 @@ "responses": { "200": { "body": { - "id": "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/ExampleAccount/extension/ms.example", - "name": "ms.example", - "type": "Microsoft.VisualStudio/account/extension", - "location": "Central US", - "tags": {}, - "properties": { - }, - "plan": { - "name": "ExamplePlan", - "publisher": "ExampleExtensionPublisher", - "product": "ExampleExtensionName", - "promotionCode": "", - "version": "1.0" - } + "id": "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/ExampleAccount/extension/ms.example", + "name": "ms.example", + "type": "Microsoft.VisualStudio/account/extension", + "location": "Central US", + "tags": {}, + "properties": {}, + "plan": { + "name": "ExamplePlan", + "publisher": "ExampleExtensionPublisher", + "product": "ExampleExtensionName", + "promotionCode": "", + "version": "1.0" + } } }, - "404": { - } + "404": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetExtensionResources_List.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetExtensionResources_List.json index 2401892ee1df..0a56fb49a996 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetExtensionResources_List.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetExtensionResources_List.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetOperations.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetOperations.json index bcbd5a6814af..9f28d11cfac0 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetOperations.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetOperations.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectJobStatus.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectJobStatus.json index 5f6ddec82e31..5d8bc66db30e 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectJobStatus.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectJobStatus.json @@ -18,12 +18,11 @@ "location": "North Central US", "tags": {}, "properties": { - "AzureResourceName": "ExampleProject", - "TfsUniqueIdentifier": "vstfs:///Classification/TeamProject/7a4e6ba5-35bf-4667-86a4-9b598a88fa25" + "AzureResourceName": "ExampleProject", + "TfsUniqueIdentifier": "vstfs:///Classification/TeamProject/7a4e6ba5-35bf-4667-86a4-9b598a88fa25" } } }, - "202": { - } + "202": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectResource.json index de82e89461af..e9dc5f624910 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectResource.json @@ -15,12 +15,11 @@ "location": "North Central US", "tags": {}, "properties": { - "AzureResourceName": "ExampleProject", - "TfsUniqueIdentifier": "vstfs:///Classification/TeamProject/7a4e6ba5-35bf-4667-86a4-9b598a88fa25" + "AzureResourceName": "ExampleProject", + "TfsUniqueIdentifier": "vstfs:///Classification/TeamProject/7a4e6ba5-35bf-4667-86a4-9b598a88fa25" } } }, - "404": { - } + "404": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectResources_List.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectResources_List.json index f03298e6d66b..dd372e22cb65 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectResources_List.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetProjectResources_List.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetResource.json index 86996c4ff992..3efb1a572862 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetResource.json @@ -8,17 +8,16 @@ "responses": { "200": { "body": { - "id": "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/Example", - "name": "VS-Example-Group", - "type": "Microsoft.VisualStudio/account", - "location": "Central US", - "tags": {}, - "properties": { - "AccountURL": "" - } + "id": "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/Example", + "name": "VS-Example-Group", + "type": "Microsoft.VisualStudio/account", + "location": "Central US", + "tags": {}, + "properties": { + "AccountURL": "" + } } }, - "404": { - } + "404": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetResources_List.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetResources_List.json index 75cda1318d8c..428792cd2775 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetResources_List.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/GetResources_List.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateExtensionResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateExtensionResource.json index 38b72c46d300..d05b8514cda4 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateExtensionResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateExtensionResource.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateProjectResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateProjectResource.json index ead3e5c04fa8..30738672c1bc 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateProjectResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateProjectResource.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateTags.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateTags.json index a4a1c9582eab..18eecbd0fec2 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateTags.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2014-04-01-preview/examples/UpdateTags.json @@ -1,27 +1,28 @@ { - "parameters": { - "body": { - "tags": {"tag1":"value1"} - }, - "subscriptionId": "0de7f055-dbea-498d-8e9e-da287eedca90", - "resourceGroupName": "VS-Example-Group", - "resourceName": "Example", - "api-version": "2014-04-01-preview" + "parameters": { + "body": { + "tags": { + "tag1": "value1" + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/Example", - "name": "VS-Example-Group", - "type": "Microsoft.VisualStudio/account", - "location": "Central US", - "tags": {}, - "properties": { - "AccountURL": "" - } + "subscriptionId": "0de7f055-dbea-498d-8e9e-da287eedca90", + "resourceGroupName": "VS-Example-Group", + "resourceName": "Example", + "api-version": "2014-04-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/Example", + "name": "VS-Example-Group", + "type": "Microsoft.VisualStudio/account", + "location": "Central US", + "tags": {}, + "properties": { + "AccountURL": "" } - }, - "404": { } - } - } \ No newline at end of file + }, + "404": {} + } +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/Csm.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/Csm.json index 19f27dc38ab9..f0102e923d44 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/Csm.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/Csm.json @@ -1348,4 +1348,4 @@ "type": "string" } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CheckNameAvailability.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CheckNameAvailability.json index a5be10e06085..9c2d212b2e57 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CheckNameAvailability.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CheckNameAvailability.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateExtensionResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateExtensionResource.json index 9fe6920a3d6b..2ac213d041f3 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateExtensionResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateExtensionResource.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateProjectResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateProjectResource.json index b1488b3ac23d..f86963283e9a 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateProjectResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateProjectResource.json @@ -85,4 +85,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateResource.json index a8e886c437bc..625065b03389 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/CreateResource.json @@ -25,7 +25,6 @@ } } }, - "404": { - } + "404": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/DeleteExtensionResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/DeleteExtensionResource.json index bca206e7733d..8544d9a8f125 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/DeleteExtensionResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/DeleteExtensionResource.json @@ -9,4 +9,4 @@ "responses": { "200": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/DeleteResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/DeleteResource.json index a64eaa56fd8f..0bb058de5926 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/DeleteResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/DeleteResource.json @@ -6,7 +6,6 @@ "api-version": "2014-04-01-preview" }, "responses": { - "200": { - } + "200": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetExtensionResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetExtensionResource.json index cc8752868373..474ac2001518 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetExtensionResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetExtensionResource.json @@ -9,23 +9,21 @@ "responses": { "200": { "body": { - "id": "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/ExampleAccount/extension/ms.example", - "name": "ms.example", - "type": "Microsoft.VisualStudio/account/extension", - "location": "Central US", - "tags": {}, - "properties": { - }, - "plan": { - "name": "ExamplePlan", - "publisher": "ExampleExtensionPublisher", - "product": "ExampleExtensionName", - "promotionCode": "", - "version": "1.0" - } + "id": "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/ExampleAccount/extension/ms.example", + "name": "ms.example", + "type": "Microsoft.VisualStudio/account/extension", + "location": "Central US", + "tags": {}, + "properties": {}, + "plan": { + "name": "ExamplePlan", + "publisher": "ExampleExtensionPublisher", + "product": "ExampleExtensionName", + "promotionCode": "", + "version": "1.0" + } } }, - "404": { - } + "404": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetExtensionResources_List.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetExtensionResources_List.json index 2401892ee1df..0a56fb49a996 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetExtensionResources_List.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetExtensionResources_List.json @@ -28,4 +28,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetOperations.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetOperations.json index bcbd5a6814af..9f28d11cfac0 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetOperations.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetOperations.json @@ -91,4 +91,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetProjectResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetProjectResource.json index 4c80741052c0..ed4270a0e2ad 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetProjectResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetProjectResource.json @@ -43,4 +43,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetProjectResources_List.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetProjectResources_List.json index 2f3476832edd..d12c9fff380d 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetProjectResources_List.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetProjectResources_List.json @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetResource.json index 86996c4ff992..3efb1a572862 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetResource.json @@ -8,17 +8,16 @@ "responses": { "200": { "body": { - "id": "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/Example", - "name": "VS-Example-Group", - "type": "Microsoft.VisualStudio/account", - "location": "Central US", - "tags": {}, - "properties": { - "AccountURL": "" - } + "id": "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/Example", + "name": "VS-Example-Group", + "type": "Microsoft.VisualStudio/account", + "location": "Central US", + "tags": {}, + "properties": { + "AccountURL": "" + } } }, - "404": { - } + "404": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetResources_List.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetResources_List.json index 75cda1318d8c..428792cd2775 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetResources_List.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/GetResources_List.json @@ -22,4 +22,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/UpdateExtensionResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/UpdateExtensionResource.json index 38b72c46d300..d05b8514cda4 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/UpdateExtensionResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/UpdateExtensionResource.json @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/UpdateProjectResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/UpdateProjectResource.json index 649b65aae37c..f8cb60e1aa5c 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/UpdateProjectResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2017-11-01-preview/examples/UpdateProjectResource.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/PipelineTemplates.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/PipelineTemplates.json index 0e716a6d8680..54e2c04d4a63 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/PipelineTemplates.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/PipelineTemplates.json @@ -168,4 +168,4 @@ "type": "string" } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/Projects.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/Projects.json index b6e86dd82480..140bf902f33e 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/Projects.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/Projects.json @@ -677,7 +677,7 @@ }, "properties": { "description": "Custom properties of project resource.", - "type": "object", + "type": "object", "properties": { "pipelineBootstrapConfigurations": { "description": "Bootstrap configurations for pipelines in Team Project.", @@ -715,4 +715,4 @@ "type": "string" } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/CreateProjectResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/CreateProjectResource.json index c507b9fdf1b0..d0bdde6c4ae3 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/CreateProjectResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/CreateProjectResource.json @@ -62,4 +62,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetPipelineTemplates_List.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetPipelineTemplates_List.json index 24dc5af80b8f..48b8131ce79d 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetPipelineTemplates_List.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetPipelineTemplates_List.json @@ -23,17 +23,17 @@ "description": "Pricing tier to use for creating app service plan.", "type": "string", "possibleValues": [ - { + { "value": "P1 Premium", - "DisplayValue": "P1 Premium (1 Core, 1.75 GB RAM)" + "DisplayValue": "P1 Premium (1 Core, 1.75 GB RAM)" }, - { + { "value": "S1 Standard", - "DisplayValue": "S1 Standard (1 Core, 1.75 GB RAM)" + "DisplayValue": "S1 Standard (1 Core, 1.75 GB RAM)" }, - { + { "value": "B1 Basic", - "DisplayValue": "B1 Basic (1 Core, 1.75 GB RAM)" + "DisplayValue": "B1 Basic (1 Core, 1.75 GB RAM)" } ] }, @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetProjectResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetProjectResource.json index ec88aa24f2a5..09ab2397b2cf 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetProjectResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetProjectResource.json @@ -26,7 +26,7 @@ "templateParameters": { "webAppName": "ExampleWebApp", "servicePlanTier": "Standard", - "azureAuth": null + "azureAuth": null } } ] @@ -35,4 +35,4 @@ }, "404": {} } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetProjectResources_List.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetProjectResources_List.json index 6dc0b4eb762e..f8f9b76da02b 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetProjectResources_List.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetProjectResources_List.json @@ -27,7 +27,7 @@ "templateParameters": { "webAppName": "ExampleWebApp", "servicePlanTier": "Standard", - "azureAuth": null + "azureAuth": null } } ] @@ -37,4 +37,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/UpdateProjectResource.json b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/UpdateProjectResource.json index 5572f446ccac..1386373d017f 100644 --- a/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/UpdateProjectResource.json +++ b/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/UpdateProjectResource.json @@ -46,7 +46,7 @@ "templateParameters": { "webAppName": "ExampleWebApp", "servicePlanTier": "Standard", - "azureAuth": null + "azureAuth": null } }, { @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2015-08-01/CertificateRegistrationProvider.json b/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2015-08-01/CertificateRegistrationProvider.json index 09cbda1a685f..4ed12ead6646 100644 --- a/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2015-08-01/CertificateRegistrationProvider.json +++ b/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2015-08-01/CertificateRegistrationProvider.json @@ -82,4 +82,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2015-08-01/examples/ListOperations.json b/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2015-08-01/examples/ListOperations.json index 545747ce4314..a8a600bde59c 100644 --- a/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2015-08-01/examples/ListOperations.json +++ b/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2015-08-01/examples/ListOperations.json @@ -1,184 +1,184 @@ { - "parameters": { - "api-version": "2015-08-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Write", - "display": { - "provider": "Microsoft Certificates", - "resource": "Certificate", - "operation": "Add or Update Certificate", - "description": "Add a new certificate or update an existing one" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/Write", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Add or Update AppServiceCertificate", - "description": "Add a new certificateOrder or update an existing one" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Delete", - "display": { - "provider": "Microsoft Certificates", - "resource": "Certificate", - "operation": "Delete Certificate", - "description": "Delete an existing certificate" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/Delete", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Delete AppServiceCertificate", - "description": "Delete an existing AppServiceCertificate" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/Read", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Get CertificateOrders", - "description": "Get the list of CertificateOrders" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Read", - "display": { - "provider": "Microsoft Certificates", - "resource": "Certificate", - "operation": "Get Certificates", - "description": "Get the list of certificates" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/reissue/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Reissue certificateorder", - "description": "Reissue an existing certificateorder" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/renew/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Renew certificateorder", - "description": "Renew an existing certificateorder" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/retrieveCertificateActions/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Certificateorder actions", - "description": "Retrieve the list of certificate actions" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/retrieveEmailHistory/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Certificateorder email history", - "description": "Retrieve certificate email history" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/resendEmail/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Resend Certificateorder email", - "description": "Resend certificate email" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/verifyDomainOwnership/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Verify domain ownership", - "description": "Verify domain ownership" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/resendRequestEmails/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Resend request emails to another email address", - "description": "Resend request emails to another email address" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/resendRequestEmails/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Retrieve site seal for an issued App Service Certificate", - "description": "Retrieve site seal for an issued App Service Certificate" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/provisionGlobalAppServicePrincipalInUserTenant/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Provision service principal", - "description": "Provision service principal for service app principal" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/validateCertificateRegistrationInformation/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Certificate Purchase Info Validation", - "description": "Validate certificate purchase object without submitting it" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/register/action", - "display": { - "provider": "Microsoft Certificates", - "resource": "Microsoft Certificates resource provider", - "operation": "Register Microsoft Certificates resource provider", - "description": "Register the Microsoft Certificates resource provider for the subscription" - }, - "origin": "user,system" - } - ] - } - } + "parameters": { + "api-version": "2015-08-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Write", + "display": { + "provider": "Microsoft Certificates", + "resource": "Certificate", + "operation": "Add or Update Certificate", + "description": "Add a new certificate or update an existing one" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/Write", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Add or Update AppServiceCertificate", + "description": "Add a new certificateOrder or update an existing one" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Delete", + "display": { + "provider": "Microsoft Certificates", + "resource": "Certificate", + "operation": "Delete Certificate", + "description": "Delete an existing certificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/Delete", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Delete AppServiceCertificate", + "description": "Delete an existing AppServiceCertificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/Read", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Get CertificateOrders", + "description": "Get the list of CertificateOrders" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Read", + "display": { + "provider": "Microsoft Certificates", + "resource": "Certificate", + "operation": "Get Certificates", + "description": "Get the list of certificates" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/reissue/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Reissue certificateorder", + "description": "Reissue an existing certificateorder" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/renew/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Renew certificateorder", + "description": "Renew an existing certificateorder" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/retrieveCertificateActions/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Certificateorder actions", + "description": "Retrieve the list of certificate actions" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/retrieveEmailHistory/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Certificateorder email history", + "description": "Retrieve certificate email history" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/resendEmail/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Resend Certificateorder email", + "description": "Resend certificate email" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/verifyDomainOwnership/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Verify domain ownership", + "description": "Verify domain ownership" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/resendRequestEmails/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Resend request emails to another email address", + "description": "Resend request emails to another email address" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/resendRequestEmails/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Retrieve site seal for an issued App Service Certificate", + "description": "Retrieve site seal for an issued App Service Certificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/provisionGlobalAppServicePrincipalInUserTenant/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Provision service principal", + "description": "Provision service principal for service app principal" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/validateCertificateRegistrationInformation/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Certificate Purchase Info Validation", + "description": "Validate certificate purchase object without submitting it" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/register/action", + "display": { + "provider": "Microsoft Certificates", + "resource": "Microsoft Certificates resource provider", + "operation": "Register Microsoft Certificates resource provider", + "description": "Register the Microsoft Certificates resource provider for the subscription" + }, + "origin": "user,system" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/AppServiceCertificateOrders.json b/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/AppServiceCertificateOrders.json index cfe50dee347c..c51936a83831 100644 --- a/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/AppServiceCertificateOrders.json +++ b/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/AppServiceCertificateOrders.json @@ -1647,4 +1647,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/CertificateRegistrationProvider.json b/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/CertificateRegistrationProvider.json index 32a903547902..7bde35c0976e 100644 --- a/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/CertificateRegistrationProvider.json +++ b/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/CertificateRegistrationProvider.json @@ -88,4 +88,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/examples/ListOperations.json b/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/examples/ListOperations.json index d9bf71e92ace..996ae614f7ec 100644 --- a/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/examples/ListOperations.json +++ b/specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2018-02-01/examples/ListOperations.json @@ -1,184 +1,184 @@ { - "parameters": { - "api-version": "2018-02-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Write", - "display": { - "provider": "Microsoft Certificates", - "resource": "Certificate", - "operation": "Add or Update Certificate", - "description": "Add a new certificate or update an existing one" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/Write", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Add or Update AppServiceCertificate", - "description": "Add a new certificateOrder or update an existing one" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Delete", - "display": { - "provider": "Microsoft Certificates", - "resource": "Certificate", - "operation": "Delete Certificate", - "description": "Delete an existing certificate" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/Delete", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Delete AppServiceCertificate", - "description": "Delete an existing AppServiceCertificate" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/Read", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Get CertificateOrders", - "description": "Get the list of CertificateOrders" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Read", - "display": { - "provider": "Microsoft Certificates", - "resource": "Certificate", - "operation": "Get Certificates", - "description": "Get the list of certificates" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/reissue/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Reissue certificateorder", - "description": "Reissue an existing certificateorder" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/renew/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Renew certificateorder", - "description": "Renew an existing certificateorder" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/retrieveCertificateActions/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Certificateorder actions", - "description": "Retrieve the list of certificate actions" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/retrieveEmailHistory/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Certificateorder email history", - "description": "Retrieve certificate email history" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/resendEmail/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Resend Certificateorder email", - "description": "Resend certificate email" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/verifyDomainOwnership/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Verify domain ownership", - "description": "Verify domain ownership" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/resendRequestEmails/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Resend request emails to another email address", - "description": "Resend request emails to another email address" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/certificateOrders/resendRequestEmails/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Retrieve site seal for an issued App Service Certificate", - "description": "Retrieve site seal for an issued App Service Certificate" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/provisionGlobalAppServicePrincipalInUserTenant/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Provision service principal", - "description": "Provision service principal for service app principal" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/validateCertificateRegistrationInformation/Action", - "display": { - "provider": "Microsoft Certificates", - "resource": "AppServiceCertificate", - "operation": "Certificate Purchase Info Validation", - "description": "Validate certificate purchase object without submitting it" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.CertificateRegistration/register/action", - "display": { - "provider": "Microsoft Certificates", - "resource": "Microsoft Certificates resource provider", - "operation": "Register Microsoft Certificates resource provider", - "description": "Register the Microsoft Certificates resource provider for the subscription" - }, - "origin": "user,system" - } - ] - } - } + "parameters": { + "api-version": "2018-02-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Write", + "display": { + "provider": "Microsoft Certificates", + "resource": "Certificate", + "operation": "Add or Update Certificate", + "description": "Add a new certificate or update an existing one" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/Write", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Add or Update AppServiceCertificate", + "description": "Add a new certificateOrder or update an existing one" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Delete", + "display": { + "provider": "Microsoft Certificates", + "resource": "Certificate", + "operation": "Delete Certificate", + "description": "Delete an existing certificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/Delete", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Delete AppServiceCertificate", + "description": "Delete an existing AppServiceCertificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/Read", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Get CertificateOrders", + "description": "Get the list of CertificateOrders" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/certificates/Read", + "display": { + "provider": "Microsoft Certificates", + "resource": "Certificate", + "operation": "Get Certificates", + "description": "Get the list of certificates" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/reissue/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Reissue certificateorder", + "description": "Reissue an existing certificateorder" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/renew/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Renew certificateorder", + "description": "Renew an existing certificateorder" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/retrieveCertificateActions/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Certificateorder actions", + "description": "Retrieve the list of certificate actions" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/retrieveEmailHistory/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Certificateorder email history", + "description": "Retrieve certificate email history" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/resendEmail/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Resend Certificateorder email", + "description": "Resend certificate email" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/verifyDomainOwnership/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Verify domain ownership", + "description": "Verify domain ownership" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/resendRequestEmails/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Resend request emails to another email address", + "description": "Resend request emails to another email address" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/certificateOrders/resendRequestEmails/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Retrieve site seal for an issued App Service Certificate", + "description": "Retrieve site seal for an issued App Service Certificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/provisionGlobalAppServicePrincipalInUserTenant/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Provision service principal", + "description": "Provision service principal for service app principal" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/validateCertificateRegistrationInformation/Action", + "display": { + "provider": "Microsoft Certificates", + "resource": "AppServiceCertificate", + "operation": "Certificate Purchase Info Validation", + "description": "Validate certificate purchase object without submitting it" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.CertificateRegistration/register/action", + "display": { + "provider": "Microsoft Certificates", + "resource": "Microsoft Certificates resource provider", + "operation": "Register Microsoft Certificates resource provider", + "description": "Register the Microsoft Certificates resource provider for the subscription" + }, + "origin": "user,system" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/DomainRegistrationProvider.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/DomainRegistrationProvider.json index ab1c4240f2f1..9946500ccabb 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/DomainRegistrationProvider.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/DomainRegistrationProvider.json @@ -82,4 +82,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/Domains.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/Domains.json index ec768049c2c8..d9f25cbd56c9 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/Domains.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/Domains.json @@ -1402,4 +1402,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/GetTopLevelDomain.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/GetTopLevelDomain.json index d534fef13d60..7720473e022e 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/GetTopLevelDomain.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/GetTopLevelDomain.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "api-version": "2015-04-01", - "name": "com" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", - "name": "com", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "location": "global", - "properties": { - "name": "com", - "privacy": true - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "api-version": "2015-04-01", + "name": "com" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", + "name": "com", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "location": "global", + "properties": { + "name": "com", + "privacy": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListOperations.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListOperations.json index 669b6a6dc1e2..6a3b39b7c7d8 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListOperations.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListOperations.json @@ -1,104 +1,104 @@ { - "parameters": { - "api-version": "2015-04-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "name": "Microsoft.DomainRegistration/domains/Read", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain", - "operation": "Get Domains", - "description": "Get the list of domains" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/domains/Write", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain", - "operation": "Add or Update Domain", - "description": "Add a new Domain or update an existing one" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/domains/Delete", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain", - "operation": "Delete Domain", - "description": "Delete an existing domain." - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/domains/operationresults/Read", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain operation", - "operation": "Get Domain Operation", - "description": "Get a domain operation" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/generateSsoRequest/Action", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain Control Center Single Sign On Request", - "operation": "Generate Domain Control Center Single Sign On Request", - "description": "Generate a request for signing into domain control center." - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/validateDomainRegistrationInformation/Action", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain Validation", - "operation": "Domain Purchase Info Validation", - "description": "Validate domain purchase object without submitting it" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/checkDomainAvailability/Action", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain Availability Result", - "operation": "Check Domain Availability", - "description": "Check if a domain is available for purchase" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/listDomainRecommendations/Action", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain Recommendations", - "operation": "Retrieve Domain Recommendations", - "description": "Retrieve the list domain recommendations based on keywords" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/register/action", - "display": { - "provider": "Microsoft Domains", - "resource": "Microsoft Domains resource provider", - "operation": "Register Microsoft Domains resource provider", - "description": "Register the Microsoft Domains resource provider for the subscription" - }, - "origin": "user,system" - } - ] - } - } + "parameters": { + "api-version": "2015-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "name": "Microsoft.DomainRegistration/domains/Read", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain", + "operation": "Get Domains", + "description": "Get the list of domains" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/domains/Write", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain", + "operation": "Add or Update Domain", + "description": "Add a new Domain or update an existing one" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/domains/Delete", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain", + "operation": "Delete Domain", + "description": "Delete an existing domain." + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/domains/operationresults/Read", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain operation", + "operation": "Get Domain Operation", + "description": "Get a domain operation" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/generateSsoRequest/Action", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain Control Center Single Sign On Request", + "operation": "Generate Domain Control Center Single Sign On Request", + "description": "Generate a request for signing into domain control center." + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/validateDomainRegistrationInformation/Action", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain Validation", + "operation": "Domain Purchase Info Validation", + "description": "Validate domain purchase object without submitting it" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/checkDomainAvailability/Action", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain Availability Result", + "operation": "Check Domain Availability", + "description": "Check if a domain is available for purchase" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/listDomainRecommendations/Action", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain Recommendations", + "operation": "Retrieve Domain Recommendations", + "description": "Retrieve the list domain recommendations based on keywords" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/register/action", + "display": { + "provider": "Microsoft Domains", + "resource": "Microsoft Domains resource provider", + "operation": "Register Microsoft Domains resource provider", + "description": "Register the Microsoft Domains resource provider for the subscription" + }, + "origin": "user,system" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListTopLevelDomainAgreements.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListTopLevelDomainAgreements.json index fc377af99e72..81471b97aca3 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListTopLevelDomainAgreements.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListTopLevelDomainAgreements.json @@ -1,28 +1,28 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "in", - "api-version": "2015-04-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "agreementKey": "DNRA", - "title": "Domain Name Registration Agreement", - "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Registration Agreement\n
\n

Last Revised: October 6, 2017

\n

PLEASE READ THIS AGREEMENT CAREFULLY, AS IT CONTAINS IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS AND REMEDIES.

\r\n

1. OVERVIEW

\r\n

This Domain Name Registration Agreement (this \"Agreement\") is entered into by and between 510456, an individual (\"Azure\") and you, and is made effective as of the date of electronic acceptance.  This Agreement sets forth the terms and conditions of your use of Azure's Domain Name Registration services (the \"Domain Name Registration Services\" or the \"Services\"). The terms \"we\", \"us\" or \"our\" shall refer to Azure.  The terms \"you\", \"your\", \"User\" or \"customer\" shall refer to any individual or entity who accepts this Agreement.  Unless otherwise specified, nothing in this Agreement shall be deemed to confer any third-party rights or benefits.

\r\n

Your electronic acceptance of this Agreement signifies that you have read, understand, acknowledge and agree to be bound by this Agreement, which incorporates by reference each of (i) Azure’s Universal Terms of Service Agreement (\"UTOS\"), (ii) all agreements, guidelines, policies, practices, procedures, registration requirements or operational standards of the top-level domain (\"TLD\") in which you register any domain (“Registry Policies”), and (iii) any plan limits, product disclaimers or other restrictions presented to you on the Domain Name Registration Services landing page of the Azure website (this “Site”). 

\r\n

TO LINK TO AND REVIEW THE REGISTRY POLICIES FOR THE TLD IN WHICH YOU WISH TO REGISTER A DOMAIN NAME, PLEASE CLICK HERE   

\r\n

You acknowledge and agree that (i) Azure, in its sole and absolute discretion, may change or modify this Agreement, and any policies or agreements which are incorporated herein, at any time, and such changes or modifications shall be effective immediately upon posting to this Site, and (ii) your use of this Site or the Services found at this Site after such changes or modifications have been made shall constitute your acceptance of this Agreement as last revised.  If you do not agree to be bound by this Agreement as last revised, do not use (or continue to use) this Site or the Services found at this Site.  In addition, Azure may occasionally notify you of changes or modifications to this Agreement by email.  It is therefore very important that you keep your shopper account (“Shopper Account”) information, including your email address, current.  Azure assumes no liability or responsibility for your failure to receive an email notification if such failure results from an inaccurate or out-of-date email address.    Azure is not an Internet Corporation for Assigned Names and Numbers (\"ICANN\") accredited registrar; it is an authorized reseller of domain name registration services.  Accordingly, you acknowledge and agree that Azure may modify this Agreement in order to comply with any terms and conditions set forth by (i) the sponsoring registrar, (ii) ICANN, and/or (iii) the registry applicable to the TLD or country code top level domain (\"ccTLD\") in question.  As used herein, the terms \"registry\", \"Registry\", \"registry operator\" or \"Registry Operator\" shall refer to the registry applicable to the TLD or ccTLD in question.  To identify the sponsoring registrar, click here

\r\n

2. PROVISIONS SPECIFIC TO ALL REGISTRATIONS

\r\n

Unless otherwise noted, the provisions below in this Section 2 are generally applicable to all TLDs that we offer.  Special provisions specific to any TLD or ccTLD (those in addition to posted Registry Policies) are identified elsewhere below in this Agreement. 

\r\n
    \r\n
  1. \r\n
    Registry Policies. You agree to be bound by all Registry Policies (defined above in this Agreement) applicable to your domain name registration (at any level). IT IS YOUR RESPONSIBILITY TO VISIT THE APPLICABLE TLD SITE AND READ AND REVIEW ALL APPLICABLE REGISTRY POLICIES PRIOR TO YOUR REGISTRATION IN THE TLD.  REGISTRY POLICIES FOR EACH TLD CAN BE FOUND BY VISITING THE CORRESPONDING TLD LINK LISTED HERE.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator of the TLD in which the domain name registration is made is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the respective TLD. The third party beneficiary rights of the Registry Operator will survive any termination of this Agreement.    
    \r\n
  2. \r\n
  3. \r\n
    Registration Requirements.  To the extent any TLD or ccTLD requires you meet eligibility (e.g., residency for .JP, .EU, etc.), validation (e.g., DNS validation) or other authentication requirements as a condition to registering a domain name in the TLD, you agree that by submitting an application or registering or renewing your domain name, you represent and warrant that: (a) all information provided to register or renew the domain name (including all supporting documents, if any) is true, complete and correct, and is not misleading in any way, and the application is made in good faith; (b) you meet, and will continue to meet, the eligibility criteria prescribed in the Registry Policies for the applicable TLD for the duration of the domain name registration; (c) you have not previously submitted an application for the domain name with another registrar using the same eligibility criteria, and the other registrar has rejected the application (if applicable); (d) you acknowledge and agree that even if the domain name is accepted for registration, your entitlement to register the domain name may be challenged by others who claim to have an entitlement to the domain name; and (e) you acknowledge and agree that the Registry or the registrar can cancel the registration of the domain name if any of the warranties required are found to be untrue, incomplete, incorrect or misleading.
    \r\n
  4. \r\n
  5. \r\n
    Ownership.  You acknowledge and agree that registration of a domain name does not create any proprietary right for you, the registrar, or any other person in the name used as a domain name or the domain name registration and that the entry of a domain name in the Registry shall not be construed as evidence or ownership of the domain name registered as a domain name. You shall not in any way transfer or purport to transfer a proprietary right in any domain name registration or grant or purport to grant as security or in any other manner encumber or purport to encumber a domain name registration.
    \r\n
  6. \r\n
  7. \r\n
    ICANN Requirements. You agree to comply with the ICANN requirements, standards, policies, procedures, and practices for which each applicable Registry Operator has monitoring responsibility in accordance with the Registry Agreement between ICANN and itself or any other arrangement with ICANN.
    \r\n
  8. \r\n
  9. \r\n
    Indemnification of Registry.  You agree to indemnify, defend and hold harmless (within 30 days of demand) the Registry Operator and Registry Service Provider and their subcontractors, subsidiaries, affiliates, divisions, shareholders, directors, officers, employees, accountants, attorneys, insurers, agents, predecessors, successors and assigns, from and against any and all claims, demands, damages, losses, costs, expenses, causes of action or other liabilities of any kind, whether known or unknown, including reasonable legal and attorney’s fees and expenses, in any way arising out of, relating to, or otherwise in connection with the your domain name registration, including, without limitation, the use, registration, extension, renewal, deletion, and/or transfer thereof and/or the violation of any applicable terms or conditions governing the registration. You shall not enter into any settlement or compromise of any such indemnifiable claim without Registrar’s or Registry Operator’s prior written consent, which consent shall not be unreasonably withheld, and you agree that these indemnification obligations shall survive the termination or expiration of the Agreement for any reason.  IN NO EVENT SHALL THE REGISTRY OPERATOR BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, EXEMPLARY OR PUNITIVE DAMAGES, INCLUDING LOSS OF PROFIT OR GOODWILL, FOR ANY MATTER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE), BREACH OF WARRANTIES, EITHER EXPRESS OR IMPLIED, ANY BREACH OF THIS AGREEMENT OR ITS INCORPORATED AGREEMENTS AND POLICIES YOUR INABILITY TO USE THE DOMAIN NAME, YOUR LOSS OF DATA OR FILES OR OTHERWISE, EVEN IF THE REGISTRY OPERATOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    \r\n
  10. \r\n
  11. \r\n
    Regulated TLDs.   For domain name registration in any “Regulated” TLD, you acknowledge and agree your registration is subject to the following additional requirements: (a) comply with all applicable laws, including those that relate to privacy, data collection, consumer protection (including in relation to misleading and deceptive conduct), fair lending, debt collection, organic farming, disclosure of data, and financial disclosures; (b) if you collect and maintain sensitive health and financial data you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  Regulated TLDs include: .games, .juegos, .school, .schule, .toys, .eco, .care, .diet, .fitness, .health, .clinic, .dental, .healthcare, .capital, .cash, .broker, .claims, .exchange, .finance, .financial, .fund, .investments, .lease, .loans, .market, .money, .trading, .credit, .insure, .tax, .mortgage, .degree, .mba, .audio, .book, .broadway, .film, .movie, .music, .software, .fashion, .video, .app, .art, .band, .cloud, .data, .digital, .fan, .free, .gratis, .discount, .sale, .media, .news, .online, .pictures, .radio, .show, .theater, .tours, .accountants, .architect, .associates, .broker, .legal, .realty, .vet, .engineering, .law, .limited, .show; .theater; .town, .city, .reise, and .reisen
    \r\n
  12. \r\n
  13. \r\n
    Highly Regulated TLDs. In addition to the requirements for Regulated TLDs, domain name registration in any Highly-Regulated TLD is subject to the following requirements: (a) you will provide administrative contact information, which must be kept up‐to‐date, for the notification of complaints or reports of registration abuse, as well as the contact details of the relevant regulatory, or Industry self‐regulatory, bodies in their main place of business; (b) you represent that you possess any necessary authorizations, charters, licenses and/or other related credentials for participation in the sector associated with such Highly‐regulated TLD; and (c) you will report any material changes to the validity of you authorizations, charters, licenses and/or other related credentials for participation in the sector associated with the Highly‐regulated TLD to ensure you continue to conform to the appropriate regulations and licensing requirements and generally conduct your activities in the interests of the consumers they serve.  Highly Regulated TLDs include: .abogado, .attorney, .bank, .bet, .bingo, .casino .charity (and IDN equivalent xn--30rr7y), .cpa, .corp, creditcard, .creditunion .dds, .dentist, .doctor, .fail, .gmbh, .gripe, .hospital, .inc, .insurance, .lawyer, .lifeinsurance, .llc, .llp, .ltda, .medical, .mutuelle, .pharmacy, .poker, .university, .sarl, .spreadbetting, .srl, .sucks, .surgery .university, .vermogensberater, .vesicherung,  and .wtf.  For .doctor, registrants who hold themselves out to be licensed medical practitioners must be able to demonstrate to the Registrar and Registry, upon request, that they hold the applicable license.
    \r\n
  14. \r\n
  15. \r\n
    Special Safeguard TLDs.  In addition to the requirements for Regulated and Highly-Regulated TLDs, by registering a domain name in any “Special-Safeguard” TLD, you agree to take reasonable steps to avoid misrepresenting or falsely implying that you or your business is affiliated with, sponsored or endorsed by one or more country's or government's military forces if such affiliation, sponsorship or endorsement does not exist.  Special Safeguard TLDs include:  .army, .navy, .airforce
    \r\n
  16. \r\n
  17. \r\n
    Third Party Beneficiary.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator for any TLD in which your register a domain name is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the TLD. Third party beneficiary rights of the Registry Operator shall survive any termination of this Agreement.
    \r\n
  18. \r\n
  19. \r\n
    Variable and Non-Uniform Pricing.  You acknowledge, understand and agree that certain domain names in certain TLDs are established by Registry Policies to be variably priced (i.e., standard v. premium names) and/or may have non-uniform renewal registration pricing (such that the Fee for a domain name registration renewal may differ from other domain names in the same TLD, e.g., renewal registration for one domain may be $100.00 and $33.00 for a different domain name).
    \r\n
  20. \r\n
  21. \r\n
    Restriction on Availability of Privacy or Proxy.  You acknowledge and agree that, as dictated by the Registry Policies, for certain TLDs you may not be permitted to purchase private or proxy TLD registrations. In such case, you must register for any and all TLD registrations using your personal information, which information you represent and warrant is current, accurate and complete.
    \r\n
  22. \r\n
\r\n

3. FEES AND PAYMENTS

\r\n

(A) GENERAL TERMS, INCLUDING AUTOMATIC RENEWAL TERMS

\r\n

You agree to pay any and all prices and fees due for Services purchased or obtained at this Site at the time you order the Services.  Azure expressly reserves the right to change or modify its prices and fees at any time, and such changes or modifications shall be posted online at this Site and effective immediately without need for further notice to you.  If you have purchased or obtained Services for a period of months or years, changes or modifications in prices and fees shall be effective when the Services in question come up for renewal as further described below. 

\r\n

Unless otherwise specifically noted (for reasons such as those highlighted in Section 2(x) above), the renewal price for any domain name in any TLD will be the same as the list (non-sale) price shown when you search for and select a domain, and again in the cart prior to purchase.  For example, if the list price is $9.99, and a different renewal price is not specifically identified, then the renewal price is also $9.99.  Likewise, if a domain name has a sale price of $8.99, with the list (non-sale) price shown (as a strike-through) at $9.99, the renewal price will be $9.99*.  

\r\n

*Renewal price subject to change prior to actual date of renewal. 

\r\n

For all other terms and conditions relating to fees, payment, refund and billing, etc. applicable to the Services offered under the scope of this Agreement, please refer to the “Fees and Payments” section of our UTOS

\r\n

(B) DOMAIN NAME RENEWAL TERMS

\r\n

When you register a domain name, you will have two renewal options: (i) \"Automatic Renewal\" (ii) \"Extended Automatic Renewal\", and (iii) \"Manual Renewal\": 

\r\n
    \r\n
  1. Automatic Renewal.  Automatic Renewal is the default setting. Therefore, unless you select Extended Automatic Renewal, Azure will enroll you in Automatic Renewal.  Domain names will automatically renew, for a period equivalent to the length of your original domain name registration, any domain name that is up for renewal and will take payment from the Payment Method you have on file with Azure, at Azure's then current rates. Thus, if you have chosen to register your domain name for one (1) year, Azure will automatically renew it for one (1) year. If you have chosen to register your domain name for two (2) years, Azure will automatically renew it for two (2) years, and so on.
  2. \r\n
  3. Extended Automatic Renewal.  If you enroll in the Extended Automatic Renewal plan, Azure will automatically renew any domain name that is up for renewal for an additional one-year period on each and every anniversary of your domain name registration, so the initial registration period will always remain intact.  Thus, if you have chosen to register your domain name for two (2) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your two (2) year registration period will always remain intact. If you have chosen to register your domain name for five (5) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your five (5) year registration period will always remain intact, and so on.  Azure will take payment from the Payment Method you have on file with Azure, at Azure's then current one-year domain name registration rate.
  4. \r\n
  5. Manual Renewal.  If you have elected to turn off automatic renewal and cancel the product (i.e., cancel the domain name registration) effective at expiration of the then current term, you may nonetheless elect to manually renew the domain name at anytime prior to its expiration date by logging into your Account Manager and manually implementing the renewal or by calling customer service (should you in fact want the domain name to be renewed). If you fail to manually implement the renewal before the expiration date, the domain name will be cancelled and you will no longer have use of that name.
  6. \r\n
\r\n

All renewals will be subject to the terms of this Agreement, as it may be amended from time to time, and you acknowledge and agree to be bound by the terms of this Agreement (as amended) for all renewed domains.  Domain name renewals will be non-refundable. In the event that we are unable to automatically renew your domain name for the renewal option selected for any reason, we may automatically renew your domain name for a period less than your original registration period to the extent necessary for the transaction to succeed. If for any reason Azure is not able to take the payment from the Payment Method you have on file, and you fail to respond to our notices, your domain name registration will expire. It is your responsibility to keep your Payment Method information current, which includes the expiration date if you are using a credit card.

\r\n

For certain ccTLDs (.am, .at, .be, .br, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal billing will occur on the first day of the month prior to the month of expiration.

\r\n

For certain ccTLDs (.am, .at, .be, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal will occur, or must occur manually if the product was previously cancelled, no later than the 20th of the month prior to the expiration date, or your domain name will be placed in non-renewal status. For some ccTLDs (.es) renewal must be processed no later than seven days before the expiration date, or your domain name will be placed in non-renewal status.  When the domain name is in non-renewal status, you can renew the domain name only by calling Azure and requesting that the domain name be renewed. You cannot renew the domain name through your Account Manager. If you fail to manually implement the renewal of any cancelled product before the expiration date, the domain name will be cancelled and you will no longer have use of that name.

\r\n

You agree that Azure will not be responsible for cancelled domain names that you fail to renew in the timeframes indicated in this Agreement. In any case, if you fail to renew your domain name in a timely fashion, additional charges may apply. If you signed up for privacy services, protected registration, or any other similar service, with your domain name registration, these services will automatically be renewed when your domain name registration is up for renewal, and you will incur the applicable additional renewal fee unless you cancel in advance. 

\r\n

If you fail to renew your domain name in the timeframes indicated in this Agreement, you agree that Azure may, in its sole discretion, renew your expired domain name on your behalf. If Azure decides to renew your expired domain name on your behalf, you will have a Renewal Grace Period during which you may reimburse Azure for the renewal and keep your domain name. The Renewal Grace Period is currently twelve (12) days but subject to change under the terms of this Agreement. For certain ccTLDs (.am, .at, .be, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg) there is no Renewal Grace Period after the expiration date of the domain name. If you do not reimburse Azure for the renewal during the Renewal Grace Period your domain name will be placed on Hold and flagged for deletion after which you will have a 30-day redemption period during which you may pay Azure a Redemption fee and redeem your domain name. The Redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the 30-day redemption period Azure may, in its sole discretion, delete your domain name or transfer it to another registrant on your behalf.  During the redemption period your domain name may be parked. 

\r\n

If your domain name is deleted, the Registry also provides a 30-day Redemption Grace Period during which you may pay Azure a redemption fee and redeem your domain name. The redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the Registry's Redemption Grace Period the Registry will release your name and it will become available for registration on a first-come-first-served basis.

\r\n

Renewal Grace Periods and Redemption Grace Periods vary for different ccTLDs. Please refer to the specific terms for the applicable TLD. In the event there is a conflict between the provisions of this paragraph and the ccTLD terms, the ccTLD terms shall control.

\r\n

\r\n

Our registration expiration notification policy and associated fees are described here.

\r\n

\r\n

\r\n

(C) FREE PRODUCT TERMS

\r\n

In the event you are provided with free products with the registration of a domain name, you acknowledge and agree that such free products will only be available with a valid purchase and may be terminated in the event the domain name is deleted or cancelled.  For free domain names, you acknowledge and agree that you may not change the account associated with such free domain for the first five (5) days after registration.  In the event a free domain name is offered with the registration of another domain and if the paid domain name registered fails, then we may, in its sole discretion, either delete the registration of the free domain or refund the difference between the amount paid and the value of the free domain.  Failed registrations associated with promotionals offers may result in the deletion of the free or discounted item or an adjustment between the registered domain price and the value of the discounted item, in our sole discretion.

\r\n

4. TERM OF AGREEMENT; TRANSFERS; DOMAIN TASTING

\r\n

The term of this Agreement shall continue in full force and effect as long as you have any domain name registered through Azure.

\r\n

You agree that you will not transfer any domain name registered through Azure to another domain name registrar during the first sixty (60) days after its initial registration date.  You agree that you may not transfer any domain name for ten (10) days after a Change of Account.

\r\n

You further agree that you will not engage in \"domain tasting\" by using the five (5) day grace period in which a registrant may choose to cancel a domain name and get a full refund of the registration fee as a vehicle to test the marketability or viability of a domain name.  If Azure determines (which determination shall be made by Azure in its sole and absolute discretion) that you have been engaging in \"domain tasting\", then Azure reserves the right to (a) charge you a small fee (which fee shall be deducted from any refund issued) or (b) refuse your cancellation/refund request altogether. Azure will not charge you a fee if Azure cancels your domain name during the five (5) day grace period due to fraud or other activity outside of your control. The five (5) day grace period does not apply to Premium Domains, which are non-refundable.

\r\n

You agree that Azure shall not be bound by (i) any representations made by third parties who you may use to purchase services from Azure, or (ii) any statements of a general nature, which may be posted on Azure's website or contained in Azure's promotional materials.

\r\n

5. UP TO DATE INFORMATION; USE OF INFORMATION AND EXPIRATION

\r\n

You agree to notify Azure within five (5) business days when any of the information you provided as part of the application and/or registration process changes. It is your responsibility to keep this information in a current and accurate status. Failure by you, for whatever reason, to provide Azure with accurate and reliable information on an initial and continual basis, shall be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. Failure by you, for whatever reason, to respond within five (5) business days to any inquiries made by Azure to determine the validity of information provided by you, shall also be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. You agree to retain a copy for your record of the receipt for purchase of your domain name.

\r\n

You agree that for each domain name registered by you, the following contact data is required: postal address, email address, telephone number, and if available, a facsimile number for the Registered Name Holder and, if different from the Registered Name Holder, the same contact information for, a technical contact, an administrative contact and a billing contact.

\r\n

You acknowledge and agree that domain name registration requires that this contact information, in whole or in part, be shared with the registry operator, for their use, copying, distribution, publication, modification and other processing  for (among other uses in accordance with our Privacy Policy) the purpose of administration of the domain name registration, which may require such information be transferred back and forth across international borders, to and from the U.S. to the EU, for example. As required by ICANN, this information must also be made publicly available by means of Whois, and that the registry operator may also be required to make this information publicly available by Whois. Both Azure and the registry operator may be required to archive this information with a third-party escrow service. You hereby consent and give permission for all such requirements and disclosures. Further, you represent and warrant that, if you are providing information about a third party, you have notified the third party of the disclosure and the purpose for the disclosure and you have obtained the third party's consent to such disclosure.  Registrar will not process data in a way that is incompatible with this Agreement.  Registrar will take reasonable precautions to protect data from loss or misuse.

\r\n

You agree that for each domain name registered by you the following information will be made publicly available in the Whois directory as determined by ICANN Policy and may be sold in bulk as set forth in the ICANN agreement:

\r\n
    \r\n
  • The domain name;
  • \r\n
  • Your name and postal address;
  • \r\n
  • The name, email address, postal address, voice and fax numbers for technical and administrative contacts;
  • \r\n
  • The Internet protocol numbers for the primary and secondary name servers;
  • \r\n
  • The corresponding names of the name servers; and
  • \r\n
  • The original date of registration and expiration date.
  • \r\n
  • Name of primary name server and secondary name server.
  • \r\n
  • Identity of the registrar.
  • \r\n
\r\n

You agree that, to the extent permitted by ICANN, Azure may make use of the publicly available information you provided during the registration process. If you engage in the reselling of domain names you agree to provide any individuals whose personal information you've obtained, information about the possible uses of their personal information pursuant to ICANN policy. You also agree to obtain consent, and evidence of consent, from those individuals for such use of the personal information they provide.

\r\n

You agree that Azure has the right to make public and share with third parties certain information in connection with the sale or purchase of domain names on the website, including but not limited to (a) the name of the domain name sold or purchased, (b) the sale or purchase price of the domain name sold or purchased, and (c) information relating to the timing of the sale or purchase.

\r\n

\r\n

In order for us to comply with any current or future rules and policies for domain name systems including any rules or policies established by the CIRA or any provincial or federal government or by other organization having control or authority to establish rules or policies, you hereby grant to us the right to disclose to third parties through an interactive publicly accessible registration database the following information that you are required to provide when applying for a domain name:

\r\n
    \r\n
  1. The domain or sub-domain name(s) registered by you;
  2. \r\n
  3. Your organization name, type and postal address;
  4. \r\n
  5. The name(s), position(s), postal address(es), e-mail address(es), voice telephone number(s) and where available the fax number(s) of the technical and administrative contacts for your domain or sub-domain name(s);
  6. \r\n
  7. The full hostnames and Internet protocol (IP) addresses of at least two (2) name server hosts (one primary and at least one secondary) for your domain or sub-domain name. Up to six (6) name servers may be specified. If a host has more than one (1) IP address, use a comma-separated list;
  8. \r\n
  9. The corresponding names of those name servers;
  10. \r\n
  11. The original creation date of the registration; and
  12. \r\n
  13. The expiration date of the registration.
  14. \r\n
\r\n

We may be required to make this information available in bulk form to third parties. We may also transfer or assign this information to CIRA or such other third party as we may decide, in our sole discretion.

\r\n

6. DISPUTE RESOLUTION POLICY

\r\n

You agree to be bound by our current Dispute Resolution Policy. This policy is incorporated herein and made a part of this Agreement. You can view the Uniform Domain Name Dispute Resolution Policy online. You agree that Azure may from time to time modify its Dispute Resolution Policy. Azure will post any changes to its Dispute Resolution Policy at least thirty (30) days before they become effective. You agree that by maintaining your domain name registrations with Azure after the updated policy becomes effective that you agree to the Dispute Resolution policy as amended. You agree to review Azure's website periodically to determine if changes have been made to the Dispute Resolution Policy. If you cancel or terminate your Services with Azure as a result of the modified Dispute Resolution policy, no fees will be refunded to you. You also agree to submit to proceedings commenced under ICANN's Uniform Rapid Suspension System, if applicable. 

\r\n

You agree that if a dispute arises as a result of one (1) or more domain names you have registered using Azure, you will indemnify, defend and hold Azure harmless as provided for in this Agreement. You also agree that if Azure is notified that a complaint has been filed with a governmental, administrative or judicial body, regarding a domain name registered by you using Azure, that Azure, in its sole discretion, may take whatever action Azure deems necessary regarding further modification, assignment of and/or control of the domain name deemed necessary to comply with the actions or requirements of the governmental, administrative or judicial body until such time as the dispute is settled. In this event you agree to hold Azure harmless for any action taken by Azure.

\r\n

You agree to submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of your domicile, (2) where registrar is located or (3) where the registry operator is located (e.g., China for .CN, Columbia for .CO, UK for .EU, etc.).

\r\n

\r\n

In the case of .ca domain names, you agree that, if your use of the service or the registration of a .ca domain name is challenged by a third party, you will be subject to the provisions specified by CIRA in their dispute resolution policy, in effect at the time of the dispute.

\r\n

\r\n

7. TRANSFER OF DOMAIN NAMES; RESALE PRACTICES

\r\n

If you transfer any domain name, you agree to provide the information required by, and to abide by, the procedures and conditions set forth in our Domain Name Transfer Agreement and Change of Registrant Agreement. You may view the latest versions of our Domain Name Transfer Agreement and Change of Registrant Agreementonline. In order to further protect your domain name, any domain name registered with Azure or transferred to Azure shall be placed on lock status, unless an opted-out has occurred as defined in our Change of Registrant Agreement or Domain Name Proxy Agreement. The domain name must be placed on unlock status in order to initiate a transfer of the domain name away from Azure to a new Registrar. You may log into your account with Azure at any time after your domain name has been successfully transferred to Azure, and change the status to unlock.

\r\n

In the event you are purchasing a domain name on behalf of a third party, you agree to inform any customer of yours, who may be acquiring a domain name through you using Azure's registration services, that they are in fact registering their domain name through Azure and that Azure or its licensor is an accredited registrar with ICANN. You agree not to represent that you are an ICANN-accredited registrar or that you are in any way providing superior access to the ICANN Domain Name Registry. You also agree not to use the ICANN trademark logo in any of your promotional materials including your website.

\r\n

You agree to obtain each of your customers' acceptances to the then current version of this Agreement, and to retain evidence of their acceptance for a period of not less than three (3) years. Should you require that your customers accept additional terms and conditions that are not required by Azure, you agree that such additional terms and conditions shall not conflict with this Agreement and the policies and procedures adopted by ICANN.

\r\n

You agree that Azure is not lending you access to its registrar connections or its registry access, nor will you be deemed to be a registrar in your own right. Furthermore, you agree you will not attempt to gain access to Azure's registrar connections or registry access. You agree to provide complete, accurate and current data for each registrant to be added to a registry in accordance with ICANN requirements for inclusion in the Whois database.

\r\n

You agree to provide your customers with adequate customer support, and to maintain contact with them with regard to providing a medium for them to communicate changes in the information they provided as part of the domain name registration process. Upon receiving corrected or updated information you will, within five (5) business days, provide such information to Azure so Azure may update its registration records. You will retain copies of all communications between you and your customers and will upon request provide Azure copies of same.

\r\n

8. YOUR OBLIGATIONS; SUSPENSION OF SERVICES; BREACH OF AGREEMENT

\r\n

You represent and warrant to the best of your knowledge that, neither the registration of the domain nor the manner it is directly or indirectly used, infringes the legal rights of any third party.  You will comply with all applicable laws, including, but not limited to those relating to privacy, data collection, consumer protection, fair lending, debt collection, organic farming, and disclosure of data and financial disclosures.  If you collect and maintain sensitive health and financial data, you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  You represent that you possess any necessary authorization, charter, license, and/or other related credential for participation in the sector associated with the associated registry tld string.  You will report any material changes to the validity of your authorization, charter, license, and/or other related credential. You will indemnify and hold harmless the registrar and registry operator, and their directors, officers, employees and agents, from and against any and all claims, damages, liabilities, costs and expenses (including reasonable legal fees and expenses) arising out of or related to the domain name registration.  This obligation shall survive expiration or termination of this Agreement or the domain name registration.

\r\n

You agree that, in addition to other events set forth in this Agreement:

\r\n
    \r\n
  1. Your ability to use any of the services provided by Azure is subject to cancellation or suspension in the event there is an unresolved breach of this Agreement and/or suspension or cancellation is required by any policy now in effect or adopted later by ICANN;
  2. \r\n
  3. Your registration of any domain names shall be subject to suspension, cancellation or transfer pursuant to any ICANN adopted specification or policy, or pursuant to any Azure procedure not inconsistent with an ICANN adopted specification or policy (a) to correct mistakes by Azure or the registry operator in registering any domain name; or (b) for the resolution of disputes concerning any domain name.
  4. \r\n
\r\n

You acknowledge and agree that Azure and registry reserve the right to deny, cancel or transfer any registration or transaction, or place any domain name(s) on registry lock, hold or similar status, as either deems necessary, in the unlimited and sole discretion of either Azure or the registry: (i) to comply with specifications adopted by any industry group generally recognized as authoritative with respect to the Internet (e.g., RFCs), (ii) to correct mistakes made by registry or any registrar in connection with a domain name registration, (iii) for the non-payment of fees to registry, (iv) to protect the integrity and stability of the registry, (v) to comply with any applicable court orders, laws, government rules or requirements, requests of law enforcement, or any dispute resolution process, (vi) to comply with any applicable ICANN rules or regulations, including without limitation, the registry agreement, (vii) to avoid any liability, civil or criminal, on the part of registry operator, as well as its affiliates, subsidiaries, officers, directors, and employees, (viii) per the terms of this Agreement, (ix) following an occurrence of any of the prohibited activities described in Section 8 below, or (x) during the resolution of a dispute.

\r\n

You agree that your failure to comply completely with the terms and conditions of this Agreement and any Azure rule or policy may be considered by Azure to be a material breach of this Agreement and Azure may provide you with notice of such breach either in writing or electronically (i.e. email). In the event you do not provide Azure with material evidence that you have not breached your obligations to Azure within ten (10) business days, Azure may terminate its relationship with you and take any remedial action available to Azure under the applicable laws. Such remedial action may be implemented without notice to you and may include, but is not limited to, cancelling the registration of any of your domain names and discontinuing any services provided by Azure to you. No fees will be refunded to you should your Services be cancelled or terminated because of a breach.

\r\n

Azure's failure to act upon or notify you of any event, which may constitute a breach, shall not relieve you from or excuse you of the fact that you have committed a breach.

\r\n

9. RESTRICTION OF SERVICES; RIGHT OF REFUSAL

\r\n

You agree not to use the services provided by Azure, or to allow or enable others, to use the services provided by Azure for the purposes of:

\r\n
    \r\n
  • The transmission of unsolicited email (Spam); and
  • \r\n
  • Repetitive, high volume inquires into any of the services provided by Azure (i.e. domain name availability, etc.).
  • \r\n
\r\n

You acknowledge and agree that you are prohibited from distributing malware, abusively operating botnets, phishing, piracy, trademark or copyright infringement, fraudulent or deceptive practices, counterfeiting or otherwise engaging in activity contrary to applicable law, and you acknowledge and agree that the consequences for such activities include suspension of the domain name.

\r\n

If you are hosting your domain name system (“DNS”) on Azure’s servers, or are using our systems to forward a domain name, URL, or otherwise to a system or site hosted elsewhere, or if you have your domain name registered with Azure, you are responsible for ensuring there is no excessive overloading on Azure’s servers. You may not use Azure’s servers and your domain name as a source, intermediary, reply to address, or destination address for mail bombs, Internet packet flooding, packet corruption, or other abusive attack. Server hacking or other perpetration of security breaches is prohibited. You agree that Azure reserves the right to deactivate your domain name from its DNS if Azure deems it is the recipient of activities caused by your site that threaten the stability of its network.

\r\n

You agree that Azure, in its sole discretion and without liability to you, may refuse to accept the registration of any domain name. Azure also may in its sole discretion and without liability to you delete the registration of any domain name during the first thirty (30) days after registration has taken place. Azure may also cancel the registration of a domain name, after thirty (30) days, if that name is being used, as determined by Azure in its sole discretion, in association with spam or morally objectionable activities. Morally objectionable activities will include, but not be limited to:

\r\n
    \r\n
  • Activities prohibited by the laws of the United States and/or foreign territories in which you conduct business;
  • \r\n
  • Activities designed to encourage unlawful behavior by others, such as hate crimes, terrorism and child pornography; and
  • \r\n
  • Activities designed to harm or use unethically minors in any way.
  • \r\n
\r\n

In the event Azure refuses a registration or deletes an existing registration during the first thirty (30) days after registration, you will receive a refund of any fees paid to Azure in connection with the registration either being cancelled or refused. In the event Azure deletes the registration of a domain name being used in association with spam or morally objectionable activities, no refund will be issued.

\r\n

10. DEFAULT SETTINGS; PARKED PAGE

\r\n

Choosing Your Domain Name Settings.  When you register a domain name with Azure, you will be prompted to choose your domain name settings during the checkout process.  If you plan on using another provider for your website or hosting needs, then you should enter the name servers of such provider when you choose your domain name settings.  This will direct your domain name away from Azure’s name servers.  If you are an existing Azure customer and have already set up a customer profile designating your domain name settings for new domain name registrations, you will not need to complete this step again during the checkout process.   

\r\n

Azure’s Default Settings.  If you do not direct your domain name away from Azure’s name servers as described above, Azure will direct your domain name to a “Parked Page” (“Default Setting”).  You acknowledge and agree that Azure has the right to set the Default Setting. 

\r\n

Parked Page Default Setting.  Azure’s Parked Page service is an online domain monetization system designed to generate revenue (through the use of pay per click advertising) from domain names that are not actively being used as websites.  If your domain name is directed to a Parked Page, you acknowledge and agree that Azure may display both (a) in-house advertising (which includes links to Azure products and services) and (b) third-party advertising (which includes links to third-party products and services) on your Parked Page through the use of pop-up or pop-under browser windows, banner advertisements, audio or video streams, or any other advertising means, and we may aggregate for our own use, related usage data by means of cookies and other similar means.  In addition, you acknowledge and agree that all in-house and third-party advertising will be selected by Azure and its advertising partners, as appropriate, and you will not be permitted to customize the advertising, or entitled to any compensation in exchange therefor.  Please note that the third-party advertising displayed on Azure’s Parked Pages may contain content offensive to you, including but not limited to links to adult content.  Azure makes no effort to edit, control, monitor, or restrict the content and third-party advertising displayed on Azure’s Parked Pages, and expressly disclaims any liability or responsibility to you or any third party in connection therewith.

\r\n

Changing Azure’s Default Settings.  You may change Azure’s Default Settings at any time during the term of your domain name registration.

\r\n
    \r\n
  1. Content Displaying On Your Parked Page.  You can not modify the content displaying on your Parked Page.  You may select one of the other options listed below.
  2. \r\n
  3. Participating In Domain Name Monetization.  If you wish to participate in the domain monetization potential presented by Azure’s Parked Page service, please review and consider purchasing our CashParking® service.   
  4. \r\n
  5. No Content.  If the options listed above are not acceptable to you, please contact customer support to learn what other options might be available to you.
  6. \r\n
\r\n

Return To Parked Page Default Setting Upon Domain Name Expiration.  Upon domain name expiration, and regardless of how you use your domain name during the term of your domain name registration, your domain name will automatically return to the Parked Page Default Setting described above.  As used in this paragraph, “expiration” is deemed to include any “renewal period” or “redemption period” immediately after the domain name expires, but before the domain name is returned to the registry.  Once your domain name has returned to the Parked Page Default Setting described above, the only way to opt out of the Parked Page service is to renew, redeem, or re-register your domain name in accordance with Section 2(B), Domain Name Renewal Terms, of this Agreement.   

\r\n

11. DOMAIN ADD-ONS

\r\n

Business Registration:  Business registration allows You to display additional information about the business that is the basis of Your domain name, including, but not limited to, such information as Your fax number, street address, and hours of operation.

\r\n

Certified Domains.  The certified domain service generally allow You to: (i) put a Certified Domain Validation seal on Your website; and (ii) have Your domain name listed as \"Certified\", in WHOIS lookups on our website.   The Certified Domain Validation seal renews independently of Your domain. When You renew Your domain, You must also, when necessary, separately renew Your Certified Validation seal. However, the Certified Domain Validation seal can be cancelled independently of Your domain. If the domain is cancelled, the Certified Domain associated with the cancelled domain will automatically cancel.  The Certified Domain seal is a trademark and is protected by copyright, trademark and other intellectual property laws. You may use the Certified Domain seal only in conjunction with the purchase of the Services set forth in the Agreement, and subject to the terms and conditions hereof. Other than provided for in this Agreement, You may not otherwise use, reproduce, or modify the mark for any additional promotional use, without our prior written approval. Your right to the use of the Certified Domain seal is immediately terminated upon expiration or termination of this Agreement.

\r\n

Expiration Consolidation.  You understand and acknowledge the expiration consolidation service may only be used to consolidate the expiration of .com and .net domain names. The service may not be used to consolidate domains that are on Registrar HOLD, Registry HOLD, or pending Transfer status. You acknowledge the service may only be used to push the expiration date of Your domains forward in time, at least one (1) month forward and no more than ten (10) years forward, and then, only for a period lasting less than twelve (12) months. Once the service has been used to consolidate domains, the new expiration date may not be reversed. To ensure the service is not abused or used as an alternative to renewals, you may only use the service on each domain once in any 12-month period. The service may only be used on domain names that have not passed their expiration date. In order to change the expiration date again, You will be required to renew the domain name first.  You further understand and acknowledge the service may only be used to coordinate domains where we are the registrar of record. Domains not registered with us must be transferred before we can perform the Service. 

\r\n

\r\n

Backordering/Monitoring.  You agree a domain name that has expired shall be subject first to a grace period of twelve (12) days, followed by the ICANN-mandated redemption grace period of thirty (30) days. During this period of time, the current domain name registrant may renew the domain name and retain ownership. We do not guarantee your backorder will result in you obtaining the domain name and expressly reserves the right to (a) refuse additional backorders or (b) cancel existing backorders at any time for any reason.  If your backorder is refused or cancelled, we agree to promptly refund any fees paid for such domain name backorder. The domain name may also be placed in a secondary market for resale through the Auctions® service.  After your first year of Auctions membership, you agree that unless otherwise advised, we will automatically renew your Auctions membership using the payment method you have on file for so long as your backorder credit is active. You may learn more about Auctions by visiting the Auctions website. The domain name may also be subject to a drop pool process before it is available for purchasing. You understand we and our registrar affiliates use our services, including backordering.  Therefore, the domain name may be registered with a different registrar, but can be managed through your account.  By using the Services, you will be able to, among other things:

\r\n
    \r\n
  1. Backorder any domain name under the top level domains .COM, .NET, .US, .BIZ, .INFO, .ORG, .MOBI. A backorder for a domain name will include the price of up to a one-year domain name registration. Should you successfully backorder any domain name, you will be subject to the terms and conditions of the Domain Name Registration and related agreements, which are incorporated herein by reference.
  2. \r\n
  3. Change your backorder until you obtain a domain name. You will have the opportunity to change the credit to a different domain name until you successfully capture one. After three (3) years, if the credit is not used, we reserves the right to remove the credit.
  4. \r\n
  5. Subscribe monthly to an expiring domain name list. You may also choose to purchase a subscription to a list of domain names expiring within the next five (5) days. If you subscribe to the expiring domain name list, you agree the payment method you have on file may be charged on a monthly subscription basis for the term of the Services you purchase.
  6. \r\n
  7. Select domain names off the expiring domain name list you would like to register. Each domain name you attempt to backorder will include the price of up to a one-year domain name registration, as set forth in subsection (i) above.
  8. \r\n
  9. Monitor your currently registered domain names for changes in registrar, status, expiration date or name servers at no additional cost.
  10. \r\n
  11. Subscribe to Domain Alert Pro or monitoring, which enables you to monitor any currently registered domain name, regardless of registrar, for historical tracking of status changes and designation of multiple email notification addresses.
  12. \r\n
\r\n

\r\n

\r\n

Transfer Validation. The transfer validation service is provided to help You keep Your domain name secure. By choosing to use the service, You are making an explicit and voluntary request to us to deny all attempts to transfer Your domain name to another registrar, or to move Your domain name to another account, unless You verify each request as described herein. You will provide us with a contact name, phone number and PIN for domain transfer validations. You will be contacted by us when a domain transfer is requested for a domain name in Your account. When we receive a transfer request, we will call You to verify the transfer request. If we cannot reach You with seventy-two (72) hours of receipt of the transfer request, the transfer will be denied. If You do not provide the proper PIN, the transfer will be denied. When we receive a change of account request, we will call You to verify the change request. If we cannot reach You with seventy-two (72) hours of receipt of the change request, the change will be denied. If You do not provide the proper PIN, the change will be denied. Availability of Services are subject to the terms and conditions of this Agreement and each of our policies and procedures. We shall use commercially reasonable efforts to attempt to provide certain portions of the Services on a twenty-four (24) hours a day, seven (7) days a week basis throughout the term of this Agreement and other portions of the service, during normal business hours. You acknowledge and agree that from time to time the Services may be inaccessible or inoperable for any reason, including, without limitation: (i) equipment malfunctions; (ii) periodic maintenance procedures or repairs that we may undertake from time to time; or (iii) causes beyond the reasonable control of us or that are not reasonably foreseeable by us, including, without limitation, interruption or failure of telecommunication or digital transmission links, hostile network attacks, network congestion or other failures. You acknowledge and agree that we has no control over the availability of the service on a continuous or uninterrupted basis.

\r\n

\r\n

12. PRE-REGISTRATIONS

\r\n

If you submit an application for pre-registration of a domain name, Azure does not guarantee that the name will be secured for you, or that you will have immediate access to the domain name if secured.  Azure may use third-party service providers for the pre-registration services.

\r\n

13. PROVISIONS SPECIFIC TO .BIZ REGISTRATIONS

\r\n

Domain Name Dispute Policy.  If you reserved or registered a .BIZ domain name through us, in addition to our Dispute Resolution Policy, you hereby acknowledge that you have read and understood and agree to be bound by the terms and conditions of the Restrictions Dispute Resolution Policy applicable to the .biz TLD.

\r\n

The RDRP sets forth the terms under which any allegation that a domain name is not used primarily for business or commercial purposes shall be enforced on a case-by-case basis by an independent ICANN-accredited dispute provider. Registry Operator will not review, monitor, or otherwise verify that any particular domain name is being used primarily for business or commercial purposes or that a domain name is being used in compliance with the SUDRP or UDRP processes.

\r\n

One Year Registration.  If you are registering a .BIZ domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .BIZ domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .BIZ domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

\r\n

14. PROVISIONS SPECIFIC TO .INFO REGISTRATIONS 

\r\n

One Year Registration.  If you are registering a .INFO domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .INFO domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .INFO domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

15. PROVISIONS SPECIFIC TO .MOBI REGISTRATIONS 

\r\n

Instant Mobilizer. You are hereby granted a personal, revocable, non-exclusive, non-transferable, non-assignable, non-sublicensable license to use the Instant Mobilizer service (“Service”), provided, however, You abide by the terms and conditions set forth. You shall not alter, modify, adapt or translate the whole or part of the Service in any way whatsoever. You may not create derivative works based on the Service. You may not rent, lease, assign, dispose of, novate, sub-license or otherwise transfer any of its rights to use the Service to any third party.  In the event that the volume of traffic to You from Your use of the Service is sufficient so as to jeopardize the provision of Service for other end users, we and our licensors reserve the right to, at its sole discretion, permanently or temporarily, discontinue Your use of the Service. For the avoidance of doubt, the volume of traffic generated by You should not exceed two thousand (2,000) page views per day.  You acknowledge and agree the text \"Instant Mobilizer from dotMobi\" or equivalent, will be inserted at the footer of Your site.  In the event a dotMobi domain to which the Service is being provided is transferred to another domain name registrar, the Service will be interrupted on that dotMobi domain, and Service will not be restored if the new registrar does not offer the Service. 

\r\n

\r\n

16. PROVISIONS SPECIFIC TO .NAME REGISTRATIONS 

\r\n

\r\n

17. PROVISIONS SPECIFIC TO .REISE REGISTRATIONS

\r\n

Domain Names registered in .REISE should be used for purposes dedicated to travel topics within six months following initial Registration, e.g. utilized on the Internet or otherwise used to perform a function.

\r\n

18. PROVISIONS SPECIFIC TO .SEXY REGISTRATIONS

\r\n

You shall not permit content unsuitable for viewing by a minor to be viewed from the main or top-level directory of a .SEXY domain name. For purposes of clarity, content viewed at the main or top-level directory of a .SEXY domain name is the content immediately visible if a user navigates to http://example.sexy or http://www.example.sexy. No restrictions apply to the content at any other page or subdirectory addressed by a .SEXY Registered Name. 

\r\n

19. COUNTRY CODE TOP LEVEL DOMAINS

\r\n

You represent and warrant that you meet the eligibility requirements of each ccTLD you apply for. You further agree to be bound by any registry rules, policies, and agreements for that particular ccTLD. These may include, but are not limited to, agreeing to indemnify the ccTLD provider, limiting the liability of the ccTLD provider, and requirements that any disputes be resolved under that particular country's laws.

\r\n

(A) PROVISIONS SPECIFIC TO .AU REGISTRATIONS 

\r\n

.au Registrations (to include com.au, net.au and org.au) are governed by the following additional terms and conditions:

\r\n

auDA. auDA means .au Domain Administration Limited ACN 079 009 340, the .au domain names administrator.  The Registrar acts as agent for auDA for the sole purpose, but only to the extent necessary, to enable auDA to receive the benefit of rights and covenants conferred to it under this Agreement. auDA is an intended third party beneficiary of this agreement.

\r\n

auDA Published Policy.  auDA Published Policies means those specifications and policies established and published by auDA from time to time at http://www.auda.org.au.  You must comply with all auDA Published Policies, as if they were incorporated into, and form part of, this Agreement. In the event of any inconsistency between any auDA Published Policy and this Agreement, then the auDA Published Policy will prevail to the extent of such inconsistency.  You acknowledge that under the auDA Published Policies: (1) there are mandatory terms and conditions that apply to all domain names; (2) licences, and such terms and conditions are incorporated into, and form part of, this Agreement; (3) You are bound by, and must submit to, the .au Dispute Resolution Policy; and (4) auDA may delete or cancel the registration of a .au domain name. 

\r\n

auDA's Liabilities and Indemnity.  To the fullest extent permitted by law, auDA will not be liable to Registrant for any direct, indirect, consequential, special, punitive or exemplary losses or damages of any kind (including, without limitation, loss of use, loss or profit, loss or corruption of data, business interruption or indirect costs) suffered by Registrant arising from, as a result of, or otherwise in connection with, any act or omission whatsoever of auDA, its employees, agents or contractors. Registrant agrees to indemnify, keep indemnified and hold auDA, its employees, agents and contractors harmless from all and any claims or liabilities, arising from, as a result of, or otherwise in connection with, Registrant's registration or use of its .au domain name. Nothing in this document is intended to exclude the operation of Trade Practices Act 1974.

\r\n

(B) PROVISIONS SPECIFIC TO .CA REGISTRATIONS

\r\n

You acknowledge and agree that registration of your selected domain name in your first application to CIRA shall not be effective until you have entered into and agreed to be bound by CIRA's Registrant Agreement.

\r\n

CIRA Certified Registrar.  The registrar shall immediately give notice to you in the event that it is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated, or the Registrar Agreement between CIRA and the Registrar is terminated or expires. CIRA may post notice of such suspension, termination, or expiry on its website and may, if CIRA deems appropriate, give notice to the registrants thereof. In the event that the registrar is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated or in the event the Registrar Agreement between CIRA and the Registrar is terminated or expires, you shall be responsible for changing your Registrar of Record to a new CIRA Certified Registrar within thirty (30) days of the earlier of notice thereof being given to you by (i) the Registrar or (ii) CIRA in accordance with CIRA's then current Registry PRP; provided, however, that if any of your domain name registrations are scheduled to expire within thirty (30) days of the giving of such notice, then you shall have thirty (30) days from the anniversary date of the registration(s), to register with a new CIRA certified registrar and to renew such domain name registration(s) in accordance with the Registry PRP.

\r\n

You acknowledge and agree that should there be insufficient funds prepaid by the registrar in the CIRA Deposit Account to be applied in payment of any fees, CIRA may in its sole discretion stop accepting applications for domain name registrations from the registrar, stop effecting registrations of domain names and transfers, renewals, modifications, and cancellations requested by the registrar and stop performing other billable transactions requested by the registrar not paid in full and CIRA may terminate the Registrar Agreement between CIRA and the Registrar.

\r\n

.CA ASCII and IDN domain variants are bundled and reserved for a single registrant.  Registrants are not required to register all variants in a bundle, but all registered variants must be registered and managed at a single registrar. Each variant registered will incur a registration fee.  In addition, when registering multiple .CA domain (ASCII and IDN) variants in a bundle, your registrant information must be identical.  If variants are registered at other registrars or if registrant information does not match, it may result in an \"unavailable\" search result, delayed or failed registration. If information does not match, validation is required and may take up to seven business days and delay availability of domain. 

\r\n

(C) PROVISIONS SPECIFIC TO .CN REGISTRATIONS 

\r\n

.CN is a restricted TLD – applications are subject to both a domain name check and real name verification as required by the People’s Republic of China.  Registrations in .CN are therefore subject to the following additional terms:

\r\n

Verification, Registration and Activation.  If a domain name is not permitted to be registered by the Chinese government, as determined by us, the Registry Operator and/or a 3rd party provider utilized for such services and determinations, in either party’s discretion, the application for registration will not be successful.  In such event, the name will be deleted and you will be eligible for a refund as further described below.

\r\n

If permitted, then the Registration may proceed, but a .CN domain name may not be activated (i.e., it will not resolve in the Internet) unless and until you have submitted (via the process described during registration) valid documents required of us and the Registry to perform real name verification.  The following are acceptable forms of documents for the purpose of verification:

\r\n
    \r\n
  • China: Resident ID, temporary resident ID, business license or organization code certificate
  • \r\n
  • Hong Kong/Macau: Resident ID, driver’s license, passport or business license
  • \r\n
  • Singapore: Driver’s license, passport or business license
  • \r\n
  • Taiwan: Resident ID, driver’s license or business license
  • \r\n
  • Other Countries/Regions: Driver’s license or passport
  • \r\n
\r\n

Documents submitted to us are used by us and shared with the Registry solely for the purpose of real name verification, and are otherwise subject to our Privacy Policy.  By registering a .CN domain, you expressly agree that your data may be stored on servers in the U.S., or otherwise outside of the People's Republic of China.

\r\n

Refunds.  Refunds for .CN Registrations will only be allowed where (i) registration of the applied for domain name is not permitted by the Chinese government; or (ii) you notify us of your intent to cancel for any reason within the first five (5) days after the Registration (i.e., after it is deemed permissible by the Chinese government).  For the avoidance of doubt, refunds will not be permitted under any circumstances after five (5) days from the date of Registration, including, for example, in the event real name verification is not successful or if the Chinese government determines after Registration that the domain name should not have been registered (and directs us to delete).

\r\n

(D) PROVISIONS SPECIFIC TO .JP REGISTRATIONS

\r\n

Registration Restrictions.  You represent and warrant that you have a local presence in Japan with a home or office address. You agree that certain domain names are reserved and can only be registered by certain parties. These include: (i) TLDs, other than ccTLDs, as determined by ICANN; (ii) geographical-type .JP domain names that are defined as metropolitan, prefectural, and municipal labels; (iii) names of primary and secondary educational organizations; (iv) names of organizations related to Internet management; (v) names required for .JP domain name operations; and (vi) character strings which may be confused with ASCII-converted Japanese domain names. The complete list of .JP Reserved Domains is available here

\r\n

20. ENGLISH LANGUAGE CONTROLS

\r\n

This Agreement, along with all policies and the applicable product agreements identified above and incorporated herein by reference (collectively, the “Agreement”), is executed in the English language. To the extent any translation is provided to you, it is provided for convenience purposes only, and in the event of any conflict between the English and translated version, where permitted by law, the English version will control and prevail. Where the translated version is required to be provided to you and is to be considered binding by law (i) both language versions shall have equal validity, (ii) each party acknowledges that it has reviewed both language versions and that they are substantially the same in all material respects, and (iii) in the event of any discrepancy between these two versions, the translated version may prevail, provided that the intent of the Parties has been fully taken into consideration. 

\n
\n
\n\nRevised: 10/6/17
\nCopyright © 2000-2017 All Rights Reserved.\n
\n
\n
", - "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=reg_sa&pl_id=510456" - }, - { - "agreementKey": "DNPA", - "title": "Domain Name Proxy Agreement", - "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Proxy Agreement\n
\n

Last Revised: October 25, 2017

\n

Please read this Domain Name Proxy Agreement (\"Agreement\") carefully. By using the Services and/or website of Domains By Proxy, LLC, a Delaware limited liability company (\"DBP\"), You (as defined below) agree to all the terms and conditions set forth both herein and in the DBP privacy policy, which is incorporated by reference and can be found by clicking here.  You acknowledge that DBP may amend this Agreement at any time upon posting the amended terms on its website, and that any new, different or additional features changing the services provided by DBP will automatically be subject to this Agreement. If You do not agree to be bound by, or if You object to, the terms and conditions of this Agreement and any amendments hereto, do not use or access DBP's services. Continued use of DBP's services and its website after any such changes to this Agreement have been posted, constitutes Your acceptance of those changes.

\r\n

This Agreement is by and between DBP and you, your heirs, assigns, agents and contractors (\"You\") and is made effective as of the date of electronic execution. This Agreement sets forth the terms and conditions of Your relationship with DBP and Your use of DBP's services and represents the entire Agreement between You and DBP. By using DBP's Services, You acknowledge that You have read, understand and agree to be bound by all the terms and conditions of this Agreement, and You further agree to be bound by the terms of this Agreement for transactions entered into by:

\r\n
    \r\n
  1. You on Your behalf;
  2. \r\n
  3. Anyone acting as Your agent; and
  4. \r\n
  5. Anyone who uses the account You have established with DBP, whether or not the transactions were on Your behalf and/or authorized by You.
  6. \r\n
\r\n

You agree You will be bound by representations made by third parties acting on Your behalf, which either use or purchase services from DBP. You further agree that DBP will not be bound by statements of a general nature on DBP's website or DBP promotional materials. You further agree to abide by the terms and conditions promulgated by the Internet Corporation for Assigned Names and Numbers (\"ICANN\") (including the Uniform Domain Name Dispute Resolution Policy (\"Dispute Resolution Policy\") and Your Registrar (i.e., the ICANN-accredited person or entity through which You register a domain name).

\r\n

1. description of DBP's private registration services

\r\n

When You subscribe to DBP's private registration service through a DBP-affiliated Registrar, DBP will display its contact information in the publicly available \"Whois\" directory in place of Your information. DBP shall keep Your name, postal address, email address, phone and fax numbers confidential, subject to Section 4 of this Agreement. The following information (and not Your personal information) will be made publicly available in the \"Whois\" directory as determined by ICANN policy:

\r\n
    \r\n
  1. DBP's name as the proxy Registrant of the domain name and a proxy email address, phone number and postal address for the proxy Registrant's contact information;
  2. \r\n
  3. A proxy postal address and phone number for the domain name registration's technical contact;
  4. \r\n
  5. A proxy email address, postal address and phone number for the domain name registration's administrative contact;
  6. \r\n
  7. A proxy email address, postal address and phone number for the domain's name registration's billing contact;
  8. \r\n
  9. The primary and secondary domain name servers You designate for the domain name;
  10. \r\n
  11. The domain name's original date of registration and expiration date of the registration; and
  12. \r\n
  13. The identity of the Registrar.
  14. \r\n
\r\n

2. full benefits of domain registration retained by you

\r\n

Although DBP will show in the \"Whois\" directory as the Registrant of each domain name registration You designate, You will retain the full benefits of domain name registration with respect to each such domain name registration, including, subject to Section 4 below:

\r\n
    \r\n
  1. The right to sell, transfer or assign each domain name registration, which shall require cancellation of the DBP services associated with each such domain name registration;
  2. \r\n
  3. The right to control the use of each domain name registration, including designating the primary and secondary domain name servers to which each domain name points;
  4. \r\n
  5. The right to cancel each domain name registration;
  6. \r\n
  7. The right to cancel the DBP services associated with each domain name registration and/or Your privacy services with DBP so that Your contract information is listed in the \"Whois\" directory; and
  8. \r\n
  9. The right to renew each domain name registration upon its expiration, subject to Your Registrar's applicable rules and policies.
  10. \r\n
\r\n

3. PERSONAL INFORMATION AND your notification obligations; representation and warranties; ACCOUNT SECURITY

\r\n

Personal Information and Your Notification Obligations 

\r\n

You agree that for each domain name for which you use DBP services, You will provide accurate and current information as to:

\r\n
    \r\n
  1. Your name, the email address, postal address, phone and fax numbers for the domain name registration's Registrant contact;
  2. \r\n
  3. The email address, postal address, phone and fax numbers for the domain name registration's technical contact;
  4. \r\n
  5. The email address, postal address, phone and fax numbers for the domain name registration's administrative contact;
  6. \r\n
  7. The email address, postal address, phone and fax numbers for the domain name registration's billing contact; and
  8. \r\n
  9. You agree to provide government issued photo identification and/or government issued business identification as required for verification of identity when requested.
  10. \r\n
\r\n

You agree to:

\r\n
    \r\n
  1. Notify DBP within three (3) calendar days when any of the personal information You provided upon subscribing to DBP's services, changes;
  2. \r\n
  3. Respond within three (3) calendar days to any inquiries made by DBP to determine the validity of personal information provided by You; and
  4. \r\n
  5. Timely respond to email messages DBP sends to You regarding correspondence DBP has received that is either addressed to or involves You and/or Your domain name registration, as more fully set forth in Section 5(c) below.
  6. \r\n
  7. To allow DBP to act as your Designated Agent (as that term is defined below) in instances when DBP services are added to or cancelled from your domain name and for the purpose of facilitating a change of registrant request (as further described below). 
  8. \r\n
\r\n

It is Your responsibility to keep Your personal information current and accurate at all times.

\r\n

Renewals

\r\n

You agree DBP will arrange for Your Registrar to charge the credit card You have on file with the Registrar, at the Registrar's then current rates.

\r\n

If for any reason DBP and/or the Registrar for Your domain name is unable to charge Your credit card for the full amount of the service provided, or if DBP and/or the Registrar is charged back for any fee it previously charged to the credit card You provided, You agree that DBP and/or the Registrar may, without notice to You, pursue all available remedies in order to obtain payment, including but not limited to immediate cancellation of all services DBP provides to You.

\r\n

Representations and Warranties

\r\n

You warrant that all information provided by You to DBP is truthful, complete, current and accurate. You also warrant that You are using DBP's private registration services in good faith and You have no knowledge of Your domain name infringing upon or conflicting with the legal rights of a third party or a third party's trademark or trade name. You also warrant the domain name being registered by DBP on Your behalf will not be used in connection with any illegal activity, or in connection with the transmission of Spam, or that contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable or, disrupting, damaging or limiting the functionality of any software or hardware.

\r\n

Account Security

\r\n

You agree You are entirely responsible for maintaining the confidentiality of Your customer number/login ID and password (\"Account Access Information\").  You agree to notify DBP immediately of any unauthorized use of Your account or any other breach of security.  You agree DBP will not be liable for any loss that You may incur as a result of someone else using Your Account Access Information, either with or without Your knowledge.  You further agree You could be held liable for losses incurred by DBP or another party due to someone else using Your Account Access Information.  For security purposes, You should keep Account Access Information in a secure location and take precautions to prevent others from gaining access to Your Account Access Information.  You agree that You are entirely responsible for all activity in Your account, whether initiated by You, or by others.  DBP specifically disclaims liability for any activity in Your account, regardless of whether You authorized the activity.

\r\n

Designated Agency and Change of Registrant Information

\r\n

“DESIGNATED AGENT” MEANS AN INDIVIDUAL OR ENTITY THAT THE PRIOR REGISTRANT OR NEW REGISTRANT EXPLICITLY AUTHORIZES TO APPROVE A CHANGE OF REGISTRANT REQUEST ON ITS BEHALF.  IN THE CASE OF DBP SERVICES, A CHANGE OF REGISTRANT REQUEST MAY ALSO ARISE DUE TO INSTANCES WHERE DBP SERVICES ARE ADDED, OR REMOVED, FROM A DOMAIN NAME.  FOR THE PURPOSE OF FACILITATING ANY SUCH CHANGE REQUEST, AND IN ACCORDANCE WITH ICANN'S CHANGE OF REGISTRANT POLICY, YOU AGREE TO APPOINT DBP AS YOUR DESIGNATED AGENT FOR THE SOLE PURPOSE OF EXPLICITLY CONSENTING TO MATERIAL CHANGES OF REGISTRATION CONTACT INFORMATION ON YOUR BEHALF.

\r\n

4. DBP's rights to deny, suspend, terminate service and to disclose your personal information

\r\n

You understand and agree that DBP has the absolute right and power, in its sole discretion and without any liability to You whatsoever, to:

\r\n
    \r\n
  1. Cancel the privacy service (which means that Your information will be available in the \"Whois\" directory) and/or reveal Your name and personal information that You provided to DBP:  
    A. When required by law, in the good faith belief that such action is necessary in order to conform to the edicts of the law or in the interest of public safety;
    B. To comply with legal process served upon DBP or in response to a reasonable threat of litigation against DBP (as determined by DBP in its sole and absolute discretion); or
    C. To comply with ICANN rules, policies, or procedures.
  2. \r\n
  3. Resolve any and all third party claims, whether threatened or made, arising out of Your use of a domain name for which DBP is the registrant listed in the \"Whois\" directory on Your behalf; or
  4. \r\n
  5. Take any other action DBP deems necessary:
    A. In the event you breach any provision of this Agreement or the DBP Anti-Spam Policy;
    B. To protect the integrity and stability of, and to comply with registration requirements, terms, conditions and policies of, the applicable domain name Registry and/or Registry Provider;
        C. To comply with any applicable laws, government rules or requirements, subpoenas, court orders or requests of law enforcement; 
    D. To comply with ICANN's Dispute Resolution Policy or ICANN's Change of Registrant Policy;
    E. To avoid any financial loss or legal liability (civil or criminal) on the part of DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, officers, directors and employees;
    F. If the domain name for which DBP is the registrant on Your behalf violates or infringes a third party's trademark, trade name or other legal rights; and
    G. If it comes to DBP's attention that You are using DBP's services in a manner (as determined by DBP in its sole and absolute discretion) that:
  6. \r\n
\r\n
\r\n
    \r\n
  • Is illegal, or promotes or encourages illegal activity;
  • \r\n
  • Promotes, encourages or engages in child pornography or the exploitation of children;
  • \r\n
  • Promotes, encourages or engages in terrorism, violence against people, animals, or property;
  • \r\n
  • Promotes, encourages or engages in any spam or other unsolicited bulk email, or computer or network hacking or cracking;
  • \r\n
  • Violates the Ryan Haight Online Pharmacy Consumer Protection Act of 2008 or similar legislation, or promotes, encourages or engages in the sale or distribution of prescription medication without a valid prescription;  
  • \r\n
  • Infringes on the intellectual property rights of another User or any other person or entity;
  • \r\n
  • Violates the privacy or publicity rights of another User or any other person or entity, or breaches any duty of confidentiality that you owe to another User or any other person or entity;
  • \r\n
  • Interferes with the operation of DBP services;
  • \r\n
  • Contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable of, disrupting, damaging or limiting the functionality of any software or hardware; or
  • \r\n
  • Contains false or deceptive language, or unsubstantiated or comparative claims, regarding DBP or its services.
  • \r\n
\r\n
\r\n

You further understand and agree that if DBP is named as a defendant in, or investigated in anticipation of, any legal or administrative proceeding arising out of Your domain name registration or Your use of DBP's services, Your private registration service may be canceled, which means the domain name registration will revert back to You and Your identity will therefore be revealed in the Whois directory as Registrant.

\r\n

In the event:

\r\n
    \r\n
  1. DBP takes any of the actions set forth in subsection i, ii, or iii above or section 5; and/or
  2. \r\n
  3. You elect to cancel DBP's services for any reason --
  4. \r\n
\r\n

Neither DBP nor your Registrar will refund any fees paid by You whatsoever.

\r\n

5. communications forwarding

\r\n

a. Correspondence Forwarding

\r\n

Inasmuch as DBP's name, postal address and phone number will be listed in the Whois directory, You agree DBP will review and forward communications addressed to Your domain name that are received via email, certified or traceable courier mail (such as UPS, FedEx, or DHL), or first class U.S. postal mail. You specifically acknowledge DBP will not forward to You first class postal mail (other than legal notices), \"junk\" mail or other unsolicited communications (whether delivered through email, fax, postal mail or telephone), and You further authorize DBP to either discard all such communications or return all such communications to sender unopened. You agree to waive any and all claims arising from Your failure to receive communications directed to Your domain name but not forwarded to You by DBP.

\r\n

b. Email Forwarding

\r\n

The Whois directory requires an email address for every purchased domain name registration. When You purchase a private domain registration, DBP creates a private email address for that domain name, \"@domainsbyproxy.com\". Thereafter, when messages are sent to that private email address, DBP handles them according to the email preference You selected for that particular domain name. You have three (3) email preferences from which to choose. You can elect to:

\r\n
    \r\n
  1. Have all of the messages forwarded;
  2. \r\n
  3. Have all of the messages filtered for Spam and then forwarded; or
  4. \r\n
  5. Have none of the messages forwarded.
  6. \r\n
\r\n

As with all communications, You agree to waive any and all claims arising from Your failure to receive email directed to Your domain name but not forwarded to You by DBP.

\r\n

c. Notifications Regarding Correspondence and Your Obligation to Respond

\r\n

When DBP receives certified or traceable courier mail or legal notices addressed to Your domain name, in most cases, DBP will attempt to forward the mail to you via email. If You do not respond to the DBP email and/or the correspondence DBP has received regarding Your domain name registration concerns a dispute of any kind or otherwise requires immediate disposition, DBP may immediately reveal Your identity and/or cancel the DBP private registration service regarding either the domain name registration(s) in question. This means the Whois directory will revert to displaying Your name, postal address, email address and phone number that you provided to DBP.

\r\n

d. Additional Administrative Fees

\r\n

DBP reserves the right to charge You reasonable \"administrative fees\" or \"processing fees\" for (i)  tasks DBP may perform outside the normal scope of its Services, (ii) additional time and/or costs DBP may incur in providing its Services, and/or (iii) Your non-compliance with the Agreement (as determined by DBP in its sole and absolute discretion). Typical administrative or processing fee scenarios include, but are not limited to, (i) customer service issues that require additional personal time and attention; (ii) disputes that require accounting or legal services, whether performed by DBP staff or by outside firms retained by DBP; (iii) recouping any and all costs and fees, including the cost of Services, incurred by DBP as the result of chargebacks or other payment disputes brought by You, Your bank or Payment Method processor.  These administrative fees or processing fees will be billed to the Payment Method You have on file with Your Registrar.

\r\n

You agree to waive the right to trial by jury in any proceeding that takes place relating to or arising out of this Agreement.

\r\n

6. limitations of liability

\r\n

UNDER NO CIRCUMSTANCES SHALL DBP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, PUNITIVE, SPECIAL, OR CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER RELATED TO THIS AGREEMENT, YOUR DOMAIN NAME REGISTRATION, DBP'S SERVICES, USE OR INABILITY TO USE THE DBP WEBSITE OR THE MATERIALS AND CONTENT OF THE WEBSITE OR ANY OTHER WEBSITES LINKED TO THE DBP WEBSITE OR YOUR PROVISION OF ANY PERSONALLY IDENTIFIABLE INFORMATION TO DBP OR ANY THIRD PARTY. THIS LIMITATION APPLIES REGARDLESS OF WHETHER THE ALLEGED LIABILITY IS BASED ON CONTRACT, TORT, WARRANTY, NEGLIGENCE, STRICT LIABILITY OR ANY OTHER BASIS, EVEN IF DBP HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR SUCH DAMAGES WERE REASONABLY FORESEEABLE. BECAUSE CERTAIN JURISDICTIONS DO NOT PERMIT THE LIMITATION OR ELIMINATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, DBP'S LIABILITY IN SUCH JURISDICTIONS SHALL BE LIMITED TO THE SMALLEST AMOUNT PERMITTED BY LAW.

\r\n

YOU FURTHER UNDERSTAND AND AGREE THAT DBP DISCLAIMS ANY LOSS OR LIABILITY RESULTING FROM:

\r\n
    \r\n
  1. THE INADVERTENT DISCLOSURE OR THEFT OF YOUR PERSONAL INFORMATION;
  2. \r\n
  3. ACCESS DELAYS OR INTERRUPTIONS TO OUR WEBSITE OR THE WEBSITES OF OUR AFFILIATED REGISTRARS;
  4. \r\n
  5. DATA NON-DELIVERY OF MIS-DELIVERY BETWEEN YOU AND DBP;
  6. \r\n
  7. THE FAILURE FOR WHATEVER REASON TO RENEW A PRIVATE DOMAIN NAME REGISTRATION;
  8. \r\n
  9. THE UNAUTHORIZED USE OF YOUR DBP ACCOUNT OR ANY OF DBP'S SERVICES;
  10. \r\n
  11. ERRORS, OMISSIONS OR MISSTATEMENTS BY DBP;
  12. \r\n
  13. DELETION OF, FAILURE TO STORE, FAILURE TO PROCESS OR ACT UPON EMAIL MESSAGES FORWARDED TO EITHER YOU OR YOUR PRIVATE DOMAIN NAME REGISTRATION;
  14. \r\n
  15. PROCESSING OF UPDATED INFORMATION REGARDING YOUR DBP ACCOUNT; AND/OR
  16. \r\n
  17. ANY ACT OR OMISSION CAUSED BY YOU OR YOUR AGENTS (WHETHER AUTHORIZED BY YOU OR NOT).
  18. \r\n
\r\n

7. indemnity

\r\n

You agree to release, defend, indemnify and hold harmless DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, directors, officers and employees and Your Registrar, from and against any and all claims, demands, liabilities, losses, damages or costs, including reasonable attorneys' fees, arising out of or related in any way to this Agreement, the services provided hereunder by DBP, the DBP website, Your account with DBP, Your use of Your domain name registration, and/or disputes arising in connection with the dispute policy.

\r\n

8. DBP warranty disclaimer

\r\n

DBP, ITS PARENT COMPANIES, SUBSIDIARIES, AFFILIATES, SHAREHOLDERS, AGENTS, DIRECTORS, OFFICERS, AND EMPLOYEES EXPRESSLY DISCLAIM ALL REPRESENTATIONS AND WARRANTIES OF ANY KIND IN CONNECTION WITH THIS AGREEMENT, THE SERVICE PROVIDED HEREUNDER, THE DBP WEBSITE OR ANY WEBSITES LINKED TO THE DBP WEBSITE, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL DBP SERVICES, AS WELL AS THE DBP WEBSITE, ARE PROVIDED \"AS IS\". YOUR SUBSCRIPTION TO AND USE OF DBP'S SERVICES AND ITS WEBSITE ARE ENTIRELY AT YOUR RISK. SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OF IMPLIED WARRANTIES, IN WHICH EVENT THE FOREGOING DISCLAIMER MAY NOT APPLY TO YOU.

\r\n

9. copyright and trademark

\r\n

You understand and agree that all content and materials contained in this Agreement, the Privacy Policy and the DBP website found here , are protected by the various copyright, patent, trademark, service mark and trade secret laws of the United States, as well as any other applicable proprietary rights and laws, and that DBP expressly reserves its rights in and to all such content and materials.

\r\n

You further understand and agree You are prohibited from using, in any manner whatsoever, any of the afore-described content and materials without the express written permission of DBP. No license or right under any copyright, patent, trademark, service mark or other proprietary right or license is granted to You or conferred upon You by this Agreement or otherwise.

\r\n

10. miscellaneous provisions

\r\n

a. Severability; Construction; Entire Agreement

\r\n

If any part of this Agreement shall be held to be illegal, unenforceable or invalid, in whole or in part, such provision shall be modified to the minimum extent necessary to make it legal, enforceable and valid, and the legality, enforceability and validity of the remaining provisions of this Agreement shall not be affected or impaired. The headings herein will not be considered a part of this Agreement. You agree this Agreement, including the policies it incorporates by reference, constitute the complete and only Agreement between You and DBP regarding the services contemplated herein.

\r\n

b. Governing Law; Venue; Waiver Of Trial By Jury

\r\n

This Agreement shall be governed in all respects by the laws and judicial decisions of Maricopa County, Arizona, excluding its conflicts of laws rules. Except as provided immediately below, You agree that any action relating to or arising out of this Agreement, shall be brought exclusively in the courts of Maricopa County, Arizona. For the adjudication of domain name registration disputes, you agree to submit to the exclusive jurisdiction and venue of the U.S. District Court for the District of Arizona located in Phoenix, Arizona. You agree to waive the right to trial by jury in any proceeding, regardless of venue, that takes place relating to or arising out of this Agreement.

\r\n

c. Notices

\r\n

All notices from DBP to You will be sent to the email address You provided to DBP. Notices by email shall be deemed effective twenty-four (24) hours after the email is sent by DBP, unless DBP receives notice that the email address is invalid, in which event DBP may give You notice via first class or certified mail, return receipt requested. All notices from You to DBP shall be sent via certified mail, return receipt requested or traceable courier to:

\r\n
      Domains By Proxy, LLC
      Attn: General Counsel
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

Notices sent via certified mail or traceable courier shall be deemed effective five (5) days after the date of mailing.

\r\n

d. Insurance

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's negligent actions (and absent fraud or other negligent or willful misconduct committed by a third party), You may be insured against such loss through DBP's Professional Liability Insurance Policy, which is currently underwritten by American International Insurance Company. Of course, every claim is subject to the then-carrier's investigation into the facts and circumstances surrounding such claim. In the event You have reason to believe that circumstances exist which warrant the filing of an insurance claim, please send a written notice (specifying the basis for such claim), via certified mail, return receipt requested, to:

\r\n
      Domains By Proxy, LLC
      Attn: Insurance Claims
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

e. Indemnification

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's willful misconduct, Your Registrar (the \"Indemnifying Party\") will indemnify and hold You harmless against any losses, damages or costs (including reasonable attorneys' fees) resulting from any claim, action, proceeding, suit or demand arising out of or related to the loss of Your domain name registration. Such indemnification obligations under this Section 10(e) are conditioned upon the following:

\r\n
    \r\n
  1. That You promptly give both DBP and the Indemnifying Party written notice of the claim, demand, or action and provide reasonable assistance to the Indemnifying Party, at its cost and expense, in connection therewith, and
  2. \r\n
  3. That the Indemnifying Party has the right, at its option, to control and direct the defense to any settlement of such claim, demand, or action.
  4. \r\n
\r\n

Any notice concerning indemnification shall, with respect to DBP, be sent in accordance with Section 10(c) of this Agreement. With respect to Your Registrar, notices regarding indemnification should be sent in accordance with the notification provisions contained in Your Registrar's Domain Name Registration Agreement.

\r\n

f. Term of Agreement; Survival

\r\n

The terms of this Agreement shall continue in full force and effect as long as DBP is the Registrant for any domain name on Your behalf. Sections 5 (Communications Forwarding), 6 (Limitation of Liability), 7 (Indemnity), 8 (Warranty Disclaimer) and 10 (Miscellaneous Provisions) shall survive any termination or expiration of this Agreement.

\n
\n
\n\nRevised: 10/25/17
\nCopyright © 2003-2017 All Rights Reserved.\n
\n
\n
", - "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=domain_nameproxy&pl_id=510456" - } - ] - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "in", + "api-version": "2015-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "agreementKey": "DNRA", + "title": "Domain Name Registration Agreement", + "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Registration Agreement\n
\n

Last Revised: October 6, 2017

\n

PLEASE READ THIS AGREEMENT CAREFULLY, AS IT CONTAINS IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS AND REMEDIES.

\r\n

1. OVERVIEW

\r\n

This Domain Name Registration Agreement (this \"Agreement\") is entered into by and between 510456, an individual (\"Azure\") and you, and is made effective as of the date of electronic acceptance.  This Agreement sets forth the terms and conditions of your use of Azure's Domain Name Registration services (the \"Domain Name Registration Services\" or the \"Services\"). The terms \"we\", \"us\" or \"our\" shall refer to Azure.  The terms \"you\", \"your\", \"User\" or \"customer\" shall refer to any individual or entity who accepts this Agreement.  Unless otherwise specified, nothing in this Agreement shall be deemed to confer any third-party rights or benefits.

\r\n

Your electronic acceptance of this Agreement signifies that you have read, understand, acknowledge and agree to be bound by this Agreement, which incorporates by reference each of (i) Azure’s Universal Terms of Service Agreement (\"UTOS\"), (ii) all agreements, guidelines, policies, practices, procedures, registration requirements or operational standards of the top-level domain (\"TLD\") in which you register any domain (“Registry Policies”), and (iii) any plan limits, product disclaimers or other restrictions presented to you on the Domain Name Registration Services landing page of the Azure website (this “Site”). 

\r\n

TO LINK TO AND REVIEW THE REGISTRY POLICIES FOR THE TLD IN WHICH YOU WISH TO REGISTER A DOMAIN NAME, PLEASE CLICK HERE   

\r\n

You acknowledge and agree that (i) Azure, in its sole and absolute discretion, may change or modify this Agreement, and any policies or agreements which are incorporated herein, at any time, and such changes or modifications shall be effective immediately upon posting to this Site, and (ii) your use of this Site or the Services found at this Site after such changes or modifications have been made shall constitute your acceptance of this Agreement as last revised.  If you do not agree to be bound by this Agreement as last revised, do not use (or continue to use) this Site or the Services found at this Site.  In addition, Azure may occasionally notify you of changes or modifications to this Agreement by email.  It is therefore very important that you keep your shopper account (“Shopper Account”) information, including your email address, current.  Azure assumes no liability or responsibility for your failure to receive an email notification if such failure results from an inaccurate or out-of-date email address.    Azure is not an Internet Corporation for Assigned Names and Numbers (\"ICANN\") accredited registrar; it is an authorized reseller of domain name registration services.  Accordingly, you acknowledge and agree that Azure may modify this Agreement in order to comply with any terms and conditions set forth by (i) the sponsoring registrar, (ii) ICANN, and/or (iii) the registry applicable to the TLD or country code top level domain (\"ccTLD\") in question.  As used herein, the terms \"registry\", \"Registry\", \"registry operator\" or \"Registry Operator\" shall refer to the registry applicable to the TLD or ccTLD in question.  To identify the sponsoring registrar, click here

\r\n

2. PROVISIONS SPECIFIC TO ALL REGISTRATIONS

\r\n

Unless otherwise noted, the provisions below in this Section 2 are generally applicable to all TLDs that we offer.  Special provisions specific to any TLD or ccTLD (those in addition to posted Registry Policies) are identified elsewhere below in this Agreement. 

\r\n
    \r\n
  1. \r\n
    Registry Policies. You agree to be bound by all Registry Policies (defined above in this Agreement) applicable to your domain name registration (at any level). IT IS YOUR RESPONSIBILITY TO VISIT THE APPLICABLE TLD SITE AND READ AND REVIEW ALL APPLICABLE REGISTRY POLICIES PRIOR TO YOUR REGISTRATION IN THE TLD.  REGISTRY POLICIES FOR EACH TLD CAN BE FOUND BY VISITING THE CORRESPONDING TLD LINK LISTED HERE.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator of the TLD in which the domain name registration is made is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the respective TLD. The third party beneficiary rights of the Registry Operator will survive any termination of this Agreement.    
    \r\n
  2. \r\n
  3. \r\n
    Registration Requirements.  To the extent any TLD or ccTLD requires you meet eligibility (e.g., residency for .JP, .EU, etc.), validation (e.g., DNS validation) or other authentication requirements as a condition to registering a domain name in the TLD, you agree that by submitting an application or registering or renewing your domain name, you represent and warrant that: (a) all information provided to register or renew the domain name (including all supporting documents, if any) is true, complete and correct, and is not misleading in any way, and the application is made in good faith; (b) you meet, and will continue to meet, the eligibility criteria prescribed in the Registry Policies for the applicable TLD for the duration of the domain name registration; (c) you have not previously submitted an application for the domain name with another registrar using the same eligibility criteria, and the other registrar has rejected the application (if applicable); (d) you acknowledge and agree that even if the domain name is accepted for registration, your entitlement to register the domain name may be challenged by others who claim to have an entitlement to the domain name; and (e) you acknowledge and agree that the Registry or the registrar can cancel the registration of the domain name if any of the warranties required are found to be untrue, incomplete, incorrect or misleading.
    \r\n
  4. \r\n
  5. \r\n
    Ownership.  You acknowledge and agree that registration of a domain name does not create any proprietary right for you, the registrar, or any other person in the name used as a domain name or the domain name registration and that the entry of a domain name in the Registry shall not be construed as evidence or ownership of the domain name registered as a domain name. You shall not in any way transfer or purport to transfer a proprietary right in any domain name registration or grant or purport to grant as security or in any other manner encumber or purport to encumber a domain name registration.
    \r\n
  6. \r\n
  7. \r\n
    ICANN Requirements. You agree to comply with the ICANN requirements, standards, policies, procedures, and practices for which each applicable Registry Operator has monitoring responsibility in accordance with the Registry Agreement between ICANN and itself or any other arrangement with ICANN.
    \r\n
  8. \r\n
  9. \r\n
    Indemnification of Registry.  You agree to indemnify, defend and hold harmless (within 30 days of demand) the Registry Operator and Registry Service Provider and their subcontractors, subsidiaries, affiliates, divisions, shareholders, directors, officers, employees, accountants, attorneys, insurers, agents, predecessors, successors and assigns, from and against any and all claims, demands, damages, losses, costs, expenses, causes of action or other liabilities of any kind, whether known or unknown, including reasonable legal and attorney’s fees and expenses, in any way arising out of, relating to, or otherwise in connection with the your domain name registration, including, without limitation, the use, registration, extension, renewal, deletion, and/or transfer thereof and/or the violation of any applicable terms or conditions governing the registration. You shall not enter into any settlement or compromise of any such indemnifiable claim without Registrar’s or Registry Operator’s prior written consent, which consent shall not be unreasonably withheld, and you agree that these indemnification obligations shall survive the termination or expiration of the Agreement for any reason.  IN NO EVENT SHALL THE REGISTRY OPERATOR BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, EXEMPLARY OR PUNITIVE DAMAGES, INCLUDING LOSS OF PROFIT OR GOODWILL, FOR ANY MATTER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE), BREACH OF WARRANTIES, EITHER EXPRESS OR IMPLIED, ANY BREACH OF THIS AGREEMENT OR ITS INCORPORATED AGREEMENTS AND POLICIES YOUR INABILITY TO USE THE DOMAIN NAME, YOUR LOSS OF DATA OR FILES OR OTHERWISE, EVEN IF THE REGISTRY OPERATOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    \r\n
  10. \r\n
  11. \r\n
    Regulated TLDs.   For domain name registration in any “Regulated” TLD, you acknowledge and agree your registration is subject to the following additional requirements: (a) comply with all applicable laws, including those that relate to privacy, data collection, consumer protection (including in relation to misleading and deceptive conduct), fair lending, debt collection, organic farming, disclosure of data, and financial disclosures; (b) if you collect and maintain sensitive health and financial data you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  Regulated TLDs include: .games, .juegos, .school, .schule, .toys, .eco, .care, .diet, .fitness, .health, .clinic, .dental, .healthcare, .capital, .cash, .broker, .claims, .exchange, .finance, .financial, .fund, .investments, .lease, .loans, .market, .money, .trading, .credit, .insure, .tax, .mortgage, .degree, .mba, .audio, .book, .broadway, .film, .movie, .music, .software, .fashion, .video, .app, .art, .band, .cloud, .data, .digital, .fan, .free, .gratis, .discount, .sale, .media, .news, .online, .pictures, .radio, .show, .theater, .tours, .accountants, .architect, .associates, .broker, .legal, .realty, .vet, .engineering, .law, .limited, .show; .theater; .town, .city, .reise, and .reisen
    \r\n
  12. \r\n
  13. \r\n
    Highly Regulated TLDs. In addition to the requirements for Regulated TLDs, domain name registration in any Highly-Regulated TLD is subject to the following requirements: (a) you will provide administrative contact information, which must be kept up‐to‐date, for the notification of complaints or reports of registration abuse, as well as the contact details of the relevant regulatory, or Industry self‐regulatory, bodies in their main place of business; (b) you represent that you possess any necessary authorizations, charters, licenses and/or other related credentials for participation in the sector associated with such Highly‐regulated TLD; and (c) you will report any material changes to the validity of you authorizations, charters, licenses and/or other related credentials for participation in the sector associated with the Highly‐regulated TLD to ensure you continue to conform to the appropriate regulations and licensing requirements and generally conduct your activities in the interests of the consumers they serve.  Highly Regulated TLDs include: .abogado, .attorney, .bank, .bet, .bingo, .casino .charity (and IDN equivalent xn--30rr7y), .cpa, .corp, creditcard, .creditunion .dds, .dentist, .doctor, .fail, .gmbh, .gripe, .hospital, .inc, .insurance, .lawyer, .lifeinsurance, .llc, .llp, .ltda, .medical, .mutuelle, .pharmacy, .poker, .university, .sarl, .spreadbetting, .srl, .sucks, .surgery .university, .vermogensberater, .vesicherung,  and .wtf.  For .doctor, registrants who hold themselves out to be licensed medical practitioners must be able to demonstrate to the Registrar and Registry, upon request, that they hold the applicable license.
    \r\n
  14. \r\n
  15. \r\n
    Special Safeguard TLDs.  In addition to the requirements for Regulated and Highly-Regulated TLDs, by registering a domain name in any “Special-Safeguard” TLD, you agree to take reasonable steps to avoid misrepresenting or falsely implying that you or your business is affiliated with, sponsored or endorsed by one or more country's or government's military forces if such affiliation, sponsorship or endorsement does not exist.  Special Safeguard TLDs include:  .army, .navy, .airforce
    \r\n
  16. \r\n
  17. \r\n
    Third Party Beneficiary.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator for any TLD in which your register a domain name is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the TLD. Third party beneficiary rights of the Registry Operator shall survive any termination of this Agreement.
    \r\n
  18. \r\n
  19. \r\n
    Variable and Non-Uniform Pricing.  You acknowledge, understand and agree that certain domain names in certain TLDs are established by Registry Policies to be variably priced (i.e., standard v. premium names) and/or may have non-uniform renewal registration pricing (such that the Fee for a domain name registration renewal may differ from other domain names in the same TLD, e.g., renewal registration for one domain may be $100.00 and $33.00 for a different domain name).
    \r\n
  20. \r\n
  21. \r\n
    Restriction on Availability of Privacy or Proxy.  You acknowledge and agree that, as dictated by the Registry Policies, for certain TLDs you may not be permitted to purchase private or proxy TLD registrations. In such case, you must register for any and all TLD registrations using your personal information, which information you represent and warrant is current, accurate and complete.
    \r\n
  22. \r\n
\r\n

3. FEES AND PAYMENTS

\r\n

(A) GENERAL TERMS, INCLUDING AUTOMATIC RENEWAL TERMS

\r\n

You agree to pay any and all prices and fees due for Services purchased or obtained at this Site at the time you order the Services.  Azure expressly reserves the right to change or modify its prices and fees at any time, and such changes or modifications shall be posted online at this Site and effective immediately without need for further notice to you.  If you have purchased or obtained Services for a period of months or years, changes or modifications in prices and fees shall be effective when the Services in question come up for renewal as further described below. 

\r\n

Unless otherwise specifically noted (for reasons such as those highlighted in Section 2(x) above), the renewal price for any domain name in any TLD will be the same as the list (non-sale) price shown when you search for and select a domain, and again in the cart prior to purchase.  For example, if the list price is $9.99, and a different renewal price is not specifically identified, then the renewal price is also $9.99.  Likewise, if a domain name has a sale price of $8.99, with the list (non-sale) price shown (as a strike-through) at $9.99, the renewal price will be $9.99*.  

\r\n

*Renewal price subject to change prior to actual date of renewal. 

\r\n

For all other terms and conditions relating to fees, payment, refund and billing, etc. applicable to the Services offered under the scope of this Agreement, please refer to the “Fees and Payments” section of our UTOS

\r\n

(B) DOMAIN NAME RENEWAL TERMS

\r\n

When you register a domain name, you will have two renewal options: (i) \"Automatic Renewal\" (ii) \"Extended Automatic Renewal\", and (iii) \"Manual Renewal\": 

\r\n
    \r\n
  1. Automatic Renewal.  Automatic Renewal is the default setting. Therefore, unless you select Extended Automatic Renewal, Azure will enroll you in Automatic Renewal.  Domain names will automatically renew, for a period equivalent to the length of your original domain name registration, any domain name that is up for renewal and will take payment from the Payment Method you have on file with Azure, at Azure's then current rates. Thus, if you have chosen to register your domain name for one (1) year, Azure will automatically renew it for one (1) year. If you have chosen to register your domain name for two (2) years, Azure will automatically renew it for two (2) years, and so on.
  2. \r\n
  3. Extended Automatic Renewal.  If you enroll in the Extended Automatic Renewal plan, Azure will automatically renew any domain name that is up for renewal for an additional one-year period on each and every anniversary of your domain name registration, so the initial registration period will always remain intact.  Thus, if you have chosen to register your domain name for two (2) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your two (2) year registration period will always remain intact. If you have chosen to register your domain name for five (5) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your five (5) year registration period will always remain intact, and so on.  Azure will take payment from the Payment Method you have on file with Azure, at Azure's then current one-year domain name registration rate.
  4. \r\n
  5. Manual Renewal.  If you have elected to turn off automatic renewal and cancel the product (i.e., cancel the domain name registration) effective at expiration of the then current term, you may nonetheless elect to manually renew the domain name at anytime prior to its expiration date by logging into your Account Manager and manually implementing the renewal or by calling customer service (should you in fact want the domain name to be renewed). If you fail to manually implement the renewal before the expiration date, the domain name will be cancelled and you will no longer have use of that name.
  6. \r\n
\r\n

All renewals will be subject to the terms of this Agreement, as it may be amended from time to time, and you acknowledge and agree to be bound by the terms of this Agreement (as amended) for all renewed domains.  Domain name renewals will be non-refundable. In the event that we are unable to automatically renew your domain name for the renewal option selected for any reason, we may automatically renew your domain name for a period less than your original registration period to the extent necessary for the transaction to succeed. If for any reason Azure is not able to take the payment from the Payment Method you have on file, and you fail to respond to our notices, your domain name registration will expire. It is your responsibility to keep your Payment Method information current, which includes the expiration date if you are using a credit card.

\r\n

For certain ccTLDs (.am, .at, .be, .br, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal billing will occur on the first day of the month prior to the month of expiration.

\r\n

For certain ccTLDs (.am, .at, .be, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal will occur, or must occur manually if the product was previously cancelled, no later than the 20th of the month prior to the expiration date, or your domain name will be placed in non-renewal status. For some ccTLDs (.es) renewal must be processed no later than seven days before the expiration date, or your domain name will be placed in non-renewal status.  When the domain name is in non-renewal status, you can renew the domain name only by calling Azure and requesting that the domain name be renewed. You cannot renew the domain name through your Account Manager. If you fail to manually implement the renewal of any cancelled product before the expiration date, the domain name will be cancelled and you will no longer have use of that name.

\r\n

You agree that Azure will not be responsible for cancelled domain names that you fail to renew in the timeframes indicated in this Agreement. In any case, if you fail to renew your domain name in a timely fashion, additional charges may apply. If you signed up for privacy services, protected registration, or any other similar service, with your domain name registration, these services will automatically be renewed when your domain name registration is up for renewal, and you will incur the applicable additional renewal fee unless you cancel in advance. 

\r\n

If you fail to renew your domain name in the timeframes indicated in this Agreement, you agree that Azure may, in its sole discretion, renew your expired domain name on your behalf. If Azure decides to renew your expired domain name on your behalf, you will have a Renewal Grace Period during which you may reimburse Azure for the renewal and keep your domain name. The Renewal Grace Period is currently twelve (12) days but subject to change under the terms of this Agreement. For certain ccTLDs (.am, .at, .be, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg) there is no Renewal Grace Period after the expiration date of the domain name. If you do not reimburse Azure for the renewal during the Renewal Grace Period your domain name will be placed on Hold and flagged for deletion after which you will have a 30-day redemption period during which you may pay Azure a Redemption fee and redeem your domain name. The Redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the 30-day redemption period Azure may, in its sole discretion, delete your domain name or transfer it to another registrant on your behalf.  During the redemption period your domain name may be parked. 

\r\n

If your domain name is deleted, the Registry also provides a 30-day Redemption Grace Period during which you may pay Azure a redemption fee and redeem your domain name. The redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the Registry's Redemption Grace Period the Registry will release your name and it will become available for registration on a first-come-first-served basis.

\r\n

Renewal Grace Periods and Redemption Grace Periods vary for different ccTLDs. Please refer to the specific terms for the applicable TLD. In the event there is a conflict between the provisions of this paragraph and the ccTLD terms, the ccTLD terms shall control.

\r\n

\r\n

Our registration expiration notification policy and associated fees are described here.

\r\n

\r\n

\r\n

(C) FREE PRODUCT TERMS

\r\n

In the event you are provided with free products with the registration of a domain name, you acknowledge and agree that such free products will only be available with a valid purchase and may be terminated in the event the domain name is deleted or cancelled.  For free domain names, you acknowledge and agree that you may not change the account associated with such free domain for the first five (5) days after registration.  In the event a free domain name is offered with the registration of another domain and if the paid domain name registered fails, then we may, in its sole discretion, either delete the registration of the free domain or refund the difference between the amount paid and the value of the free domain.  Failed registrations associated with promotionals offers may result in the deletion of the free or discounted item or an adjustment between the registered domain price and the value of the discounted item, in our sole discretion.

\r\n

4. TERM OF AGREEMENT; TRANSFERS; DOMAIN TASTING

\r\n

The term of this Agreement shall continue in full force and effect as long as you have any domain name registered through Azure.

\r\n

You agree that you will not transfer any domain name registered through Azure to another domain name registrar during the first sixty (60) days after its initial registration date.  You agree that you may not transfer any domain name for ten (10) days after a Change of Account.

\r\n

You further agree that you will not engage in \"domain tasting\" by using the five (5) day grace period in which a registrant may choose to cancel a domain name and get a full refund of the registration fee as a vehicle to test the marketability or viability of a domain name.  If Azure determines (which determination shall be made by Azure in its sole and absolute discretion) that you have been engaging in \"domain tasting\", then Azure reserves the right to (a) charge you a small fee (which fee shall be deducted from any refund issued) or (b) refuse your cancellation/refund request altogether. Azure will not charge you a fee if Azure cancels your domain name during the five (5) day grace period due to fraud or other activity outside of your control. The five (5) day grace period does not apply to Premium Domains, which are non-refundable.

\r\n

You agree that Azure shall not be bound by (i) any representations made by third parties who you may use to purchase services from Azure, or (ii) any statements of a general nature, which may be posted on Azure's website or contained in Azure's promotional materials.

\r\n

5. UP TO DATE INFORMATION; USE OF INFORMATION AND EXPIRATION

\r\n

You agree to notify Azure within five (5) business days when any of the information you provided as part of the application and/or registration process changes. It is your responsibility to keep this information in a current and accurate status. Failure by you, for whatever reason, to provide Azure with accurate and reliable information on an initial and continual basis, shall be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. Failure by you, for whatever reason, to respond within five (5) business days to any inquiries made by Azure to determine the validity of information provided by you, shall also be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. You agree to retain a copy for your record of the receipt for purchase of your domain name.

\r\n

You agree that for each domain name registered by you, the following contact data is required: postal address, email address, telephone number, and if available, a facsimile number for the Registered Name Holder and, if different from the Registered Name Holder, the same contact information for, a technical contact, an administrative contact and a billing contact.

\r\n

You acknowledge and agree that domain name registration requires that this contact information, in whole or in part, be shared with the registry operator, for their use, copying, distribution, publication, modification and other processing  for (among other uses in accordance with our Privacy Policy) the purpose of administration of the domain name registration, which may require such information be transferred back and forth across international borders, to and from the U.S. to the EU, for example. As required by ICANN, this information must also be made publicly available by means of Whois, and that the registry operator may also be required to make this information publicly available by Whois. Both Azure and the registry operator may be required to archive this information with a third-party escrow service. You hereby consent and give permission for all such requirements and disclosures. Further, you represent and warrant that, if you are providing information about a third party, you have notified the third party of the disclosure and the purpose for the disclosure and you have obtained the third party's consent to such disclosure.  Registrar will not process data in a way that is incompatible with this Agreement.  Registrar will take reasonable precautions to protect data from loss or misuse.

\r\n

You agree that for each domain name registered by you the following information will be made publicly available in the Whois directory as determined by ICANN Policy and may be sold in bulk as set forth in the ICANN agreement:

\r\n
    \r\n
  • The domain name;
  • \r\n
  • Your name and postal address;
  • \r\n
  • The name, email address, postal address, voice and fax numbers for technical and administrative contacts;
  • \r\n
  • The Internet protocol numbers for the primary and secondary name servers;
  • \r\n
  • The corresponding names of the name servers; and
  • \r\n
  • The original date of registration and expiration date.
  • \r\n
  • Name of primary name server and secondary name server.
  • \r\n
  • Identity of the registrar.
  • \r\n
\r\n

You agree that, to the extent permitted by ICANN, Azure may make use of the publicly available information you provided during the registration process. If you engage in the reselling of domain names you agree to provide any individuals whose personal information you've obtained, information about the possible uses of their personal information pursuant to ICANN policy. You also agree to obtain consent, and evidence of consent, from those individuals for such use of the personal information they provide.

\r\n

You agree that Azure has the right to make public and share with third parties certain information in connection with the sale or purchase of domain names on the website, including but not limited to (a) the name of the domain name sold or purchased, (b) the sale or purchase price of the domain name sold or purchased, and (c) information relating to the timing of the sale or purchase.

\r\n

\r\n

In order for us to comply with any current or future rules and policies for domain name systems including any rules or policies established by the CIRA or any provincial or federal government or by other organization having control or authority to establish rules or policies, you hereby grant to us the right to disclose to third parties through an interactive publicly accessible registration database the following information that you are required to provide when applying for a domain name:

\r\n
    \r\n
  1. The domain or sub-domain name(s) registered by you;
  2. \r\n
  3. Your organization name, type and postal address;
  4. \r\n
  5. The name(s), position(s), postal address(es), e-mail address(es), voice telephone number(s) and where available the fax number(s) of the technical and administrative contacts for your domain or sub-domain name(s);
  6. \r\n
  7. The full hostnames and Internet protocol (IP) addresses of at least two (2) name server hosts (one primary and at least one secondary) for your domain or sub-domain name. Up to six (6) name servers may be specified. If a host has more than one (1) IP address, use a comma-separated list;
  8. \r\n
  9. The corresponding names of those name servers;
  10. \r\n
  11. The original creation date of the registration; and
  12. \r\n
  13. The expiration date of the registration.
  14. \r\n
\r\n

We may be required to make this information available in bulk form to third parties. We may also transfer or assign this information to CIRA or such other third party as we may decide, in our sole discretion.

\r\n

6. DISPUTE RESOLUTION POLICY

\r\n

You agree to be bound by our current Dispute Resolution Policy. This policy is incorporated herein and made a part of this Agreement. You can view the Uniform Domain Name Dispute Resolution Policy online. You agree that Azure may from time to time modify its Dispute Resolution Policy. Azure will post any changes to its Dispute Resolution Policy at least thirty (30) days before they become effective. You agree that by maintaining your domain name registrations with Azure after the updated policy becomes effective that you agree to the Dispute Resolution policy as amended. You agree to review Azure's website periodically to determine if changes have been made to the Dispute Resolution Policy. If you cancel or terminate your Services with Azure as a result of the modified Dispute Resolution policy, no fees will be refunded to you. You also agree to submit to proceedings commenced under ICANN's Uniform Rapid Suspension System, if applicable. 

\r\n

You agree that if a dispute arises as a result of one (1) or more domain names you have registered using Azure, you will indemnify, defend and hold Azure harmless as provided for in this Agreement. You also agree that if Azure is notified that a complaint has been filed with a governmental, administrative or judicial body, regarding a domain name registered by you using Azure, that Azure, in its sole discretion, may take whatever action Azure deems necessary regarding further modification, assignment of and/or control of the domain name deemed necessary to comply with the actions or requirements of the governmental, administrative or judicial body until such time as the dispute is settled. In this event you agree to hold Azure harmless for any action taken by Azure.

\r\n

You agree to submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of your domicile, (2) where registrar is located or (3) where the registry operator is located (e.g., China for .CN, Columbia for .CO, UK for .EU, etc.).

\r\n

\r\n

In the case of .ca domain names, you agree that, if your use of the service or the registration of a .ca domain name is challenged by a third party, you will be subject to the provisions specified by CIRA in their dispute resolution policy, in effect at the time of the dispute.

\r\n

\r\n

7. TRANSFER OF DOMAIN NAMES; RESALE PRACTICES

\r\n

If you transfer any domain name, you agree to provide the information required by, and to abide by, the procedures and conditions set forth in our Domain Name Transfer Agreement and Change of Registrant Agreement. You may view the latest versions of our Domain Name Transfer Agreement and Change of Registrant Agreementonline. In order to further protect your domain name, any domain name registered with Azure or transferred to Azure shall be placed on lock status, unless an opted-out has occurred as defined in our Change of Registrant Agreement or Domain Name Proxy Agreement. The domain name must be placed on unlock status in order to initiate a transfer of the domain name away from Azure to a new Registrar. You may log into your account with Azure at any time after your domain name has been successfully transferred to Azure, and change the status to unlock.

\r\n

In the event you are purchasing a domain name on behalf of a third party, you agree to inform any customer of yours, who may be acquiring a domain name through you using Azure's registration services, that they are in fact registering their domain name through Azure and that Azure or its licensor is an accredited registrar with ICANN. You agree not to represent that you are an ICANN-accredited registrar or that you are in any way providing superior access to the ICANN Domain Name Registry. You also agree not to use the ICANN trademark logo in any of your promotional materials including your website.

\r\n

You agree to obtain each of your customers' acceptances to the then current version of this Agreement, and to retain evidence of their acceptance for a period of not less than three (3) years. Should you require that your customers accept additional terms and conditions that are not required by Azure, you agree that such additional terms and conditions shall not conflict with this Agreement and the policies and procedures adopted by ICANN.

\r\n

You agree that Azure is not lending you access to its registrar connections or its registry access, nor will you be deemed to be a registrar in your own right. Furthermore, you agree you will not attempt to gain access to Azure's registrar connections or registry access. You agree to provide complete, accurate and current data for each registrant to be added to a registry in accordance with ICANN requirements for inclusion in the Whois database.

\r\n

You agree to provide your customers with adequate customer support, and to maintain contact with them with regard to providing a medium for them to communicate changes in the information they provided as part of the domain name registration process. Upon receiving corrected or updated information you will, within five (5) business days, provide such information to Azure so Azure may update its registration records. You will retain copies of all communications between you and your customers and will upon request provide Azure copies of same.

\r\n

8. YOUR OBLIGATIONS; SUSPENSION OF SERVICES; BREACH OF AGREEMENT

\r\n

You represent and warrant to the best of your knowledge that, neither the registration of the domain nor the manner it is directly or indirectly used, infringes the legal rights of any third party.  You will comply with all applicable laws, including, but not limited to those relating to privacy, data collection, consumer protection, fair lending, debt collection, organic farming, and disclosure of data and financial disclosures.  If you collect and maintain sensitive health and financial data, you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  You represent that you possess any necessary authorization, charter, license, and/or other related credential for participation in the sector associated with the associated registry tld string.  You will report any material changes to the validity of your authorization, charter, license, and/or other related credential. You will indemnify and hold harmless the registrar and registry operator, and their directors, officers, employees and agents, from and against any and all claims, damages, liabilities, costs and expenses (including reasonable legal fees and expenses) arising out of or related to the domain name registration.  This obligation shall survive expiration or termination of this Agreement or the domain name registration.

\r\n

You agree that, in addition to other events set forth in this Agreement:

\r\n
    \r\n
  1. Your ability to use any of the services provided by Azure is subject to cancellation or suspension in the event there is an unresolved breach of this Agreement and/or suspension or cancellation is required by any policy now in effect or adopted later by ICANN;
  2. \r\n
  3. Your registration of any domain names shall be subject to suspension, cancellation or transfer pursuant to any ICANN adopted specification or policy, or pursuant to any Azure procedure not inconsistent with an ICANN adopted specification or policy (a) to correct mistakes by Azure or the registry operator in registering any domain name; or (b) for the resolution of disputes concerning any domain name.
  4. \r\n
\r\n

You acknowledge and agree that Azure and registry reserve the right to deny, cancel or transfer any registration or transaction, or place any domain name(s) on registry lock, hold or similar status, as either deems necessary, in the unlimited and sole discretion of either Azure or the registry: (i) to comply with specifications adopted by any industry group generally recognized as authoritative with respect to the Internet (e.g., RFCs), (ii) to correct mistakes made by registry or any registrar in connection with a domain name registration, (iii) for the non-payment of fees to registry, (iv) to protect the integrity and stability of the registry, (v) to comply with any applicable court orders, laws, government rules or requirements, requests of law enforcement, or any dispute resolution process, (vi) to comply with any applicable ICANN rules or regulations, including without limitation, the registry agreement, (vii) to avoid any liability, civil or criminal, on the part of registry operator, as well as its affiliates, subsidiaries, officers, directors, and employees, (viii) per the terms of this Agreement, (ix) following an occurrence of any of the prohibited activities described in Section 8 below, or (x) during the resolution of a dispute.

\r\n

You agree that your failure to comply completely with the terms and conditions of this Agreement and any Azure rule or policy may be considered by Azure to be a material breach of this Agreement and Azure may provide you with notice of such breach either in writing or electronically (i.e. email). In the event you do not provide Azure with material evidence that you have not breached your obligations to Azure within ten (10) business days, Azure may terminate its relationship with you and take any remedial action available to Azure under the applicable laws. Such remedial action may be implemented without notice to you and may include, but is not limited to, cancelling the registration of any of your domain names and discontinuing any services provided by Azure to you. No fees will be refunded to you should your Services be cancelled or terminated because of a breach.

\r\n

Azure's failure to act upon or notify you of any event, which may constitute a breach, shall not relieve you from or excuse you of the fact that you have committed a breach.

\r\n

9. RESTRICTION OF SERVICES; RIGHT OF REFUSAL

\r\n

You agree not to use the services provided by Azure, or to allow or enable others, to use the services provided by Azure for the purposes of:

\r\n
    \r\n
  • The transmission of unsolicited email (Spam); and
  • \r\n
  • Repetitive, high volume inquires into any of the services provided by Azure (i.e. domain name availability, etc.).
  • \r\n
\r\n

You acknowledge and agree that you are prohibited from distributing malware, abusively operating botnets, phishing, piracy, trademark or copyright infringement, fraudulent or deceptive practices, counterfeiting or otherwise engaging in activity contrary to applicable law, and you acknowledge and agree that the consequences for such activities include suspension of the domain name.

\r\n

If you are hosting your domain name system (“DNS”) on Azure’s servers, or are using our systems to forward a domain name, URL, or otherwise to a system or site hosted elsewhere, or if you have your domain name registered with Azure, you are responsible for ensuring there is no excessive overloading on Azure’s servers. You may not use Azure’s servers and your domain name as a source, intermediary, reply to address, or destination address for mail bombs, Internet packet flooding, packet corruption, or other abusive attack. Server hacking or other perpetration of security breaches is prohibited. You agree that Azure reserves the right to deactivate your domain name from its DNS if Azure deems it is the recipient of activities caused by your site that threaten the stability of its network.

\r\n

You agree that Azure, in its sole discretion and without liability to you, may refuse to accept the registration of any domain name. Azure also may in its sole discretion and without liability to you delete the registration of any domain name during the first thirty (30) days after registration has taken place. Azure may also cancel the registration of a domain name, after thirty (30) days, if that name is being used, as determined by Azure in its sole discretion, in association with spam or morally objectionable activities. Morally objectionable activities will include, but not be limited to:

\r\n
    \r\n
  • Activities prohibited by the laws of the United States and/or foreign territories in which you conduct business;
  • \r\n
  • Activities designed to encourage unlawful behavior by others, such as hate crimes, terrorism and child pornography; and
  • \r\n
  • Activities designed to harm or use unethically minors in any way.
  • \r\n
\r\n

In the event Azure refuses a registration or deletes an existing registration during the first thirty (30) days after registration, you will receive a refund of any fees paid to Azure in connection with the registration either being cancelled or refused. In the event Azure deletes the registration of a domain name being used in association with spam or morally objectionable activities, no refund will be issued.

\r\n

10. DEFAULT SETTINGS; PARKED PAGE

\r\n

Choosing Your Domain Name Settings.  When you register a domain name with Azure, you will be prompted to choose your domain name settings during the checkout process.  If you plan on using another provider for your website or hosting needs, then you should enter the name servers of such provider when you choose your domain name settings.  This will direct your domain name away from Azure’s name servers.  If you are an existing Azure customer and have already set up a customer profile designating your domain name settings for new domain name registrations, you will not need to complete this step again during the checkout process.   

\r\n

Azure’s Default Settings.  If you do not direct your domain name away from Azure’s name servers as described above, Azure will direct your domain name to a “Parked Page” (“Default Setting”).  You acknowledge and agree that Azure has the right to set the Default Setting. 

\r\n

Parked Page Default Setting.  Azure’s Parked Page service is an online domain monetization system designed to generate revenue (through the use of pay per click advertising) from domain names that are not actively being used as websites.  If your domain name is directed to a Parked Page, you acknowledge and agree that Azure may display both (a) in-house advertising (which includes links to Azure products and services) and (b) third-party advertising (which includes links to third-party products and services) on your Parked Page through the use of pop-up or pop-under browser windows, banner advertisements, audio or video streams, or any other advertising means, and we may aggregate for our own use, related usage data by means of cookies and other similar means.  In addition, you acknowledge and agree that all in-house and third-party advertising will be selected by Azure and its advertising partners, as appropriate, and you will not be permitted to customize the advertising, or entitled to any compensation in exchange therefor.  Please note that the third-party advertising displayed on Azure’s Parked Pages may contain content offensive to you, including but not limited to links to adult content.  Azure makes no effort to edit, control, monitor, or restrict the content and third-party advertising displayed on Azure’s Parked Pages, and expressly disclaims any liability or responsibility to you or any third party in connection therewith.

\r\n

Changing Azure’s Default Settings.  You may change Azure’s Default Settings at any time during the term of your domain name registration.

\r\n
    \r\n
  1. Content Displaying On Your Parked Page.  You can not modify the content displaying on your Parked Page.  You may select one of the other options listed below.
  2. \r\n
  3. Participating In Domain Name Monetization.  If you wish to participate in the domain monetization potential presented by Azure’s Parked Page service, please review and consider purchasing our CashParking® service.   
  4. \r\n
  5. No Content.  If the options listed above are not acceptable to you, please contact customer support to learn what other options might be available to you.
  6. \r\n
\r\n

Return To Parked Page Default Setting Upon Domain Name Expiration.  Upon domain name expiration, and regardless of how you use your domain name during the term of your domain name registration, your domain name will automatically return to the Parked Page Default Setting described above.  As used in this paragraph, “expiration” is deemed to include any “renewal period” or “redemption period” immediately after the domain name expires, but before the domain name is returned to the registry.  Once your domain name has returned to the Parked Page Default Setting described above, the only way to opt out of the Parked Page service is to renew, redeem, or re-register your domain name in accordance with Section 2(B), Domain Name Renewal Terms, of this Agreement.   

\r\n

11. DOMAIN ADD-ONS

\r\n

Business Registration:  Business registration allows You to display additional information about the business that is the basis of Your domain name, including, but not limited to, such information as Your fax number, street address, and hours of operation.

\r\n

Certified Domains.  The certified domain service generally allow You to: (i) put a Certified Domain Validation seal on Your website; and (ii) have Your domain name listed as \"Certified\", in WHOIS lookups on our website.   The Certified Domain Validation seal renews independently of Your domain. When You renew Your domain, You must also, when necessary, separately renew Your Certified Validation seal. However, the Certified Domain Validation seal can be cancelled independently of Your domain. If the domain is cancelled, the Certified Domain associated with the cancelled domain will automatically cancel.  The Certified Domain seal is a trademark and is protected by copyright, trademark and other intellectual property laws. You may use the Certified Domain seal only in conjunction with the purchase of the Services set forth in the Agreement, and subject to the terms and conditions hereof. Other than provided for in this Agreement, You may not otherwise use, reproduce, or modify the mark for any additional promotional use, without our prior written approval. Your right to the use of the Certified Domain seal is immediately terminated upon expiration or termination of this Agreement.

\r\n

Expiration Consolidation.  You understand and acknowledge the expiration consolidation service may only be used to consolidate the expiration of .com and .net domain names. The service may not be used to consolidate domains that are on Registrar HOLD, Registry HOLD, or pending Transfer status. You acknowledge the service may only be used to push the expiration date of Your domains forward in time, at least one (1) month forward and no more than ten (10) years forward, and then, only for a period lasting less than twelve (12) months. Once the service has been used to consolidate domains, the new expiration date may not be reversed. To ensure the service is not abused or used as an alternative to renewals, you may only use the service on each domain once in any 12-month period. The service may only be used on domain names that have not passed their expiration date. In order to change the expiration date again, You will be required to renew the domain name first.  You further understand and acknowledge the service may only be used to coordinate domains where we are the registrar of record. Domains not registered with us must be transferred before we can perform the Service. 

\r\n

\r\n

Backordering/Monitoring.  You agree a domain name that has expired shall be subject first to a grace period of twelve (12) days, followed by the ICANN-mandated redemption grace period of thirty (30) days. During this period of time, the current domain name registrant may renew the domain name and retain ownership. We do not guarantee your backorder will result in you obtaining the domain name and expressly reserves the right to (a) refuse additional backorders or (b) cancel existing backorders at any time for any reason.  If your backorder is refused or cancelled, we agree to promptly refund any fees paid for such domain name backorder. The domain name may also be placed in a secondary market for resale through the Auctions® service.  After your first year of Auctions membership, you agree that unless otherwise advised, we will automatically renew your Auctions membership using the payment method you have on file for so long as your backorder credit is active. You may learn more about Auctions by visiting the Auctions website. The domain name may also be subject to a drop pool process before it is available for purchasing. You understand we and our registrar affiliates use our services, including backordering.  Therefore, the domain name may be registered with a different registrar, but can be managed through your account.  By using the Services, you will be able to, among other things:

\r\n
    \r\n
  1. Backorder any domain name under the top level domains .COM, .NET, .US, .BIZ, .INFO, .ORG, .MOBI. A backorder for a domain name will include the price of up to a one-year domain name registration. Should you successfully backorder any domain name, you will be subject to the terms and conditions of the Domain Name Registration and related agreements, which are incorporated herein by reference.
  2. \r\n
  3. Change your backorder until you obtain a domain name. You will have the opportunity to change the credit to a different domain name until you successfully capture one. After three (3) years, if the credit is not used, we reserves the right to remove the credit.
  4. \r\n
  5. Subscribe monthly to an expiring domain name list. You may also choose to purchase a subscription to a list of domain names expiring within the next five (5) days. If you subscribe to the expiring domain name list, you agree the payment method you have on file may be charged on a monthly subscription basis for the term of the Services you purchase.
  6. \r\n
  7. Select domain names off the expiring domain name list you would like to register. Each domain name you attempt to backorder will include the price of up to a one-year domain name registration, as set forth in subsection (i) above.
  8. \r\n
  9. Monitor your currently registered domain names for changes in registrar, status, expiration date or name servers at no additional cost.
  10. \r\n
  11. Subscribe to Domain Alert Pro or monitoring, which enables you to monitor any currently registered domain name, regardless of registrar, for historical tracking of status changes and designation of multiple email notification addresses.
  12. \r\n
\r\n

\r\n

\r\n

Transfer Validation. The transfer validation service is provided to help You keep Your domain name secure. By choosing to use the service, You are making an explicit and voluntary request to us to deny all attempts to transfer Your domain name to another registrar, or to move Your domain name to another account, unless You verify each request as described herein. You will provide us with a contact name, phone number and PIN for domain transfer validations. You will be contacted by us when a domain transfer is requested for a domain name in Your account. When we receive a transfer request, we will call You to verify the transfer request. If we cannot reach You with seventy-two (72) hours of receipt of the transfer request, the transfer will be denied. If You do not provide the proper PIN, the transfer will be denied. When we receive a change of account request, we will call You to verify the change request. If we cannot reach You with seventy-two (72) hours of receipt of the change request, the change will be denied. If You do not provide the proper PIN, the change will be denied. Availability of Services are subject to the terms and conditions of this Agreement and each of our policies and procedures. We shall use commercially reasonable efforts to attempt to provide certain portions of the Services on a twenty-four (24) hours a day, seven (7) days a week basis throughout the term of this Agreement and other portions of the service, during normal business hours. You acknowledge and agree that from time to time the Services may be inaccessible or inoperable for any reason, including, without limitation: (i) equipment malfunctions; (ii) periodic maintenance procedures or repairs that we may undertake from time to time; or (iii) causes beyond the reasonable control of us or that are not reasonably foreseeable by us, including, without limitation, interruption or failure of telecommunication or digital transmission links, hostile network attacks, network congestion or other failures. You acknowledge and agree that we has no control over the availability of the service on a continuous or uninterrupted basis.

\r\n

\r\n

12. PRE-REGISTRATIONS

\r\n

If you submit an application for pre-registration of a domain name, Azure does not guarantee that the name will be secured for you, or that you will have immediate access to the domain name if secured.  Azure may use third-party service providers for the pre-registration services.

\r\n

13. PROVISIONS SPECIFIC TO .BIZ REGISTRATIONS

\r\n

Domain Name Dispute Policy.  If you reserved or registered a .BIZ domain name through us, in addition to our Dispute Resolution Policy, you hereby acknowledge that you have read and understood and agree to be bound by the terms and conditions of the Restrictions Dispute Resolution Policy applicable to the .biz TLD.

\r\n

The RDRP sets forth the terms under which any allegation that a domain name is not used primarily for business or commercial purposes shall be enforced on a case-by-case basis by an independent ICANN-accredited dispute provider. Registry Operator will not review, monitor, or otherwise verify that any particular domain name is being used primarily for business or commercial purposes or that a domain name is being used in compliance with the SUDRP or UDRP processes.

\r\n

One Year Registration.  If you are registering a .BIZ domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .BIZ domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .BIZ domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

\r\n

14. PROVISIONS SPECIFIC TO .INFO REGISTRATIONS 

\r\n

One Year Registration.  If you are registering a .INFO domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .INFO domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .INFO domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

15. PROVISIONS SPECIFIC TO .MOBI REGISTRATIONS 

\r\n

Instant Mobilizer. You are hereby granted a personal, revocable, non-exclusive, non-transferable, non-assignable, non-sublicensable license to use the Instant Mobilizer service (“Service”), provided, however, You abide by the terms and conditions set forth. You shall not alter, modify, adapt or translate the whole or part of the Service in any way whatsoever. You may not create derivative works based on the Service. You may not rent, lease, assign, dispose of, novate, sub-license or otherwise transfer any of its rights to use the Service to any third party.  In the event that the volume of traffic to You from Your use of the Service is sufficient so as to jeopardize the provision of Service for other end users, we and our licensors reserve the right to, at its sole discretion, permanently or temporarily, discontinue Your use of the Service. For the avoidance of doubt, the volume of traffic generated by You should not exceed two thousand (2,000) page views per day.  You acknowledge and agree the text \"Instant Mobilizer from dotMobi\" or equivalent, will be inserted at the footer of Your site.  In the event a dotMobi domain to which the Service is being provided is transferred to another domain name registrar, the Service will be interrupted on that dotMobi domain, and Service will not be restored if the new registrar does not offer the Service. 

\r\n

\r\n

16. PROVISIONS SPECIFIC TO .NAME REGISTRATIONS 

\r\n

\r\n

17. PROVISIONS SPECIFIC TO .REISE REGISTRATIONS

\r\n

Domain Names registered in .REISE should be used for purposes dedicated to travel topics within six months following initial Registration, e.g. utilized on the Internet or otherwise used to perform a function.

\r\n

18. PROVISIONS SPECIFIC TO .SEXY REGISTRATIONS

\r\n

You shall not permit content unsuitable for viewing by a minor to be viewed from the main or top-level directory of a .SEXY domain name. For purposes of clarity, content viewed at the main or top-level directory of a .SEXY domain name is the content immediately visible if a user navigates to http://example.sexy or http://www.example.sexy. No restrictions apply to the content at any other page or subdirectory addressed by a .SEXY Registered Name. 

\r\n

19. COUNTRY CODE TOP LEVEL DOMAINS

\r\n

You represent and warrant that you meet the eligibility requirements of each ccTLD you apply for. You further agree to be bound by any registry rules, policies, and agreements for that particular ccTLD. These may include, but are not limited to, agreeing to indemnify the ccTLD provider, limiting the liability of the ccTLD provider, and requirements that any disputes be resolved under that particular country's laws.

\r\n

(A) PROVISIONS SPECIFIC TO .AU REGISTRATIONS 

\r\n

.au Registrations (to include com.au, net.au and org.au) are governed by the following additional terms and conditions:

\r\n

auDA. auDA means .au Domain Administration Limited ACN 079 009 340, the .au domain names administrator.  The Registrar acts as agent for auDA for the sole purpose, but only to the extent necessary, to enable auDA to receive the benefit of rights and covenants conferred to it under this Agreement. auDA is an intended third party beneficiary of this agreement.

\r\n

auDA Published Policy.  auDA Published Policies means those specifications and policies established and published by auDA from time to time at http://www.auda.org.au.  You must comply with all auDA Published Policies, as if they were incorporated into, and form part of, this Agreement. In the event of any inconsistency between any auDA Published Policy and this Agreement, then the auDA Published Policy will prevail to the extent of such inconsistency.  You acknowledge that under the auDA Published Policies: (1) there are mandatory terms and conditions that apply to all domain names; (2) licences, and such terms and conditions are incorporated into, and form part of, this Agreement; (3) You are bound by, and must submit to, the .au Dispute Resolution Policy; and (4) auDA may delete or cancel the registration of a .au domain name. 

\r\n

auDA's Liabilities and Indemnity.  To the fullest extent permitted by law, auDA will not be liable to Registrant for any direct, indirect, consequential, special, punitive or exemplary losses or damages of any kind (including, without limitation, loss of use, loss or profit, loss or corruption of data, business interruption or indirect costs) suffered by Registrant arising from, as a result of, or otherwise in connection with, any act or omission whatsoever of auDA, its employees, agents or contractors. Registrant agrees to indemnify, keep indemnified and hold auDA, its employees, agents and contractors harmless from all and any claims or liabilities, arising from, as a result of, or otherwise in connection with, Registrant's registration or use of its .au domain name. Nothing in this document is intended to exclude the operation of Trade Practices Act 1974.

\r\n

(B) PROVISIONS SPECIFIC TO .CA REGISTRATIONS

\r\n

You acknowledge and agree that registration of your selected domain name in your first application to CIRA shall not be effective until you have entered into and agreed to be bound by CIRA's Registrant Agreement.

\r\n

CIRA Certified Registrar.  The registrar shall immediately give notice to you in the event that it is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated, or the Registrar Agreement between CIRA and the Registrar is terminated or expires. CIRA may post notice of such suspension, termination, or expiry on its website and may, if CIRA deems appropriate, give notice to the registrants thereof. In the event that the registrar is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated or in the event the Registrar Agreement between CIRA and the Registrar is terminated or expires, you shall be responsible for changing your Registrar of Record to a new CIRA Certified Registrar within thirty (30) days of the earlier of notice thereof being given to you by (i) the Registrar or (ii) CIRA in accordance with CIRA's then current Registry PRP; provided, however, that if any of your domain name registrations are scheduled to expire within thirty (30) days of the giving of such notice, then you shall have thirty (30) days from the anniversary date of the registration(s), to register with a new CIRA certified registrar and to renew such domain name registration(s) in accordance with the Registry PRP.

\r\n

You acknowledge and agree that should there be insufficient funds prepaid by the registrar in the CIRA Deposit Account to be applied in payment of any fees, CIRA may in its sole discretion stop accepting applications for domain name registrations from the registrar, stop effecting registrations of domain names and transfers, renewals, modifications, and cancellations requested by the registrar and stop performing other billable transactions requested by the registrar not paid in full and CIRA may terminate the Registrar Agreement between CIRA and the Registrar.

\r\n

.CA ASCII and IDN domain variants are bundled and reserved for a single registrant.  Registrants are not required to register all variants in a bundle, but all registered variants must be registered and managed at a single registrar. Each variant registered will incur a registration fee.  In addition, when registering multiple .CA domain (ASCII and IDN) variants in a bundle, your registrant information must be identical.  If variants are registered at other registrars or if registrant information does not match, it may result in an \"unavailable\" search result, delayed or failed registration. If information does not match, validation is required and may take up to seven business days and delay availability of domain. 

\r\n

(C) PROVISIONS SPECIFIC TO .CN REGISTRATIONS 

\r\n

.CN is a restricted TLD – applications are subject to both a domain name check and real name verification as required by the People’s Republic of China.  Registrations in .CN are therefore subject to the following additional terms:

\r\n

Verification, Registration and Activation.  If a domain name is not permitted to be registered by the Chinese government, as determined by us, the Registry Operator and/or a 3rd party provider utilized for such services and determinations, in either party’s discretion, the application for registration will not be successful.  In such event, the name will be deleted and you will be eligible for a refund as further described below.

\r\n

If permitted, then the Registration may proceed, but a .CN domain name may not be activated (i.e., it will not resolve in the Internet) unless and until you have submitted (via the process described during registration) valid documents required of us and the Registry to perform real name verification.  The following are acceptable forms of documents for the purpose of verification:

\r\n
    \r\n
  • China: Resident ID, temporary resident ID, business license or organization code certificate
  • \r\n
  • Hong Kong/Macau: Resident ID, driver’s license, passport or business license
  • \r\n
  • Singapore: Driver’s license, passport or business license
  • \r\n
  • Taiwan: Resident ID, driver’s license or business license
  • \r\n
  • Other Countries/Regions: Driver’s license or passport
  • \r\n
\r\n

Documents submitted to us are used by us and shared with the Registry solely for the purpose of real name verification, and are otherwise subject to our Privacy Policy.  By registering a .CN domain, you expressly agree that your data may be stored on servers in the U.S., or otherwise outside of the People's Republic of China.

\r\n

Refunds.  Refunds for .CN Registrations will only be allowed where (i) registration of the applied for domain name is not permitted by the Chinese government; or (ii) you notify us of your intent to cancel for any reason within the first five (5) days after the Registration (i.e., after it is deemed permissible by the Chinese government).  For the avoidance of doubt, refunds will not be permitted under any circumstances after five (5) days from the date of Registration, including, for example, in the event real name verification is not successful or if the Chinese government determines after Registration that the domain name should not have been registered (and directs us to delete).

\r\n

(D) PROVISIONS SPECIFIC TO .JP REGISTRATIONS

\r\n

Registration Restrictions.  You represent and warrant that you have a local presence in Japan with a home or office address. You agree that certain domain names are reserved and can only be registered by certain parties. These include: (i) TLDs, other than ccTLDs, as determined by ICANN; (ii) geographical-type .JP domain names that are defined as metropolitan, prefectural, and municipal labels; (iii) names of primary and secondary educational organizations; (iv) names of organizations related to Internet management; (v) names required for .JP domain name operations; and (vi) character strings which may be confused with ASCII-converted Japanese domain names. The complete list of .JP Reserved Domains is available here

\r\n

20. ENGLISH LANGUAGE CONTROLS

\r\n

This Agreement, along with all policies and the applicable product agreements identified above and incorporated herein by reference (collectively, the “Agreement”), is executed in the English language. To the extent any translation is provided to you, it is provided for convenience purposes only, and in the event of any conflict between the English and translated version, where permitted by law, the English version will control and prevail. Where the translated version is required to be provided to you and is to be considered binding by law (i) both language versions shall have equal validity, (ii) each party acknowledges that it has reviewed both language versions and that they are substantially the same in all material respects, and (iii) in the event of any discrepancy between these two versions, the translated version may prevail, provided that the intent of the Parties has been fully taken into consideration. 

\n
\n
\n\nRevised: 10/6/17
\nCopyright © 2000-2017 All Rights Reserved.\n
\n
\n
", + "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=reg_sa&pl_id=510456" + }, + { + "agreementKey": "DNPA", + "title": "Domain Name Proxy Agreement", + "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Proxy Agreement\n
\n

Last Revised: October 25, 2017

\n

Please read this Domain Name Proxy Agreement (\"Agreement\") carefully. By using the Services and/or website of Domains By Proxy, LLC, a Delaware limited liability company (\"DBP\"), You (as defined below) agree to all the terms and conditions set forth both herein and in the DBP privacy policy, which is incorporated by reference and can be found by clicking here.  You acknowledge that DBP may amend this Agreement at any time upon posting the amended terms on its website, and that any new, different or additional features changing the services provided by DBP will automatically be subject to this Agreement. If You do not agree to be bound by, or if You object to, the terms and conditions of this Agreement and any amendments hereto, do not use or access DBP's services. Continued use of DBP's services and its website after any such changes to this Agreement have been posted, constitutes Your acceptance of those changes.

\r\n

This Agreement is by and between DBP and you, your heirs, assigns, agents and contractors (\"You\") and is made effective as of the date of electronic execution. This Agreement sets forth the terms and conditions of Your relationship with DBP and Your use of DBP's services and represents the entire Agreement between You and DBP. By using DBP's Services, You acknowledge that You have read, understand and agree to be bound by all the terms and conditions of this Agreement, and You further agree to be bound by the terms of this Agreement for transactions entered into by:

\r\n
    \r\n
  1. You on Your behalf;
  2. \r\n
  3. Anyone acting as Your agent; and
  4. \r\n
  5. Anyone who uses the account You have established with DBP, whether or not the transactions were on Your behalf and/or authorized by You.
  6. \r\n
\r\n

You agree You will be bound by representations made by third parties acting on Your behalf, which either use or purchase services from DBP. You further agree that DBP will not be bound by statements of a general nature on DBP's website or DBP promotional materials. You further agree to abide by the terms and conditions promulgated by the Internet Corporation for Assigned Names and Numbers (\"ICANN\") (including the Uniform Domain Name Dispute Resolution Policy (\"Dispute Resolution Policy\") and Your Registrar (i.e., the ICANN-accredited person or entity through which You register a domain name).

\r\n

1. description of DBP's private registration services

\r\n

When You subscribe to DBP's private registration service through a DBP-affiliated Registrar, DBP will display its contact information in the publicly available \"Whois\" directory in place of Your information. DBP shall keep Your name, postal address, email address, phone and fax numbers confidential, subject to Section 4 of this Agreement. The following information (and not Your personal information) will be made publicly available in the \"Whois\" directory as determined by ICANN policy:

\r\n
    \r\n
  1. DBP's name as the proxy Registrant of the domain name and a proxy email address, phone number and postal address for the proxy Registrant's contact information;
  2. \r\n
  3. A proxy postal address and phone number for the domain name registration's technical contact;
  4. \r\n
  5. A proxy email address, postal address and phone number for the domain name registration's administrative contact;
  6. \r\n
  7. A proxy email address, postal address and phone number for the domain's name registration's billing contact;
  8. \r\n
  9. The primary and secondary domain name servers You designate for the domain name;
  10. \r\n
  11. The domain name's original date of registration and expiration date of the registration; and
  12. \r\n
  13. The identity of the Registrar.
  14. \r\n
\r\n

2. full benefits of domain registration retained by you

\r\n

Although DBP will show in the \"Whois\" directory as the Registrant of each domain name registration You designate, You will retain the full benefits of domain name registration with respect to each such domain name registration, including, subject to Section 4 below:

\r\n
    \r\n
  1. The right to sell, transfer or assign each domain name registration, which shall require cancellation of the DBP services associated with each such domain name registration;
  2. \r\n
  3. The right to control the use of each domain name registration, including designating the primary and secondary domain name servers to which each domain name points;
  4. \r\n
  5. The right to cancel each domain name registration;
  6. \r\n
  7. The right to cancel the DBP services associated with each domain name registration and/or Your privacy services with DBP so that Your contract information is listed in the \"Whois\" directory; and
  8. \r\n
  9. The right to renew each domain name registration upon its expiration, subject to Your Registrar's applicable rules and policies.
  10. \r\n
\r\n

3. PERSONAL INFORMATION AND your notification obligations; representation and warranties; ACCOUNT SECURITY

\r\n

Personal Information and Your Notification Obligations 

\r\n

You agree that for each domain name for which you use DBP services, You will provide accurate and current information as to:

\r\n
    \r\n
  1. Your name, the email address, postal address, phone and fax numbers for the domain name registration's Registrant contact;
  2. \r\n
  3. The email address, postal address, phone and fax numbers for the domain name registration's technical contact;
  4. \r\n
  5. The email address, postal address, phone and fax numbers for the domain name registration's administrative contact;
  6. \r\n
  7. The email address, postal address, phone and fax numbers for the domain name registration's billing contact; and
  8. \r\n
  9. You agree to provide government issued photo identification and/or government issued business identification as required for verification of identity when requested.
  10. \r\n
\r\n

You agree to:

\r\n
    \r\n
  1. Notify DBP within three (3) calendar days when any of the personal information You provided upon subscribing to DBP's services, changes;
  2. \r\n
  3. Respond within three (3) calendar days to any inquiries made by DBP to determine the validity of personal information provided by You; and
  4. \r\n
  5. Timely respond to email messages DBP sends to You regarding correspondence DBP has received that is either addressed to or involves You and/or Your domain name registration, as more fully set forth in Section 5(c) below.
  6. \r\n
  7. To allow DBP to act as your Designated Agent (as that term is defined below) in instances when DBP services are added to or cancelled from your domain name and for the purpose of facilitating a change of registrant request (as further described below). 
  8. \r\n
\r\n

It is Your responsibility to keep Your personal information current and accurate at all times.

\r\n

Renewals

\r\n

You agree DBP will arrange for Your Registrar to charge the credit card You have on file with the Registrar, at the Registrar's then current rates.

\r\n

If for any reason DBP and/or the Registrar for Your domain name is unable to charge Your credit card for the full amount of the service provided, or if DBP and/or the Registrar is charged back for any fee it previously charged to the credit card You provided, You agree that DBP and/or the Registrar may, without notice to You, pursue all available remedies in order to obtain payment, including but not limited to immediate cancellation of all services DBP provides to You.

\r\n

Representations and Warranties

\r\n

You warrant that all information provided by You to DBP is truthful, complete, current and accurate. You also warrant that You are using DBP's private registration services in good faith and You have no knowledge of Your domain name infringing upon or conflicting with the legal rights of a third party or a third party's trademark or trade name. You also warrant the domain name being registered by DBP on Your behalf will not be used in connection with any illegal activity, or in connection with the transmission of Spam, or that contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable or, disrupting, damaging or limiting the functionality of any software or hardware.

\r\n

Account Security

\r\n

You agree You are entirely responsible for maintaining the confidentiality of Your customer number/login ID and password (\"Account Access Information\").  You agree to notify DBP immediately of any unauthorized use of Your account or any other breach of security.  You agree DBP will not be liable for any loss that You may incur as a result of someone else using Your Account Access Information, either with or without Your knowledge.  You further agree You could be held liable for losses incurred by DBP or another party due to someone else using Your Account Access Information.  For security purposes, You should keep Account Access Information in a secure location and take precautions to prevent others from gaining access to Your Account Access Information.  You agree that You are entirely responsible for all activity in Your account, whether initiated by You, or by others.  DBP specifically disclaims liability for any activity in Your account, regardless of whether You authorized the activity.

\r\n

Designated Agency and Change of Registrant Information

\r\n

“DESIGNATED AGENT” MEANS AN INDIVIDUAL OR ENTITY THAT THE PRIOR REGISTRANT OR NEW REGISTRANT EXPLICITLY AUTHORIZES TO APPROVE A CHANGE OF REGISTRANT REQUEST ON ITS BEHALF.  IN THE CASE OF DBP SERVICES, A CHANGE OF REGISTRANT REQUEST MAY ALSO ARISE DUE TO INSTANCES WHERE DBP SERVICES ARE ADDED, OR REMOVED, FROM A DOMAIN NAME.  FOR THE PURPOSE OF FACILITATING ANY SUCH CHANGE REQUEST, AND IN ACCORDANCE WITH ICANN'S CHANGE OF REGISTRANT POLICY, YOU AGREE TO APPOINT DBP AS YOUR DESIGNATED AGENT FOR THE SOLE PURPOSE OF EXPLICITLY CONSENTING TO MATERIAL CHANGES OF REGISTRATION CONTACT INFORMATION ON YOUR BEHALF.

\r\n

4. DBP's rights to deny, suspend, terminate service and to disclose your personal information

\r\n

You understand and agree that DBP has the absolute right and power, in its sole discretion and without any liability to You whatsoever, to:

\r\n
    \r\n
  1. Cancel the privacy service (which means that Your information will be available in the \"Whois\" directory) and/or reveal Your name and personal information that You provided to DBP:  
    A. When required by law, in the good faith belief that such action is necessary in order to conform to the edicts of the law or in the interest of public safety;
    B. To comply with legal process served upon DBP or in response to a reasonable threat of litigation against DBP (as determined by DBP in its sole and absolute discretion); or
    C. To comply with ICANN rules, policies, or procedures.
  2. \r\n
  3. Resolve any and all third party claims, whether threatened or made, arising out of Your use of a domain name for which DBP is the registrant listed in the \"Whois\" directory on Your behalf; or
  4. \r\n
  5. Take any other action DBP deems necessary:
    A. In the event you breach any provision of this Agreement or the DBP Anti-Spam Policy;
    B. To protect the integrity and stability of, and to comply with registration requirements, terms, conditions and policies of, the applicable domain name Registry and/or Registry Provider;
        C. To comply with any applicable laws, government rules or requirements, subpoenas, court orders or requests of law enforcement; 
    D. To comply with ICANN's Dispute Resolution Policy or ICANN's Change of Registrant Policy;
    E. To avoid any financial loss or legal liability (civil or criminal) on the part of DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, officers, directors and employees;
    F. If the domain name for which DBP is the registrant on Your behalf violates or infringes a third party's trademark, trade name or other legal rights; and
    G. If it comes to DBP's attention that You are using DBP's services in a manner (as determined by DBP in its sole and absolute discretion) that:
  6. \r\n
\r\n
\r\n
    \r\n
  • Is illegal, or promotes or encourages illegal activity;
  • \r\n
  • Promotes, encourages or engages in child pornography or the exploitation of children;
  • \r\n
  • Promotes, encourages or engages in terrorism, violence against people, animals, or property;
  • \r\n
  • Promotes, encourages or engages in any spam or other unsolicited bulk email, or computer or network hacking or cracking;
  • \r\n
  • Violates the Ryan Haight Online Pharmacy Consumer Protection Act of 2008 or similar legislation, or promotes, encourages or engages in the sale or distribution of prescription medication without a valid prescription;  
  • \r\n
  • Infringes on the intellectual property rights of another User or any other person or entity;
  • \r\n
  • Violates the privacy or publicity rights of another User or any other person or entity, or breaches any duty of confidentiality that you owe to another User or any other person or entity;
  • \r\n
  • Interferes with the operation of DBP services;
  • \r\n
  • Contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable of, disrupting, damaging or limiting the functionality of any software or hardware; or
  • \r\n
  • Contains false or deceptive language, or unsubstantiated or comparative claims, regarding DBP or its services.
  • \r\n
\r\n
\r\n

You further understand and agree that if DBP is named as a defendant in, or investigated in anticipation of, any legal or administrative proceeding arising out of Your domain name registration or Your use of DBP's services, Your private registration service may be canceled, which means the domain name registration will revert back to You and Your identity will therefore be revealed in the Whois directory as Registrant.

\r\n

In the event:

\r\n
    \r\n
  1. DBP takes any of the actions set forth in subsection i, ii, or iii above or section 5; and/or
  2. \r\n
  3. You elect to cancel DBP's services for any reason --
  4. \r\n
\r\n

Neither DBP nor your Registrar will refund any fees paid by You whatsoever.

\r\n

5. communications forwarding

\r\n

a. Correspondence Forwarding

\r\n

Inasmuch as DBP's name, postal address and phone number will be listed in the Whois directory, You agree DBP will review and forward communications addressed to Your domain name that are received via email, certified or traceable courier mail (such as UPS, FedEx, or DHL), or first class U.S. postal mail. You specifically acknowledge DBP will not forward to You first class postal mail (other than legal notices), \"junk\" mail or other unsolicited communications (whether delivered through email, fax, postal mail or telephone), and You further authorize DBP to either discard all such communications or return all such communications to sender unopened. You agree to waive any and all claims arising from Your failure to receive communications directed to Your domain name but not forwarded to You by DBP.

\r\n

b. Email Forwarding

\r\n

The Whois directory requires an email address for every purchased domain name registration. When You purchase a private domain registration, DBP creates a private email address for that domain name, \"@domainsbyproxy.com\". Thereafter, when messages are sent to that private email address, DBP handles them according to the email preference You selected for that particular domain name. You have three (3) email preferences from which to choose. You can elect to:

\r\n
    \r\n
  1. Have all of the messages forwarded;
  2. \r\n
  3. Have all of the messages filtered for Spam and then forwarded; or
  4. \r\n
  5. Have none of the messages forwarded.
  6. \r\n
\r\n

As with all communications, You agree to waive any and all claims arising from Your failure to receive email directed to Your domain name but not forwarded to You by DBP.

\r\n

c. Notifications Regarding Correspondence and Your Obligation to Respond

\r\n

When DBP receives certified or traceable courier mail or legal notices addressed to Your domain name, in most cases, DBP will attempt to forward the mail to you via email. If You do not respond to the DBP email and/or the correspondence DBP has received regarding Your domain name registration concerns a dispute of any kind or otherwise requires immediate disposition, DBP may immediately reveal Your identity and/or cancel the DBP private registration service regarding either the domain name registration(s) in question. This means the Whois directory will revert to displaying Your name, postal address, email address and phone number that you provided to DBP.

\r\n

d. Additional Administrative Fees

\r\n

DBP reserves the right to charge You reasonable \"administrative fees\" or \"processing fees\" for (i)  tasks DBP may perform outside the normal scope of its Services, (ii) additional time and/or costs DBP may incur in providing its Services, and/or (iii) Your non-compliance with the Agreement (as determined by DBP in its sole and absolute discretion). Typical administrative or processing fee scenarios include, but are not limited to, (i) customer service issues that require additional personal time and attention; (ii) disputes that require accounting or legal services, whether performed by DBP staff or by outside firms retained by DBP; (iii) recouping any and all costs and fees, including the cost of Services, incurred by DBP as the result of chargebacks or other payment disputes brought by You, Your bank or Payment Method processor.  These administrative fees or processing fees will be billed to the Payment Method You have on file with Your Registrar.

\r\n

You agree to waive the right to trial by jury in any proceeding that takes place relating to or arising out of this Agreement.

\r\n

6. limitations of liability

\r\n

UNDER NO CIRCUMSTANCES SHALL DBP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, PUNITIVE, SPECIAL, OR CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER RELATED TO THIS AGREEMENT, YOUR DOMAIN NAME REGISTRATION, DBP'S SERVICES, USE OR INABILITY TO USE THE DBP WEBSITE OR THE MATERIALS AND CONTENT OF THE WEBSITE OR ANY OTHER WEBSITES LINKED TO THE DBP WEBSITE OR YOUR PROVISION OF ANY PERSONALLY IDENTIFIABLE INFORMATION TO DBP OR ANY THIRD PARTY. THIS LIMITATION APPLIES REGARDLESS OF WHETHER THE ALLEGED LIABILITY IS BASED ON CONTRACT, TORT, WARRANTY, NEGLIGENCE, STRICT LIABILITY OR ANY OTHER BASIS, EVEN IF DBP HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR SUCH DAMAGES WERE REASONABLY FORESEEABLE. BECAUSE CERTAIN JURISDICTIONS DO NOT PERMIT THE LIMITATION OR ELIMINATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, DBP'S LIABILITY IN SUCH JURISDICTIONS SHALL BE LIMITED TO THE SMALLEST AMOUNT PERMITTED BY LAW.

\r\n

YOU FURTHER UNDERSTAND AND AGREE THAT DBP DISCLAIMS ANY LOSS OR LIABILITY RESULTING FROM:

\r\n
    \r\n
  1. THE INADVERTENT DISCLOSURE OR THEFT OF YOUR PERSONAL INFORMATION;
  2. \r\n
  3. ACCESS DELAYS OR INTERRUPTIONS TO OUR WEBSITE OR THE WEBSITES OF OUR AFFILIATED REGISTRARS;
  4. \r\n
  5. DATA NON-DELIVERY OF MIS-DELIVERY BETWEEN YOU AND DBP;
  6. \r\n
  7. THE FAILURE FOR WHATEVER REASON TO RENEW A PRIVATE DOMAIN NAME REGISTRATION;
  8. \r\n
  9. THE UNAUTHORIZED USE OF YOUR DBP ACCOUNT OR ANY OF DBP'S SERVICES;
  10. \r\n
  11. ERRORS, OMISSIONS OR MISSTATEMENTS BY DBP;
  12. \r\n
  13. DELETION OF, FAILURE TO STORE, FAILURE TO PROCESS OR ACT UPON EMAIL MESSAGES FORWARDED TO EITHER YOU OR YOUR PRIVATE DOMAIN NAME REGISTRATION;
  14. \r\n
  15. PROCESSING OF UPDATED INFORMATION REGARDING YOUR DBP ACCOUNT; AND/OR
  16. \r\n
  17. ANY ACT OR OMISSION CAUSED BY YOU OR YOUR AGENTS (WHETHER AUTHORIZED BY YOU OR NOT).
  18. \r\n
\r\n

7. indemnity

\r\n

You agree to release, defend, indemnify and hold harmless DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, directors, officers and employees and Your Registrar, from and against any and all claims, demands, liabilities, losses, damages or costs, including reasonable attorneys' fees, arising out of or related in any way to this Agreement, the services provided hereunder by DBP, the DBP website, Your account with DBP, Your use of Your domain name registration, and/or disputes arising in connection with the dispute policy.

\r\n

8. DBP warranty disclaimer

\r\n

DBP, ITS PARENT COMPANIES, SUBSIDIARIES, AFFILIATES, SHAREHOLDERS, AGENTS, DIRECTORS, OFFICERS, AND EMPLOYEES EXPRESSLY DISCLAIM ALL REPRESENTATIONS AND WARRANTIES OF ANY KIND IN CONNECTION WITH THIS AGREEMENT, THE SERVICE PROVIDED HEREUNDER, THE DBP WEBSITE OR ANY WEBSITES LINKED TO THE DBP WEBSITE, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL DBP SERVICES, AS WELL AS THE DBP WEBSITE, ARE PROVIDED \"AS IS\". YOUR SUBSCRIPTION TO AND USE OF DBP'S SERVICES AND ITS WEBSITE ARE ENTIRELY AT YOUR RISK. SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OF IMPLIED WARRANTIES, IN WHICH EVENT THE FOREGOING DISCLAIMER MAY NOT APPLY TO YOU.

\r\n

9. copyright and trademark

\r\n

You understand and agree that all content and materials contained in this Agreement, the Privacy Policy and the DBP website found here , are protected by the various copyright, patent, trademark, service mark and trade secret laws of the United States, as well as any other applicable proprietary rights and laws, and that DBP expressly reserves its rights in and to all such content and materials.

\r\n

You further understand and agree You are prohibited from using, in any manner whatsoever, any of the afore-described content and materials without the express written permission of DBP. No license or right under any copyright, patent, trademark, service mark or other proprietary right or license is granted to You or conferred upon You by this Agreement or otherwise.

\r\n

10. miscellaneous provisions

\r\n

a. Severability; Construction; Entire Agreement

\r\n

If any part of this Agreement shall be held to be illegal, unenforceable or invalid, in whole or in part, such provision shall be modified to the minimum extent necessary to make it legal, enforceable and valid, and the legality, enforceability and validity of the remaining provisions of this Agreement shall not be affected or impaired. The headings herein will not be considered a part of this Agreement. You agree this Agreement, including the policies it incorporates by reference, constitute the complete and only Agreement between You and DBP regarding the services contemplated herein.

\r\n

b. Governing Law; Venue; Waiver Of Trial By Jury

\r\n

This Agreement shall be governed in all respects by the laws and judicial decisions of Maricopa County, Arizona, excluding its conflicts of laws rules. Except as provided immediately below, You agree that any action relating to or arising out of this Agreement, shall be brought exclusively in the courts of Maricopa County, Arizona. For the adjudication of domain name registration disputes, you agree to submit to the exclusive jurisdiction and venue of the U.S. District Court for the District of Arizona located in Phoenix, Arizona. You agree to waive the right to trial by jury in any proceeding, regardless of venue, that takes place relating to or arising out of this Agreement.

\r\n

c. Notices

\r\n

All notices from DBP to You will be sent to the email address You provided to DBP. Notices by email shall be deemed effective twenty-four (24) hours after the email is sent by DBP, unless DBP receives notice that the email address is invalid, in which event DBP may give You notice via first class or certified mail, return receipt requested. All notices from You to DBP shall be sent via certified mail, return receipt requested or traceable courier to:

\r\n
      Domains By Proxy, LLC
      Attn: General Counsel
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

Notices sent via certified mail or traceable courier shall be deemed effective five (5) days after the date of mailing.

\r\n

d. Insurance

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's negligent actions (and absent fraud or other negligent or willful misconduct committed by a third party), You may be insured against such loss through DBP's Professional Liability Insurance Policy, which is currently underwritten by American International Insurance Company. Of course, every claim is subject to the then-carrier's investigation into the facts and circumstances surrounding such claim. In the event You have reason to believe that circumstances exist which warrant the filing of an insurance claim, please send a written notice (specifying the basis for such claim), via certified mail, return receipt requested, to:

\r\n
      Domains By Proxy, LLC
      Attn: Insurance Claims
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

e. Indemnification

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's willful misconduct, Your Registrar (the \"Indemnifying Party\") will indemnify and hold You harmless against any losses, damages or costs (including reasonable attorneys' fees) resulting from any claim, action, proceeding, suit or demand arising out of or related to the loss of Your domain name registration. Such indemnification obligations under this Section 10(e) are conditioned upon the following:

\r\n
    \r\n
  1. That You promptly give both DBP and the Indemnifying Party written notice of the claim, demand, or action and provide reasonable assistance to the Indemnifying Party, at its cost and expense, in connection therewith, and
  2. \r\n
  3. That the Indemnifying Party has the right, at its option, to control and direct the defense to any settlement of such claim, demand, or action.
  4. \r\n
\r\n

Any notice concerning indemnification shall, with respect to DBP, be sent in accordance with Section 10(c) of this Agreement. With respect to Your Registrar, notices regarding indemnification should be sent in accordance with the notification provisions contained in Your Registrar's Domain Name Registration Agreement.

\r\n

f. Term of Agreement; Survival

\r\n

The terms of this Agreement shall continue in full force and effect as long as DBP is the Registrant for any domain name on Your behalf. Sections 5 (Communications Forwarding), 6 (Limitation of Liability), 7 (Indemnity), 8 (Warranty Disclaimer) and 10 (Miscellaneous Provisions) shall survive any termination or expiration of this Agreement.

\n
\n
\n\nRevised: 10/25/17
\nCopyright © 2003-2017 All Rights Reserved.\n
\n
\n
", + "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=domain_nameproxy&pl_id=510456" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListTopLevelDomains.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListTopLevelDomains.json index b1ef323ac80f..aaf7653cf7b4 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListTopLevelDomains.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/ListTopLevelDomains.json @@ -1,105 +1,105 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "api-version": "2015-04-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", - "name": "com", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "location": "global", - "properties": { - "name": "com", - "privacy": true - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/net", - "name": "net", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "location": "global", - "properties": { - "name": "net", - "privacy": true - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.uk", - "name": "co.uk", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "location": "global", - "properties": { - "name": "co.uk", - "privacy": false - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org", - "name": "org", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "location": "global", - "properties": { - "name": "org", - "privacy": true - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/nl", - "name": "nl", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "location": "global", - "properties": { - "name": "nl", - "privacy": true - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/in", - "name": "in", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "location": "global", - "properties": { - "name": "in", - "privacy": false - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/biz", - "name": "biz", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "location": "global", - "properties": { - "name": "biz", - "privacy": true - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org.uk", - "name": "org.uk", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "location": "global", - "properties": { - "name": "org.uk", - "privacy": false - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.in", - "name": "co.in", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "location": "global", - "properties": { - "name": "co.in", - "privacy": false - } - } - ] + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "api-version": "2015-04-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", + "name": "com", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "location": "global", + "properties": { + "name": "com", + "privacy": true } - } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/net", + "name": "net", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "location": "global", + "properties": { + "name": "net", + "privacy": true + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.uk", + "name": "co.uk", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "location": "global", + "properties": { + "name": "co.uk", + "privacy": false + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org", + "name": "org", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "location": "global", + "properties": { + "name": "org", + "privacy": true + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/nl", + "name": "nl", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "location": "global", + "properties": { + "name": "nl", + "privacy": true + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/in", + "name": "in", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "location": "global", + "properties": { + "name": "in", + "privacy": false + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/biz", + "name": "biz", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "location": "global", + "properties": { + "name": "biz", + "privacy": true + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org.uk", + "name": "org.uk", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "location": "global", + "properties": { + "name": "org.uk", + "privacy": false + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.in", + "name": "co.in", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "location": "global", + "properties": { + "name": "co.in", + "privacy": false + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/RenewDomain.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/RenewDomain.json index a202171c0e01..7dd7d38a541c 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/RenewDomain.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2015-04-01/examples/RenewDomain.json @@ -1,13 +1,13 @@ { - "parameters": { - "api-version": "2015-04-01", - "subscriptionId": "3dddfa4f-cedf-4dc0-ba29-b6d1a69ab545", - "resourceGroupName": "RG", - "domainName": "example.com" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } + "parameters": { + "api-version": "2015-04-01", + "subscriptionId": "3dddfa4f-cedf-4dc0-ba29-b6d1a69ab545", + "resourceGroupName": "RG", + "domainName": "example.com" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } } diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/DomainRegistrationProvider.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/DomainRegistrationProvider.json index 468f07256569..2f7b35bfe6d2 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/DomainRegistrationProvider.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/DomainRegistrationProvider.json @@ -88,4 +88,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/Domains.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/Domains.json index 4510c3098001..1dc28f373b90 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/Domains.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/Domains.json @@ -1456,4 +1456,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/TopLevelDomains.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/TopLevelDomains.json index ea3b1ce3199b..6ba678761fa6 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/TopLevelDomains.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/TopLevelDomains.json @@ -296,4 +296,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/GetTopLevelDomain.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/GetTopLevelDomain.json index cb0184d4d6fc..321b4f98e46a 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/GetTopLevelDomain.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/GetTopLevelDomain.json @@ -1,21 +1,21 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "api-version": "2018-02-01", - "name": "com" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", - "name": "com", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "properties": { - "name": "com", - "privacy": true - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "api-version": "2018-02-01", + "name": "com" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", + "name": "com", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "properties": { + "name": "com", + "privacy": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListOperations.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListOperations.json index 28a72da606b5..63aaf7cdb3d5 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListOperations.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListOperations.json @@ -1,104 +1,104 @@ { - "parameters": { - "api-version": "2018-02-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "name": "Microsoft.DomainRegistration/domains/Read", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain", - "operation": "Get Domains", - "description": "Get the list of domains" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/domains/Write", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain", - "operation": "Add or Update Domain", - "description": "Add a new Domain or update an existing one" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/domains/Delete", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain", - "operation": "Delete Domain", - "description": "Delete an existing domain." - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/domains/operationresults/Read", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain operation", - "operation": "Get Domain Operation", - "description": "Get a domain operation" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/generateSsoRequest/Action", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain Control Center Single Sign On Request", - "operation": "Generate Domain Control Center Single Sign On Request", - "description": "Generate a request for signing into domain control center." - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/validateDomainRegistrationInformation/Action", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain Validation", - "operation": "Domain Purchase Info Validation", - "description": "Validate domain purchase object without submitting it" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/checkDomainAvailability/Action", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain Availability Result", - "operation": "Check Domain Availability", - "description": "Check if a domain is available for purchase" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/listDomainRecommendations/Action", - "display": { - "provider": "Microsoft Domains", - "resource": "Domain Recommendations", - "operation": "Retrieve Domain Recommendations", - "description": "Retrieve the list domain recommendations based on keywords" - }, - "origin": "user,system" - }, - { - "name": "Microsoft.DomainRegistration/register/action", - "display": { - "provider": "Microsoft Domains", - "resource": "Microsoft Domains resource provider", - "operation": "Register Microsoft Domains resource provider", - "description": "Register the Microsoft Domains resource provider for the subscription" - }, - "origin": "user,system" - } - ] - } - } + "parameters": { + "api-version": "2018-02-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "name": "Microsoft.DomainRegistration/domains/Read", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain", + "operation": "Get Domains", + "description": "Get the list of domains" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/domains/Write", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain", + "operation": "Add or Update Domain", + "description": "Add a new Domain or update an existing one" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/domains/Delete", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain", + "operation": "Delete Domain", + "description": "Delete an existing domain." + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/domains/operationresults/Read", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain operation", + "operation": "Get Domain Operation", + "description": "Get a domain operation" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/generateSsoRequest/Action", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain Control Center Single Sign On Request", + "operation": "Generate Domain Control Center Single Sign On Request", + "description": "Generate a request for signing into domain control center." + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/validateDomainRegistrationInformation/Action", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain Validation", + "operation": "Domain Purchase Info Validation", + "description": "Validate domain purchase object without submitting it" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/checkDomainAvailability/Action", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain Availability Result", + "operation": "Check Domain Availability", + "description": "Check if a domain is available for purchase" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/listDomainRecommendations/Action", + "display": { + "provider": "Microsoft Domains", + "resource": "Domain Recommendations", + "operation": "Retrieve Domain Recommendations", + "description": "Retrieve the list domain recommendations based on keywords" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.DomainRegistration/register/action", + "display": { + "provider": "Microsoft Domains", + "resource": "Microsoft Domains resource provider", + "operation": "Register Microsoft Domains resource provider", + "description": "Register the Microsoft Domains resource provider for the subscription" + }, + "origin": "user,system" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListTopLevelDomainAgreements.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListTopLevelDomainAgreements.json index 16f23f16ee94..e3105f7cf951 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListTopLevelDomainAgreements.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListTopLevelDomainAgreements.json @@ -1,32 +1,32 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "name": "in", - "api-version": "2018-02-01", - "agreementOption": { - "IncludePrivacy" : true, - "ForTransfer": false - } - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "agreementKey": "DNRA", - "title": "Domain Name Registration Agreement", - "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Registration Agreement\n
\n

Last Revised: October 6, 2017

\n

PLEASE READ THIS AGREEMENT CAREFULLY, AS IT CONTAINS IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS AND REMEDIES.

\r\n

1. OVERVIEW

\r\n

This Domain Name Registration Agreement (this \"Agreement\") is entered into by and between 510456, an individual (\"Azure\") and you, and is made effective as of the date of electronic acceptance.  This Agreement sets forth the terms and conditions of your use of Azure's Domain Name Registration services (the \"Domain Name Registration Services\" or the \"Services\"). The terms \"we\", \"us\" or \"our\" shall refer to Azure.  The terms \"you\", \"your\", \"User\" or \"customer\" shall refer to any individual or entity who accepts this Agreement.  Unless otherwise specified, nothing in this Agreement shall be deemed to confer any third-party rights or benefits.

\r\n

Your electronic acceptance of this Agreement signifies that you have read, understand, acknowledge and agree to be bound by this Agreement, which incorporates by reference each of (i) Azure’s Universal Terms of Service Agreement (\"UTOS\"), (ii) all agreements, guidelines, policies, practices, procedures, registration requirements or operational standards of the top-level domain (\"TLD\") in which you register any domain (“Registry Policies”), and (iii) any plan limits, product disclaimers or other restrictions presented to you on the Domain Name Registration Services landing page of the Azure website (this “Site”). 

\r\n

TO LINK TO AND REVIEW THE REGISTRY POLICIES FOR THE TLD IN WHICH YOU WISH TO REGISTER A DOMAIN NAME, PLEASE CLICK HERE   

\r\n

You acknowledge and agree that (i) Azure, in its sole and absolute discretion, may change or modify this Agreement, and any policies or agreements which are incorporated herein, at any time, and such changes or modifications shall be effective immediately upon posting to this Site, and (ii) your use of this Site or the Services found at this Site after such changes or modifications have been made shall constitute your acceptance of this Agreement as last revised.  If you do not agree to be bound by this Agreement as last revised, do not use (or continue to use) this Site or the Services found at this Site.  In addition, Azure may occasionally notify you of changes or modifications to this Agreement by email.  It is therefore very important that you keep your shopper account (“Shopper Account”) information, including your email address, current.  Azure assumes no liability or responsibility for your failure to receive an email notification if such failure results from an inaccurate or out-of-date email address.    Azure is not an Internet Corporation for Assigned Names and Numbers (\"ICANN\") accredited registrar; it is an authorized reseller of domain name registration services.  Accordingly, you acknowledge and agree that Azure may modify this Agreement in order to comply with any terms and conditions set forth by (i) the sponsoring registrar, (ii) ICANN, and/or (iii) the registry applicable to the TLD or country code top level domain (\"ccTLD\") in question.  As used herein, the terms \"registry\", \"Registry\", \"registry operator\" or \"Registry Operator\" shall refer to the registry applicable to the TLD or ccTLD in question.  To identify the sponsoring registrar, click here

\r\n

2. PROVISIONS SPECIFIC TO ALL REGISTRATIONS

\r\n

Unless otherwise noted, the provisions below in this Section 2 are generally applicable to all TLDs that we offer.  Special provisions specific to any TLD or ccTLD (those in addition to posted Registry Policies) are identified elsewhere below in this Agreement. 

\r\n
    \r\n
  1. \r\n
    Registry Policies. You agree to be bound by all Registry Policies (defined above in this Agreement) applicable to your domain name registration (at any level). IT IS YOUR RESPONSIBILITY TO VISIT THE APPLICABLE TLD SITE AND READ AND REVIEW ALL APPLICABLE REGISTRY POLICIES PRIOR TO YOUR REGISTRATION IN THE TLD.  REGISTRY POLICIES FOR EACH TLD CAN BE FOUND BY VISITING THE CORRESPONDING TLD LINK LISTED HERE.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator of the TLD in which the domain name registration is made is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the respective TLD. The third party beneficiary rights of the Registry Operator will survive any termination of this Agreement.    
    \r\n
  2. \r\n
  3. \r\n
    Registration Requirements.  To the extent any TLD or ccTLD requires you meet eligibility (e.g., residency for .JP, .EU, etc.), validation (e.g., DNS validation) or other authentication requirements as a condition to registering a domain name in the TLD, you agree that by submitting an application or registering or renewing your domain name, you represent and warrant that: (a) all information provided to register or renew the domain name (including all supporting documents, if any) is true, complete and correct, and is not misleading in any way, and the application is made in good faith; (b) you meet, and will continue to meet, the eligibility criteria prescribed in the Registry Policies for the applicable TLD for the duration of the domain name registration; (c) you have not previously submitted an application for the domain name with another registrar using the same eligibility criteria, and the other registrar has rejected the application (if applicable); (d) you acknowledge and agree that even if the domain name is accepted for registration, your entitlement to register the domain name may be challenged by others who claim to have an entitlement to the domain name; and (e) you acknowledge and agree that the Registry or the registrar can cancel the registration of the domain name if any of the warranties required are found to be untrue, incomplete, incorrect or misleading.
    \r\n
  4. \r\n
  5. \r\n
    Ownership.  You acknowledge and agree that registration of a domain name does not create any proprietary right for you, the registrar, or any other person in the name used as a domain name or the domain name registration and that the entry of a domain name in the Registry shall not be construed as evidence or ownership of the domain name registered as a domain name. You shall not in any way transfer or purport to transfer a proprietary right in any domain name registration or grant or purport to grant as security or in any other manner encumber or purport to encumber a domain name registration.
    \r\n
  6. \r\n
  7. \r\n
    ICANN Requirements. You agree to comply with the ICANN requirements, standards, policies, procedures, and practices for which each applicable Registry Operator has monitoring responsibility in accordance with the Registry Agreement between ICANN and itself or any other arrangement with ICANN.
    \r\n
  8. \r\n
  9. \r\n
    Indemnification of Registry.  You agree to indemnify, defend and hold harmless (within 30 days of demand) the Registry Operator and Registry Service Provider and their subcontractors, subsidiaries, affiliates, divisions, shareholders, directors, officers, employees, accountants, attorneys, insurers, agents, predecessors, successors and assigns, from and against any and all claims, demands, damages, losses, costs, expenses, causes of action or other liabilities of any kind, whether known or unknown, including reasonable legal and attorney’s fees and expenses, in any way arising out of, relating to, or otherwise in connection with the your domain name registration, including, without limitation, the use, registration, extension, renewal, deletion, and/or transfer thereof and/or the violation of any applicable terms or conditions governing the registration. You shall not enter into any settlement or compromise of any such indemnifiable claim without Registrar’s or Registry Operator’s prior written consent, which consent shall not be unreasonably withheld, and you agree that these indemnification obligations shall survive the termination or expiration of the Agreement for any reason.  IN NO EVENT SHALL THE REGISTRY OPERATOR BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, EXEMPLARY OR PUNITIVE DAMAGES, INCLUDING LOSS OF PROFIT OR GOODWILL, FOR ANY MATTER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE), BREACH OF WARRANTIES, EITHER EXPRESS OR IMPLIED, ANY BREACH OF THIS AGREEMENT OR ITS INCORPORATED AGREEMENTS AND POLICIES YOUR INABILITY TO USE THE DOMAIN NAME, YOUR LOSS OF DATA OR FILES OR OTHERWISE, EVEN IF THE REGISTRY OPERATOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    \r\n
  10. \r\n
  11. \r\n
    Regulated TLDs.   For domain name registration in any “Regulated” TLD, you acknowledge and agree your registration is subject to the following additional requirements: (a) comply with all applicable laws, including those that relate to privacy, data collection, consumer protection (including in relation to misleading and deceptive conduct), fair lending, debt collection, organic farming, disclosure of data, and financial disclosures; (b) if you collect and maintain sensitive health and financial data you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  Regulated TLDs include: .games, .juegos, .school, .schule, .toys, .eco, .care, .diet, .fitness, .health, .clinic, .dental, .healthcare, .capital, .cash, .broker, .claims, .exchange, .finance, .financial, .fund, .investments, .lease, .loans, .market, .money, .trading, .credit, .insure, .tax, .mortgage, .degree, .mba, .audio, .book, .broadway, .film, .movie, .music, .software, .fashion, .video, .app, .art, .band, .cloud, .data, .digital, .fan, .free, .gratis, .discount, .sale, .media, .news, .online, .pictures, .radio, .show, .theater, .tours, .accountants, .architect, .associates, .broker, .legal, .realty, .vet, .engineering, .law, .limited, .show; .theater; .town, .city, .reise, and .reisen
    \r\n
  12. \r\n
  13. \r\n
    Highly Regulated TLDs. In addition to the requirements for Regulated TLDs, domain name registration in any Highly-Regulated TLD is subject to the following requirements: (a) you will provide administrative contact information, which must be kept up‐to‐date, for the notification of complaints or reports of registration abuse, as well as the contact details of the relevant regulatory, or Industry self‐regulatory, bodies in their main place of business; (b) you represent that you possess any necessary authorizations, charters, licenses and/or other related credentials for participation in the sector associated with such Highly‐regulated TLD; and (c) you will report any material changes to the validity of you authorizations, charters, licenses and/or other related credentials for participation in the sector associated with the Highly‐regulated TLD to ensure you continue to conform to the appropriate regulations and licensing requirements and generally conduct your activities in the interests of the consumers they serve.  Highly Regulated TLDs include: .abogado, .attorney, .bank, .bet, .bingo, .casino .charity (and IDN equivalent xn--30rr7y), .cpa, .corp, creditcard, .creditunion .dds, .dentist, .doctor, .fail, .gmbh, .gripe, .hospital, .inc, .insurance, .lawyer, .lifeinsurance, .llc, .llp, .ltda, .medical, .mutuelle, .pharmacy, .poker, .university, .sarl, .spreadbetting, .srl, .sucks, .surgery .university, .vermogensberater, .vesicherung,  and .wtf.  For .doctor, registrants who hold themselves out to be licensed medical practitioners must be able to demonstrate to the Registrar and Registry, upon request, that they hold the applicable license.
    \r\n
  14. \r\n
  15. \r\n
    Special Safeguard TLDs.  In addition to the requirements for Regulated and Highly-Regulated TLDs, by registering a domain name in any “Special-Safeguard” TLD, you agree to take reasonable steps to avoid misrepresenting or falsely implying that you or your business is affiliated with, sponsored or endorsed by one or more country's or government's military forces if such affiliation, sponsorship or endorsement does not exist.  Special Safeguard TLDs include:  .army, .navy, .airforce
    \r\n
  16. \r\n
  17. \r\n
    Third Party Beneficiary.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator for any TLD in which your register a domain name is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the TLD. Third party beneficiary rights of the Registry Operator shall survive any termination of this Agreement.
    \r\n
  18. \r\n
  19. \r\n
    Variable and Non-Uniform Pricing.  You acknowledge, understand and agree that certain domain names in certain TLDs are established by Registry Policies to be variably priced (i.e., standard v. premium names) and/or may have non-uniform renewal registration pricing (such that the Fee for a domain name registration renewal may differ from other domain names in the same TLD, e.g., renewal registration for one domain may be $100.00 and $33.00 for a different domain name).
    \r\n
  20. \r\n
  21. \r\n
    Restriction on Availability of Privacy or Proxy.  You acknowledge and agree that, as dictated by the Registry Policies, for certain TLDs you may not be permitted to purchase private or proxy TLD registrations. In such case, you must register for any and all TLD registrations using your personal information, which information you represent and warrant is current, accurate and complete.
    \r\n
  22. \r\n
\r\n

3. FEES AND PAYMENTS

\r\n

(A) GENERAL TERMS, INCLUDING AUTOMATIC RENEWAL TERMS

\r\n

You agree to pay any and all prices and fees due for Services purchased or obtained at this Site at the time you order the Services.  Azure expressly reserves the right to change or modify its prices and fees at any time, and such changes or modifications shall be posted online at this Site and effective immediately without need for further notice to you.  If you have purchased or obtained Services for a period of months or years, changes or modifications in prices and fees shall be effective when the Services in question come up for renewal as further described below. 

\r\n

Unless otherwise specifically noted (for reasons such as those highlighted in Section 2(x) above), the renewal price for any domain name in any TLD will be the same as the list (non-sale) price shown when you search for and select a domain, and again in the cart prior to purchase.  For example, if the list price is $9.99, and a different renewal price is not specifically identified, then the renewal price is also $9.99.  Likewise, if a domain name has a sale price of $8.99, with the list (non-sale) price shown (as a strike-through) at $9.99, the renewal price will be $9.99*.  

\r\n

*Renewal price subject to change prior to actual date of renewal. 

\r\n

For all other terms and conditions relating to fees, payment, refund and billing, etc. applicable to the Services offered under the scope of this Agreement, please refer to the “Fees and Payments” section of our UTOS

\r\n

(B) DOMAIN NAME RENEWAL TERMS

\r\n

When you register a domain name, you will have two renewal options: (i) \"Automatic Renewal\" (ii) \"Extended Automatic Renewal\", and (iii) \"Manual Renewal\": 

\r\n
    \r\n
  1. Automatic Renewal.  Automatic Renewal is the default setting. Therefore, unless you select Extended Automatic Renewal, Azure will enroll you in Automatic Renewal.  Domain names will automatically renew, for a period equivalent to the length of your original domain name registration, any domain name that is up for renewal and will take payment from the Payment Method you have on file with Azure, at Azure's then current rates. Thus, if you have chosen to register your domain name for one (1) year, Azure will automatically renew it for one (1) year. If you have chosen to register your domain name for two (2) years, Azure will automatically renew it for two (2) years, and so on.
  2. \r\n
  3. Extended Automatic Renewal.  If you enroll in the Extended Automatic Renewal plan, Azure will automatically renew any domain name that is up for renewal for an additional one-year period on each and every anniversary of your domain name registration, so the initial registration period will always remain intact.  Thus, if you have chosen to register your domain name for two (2) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your two (2) year registration period will always remain intact. If you have chosen to register your domain name for five (5) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your five (5) year registration period will always remain intact, and so on.  Azure will take payment from the Payment Method you have on file with Azure, at Azure's then current one-year domain name registration rate.
  4. \r\n
  5. Manual Renewal.  If you have elected to turn off automatic renewal and cancel the product (i.e., cancel the domain name registration) effective at expiration of the then current term, you may nonetheless elect to manually renew the domain name at anytime prior to its expiration date by logging into your Account Manager and manually implementing the renewal or by calling customer service (should you in fact want the domain name to be renewed). If you fail to manually implement the renewal before the expiration date, the domain name will be cancelled and you will no longer have use of that name.
  6. \r\n
\r\n

All renewals will be subject to the terms of this Agreement, as it may be amended from time to time, and you acknowledge and agree to be bound by the terms of this Agreement (as amended) for all renewed domains.  Domain name renewals will be non-refundable. In the event that we are unable to automatically renew your domain name for the renewal option selected for any reason, we may automatically renew your domain name for a period less than your original registration period to the extent necessary for the transaction to succeed. If for any reason Azure is not able to take the payment from the Payment Method you have on file, and you fail to respond to our notices, your domain name registration will expire. It is your responsibility to keep your Payment Method information current, which includes the expiration date if you are using a credit card.

\r\n

For certain ccTLDs (.am, .at, .be, .br, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal billing will occur on the first day of the month prior to the month of expiration.

\r\n

For certain ccTLDs (.am, .at, .be, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal will occur, or must occur manually if the product was previously cancelled, no later than the 20th of the month prior to the expiration date, or your domain name will be placed in non-renewal status. For some ccTLDs (.es) renewal must be processed no later than seven days before the expiration date, or your domain name will be placed in non-renewal status.  When the domain name is in non-renewal status, you can renew the domain name only by calling Azure and requesting that the domain name be renewed. You cannot renew the domain name through your Account Manager. If you fail to manually implement the renewal of any cancelled product before the expiration date, the domain name will be cancelled and you will no longer have use of that name.

\r\n

You agree that Azure will not be responsible for cancelled domain names that you fail to renew in the timeframes indicated in this Agreement. In any case, if you fail to renew your domain name in a timely fashion, additional charges may apply. If you signed up for privacy services, protected registration, or any other similar service, with your domain name registration, these services will automatically be renewed when your domain name registration is up for renewal, and you will incur the applicable additional renewal fee unless you cancel in advance. 

\r\n

If you fail to renew your domain name in the timeframes indicated in this Agreement, you agree that Azure may, in its sole discretion, renew your expired domain name on your behalf. If Azure decides to renew your expired domain name on your behalf, you will have a Renewal Grace Period during which you may reimburse Azure for the renewal and keep your domain name. The Renewal Grace Period is currently twelve (12) days but subject to change under the terms of this Agreement. For certain ccTLDs (.am, .at, .be, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg) there is no Renewal Grace Period after the expiration date of the domain name. If you do not reimburse Azure for the renewal during the Renewal Grace Period your domain name will be placed on Hold and flagged for deletion after which you will have a 30-day redemption period during which you may pay Azure a Redemption fee and redeem your domain name. The Redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the 30-day redemption period Azure may, in its sole discretion, delete your domain name or transfer it to another registrant on your behalf.  During the redemption period your domain name may be parked. 

\r\n

If your domain name is deleted, the Registry also provides a 30-day Redemption Grace Period during which you may pay Azure a redemption fee and redeem your domain name. The redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the Registry's Redemption Grace Period the Registry will release your name and it will become available for registration on a first-come-first-served basis.

\r\n

Renewal Grace Periods and Redemption Grace Periods vary for different ccTLDs. Please refer to the specific terms for the applicable TLD. In the event there is a conflict between the provisions of this paragraph and the ccTLD terms, the ccTLD terms shall control.

\r\n

\r\n

Our registration expiration notification policy and associated fees are described here.

\r\n

\r\n

\r\n

(C) FREE PRODUCT TERMS

\r\n

In the event you are provided with free products with the registration of a domain name, you acknowledge and agree that such free products will only be available with a valid purchase and may be terminated in the event the domain name is deleted or cancelled.  For free domain names, you acknowledge and agree that you may not change the account associated with such free domain for the first five (5) days after registration.  In the event a free domain name is offered with the registration of another domain and if the paid domain name registered fails, then we may, in its sole discretion, either delete the registration of the free domain or refund the difference between the amount paid and the value of the free domain.  Failed registrations associated with promotionals offers may result in the deletion of the free or discounted item or an adjustment between the registered domain price and the value of the discounted item, in our sole discretion.

\r\n

4. TERM OF AGREEMENT; TRANSFERS; DOMAIN TASTING

\r\n

The term of this Agreement shall continue in full force and effect as long as you have any domain name registered through Azure.

\r\n

You agree that you will not transfer any domain name registered through Azure to another domain name registrar during the first sixty (60) days after its initial registration date.  You agree that you may not transfer any domain name for ten (10) days after a Change of Account.

\r\n

You further agree that you will not engage in \"domain tasting\" by using the five (5) day grace period in which a registrant may choose to cancel a domain name and get a full refund of the registration fee as a vehicle to test the marketability or viability of a domain name.  If Azure determines (which determination shall be made by Azure in its sole and absolute discretion) that you have been engaging in \"domain tasting\", then Azure reserves the right to (a) charge you a small fee (which fee shall be deducted from any refund issued) or (b) refuse your cancellation/refund request altogether. Azure will not charge you a fee if Azure cancels your domain name during the five (5) day grace period due to fraud or other activity outside of your control. The five (5) day grace period does not apply to Premium Domains, which are non-refundable.

\r\n

You agree that Azure shall not be bound by (i) any representations made by third parties who you may use to purchase services from Azure, or (ii) any statements of a general nature, which may be posted on Azure's website or contained in Azure's promotional materials.

\r\n

5. UP TO DATE INFORMATION; USE OF INFORMATION AND EXPIRATION

\r\n

You agree to notify Azure within five (5) business days when any of the information you provided as part of the application and/or registration process changes. It is your responsibility to keep this information in a current and accurate status. Failure by you, for whatever reason, to provide Azure with accurate and reliable information on an initial and continual basis, shall be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. Failure by you, for whatever reason, to respond within five (5) business days to any inquiries made by Azure to determine the validity of information provided by you, shall also be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. You agree to retain a copy for your record of the receipt for purchase of your domain name.

\r\n

You agree that for each domain name registered by you, the following contact data is required: postal address, email address, telephone number, and if available, a facsimile number for the Registered Name Holder and, if different from the Registered Name Holder, the same contact information for, a technical contact, an administrative contact and a billing contact.

\r\n

You acknowledge and agree that domain name registration requires that this contact information, in whole or in part, be shared with the registry operator, for their use, copying, distribution, publication, modification and other processing  for (among other uses in accordance with our Privacy Policy) the purpose of administration of the domain name registration, which may require such information be transferred back and forth across international borders, to and from the U.S. to the EU, for example. As required by ICANN, this information must also be made publicly available by means of Whois, and that the registry operator may also be required to make this information publicly available by Whois. Both Azure and the registry operator may be required to archive this information with a third-party escrow service. You hereby consent and give permission for all such requirements and disclosures. Further, you represent and warrant that, if you are providing information about a third party, you have notified the third party of the disclosure and the purpose for the disclosure and you have obtained the third party's consent to such disclosure.  Registrar will not process data in a way that is incompatible with this Agreement.  Registrar will take reasonable precautions to protect data from loss or misuse.

\r\n

You agree that for each domain name registered by you the following information will be made publicly available in the Whois directory as determined by ICANN Policy and may be sold in bulk as set forth in the ICANN agreement:

\r\n
    \r\n
  • The domain name;
  • \r\n
  • Your name and postal address;
  • \r\n
  • The name, email address, postal address, voice and fax numbers for technical and administrative contacts;
  • \r\n
  • The Internet protocol numbers for the primary and secondary name servers;
  • \r\n
  • The corresponding names of the name servers; and
  • \r\n
  • The original date of registration and expiration date.
  • \r\n
  • Name of primary name server and secondary name server.
  • \r\n
  • Identity of the registrar.
  • \r\n
\r\n

You agree that, to the extent permitted by ICANN, Azure may make use of the publicly available information you provided during the registration process. If you engage in the reselling of domain names you agree to provide any individuals whose personal information you've obtained, information about the possible uses of their personal information pursuant to ICANN policy. You also agree to obtain consent, and evidence of consent, from those individuals for such use of the personal information they provide.

\r\n

You agree that Azure has the right to make public and share with third parties certain information in connection with the sale or purchase of domain names on the website, including but not limited to (a) the name of the domain name sold or purchased, (b) the sale or purchase price of the domain name sold or purchased, and (c) information relating to the timing of the sale or purchase.

\r\n

\r\n

In order for us to comply with any current or future rules and policies for domain name systems including any rules or policies established by the CIRA or any provincial or federal government or by other organization having control or authority to establish rules or policies, you hereby grant to us the right to disclose to third parties through an interactive publicly accessible registration database the following information that you are required to provide when applying for a domain name:

\r\n
    \r\n
  1. The domain or sub-domain name(s) registered by you;
  2. \r\n
  3. Your organization name, type and postal address;
  4. \r\n
  5. The name(s), position(s), postal address(es), e-mail address(es), voice telephone number(s) and where available the fax number(s) of the technical and administrative contacts for your domain or sub-domain name(s);
  6. \r\n
  7. The full hostnames and Internet protocol (IP) addresses of at least two (2) name server hosts (one primary and at least one secondary) for your domain or sub-domain name. Up to six (6) name servers may be specified. If a host has more than one (1) IP address, use a comma-separated list;
  8. \r\n
  9. The corresponding names of those name servers;
  10. \r\n
  11. The original creation date of the registration; and
  12. \r\n
  13. The expiration date of the registration.
  14. \r\n
\r\n

We may be required to make this information available in bulk form to third parties. We may also transfer or assign this information to CIRA or such other third party as we may decide, in our sole discretion.

\r\n

6. DISPUTE RESOLUTION POLICY

\r\n

You agree to be bound by our current Dispute Resolution Policy. This policy is incorporated herein and made a part of this Agreement. You can view the Uniform Domain Name Dispute Resolution Policy online. You agree that Azure may from time to time modify its Dispute Resolution Policy. Azure will post any changes to its Dispute Resolution Policy at least thirty (30) days before they become effective. You agree that by maintaining your domain name registrations with Azure after the updated policy becomes effective that you agree to the Dispute Resolution policy as amended. You agree to review Azure's website periodically to determine if changes have been made to the Dispute Resolution Policy. If you cancel or terminate your Services with Azure as a result of the modified Dispute Resolution policy, no fees will be refunded to you. You also agree to submit to proceedings commenced under ICANN's Uniform Rapid Suspension System, if applicable. 

\r\n

You agree that if a dispute arises as a result of one (1) or more domain names you have registered using Azure, you will indemnify, defend and hold Azure harmless as provided for in this Agreement. You also agree that if Azure is notified that a complaint has been filed with a governmental, administrative or judicial body, regarding a domain name registered by you using Azure, that Azure, in its sole discretion, may take whatever action Azure deems necessary regarding further modification, assignment of and/or control of the domain name deemed necessary to comply with the actions or requirements of the governmental, administrative or judicial body until such time as the dispute is settled. In this event you agree to hold Azure harmless for any action taken by Azure.

\r\n

You agree to submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of your domicile, (2) where registrar is located or (3) where the registry operator is located (e.g., China for .CN, Columbia for .CO, UK for .EU, etc.).

\r\n

\r\n

In the case of .ca domain names, you agree that, if your use of the service or the registration of a .ca domain name is challenged by a third party, you will be subject to the provisions specified by CIRA in their dispute resolution policy, in effect at the time of the dispute.

\r\n

\r\n

7. TRANSFER OF DOMAIN NAMES; RESALE PRACTICES

\r\n

If you transfer any domain name, you agree to provide the information required by, and to abide by, the procedures and conditions set forth in our Domain Name Transfer Agreement and Change of Registrant Agreement. You may view the latest versions of our Domain Name Transfer Agreement and Change of Registrant Agreementonline. In order to further protect your domain name, any domain name registered with Azure or transferred to Azure shall be placed on lock status, unless an opted-out has occurred as defined in our Change of Registrant Agreement or Domain Name Proxy Agreement. The domain name must be placed on unlock status in order to initiate a transfer of the domain name away from Azure to a new Registrar. You may log into your account with Azure at any time after your domain name has been successfully transferred to Azure, and change the status to unlock.

\r\n

In the event you are purchasing a domain name on behalf of a third party, you agree to inform any customer of yours, who may be acquiring a domain name through you using Azure's registration services, that they are in fact registering their domain name through Azure and that Azure or its licensor is an accredited registrar with ICANN. You agree not to represent that you are an ICANN-accredited registrar or that you are in any way providing superior access to the ICANN Domain Name Registry. You also agree not to use the ICANN trademark logo in any of your promotional materials including your website.

\r\n

You agree to obtain each of your customers' acceptances to the then current version of this Agreement, and to retain evidence of their acceptance for a period of not less than three (3) years. Should you require that your customers accept additional terms and conditions that are not required by Azure, you agree that such additional terms and conditions shall not conflict with this Agreement and the policies and procedures adopted by ICANN.

\r\n

You agree that Azure is not lending you access to its registrar connections or its registry access, nor will you be deemed to be a registrar in your own right. Furthermore, you agree you will not attempt to gain access to Azure's registrar connections or registry access. You agree to provide complete, accurate and current data for each registrant to be added to a registry in accordance with ICANN requirements for inclusion in the Whois database.

\r\n

You agree to provide your customers with adequate customer support, and to maintain contact with them with regard to providing a medium for them to communicate changes in the information they provided as part of the domain name registration process. Upon receiving corrected or updated information you will, within five (5) business days, provide such information to Azure so Azure may update its registration records. You will retain copies of all communications between you and your customers and will upon request provide Azure copies of same.

\r\n

8. YOUR OBLIGATIONS; SUSPENSION OF SERVICES; BREACH OF AGREEMENT

\r\n

You represent and warrant to the best of your knowledge that, neither the registration of the domain nor the manner it is directly or indirectly used, infringes the legal rights of any third party.  You will comply with all applicable laws, including, but not limited to those relating to privacy, data collection, consumer protection, fair lending, debt collection, organic farming, and disclosure of data and financial disclosures.  If you collect and maintain sensitive health and financial data, you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  You represent that you possess any necessary authorization, charter, license, and/or other related credential for participation in the sector associated with the associated registry tld string.  You will report any material changes to the validity of your authorization, charter, license, and/or other related credential. You will indemnify and hold harmless the registrar and registry operator, and their directors, officers, employees and agents, from and against any and all claims, damages, liabilities, costs and expenses (including reasonable legal fees and expenses) arising out of or related to the domain name registration.  This obligation shall survive expiration or termination of this Agreement or the domain name registration.

\r\n

You agree that, in addition to other events set forth in this Agreement:

\r\n
    \r\n
  1. Your ability to use any of the services provided by Azure is subject to cancellation or suspension in the event there is an unresolved breach of this Agreement and/or suspension or cancellation is required by any policy now in effect or adopted later by ICANN;
  2. \r\n
  3. Your registration of any domain names shall be subject to suspension, cancellation or transfer pursuant to any ICANN adopted specification or policy, or pursuant to any Azure procedure not inconsistent with an ICANN adopted specification or policy (a) to correct mistakes by Azure or the registry operator in registering any domain name; or (b) for the resolution of disputes concerning any domain name.
  4. \r\n
\r\n

You acknowledge and agree that Azure and registry reserve the right to deny, cancel or transfer any registration or transaction, or place any domain name(s) on registry lock, hold or similar status, as either deems necessary, in the unlimited and sole discretion of either Azure or the registry: (i) to comply with specifications adopted by any industry group generally recognized as authoritative with respect to the Internet (e.g., RFCs), (ii) to correct mistakes made by registry or any registrar in connection with a domain name registration, (iii) for the non-payment of fees to registry, (iv) to protect the integrity and stability of the registry, (v) to comply with any applicable court orders, laws, government rules or requirements, requests of law enforcement, or any dispute resolution process, (vi) to comply with any applicable ICANN rules or regulations, including without limitation, the registry agreement, (vii) to avoid any liability, civil or criminal, on the part of registry operator, as well as its affiliates, subsidiaries, officers, directors, and employees, (viii) per the terms of this Agreement, (ix) following an occurrence of any of the prohibited activities described in Section 8 below, or (x) during the resolution of a dispute.

\r\n

You agree that your failure to comply completely with the terms and conditions of this Agreement and any Azure rule or policy may be considered by Azure to be a material breach of this Agreement and Azure may provide you with notice of such breach either in writing or electronically (i.e. email). In the event you do not provide Azure with material evidence that you have not breached your obligations to Azure within ten (10) business days, Azure may terminate its relationship with you and take any remedial action available to Azure under the applicable laws. Such remedial action may be implemented without notice to you and may include, but is not limited to, cancelling the registration of any of your domain names and discontinuing any services provided by Azure to you. No fees will be refunded to you should your Services be cancelled or terminated because of a breach.

\r\n

Azure's failure to act upon or notify you of any event, which may constitute a breach, shall not relieve you from or excuse you of the fact that you have committed a breach.

\r\n

9. RESTRICTION OF SERVICES; RIGHT OF REFUSAL

\r\n

You agree not to use the services provided by Azure, or to allow or enable others, to use the services provided by Azure for the purposes of:

\r\n
    \r\n
  • The transmission of unsolicited email (Spam); and
  • \r\n
  • Repetitive, high volume inquires into any of the services provided by Azure (i.e. domain name availability, etc.).
  • \r\n
\r\n

You acknowledge and agree that you are prohibited from distributing malware, abusively operating botnets, phishing, piracy, trademark or copyright infringement, fraudulent or deceptive practices, counterfeiting or otherwise engaging in activity contrary to applicable law, and you acknowledge and agree that the consequences for such activities include suspension of the domain name.

\r\n

If you are hosting your domain name system (“DNS”) on Azure’s servers, or are using our systems to forward a domain name, URL, or otherwise to a system or site hosted elsewhere, or if you have your domain name registered with Azure, you are responsible for ensuring there is no excessive overloading on Azure’s servers. You may not use Azure’s servers and your domain name as a source, intermediary, reply to address, or destination address for mail bombs, Internet packet flooding, packet corruption, or other abusive attack. Server hacking or other perpetration of security breaches is prohibited. You agree that Azure reserves the right to deactivate your domain name from its DNS if Azure deems it is the recipient of activities caused by your site that threaten the stability of its network.

\r\n

You agree that Azure, in its sole discretion and without liability to you, may refuse to accept the registration of any domain name. Azure also may in its sole discretion and without liability to you delete the registration of any domain name during the first thirty (30) days after registration has taken place. Azure may also cancel the registration of a domain name, after thirty (30) days, if that name is being used, as determined by Azure in its sole discretion, in association with spam or morally objectionable activities. Morally objectionable activities will include, but not be limited to:

\r\n
    \r\n
  • Activities prohibited by the laws of the United States and/or foreign territories in which you conduct business;
  • \r\n
  • Activities designed to encourage unlawful behavior by others, such as hate crimes, terrorism and child pornography; and
  • \r\n
  • Activities designed to harm or use unethically minors in any way.
  • \r\n
\r\n

In the event Azure refuses a registration or deletes an existing registration during the first thirty (30) days after registration, you will receive a refund of any fees paid to Azure in connection with the registration either being cancelled or refused. In the event Azure deletes the registration of a domain name being used in association with spam or morally objectionable activities, no refund will be issued.

\r\n

10. DEFAULT SETTINGS; PARKED PAGE

\r\n

Choosing Your Domain Name Settings.  When you register a domain name with Azure, you will be prompted to choose your domain name settings during the checkout process.  If you plan on using another provider for your website or hosting needs, then you should enter the name servers of such provider when you choose your domain name settings.  This will direct your domain name away from Azure’s name servers.  If you are an existing Azure customer and have already set up a customer profile designating your domain name settings for new domain name registrations, you will not need to complete this step again during the checkout process.   

\r\n

Azure’s Default Settings.  If you do not direct your domain name away from Azure’s name servers as described above, Azure will direct your domain name to a “Parked Page” (“Default Setting”).  You acknowledge and agree that Azure has the right to set the Default Setting. 

\r\n

Parked Page Default Setting.  Azure’s Parked Page service is an online domain monetization system designed to generate revenue (through the use of pay per click advertising) from domain names that are not actively being used as websites.  If your domain name is directed to a Parked Page, you acknowledge and agree that Azure may display both (a) in-house advertising (which includes links to Azure products and services) and (b) third-party advertising (which includes links to third-party products and services) on your Parked Page through the use of pop-up or pop-under browser windows, banner advertisements, audio or video streams, or any other advertising means, and we may aggregate for our own use, related usage data by means of cookies and other similar means.  In addition, you acknowledge and agree that all in-house and third-party advertising will be selected by Azure and its advertising partners, as appropriate, and you will not be permitted to customize the advertising, or entitled to any compensation in exchange therefor.  Please note that the third-party advertising displayed on Azure’s Parked Pages may contain content offensive to you, including but not limited to links to adult content.  Azure makes no effort to edit, control, monitor, or restrict the content and third-party advertising displayed on Azure’s Parked Pages, and expressly disclaims any liability or responsibility to you or any third party in connection therewith.

\r\n

Changing Azure’s Default Settings.  You may change Azure’s Default Settings at any time during the term of your domain name registration.

\r\n
    \r\n
  1. Content Displaying On Your Parked Page.  You can not modify the content displaying on your Parked Page.  You may select one of the other options listed below.
  2. \r\n
  3. Participating In Domain Name Monetization.  If you wish to participate in the domain monetization potential presented by Azure’s Parked Page service, please review and consider purchasing our CashParking® service.   
  4. \r\n
  5. No Content.  If the options listed above are not acceptable to you, please contact customer support to learn what other options might be available to you.
  6. \r\n
\r\n

Return To Parked Page Default Setting Upon Domain Name Expiration.  Upon domain name expiration, and regardless of how you use your domain name during the term of your domain name registration, your domain name will automatically return to the Parked Page Default Setting described above.  As used in this paragraph, “expiration” is deemed to include any “renewal period” or “redemption period” immediately after the domain name expires, but before the domain name is returned to the registry.  Once your domain name has returned to the Parked Page Default Setting described above, the only way to opt out of the Parked Page service is to renew, redeem, or re-register your domain name in accordance with Section 2(B), Domain Name Renewal Terms, of this Agreement.   

\r\n

11. DOMAIN ADD-ONS

\r\n

Business Registration:  Business registration allows You to display additional information about the business that is the basis of Your domain name, including, but not limited to, such information as Your fax number, street address, and hours of operation.

\r\n

Certified Domains.  The certified domain service generally allow You to: (i) put a Certified Domain Validation seal on Your website; and (ii) have Your domain name listed as \"Certified\", in WHOIS lookups on our website.   The Certified Domain Validation seal renews independently of Your domain. When You renew Your domain, You must also, when necessary, separately renew Your Certified Validation seal. However, the Certified Domain Validation seal can be cancelled independently of Your domain. If the domain is cancelled, the Certified Domain associated with the cancelled domain will automatically cancel.  The Certified Domain seal is a trademark and is protected by copyright, trademark and other intellectual property laws. You may use the Certified Domain seal only in conjunction with the purchase of the Services set forth in the Agreement, and subject to the terms and conditions hereof. Other than provided for in this Agreement, You may not otherwise use, reproduce, or modify the mark for any additional promotional use, without our prior written approval. Your right to the use of the Certified Domain seal is immediately terminated upon expiration or termination of this Agreement.

\r\n

Expiration Consolidation.  You understand and acknowledge the expiration consolidation service may only be used to consolidate the expiration of .com and .net domain names. The service may not be used to consolidate domains that are on Registrar HOLD, Registry HOLD, or pending Transfer status. You acknowledge the service may only be used to push the expiration date of Your domains forward in time, at least one (1) month forward and no more than ten (10) years forward, and then, only for a period lasting less than twelve (12) months. Once the service has been used to consolidate domains, the new expiration date may not be reversed. To ensure the service is not abused or used as an alternative to renewals, you may only use the service on each domain once in any 12-month period. The service may only be used on domain names that have not passed their expiration date. In order to change the expiration date again, You will be required to renew the domain name first.  You further understand and acknowledge the service may only be used to coordinate domains where we are the registrar of record. Domains not registered with us must be transferred before we can perform the Service. 

\r\n

\r\n

Backordering/Monitoring.  You agree a domain name that has expired shall be subject first to a grace period of twelve (12) days, followed by the ICANN-mandated redemption grace period of thirty (30) days. During this period of time, the current domain name registrant may renew the domain name and retain ownership. We do not guarantee your backorder will result in you obtaining the domain name and expressly reserves the right to (a) refuse additional backorders or (b) cancel existing backorders at any time for any reason.  If your backorder is refused or cancelled, we agree to promptly refund any fees paid for such domain name backorder. The domain name may also be placed in a secondary market for resale through the Auctions® service.  After your first year of Auctions membership, you agree that unless otherwise advised, we will automatically renew your Auctions membership using the payment method you have on file for so long as your backorder credit is active. You may learn more about Auctions by visiting the Auctions website. The domain name may also be subject to a drop pool process before it is available for purchasing. You understand we and our registrar affiliates use our services, including backordering.  Therefore, the domain name may be registered with a different registrar, but can be managed through your account.  By using the Services, you will be able to, among other things:

\r\n
    \r\n
  1. Backorder any domain name under the top level domains .COM, .NET, .US, .BIZ, .INFO, .ORG, .MOBI. A backorder for a domain name will include the price of up to a one-year domain name registration. Should you successfully backorder any domain name, you will be subject to the terms and conditions of the Domain Name Registration and related agreements, which are incorporated herein by reference.
  2. \r\n
  3. Change your backorder until you obtain a domain name. You will have the opportunity to change the credit to a different domain name until you successfully capture one. After three (3) years, if the credit is not used, we reserves the right to remove the credit.
  4. \r\n
  5. Subscribe monthly to an expiring domain name list. You may also choose to purchase a subscription to a list of domain names expiring within the next five (5) days. If you subscribe to the expiring domain name list, you agree the payment method you have on file may be charged on a monthly subscription basis for the term of the Services you purchase.
  6. \r\n
  7. Select domain names off the expiring domain name list you would like to register. Each domain name you attempt to backorder will include the price of up to a one-year domain name registration, as set forth in subsection (i) above.
  8. \r\n
  9. Monitor your currently registered domain names for changes in registrar, status, expiration date or name servers at no additional cost.
  10. \r\n
  11. Subscribe to Domain Alert Pro or monitoring, which enables you to monitor any currently registered domain name, regardless of registrar, for historical tracking of status changes and designation of multiple email notification addresses.
  12. \r\n
\r\n

\r\n

\r\n

Transfer Validation. The transfer validation service is provided to help You keep Your domain name secure. By choosing to use the service, You are making an explicit and voluntary request to us to deny all attempts to transfer Your domain name to another registrar, or to move Your domain name to another account, unless You verify each request as described herein. You will provide us with a contact name, phone number and PIN for domain transfer validations. You will be contacted by us when a domain transfer is requested for a domain name in Your account. When we receive a transfer request, we will call You to verify the transfer request. If we cannot reach You with seventy-two (72) hours of receipt of the transfer request, the transfer will be denied. If You do not provide the proper PIN, the transfer will be denied. When we receive a change of account request, we will call You to verify the change request. If we cannot reach You with seventy-two (72) hours of receipt of the change request, the change will be denied. If You do not provide the proper PIN, the change will be denied. Availability of Services are subject to the terms and conditions of this Agreement and each of our policies and procedures. We shall use commercially reasonable efforts to attempt to provide certain portions of the Services on a twenty-four (24) hours a day, seven (7) days a week basis throughout the term of this Agreement and other portions of the service, during normal business hours. You acknowledge and agree that from time to time the Services may be inaccessible or inoperable for any reason, including, without limitation: (i) equipment malfunctions; (ii) periodic maintenance procedures or repairs that we may undertake from time to time; or (iii) causes beyond the reasonable control of us or that are not reasonably foreseeable by us, including, without limitation, interruption or failure of telecommunication or digital transmission links, hostile network attacks, network congestion or other failures. You acknowledge and agree that we has no control over the availability of the service on a continuous or uninterrupted basis.

\r\n

\r\n

12. PRE-REGISTRATIONS

\r\n

If you submit an application for pre-registration of a domain name, Azure does not guarantee that the name will be secured for you, or that you will have immediate access to the domain name if secured.  Azure may use third-party service providers for the pre-registration services.

\r\n

13. PROVISIONS SPECIFIC TO .BIZ REGISTRATIONS

\r\n

Domain Name Dispute Policy.  If you reserved or registered a .BIZ domain name through us, in addition to our Dispute Resolution Policy, you hereby acknowledge that you have read and understood and agree to be bound by the terms and conditions of the Restrictions Dispute Resolution Policy applicable to the .biz TLD.

\r\n

The RDRP sets forth the terms under which any allegation that a domain name is not used primarily for business or commercial purposes shall be enforced on a case-by-case basis by an independent ICANN-accredited dispute provider. Registry Operator will not review, monitor, or otherwise verify that any particular domain name is being used primarily for business or commercial purposes or that a domain name is being used in compliance with the SUDRP or UDRP processes.

\r\n

One Year Registration.  If you are registering a .BIZ domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .BIZ domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .BIZ domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

\r\n

14. PROVISIONS SPECIFIC TO .INFO REGISTRATIONS 

\r\n

One Year Registration.  If you are registering a .INFO domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .INFO domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .INFO domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

15. PROVISIONS SPECIFIC TO .MOBI REGISTRATIONS 

\r\n

Instant Mobilizer. You are hereby granted a personal, revocable, non-exclusive, non-transferable, non-assignable, non-sublicensable license to use the Instant Mobilizer service (“Service”), provided, however, You abide by the terms and conditions set forth. You shall not alter, modify, adapt or translate the whole or part of the Service in any way whatsoever. You may not create derivative works based on the Service. You may not rent, lease, assign, dispose of, novate, sub-license or otherwise transfer any of its rights to use the Service to any third party.  In the event that the volume of traffic to You from Your use of the Service is sufficient so as to jeopardize the provision of Service for other end users, we and our licensors reserve the right to, at its sole discretion, permanently or temporarily, discontinue Your use of the Service. For the avoidance of doubt, the volume of traffic generated by You should not exceed two thousand (2,000) page views per day.  You acknowledge and agree the text \"Instant Mobilizer from dotMobi\" or equivalent, will be inserted at the footer of Your site.  In the event a dotMobi domain to which the Service is being provided is transferred to another domain name registrar, the Service will be interrupted on that dotMobi domain, and Service will not be restored if the new registrar does not offer the Service. 

\r\n

\r\n

16. PROVISIONS SPECIFIC TO .NAME REGISTRATIONS 

\r\n

\r\n

17. PROVISIONS SPECIFIC TO .REISE REGISTRATIONS

\r\n

Domain Names registered in .REISE should be used for purposes dedicated to travel topics within six months following initial Registration, e.g. utilized on the Internet or otherwise used to perform a function.

\r\n

18. PROVISIONS SPECIFIC TO .SEXY REGISTRATIONS

\r\n

You shall not permit content unsuitable for viewing by a minor to be viewed from the main or top-level directory of a .SEXY domain name. For purposes of clarity, content viewed at the main or top-level directory of a .SEXY domain name is the content immediately visible if a user navigates to http://example.sexy or http://www.example.sexy. No restrictions apply to the content at any other page or subdirectory addressed by a .SEXY Registered Name. 

\r\n

19. COUNTRY CODE TOP LEVEL DOMAINS

\r\n

You represent and warrant that you meet the eligibility requirements of each ccTLD you apply for. You further agree to be bound by any registry rules, policies, and agreements for that particular ccTLD. These may include, but are not limited to, agreeing to indemnify the ccTLD provider, limiting the liability of the ccTLD provider, and requirements that any disputes be resolved under that particular country's laws.

\r\n

(A) PROVISIONS SPECIFIC TO .AU REGISTRATIONS 

\r\n

.au Registrations (to include com.au, net.au and org.au) are governed by the following additional terms and conditions:

\r\n

auDA. auDA means .au Domain Administration Limited ACN 079 009 340, the .au domain names administrator.  The Registrar acts as agent for auDA for the sole purpose, but only to the extent necessary, to enable auDA to receive the benefit of rights and covenants conferred to it under this Agreement. auDA is an intended third party beneficiary of this agreement.

\r\n

auDA Published Policy.  auDA Published Policies means those specifications and policies established and published by auDA from time to time at http://www.auda.org.au.  You must comply with all auDA Published Policies, as if they were incorporated into, and form part of, this Agreement. In the event of any inconsistency between any auDA Published Policy and this Agreement, then the auDA Published Policy will prevail to the extent of such inconsistency.  You acknowledge that under the auDA Published Policies: (1) there are mandatory terms and conditions that apply to all domain names; (2) licences, and such terms and conditions are incorporated into, and form part of, this Agreement; (3) You are bound by, and must submit to, the .au Dispute Resolution Policy; and (4) auDA may delete or cancel the registration of a .au domain name. 

\r\n

auDA's Liabilities and Indemnity.  To the fullest extent permitted by law, auDA will not be liable to Registrant for any direct, indirect, consequential, special, punitive or exemplary losses or damages of any kind (including, without limitation, loss of use, loss or profit, loss or corruption of data, business interruption or indirect costs) suffered by Registrant arising from, as a result of, or otherwise in connection with, any act or omission whatsoever of auDA, its employees, agents or contractors. Registrant agrees to indemnify, keep indemnified and hold auDA, its employees, agents and contractors harmless from all and any claims or liabilities, arising from, as a result of, or otherwise in connection with, Registrant's registration or use of its .au domain name. Nothing in this document is intended to exclude the operation of Trade Practices Act 1974.

\r\n

(B) PROVISIONS SPECIFIC TO .CA REGISTRATIONS

\r\n

You acknowledge and agree that registration of your selected domain name in your first application to CIRA shall not be effective until you have entered into and agreed to be bound by CIRA's Registrant Agreement.

\r\n

CIRA Certified Registrar.  The registrar shall immediately give notice to you in the event that it is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated, or the Registrar Agreement between CIRA and the Registrar is terminated or expires. CIRA may post notice of such suspension, termination, or expiry on its website and may, if CIRA deems appropriate, give notice to the registrants thereof. In the event that the registrar is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated or in the event the Registrar Agreement between CIRA and the Registrar is terminated or expires, you shall be responsible for changing your Registrar of Record to a new CIRA Certified Registrar within thirty (30) days of the earlier of notice thereof being given to you by (i) the Registrar or (ii) CIRA in accordance with CIRA's then current Registry PRP; provided, however, that if any of your domain name registrations are scheduled to expire within thirty (30) days of the giving of such notice, then you shall have thirty (30) days from the anniversary date of the registration(s), to register with a new CIRA certified registrar and to renew such domain name registration(s) in accordance with the Registry PRP.

\r\n

You acknowledge and agree that should there be insufficient funds prepaid by the registrar in the CIRA Deposit Account to be applied in payment of any fees, CIRA may in its sole discretion stop accepting applications for domain name registrations from the registrar, stop effecting registrations of domain names and transfers, renewals, modifications, and cancellations requested by the registrar and stop performing other billable transactions requested by the registrar not paid in full and CIRA may terminate the Registrar Agreement between CIRA and the Registrar.

\r\n

.CA ASCII and IDN domain variants are bundled and reserved for a single registrant.  Registrants are not required to register all variants in a bundle, but all registered variants must be registered and managed at a single registrar. Each variant registered will incur a registration fee.  In addition, when registering multiple .CA domain (ASCII and IDN) variants in a bundle, your registrant information must be identical.  If variants are registered at other registrars or if registrant information does not match, it may result in an \"unavailable\" search result, delayed or failed registration. If information does not match, validation is required and may take up to seven business days and delay availability of domain. 

\r\n

(C) PROVISIONS SPECIFIC TO .CN REGISTRATIONS 

\r\n

.CN is a restricted TLD – applications are subject to both a domain name check and real name verification as required by the People’s Republic of China.  Registrations in .CN are therefore subject to the following additional terms:

\r\n

Verification, Registration and Activation.  If a domain name is not permitted to be registered by the Chinese government, as determined by us, the Registry Operator and/or a 3rd party provider utilized for such services and determinations, in either party’s discretion, the application for registration will not be successful.  In such event, the name will be deleted and you will be eligible for a refund as further described below.

\r\n

If permitted, then the Registration may proceed, but a .CN domain name may not be activated (i.e., it will not resolve in the Internet) unless and until you have submitted (via the process described during registration) valid documents required of us and the Registry to perform real name verification.  The following are acceptable forms of documents for the purpose of verification:

\r\n
    \r\n
  • China: Resident ID, temporary resident ID, business license or organization code certificate
  • \r\n
  • Hong Kong/Macau: Resident ID, driver’s license, passport or business license
  • \r\n
  • Singapore: Driver’s license, passport or business license
  • \r\n
  • Taiwan: Resident ID, driver’s license or business license
  • \r\n
  • Other Countries/Regions: Driver’s license or passport
  • \r\n
\r\n

Documents submitted to us are used by us and shared with the Registry solely for the purpose of real name verification, and are otherwise subject to our Privacy Policy.  By registering a .CN domain, you expressly agree that your data may be stored on servers in the U.S., or otherwise outside of the People's Republic of China.

\r\n

Refunds.  Refunds for .CN Registrations will only be allowed where (i) registration of the applied for domain name is not permitted by the Chinese government; or (ii) you notify us of your intent to cancel for any reason within the first five (5) days after the Registration (i.e., after it is deemed permissible by the Chinese government).  For the avoidance of doubt, refunds will not be permitted under any circumstances after five (5) days from the date of Registration, including, for example, in the event real name verification is not successful or if the Chinese government determines after Registration that the domain name should not have been registered (and directs us to delete).

\r\n

(D) PROVISIONS SPECIFIC TO .JP REGISTRATIONS

\r\n

Registration Restrictions.  You represent and warrant that you have a local presence in Japan with a home or office address. You agree that certain domain names are reserved and can only be registered by certain parties. These include: (i) TLDs, other than ccTLDs, as determined by ICANN; (ii) geographical-type .JP domain names that are defined as metropolitan, prefectural, and municipal labels; (iii) names of primary and secondary educational organizations; (iv) names of organizations related to Internet management; (v) names required for .JP domain name operations; and (vi) character strings which may be confused with ASCII-converted Japanese domain names. The complete list of .JP Reserved Domains is available here

\r\n

20. ENGLISH LANGUAGE CONTROLS

\r\n

This Agreement, along with all policies and the applicable product agreements identified above and incorporated herein by reference (collectively, the “Agreement”), is executed in the English language. To the extent any translation is provided to you, it is provided for convenience purposes only, and in the event of any conflict between the English and translated version, where permitted by law, the English version will control and prevail. Where the translated version is required to be provided to you and is to be considered binding by law (i) both language versions shall have equal validity, (ii) each party acknowledges that it has reviewed both language versions and that they are substantially the same in all material respects, and (iii) in the event of any discrepancy between these two versions, the translated version may prevail, provided that the intent of the Parties has been fully taken into consideration. 

\n
\n
\n\nRevised: 10/6/17
\nCopyright © 2000-2017 All Rights Reserved.\n
\n
\n
", - "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=reg_sa&pl_id=510456" - }, - { - "agreementKey": "DNPA", - "title": "Domain Name Proxy Agreement", - "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Proxy Agreement\n
\n

Last Revised: October 25, 2017

\n

Please read this Domain Name Proxy Agreement (\"Agreement\") carefully. By using the Services and/or website of Domains By Proxy, LLC, a Delaware limited liability company (\"DBP\"), You (as defined below) agree to all the terms and conditions set forth both herein and in the DBP privacy policy, which is incorporated by reference and can be found by clicking here.  You acknowledge that DBP may amend this Agreement at any time upon posting the amended terms on its website, and that any new, different or additional features changing the services provided by DBP will automatically be subject to this Agreement. If You do not agree to be bound by, or if You object to, the terms and conditions of this Agreement and any amendments hereto, do not use or access DBP's services. Continued use of DBP's services and its website after any such changes to this Agreement have been posted, constitutes Your acceptance of those changes.

\r\n

This Agreement is by and between DBP and you, your heirs, assigns, agents and contractors (\"You\") and is made effective as of the date of electronic execution. This Agreement sets forth the terms and conditions of Your relationship with DBP and Your use of DBP's services and represents the entire Agreement between You and DBP. By using DBP's Services, You acknowledge that You have read, understand and agree to be bound by all the terms and conditions of this Agreement, and You further agree to be bound by the terms of this Agreement for transactions entered into by:

\r\n
    \r\n
  1. You on Your behalf;
  2. \r\n
  3. Anyone acting as Your agent; and
  4. \r\n
  5. Anyone who uses the account You have established with DBP, whether or not the transactions were on Your behalf and/or authorized by You.
  6. \r\n
\r\n

You agree You will be bound by representations made by third parties acting on Your behalf, which either use or purchase services from DBP. You further agree that DBP will not be bound by statements of a general nature on DBP's website or DBP promotional materials. You further agree to abide by the terms and conditions promulgated by the Internet Corporation for Assigned Names and Numbers (\"ICANN\") (including the Uniform Domain Name Dispute Resolution Policy (\"Dispute Resolution Policy\") and Your Registrar (i.e., the ICANN-accredited person or entity through which You register a domain name).

\r\n

1. description of DBP's private registration services

\r\n

When You subscribe to DBP's private registration service through a DBP-affiliated Registrar, DBP will display its contact information in the publicly available \"Whois\" directory in place of Your information. DBP shall keep Your name, postal address, email address, phone and fax numbers confidential, subject to Section 4 of this Agreement. The following information (and not Your personal information) will be made publicly available in the \"Whois\" directory as determined by ICANN policy:

\r\n
    \r\n
  1. DBP's name as the proxy Registrant of the domain name and a proxy email address, phone number and postal address for the proxy Registrant's contact information;
  2. \r\n
  3. A proxy postal address and phone number for the domain name registration's technical contact;
  4. \r\n
  5. A proxy email address, postal address and phone number for the domain name registration's administrative contact;
  6. \r\n
  7. A proxy email address, postal address and phone number for the domain's name registration's billing contact;
  8. \r\n
  9. The primary and secondary domain name servers You designate for the domain name;
  10. \r\n
  11. The domain name's original date of registration and expiration date of the registration; and
  12. \r\n
  13. The identity of the Registrar.
  14. \r\n
\r\n

2. full benefits of domain registration retained by you

\r\n

Although DBP will show in the \"Whois\" directory as the Registrant of each domain name registration You designate, You will retain the full benefits of domain name registration with respect to each such domain name registration, including, subject to Section 4 below:

\r\n
    \r\n
  1. The right to sell, transfer or assign each domain name registration, which shall require cancellation of the DBP services associated with each such domain name registration;
  2. \r\n
  3. The right to control the use of each domain name registration, including designating the primary and secondary domain name servers to which each domain name points;
  4. \r\n
  5. The right to cancel each domain name registration;
  6. \r\n
  7. The right to cancel the DBP services associated with each domain name registration and/or Your privacy services with DBP so that Your contract information is listed in the \"Whois\" directory; and
  8. \r\n
  9. The right to renew each domain name registration upon its expiration, subject to Your Registrar's applicable rules and policies.
  10. \r\n
\r\n

3. PERSONAL INFORMATION AND your notification obligations; representation and warranties; ACCOUNT SECURITY

\r\n

Personal Information and Your Notification Obligations 

\r\n

You agree that for each domain name for which you use DBP services, You will provide accurate and current information as to:

\r\n
    \r\n
  1. Your name, the email address, postal address, phone and fax numbers for the domain name registration's Registrant contact;
  2. \r\n
  3. The email address, postal address, phone and fax numbers for the domain name registration's technical contact;
  4. \r\n
  5. The email address, postal address, phone and fax numbers for the domain name registration's administrative contact;
  6. \r\n
  7. The email address, postal address, phone and fax numbers for the domain name registration's billing contact; and
  8. \r\n
  9. You agree to provide government issued photo identification and/or government issued business identification as required for verification of identity when requested.
  10. \r\n
\r\n

You agree to:

\r\n
    \r\n
  1. Notify DBP within three (3) calendar days when any of the personal information You provided upon subscribing to DBP's services, changes;
  2. \r\n
  3. Respond within three (3) calendar days to any inquiries made by DBP to determine the validity of personal information provided by You; and
  4. \r\n
  5. Timely respond to email messages DBP sends to You regarding correspondence DBP has received that is either addressed to or involves You and/or Your domain name registration, as more fully set forth in Section 5(c) below.
  6. \r\n
  7. To allow DBP to act as your Designated Agent (as that term is defined below) in instances when DBP services are added to or cancelled from your domain name and for the purpose of facilitating a change of registrant request (as further described below). 
  8. \r\n
\r\n

It is Your responsibility to keep Your personal information current and accurate at all times.

\r\n

Renewals

\r\n

You agree DBP will arrange for Your Registrar to charge the credit card You have on file with the Registrar, at the Registrar's then current rates.

\r\n

If for any reason DBP and/or the Registrar for Your domain name is unable to charge Your credit card for the full amount of the service provided, or if DBP and/or the Registrar is charged back for any fee it previously charged to the credit card You provided, You agree that DBP and/or the Registrar may, without notice to You, pursue all available remedies in order to obtain payment, including but not limited to immediate cancellation of all services DBP provides to You.

\r\n

Representations and Warranties

\r\n

You warrant that all information provided by You to DBP is truthful, complete, current and accurate. You also warrant that You are using DBP's private registration services in good faith and You have no knowledge of Your domain name infringing upon or conflicting with the legal rights of a third party or a third party's trademark or trade name. You also warrant the domain name being registered by DBP on Your behalf will not be used in connection with any illegal activity, or in connection with the transmission of Spam, or that contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable or, disrupting, damaging or limiting the functionality of any software or hardware.

\r\n

Account Security

\r\n

You agree You are entirely responsible for maintaining the confidentiality of Your customer number/login ID and password (\"Account Access Information\").  You agree to notify DBP immediately of any unauthorized use of Your account or any other breach of security.  You agree DBP will not be liable for any loss that You may incur as a result of someone else using Your Account Access Information, either with or without Your knowledge.  You further agree You could be held liable for losses incurred by DBP or another party due to someone else using Your Account Access Information.  For security purposes, You should keep Account Access Information in a secure location and take precautions to prevent others from gaining access to Your Account Access Information.  You agree that You are entirely responsible for all activity in Your account, whether initiated by You, or by others.  DBP specifically disclaims liability for any activity in Your account, regardless of whether You authorized the activity.

\r\n

Designated Agency and Change of Registrant Information

\r\n

“DESIGNATED AGENT” MEANS AN INDIVIDUAL OR ENTITY THAT THE PRIOR REGISTRANT OR NEW REGISTRANT EXPLICITLY AUTHORIZES TO APPROVE A CHANGE OF REGISTRANT REQUEST ON ITS BEHALF.  IN THE CASE OF DBP SERVICES, A CHANGE OF REGISTRANT REQUEST MAY ALSO ARISE DUE TO INSTANCES WHERE DBP SERVICES ARE ADDED, OR REMOVED, FROM A DOMAIN NAME.  FOR THE PURPOSE OF FACILITATING ANY SUCH CHANGE REQUEST, AND IN ACCORDANCE WITH ICANN'S CHANGE OF REGISTRANT POLICY, YOU AGREE TO APPOINT DBP AS YOUR DESIGNATED AGENT FOR THE SOLE PURPOSE OF EXPLICITLY CONSENTING TO MATERIAL CHANGES OF REGISTRATION CONTACT INFORMATION ON YOUR BEHALF.

\r\n

4. DBP's rights to deny, suspend, terminate service and to disclose your personal information

\r\n

You understand and agree that DBP has the absolute right and power, in its sole discretion and without any liability to You whatsoever, to:

\r\n
    \r\n
  1. Cancel the privacy service (which means that Your information will be available in the \"Whois\" directory) and/or reveal Your name and personal information that You provided to DBP:  
    A. When required by law, in the good faith belief that such action is necessary in order to conform to the edicts of the law or in the interest of public safety;
    B. To comply with legal process served upon DBP or in response to a reasonable threat of litigation against DBP (as determined by DBP in its sole and absolute discretion); or
    C. To comply with ICANN rules, policies, or procedures.
  2. \r\n
  3. Resolve any and all third party claims, whether threatened or made, arising out of Your use of a domain name for which DBP is the registrant listed in the \"Whois\" directory on Your behalf; or
  4. \r\n
  5. Take any other action DBP deems necessary:
    A. In the event you breach any provision of this Agreement or the DBP Anti-Spam Policy;
    B. To protect the integrity and stability of, and to comply with registration requirements, terms, conditions and policies of, the applicable domain name Registry and/or Registry Provider;
        C. To comply with any applicable laws, government rules or requirements, subpoenas, court orders or requests of law enforcement; 
    D. To comply with ICANN's Dispute Resolution Policy or ICANN's Change of Registrant Policy;
    E. To avoid any financial loss or legal liability (civil or criminal) on the part of DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, officers, directors and employees;
    F. If the domain name for which DBP is the registrant on Your behalf violates or infringes a third party's trademark, trade name or other legal rights; and
    G. If it comes to DBP's attention that You are using DBP's services in a manner (as determined by DBP in its sole and absolute discretion) that:
  6. \r\n
\r\n
\r\n
    \r\n
  • Is illegal, or promotes or encourages illegal activity;
  • \r\n
  • Promotes, encourages or engages in child pornography or the exploitation of children;
  • \r\n
  • Promotes, encourages or engages in terrorism, violence against people, animals, or property;
  • \r\n
  • Promotes, encourages or engages in any spam or other unsolicited bulk email, or computer or network hacking or cracking;
  • \r\n
  • Violates the Ryan Haight Online Pharmacy Consumer Protection Act of 2008 or similar legislation, or promotes, encourages or engages in the sale or distribution of prescription medication without a valid prescription;  
  • \r\n
  • Infringes on the intellectual property rights of another User or any other person or entity;
  • \r\n
  • Violates the privacy or publicity rights of another User or any other person or entity, or breaches any duty of confidentiality that you owe to another User or any other person or entity;
  • \r\n
  • Interferes with the operation of DBP services;
  • \r\n
  • Contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable of, disrupting, damaging or limiting the functionality of any software or hardware; or
  • \r\n
  • Contains false or deceptive language, or unsubstantiated or comparative claims, regarding DBP or its services.
  • \r\n
\r\n
\r\n

You further understand and agree that if DBP is named as a defendant in, or investigated in anticipation of, any legal or administrative proceeding arising out of Your domain name registration or Your use of DBP's services, Your private registration service may be canceled, which means the domain name registration will revert back to You and Your identity will therefore be revealed in the Whois directory as Registrant.

\r\n

In the event:

\r\n
    \r\n
  1. DBP takes any of the actions set forth in subsection i, ii, or iii above or section 5; and/or
  2. \r\n
  3. You elect to cancel DBP's services for any reason --
  4. \r\n
\r\n

Neither DBP nor your Registrar will refund any fees paid by You whatsoever.

\r\n

5. communications forwarding

\r\n

a. Correspondence Forwarding

\r\n

Inasmuch as DBP's name, postal address and phone number will be listed in the Whois directory, You agree DBP will review and forward communications addressed to Your domain name that are received via email, certified or traceable courier mail (such as UPS, FedEx, or DHL), or first class U.S. postal mail. You specifically acknowledge DBP will not forward to You first class postal mail (other than legal notices), \"junk\" mail or other unsolicited communications (whether delivered through email, fax, postal mail or telephone), and You further authorize DBP to either discard all such communications or return all such communications to sender unopened. You agree to waive any and all claims arising from Your failure to receive communications directed to Your domain name but not forwarded to You by DBP.

\r\n

b. Email Forwarding

\r\n

The Whois directory requires an email address for every purchased domain name registration. When You purchase a private domain registration, DBP creates a private email address for that domain name, \"@domainsbyproxy.com\". Thereafter, when messages are sent to that private email address, DBP handles them according to the email preference You selected for that particular domain name. You have three (3) email preferences from which to choose. You can elect to:

\r\n
    \r\n
  1. Have all of the messages forwarded;
  2. \r\n
  3. Have all of the messages filtered for Spam and then forwarded; or
  4. \r\n
  5. Have none of the messages forwarded.
  6. \r\n
\r\n

As with all communications, You agree to waive any and all claims arising from Your failure to receive email directed to Your domain name but not forwarded to You by DBP.

\r\n

c. Notifications Regarding Correspondence and Your Obligation to Respond

\r\n

When DBP receives certified or traceable courier mail or legal notices addressed to Your domain name, in most cases, DBP will attempt to forward the mail to you via email. If You do not respond to the DBP email and/or the correspondence DBP has received regarding Your domain name registration concerns a dispute of any kind or otherwise requires immediate disposition, DBP may immediately reveal Your identity and/or cancel the DBP private registration service regarding either the domain name registration(s) in question. This means the Whois directory will revert to displaying Your name, postal address, email address and phone number that you provided to DBP.

\r\n

d. Additional Administrative Fees

\r\n

DBP reserves the right to charge You reasonable \"administrative fees\" or \"processing fees\" for (i)  tasks DBP may perform outside the normal scope of its Services, (ii) additional time and/or costs DBP may incur in providing its Services, and/or (iii) Your non-compliance with the Agreement (as determined by DBP in its sole and absolute discretion). Typical administrative or processing fee scenarios include, but are not limited to, (i) customer service issues that require additional personal time and attention; (ii) disputes that require accounting or legal services, whether performed by DBP staff or by outside firms retained by DBP; (iii) recouping any and all costs and fees, including the cost of Services, incurred by DBP as the result of chargebacks or other payment disputes brought by You, Your bank or Payment Method processor.  These administrative fees or processing fees will be billed to the Payment Method You have on file with Your Registrar.

\r\n

You agree to waive the right to trial by jury in any proceeding that takes place relating to or arising out of this Agreement.

\r\n

6. limitations of liability

\r\n

UNDER NO CIRCUMSTANCES SHALL DBP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, PUNITIVE, SPECIAL, OR CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER RELATED TO THIS AGREEMENT, YOUR DOMAIN NAME REGISTRATION, DBP'S SERVICES, USE OR INABILITY TO USE THE DBP WEBSITE OR THE MATERIALS AND CONTENT OF THE WEBSITE OR ANY OTHER WEBSITES LINKED TO THE DBP WEBSITE OR YOUR PROVISION OF ANY PERSONALLY IDENTIFIABLE INFORMATION TO DBP OR ANY THIRD PARTY. THIS LIMITATION APPLIES REGARDLESS OF WHETHER THE ALLEGED LIABILITY IS BASED ON CONTRACT, TORT, WARRANTY, NEGLIGENCE, STRICT LIABILITY OR ANY OTHER BASIS, EVEN IF DBP HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR SUCH DAMAGES WERE REASONABLY FORESEEABLE. BECAUSE CERTAIN JURISDICTIONS DO NOT PERMIT THE LIMITATION OR ELIMINATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, DBP'S LIABILITY IN SUCH JURISDICTIONS SHALL BE LIMITED TO THE SMALLEST AMOUNT PERMITTED BY LAW.

\r\n

YOU FURTHER UNDERSTAND AND AGREE THAT DBP DISCLAIMS ANY LOSS OR LIABILITY RESULTING FROM:

\r\n
    \r\n
  1. THE INADVERTENT DISCLOSURE OR THEFT OF YOUR PERSONAL INFORMATION;
  2. \r\n
  3. ACCESS DELAYS OR INTERRUPTIONS TO OUR WEBSITE OR THE WEBSITES OF OUR AFFILIATED REGISTRARS;
  4. \r\n
  5. DATA NON-DELIVERY OF MIS-DELIVERY BETWEEN YOU AND DBP;
  6. \r\n
  7. THE FAILURE FOR WHATEVER REASON TO RENEW A PRIVATE DOMAIN NAME REGISTRATION;
  8. \r\n
  9. THE UNAUTHORIZED USE OF YOUR DBP ACCOUNT OR ANY OF DBP'S SERVICES;
  10. \r\n
  11. ERRORS, OMISSIONS OR MISSTATEMENTS BY DBP;
  12. \r\n
  13. DELETION OF, FAILURE TO STORE, FAILURE TO PROCESS OR ACT UPON EMAIL MESSAGES FORWARDED TO EITHER YOU OR YOUR PRIVATE DOMAIN NAME REGISTRATION;
  14. \r\n
  15. PROCESSING OF UPDATED INFORMATION REGARDING YOUR DBP ACCOUNT; AND/OR
  16. \r\n
  17. ANY ACT OR OMISSION CAUSED BY YOU OR YOUR AGENTS (WHETHER AUTHORIZED BY YOU OR NOT).
  18. \r\n
\r\n

7. indemnity

\r\n

You agree to release, defend, indemnify and hold harmless DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, directors, officers and employees and Your Registrar, from and against any and all claims, demands, liabilities, losses, damages or costs, including reasonable attorneys' fees, arising out of or related in any way to this Agreement, the services provided hereunder by DBP, the DBP website, Your account with DBP, Your use of Your domain name registration, and/or disputes arising in connection with the dispute policy.

\r\n

8. DBP warranty disclaimer

\r\n

DBP, ITS PARENT COMPANIES, SUBSIDIARIES, AFFILIATES, SHAREHOLDERS, AGENTS, DIRECTORS, OFFICERS, AND EMPLOYEES EXPRESSLY DISCLAIM ALL REPRESENTATIONS AND WARRANTIES OF ANY KIND IN CONNECTION WITH THIS AGREEMENT, THE SERVICE PROVIDED HEREUNDER, THE DBP WEBSITE OR ANY WEBSITES LINKED TO THE DBP WEBSITE, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL DBP SERVICES, AS WELL AS THE DBP WEBSITE, ARE PROVIDED \"AS IS\". YOUR SUBSCRIPTION TO AND USE OF DBP'S SERVICES AND ITS WEBSITE ARE ENTIRELY AT YOUR RISK. SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OF IMPLIED WARRANTIES, IN WHICH EVENT THE FOREGOING DISCLAIMER MAY NOT APPLY TO YOU.

\r\n

9. copyright and trademark

\r\n

You understand and agree that all content and materials contained in this Agreement, the Privacy Policy and the DBP website found here , are protected by the various copyright, patent, trademark, service mark and trade secret laws of the United States, as well as any other applicable proprietary rights and laws, and that DBP expressly reserves its rights in and to all such content and materials.

\r\n

You further understand and agree You are prohibited from using, in any manner whatsoever, any of the afore-described content and materials without the express written permission of DBP. No license or right under any copyright, patent, trademark, service mark or other proprietary right or license is granted to You or conferred upon You by this Agreement or otherwise.

\r\n

10. miscellaneous provisions

\r\n

a. Severability; Construction; Entire Agreement

\r\n

If any part of this Agreement shall be held to be illegal, unenforceable or invalid, in whole or in part, such provision shall be modified to the minimum extent necessary to make it legal, enforceable and valid, and the legality, enforceability and validity of the remaining provisions of this Agreement shall not be affected or impaired. The headings herein will not be considered a part of this Agreement. You agree this Agreement, including the policies it incorporates by reference, constitute the complete and only Agreement between You and DBP regarding the services contemplated herein.

\r\n

b. Governing Law; Venue; Waiver Of Trial By Jury

\r\n

This Agreement shall be governed in all respects by the laws and judicial decisions of Maricopa County, Arizona, excluding its conflicts of laws rules. Except as provided immediately below, You agree that any action relating to or arising out of this Agreement, shall be brought exclusively in the courts of Maricopa County, Arizona. For the adjudication of domain name registration disputes, you agree to submit to the exclusive jurisdiction and venue of the U.S. District Court for the District of Arizona located in Phoenix, Arizona. You agree to waive the right to trial by jury in any proceeding, regardless of venue, that takes place relating to or arising out of this Agreement.

\r\n

c. Notices

\r\n

All notices from DBP to You will be sent to the email address You provided to DBP. Notices by email shall be deemed effective twenty-four (24) hours after the email is sent by DBP, unless DBP receives notice that the email address is invalid, in which event DBP may give You notice via first class or certified mail, return receipt requested. All notices from You to DBP shall be sent via certified mail, return receipt requested or traceable courier to:

\r\n
      Domains By Proxy, LLC
      Attn: General Counsel
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

Notices sent via certified mail or traceable courier shall be deemed effective five (5) days after the date of mailing.

\r\n

d. Insurance

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's negligent actions (and absent fraud or other negligent or willful misconduct committed by a third party), You may be insured against such loss through DBP's Professional Liability Insurance Policy, which is currently underwritten by American International Insurance Company. Of course, every claim is subject to the then-carrier's investigation into the facts and circumstances surrounding such claim. In the event You have reason to believe that circumstances exist which warrant the filing of an insurance claim, please send a written notice (specifying the basis for such claim), via certified mail, return receipt requested, to:

\r\n
      Domains By Proxy, LLC
      Attn: Insurance Claims
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

e. Indemnification

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's willful misconduct, Your Registrar (the \"Indemnifying Party\") will indemnify and hold You harmless against any losses, damages or costs (including reasonable attorneys' fees) resulting from any claim, action, proceeding, suit or demand arising out of or related to the loss of Your domain name registration. Such indemnification obligations under this Section 10(e) are conditioned upon the following:

\r\n
    \r\n
  1. That You promptly give both DBP and the Indemnifying Party written notice of the claim, demand, or action and provide reasonable assistance to the Indemnifying Party, at its cost and expense, in connection therewith, and
  2. \r\n
  3. That the Indemnifying Party has the right, at its option, to control and direct the defense to any settlement of such claim, demand, or action.
  4. \r\n
\r\n

Any notice concerning indemnification shall, with respect to DBP, be sent in accordance with Section 10(c) of this Agreement. With respect to Your Registrar, notices regarding indemnification should be sent in accordance with the notification provisions contained in Your Registrar's Domain Name Registration Agreement.

\r\n

f. Term of Agreement; Survival

\r\n

The terms of this Agreement shall continue in full force and effect as long as DBP is the Registrant for any domain name on Your behalf. Sections 5 (Communications Forwarding), 6 (Limitation of Liability), 7 (Indemnity), 8 (Warranty Disclaimer) and 10 (Miscellaneous Provisions) shall survive any termination or expiration of this Agreement.

\n
\n
\n\nRevised: 10/25/17
\nCopyright © 2003-2017 All Rights Reserved.\n
\n
\n
", - "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=domain_nameproxy&pl_id=510456" - } - ] - } - } + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "name": "in", + "api-version": "2018-02-01", + "agreementOption": { + "IncludePrivacy": true, + "ForTransfer": false } -} \ No newline at end of file + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "agreementKey": "DNRA", + "title": "Domain Name Registration Agreement", + "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Registration Agreement\n
\n

Last Revised: October 6, 2017

\n

PLEASE READ THIS AGREEMENT CAREFULLY, AS IT CONTAINS IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS AND REMEDIES.

\r\n

1. OVERVIEW

\r\n

This Domain Name Registration Agreement (this \"Agreement\") is entered into by and between 510456, an individual (\"Azure\") and you, and is made effective as of the date of electronic acceptance.  This Agreement sets forth the terms and conditions of your use of Azure's Domain Name Registration services (the \"Domain Name Registration Services\" or the \"Services\"). The terms \"we\", \"us\" or \"our\" shall refer to Azure.  The terms \"you\", \"your\", \"User\" or \"customer\" shall refer to any individual or entity who accepts this Agreement.  Unless otherwise specified, nothing in this Agreement shall be deemed to confer any third-party rights or benefits.

\r\n

Your electronic acceptance of this Agreement signifies that you have read, understand, acknowledge and agree to be bound by this Agreement, which incorporates by reference each of (i) Azure’s Universal Terms of Service Agreement (\"UTOS\"), (ii) all agreements, guidelines, policies, practices, procedures, registration requirements or operational standards of the top-level domain (\"TLD\") in which you register any domain (“Registry Policies”), and (iii) any plan limits, product disclaimers or other restrictions presented to you on the Domain Name Registration Services landing page of the Azure website (this “Site”). 

\r\n

TO LINK TO AND REVIEW THE REGISTRY POLICIES FOR THE TLD IN WHICH YOU WISH TO REGISTER A DOMAIN NAME, PLEASE CLICK HERE   

\r\n

You acknowledge and agree that (i) Azure, in its sole and absolute discretion, may change or modify this Agreement, and any policies or agreements which are incorporated herein, at any time, and such changes or modifications shall be effective immediately upon posting to this Site, and (ii) your use of this Site or the Services found at this Site after such changes or modifications have been made shall constitute your acceptance of this Agreement as last revised.  If you do not agree to be bound by this Agreement as last revised, do not use (or continue to use) this Site or the Services found at this Site.  In addition, Azure may occasionally notify you of changes or modifications to this Agreement by email.  It is therefore very important that you keep your shopper account (“Shopper Account”) information, including your email address, current.  Azure assumes no liability or responsibility for your failure to receive an email notification if such failure results from an inaccurate or out-of-date email address.    Azure is not an Internet Corporation for Assigned Names and Numbers (\"ICANN\") accredited registrar; it is an authorized reseller of domain name registration services.  Accordingly, you acknowledge and agree that Azure may modify this Agreement in order to comply with any terms and conditions set forth by (i) the sponsoring registrar, (ii) ICANN, and/or (iii) the registry applicable to the TLD or country code top level domain (\"ccTLD\") in question.  As used herein, the terms \"registry\", \"Registry\", \"registry operator\" or \"Registry Operator\" shall refer to the registry applicable to the TLD or ccTLD in question.  To identify the sponsoring registrar, click here

\r\n

2. PROVISIONS SPECIFIC TO ALL REGISTRATIONS

\r\n

Unless otherwise noted, the provisions below in this Section 2 are generally applicable to all TLDs that we offer.  Special provisions specific to any TLD or ccTLD (those in addition to posted Registry Policies) are identified elsewhere below in this Agreement. 

\r\n
    \r\n
  1. \r\n
    Registry Policies. You agree to be bound by all Registry Policies (defined above in this Agreement) applicable to your domain name registration (at any level). IT IS YOUR RESPONSIBILITY TO VISIT THE APPLICABLE TLD SITE AND READ AND REVIEW ALL APPLICABLE REGISTRY POLICIES PRIOR TO YOUR REGISTRATION IN THE TLD.  REGISTRY POLICIES FOR EACH TLD CAN BE FOUND BY VISITING THE CORRESPONDING TLD LINK LISTED HERE.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator of the TLD in which the domain name registration is made is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the respective TLD. The third party beneficiary rights of the Registry Operator will survive any termination of this Agreement.    
    \r\n
  2. \r\n
  3. \r\n
    Registration Requirements.  To the extent any TLD or ccTLD requires you meet eligibility (e.g., residency for .JP, .EU, etc.), validation (e.g., DNS validation) or other authentication requirements as a condition to registering a domain name in the TLD, you agree that by submitting an application or registering or renewing your domain name, you represent and warrant that: (a) all information provided to register or renew the domain name (including all supporting documents, if any) is true, complete and correct, and is not misleading in any way, and the application is made in good faith; (b) you meet, and will continue to meet, the eligibility criteria prescribed in the Registry Policies for the applicable TLD for the duration of the domain name registration; (c) you have not previously submitted an application for the domain name with another registrar using the same eligibility criteria, and the other registrar has rejected the application (if applicable); (d) you acknowledge and agree that even if the domain name is accepted for registration, your entitlement to register the domain name may be challenged by others who claim to have an entitlement to the domain name; and (e) you acknowledge and agree that the Registry or the registrar can cancel the registration of the domain name if any of the warranties required are found to be untrue, incomplete, incorrect or misleading.
    \r\n
  4. \r\n
  5. \r\n
    Ownership.  You acknowledge and agree that registration of a domain name does not create any proprietary right for you, the registrar, or any other person in the name used as a domain name or the domain name registration and that the entry of a domain name in the Registry shall not be construed as evidence or ownership of the domain name registered as a domain name. You shall not in any way transfer or purport to transfer a proprietary right in any domain name registration or grant or purport to grant as security or in any other manner encumber or purport to encumber a domain name registration.
    \r\n
  6. \r\n
  7. \r\n
    ICANN Requirements. You agree to comply with the ICANN requirements, standards, policies, procedures, and practices for which each applicable Registry Operator has monitoring responsibility in accordance with the Registry Agreement between ICANN and itself or any other arrangement with ICANN.
    \r\n
  8. \r\n
  9. \r\n
    Indemnification of Registry.  You agree to indemnify, defend and hold harmless (within 30 days of demand) the Registry Operator and Registry Service Provider and their subcontractors, subsidiaries, affiliates, divisions, shareholders, directors, officers, employees, accountants, attorneys, insurers, agents, predecessors, successors and assigns, from and against any and all claims, demands, damages, losses, costs, expenses, causes of action or other liabilities of any kind, whether known or unknown, including reasonable legal and attorney’s fees and expenses, in any way arising out of, relating to, or otherwise in connection with the your domain name registration, including, without limitation, the use, registration, extension, renewal, deletion, and/or transfer thereof and/or the violation of any applicable terms or conditions governing the registration. You shall not enter into any settlement or compromise of any such indemnifiable claim without Registrar’s or Registry Operator’s prior written consent, which consent shall not be unreasonably withheld, and you agree that these indemnification obligations shall survive the termination or expiration of the Agreement for any reason.  IN NO EVENT SHALL THE REGISTRY OPERATOR BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, EXEMPLARY OR PUNITIVE DAMAGES, INCLUDING LOSS OF PROFIT OR GOODWILL, FOR ANY MATTER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE), BREACH OF WARRANTIES, EITHER EXPRESS OR IMPLIED, ANY BREACH OF THIS AGREEMENT OR ITS INCORPORATED AGREEMENTS AND POLICIES YOUR INABILITY TO USE THE DOMAIN NAME, YOUR LOSS OF DATA OR FILES OR OTHERWISE, EVEN IF THE REGISTRY OPERATOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    \r\n
  10. \r\n
  11. \r\n
    Regulated TLDs.   For domain name registration in any “Regulated” TLD, you acknowledge and agree your registration is subject to the following additional requirements: (a) comply with all applicable laws, including those that relate to privacy, data collection, consumer protection (including in relation to misleading and deceptive conduct), fair lending, debt collection, organic farming, disclosure of data, and financial disclosures; (b) if you collect and maintain sensitive health and financial data you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  Regulated TLDs include: .games, .juegos, .school, .schule, .toys, .eco, .care, .diet, .fitness, .health, .clinic, .dental, .healthcare, .capital, .cash, .broker, .claims, .exchange, .finance, .financial, .fund, .investments, .lease, .loans, .market, .money, .trading, .credit, .insure, .tax, .mortgage, .degree, .mba, .audio, .book, .broadway, .film, .movie, .music, .software, .fashion, .video, .app, .art, .band, .cloud, .data, .digital, .fan, .free, .gratis, .discount, .sale, .media, .news, .online, .pictures, .radio, .show, .theater, .tours, .accountants, .architect, .associates, .broker, .legal, .realty, .vet, .engineering, .law, .limited, .show; .theater; .town, .city, .reise, and .reisen
    \r\n
  12. \r\n
  13. \r\n
    Highly Regulated TLDs. In addition to the requirements for Regulated TLDs, domain name registration in any Highly-Regulated TLD is subject to the following requirements: (a) you will provide administrative contact information, which must be kept up‐to‐date, for the notification of complaints or reports of registration abuse, as well as the contact details of the relevant regulatory, or Industry self‐regulatory, bodies in their main place of business; (b) you represent that you possess any necessary authorizations, charters, licenses and/or other related credentials for participation in the sector associated with such Highly‐regulated TLD; and (c) you will report any material changes to the validity of you authorizations, charters, licenses and/or other related credentials for participation in the sector associated with the Highly‐regulated TLD to ensure you continue to conform to the appropriate regulations and licensing requirements and generally conduct your activities in the interests of the consumers they serve.  Highly Regulated TLDs include: .abogado, .attorney, .bank, .bet, .bingo, .casino .charity (and IDN equivalent xn--30rr7y), .cpa, .corp, creditcard, .creditunion .dds, .dentist, .doctor, .fail, .gmbh, .gripe, .hospital, .inc, .insurance, .lawyer, .lifeinsurance, .llc, .llp, .ltda, .medical, .mutuelle, .pharmacy, .poker, .university, .sarl, .spreadbetting, .srl, .sucks, .surgery .university, .vermogensberater, .vesicherung,  and .wtf.  For .doctor, registrants who hold themselves out to be licensed medical practitioners must be able to demonstrate to the Registrar and Registry, upon request, that they hold the applicable license.
    \r\n
  14. \r\n
  15. \r\n
    Special Safeguard TLDs.  In addition to the requirements for Regulated and Highly-Regulated TLDs, by registering a domain name in any “Special-Safeguard” TLD, you agree to take reasonable steps to avoid misrepresenting or falsely implying that you or your business is affiliated with, sponsored or endorsed by one or more country's or government's military forces if such affiliation, sponsorship or endorsement does not exist.  Special Safeguard TLDs include:  .army, .navy, .airforce
    \r\n
  16. \r\n
  17. \r\n
    Third Party Beneficiary.  Notwithstanding anything in this Agreement to the contrary, the Registry Operator for any TLD in which your register a domain name is and shall be an intended third party beneficiary of this Agreement. As such the parties to this agreement acknowledge and agree that the third party beneficiary rights of the Registry Operator have vested and that the Registry Operator has relied on its third party beneficiary rights under this Agreement in agreeing to Azure being a registrar for the TLD. Third party beneficiary rights of the Registry Operator shall survive any termination of this Agreement.
    \r\n
  18. \r\n
  19. \r\n
    Variable and Non-Uniform Pricing.  You acknowledge, understand and agree that certain domain names in certain TLDs are established by Registry Policies to be variably priced (i.e., standard v. premium names) and/or may have non-uniform renewal registration pricing (such that the Fee for a domain name registration renewal may differ from other domain names in the same TLD, e.g., renewal registration for one domain may be $100.00 and $33.00 for a different domain name).
    \r\n
  20. \r\n
  21. \r\n
    Restriction on Availability of Privacy or Proxy.  You acknowledge and agree that, as dictated by the Registry Policies, for certain TLDs you may not be permitted to purchase private or proxy TLD registrations. In such case, you must register for any and all TLD registrations using your personal information, which information you represent and warrant is current, accurate and complete.
    \r\n
  22. \r\n
\r\n

3. FEES AND PAYMENTS

\r\n

(A) GENERAL TERMS, INCLUDING AUTOMATIC RENEWAL TERMS

\r\n

You agree to pay any and all prices and fees due for Services purchased or obtained at this Site at the time you order the Services.  Azure expressly reserves the right to change or modify its prices and fees at any time, and such changes or modifications shall be posted online at this Site and effective immediately without need for further notice to you.  If you have purchased or obtained Services for a period of months or years, changes or modifications in prices and fees shall be effective when the Services in question come up for renewal as further described below. 

\r\n

Unless otherwise specifically noted (for reasons such as those highlighted in Section 2(x) above), the renewal price for any domain name in any TLD will be the same as the list (non-sale) price shown when you search for and select a domain, and again in the cart prior to purchase.  For example, if the list price is $9.99, and a different renewal price is not specifically identified, then the renewal price is also $9.99.  Likewise, if a domain name has a sale price of $8.99, with the list (non-sale) price shown (as a strike-through) at $9.99, the renewal price will be $9.99*.  

\r\n

*Renewal price subject to change prior to actual date of renewal. 

\r\n

For all other terms and conditions relating to fees, payment, refund and billing, etc. applicable to the Services offered under the scope of this Agreement, please refer to the “Fees and Payments” section of our UTOS

\r\n

(B) DOMAIN NAME RENEWAL TERMS

\r\n

When you register a domain name, you will have two renewal options: (i) \"Automatic Renewal\" (ii) \"Extended Automatic Renewal\", and (iii) \"Manual Renewal\": 

\r\n
    \r\n
  1. Automatic Renewal.  Automatic Renewal is the default setting. Therefore, unless you select Extended Automatic Renewal, Azure will enroll you in Automatic Renewal.  Domain names will automatically renew, for a period equivalent to the length of your original domain name registration, any domain name that is up for renewal and will take payment from the Payment Method you have on file with Azure, at Azure's then current rates. Thus, if you have chosen to register your domain name for one (1) year, Azure will automatically renew it for one (1) year. If you have chosen to register your domain name for two (2) years, Azure will automatically renew it for two (2) years, and so on.
  2. \r\n
  3. Extended Automatic Renewal.  If you enroll in the Extended Automatic Renewal plan, Azure will automatically renew any domain name that is up for renewal for an additional one-year period on each and every anniversary of your domain name registration, so the initial registration period will always remain intact.  Thus, if you have chosen to register your domain name for two (2) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your two (2) year registration period will always remain intact. If you have chosen to register your domain name for five (5) years, Azure will automatically renew it for one (1) additional year on each and every anniversary of your domain name registration so your five (5) year registration period will always remain intact, and so on.  Azure will take payment from the Payment Method you have on file with Azure, at Azure's then current one-year domain name registration rate.
  4. \r\n
  5. Manual Renewal.  If you have elected to turn off automatic renewal and cancel the product (i.e., cancel the domain name registration) effective at expiration of the then current term, you may nonetheless elect to manually renew the domain name at anytime prior to its expiration date by logging into your Account Manager and manually implementing the renewal or by calling customer service (should you in fact want the domain name to be renewed). If you fail to manually implement the renewal before the expiration date, the domain name will be cancelled and you will no longer have use of that name.
  6. \r\n
\r\n

All renewals will be subject to the terms of this Agreement, as it may be amended from time to time, and you acknowledge and agree to be bound by the terms of this Agreement (as amended) for all renewed domains.  Domain name renewals will be non-refundable. In the event that we are unable to automatically renew your domain name for the renewal option selected for any reason, we may automatically renew your domain name for a period less than your original registration period to the extent necessary for the transaction to succeed. If for any reason Azure is not able to take the payment from the Payment Method you have on file, and you fail to respond to our notices, your domain name registration will expire. It is your responsibility to keep your Payment Method information current, which includes the expiration date if you are using a credit card.

\r\n

For certain ccTLDs (.am, .at, .be, .br, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal billing will occur on the first day of the month prior to the month of expiration.

\r\n

For certain ccTLDs (.am, .at, .be, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg), renewal will occur, or must occur manually if the product was previously cancelled, no later than the 20th of the month prior to the expiration date, or your domain name will be placed in non-renewal status. For some ccTLDs (.es) renewal must be processed no later than seven days before the expiration date, or your domain name will be placed in non-renewal status.  When the domain name is in non-renewal status, you can renew the domain name only by calling Azure and requesting that the domain name be renewed. You cannot renew the domain name through your Account Manager. If you fail to manually implement the renewal of any cancelled product before the expiration date, the domain name will be cancelled and you will no longer have use of that name.

\r\n

You agree that Azure will not be responsible for cancelled domain names that you fail to renew in the timeframes indicated in this Agreement. In any case, if you fail to renew your domain name in a timely fashion, additional charges may apply. If you signed up for privacy services, protected registration, or any other similar service, with your domain name registration, these services will automatically be renewed when your domain name registration is up for renewal, and you will incur the applicable additional renewal fee unless you cancel in advance. 

\r\n

If you fail to renew your domain name in the timeframes indicated in this Agreement, you agree that Azure may, in its sole discretion, renew your expired domain name on your behalf. If Azure decides to renew your expired domain name on your behalf, you will have a Renewal Grace Period during which you may reimburse Azure for the renewal and keep your domain name. The Renewal Grace Period is currently twelve (12) days but subject to change under the terms of this Agreement. For certain ccTLDs (.am, .at, .be, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk, and .vg) there is no Renewal Grace Period after the expiration date of the domain name. If you do not reimburse Azure for the renewal during the Renewal Grace Period your domain name will be placed on Hold and flagged for deletion after which you will have a 30-day redemption period during which you may pay Azure a Redemption fee and redeem your domain name. The Redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the 30-day redemption period Azure may, in its sole discretion, delete your domain name or transfer it to another registrant on your behalf.  During the redemption period your domain name may be parked. 

\r\n

If your domain name is deleted, the Registry also provides a 30-day Redemption Grace Period during which you may pay Azure a redemption fee and redeem your domain name. The redemption fee is currently $80.00 USD and is subject to change under the terms of this Agreement. If you do not redeem your domain name prior to the end of the Registry's Redemption Grace Period the Registry will release your name and it will become available for registration on a first-come-first-served basis.

\r\n

Renewal Grace Periods and Redemption Grace Periods vary for different ccTLDs. Please refer to the specific terms for the applicable TLD. In the event there is a conflict between the provisions of this paragraph and the ccTLD terms, the ccTLD terms shall control.

\r\n

\r\n

Our registration expiration notification policy and associated fees are described here.

\r\n

\r\n

\r\n

(C) FREE PRODUCT TERMS

\r\n

In the event you are provided with free products with the registration of a domain name, you acknowledge and agree that such free products will only be available with a valid purchase and may be terminated in the event the domain name is deleted or cancelled.  For free domain names, you acknowledge and agree that you may not change the account associated with such free domain for the first five (5) days after registration.  In the event a free domain name is offered with the registration of another domain and if the paid domain name registered fails, then we may, in its sole discretion, either delete the registration of the free domain or refund the difference between the amount paid and the value of the free domain.  Failed registrations associated with promotionals offers may result in the deletion of the free or discounted item or an adjustment between the registered domain price and the value of the discounted item, in our sole discretion.

\r\n

4. TERM OF AGREEMENT; TRANSFERS; DOMAIN TASTING

\r\n

The term of this Agreement shall continue in full force and effect as long as you have any domain name registered through Azure.

\r\n

You agree that you will not transfer any domain name registered through Azure to another domain name registrar during the first sixty (60) days after its initial registration date.  You agree that you may not transfer any domain name for ten (10) days after a Change of Account.

\r\n

You further agree that you will not engage in \"domain tasting\" by using the five (5) day grace period in which a registrant may choose to cancel a domain name and get a full refund of the registration fee as a vehicle to test the marketability or viability of a domain name.  If Azure determines (which determination shall be made by Azure in its sole and absolute discretion) that you have been engaging in \"domain tasting\", then Azure reserves the right to (a) charge you a small fee (which fee shall be deducted from any refund issued) or (b) refuse your cancellation/refund request altogether. Azure will not charge you a fee if Azure cancels your domain name during the five (5) day grace period due to fraud or other activity outside of your control. The five (5) day grace period does not apply to Premium Domains, which are non-refundable.

\r\n

You agree that Azure shall not be bound by (i) any representations made by third parties who you may use to purchase services from Azure, or (ii) any statements of a general nature, which may be posted on Azure's website or contained in Azure's promotional materials.

\r\n

5. UP TO DATE INFORMATION; USE OF INFORMATION AND EXPIRATION

\r\n

You agree to notify Azure within five (5) business days when any of the information you provided as part of the application and/or registration process changes. It is your responsibility to keep this information in a current and accurate status. Failure by you, for whatever reason, to provide Azure with accurate and reliable information on an initial and continual basis, shall be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. Failure by you, for whatever reason, to respond within five (5) business days to any inquiries made by Azure to determine the validity of information provided by you, shall also be considered to be a material breach of this Agreement and a basis for suspension and/or cancellation of the domain name. You agree to retain a copy for your record of the receipt for purchase of your domain name.

\r\n

You agree that for each domain name registered by you, the following contact data is required: postal address, email address, telephone number, and if available, a facsimile number for the Registered Name Holder and, if different from the Registered Name Holder, the same contact information for, a technical contact, an administrative contact and a billing contact.

\r\n

You acknowledge and agree that domain name registration requires that this contact information, in whole or in part, be shared with the registry operator, for their use, copying, distribution, publication, modification and other processing  for (among other uses in accordance with our Privacy Policy) the purpose of administration of the domain name registration, which may require such information be transferred back and forth across international borders, to and from the U.S. to the EU, for example. As required by ICANN, this information must also be made publicly available by means of Whois, and that the registry operator may also be required to make this information publicly available by Whois. Both Azure and the registry operator may be required to archive this information with a third-party escrow service. You hereby consent and give permission for all such requirements and disclosures. Further, you represent and warrant that, if you are providing information about a third party, you have notified the third party of the disclosure and the purpose for the disclosure and you have obtained the third party's consent to such disclosure.  Registrar will not process data in a way that is incompatible with this Agreement.  Registrar will take reasonable precautions to protect data from loss or misuse.

\r\n

You agree that for each domain name registered by you the following information will be made publicly available in the Whois directory as determined by ICANN Policy and may be sold in bulk as set forth in the ICANN agreement:

\r\n
    \r\n
  • The domain name;
  • \r\n
  • Your name and postal address;
  • \r\n
  • The name, email address, postal address, voice and fax numbers for technical and administrative contacts;
  • \r\n
  • The Internet protocol numbers for the primary and secondary name servers;
  • \r\n
  • The corresponding names of the name servers; and
  • \r\n
  • The original date of registration and expiration date.
  • \r\n
  • Name of primary name server and secondary name server.
  • \r\n
  • Identity of the registrar.
  • \r\n
\r\n

You agree that, to the extent permitted by ICANN, Azure may make use of the publicly available information you provided during the registration process. If you engage in the reselling of domain names you agree to provide any individuals whose personal information you've obtained, information about the possible uses of their personal information pursuant to ICANN policy. You also agree to obtain consent, and evidence of consent, from those individuals for such use of the personal information they provide.

\r\n

You agree that Azure has the right to make public and share with third parties certain information in connection with the sale or purchase of domain names on the website, including but not limited to (a) the name of the domain name sold or purchased, (b) the sale or purchase price of the domain name sold or purchased, and (c) information relating to the timing of the sale or purchase.

\r\n

\r\n

In order for us to comply with any current or future rules and policies for domain name systems including any rules or policies established by the CIRA or any provincial or federal government or by other organization having control or authority to establish rules or policies, you hereby grant to us the right to disclose to third parties through an interactive publicly accessible registration database the following information that you are required to provide when applying for a domain name:

\r\n
    \r\n
  1. The domain or sub-domain name(s) registered by you;
  2. \r\n
  3. Your organization name, type and postal address;
  4. \r\n
  5. The name(s), position(s), postal address(es), e-mail address(es), voice telephone number(s) and where available the fax number(s) of the technical and administrative contacts for your domain or sub-domain name(s);
  6. \r\n
  7. The full hostnames and Internet protocol (IP) addresses of at least two (2) name server hosts (one primary and at least one secondary) for your domain or sub-domain name. Up to six (6) name servers may be specified. If a host has more than one (1) IP address, use a comma-separated list;
  8. \r\n
  9. The corresponding names of those name servers;
  10. \r\n
  11. The original creation date of the registration; and
  12. \r\n
  13. The expiration date of the registration.
  14. \r\n
\r\n

We may be required to make this information available in bulk form to third parties. We may also transfer or assign this information to CIRA or such other third party as we may decide, in our sole discretion.

\r\n

6. DISPUTE RESOLUTION POLICY

\r\n

You agree to be bound by our current Dispute Resolution Policy. This policy is incorporated herein and made a part of this Agreement. You can view the Uniform Domain Name Dispute Resolution Policy online. You agree that Azure may from time to time modify its Dispute Resolution Policy. Azure will post any changes to its Dispute Resolution Policy at least thirty (30) days before they become effective. You agree that by maintaining your domain name registrations with Azure after the updated policy becomes effective that you agree to the Dispute Resolution policy as amended. You agree to review Azure's website periodically to determine if changes have been made to the Dispute Resolution Policy. If you cancel or terminate your Services with Azure as a result of the modified Dispute Resolution policy, no fees will be refunded to you. You also agree to submit to proceedings commenced under ICANN's Uniform Rapid Suspension System, if applicable. 

\r\n

You agree that if a dispute arises as a result of one (1) or more domain names you have registered using Azure, you will indemnify, defend and hold Azure harmless as provided for in this Agreement. You also agree that if Azure is notified that a complaint has been filed with a governmental, administrative or judicial body, regarding a domain name registered by you using Azure, that Azure, in its sole discretion, may take whatever action Azure deems necessary regarding further modification, assignment of and/or control of the domain name deemed necessary to comply with the actions or requirements of the governmental, administrative or judicial body until such time as the dispute is settled. In this event you agree to hold Azure harmless for any action taken by Azure.

\r\n

You agree to submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of your domicile, (2) where registrar is located or (3) where the registry operator is located (e.g., China for .CN, Columbia for .CO, UK for .EU, etc.).

\r\n

\r\n

In the case of .ca domain names, you agree that, if your use of the service or the registration of a .ca domain name is challenged by a third party, you will be subject to the provisions specified by CIRA in their dispute resolution policy, in effect at the time of the dispute.

\r\n

\r\n

7. TRANSFER OF DOMAIN NAMES; RESALE PRACTICES

\r\n

If you transfer any domain name, you agree to provide the information required by, and to abide by, the procedures and conditions set forth in our Domain Name Transfer Agreement and Change of Registrant Agreement. You may view the latest versions of our Domain Name Transfer Agreement and Change of Registrant Agreementonline. In order to further protect your domain name, any domain name registered with Azure or transferred to Azure shall be placed on lock status, unless an opted-out has occurred as defined in our Change of Registrant Agreement or Domain Name Proxy Agreement. The domain name must be placed on unlock status in order to initiate a transfer of the domain name away from Azure to a new Registrar. You may log into your account with Azure at any time after your domain name has been successfully transferred to Azure, and change the status to unlock.

\r\n

In the event you are purchasing a domain name on behalf of a third party, you agree to inform any customer of yours, who may be acquiring a domain name through you using Azure's registration services, that they are in fact registering their domain name through Azure and that Azure or its licensor is an accredited registrar with ICANN. You agree not to represent that you are an ICANN-accredited registrar or that you are in any way providing superior access to the ICANN Domain Name Registry. You also agree not to use the ICANN trademark logo in any of your promotional materials including your website.

\r\n

You agree to obtain each of your customers' acceptances to the then current version of this Agreement, and to retain evidence of their acceptance for a period of not less than three (3) years. Should you require that your customers accept additional terms and conditions that are not required by Azure, you agree that such additional terms and conditions shall not conflict with this Agreement and the policies and procedures adopted by ICANN.

\r\n

You agree that Azure is not lending you access to its registrar connections or its registry access, nor will you be deemed to be a registrar in your own right. Furthermore, you agree you will not attempt to gain access to Azure's registrar connections or registry access. You agree to provide complete, accurate and current data for each registrant to be added to a registry in accordance with ICANN requirements for inclusion in the Whois database.

\r\n

You agree to provide your customers with adequate customer support, and to maintain contact with them with regard to providing a medium for them to communicate changes in the information they provided as part of the domain name registration process. Upon receiving corrected or updated information you will, within five (5) business days, provide such information to Azure so Azure may update its registration records. You will retain copies of all communications between you and your customers and will upon request provide Azure copies of same.

\r\n

8. YOUR OBLIGATIONS; SUSPENSION OF SERVICES; BREACH OF AGREEMENT

\r\n

You represent and warrant to the best of your knowledge that, neither the registration of the domain nor the manner it is directly or indirectly used, infringes the legal rights of any third party.  You will comply with all applicable laws, including, but not limited to those relating to privacy, data collection, consumer protection, fair lending, debt collection, organic farming, and disclosure of data and financial disclosures.  If you collect and maintain sensitive health and financial data, you must implement reasonable and appropriate security measures commensurate with the offering of those services, as defined by applicable law.  You represent that you possess any necessary authorization, charter, license, and/or other related credential for participation in the sector associated with the associated registry tld string.  You will report any material changes to the validity of your authorization, charter, license, and/or other related credential. You will indemnify and hold harmless the registrar and registry operator, and their directors, officers, employees and agents, from and against any and all claims, damages, liabilities, costs and expenses (including reasonable legal fees and expenses) arising out of or related to the domain name registration.  This obligation shall survive expiration or termination of this Agreement or the domain name registration.

\r\n

You agree that, in addition to other events set forth in this Agreement:

\r\n
    \r\n
  1. Your ability to use any of the services provided by Azure is subject to cancellation or suspension in the event there is an unresolved breach of this Agreement and/or suspension or cancellation is required by any policy now in effect or adopted later by ICANN;
  2. \r\n
  3. Your registration of any domain names shall be subject to suspension, cancellation or transfer pursuant to any ICANN adopted specification or policy, or pursuant to any Azure procedure not inconsistent with an ICANN adopted specification or policy (a) to correct mistakes by Azure or the registry operator in registering any domain name; or (b) for the resolution of disputes concerning any domain name.
  4. \r\n
\r\n

You acknowledge and agree that Azure and registry reserve the right to deny, cancel or transfer any registration or transaction, or place any domain name(s) on registry lock, hold or similar status, as either deems necessary, in the unlimited and sole discretion of either Azure or the registry: (i) to comply with specifications adopted by any industry group generally recognized as authoritative with respect to the Internet (e.g., RFCs), (ii) to correct mistakes made by registry or any registrar in connection with a domain name registration, (iii) for the non-payment of fees to registry, (iv) to protect the integrity and stability of the registry, (v) to comply with any applicable court orders, laws, government rules or requirements, requests of law enforcement, or any dispute resolution process, (vi) to comply with any applicable ICANN rules or regulations, including without limitation, the registry agreement, (vii) to avoid any liability, civil or criminal, on the part of registry operator, as well as its affiliates, subsidiaries, officers, directors, and employees, (viii) per the terms of this Agreement, (ix) following an occurrence of any of the prohibited activities described in Section 8 below, or (x) during the resolution of a dispute.

\r\n

You agree that your failure to comply completely with the terms and conditions of this Agreement and any Azure rule or policy may be considered by Azure to be a material breach of this Agreement and Azure may provide you with notice of such breach either in writing or electronically (i.e. email). In the event you do not provide Azure with material evidence that you have not breached your obligations to Azure within ten (10) business days, Azure may terminate its relationship with you and take any remedial action available to Azure under the applicable laws. Such remedial action may be implemented without notice to you and may include, but is not limited to, cancelling the registration of any of your domain names and discontinuing any services provided by Azure to you. No fees will be refunded to you should your Services be cancelled or terminated because of a breach.

\r\n

Azure's failure to act upon or notify you of any event, which may constitute a breach, shall not relieve you from or excuse you of the fact that you have committed a breach.

\r\n

9. RESTRICTION OF SERVICES; RIGHT OF REFUSAL

\r\n

You agree not to use the services provided by Azure, or to allow or enable others, to use the services provided by Azure for the purposes of:

\r\n
    \r\n
  • The transmission of unsolicited email (Spam); and
  • \r\n
  • Repetitive, high volume inquires into any of the services provided by Azure (i.e. domain name availability, etc.).
  • \r\n
\r\n

You acknowledge and agree that you are prohibited from distributing malware, abusively operating botnets, phishing, piracy, trademark or copyright infringement, fraudulent or deceptive practices, counterfeiting or otherwise engaging in activity contrary to applicable law, and you acknowledge and agree that the consequences for such activities include suspension of the domain name.

\r\n

If you are hosting your domain name system (“DNS”) on Azure’s servers, or are using our systems to forward a domain name, URL, or otherwise to a system or site hosted elsewhere, or if you have your domain name registered with Azure, you are responsible for ensuring there is no excessive overloading on Azure’s servers. You may not use Azure’s servers and your domain name as a source, intermediary, reply to address, or destination address for mail bombs, Internet packet flooding, packet corruption, or other abusive attack. Server hacking or other perpetration of security breaches is prohibited. You agree that Azure reserves the right to deactivate your domain name from its DNS if Azure deems it is the recipient of activities caused by your site that threaten the stability of its network.

\r\n

You agree that Azure, in its sole discretion and without liability to you, may refuse to accept the registration of any domain name. Azure also may in its sole discretion and without liability to you delete the registration of any domain name during the first thirty (30) days after registration has taken place. Azure may also cancel the registration of a domain name, after thirty (30) days, if that name is being used, as determined by Azure in its sole discretion, in association with spam or morally objectionable activities. Morally objectionable activities will include, but not be limited to:

\r\n
    \r\n
  • Activities prohibited by the laws of the United States and/or foreign territories in which you conduct business;
  • \r\n
  • Activities designed to encourage unlawful behavior by others, such as hate crimes, terrorism and child pornography; and
  • \r\n
  • Activities designed to harm or use unethically minors in any way.
  • \r\n
\r\n

In the event Azure refuses a registration or deletes an existing registration during the first thirty (30) days after registration, you will receive a refund of any fees paid to Azure in connection with the registration either being cancelled or refused. In the event Azure deletes the registration of a domain name being used in association with spam or morally objectionable activities, no refund will be issued.

\r\n

10. DEFAULT SETTINGS; PARKED PAGE

\r\n

Choosing Your Domain Name Settings.  When you register a domain name with Azure, you will be prompted to choose your domain name settings during the checkout process.  If you plan on using another provider for your website or hosting needs, then you should enter the name servers of such provider when you choose your domain name settings.  This will direct your domain name away from Azure’s name servers.  If you are an existing Azure customer and have already set up a customer profile designating your domain name settings for new domain name registrations, you will not need to complete this step again during the checkout process.   

\r\n

Azure’s Default Settings.  If you do not direct your domain name away from Azure’s name servers as described above, Azure will direct your domain name to a “Parked Page” (“Default Setting”).  You acknowledge and agree that Azure has the right to set the Default Setting. 

\r\n

Parked Page Default Setting.  Azure’s Parked Page service is an online domain monetization system designed to generate revenue (through the use of pay per click advertising) from domain names that are not actively being used as websites.  If your domain name is directed to a Parked Page, you acknowledge and agree that Azure may display both (a) in-house advertising (which includes links to Azure products and services) and (b) third-party advertising (which includes links to third-party products and services) on your Parked Page through the use of pop-up or pop-under browser windows, banner advertisements, audio or video streams, or any other advertising means, and we may aggregate for our own use, related usage data by means of cookies and other similar means.  In addition, you acknowledge and agree that all in-house and third-party advertising will be selected by Azure and its advertising partners, as appropriate, and you will not be permitted to customize the advertising, or entitled to any compensation in exchange therefor.  Please note that the third-party advertising displayed on Azure’s Parked Pages may contain content offensive to you, including but not limited to links to adult content.  Azure makes no effort to edit, control, monitor, or restrict the content and third-party advertising displayed on Azure’s Parked Pages, and expressly disclaims any liability or responsibility to you or any third party in connection therewith.

\r\n

Changing Azure’s Default Settings.  You may change Azure’s Default Settings at any time during the term of your domain name registration.

\r\n
    \r\n
  1. Content Displaying On Your Parked Page.  You can not modify the content displaying on your Parked Page.  You may select one of the other options listed below.
  2. \r\n
  3. Participating In Domain Name Monetization.  If you wish to participate in the domain monetization potential presented by Azure’s Parked Page service, please review and consider purchasing our CashParking® service.   
  4. \r\n
  5. No Content.  If the options listed above are not acceptable to you, please contact customer support to learn what other options might be available to you.
  6. \r\n
\r\n

Return To Parked Page Default Setting Upon Domain Name Expiration.  Upon domain name expiration, and regardless of how you use your domain name during the term of your domain name registration, your domain name will automatically return to the Parked Page Default Setting described above.  As used in this paragraph, “expiration” is deemed to include any “renewal period” or “redemption period” immediately after the domain name expires, but before the domain name is returned to the registry.  Once your domain name has returned to the Parked Page Default Setting described above, the only way to opt out of the Parked Page service is to renew, redeem, or re-register your domain name in accordance with Section 2(B), Domain Name Renewal Terms, of this Agreement.   

\r\n

11. DOMAIN ADD-ONS

\r\n

Business Registration:  Business registration allows You to display additional information about the business that is the basis of Your domain name, including, but not limited to, such information as Your fax number, street address, and hours of operation.

\r\n

Certified Domains.  The certified domain service generally allow You to: (i) put a Certified Domain Validation seal on Your website; and (ii) have Your domain name listed as \"Certified\", in WHOIS lookups on our website.   The Certified Domain Validation seal renews independently of Your domain. When You renew Your domain, You must also, when necessary, separately renew Your Certified Validation seal. However, the Certified Domain Validation seal can be cancelled independently of Your domain. If the domain is cancelled, the Certified Domain associated with the cancelled domain will automatically cancel.  The Certified Domain seal is a trademark and is protected by copyright, trademark and other intellectual property laws. You may use the Certified Domain seal only in conjunction with the purchase of the Services set forth in the Agreement, and subject to the terms and conditions hereof. Other than provided for in this Agreement, You may not otherwise use, reproduce, or modify the mark for any additional promotional use, without our prior written approval. Your right to the use of the Certified Domain seal is immediately terminated upon expiration or termination of this Agreement.

\r\n

Expiration Consolidation.  You understand and acknowledge the expiration consolidation service may only be used to consolidate the expiration of .com and .net domain names. The service may not be used to consolidate domains that are on Registrar HOLD, Registry HOLD, or pending Transfer status. You acknowledge the service may only be used to push the expiration date of Your domains forward in time, at least one (1) month forward and no more than ten (10) years forward, and then, only for a period lasting less than twelve (12) months. Once the service has been used to consolidate domains, the new expiration date may not be reversed. To ensure the service is not abused or used as an alternative to renewals, you may only use the service on each domain once in any 12-month period. The service may only be used on domain names that have not passed their expiration date. In order to change the expiration date again, You will be required to renew the domain name first.  You further understand and acknowledge the service may only be used to coordinate domains where we are the registrar of record. Domains not registered with us must be transferred before we can perform the Service. 

\r\n

\r\n

Backordering/Monitoring.  You agree a domain name that has expired shall be subject first to a grace period of twelve (12) days, followed by the ICANN-mandated redemption grace period of thirty (30) days. During this period of time, the current domain name registrant may renew the domain name and retain ownership. We do not guarantee your backorder will result in you obtaining the domain name and expressly reserves the right to (a) refuse additional backorders or (b) cancel existing backorders at any time for any reason.  If your backorder is refused or cancelled, we agree to promptly refund any fees paid for such domain name backorder. The domain name may also be placed in a secondary market for resale through the Auctions® service.  After your first year of Auctions membership, you agree that unless otherwise advised, we will automatically renew your Auctions membership using the payment method you have on file for so long as your backorder credit is active. You may learn more about Auctions by visiting the Auctions website. The domain name may also be subject to a drop pool process before it is available for purchasing. You understand we and our registrar affiliates use our services, including backordering.  Therefore, the domain name may be registered with a different registrar, but can be managed through your account.  By using the Services, you will be able to, among other things:

\r\n
    \r\n
  1. Backorder any domain name under the top level domains .COM, .NET, .US, .BIZ, .INFO, .ORG, .MOBI. A backorder for a domain name will include the price of up to a one-year domain name registration. Should you successfully backorder any domain name, you will be subject to the terms and conditions of the Domain Name Registration and related agreements, which are incorporated herein by reference.
  2. \r\n
  3. Change your backorder until you obtain a domain name. You will have the opportunity to change the credit to a different domain name until you successfully capture one. After three (3) years, if the credit is not used, we reserves the right to remove the credit.
  4. \r\n
  5. Subscribe monthly to an expiring domain name list. You may also choose to purchase a subscription to a list of domain names expiring within the next five (5) days. If you subscribe to the expiring domain name list, you agree the payment method you have on file may be charged on a monthly subscription basis for the term of the Services you purchase.
  6. \r\n
  7. Select domain names off the expiring domain name list you would like to register. Each domain name you attempt to backorder will include the price of up to a one-year domain name registration, as set forth in subsection (i) above.
  8. \r\n
  9. Monitor your currently registered domain names for changes in registrar, status, expiration date or name servers at no additional cost.
  10. \r\n
  11. Subscribe to Domain Alert Pro or monitoring, which enables you to monitor any currently registered domain name, regardless of registrar, for historical tracking of status changes and designation of multiple email notification addresses.
  12. \r\n
\r\n

\r\n

\r\n

Transfer Validation. The transfer validation service is provided to help You keep Your domain name secure. By choosing to use the service, You are making an explicit and voluntary request to us to deny all attempts to transfer Your domain name to another registrar, or to move Your domain name to another account, unless You verify each request as described herein. You will provide us with a contact name, phone number and PIN for domain transfer validations. You will be contacted by us when a domain transfer is requested for a domain name in Your account. When we receive a transfer request, we will call You to verify the transfer request. If we cannot reach You with seventy-two (72) hours of receipt of the transfer request, the transfer will be denied. If You do not provide the proper PIN, the transfer will be denied. When we receive a change of account request, we will call You to verify the change request. If we cannot reach You with seventy-two (72) hours of receipt of the change request, the change will be denied. If You do not provide the proper PIN, the change will be denied. Availability of Services are subject to the terms and conditions of this Agreement and each of our policies and procedures. We shall use commercially reasonable efforts to attempt to provide certain portions of the Services on a twenty-four (24) hours a day, seven (7) days a week basis throughout the term of this Agreement and other portions of the service, during normal business hours. You acknowledge and agree that from time to time the Services may be inaccessible or inoperable for any reason, including, without limitation: (i) equipment malfunctions; (ii) periodic maintenance procedures or repairs that we may undertake from time to time; or (iii) causes beyond the reasonable control of us or that are not reasonably foreseeable by us, including, without limitation, interruption or failure of telecommunication or digital transmission links, hostile network attacks, network congestion or other failures. You acknowledge and agree that we has no control over the availability of the service on a continuous or uninterrupted basis.

\r\n

\r\n

12. PRE-REGISTRATIONS

\r\n

If you submit an application for pre-registration of a domain name, Azure does not guarantee that the name will be secured for you, or that you will have immediate access to the domain name if secured.  Azure may use third-party service providers for the pre-registration services.

\r\n

13. PROVISIONS SPECIFIC TO .BIZ REGISTRATIONS

\r\n

Domain Name Dispute Policy.  If you reserved or registered a .BIZ domain name through us, in addition to our Dispute Resolution Policy, you hereby acknowledge that you have read and understood and agree to be bound by the terms and conditions of the Restrictions Dispute Resolution Policy applicable to the .biz TLD.

\r\n

The RDRP sets forth the terms under which any allegation that a domain name is not used primarily for business or commercial purposes shall be enforced on a case-by-case basis by an independent ICANN-accredited dispute provider. Registry Operator will not review, monitor, or otherwise verify that any particular domain name is being used primarily for business or commercial purposes or that a domain name is being used in compliance with the SUDRP or UDRP processes.

\r\n

One Year Registration.  If you are registering a .BIZ domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .BIZ domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .BIZ domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

\r\n

14. PROVISIONS SPECIFIC TO .INFO REGISTRATIONS 

\r\n

One Year Registration.  If you are registering a .INFO domain name and you elect to take advantage of special pricing applicable to one-year registrations, we will automatically renew your domain name for an additional one-year period at the end of the first year term by taking payment from the Payment Method you have on file, unless you notify us that you do not wish to renew. You will be notified and given the opportunity to accept or decline the one-year renewal prior to your domain name expiration date. In the event you decide not to renew your one-year .INFO domain name for a second year, your domain name registration will automatically revert back to us and we will gain full rights of registration to such domain name. You agree that if you delete or transfer your .INFO domain name during the first year, you will automatically be charged the second year renewal fees.

\r\n

15. PROVISIONS SPECIFIC TO .MOBI REGISTRATIONS 

\r\n

Instant Mobilizer. You are hereby granted a personal, revocable, non-exclusive, non-transferable, non-assignable, non-sublicensable license to use the Instant Mobilizer service (“Service”), provided, however, You abide by the terms and conditions set forth. You shall not alter, modify, adapt or translate the whole or part of the Service in any way whatsoever. You may not create derivative works based on the Service. You may not rent, lease, assign, dispose of, novate, sub-license or otherwise transfer any of its rights to use the Service to any third party.  In the event that the volume of traffic to You from Your use of the Service is sufficient so as to jeopardize the provision of Service for other end users, we and our licensors reserve the right to, at its sole discretion, permanently or temporarily, discontinue Your use of the Service. For the avoidance of doubt, the volume of traffic generated by You should not exceed two thousand (2,000) page views per day.  You acknowledge and agree the text \"Instant Mobilizer from dotMobi\" or equivalent, will be inserted at the footer of Your site.  In the event a dotMobi domain to which the Service is being provided is transferred to another domain name registrar, the Service will be interrupted on that dotMobi domain, and Service will not be restored if the new registrar does not offer the Service. 

\r\n

\r\n

16. PROVISIONS SPECIFIC TO .NAME REGISTRATIONS 

\r\n

\r\n

17. PROVISIONS SPECIFIC TO .REISE REGISTRATIONS

\r\n

Domain Names registered in .REISE should be used for purposes dedicated to travel topics within six months following initial Registration, e.g. utilized on the Internet or otherwise used to perform a function.

\r\n

18. PROVISIONS SPECIFIC TO .SEXY REGISTRATIONS

\r\n

You shall not permit content unsuitable for viewing by a minor to be viewed from the main or top-level directory of a .SEXY domain name. For purposes of clarity, content viewed at the main or top-level directory of a .SEXY domain name is the content immediately visible if a user navigates to http://example.sexy or http://www.example.sexy. No restrictions apply to the content at any other page or subdirectory addressed by a .SEXY Registered Name. 

\r\n

19. COUNTRY CODE TOP LEVEL DOMAINS

\r\n

You represent and warrant that you meet the eligibility requirements of each ccTLD you apply for. You further agree to be bound by any registry rules, policies, and agreements for that particular ccTLD. These may include, but are not limited to, agreeing to indemnify the ccTLD provider, limiting the liability of the ccTLD provider, and requirements that any disputes be resolved under that particular country's laws.

\r\n

(A) PROVISIONS SPECIFIC TO .AU REGISTRATIONS 

\r\n

.au Registrations (to include com.au, net.au and org.au) are governed by the following additional terms and conditions:

\r\n

auDA. auDA means .au Domain Administration Limited ACN 079 009 340, the .au domain names administrator.  The Registrar acts as agent for auDA for the sole purpose, but only to the extent necessary, to enable auDA to receive the benefit of rights and covenants conferred to it under this Agreement. auDA is an intended third party beneficiary of this agreement.

\r\n

auDA Published Policy.  auDA Published Policies means those specifications and policies established and published by auDA from time to time at http://www.auda.org.au.  You must comply with all auDA Published Policies, as if they were incorporated into, and form part of, this Agreement. In the event of any inconsistency between any auDA Published Policy and this Agreement, then the auDA Published Policy will prevail to the extent of such inconsistency.  You acknowledge that under the auDA Published Policies: (1) there are mandatory terms and conditions that apply to all domain names; (2) licences, and such terms and conditions are incorporated into, and form part of, this Agreement; (3) You are bound by, and must submit to, the .au Dispute Resolution Policy; and (4) auDA may delete or cancel the registration of a .au domain name. 

\r\n

auDA's Liabilities and Indemnity.  To the fullest extent permitted by law, auDA will not be liable to Registrant for any direct, indirect, consequential, special, punitive or exemplary losses or damages of any kind (including, without limitation, loss of use, loss or profit, loss or corruption of data, business interruption or indirect costs) suffered by Registrant arising from, as a result of, or otherwise in connection with, any act or omission whatsoever of auDA, its employees, agents or contractors. Registrant agrees to indemnify, keep indemnified and hold auDA, its employees, agents and contractors harmless from all and any claims or liabilities, arising from, as a result of, or otherwise in connection with, Registrant's registration or use of its .au domain name. Nothing in this document is intended to exclude the operation of Trade Practices Act 1974.

\r\n

(B) PROVISIONS SPECIFIC TO .CA REGISTRATIONS

\r\n

You acknowledge and agree that registration of your selected domain name in your first application to CIRA shall not be effective until you have entered into and agreed to be bound by CIRA's Registrant Agreement.

\r\n

CIRA Certified Registrar.  The registrar shall immediately give notice to you in the event that it is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated, or the Registrar Agreement between CIRA and the Registrar is terminated or expires. CIRA may post notice of such suspension, termination, or expiry on its website and may, if CIRA deems appropriate, give notice to the registrants thereof. In the event that the registrar is no longer a CIRA Certified Registrar, has had its certification as a CIRA Certified Registrar suspended or terminated or in the event the Registrar Agreement between CIRA and the Registrar is terminated or expires, you shall be responsible for changing your Registrar of Record to a new CIRA Certified Registrar within thirty (30) days of the earlier of notice thereof being given to you by (i) the Registrar or (ii) CIRA in accordance with CIRA's then current Registry PRP; provided, however, that if any of your domain name registrations are scheduled to expire within thirty (30) days of the giving of such notice, then you shall have thirty (30) days from the anniversary date of the registration(s), to register with a new CIRA certified registrar and to renew such domain name registration(s) in accordance with the Registry PRP.

\r\n

You acknowledge and agree that should there be insufficient funds prepaid by the registrar in the CIRA Deposit Account to be applied in payment of any fees, CIRA may in its sole discretion stop accepting applications for domain name registrations from the registrar, stop effecting registrations of domain names and transfers, renewals, modifications, and cancellations requested by the registrar and stop performing other billable transactions requested by the registrar not paid in full and CIRA may terminate the Registrar Agreement between CIRA and the Registrar.

\r\n

.CA ASCII and IDN domain variants are bundled and reserved for a single registrant.  Registrants are not required to register all variants in a bundle, but all registered variants must be registered and managed at a single registrar. Each variant registered will incur a registration fee.  In addition, when registering multiple .CA domain (ASCII and IDN) variants in a bundle, your registrant information must be identical.  If variants are registered at other registrars or if registrant information does not match, it may result in an \"unavailable\" search result, delayed or failed registration. If information does not match, validation is required and may take up to seven business days and delay availability of domain. 

\r\n

(C) PROVISIONS SPECIFIC TO .CN REGISTRATIONS 

\r\n

.CN is a restricted TLD – applications are subject to both a domain name check and real name verification as required by the People’s Republic of China.  Registrations in .CN are therefore subject to the following additional terms:

\r\n

Verification, Registration and Activation.  If a domain name is not permitted to be registered by the Chinese government, as determined by us, the Registry Operator and/or a 3rd party provider utilized for such services and determinations, in either party’s discretion, the application for registration will not be successful.  In such event, the name will be deleted and you will be eligible for a refund as further described below.

\r\n

If permitted, then the Registration may proceed, but a .CN domain name may not be activated (i.e., it will not resolve in the Internet) unless and until you have submitted (via the process described during registration) valid documents required of us and the Registry to perform real name verification.  The following are acceptable forms of documents for the purpose of verification:

\r\n
    \r\n
  • China: Resident ID, temporary resident ID, business license or organization code certificate
  • \r\n
  • Hong Kong/Macau: Resident ID, driver’s license, passport or business license
  • \r\n
  • Singapore: Driver’s license, passport or business license
  • \r\n
  • Taiwan: Resident ID, driver’s license or business license
  • \r\n
  • Other Countries/Regions: Driver’s license or passport
  • \r\n
\r\n

Documents submitted to us are used by us and shared with the Registry solely for the purpose of real name verification, and are otherwise subject to our Privacy Policy.  By registering a .CN domain, you expressly agree that your data may be stored on servers in the U.S., or otherwise outside of the People's Republic of China.

\r\n

Refunds.  Refunds for .CN Registrations will only be allowed where (i) registration of the applied for domain name is not permitted by the Chinese government; or (ii) you notify us of your intent to cancel for any reason within the first five (5) days after the Registration (i.e., after it is deemed permissible by the Chinese government).  For the avoidance of doubt, refunds will not be permitted under any circumstances after five (5) days from the date of Registration, including, for example, in the event real name verification is not successful or if the Chinese government determines after Registration that the domain name should not have been registered (and directs us to delete).

\r\n

(D) PROVISIONS SPECIFIC TO .JP REGISTRATIONS

\r\n

Registration Restrictions.  You represent and warrant that you have a local presence in Japan with a home or office address. You agree that certain domain names are reserved and can only be registered by certain parties. These include: (i) TLDs, other than ccTLDs, as determined by ICANN; (ii) geographical-type .JP domain names that are defined as metropolitan, prefectural, and municipal labels; (iii) names of primary and secondary educational organizations; (iv) names of organizations related to Internet management; (v) names required for .JP domain name operations; and (vi) character strings which may be confused with ASCII-converted Japanese domain names. The complete list of .JP Reserved Domains is available here

\r\n

20. ENGLISH LANGUAGE CONTROLS

\r\n

This Agreement, along with all policies and the applicable product agreements identified above and incorporated herein by reference (collectively, the “Agreement”), is executed in the English language. To the extent any translation is provided to you, it is provided for convenience purposes only, and in the event of any conflict between the English and translated version, where permitted by law, the English version will control and prevail. Where the translated version is required to be provided to you and is to be considered binding by law (i) both language versions shall have equal validity, (ii) each party acknowledges that it has reviewed both language versions and that they are substantially the same in all material respects, and (iii) in the event of any discrepancy between these two versions, the translated version may prevail, provided that the intent of the Parties has been fully taken into consideration. 

\n
\n
\n\nRevised: 10/6/17
\nCopyright © 2000-2017 All Rights Reserved.\n
\n
\n
", + "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=reg_sa&pl_id=510456" + }, + { + "agreementKey": "DNPA", + "title": "Domain Name Proxy Agreement", + "content": "\n\n\n\n\n
\n\n\n\n\n\n\n
\nDomain Name Proxy Agreement\n
\n

Last Revised: October 25, 2017

\n

Please read this Domain Name Proxy Agreement (\"Agreement\") carefully. By using the Services and/or website of Domains By Proxy, LLC, a Delaware limited liability company (\"DBP\"), You (as defined below) agree to all the terms and conditions set forth both herein and in the DBP privacy policy, which is incorporated by reference and can be found by clicking here.  You acknowledge that DBP may amend this Agreement at any time upon posting the amended terms on its website, and that any new, different or additional features changing the services provided by DBP will automatically be subject to this Agreement. If You do not agree to be bound by, or if You object to, the terms and conditions of this Agreement and any amendments hereto, do not use or access DBP's services. Continued use of DBP's services and its website after any such changes to this Agreement have been posted, constitutes Your acceptance of those changes.

\r\n

This Agreement is by and between DBP and you, your heirs, assigns, agents and contractors (\"You\") and is made effective as of the date of electronic execution. This Agreement sets forth the terms and conditions of Your relationship with DBP and Your use of DBP's services and represents the entire Agreement between You and DBP. By using DBP's Services, You acknowledge that You have read, understand and agree to be bound by all the terms and conditions of this Agreement, and You further agree to be bound by the terms of this Agreement for transactions entered into by:

\r\n
    \r\n
  1. You on Your behalf;
  2. \r\n
  3. Anyone acting as Your agent; and
  4. \r\n
  5. Anyone who uses the account You have established with DBP, whether or not the transactions were on Your behalf and/or authorized by You.
  6. \r\n
\r\n

You agree You will be bound by representations made by third parties acting on Your behalf, which either use or purchase services from DBP. You further agree that DBP will not be bound by statements of a general nature on DBP's website or DBP promotional materials. You further agree to abide by the terms and conditions promulgated by the Internet Corporation for Assigned Names and Numbers (\"ICANN\") (including the Uniform Domain Name Dispute Resolution Policy (\"Dispute Resolution Policy\") and Your Registrar (i.e., the ICANN-accredited person or entity through which You register a domain name).

\r\n

1. description of DBP's private registration services

\r\n

When You subscribe to DBP's private registration service through a DBP-affiliated Registrar, DBP will display its contact information in the publicly available \"Whois\" directory in place of Your information. DBP shall keep Your name, postal address, email address, phone and fax numbers confidential, subject to Section 4 of this Agreement. The following information (and not Your personal information) will be made publicly available in the \"Whois\" directory as determined by ICANN policy:

\r\n
    \r\n
  1. DBP's name as the proxy Registrant of the domain name and a proxy email address, phone number and postal address for the proxy Registrant's contact information;
  2. \r\n
  3. A proxy postal address and phone number for the domain name registration's technical contact;
  4. \r\n
  5. A proxy email address, postal address and phone number for the domain name registration's administrative contact;
  6. \r\n
  7. A proxy email address, postal address and phone number for the domain's name registration's billing contact;
  8. \r\n
  9. The primary and secondary domain name servers You designate for the domain name;
  10. \r\n
  11. The domain name's original date of registration and expiration date of the registration; and
  12. \r\n
  13. The identity of the Registrar.
  14. \r\n
\r\n

2. full benefits of domain registration retained by you

\r\n

Although DBP will show in the \"Whois\" directory as the Registrant of each domain name registration You designate, You will retain the full benefits of domain name registration with respect to each such domain name registration, including, subject to Section 4 below:

\r\n
    \r\n
  1. The right to sell, transfer or assign each domain name registration, which shall require cancellation of the DBP services associated with each such domain name registration;
  2. \r\n
  3. The right to control the use of each domain name registration, including designating the primary and secondary domain name servers to which each domain name points;
  4. \r\n
  5. The right to cancel each domain name registration;
  6. \r\n
  7. The right to cancel the DBP services associated with each domain name registration and/or Your privacy services with DBP so that Your contract information is listed in the \"Whois\" directory; and
  8. \r\n
  9. The right to renew each domain name registration upon its expiration, subject to Your Registrar's applicable rules and policies.
  10. \r\n
\r\n

3. PERSONAL INFORMATION AND your notification obligations; representation and warranties; ACCOUNT SECURITY

\r\n

Personal Information and Your Notification Obligations 

\r\n

You agree that for each domain name for which you use DBP services, You will provide accurate and current information as to:

\r\n
    \r\n
  1. Your name, the email address, postal address, phone and fax numbers for the domain name registration's Registrant contact;
  2. \r\n
  3. The email address, postal address, phone and fax numbers for the domain name registration's technical contact;
  4. \r\n
  5. The email address, postal address, phone and fax numbers for the domain name registration's administrative contact;
  6. \r\n
  7. The email address, postal address, phone and fax numbers for the domain name registration's billing contact; and
  8. \r\n
  9. You agree to provide government issued photo identification and/or government issued business identification as required for verification of identity when requested.
  10. \r\n
\r\n

You agree to:

\r\n
    \r\n
  1. Notify DBP within three (3) calendar days when any of the personal information You provided upon subscribing to DBP's services, changes;
  2. \r\n
  3. Respond within three (3) calendar days to any inquiries made by DBP to determine the validity of personal information provided by You; and
  4. \r\n
  5. Timely respond to email messages DBP sends to You regarding correspondence DBP has received that is either addressed to or involves You and/or Your domain name registration, as more fully set forth in Section 5(c) below.
  6. \r\n
  7. To allow DBP to act as your Designated Agent (as that term is defined below) in instances when DBP services are added to or cancelled from your domain name and for the purpose of facilitating a change of registrant request (as further described below). 
  8. \r\n
\r\n

It is Your responsibility to keep Your personal information current and accurate at all times.

\r\n

Renewals

\r\n

You agree DBP will arrange for Your Registrar to charge the credit card You have on file with the Registrar, at the Registrar's then current rates.

\r\n

If for any reason DBP and/or the Registrar for Your domain name is unable to charge Your credit card for the full amount of the service provided, or if DBP and/or the Registrar is charged back for any fee it previously charged to the credit card You provided, You agree that DBP and/or the Registrar may, without notice to You, pursue all available remedies in order to obtain payment, including but not limited to immediate cancellation of all services DBP provides to You.

\r\n

Representations and Warranties

\r\n

You warrant that all information provided by You to DBP is truthful, complete, current and accurate. You also warrant that You are using DBP's private registration services in good faith and You have no knowledge of Your domain name infringing upon or conflicting with the legal rights of a third party or a third party's trademark or trade name. You also warrant the domain name being registered by DBP on Your behalf will not be used in connection with any illegal activity, or in connection with the transmission of Spam, or that contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable or, disrupting, damaging or limiting the functionality of any software or hardware.

\r\n

Account Security

\r\n

You agree You are entirely responsible for maintaining the confidentiality of Your customer number/login ID and password (\"Account Access Information\").  You agree to notify DBP immediately of any unauthorized use of Your account or any other breach of security.  You agree DBP will not be liable for any loss that You may incur as a result of someone else using Your Account Access Information, either with or without Your knowledge.  You further agree You could be held liable for losses incurred by DBP or another party due to someone else using Your Account Access Information.  For security purposes, You should keep Account Access Information in a secure location and take precautions to prevent others from gaining access to Your Account Access Information.  You agree that You are entirely responsible for all activity in Your account, whether initiated by You, or by others.  DBP specifically disclaims liability for any activity in Your account, regardless of whether You authorized the activity.

\r\n

Designated Agency and Change of Registrant Information

\r\n

“DESIGNATED AGENT” MEANS AN INDIVIDUAL OR ENTITY THAT THE PRIOR REGISTRANT OR NEW REGISTRANT EXPLICITLY AUTHORIZES TO APPROVE A CHANGE OF REGISTRANT REQUEST ON ITS BEHALF.  IN THE CASE OF DBP SERVICES, A CHANGE OF REGISTRANT REQUEST MAY ALSO ARISE DUE TO INSTANCES WHERE DBP SERVICES ARE ADDED, OR REMOVED, FROM A DOMAIN NAME.  FOR THE PURPOSE OF FACILITATING ANY SUCH CHANGE REQUEST, AND IN ACCORDANCE WITH ICANN'S CHANGE OF REGISTRANT POLICY, YOU AGREE TO APPOINT DBP AS YOUR DESIGNATED AGENT FOR THE SOLE PURPOSE OF EXPLICITLY CONSENTING TO MATERIAL CHANGES OF REGISTRATION CONTACT INFORMATION ON YOUR BEHALF.

\r\n

4. DBP's rights to deny, suspend, terminate service and to disclose your personal information

\r\n

You understand and agree that DBP has the absolute right and power, in its sole discretion and without any liability to You whatsoever, to:

\r\n
    \r\n
  1. Cancel the privacy service (which means that Your information will be available in the \"Whois\" directory) and/or reveal Your name and personal information that You provided to DBP:  
    A. When required by law, in the good faith belief that such action is necessary in order to conform to the edicts of the law or in the interest of public safety;
    B. To comply with legal process served upon DBP or in response to a reasonable threat of litigation against DBP (as determined by DBP in its sole and absolute discretion); or
    C. To comply with ICANN rules, policies, or procedures.
  2. \r\n
  3. Resolve any and all third party claims, whether threatened or made, arising out of Your use of a domain name for which DBP is the registrant listed in the \"Whois\" directory on Your behalf; or
  4. \r\n
  5. Take any other action DBP deems necessary:
    A. In the event you breach any provision of this Agreement or the DBP Anti-Spam Policy;
    B. To protect the integrity and stability of, and to comply with registration requirements, terms, conditions and policies of, the applicable domain name Registry and/or Registry Provider;
        C. To comply with any applicable laws, government rules or requirements, subpoenas, court orders or requests of law enforcement; 
    D. To comply with ICANN's Dispute Resolution Policy or ICANN's Change of Registrant Policy;
    E. To avoid any financial loss or legal liability (civil or criminal) on the part of DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, officers, directors and employees;
    F. If the domain name for which DBP is the registrant on Your behalf violates or infringes a third party's trademark, trade name or other legal rights; and
    G. If it comes to DBP's attention that You are using DBP's services in a manner (as determined by DBP in its sole and absolute discretion) that:
  6. \r\n
\r\n
\r\n
    \r\n
  • Is illegal, or promotes or encourages illegal activity;
  • \r\n
  • Promotes, encourages or engages in child pornography or the exploitation of children;
  • \r\n
  • Promotes, encourages or engages in terrorism, violence against people, animals, or property;
  • \r\n
  • Promotes, encourages or engages in any spam or other unsolicited bulk email, or computer or network hacking or cracking;
  • \r\n
  • Violates the Ryan Haight Online Pharmacy Consumer Protection Act of 2008 or similar legislation, or promotes, encourages or engages in the sale or distribution of prescription medication without a valid prescription;  
  • \r\n
  • Infringes on the intellectual property rights of another User or any other person or entity;
  • \r\n
  • Violates the privacy or publicity rights of another User or any other person or entity, or breaches any duty of confidentiality that you owe to another User or any other person or entity;
  • \r\n
  • Interferes with the operation of DBP services;
  • \r\n
  • Contains or installs any viruses, worms, bugs, Trojan horses or other code, files or programs designed to, or capable of, disrupting, damaging or limiting the functionality of any software or hardware; or
  • \r\n
  • Contains false or deceptive language, or unsubstantiated or comparative claims, regarding DBP or its services.
  • \r\n
\r\n
\r\n

You further understand and agree that if DBP is named as a defendant in, or investigated in anticipation of, any legal or administrative proceeding arising out of Your domain name registration or Your use of DBP's services, Your private registration service may be canceled, which means the domain name registration will revert back to You and Your identity will therefore be revealed in the Whois directory as Registrant.

\r\n

In the event:

\r\n
    \r\n
  1. DBP takes any of the actions set forth in subsection i, ii, or iii above or section 5; and/or
  2. \r\n
  3. You elect to cancel DBP's services for any reason --
  4. \r\n
\r\n

Neither DBP nor your Registrar will refund any fees paid by You whatsoever.

\r\n

5. communications forwarding

\r\n

a. Correspondence Forwarding

\r\n

Inasmuch as DBP's name, postal address and phone number will be listed in the Whois directory, You agree DBP will review and forward communications addressed to Your domain name that are received via email, certified or traceable courier mail (such as UPS, FedEx, or DHL), or first class U.S. postal mail. You specifically acknowledge DBP will not forward to You first class postal mail (other than legal notices), \"junk\" mail or other unsolicited communications (whether delivered through email, fax, postal mail or telephone), and You further authorize DBP to either discard all such communications or return all such communications to sender unopened. You agree to waive any and all claims arising from Your failure to receive communications directed to Your domain name but not forwarded to You by DBP.

\r\n

b. Email Forwarding

\r\n

The Whois directory requires an email address for every purchased domain name registration. When You purchase a private domain registration, DBP creates a private email address for that domain name, \"@domainsbyproxy.com\". Thereafter, when messages are sent to that private email address, DBP handles them according to the email preference You selected for that particular domain name. You have three (3) email preferences from which to choose. You can elect to:

\r\n
    \r\n
  1. Have all of the messages forwarded;
  2. \r\n
  3. Have all of the messages filtered for Spam and then forwarded; or
  4. \r\n
  5. Have none of the messages forwarded.
  6. \r\n
\r\n

As with all communications, You agree to waive any and all claims arising from Your failure to receive email directed to Your domain name but not forwarded to You by DBP.

\r\n

c. Notifications Regarding Correspondence and Your Obligation to Respond

\r\n

When DBP receives certified or traceable courier mail or legal notices addressed to Your domain name, in most cases, DBP will attempt to forward the mail to you via email. If You do not respond to the DBP email and/or the correspondence DBP has received regarding Your domain name registration concerns a dispute of any kind or otherwise requires immediate disposition, DBP may immediately reveal Your identity and/or cancel the DBP private registration service regarding either the domain name registration(s) in question. This means the Whois directory will revert to displaying Your name, postal address, email address and phone number that you provided to DBP.

\r\n

d. Additional Administrative Fees

\r\n

DBP reserves the right to charge You reasonable \"administrative fees\" or \"processing fees\" for (i)  tasks DBP may perform outside the normal scope of its Services, (ii) additional time and/or costs DBP may incur in providing its Services, and/or (iii) Your non-compliance with the Agreement (as determined by DBP in its sole and absolute discretion). Typical administrative or processing fee scenarios include, but are not limited to, (i) customer service issues that require additional personal time and attention; (ii) disputes that require accounting or legal services, whether performed by DBP staff or by outside firms retained by DBP; (iii) recouping any and all costs and fees, including the cost of Services, incurred by DBP as the result of chargebacks or other payment disputes brought by You, Your bank or Payment Method processor.  These administrative fees or processing fees will be billed to the Payment Method You have on file with Your Registrar.

\r\n

You agree to waive the right to trial by jury in any proceeding that takes place relating to or arising out of this Agreement.

\r\n

6. limitations of liability

\r\n

UNDER NO CIRCUMSTANCES SHALL DBP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, PUNITIVE, SPECIAL, OR CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER RELATED TO THIS AGREEMENT, YOUR DOMAIN NAME REGISTRATION, DBP'S SERVICES, USE OR INABILITY TO USE THE DBP WEBSITE OR THE MATERIALS AND CONTENT OF THE WEBSITE OR ANY OTHER WEBSITES LINKED TO THE DBP WEBSITE OR YOUR PROVISION OF ANY PERSONALLY IDENTIFIABLE INFORMATION TO DBP OR ANY THIRD PARTY. THIS LIMITATION APPLIES REGARDLESS OF WHETHER THE ALLEGED LIABILITY IS BASED ON CONTRACT, TORT, WARRANTY, NEGLIGENCE, STRICT LIABILITY OR ANY OTHER BASIS, EVEN IF DBP HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR SUCH DAMAGES WERE REASONABLY FORESEEABLE. BECAUSE CERTAIN JURISDICTIONS DO NOT PERMIT THE LIMITATION OR ELIMINATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, DBP'S LIABILITY IN SUCH JURISDICTIONS SHALL BE LIMITED TO THE SMALLEST AMOUNT PERMITTED BY LAW.

\r\n

YOU FURTHER UNDERSTAND AND AGREE THAT DBP DISCLAIMS ANY LOSS OR LIABILITY RESULTING FROM:

\r\n
    \r\n
  1. THE INADVERTENT DISCLOSURE OR THEFT OF YOUR PERSONAL INFORMATION;
  2. \r\n
  3. ACCESS DELAYS OR INTERRUPTIONS TO OUR WEBSITE OR THE WEBSITES OF OUR AFFILIATED REGISTRARS;
  4. \r\n
  5. DATA NON-DELIVERY OF MIS-DELIVERY BETWEEN YOU AND DBP;
  6. \r\n
  7. THE FAILURE FOR WHATEVER REASON TO RENEW A PRIVATE DOMAIN NAME REGISTRATION;
  8. \r\n
  9. THE UNAUTHORIZED USE OF YOUR DBP ACCOUNT OR ANY OF DBP'S SERVICES;
  10. \r\n
  11. ERRORS, OMISSIONS OR MISSTATEMENTS BY DBP;
  12. \r\n
  13. DELETION OF, FAILURE TO STORE, FAILURE TO PROCESS OR ACT UPON EMAIL MESSAGES FORWARDED TO EITHER YOU OR YOUR PRIVATE DOMAIN NAME REGISTRATION;
  14. \r\n
  15. PROCESSING OF UPDATED INFORMATION REGARDING YOUR DBP ACCOUNT; AND/OR
  16. \r\n
  17. ANY ACT OR OMISSION CAUSED BY YOU OR YOUR AGENTS (WHETHER AUTHORIZED BY YOU OR NOT).
  18. \r\n
\r\n

7. indemnity

\r\n

You agree to release, defend, indemnify and hold harmless DBP, its parent companies, subsidiaries, affiliates, shareholders, agents, directors, officers and employees and Your Registrar, from and against any and all claims, demands, liabilities, losses, damages or costs, including reasonable attorneys' fees, arising out of or related in any way to this Agreement, the services provided hereunder by DBP, the DBP website, Your account with DBP, Your use of Your domain name registration, and/or disputes arising in connection with the dispute policy.

\r\n

8. DBP warranty disclaimer

\r\n

DBP, ITS PARENT COMPANIES, SUBSIDIARIES, AFFILIATES, SHAREHOLDERS, AGENTS, DIRECTORS, OFFICERS, AND EMPLOYEES EXPRESSLY DISCLAIM ALL REPRESENTATIONS AND WARRANTIES OF ANY KIND IN CONNECTION WITH THIS AGREEMENT, THE SERVICE PROVIDED HEREUNDER, THE DBP WEBSITE OR ANY WEBSITES LINKED TO THE DBP WEBSITE, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL DBP SERVICES, AS WELL AS THE DBP WEBSITE, ARE PROVIDED \"AS IS\". YOUR SUBSCRIPTION TO AND USE OF DBP'S SERVICES AND ITS WEBSITE ARE ENTIRELY AT YOUR RISK. SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OF IMPLIED WARRANTIES, IN WHICH EVENT THE FOREGOING DISCLAIMER MAY NOT APPLY TO YOU.

\r\n

9. copyright and trademark

\r\n

You understand and agree that all content and materials contained in this Agreement, the Privacy Policy and the DBP website found here , are protected by the various copyright, patent, trademark, service mark and trade secret laws of the United States, as well as any other applicable proprietary rights and laws, and that DBP expressly reserves its rights in and to all such content and materials.

\r\n

You further understand and agree You are prohibited from using, in any manner whatsoever, any of the afore-described content and materials without the express written permission of DBP. No license or right under any copyright, patent, trademark, service mark or other proprietary right or license is granted to You or conferred upon You by this Agreement or otherwise.

\r\n

10. miscellaneous provisions

\r\n

a. Severability; Construction; Entire Agreement

\r\n

If any part of this Agreement shall be held to be illegal, unenforceable or invalid, in whole or in part, such provision shall be modified to the minimum extent necessary to make it legal, enforceable and valid, and the legality, enforceability and validity of the remaining provisions of this Agreement shall not be affected or impaired. The headings herein will not be considered a part of this Agreement. You agree this Agreement, including the policies it incorporates by reference, constitute the complete and only Agreement between You and DBP regarding the services contemplated herein.

\r\n

b. Governing Law; Venue; Waiver Of Trial By Jury

\r\n

This Agreement shall be governed in all respects by the laws and judicial decisions of Maricopa County, Arizona, excluding its conflicts of laws rules. Except as provided immediately below, You agree that any action relating to or arising out of this Agreement, shall be brought exclusively in the courts of Maricopa County, Arizona. For the adjudication of domain name registration disputes, you agree to submit to the exclusive jurisdiction and venue of the U.S. District Court for the District of Arizona located in Phoenix, Arizona. You agree to waive the right to trial by jury in any proceeding, regardless of venue, that takes place relating to or arising out of this Agreement.

\r\n

c. Notices

\r\n

All notices from DBP to You will be sent to the email address You provided to DBP. Notices by email shall be deemed effective twenty-four (24) hours after the email is sent by DBP, unless DBP receives notice that the email address is invalid, in which event DBP may give You notice via first class or certified mail, return receipt requested. All notices from You to DBP shall be sent via certified mail, return receipt requested or traceable courier to:

\r\n
      Domains By Proxy, LLC
      Attn: General Counsel
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

Notices sent via certified mail or traceable courier shall be deemed effective five (5) days after the date of mailing.

\r\n

d. Insurance

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's negligent actions (and absent fraud or other negligent or willful misconduct committed by a third party), You may be insured against such loss through DBP's Professional Liability Insurance Policy, which is currently underwritten by American International Insurance Company. Of course, every claim is subject to the then-carrier's investigation into the facts and circumstances surrounding such claim. In the event You have reason to believe that circumstances exist which warrant the filing of an insurance claim, please send a written notice (specifying the basis for such claim), via certified mail, return receipt requested, to:

\r\n
      Domains By Proxy, LLC
      Attn: Insurance Claims
      14455 North Hayden Rd.
      Suite 219
      Scottsdale, AZ 85260
\r\n

e. Indemnification

\r\n

In the unlikely event You lose Your domain name registration to a third party solely as a result of DBP's willful misconduct, Your Registrar (the \"Indemnifying Party\") will indemnify and hold You harmless against any losses, damages or costs (including reasonable attorneys' fees) resulting from any claim, action, proceeding, suit or demand arising out of or related to the loss of Your domain name registration. Such indemnification obligations under this Section 10(e) are conditioned upon the following:

\r\n
    \r\n
  1. That You promptly give both DBP and the Indemnifying Party written notice of the claim, demand, or action and provide reasonable assistance to the Indemnifying Party, at its cost and expense, in connection therewith, and
  2. \r\n
  3. That the Indemnifying Party has the right, at its option, to control and direct the defense to any settlement of such claim, demand, or action.
  4. \r\n
\r\n

Any notice concerning indemnification shall, with respect to DBP, be sent in accordance with Section 10(c) of this Agreement. With respect to Your Registrar, notices regarding indemnification should be sent in accordance with the notification provisions contained in Your Registrar's Domain Name Registration Agreement.

\r\n

f. Term of Agreement; Survival

\r\n

The terms of this Agreement shall continue in full force and effect as long as DBP is the Registrant for any domain name on Your behalf. Sections 5 (Communications Forwarding), 6 (Limitation of Liability), 7 (Indemnity), 8 (Warranty Disclaimer) and 10 (Miscellaneous Provisions) shall survive any termination or expiration of this Agreement.

\n
\n
\n\nRevised: 10/25/17
\nCopyright © 2003-2017 All Rights Reserved.\n
\n
\n
", + "url": "http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=domain_nameproxy&pl_id=510456" + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListTopLevelDomains.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListTopLevelDomains.json index d4c6b522ef00..218c0510f5de 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListTopLevelDomains.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/ListTopLevelDomains.json @@ -1,96 +1,96 @@ { - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "api-version": "2018-02-01" - }, - "responses": { - "200": { - "headers": {}, - "body": { - "value": [ - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", - "name": "com", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "properties": { - "name": "com", - "privacy": true - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/net", - "name": "net", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "properties": { - "name": "net", - "privacy": true - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.uk", - "name": "co.uk", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "properties": { - "name": "co.uk", - "privacy": false - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org", - "name": "org", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "properties": { - "name": "org", - "privacy": true - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/nl", - "name": "nl", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "properties": { - "name": "nl", - "privacy": true - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/in", - "name": "in", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "properties": { - "name": "in", - "privacy": false - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/biz", - "name": "biz", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "properties": { - "name": "biz", - "privacy": true - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org.uk", - "name": "org.uk", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "properties": { - "name": "org.uk", - "privacy": false - } - }, - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.in", - "name": "co.in", - "type": "Microsoft.DomainRegistration/topLevelDomains", - "properties": { - "name": "co.in", - "privacy": false - } - } - ] + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "api-version": "2018-02-01" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/com", + "name": "com", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "properties": { + "name": "com", + "privacy": true } - } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/net", + "name": "net", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "properties": { + "name": "net", + "privacy": true + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.uk", + "name": "co.uk", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "properties": { + "name": "co.uk", + "privacy": false + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org", + "name": "org", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "properties": { + "name": "org", + "privacy": true + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/nl", + "name": "nl", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "properties": { + "name": "nl", + "privacy": true + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/in", + "name": "in", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "properties": { + "name": "in", + "privacy": false + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/biz", + "name": "biz", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "properties": { + "name": "biz", + "privacy": true + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/org.uk", + "name": "org.uk", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "properties": { + "name": "org.uk", + "privacy": false + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.DomainRegistration/topLevelDomains/co.in", + "name": "co.in", + "type": "Microsoft.DomainRegistration/topLevelDomains", + "properties": { + "name": "co.in", + "privacy": false + } + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/RenewDomain.json b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/RenewDomain.json index 10d1dcea2e42..75a66905bce8 100644 --- a/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/RenewDomain.json +++ b/specification/web/resource-manager/Microsoft.DomainRegistration/stable/2018-02-01/examples/RenewDomain.json @@ -1,13 +1,13 @@ { - "parameters": { - "api-version": "2018-02-01", - "subscriptionId": "3dddfa4f-cedf-4dc0-ba29-b6d1a69ab545", - "resourceGroupName": "RG", - "domainName": "example.com" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } + "parameters": { + "api-version": "2018-02-01", + "subscriptionId": "3dddfa4f-cedf-4dc0-ba29-b6d1a69ab545", + "resourceGroupName": "RG", + "domainName": "example.com" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } } diff --git a/specification/web/resource-manager/Microsoft.Web/preview/2015-08-01-preview/logicAppsManagementClient.json b/specification/web/resource-manager/Microsoft.Web/preview/2015-08-01-preview/logicAppsManagementClient.json index 4350aaa2fd16..9f37522edf55 100644 --- a/specification/web/resource-manager/Microsoft.Web/preview/2015-08-01-preview/logicAppsManagementClient.json +++ b/specification/web/resource-manager/Microsoft.Web/preview/2015-08-01-preview/logicAppsManagementClient.json @@ -5,7 +5,9 @@ "version": "2015-08-01-preview" }, "host": "management.azure.com", - "schemes": [ "https" ], + "schemes": [ + "https" + ], "consumes": [ "application/json", "text/json" @@ -17,7 +19,9 @@ "paths": { "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/managedApis": { "get": { - "tags": [ "Managed Apis" ], + "tags": [ + "Managed Apis" + ], "summary": "List managed Apis", "operationId": "ManagedApis_List", "description": "Gets a list of managed APIs.", @@ -52,7 +56,9 @@ }, "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/managedApis/{apiName}": { "get": { - "tags": [ "Managed Apis" ], + "tags": [ + "Managed Apis" + ], "summary": "Get managed API", "operationId": "ManagedApis_Get", "description": "Gets a managed API.", @@ -97,7 +103,9 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections": { "get": { - "tags": [ "Connections" ], + "tags": [ + "Connections" + ], "summary": "Get Connections", "operationId": "Connections_List", "description": "Gets a list of connections.", @@ -147,7 +155,9 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections/{connectionName}": { "get": { - "tags": [ "Connections" ], + "tags": [ + "Connections" + ], "operationId": "Connections_Get", "description": "Gets a connection.", "parameters": [ @@ -182,7 +192,9 @@ } }, "put": { - "tags": [ "Connections" ], + "tags": [ + "Connections" + ], "operationId": "Connections_CreateOrUpdate", "description": "Creates or updates a connection.", "parameters": [ @@ -232,7 +244,9 @@ } }, "delete": { - "tags": [ "Connections" ], + "tags": [ + "Connections" + ], "operationId": "Connections_Delete", "description": "Deletes a connection.", "parameters": [ @@ -269,7 +283,9 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections/{connectionName}/listConsentLinks": { "post": { - "tags": [ "Connections" ], + "tags": [ + "Connections" + ], "operationId": "Connections_ListConsentLinks", "description": "Lists consent links of a connection.", "parameters": [ @@ -315,7 +331,9 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections/{connectionName}/confirmConsentCode": { "post": { - "tags": [ "Connections" ], + "tags": [ + "Connections" + ], "operationId": "Connections_ConfirmConsentCode", "description": "Confirms consent code of a connection.", "parameters": [ @@ -361,7 +379,9 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections/{connectionName}/listConnectionKeys": { "post": { - "tags": [ "Connections" ], + "tags": [ + "Connections" + ], "operationId": "Connections_ListConnectionKeys", "description": "Lists connection keys.", "parameters": [ @@ -595,8 +615,7 @@ }, "Object": { "type": "object", - "properties": { - } + "properties": {} }, "ConnectionParameter": { "description": "connection provider parameters", @@ -1212,7 +1231,9 @@ } }, "Resource": { - "required": [ "location" ], + "required": [ + "location" + ], "properties": { "id": { "description": "Resource Id", @@ -1274,7 +1295,9 @@ }, "security": [ { - "azure_auth": [ "user_impersonation" ] + "azure_auth": [ + "user_impersonation" + ] } ] -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2015-08-01/service.json b/specification/web/resource-manager/Microsoft.Web/stable/2015-08-01/service.json index a2d3ecc68f6c..c02a1f56715c 100644 --- a/specification/web/resource-manager/Microsoft.Web/stable/2015-08-01/service.json +++ b/specification/web/resource-manager/Microsoft.Web/stable/2015-08-01/service.json @@ -21741,4 +21741,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/CommonDefinitions.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/CommonDefinitions.json index 5569718a588b..c2855a55661a 100644 --- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/CommonDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/CommonDefinitions.json @@ -1,612 +1,387 @@ { - "swagger": "2.0", - "info": { - "version": "2016-03-01", - "title": "Common Definitions" - }, - "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" - ], - "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 +}